Skip to content

Commit 2f06471

Browse files
author
pipeline
committed
v16.4.45 is released
1 parent a03cdaa commit 2f06471

File tree

76 files changed

+207
-100
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+207
-100
lines changed

Diff for: components/calendars/CHANGELOG.md

+23-9
Original file line numberDiff line numberDiff line change
@@ -2,29 +2,23 @@
22

33
## [Unreleased]
44

5-
## 16.4.44 (2018-12-24)
5+
## 16.4.45 (2018-12-24)
66

77
### DatePicker
88

99
#### Bug Fixes
1010

11-
- Fixed the `allowEdit` issue in mobile mode.
11+
- DatePicker will allow assigning string value when type system configuration is disabled.
1212

1313
#### New Features
1414

1515
- Added the Islamic DatePicker support.
1616

17-
### DateRangePicker
18-
19-
#### Bug Fixes
20-
21-
- Fixed the localization issue in preset `custom range` element.
22-
2317
### TimePicker
2418

2519
#### Bug Fixes
2620

27-
- Fixed the component destroy issue when `showClearButton` in disabled state.
21+
- Pop-up positioning support has been provided.
2822

2923
### Calendar
3024

@@ -38,6 +32,26 @@
3832

3933
- Added the Islamic DateTimePicker support.
4034

35+
## 16.4.44 (2018-12-24)
36+
37+
### DatePicker
38+
39+
#### Bug Fixes
40+
41+
- Fixed the `allowEdit` issue in mobile mode.
42+
43+
### DateRangePicker
44+
45+
#### Bug Fixes
46+
47+
- Fixed the localization issue in preset `custom range` element.
48+
49+
### TimePicker
50+
51+
#### Bug Fixes
52+
53+
- Fixed the component destroy issue when `showClearButton` in disabled state.
54+
4155
## 16.4.42 (2018-12-14)
4256

4357
### Calendar

Diff for: components/calendars/dist/ej2-vue-calendars.umd.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: components/calendars/dist/ej2-vue-calendars.umd.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: components/calendars/dist/es6/ej2-vue-calendars.es2015.js

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: components/calendars/dist/es6/ej2-vue-calendars.es2015.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: components/calendars/dist/es6/ej2-vue-calendars.es5.js

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: components/calendars/dist/es6/ej2-vue-calendars.es5.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: components/calendars/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-calendars",
3-
"version": "16.4.42",
3+
"version": "16.4.44",
44
"description": "A complete package of date or time components with built-in features such as date formatting, inline editing, multiple (range) selection, range restriction, month and year selection, strict mode, and globalization. for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

Diff for: components/calendars/src/calendar/calendar.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export class CalendarComponent extends ComponentBase {
3939
this.bindProperties();
4040
}
4141
public trigger(eventName: string, eventProp: {[key:string]:Object}): void {
42-
if (eventName === 'change' && this.models && (this.models.length !== 0)) {
42+
if ((eventName === 'change' || eventName === 'input') && this.models && (this.models.length !== 0)) {
4343
let key: string[] = this.models.toString().match(/checked|value/) || [];
4444
let propKey: string = key[0];
4545
if (eventProp && key && !isUndefined(eventProp[propKey])) {

Diff for: components/calendars/src/datepicker/datepicker.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export class DatePickerComponent extends ComponentBase {
3939
this.bindProperties();
4040
}
4141
public trigger(eventName: string, eventProp: {[key:string]:Object}): void {
42-
if (eventName === 'change' && this.models && (this.models.length !== 0)) {
42+
if ((eventName === 'change' || eventName === 'input') && this.models && (this.models.length !== 0)) {
4343
let key: string[] = this.models.toString().match(/checked|value/) || [];
4444
let propKey: string = key[0];
4545
if (eventProp && key && !isUndefined(eventProp[propKey])) {

Diff for: components/calendars/src/daterangepicker/daterangepicker.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export class DateRangePickerComponent extends ComponentBase {
4040
this.bindProperties();
4141
}
4242
public trigger(eventName: string, eventProp: {[key:string]:Object}): void {
43-
if (eventName === 'change' && this.models && (this.models.length !== 0)) {
43+
if ((eventName === 'change' || eventName === 'input') && this.models && (this.models.length !== 0)) {
4444
let key: string[] = this.models.toString().match(/checked|value/) || [];
4545
let propKey: string = key[0];
4646
if (eventProp && key && !isUndefined(eventProp[propKey])) {

Diff for: components/calendars/src/datetimepicker/datetimepicker.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export class DateTimePickerComponent extends ComponentBase {
3939
this.bindProperties();
4040
}
4141
public trigger(eventName: string, eventProp: {[key:string]:Object}): void {
42-
if (eventName === 'change' && this.models && (this.models.length !== 0)) {
42+
if ((eventName === 'change' || eventName === 'input') && this.models && (this.models.length !== 0)) {
4343
let key: string[] = this.models.toString().match(/checked|value/) || [];
4444
let propKey: string = key[0];
4545
if (eventProp && key && !isUndefined(eventProp[propKey])) {

Diff for: components/calendars/src/timepicker/timepicker.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export class TimePickerComponent extends ComponentBase {
3939
this.bindProperties();
4040
}
4141
public trigger(eventName: string, eventProp: {[key:string]:Object}): void {
42-
if (eventName === 'change' && this.models && (this.models.length !== 0)) {
42+
if ((eventName === 'change' || eventName === 'input') && this.models && (this.models.length !== 0)) {
4343
let key: string[] = this.models.toString().match(/checked|value/) || [];
4444
let propKey: string = key[0];
4545
if (eventProp && key && !isUndefined(eventProp[propKey])) {

Diff for: components/charts/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## 16.4.45 (2018-12-24)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- Duplicates of scrollbar id in multiple chart is fixed
12+
513
## 16.4.44 (2018-12-24)
614

715
### Stock Chart

Diff for: components/charts/dist/ej2-vue-charts.umd.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: components/charts/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-charts",
3-
"version": "16.4.42",
3+
"version": "16.4.44",
44
"description": "Feature-rich chart control with built-in support for over 25 chart types, technical indictors, trendline, zooming, tooltip, selection, crosshair and trackball. for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

Diff for: components/circulargauge/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## 16.4.45 (2018-12-24)
6+
7+
### CircularGauge
8+
9+
#### Bug Fixes
10+
11+
- When drag the range bar pointer, the console error thrown resolved now.
12+
513
## 16.4.40-beta (2018-12-10)
614

715
### CircularGauge

Diff for: components/diagrams/CHANGELOG.md

+8-4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## 16.4.44 (2018-12-24)
6+
7+
### Diagram
8+
9+
#### Bug Fixes
10+
11+
- Alignment issue on complex hierarchical tree layout with complex data source is working fine.
12+
513
## 16.4.40-beta (2018-12-10)
614

715
### Diagram
@@ -15,10 +23,6 @@
1523
- Support to render a large number of nodes and connectors in a diagram for effective performance is added.
1624
- Template support for annotation is added.
1725

18-
#### Bug Fixes
19-
20-
- Alignment issue on complex hierarchical tree layout with complex data source is working fine.
21-
2226
## 16.3.33 (2018-11-20)
2327

2428
### Diagram

Diff for: components/diagrams/dist/ej2-vue-diagrams.umd.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: components/diagrams/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-diagrams",
3-
"version": "16.4.42",
3+
"version": "16.4.44",
44
"description": "Feature-rich diagram control to create diagrams like flow charts, organizational charts, mind maps, and BPMN diagrams. Its rich feature set includes built-in shapes, editing, serializing, exporting, printing, overview, data binding, and automatic layouts. for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

Diff for: components/documenteditor/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## 16.4.45 (2018-12-24)
6+
7+
### Document Editor
8+
9+
#### Bug Fixes
10+
11+
- Table border is rendered properly.
12+
513
## 16.4.44 (2018-12-24)
614

715
### Document Editor

Diff for: components/documenteditor/dist/ej2-vue-documenteditor.umd.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: components/documenteditor/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-documenteditor",
3-
"version": "16.4.42",
3+
"version": "16.4.44",
44
"description": "Feature-rich document editor control with built-in support for context menu, options pane and dialogs. for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

Diff for: components/dropdowns/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 16.4.44 (2018-12-24)
5+
## 16.4.45 (2018-12-24)
66

77
### MultiSelect
88

Diff for: components/grids/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22

33
## [Unreleased]
44

5+
## 16.4.45 (2018-12-24)
6+
7+
### Grid
8+
9+
#### Bug Fixes
10+
11+
- Server requests sent twice when column is not defined in the grid is resolved.
12+
- custom attribute is missing in stacked header issue is fixed.
13+
- Column `allowEditing` false is working for `datepicker` edit when it is specified as primary key column is resolved.
14+
- `allowEditing` property is not working in identity column is resolved.
15+
- Provided support to `addparams` for filtering.
16+
517
## 16.4.44 (2018-12-24)
618

719
### Grid

Diff for: components/grids/dist/ej2-vue-grids.umd.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: components/grids/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-grids",
3-
"version": "16.4.42",
3+
"version": "16.4.44",
44
"description": "Feature-rich JavaScript datagrid (datatable) control with built-in support for editing, filtering, grouping, paging, sorting, and exporting to Excel. for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

Diff for: components/inplaceeditor/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 16.4.44 (2018-12-24)
5+
## 16.4.45 (2018-12-24)
66

77
### In-place Editor
88

Diff for: components/inputs/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## 16.4.45 (2018-12-24)
6+
7+
### Common
8+
9+
#### Bug Fixes
10+
11+
- Fixed `CustomPlacement` typing issue.
12+
513
## 16.4.40-beta (2018-12-10)
614

715
### Uploader

0 commit comments

Comments
 (0)