Skip to content

Commit 47d331a

Browse files
author
pipeline
committed
v20.2.43 is released
1 parent db0c321 commit 47d331a

File tree

86 files changed

+275
-85
lines changed

Some content is hidden

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

86 files changed

+275
-85
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@
3434
## Support
3535
Product support is available for through following mediums.
3636
* Creating incident in Syncfusion [Direct-trac](https://www.syncfusion.com/support/directtrac/incidents?utm_source=npm&utm_campaign=ej2-vue-ui-components) support system or [Community forum](https://www.syncfusion.com/forums/vue?utm_source=npm&utm_campaign=ej2-vue-ui-components).
37-
* New [GitHub issue](https://github.com/syncfusion/ej2-vue-ui-components/issues/issues/new).
37+
* New [GitHub issue](https://github.com/syncfusion/ej2-vue-ui-components/issues/new).
3838
* Ask your query in [Stack Overflow](https://stackoverflow.com/) with tag `syncfusion` and `ej2`.
3939
## License
4040
Check the license detail [here](https://github.com/syncfusion/ej2-vue-ui-components/blob/master/license).
4141
## Changelog
42-
Check the changelog [here](https://ej2.syncfusion.com/vue/documentation/release-notes?utm_source=npm&utm_campaign=ej2-vue-ui-components)
43-
© Copyright 2020 Syncfusion, Inc. All Rights Reserved.
42+
Check the changelog [here](https://ej2.syncfusion.com/vue/documentation/release-notes/index/?utm_source=npm&utm_campaign=ej2-vue-ui-components)
43+
© Copyright 2022 Syncfusion, Inc. All Rights Reserved.
4444
The Syncfusion Essential Studio license and copyright applies to this distribution.

components/barcodegenerator/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-barcode-generator",
3-
"version": "20.1.55",
3+
"version": "20.2.38",
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/barcodegenerator/src/barcode-generator/barcodegenerator.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ import { BarcodeGenerator } from '@syncfusion/ej2-barcode-generator';
66

77

88
// {{VueImport}}
9-
export const properties: string[] = ['isLazyUpdate', 'backgroundColor', 'displayText', 'enableCheckSum', 'enablePersistence', 'enableRtl', 'foreColor', 'height', 'locale', 'margin', 'mode', 'type', 'value', 'width', 'invalid'];
9+
export const properties: string[] = ['isLazyUpdate', 'plugins', 'backgroundColor', 'displayText', 'enableCheckSum', 'enablePersistence', 'enableRtl', 'foreColor', 'height', 'locale', 'margin', 'mode', 'type', 'value', 'width', 'invalid'];
1010
export const modelProps: string[] = [];
1111

1212
export const testProp: any = getProps({props: properties});
1313
export const props = testProp[0];
1414
export const watch = testProp[1];
1515

1616
export const emitProbs: any = Object.keys(watch);
17-
emitProbs.push('modelchanged');
17+
emitProbs.push('modelchanged', 'update:modelValue');
1818
for (let props of modelProps) {
1919
emitProbs.push(
2020
'update:'+props

components/barcodegenerator/src/datamatrix-generator/datamatrixgenerator.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ import { DataMatrixGenerator } from '@syncfusion/ej2-barcode-generator';
66

77

88
// {{VueImport}}
9-
export const properties: string[] = ['isLazyUpdate', 'backgroundColor', 'displayText', 'enablePersistence', 'enableRtl', 'encoding', 'foreColor', 'height', 'locale', 'margin', 'mode', 'size', 'value', 'width', 'xDimension', 'invalid'];
9+
export const properties: string[] = ['isLazyUpdate', 'plugins', 'backgroundColor', 'displayText', 'enablePersistence', 'enableRtl', 'encoding', 'foreColor', 'height', 'locale', 'margin', 'mode', 'size', 'value', 'width', 'xDimension', 'invalid'];
1010
export const modelProps: string[] = [];
1111

1212
export const testProp: any = getProps({props: properties});
1313
export const props = testProp[0];
1414
export const watch = testProp[1];
1515

1616
export const emitProbs: any = Object.keys(watch);
17-
emitProbs.push('modelchanged');
17+
emitProbs.push('modelchanged', 'update:modelValue');
1818
for (let props of modelProps) {
1919
emitProbs.push(
2020
'update:'+props

components/barcodegenerator/src/qrcode-generator/qrcodegenerator.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ import { QRCodeGenerator } from '@syncfusion/ej2-barcode-generator';
66

77

88
// {{VueImport}}
9-
export const properties: string[] = ['isLazyUpdate', 'backgroundColor', 'displayText', 'enablePersistence', 'enableRtl', 'errorCorrectionLevel', 'foreColor', 'height', 'locale', 'margin', 'mode', 'value', 'version', 'width', 'xDimension', 'invalid'];
9+
export const properties: string[] = ['isLazyUpdate', 'plugins', 'backgroundColor', 'displayText', 'enablePersistence', 'enableRtl', 'errorCorrectionLevel', 'foreColor', 'height', 'locale', 'margin', 'mode', 'value', 'version', 'width', 'xDimension', 'invalid'];
1010
export const modelProps: string[] = [];
1111

1212
export const testProp: any = getProps({props: properties});
1313
export const props = testProp[0];
1414
export const watch = testProp[1];
1515

1616
export const emitProbs: any = Object.keys(watch);
17-
emitProbs.push('modelchanged');
17+
emitProbs.push('modelchanged', 'update:modelValue');
1818
for (let props of modelProps) {
1919
emitProbs.push(
2020
'update:'+props

components/buttons/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## 20.2.43 (2022-08-08)
6+
7+
### Switch
8+
9+
#### Bug Fixes
10+
11+
- `#384387` - The issue with "Switch component click event trigger two times when we handling enable/disable dynamically" has been resolved.
12+
513
## 20.2.36 (2022-06-30)
614

715
### Checkbox

components/buttons/src/button/button.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export const props = testProp[0];
1414
export const watch = testProp[1];
1515

1616
export const emitProbs: any = Object.keys(watch);
17-
emitProbs.push('modelchanged');
17+
emitProbs.push('modelchanged', 'update:modelValue');
1818
for (let props of modelProps) {
1919
emitProbs.push(
2020
'update:'+props

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export const props = testProp[0];
1515
export const watch = testProp[1];
1616

1717
export const emitProbs: any = Object.keys(watch);
18-
emitProbs.push('modelchanged');
18+
emitProbs.push('modelchanged', 'update:modelValue');
1919
for (let props of modelProps) {
2020
emitProbs.push(
2121
'update:'+props

components/buttons/src/chips/chiplist.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export const props = testProp[0];
1515
export const watch = testProp[1];
1616

1717
export const emitProbs: any = Object.keys(watch);
18-
emitProbs.push('modelchanged');
18+
emitProbs.push('modelchanged', 'update:modelValue');
1919
for (let props of modelProps) {
2020
emitProbs.push(
2121
'update:'+props

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export const props = testProp[0];
1515
export const watch = testProp[1];
1616

1717
export const emitProbs: any = Object.keys(watch);
18-
emitProbs.push('modelchanged');
18+
emitProbs.push('modelchanged', 'update:modelValue');
1919
for (let props of modelProps) {
2020
emitProbs.push(
2121
'update:'+props

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export const props = testProp[0];
1515
export const watch = testProp[1];
1616

1717
export const emitProbs: any = Object.keys(watch);
18-
emitProbs.push('modelchanged');
18+
emitProbs.push('modelchanged', 'update:modelValue');
1919
for (let props of modelProps) {
2020
emitProbs.push(
2121
'update:'+props

components/calendars/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-calendars",
3-
"version": "20.2.38",
3+
"version": "20.2.40",
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/calendars/src/calendar/calendar.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export const props = testProp[0];
1515
export const watch = testProp[1];
1616

1717
export const emitProbs: any = Object.keys(watch);
18-
emitProbs.push('modelchanged');
18+
emitProbs.push('modelchanged', 'update:modelValue');
1919
for (let props of modelProps) {
2020
emitProbs.push(
2121
'update:'+props

components/calendars/src/datepicker/datepicker.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export const props = testProp[0];
1515
export const watch = testProp[1];
1616

1717
export const emitProbs: any = Object.keys(watch);
18-
emitProbs.push('modelchanged');
18+
emitProbs.push('modelchanged', 'update:modelValue');
1919
for (let props of modelProps) {
2020
emitProbs.push(
2121
'update:'+props

components/calendars/src/daterangepicker/daterangepicker.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export const props = testProp[0];
1616
export const watch = testProp[1];
1717

1818
export const emitProbs: any = Object.keys(watch);
19-
emitProbs.push('modelchanged');
19+
emitProbs.push('modelchanged', 'update:modelValue');
2020
for (let props of modelProps) {
2121
emitProbs.push(
2222
'update:'+props

components/calendars/src/datetimepicker/datetimepicker.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export const props = testProp[0];
1515
export const watch = testProp[1];
1616

1717
export const emitProbs: any = Object.keys(watch);
18-
emitProbs.push('modelchanged');
18+
emitProbs.push('modelchanged', 'update:modelValue');
1919
for (let props of modelProps) {
2020
emitProbs.push(
2121
'update:'+props

components/calendars/src/timepicker/timepicker.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export const props = testProp[0];
1515
export const watch = testProp[1];
1616

1717
export const emitProbs: any = Object.keys(watch);
18-
emitProbs.push('modelchanged');
18+
emitProbs.push('modelchanged', 'update:modelValue');
1919
for (let props of modelProps) {
2020
emitProbs.push(
2121
'update:'+props

components/charts/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## 20.2.43 (2022-08-08)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#I393292` - Accumulation chart tooltip marker issue has been fixed.
12+
513
## 20.2.40 (2022-07-26)
614

715
### Chart

components/charts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-charts",
3-
"version": "20.2.38",
3+
"version": "20.2.40",
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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
## [Unreleased]
44

5+
## 20.2.40 (2022-07-26)
6+
7+
### Diagram
8+
9+
#### Bug fixes
10+
11+
- `#I388692` - Now connectors are properly connected to the node after save and load.
12+
- `#I384554` - Now scroll settings offset are updated properly dynamically.
13+
514
## 20.2.39 (2022-07-19)
615

716
- `FB36050` - Now, oldValue & newValue argument of property change event updated properly while change order for nodes.

components/diagrams/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-diagrams",
3-
"version": "20.2.39",
3+
"version": "20.2.40",
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export const props = testProp[0];
2323
export const watch = testProp[1];
2424

2525
export const emitProbs: any = Object.keys(watch);
26-
emitProbs.push('modelchanged');
26+
emitProbs.push('modelchanged', 'update:modelValue');
2727
for (let props of modelProps) {
2828
emitProbs.push(
2929
'update:'+props

components/diagrams/src/overview/overview.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export const props = testProp[0];
1414
export const watch = testProp[1];
1515

1616
export const emitProbs: any = Object.keys(watch);
17-
emitProbs.push('modelchanged');
17+
emitProbs.push('modelchanged', 'update:modelValue');
1818
for (let props of modelProps) {
1919
emitProbs.push(
2020
'update:'+props

components/diagrams/src/symbol-palette/symbolpalette.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export const props = testProp[0];
1515
export const watch = testProp[1];
1616

1717
export const emitProbs: any = Object.keys(watch);
18-
emitProbs.push('modelchanged');
18+
emitProbs.push('modelchanged', 'update:modelValue');
1919
for (let props of modelProps) {
2020
emitProbs.push(
2121
'update:'+props

components/documenteditor/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-documenteditor",
3-
"version": "20.2.39",
3+
"version": "20.2.40",
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/documenteditor/src/document-editor-container/documenteditorcontainer.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export const props = testProp[0];
1414
export const watch = testProp[1];
1515

1616
export const emitProbs: any = Object.keys(watch);
17-
emitProbs.push('modelchanged');
17+
emitProbs.push('modelchanged', 'update:modelValue');
1818
for (let props of modelProps) {
1919
emitProbs.push(
2020
'update:'+props

components/documenteditor/src/document-editor/documenteditor.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export const props = testProp[0];
1414
export const watch = testProp[1];
1515

1616
export const emitProbs: any = Object.keys(watch);
17-
emitProbs.push('modelchanged');
17+
emitProbs.push('modelchanged', 'update:modelValue');
1818
for (let props of modelProps) {
1919
emitProbs.push(
2020
'update:'+props

components/dropdowns/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## 20.2.43 (2022-08-08)
6+
7+
### ListBox
8+
9+
#### Bug Fixes
10+
11+
- `#I384240` - Issue with "`RemoveItems` not working properly after adding items with specific index" has been resolved.
12+
513
## 20.2.40 (2022-07-26)
614

715
### MultiSelect

components/dropdowns/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-dropdowns",
3-
"version": "20.2.39",
3+
"version": "20.2.40",
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export const props = testProp[0];
1515
export const watch = testProp[1];
1616

1717
export const emitProbs: any = Object.keys(watch);
18-
emitProbs.push('modelchanged');
18+
emitProbs.push('modelchanged', 'update:modelValue');
1919
for (let props of modelProps) {
2020
emitProbs.push(
2121
'update:'+props

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export const props = testProp[0];
1515
export const watch = testProp[1];
1616

1717
export const emitProbs: any = Object.keys(watch);
18-
emitProbs.push('modelchanged');
18+
emitProbs.push('modelchanged', 'update:modelValue');
1919
for (let props of modelProps) {
2020
emitProbs.push(
2121
'update:'+props

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export const props = testProp[0];
1515
export const watch = testProp[1];
1616

1717
export const emitProbs: any = Object.keys(watch);
18-
emitProbs.push('modelchanged');
18+
emitProbs.push('modelchanged', 'update:modelValue');
1919
for (let props of modelProps) {
2020
emitProbs.push(
2121
'update:'+props

components/dropdowns/src/drop-down-tree/dropdowntree.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export const props = testProp[0];
1515
export const watch = testProp[1];
1616

1717
export const emitProbs: any = Object.keys(watch);
18-
emitProbs.push('modelchanged');
18+
emitProbs.push('modelchanged', 'update:modelValue');
1919
for (let props of modelProps) {
2020
emitProbs.push(
2121
'update:'+props

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export const props = testProp[0];
1515
export const watch = testProp[1];
1616

1717
export const emitProbs: any = Object.keys(watch);
18-
emitProbs.push('modelchanged');
18+
emitProbs.push('modelchanged', 'update:modelValue');
1919
for (let props of modelProps) {
2020
emitProbs.push(
2121
'update:'+props

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export const props = testProp[0];
1515
export const watch = testProp[1];
1616

1717
export const emitProbs: any = Object.keys(watch);
18-
emitProbs.push('modelchanged');
18+
emitProbs.push('modelchanged', 'update:modelValue');
1919
for (let props of modelProps) {
2020
emitProbs.push(
2121
'update:'+props

components/gantt/CHANGELOG.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,25 @@
22

33
## [Unreleased]
44

5-
## 20.2.39 (2022-07-19)
5+
## 20.2.43 (2022-08-08)
66

77
### Gantt
88

99
#### Bug Fixes
1010

11-
- `#I389834` - Records position not updated properly in datasource when we drag and drop the records issue has been fixed.
11+
- `#I393339` - Empty record is displayed after searching a text when using the refresh method issue has been fixed.
12+
- `#I392655` - Issue in deleting multiple tasks, when one task is collapsed issue has been fixed.
13+
- `#I394407` - Script error occurs when we edit the baseline date issue has been fixed.
1214
- `#I376455` - Unable to focus on chart element when editing is not enabled has been fixed.
15+
- `#I393670`, `#I393633` - End date calculated wrongly for adding new task after zoom to fit is performed issue has been fixed.
16+
- `#I391704`-Need to disable HTML encoding in tooltip has been fixed.
17+
- `#F149986` - Unable to use drop down edit in progress column has been fixed.
18+
19+
## 20.2.39 (2022-07-19)
20+
21+
### Gantt
22+
23+
#### Bug Fixes
1324

1425
- `#I389834` - Records position not updated properly in datasource when we drag and drop the records issue has been fixed.
1526

0 commit comments

Comments
 (0)