Skip to content

Commit a03cdaa

Browse files
author
pipeline
committed
v16.4.44 is released
1 parent 489b7fc commit a03cdaa

File tree

100 files changed

+418
-113
lines changed

Some content is hidden

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

100 files changed

+418
-113
lines changed

components/base/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-base",
3-
"version": "16.3.31",
3+
"version": "16.4.42",
44
"description": "A common package of Essential JS 2 base Vue libraries, methods and class definitions",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",
@@ -19,6 +19,7 @@
1919
"type": "git",
2020
"url": "https://github.com/syncfusion/ej2-vue-ui-components.git"
2121
},
22+
"homepage": "https://www.syncfusion.com/vue-ui-components",
2223
"main": "./dist/ej2-vue-base.umd.min.js",
2324
"module": "./index.js",
2425
"readme": "ReadMe.md",

components/buttons/dist/ej2-vue-buttons.umd.min.js

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

components/buttons/dist/ej2-vue-buttons.umd.min.js.map

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

components/buttons/dist/es6/ej2-vue-buttons.es2015.js

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

components/buttons/dist/es6/ej2-vue-buttons.es2015.js.map

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

components/buttons/dist/es6/ej2-vue-buttons.es5.js

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

components/buttons/dist/es6/ej2-vue-buttons.es5.js.map

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

components/buttons/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-buttons",
3-
"version": "16.4.40",
3+
"version": "16.4.42",
44
"description": "A package of feature-rich Essential JS 2 components such as Button, CheckBox, RadioButton and Switch. for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/buttons/src/check-box/checkbox.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export class CheckBoxComponent 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])) {

components/buttons/src/radio-button/radiobutton.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export class RadioButtonComponent 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])) {

components/buttons/src/switch/switch.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export class SwitchComponent 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])) {

components/calendars/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 16.4.42 (2018-12-10)
5+
## 16.4.44 (2018-12-24)
6+
7+
### DatePicker
8+
9+
#### Bug Fixes
10+
11+
- Fixed the `allowEdit` issue in mobile mode.
12+
13+
#### New Features
14+
15+
- Added the Islamic DatePicker support.
16+
17+
### DateRangePicker
18+
19+
#### Bug Fixes
20+
21+
- Fixed the localization issue in preset `custom range` element.
22+
23+
### TimePicker
24+
25+
#### Bug Fixes
26+
27+
- Fixed the component destroy issue when `showClearButton` in disabled state.
28+
29+
### Calendar
30+
31+
#### New Features
32+
33+
- Added the Islamic calendar support.
34+
35+
### DateTimePicker
36+
37+
#### New Features
38+
39+
- Added the Islamic DateTimePicker support.
40+
41+
## 16.4.42 (2018-12-14)
642

743
### Calendar
844

components/calendars/dist/ej2-vue-calendars.umd.min.js

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

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.40",
3+
"version": "16.4.42",
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",

components/charts/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 16.4.42 (2018-12-10)
5+
## 16.4.44 (2018-12-24)
6+
7+
### Stock Chart
8+
9+
#### Bug Fixes
10+
11+
- Console error in tooltip fixed
12+
- Highlight of buttons in period selector is working properly.
13+
- Height of stock chart without period selector, range navigator is working fine
14+
15+
## 16.4.42 (2018-12-14)
616

717
### Chart
818

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.

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.40",
3+
"version": "16.4.42",
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",

components/circulargauge/dist/ej2-vue-circulargauge.umd.min.js

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

components/circulargauge/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-circulargauge",
3-
"version": "16.4.40",
3+
"version": "16.4.42",
44
"description": "Essential JS 2 CircularGauge Components for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/diagrams/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@
1515
- Support to render a large number of nodes and connectors in a diagram for effective performance is added.
1616
- Template support for annotation is added.
1717

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

2024
### Diagram

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.

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.40",
3+
"version": "16.4.42",
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",

components/documenteditor/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 16.4.42 (2018-12-10)
5+
## 16.4.44 (2018-12-24)
6+
7+
### Document Editor
8+
9+
#### Bug Fixes
10+
11+
- Tab stop now layout properly in header and footer.
12+
- Empty header and footer now layout properly.
13+
- Table column span values are now updated properly.
14+
15+
## 16.4.40-beta (2018-12-10)
616

717
### Document Editor
818

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.

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.3.34",
3+
"version": "16.4.42",
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",

components/dropdowns/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
## [Unreleased]
44

5+
## 16.4.44 (2018-12-24)
6+
7+
### MultiSelect
8+
9+
#### Bug Fixes
10+
11+
- Item template with checkbox combination is not working issue has been resolved.
12+
13+
- Value update with checkbox selection issue in reactive form has been resolved.
14+
515
## 16.3.34 (2018-11-21)
616

717
### MultiSelect

components/dropdowns/dist/ej2-vue-dropdowns.umd.min.js

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

components/dropdowns/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-dropdowns",
3-
"version": "16.4.40",
3+
"version": "16.4.42",
44
"description": "Essential JS 2 DropDown Components for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/grids/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 16.4.42 (2018-12-10)
5+
## 16.4.44 (2018-12-24)
6+
7+
### Grid
8+
9+
#### Bug Fixes
10+
11+
- Misalignment occurs when `footer aggreagate` in grid and also while editing is resolved.
12+
- Script error thrown when reorder header template column in grid using angular is fixed.
13+
- `RemoteSaveAdaptor` returns empty row while perform adding in Grid is resolved.
14+
- Filtering the localized date column throws script error is fixed.
15+
- Provided support for dynamic property change handling for `selectedRowIndex`.
16+
- Filtering after grouping any column focuses out of the `filterbar` is resolved.
17+
- `Deselecting` event is not triggered after double clicking a particular row and select different row is resolved.
18+
- Column data `stringify` is not working properly when persistence enabled is resolved.
19+
20+
## 16.4.42 (2018-12-14)
621

722
### Grid
823

components/grids/dist/ej2-vue-grids.umd.min.js

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

components/grids/dist/ej2-vue-grids.umd.min.js.map

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

components/grids/dist/es6/ej2-vue-grids.es2015.js

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

components/grids/dist/es6/ej2-vue-grids.es2015.js.map

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

components/grids/dist/es6/ej2-vue-grids.es5.js

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

components/grids/dist/es6/ej2-vue-grids.es5.js.map

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

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.40",
3+
"version": "16.4.42",
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",

components/grids/src/grid/grid.component.ts

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

components/heatmap/dist/ej2-vue-heatmap.umd.min.js

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

components/heatmap/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-heatmap",
3-
"version": "16.4.40",
3+
"version": "16.4.42",
44
"description": "Feature rich data visulization control used to visualize the matrix data where the individual values are represented as colors for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

0 commit comments

Comments
 (0)