Skip to content

Commit 54f9dbf

Browse files
author
pipeline
committed
v17.4.46 is released
1 parent af80ae3 commit 54f9dbf

File tree

187 files changed

+1396
-130
lines changed

Some content is hidden

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

187 files changed

+1396
-130
lines changed

components/barcodegenerator/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 17.4.46 (2020-01-30)
6+
7+
### Barcode
8+
9+
#### Bug Fixes
10+
11+
- `F150725` - The issue "Barcode Control hasn't rendered in IE11 browser" has been fixed.
12+
513
## 17.2.28-beta (2019-06-27)
614

715
### Barcode

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

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

33
## [Unreleased]
44

5-
## 17.4.44 (2021-01-21)
5+
## 17.4.46 (2020-01-30)
66

77
### Common
88

components/buttons/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 17.4.44 (2021-01-21)
5+
## 17.4.46 (2020-01-30)
6+
7+
### Chips
8+
9+
#### New Features
10+
11+
- `#256381` - Now, the `beforeClick` event triggers while clicking the chips.
12+
- `#256381` - Now, the `selectedChips` property maintains the value field that is provided to the chip.
13+
14+
## 17.4.43 (2020-01-14)
615

716
### Button
817

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

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

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

+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.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": "17.4.41",
3+
"version": "17.4.43",
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/chips/chiplist.component.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { ChipList } from '@syncfusion/ej2-buttons';
44
import { ChipsDirective, ChipDirective, ChipsPlugin, ChipPlugin } from './chips.directive'
55

66

7-
export const properties: string[] = ['avatarIconCss', 'avatarText', 'chips', 'cssClass', 'enableDelete', 'enablePersistence', 'enableRtl', 'enabled', 'leadingIconCss', 'locale', 'selectedChips', 'selection', 'text', 'trailingIconCss', 'click', 'created', 'delete'];
7+
export const properties: string[] = ['avatarIconCss', 'avatarText', 'chips', 'cssClass', 'enableDelete', 'enablePersistence', 'enableRtl', 'enabled', 'leadingIconCss', 'locale', 'selectedChips', 'selection', 'text', 'trailingIconCss', 'beforeClick', 'click', 'created', 'delete'];
88
export const modelProps: string[] = [];
99

1010
/**
@@ -68,7 +68,7 @@ export class ChipListComponent extends ComponentBase {
6868
return this.ej2Instances.remove(fields);
6969
}
7070

71-
public select(fields: number | number[] | Object | Object[]): void {
71+
public select(fields: number | number[] | Object | Object[] | string[]): void {
7272
return this.ej2Instances.select(fields);
7373
}
7474
}

components/calendars/CHANGELOG.md

+12-2
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,15 @@
22

33
## [Unreleased]
44

5-
## 17.4.44 (2021-01-21)
5+
## 17.4.46 (2020-01-30)
66

77
### DatePicker
88

99
#### Bug Fixes
1010

11-
- `#259218` - Issue with "change event argument 'isinteracted' return as false while changing the value after given the same value twice" has been resolved.
11+
- `#260342` - Issue with "datepicker popup not closed while use `shift+tab`" has been resolved.
12+
13+
- `#259218` - Issue with "change event is triggered twice when enable strict mode along with format property" has been resolved.
1214

1315
## 17.4.43 (2020-01-14)
1416

@@ -1064,6 +1066,14 @@ TimePicker component is the pre-filled dropdown list with the time values 12/24
10641066
- **Accessibility** - Provided with built-in accessibility support which helps to access all the TimePicker component features through the keyboard, screen readers, or other assistive technology devices.
10651067

10661068

1069+
## 17.4.44 (2021-01-21)
1070+
1071+
### DatePicker
1072+
1073+
#### Bug Fixes
1074+
1075+
- `#259218` - Issue with "change event argument 'isinteracted' return as false while changing the value after given the same value twice" has been resolved.
1076+
10671077
## 17.3.14 (2019-10-03)
10681078

10691079
### DateRangePicker

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.43",
3+
"version": "17.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",

components/charts/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 17.4.46 (2020-01-30)
6+
7+
### Chart
8+
9+
#### New Features
10+
11+
- `#260004` - Provided support for polar and radar column spacing.
12+
- `#257784` - Provided support for smart rendering of X-axis rotated labels.
13+
- `#254646` - Provided Before export event support for export in chart.
14+
15+
#### Bug Fixes
16+
17+
- `#260205` - While using animate() method one series is not removed issue is fixed now.
18+
- `#255275` - Console error thrown when changing the trendline type from linear to exponential trendline or other types is fixed now.
19+
520
## 17.4.41 (2020-01-07)
621

722
### Stock Chart

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.41",
3+
"version": "17.4.43",
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/chart/chart.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import { SelectedDataIndexesDirective, SelectedDataIndexDirective, SelectedDataI
1616
import { IndicatorsDirective, IndicatorDirective, IndicatorsPlugin, IndicatorPlugin } from './indicators.directive'
1717

1818

19-
export const properties: string[] = ['allowMultiSelection', 'annotations', 'axes', 'background', 'backgroundImage', 'border', 'chartArea', 'columns', 'crosshair', 'currencyCode', 'dataSource', 'description', 'enableAnimation', 'enableCanvas', 'enableExport', 'enablePersistence', 'enableRtl', 'enableSideBySidePlacement', 'height', 'indicators', 'isMultiSelect', 'isTransposed', 'legendSettings', 'locale', 'margin', 'palettes', 'primaryXAxis', 'primaryYAxis', 'rows', 'selectedDataIndexes', 'selectionMode', 'series', 'subTitle', 'subTitleStyle', 'tabIndex', 'theme', 'title', 'titleStyle', 'tooltip', 'useGroupingSeparator', 'width', 'zoomSettings', 'animationComplete', 'annotationRender', 'axisLabelRender', 'axisMultiLabelRender', 'axisRangeCalculated', 'beforePrint', 'chartMouseClick', 'chartMouseDown', 'chartMouseLeave', 'chartMouseMove', 'chartMouseUp', 'drag', 'dragComplete', 'dragEnd', 'dragStart', 'legendClick', 'legendRender', 'load', 'loaded', 'multiLevelLabelClick', 'pointClick', 'pointMove', 'pointRender', 'resized', 'scrollChanged', 'scrollEnd', 'scrollStart', 'selectionComplete', 'seriesRender', 'textRender', 'tooltipRender', 'zoomComplete'];
19+
export const properties: string[] = ['allowMultiSelection', 'annotations', 'axes', 'background', 'backgroundImage', 'border', 'chartArea', 'columns', 'crosshair', 'currencyCode', 'dataSource', 'description', 'enableAnimation', 'enableCanvas', 'enableExport', 'enablePersistence', 'enableRtl', 'enableSideBySidePlacement', 'height', 'indicators', 'isMultiSelect', 'isTransposed', 'legendSettings', 'locale', 'margin', 'palettes', 'primaryXAxis', 'primaryYAxis', 'rows', 'selectedDataIndexes', 'selectionMode', 'series', 'subTitle', 'subTitleStyle', 'tabIndex', 'theme', 'title', 'titleStyle', 'tooltip', 'useGroupingSeparator', 'width', 'zoomSettings', 'animationComplete', 'annotationRender', 'axisLabelRender', 'axisMultiLabelRender', 'axisRangeCalculated', 'beforeExport', 'beforePrint', 'chartMouseClick', 'chartMouseDown', 'chartMouseLeave', 'chartMouseMove', 'chartMouseUp', 'drag', 'dragComplete', 'dragEnd', 'dragStart', 'legendClick', 'legendRender', 'load', 'loaded', 'multiLevelLabelClick', 'pointClick', 'pointMove', 'pointRender', 'resized', 'scrollChanged', 'scrollEnd', 'scrollStart', 'selectionComplete', 'seriesRender', 'textRender', 'tooltipRender', 'zoomComplete'];
2020
export const modelProps: string[] = ['dataSource'];
2121

2222
/**

components/diagrams/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 17.4.46 (2020-01-30)
6+
7+
### Diagram
8+
9+
#### New Features
10+
11+
- `#232055` - Support has been provided to Clip/Ellipsis the annotation when textWrapping as WrapWithOverflow in the diagram.
12+
- `#253884` - Template support for HTML node has been provided.
13+
- `#236612`, `#242275` - The support has been provided to get the In and Out edges from ports.
14+
15+
#### Bug Fixes
16+
17+
- `#260927` - The issue "UmlClassDiagram is not updated properly in the layout" has been fixed.
18+
- `#227953` - The exception occurred while applying line routing for the complex diagram has been fixed.
19+
- `#259627` - The issue "Performance improvement with HTML node" has been fixed.
20+
- `#259329` - The issue "Polyline target decorator is not aligned properly at runtime" has been fixed.
21+
- `F149983` - The exception occurred while changing the z-index for group node at run time has been fixed.
22+
- `259000` - The issue "ConnectionChange Event does not triggered in mouse up" has been fixed.
23+
- `#259960` - The issue "Expand and collapse not working on the Mindmap Layout" has been fixed.
24+
- `#260287` - The issue "left most node unable to be selected in the layout sample" has been fixed.
25+
- `#256458` - The diagram html content is cutoff, while exporting the diagram issue has been fixed.
26+
- `#259774` - The issue with connector and node opacity that is decreased while expanding and collapsing a ComplexHierarchicalTree layout has been fixed.
27+
- `#259981` - Provides support to add group node children at runtime.
28+
529
## 17.4.44 (2021-01-21)
630

731
### Diagram
@@ -12,6 +36,7 @@
1236
- `#260287` - The issue "left most node unable to be selected in the layout sample" has been fixed.
1337
- `#256458` - The diagram html content is cutoff, while exporting the diagram issue has been fixed.
1438
- `#259774` - The issue with connector and node opacity that is decreased while expanding and collapsing a ComplexHierarchicalTree layout has been fixed.
39+
- `#259981` - Provides support to add group node children at runtime.
1540

1641
## 17.4.43 (2020-01-14)
1742

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/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.43",
3+
"version": "17.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",

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

+4
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,10 @@ export class DiagramComponent extends ComponentBase {
6262
return this.ej2Instances.add(obj, group);
6363
}
6464

65+
public addChildToGroup(group: Object, child: string | Object | Object): void {
66+
return this.ej2Instances.addChildToGroup(group, child);
67+
}
68+
6569
public addConnector(obj: Object): Object {
6670
return this.ej2Instances.addConnector(obj);
6771
}

components/documenteditor/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 17.4.44 (2021-01-21)
5+
## 17.4.46 (2020-01-30)
6+
7+
### Document Editor
8+
9+
#### Breaking Changes
10+
11+
- Default value of `enableLocalPaste` is set to false. So, by default, the content will be pasted from the system clipboard.
12+
13+
#### Bug Fixes
14+
15+
- `#252868` - Resolved script error when resize row to next page.
16+
- `#259972` - Formatting is now applied properly for keep text only option in paste.
17+
- `#258191` - Table cell width are now updated properly.
18+
- `#260133`, `#261809` - Page scrolling issue is resolved when right click in MAC machine.
19+
20+
## 17.4.43 (2020-01-14)
621

722
### Document Editor
823

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.41",
3+
"version": "17.4.43",
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.46 (2020-01-30)
6+
7+
### MultiSelect
8+
9+
#### Bug Fixes
10+
11+
- `#261574` - Now, `isInteracted` argument updated properly in the change event while focusout.
12+
513
## 17.4.44 (2021-01-21)
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.

0 commit comments

Comments
 (0)