Skip to content

Commit fcb093e

Browse files
author
pipeline
committed
v17.4.43 is released
1 parent 132f97f commit fcb093e

File tree

68 files changed

+246
-49
lines changed

Some content is hidden

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

68 files changed

+246
-49
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.41 (2020-01-07)
5+
## 17.4.43 (2020-01-14)
66

77
### Common
88

components/buttons/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 17.4.43 (2020-01-14)
6+
7+
### Button
8+
9+
#### Bug Fixes
10+
11+
- Disabled button not working properly has been resolved.
12+
13+
## 17.4.41 (2020-01-07)
14+
15+
### Chips
16+
17+
#### Bug Fixes
18+
19+
- `#256994` - The issue with aria-selected value maintenance in a single selection has been fixed.
20+
521
## 17.4.39 (2019-12-17)
622

723
### Chips

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

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

33
## [Unreleased]
44

5+
## 17.4.43 (2020-01-14)
6+
7+
### Calendar
8+
9+
#### Bug Fixes
10+
11+
- Issue with "datepicker popup not opened in IE browser" has been resolved.
12+
513
## 17.4.41 (2020-01-07)
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.40",
3+
"version": "17.4.41",
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/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/dist/ej2-vue-charts.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/charts/dist/es6/ej2-vue-charts.es2015.js

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

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

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

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

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

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

+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": "17.4.40",
3+
"version": "17.4.41",
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/charts/src/accumulation-chart/accumulationchart.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { AccumulationSeriesCollectionDirective, AccumulationSeriesDirective, Acc
66
import { AccumulationAnnotationsDirective, AccumulationAnnotationDirective, AccumulationAnnotationsPlugin, AccumulationAnnotationPlugin } from './annotations.directive'
77

88

9-
export const properties: string[] = ['annotations', 'background', 'backgroundImage', 'border', 'center', 'currencyCode', 'dataSource', 'enableAnimation', 'enableExport', 'enablePersistence', 'enableRtl', 'enableSmartLabels', 'height', 'isMultiSelect', 'legendSettings', 'locale', 'margin', 'selectedDataIndexes', 'selectionMode', 'series', 'subTitle', 'subTitleStyle', 'theme', 'title', 'titleStyle', 'tooltip', 'useGroupingSeparator', 'width', 'animationComplete', 'annotationRender', 'beforePrint', 'chartMouseClick', 'chartMouseDown', 'chartMouseLeave', 'chartMouseMove', 'chartMouseUp', 'legendRender', 'load', 'loaded', 'pointClick', 'pointMove', 'pointRender', 'resized', 'seriesRender', 'textRender', 'tooltipRender'];
9+
export const properties: string[] = ['annotations', 'background', 'backgroundImage', 'border', 'center', 'currencyCode', 'dataSource', 'enableAnimation', 'enableBorderOnMouseMove', 'enableExport', 'enablePersistence', 'enableRtl', 'enableSmartLabels', 'height', 'isMultiSelect', 'legendSettings', 'locale', 'margin', 'selectedDataIndexes', 'selectionMode', 'series', 'subTitle', 'subTitleStyle', 'theme', 'title', 'titleStyle', 'tooltip', 'useGroupingSeparator', 'width', 'animationComplete', 'annotationRender', 'beforePrint', 'chartMouseClick', 'chartMouseDown', 'chartMouseLeave', 'chartMouseMove', 'chartMouseUp', 'legendRender', 'load', 'loaded', 'pointClick', 'pointMove', 'pointRender', 'resized', 'seriesRender', 'textRender', 'tooltipRender'];
1010
export const modelProps: string[] = ['dataSource'];
1111

1212
/**

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

components/diagrams/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 17.4.43 (2020-01-14)
6+
7+
### Diagram
8+
9+
#### Bug Fixes
10+
11+
- `#259627` - The issue "Performance improvement with HTML node" has been fixed.
12+
- `#259329` - The issue "Polyline target decorator is not aligned properly at runtime" has been fixed.
13+
- `F149983` - The exception occurred while changing the z-index for group node at run time has been fixed.
14+
- `259000` - The issue "ConnectionChange Event does not triggered in mouse up" has been fixed.
15+
516
## 17.4.41 (2020-01-07)
617

718
### Diagram
@@ -12,6 +23,10 @@
1223
- `#253884` - Template support for HTML node has been provided.
1324
- `#236612`, `#242275` - The support has been provided to get the In and Out edges from ports.
1425

26+
#### Bug Fixes
27+
28+
- `#258539` - The issue "Unable to move the connector together with the group when editing an Orthogonal connector segment in a group" has been fixed.
29+
1530
## 17.4.40 (2019-12-24)
1631

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

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

33
## [Unreleased]
44

5+
## 17.4.43 (2020-01-14)
6+
7+
### Document Editor
8+
9+
#### Bug Fixes
10+
11+
- `#258087`, `#255070` - Grid columns are now preserved properly on export.
12+
- `#255070` - Page headers is now export properly when section break in table.
13+
- `#259583` - List level number for style paragraph is now export properly.
14+
- `#259153` - Table cell width and height is now copy properly.
15+
- `#258121` - Resolved warnings in bootstrap4 styles when run the application in Firefox.
16+
- `#249197` - Highlight colours are now exported properly.
17+
- `#260048`, `#256276` - Image files are now pasted properly.
18+
519
## 17.4.41 (2020-01-07)
620

721
### Document Editor
@@ -79,7 +93,7 @@
7993

8094
#### Bug Fixes
8195

82-
- `#255913` - Bookmark is now insert properly in splitted paragraph.
96+
- `#255913`, `#257879` - Bookmark is now insert properly in splitted paragraph.
8397
- `#255736` , `#256106` , `#257011` - Context menu is now open in Firefox, Edge and Safari.
8498
- `#254998` - Character format is now apply properly for selected bookmark.
8599
- `#254997`, `#256764`, `#257106` , `#256764` - Paragraph format is now export properly if document contains selection.

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

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

33
## [Unreleased]
44

5+
## 17.4.43 (2020-01-14)
6+
7+
### ListBox
8+
9+
#### Bug Fixes
10+
11+
- `#F150435` - Script error occurs during disabled toolbar button click has been resolved.
12+
513
## 17.4.41 (2020-01-07)
614

715
### ListBox

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

components/filemanager/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 17.4.43 (2020-01-14)
6+
7+
### File Manager
8+
9+
#### Bug Fixes
10+
11+
- `#149499` - The issue with date modified in ASP.NET Core Azure File System Provider has been fixed.
12+
- `#256589` - The issue with `Directory traversal vulnerability` in NodeJS File System Provider has been fixed.
13+
514
## 17.4.41 (2020-01-07)
615

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

components/gantt/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 17.4.41 (2020-01-07)
5+
## 17.4.43 (2020-01-14)
66

77
### Gantt
88

components/grids/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 17.4.43 (2020-01-14)
6+
7+
### Grid
8+
9+
#### Bug Fixes
10+
11+
- `#259844` - Excel filter with null operator issue has been fixed.
12+
- `#248887, #245140, #249856` - Selection issue while Virtualization enabled has been fixed.
13+
514
## 17.4.41 (2020-01-07)
615

716
### 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.

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

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

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

+4
Original file line numberDiff line numberDiff line change
@@ -261,6 +261,10 @@ export class GridComponent extends ComponentBase {
261261
return this.ej2Instances.getHeaderTable();
262262
}
263263

264+
public getHiddenColumns(): Object[] {
265+
return this.ej2Instances.getHiddenColumns();
266+
}
267+
264268
public getMediaColumns(): void {
265269
return this.ej2Instances.getMediaColumns();
266270
}

components/inplaceeditor/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 17.4.43 (2020-01-14)
6+
7+
### In-place Editor
8+
9+
#### New Features
10+
11+
- `#255914` - Provided actual `text` field value display on initial load, when DropDown components are configured with the `fields` property.
12+
513
## 17.4.40 (2019-12-24)
614

715
### In-place Editor

components/inputs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-inputs",
3-
"version": "17.4.39",
3+
"version": "17.4.41",
44
"description": "A package of Essential JS 2 input components such as Textbox, Color-picker, Masked-textbox, Numeric-textbox, Slider, Upload, and Form-validator that is used to get input from the users. for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/layouts/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 17.4.43 (2020-01-14)
6+
7+
### Splitter
8+
9+
#### Bug Fixes
10+
11+
- `#255853` - Resolved the issue "Splitter resizing does not work as expected if it has an iframe element".
12+
- `#259892` - Resolved the issue "Splitter pane is not properly resized when it has percentage pane size".
13+
514
## 17.4.41 (2020-01-07)
615

716
### Dashboard Layout

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

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

33
## [Unreleased]
44

5+
## 17.4.43 (2020-01-14)
6+
7+
### ListView
8+
9+
#### Bug Fixes
10+
11+
- The issue with `enabling the virtualization support in ListView component that throws script error in IE 11 browser` has been resolved.
12+
513
## 17.4.41 (2020-01-07)
614

715
### ListBox
@@ -10,6 +18,12 @@
1018

1119
- Provided `items` argument support for `beforeDrop` event.
1220

21+
### ListView
22+
23+
#### Bug Fixes
24+
25+
- #259827 - The issue with the `ListView component that throws script error in IE 11 browser` has been resolved.
26+
1327
## 17.4.40 (2019-12-24)
1428

1529
### ListBox

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

+16
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,22 @@
1414

1515
## [Unreleased]
1616

17+
## 17.4.43 (2020-01-14)
18+
19+
### Maps
20+
21+
#### New Features
22+
23+
- `#244109` - `zoomToCoordinates` method is now exposed to zoom the map based on the coordinates.
24+
25+
#### Bug Fixes
26+
27+
- `#244109` - Panning is working properly now when we enable the `shouldZoomInitially` property.
28+
- `#259807` - Console error will not be thrown now when changing the position of the legend.
29+
- `#259807` - Shapes in the maps will not be cropped when changing the position of the legend after clicking the zoom reset button.
30+
- `#258541` - The latitude and the longitude values of the markers can now be set as a string.
31+
- `#258541` - The performance of the data label for point shape is now improved.
32+
1733
## 17.4.41 (2020-01-07)
1834

1935
### Maps

0 commit comments

Comments
 (0)