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

0 commit comments

Comments
 (0)