Skip to content

Commit af80ae3

Browse files
author
pipeline
committed
v17.4.44 is released
1 parent fcb093e commit af80ae3

Some content is hidden

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

45 files changed

+128
-34
lines changed

components/base/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 17.4.43 (2020-01-14)
5+
## 17.4.44 (2021-01-21)
66

77
### Common
88

components/buttons/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 17.4.43 (2020-01-14)
5+
## 17.4.44 (2021-01-21)
66

77
### Button
88

components/calendars/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 17.4.44 (2021-01-21)
6+
7+
### DatePicker
8+
9+
#### Bug Fixes
10+
11+
- `#259218` - Issue with "change event argument 'isinteracted' return as false while changing the value after given the same value twice" has been resolved.
12+
513
## 17.4.43 (2020-01-14)
614

715
### Calendar

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

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

33
## [Unreleased]
44

5+
## 17.4.44 (2021-01-21)
6+
7+
### Diagram
8+
9+
#### Bug Fixes
10+
11+
- `#259960` - The issue "Expand and collapse not working on the Mindmap Layout" has been fixed.
12+
- `#260287` - The issue "left most node unable to be selected in the layout sample" has been fixed.
13+
- `#256458` - The diagram html content is cutoff, while exporting the diagram issue has been fixed.
14+
- `#259774` - The issue with connector and node opacity that is decreased while expanding and collapsing a ComplexHierarchicalTree layout has been fixed.
15+
516
## 17.4.43 (2020-01-14)
617

718
### Diagram

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": "17.4.41",
3+
"version": "17.4.43",
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

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

33
## [Unreleased]
44

5-
## 17.4.43 (2020-01-14)
5+
## 17.4.44 (2021-01-21)
66

77
### Document Editor
88

components/dropdowns/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 17.4.44 (2021-01-21)
6+
7+
### ListBox
8+
9+
#### Bug Fixes
10+
11+
- `#260635` - Sorted datasource not updated properly in ListBox has been fixed.
12+
513
## 17.4.43 (2020-01-14)
614

715
### ListBox

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

+3
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

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

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

+4
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,10 @@ export class ListBoxComponent extends ComponentBase {
9898
return this.ej2Instances.getItems();
9999
}
100100

101+
public getSortedList(): undefined[] | string[] | boolean[] | number[] {
102+
return this.ej2Instances.getSortedList();
103+
}
104+
101105
public moveAllTo(targetId?: string, index?: number): void {
102106
return this.ej2Instances.moveAllTo(targetId, index);
103107
}

components/filemanager/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 17.4.44 (2021-01-21)
6+
7+
### File Manager
8+
9+
#### Bug Fixes
10+
11+
- Resolved the script error when navigate any folder after changing the toolbar settings dynamically in the file manager component.
12+
513
## 17.4.43 (2020-01-14)
614

715
### File Manager

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.4.41",
3+
"version": "17.4.43",
44
"description": "Essential JS 2 FileManager Component for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/gantt/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 17.4.43 (2020-01-14)
5+
## 17.4.44 (2021-01-21)
6+
7+
### Gantt
8+
9+
#### Bug Fixes
10+
11+
- `#260331` - Typescript declaration issue fixed.
12+
13+
## 17.4.41 (2020-01-07)
614

715
### Gantt
816

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.4.40",
3+
"version": "17.4.43",
44
"description": "Essential JS 2 Gantt Component for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/grids/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 17.4.44 (2021-01-21)
6+
7+
### Grid
8+
9+
#### Bug Fixes
10+
11+
- `#259865` - Grid focus persistence while checkbox filtering has been fixed.
12+
- `#258341` - `action` parameter has been added for filter events.
13+
- `#150314` - Footer template issue with Pdf export has been fixed.
14+
- `#260453` - `rowDragStartHelper's`action can be cancelled using the `args.cancel` parameter.
15+
516
## 17.4.43 (2020-01-14)
617

718
### Grid

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": "17.4.41",
3+
"version": "17.4.43",
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/inplaceeditor/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 17.4.43 (2020-01-14)
5+
## 17.4.44 (2021-01-21)
66

77
### In-place Editor
88

components/layouts/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 17.4.44 (2021-01-21)
6+
7+
### Dashboard Layout
8+
9+
#### Bug Fixes
10+
11+
- Resolved the script error while destroying the dashboard layout component in IE11 browser.
12+
13+
### Splitter
14+
15+
#### Bug Fixes
16+
17+
- `#I261044` - Issue with expand and collapse icons button type has been resolved.
18+
519
## 17.4.43 (2020-01-14)
620

721
### Splitter

components/layouts/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-layouts",
3-
"version": "17.4.41",
3+
"version": "17.4.43",
44
"description": "A package of Essential JS 2 layout pure CSS components such as card and avatar. The card is used as small container to show content in specific structure, whereas the avatars are icons, initials or figures representing particular person. for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/lists/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-lists",
3-
"version": "17.4.41",
3+
"version": "17.4.43",
44
"description": "The listview control allows you to select an item or multiple items from a list-like interface and represents the data in interactive hierarchical structure across different layouts or views. for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/maps/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
## [Unreleased]
1616

17-
## 17.4.43 (2020-01-14)
17+
## 17.4.44 (2021-01-21)
1818

1919
### Maps
2020

components/navigations/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 17.4.44 (2021-01-21)
6+
7+
### Menu
8+
9+
#### Bug Fixes
10+
11+
- Issue with closing sub menu is fixed.
12+
513
## 17.4.43 (2020-01-14)
614

715
### TreeView

components/navigations/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-navigations",
3-
"version": "17.4.41",
3+
"version": "17.4.43",
44
"description": "A package of Essential JS 2 navigation components such as Tree-view, Tab, Toolbar, Context-menu, and Accordion which is used to navigate from one page to another for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/notifications/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 17.4.43 (2020-01-14)
5+
## 17.4.44 (2021-01-21)
66

77
### Toast
88

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

+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)