Skip to content

Commit 950c909

Browse files
author
pipeline
committed
v17.3.29 is released
1 parent 9979b90 commit 950c909

File tree

81 files changed

+295
-66
lines changed

Some content is hidden

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

81 files changed

+295
-66
lines changed

components/barcodegenerator/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-barcode-generator",
3-
"version": "17.3.19",
3+
"version": "17.3.27",
44
"description": "Barcode generator component is a pure JavaScript library which will convert a string to Barcode and show it to the user. This supports major 1D and 2D barcodes including coda bar, code 128, QR Code. for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

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": "17.3.27",
3+
"version": "17.3.28",
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/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": "17.3.27",
3+
"version": "17.3.28",
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/diagrams/CHANGELOG.md

+10-2
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,21 @@
22

33
## [Unreleased]
44

5-
## 17.3.28 (2019-11-19)
5+
## 17.3.29 (2019-11-26)
66

77
### Diagram
88

9+
#### New Features
10+
11+
- `#248460`,`#253930` - The support has been provided to restrict the movement of lane children beyond their boundaries.
12+
- `#254732` - The support has been provided to rearrange lanes within the swimlane.
13+
914
#### Bug Fixes
1015

11-
- `F149060` - Unable to remove the connector that are drawn at the run time issue has been fixed.
16+
- `F149060` - The issue "unable to remove the connector drawn at the run time" has been fixed.
17+
- `#227953` - The issue with updating line routing dynamically has been fixed.
18+
- `#254993` - The issue "Text Wrapping is not working for lane headers" has been fixed.
19+
- `#255299` - Visibility issue while using image as content for user handle is now fixed.
1220

1321
## 17.3.28 (2019-11-19)
1422

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/dist/ej2-vue-diagrams.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/diagrams/dist/es6/ej2-vue-diagrams.es2015.js

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

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

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

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

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

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

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

components/diagrams/src/diagram/diagram.component.ts

+4
Original file line numberDiff line numberDiff line change
@@ -338,6 +338,10 @@ export class DiagramComponent extends ComponentBase {
338338
return this.ej2Instances.reset();
339339
}
340340

341+
public resetSegments(): void {
342+
return this.ej2Instances.resetSegments();
343+
}
344+
341345
public rotate(obj: Object | Object | Object, angle: number, pivot?: Object): boolean {
342346
return this.ej2Instances.rotate(obj, angle, pivot);
343347
}

components/documenteditor/CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22

33
## [Unreleased]
44

5+
## 17.3.29 (2019-11-26)
6+
7+
### Document Editor
8+
9+
#### Bug Fixes
10+
11+
- `#252868`, `#254873` - Resolved script error when resizing table row.
12+
- `#251882` - Line spacing for paragraph is now apply properly when line spacing type is atleast.
13+
- `#143383` - Paper size drop down is now update properly based on page width and page height.
14+
- `#255741` - Fixed the focus issue when key pressed on input element.
15+
- `#250770` - RTL text with special characters are now layout properly.
16+
- `10269` - Line spacing is now exported properly.
17+
518
## 17.3.28 (2019-11-19)
619

720
### Document Editor

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": "17.3.27",
3+
"version": "17.3.28",
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

+26
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,32 @@
22

33
## [Unreleased]
44

5+
## 17.3.29 (2019-11-26)
6+
7+
### AutoComplete
8+
9+
#### New Features
10+
11+
- `#254473` - Now, you can clear the selected values using `clear` method.
12+
13+
### ComboBox
14+
15+
#### New Features
16+
17+
- `#254473` - Now, you can clear the selected values using `clear` method.
18+
19+
### DropDownList
20+
21+
#### New Features
22+
23+
- `#254473` - Now, you can clear the selected values using `clear` method.
24+
25+
### MultiSelect
26+
27+
#### New Features
28+
29+
- `#254473` - Now, you can clear the selected values using `clear` method.
30+
531
## 17.3.28 (2019-11-19)
632

733
### 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/dist/ej2-vue-dropdowns.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/dropdowns/dist/es6/ej2-vue-dropdowns.es2015.js

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

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

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

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

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

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

+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": "17.3.27",
3+
"version": "17.3.28",
44
"description": "Essential JS 2 DropDown Components for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/dropdowns/src/auto-complete/autocomplete.component.ts

+4
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,10 @@ export class AutoCompleteComponent extends ComponentBase {
7474
return this.ej2Instances.addItem(items, itemIndex);
7575
}
7676

77+
public clear(): void {
78+
return this.ej2Instances.clear();
79+
}
80+
7781
public filter(dataSource: undefined[] | Object | string[] | number[] | boolean[], query?: Object, fields?: Object): void {
7882
return this.ej2Instances.filter(dataSource, query, fields);
7983
}

components/dropdowns/src/combo-box/combobox.component.ts

+4
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,10 @@ export class ComboBoxComponent extends ComponentBase {
7474
return this.ej2Instances.addItem(items, itemIndex);
7575
}
7676

77+
public clear(): void {
78+
return this.ej2Instances.clear();
79+
}
80+
7781
public filter(dataSource: undefined[] | Object | string[] | number[] | boolean[], query?: Object, fields?: Object): void {
7882
return this.ej2Instances.filter(dataSource, query, fields);
7983
}

components/dropdowns/src/drop-down-list/dropdownlist.component.ts

+4
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,10 @@ export class DropDownListComponent extends ComponentBase {
7474
return this.ej2Instances.addItem(items, itemIndex);
7575
}
7676

77+
public clear(): void {
78+
return this.ej2Instances.clear();
79+
}
80+
7781
public filter(dataSource: undefined[] | Object | string[] | number[] | boolean[], query?: Object, fields?: Object): void {
7882
return this.ej2Instances.filter(dataSource, query, fields);
7983
}

components/dropdowns/src/list-box/listbox.component.ts

+4
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,10 @@ export class ListBoxComponent extends ComponentBase {
8686
return this.ej2Instances.getDataByValue(value);
8787
}
8888

89+
public getDataByValues(value: string[] | number[] | boolean[]): undefined[] {
90+
return this.ej2Instances.getDataByValues(value);
91+
}
92+
8993
public getItems(): Object[] {
9094
return this.ej2Instances.getItems();
9195
}

components/dropdowns/src/multi-select/multiselect.component.ts

+4
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,10 @@ export class MultiSelectComponent extends ComponentBase {
7474
return this.ej2Instances.addItem(items, itemIndex);
7575
}
7676

77+
public clear(): void {
78+
return this.ej2Instances.clear();
79+
}
80+
7781
public filter(dataSource: undefined[] | Object | string[] | number[] | boolean[], query?: Object, fields?: Object): void {
7882
return this.ej2Instances.filter(dataSource, query, fields);
7983
}

components/filemanager/CHANGELOG.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@
88

99
#### Bug Fixes
1010

11-
- #I252873 The issue with ` file search on pressing the enter key` has been fixed.
11+
- `#252873` - The issue with ` file search on pressing the enter key` has been fixed.
1212

1313
## 17.3.27 (2019-11-12)
1414

1515
### File Manager
1616

1717
#### Bug Fixes
1818

19-
- #F148827 New event `fileSelection` have been included to restrict the file selection in file manager.
19+
- `#148827` - New event `fileSelection` have been included to restrict the file selection in file manager.
2020

2121
## 17.3.26 (2019-11-05)
2222

@@ -149,7 +149,7 @@
149149

150150
#### New Features
151151

152-
- #144270 - Added support to use the JWT tokens with `beforeSend` event’s Ajax settings.
152+
- `#144270` - Added support to use the JWT tokens with `beforeSend` event’s Ajax settings.
153153

154154
## 17.1.42 (2019-04-23)
155155

components/filemanager/package.json

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

components/gantt/CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,27 @@
22

33
## [Unreleased]
44

5+
## 17.3.29 (2019-11-26)
6+
7+
### Gantt
8+
9+
#### Bug Fixes
10+
11+
- `F149069` - Parent taskbar alignment issue while rendering with single milestone child record has been fixed.
12+
- `F149070` - Key navigation disable issue on Tree Grid section has been fixed.
13+
- `#255266` - ParentID field not available in taskData field has been fixed.
14+
15+
- `F149069` - Parent taskbar alignment issue while rendering with single milestone child record has been fixed.
16+
- `F149070` - Key navigation disable issue on Tree Grid section has been fixed.
17+
18+
## 17.3.28 (2019-11-19)
19+
20+
### Gantt
21+
22+
#### Bug Fixes
23+
24+
- `#253912` - Parent taskbar disappearance issue while deleting all its child records has been fixed.
25+
526
## 17.3.19 (2019-10-22)
627

728
### Gantt

components/gantt/package.json

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

components/grids/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 17.3.29 (2019-11-26)
6+
7+
### Grid
8+
9+
#### Bug Fixes
10+
11+
- `#252476`, `#254801` - Script error throws while clicking the empty row with first column as visible false has been fixed.
12+
- `#253639` - `totalRecordsCount` and `totalPages` values are not refreshed in Grid `pagerTemplate` has been fixed.
13+
- `#254057` - DataSource modified when `aggregateModule` is refreshed in Grid has been fixed.
14+
- `#250278` - Provided event support for customizing Group Caption text.
15+
- `#255431` - Script error throws, while updating the row in edited state has been fixed.
16+
517
## 17.3.28 (2019-11-19)
618

719
### Grid

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.

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.

0 commit comments

Comments
 (0)