Skip to content

Commit ec3fd6e

Browse files
author
pipeline
committed
v20.2.44 is released
1 parent 47d331a commit ec3fd6e

File tree

67 files changed

+1415
-63
lines changed

Some content is hidden

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

67 files changed

+1415
-63
lines changed

README.md

Lines changed: 1173 additions & 3 deletions
Large diffs are not rendered by default.

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.2.38",
3+
"version": "20.2.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

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.44 (2022-08-16)
6+
7+
### Common
8+
9+
#### Bug Fixes
10+
11+
- `#I385176` - The issue with the `vue-class-component` is not removed in vue 2 has been resolved.
12+
513
## 20.2.36 (2022-06-30)
614

715
### Common

components/base/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-base",
3-
"version": "20.2.38",
3+
"version": "20.2.43",
44
"description": "A common package of Essential JS 2 base Vue libraries, methods and class definitions",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/buttons/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-buttons",
3-
"version": "20.2.38",
3+
"version": "20.2.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/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.44 (2022-08-16)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#I395538` - Shared tooltip template is not shown for two series has been fixed.
12+
513
## 20.2.43 (2022-08-08)
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.40",
3+
"version": "20.2.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/accumulation-chart/accumulationchart.component.ts

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

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

components/charts/src/bullet-chart/bulletchart.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/charts/src/chart/chart.component.ts

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

3030
export const emitProbs: any = Object.keys(watch);
31-
emitProbs.push('modelchanged');
31+
emitProbs.push('modelchanged', 'update:modelValue');
3232
for (let props of modelProps) {
3333
emitProbs.push(
3434
'update:'+props

0 commit comments

Comments
 (0)