Skip to content

Commit 095c9a6

Browse files
author
pipeline
committed
v20.1.55 is released
1 parent 22e7c86 commit 095c9a6

File tree

46 files changed

+153
-37
lines changed

Some content is hidden

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

46 files changed

+153
-37
lines changed

components/buttons/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 20.1.52 (2022-05-04)
6-
7-
### Switch
8-
9-
#### Bug Fixes
10-
11-
- `#I362372` - The issue with "Script error occurs while using the reactive method in the switch component in Vue 3" has been resolved.
12-
135
## 20.1.50 (2022-04-19)
146

15-
### Radio Button
16-
17-
#### Bug Fixes
18-
19-
- `F171644` - Issue with Name attribute not updated properly in radio button and checkbox for components has been resolved.
20-
217
### Checkbox
228

239
#### Bug Fixes
@@ -433,6 +419,14 @@ RadioButton is a graphical user interface element that allows to select one opti
433419
- **Sizes** - Provided with different sizes of RadioButton.
434420

435421

422+
## 20.1.52 (2022-05-04)
423+
424+
### Switch
425+
426+
#### Bug Fixes
427+
428+
- `#I362372` - The issue with "Script error occurs while using the reactive method in the switch component in Vue 3" has been resolved.
429+
436430
## 18.4.39 (2021-01-28)
437431

438432
### RadioButton

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.1.50",
3+
"version": "20.1.52",
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/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.1.47",
3+
"version": "20.1.52",
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 & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@ export class CalendarComponent extends ComponentBase {
130130
if (!isExecute) {
131131
this.ej2Instances.vueInstance.$emit('update:' + propKey, eventProp[propKey]);
132132
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
133+
this.ej2Instances.vueInstance.$emit('update:modelValue', eventProp[propKey]);
133134
} else {
134135
if (eventName === 'change' || ((this as any).$props && !(this as any).$props.isLazyUpdate)) {
135136
(this as any).$emit('update:'+ propKey, eventProp[propKey]);

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@ export class DatePickerComponent extends ComponentBase {
130130
if (!isExecute) {
131131
this.ej2Instances.vueInstance.$emit('update:' + propKey, eventProp[propKey]);
132132
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
133+
this.ej2Instances.vueInstance.$emit('update:modelValue', eventProp[propKey]);
133134
} else {
134135
if (eventName === 'change' || ((this as any).$props && !(this as any).$props.isLazyUpdate)) {
135136
(this as any).$emit('update:'+ propKey, eventProp[propKey]);

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@ export class DateRangePickerComponent extends ComponentBase {
131131
if (!isExecute) {
132132
this.ej2Instances.vueInstance.$emit('update:' + propKey, eventProp[propKey]);
133133
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
134+
this.ej2Instances.vueInstance.$emit('update:modelValue', eventProp[propKey]);
134135
} else {
135136
if (eventName === 'change' || ((this as any).$props && !(this as any).$props.isLazyUpdate)) {
136137
(this as any).$emit('update:'+ propKey, eventProp[propKey]);

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@ export class DateTimePickerComponent extends ComponentBase {
130130
if (!isExecute) {
131131
this.ej2Instances.vueInstance.$emit('update:' + propKey, eventProp[propKey]);
132132
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
133+
this.ej2Instances.vueInstance.$emit('update:modelValue', eventProp[propKey]);
133134
} else {
134135
if (eventName === 'change' || ((this as any).$props && !(this as any).$props.isLazyUpdate)) {
135136
(this as any).$emit('update:'+ propKey, eventProp[propKey]);

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@ export class TimePickerComponent extends ComponentBase {
130130
if (!isExecute) {
131131
this.ej2Instances.vueInstance.$emit('update:' + propKey, eventProp[propKey]);
132132
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
133+
this.ej2Instances.vueInstance.$emit('update:modelValue', eventProp[propKey]);
133134
} else {
134135
if (eventName === 'change' || ((this as any).$props && !(this as any).$props.isLazyUpdate)) {
135136
(this as any).$emit('update:'+ propKey, eventProp[propKey]);

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.1.55 (2022-05-12)
6+
7+
### Chart
8+
9+
#### New Features
10+
11+
- `#I360879` - Provided support to disable the marker explode without tooltip and highlight mode.
12+
513
## 20.1.52 (2022-05-04)
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.1.51",
3+
"version": "20.1.52",
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",

0 commit comments

Comments
 (0)