Skip to content

Commit 64632c9

Browse files
author
pipeline
committed
v27.2.3 is released
1 parent 6612175 commit 64632c9

File tree

87 files changed

+438
-36
lines changed

Some content is hidden

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

87 files changed

+438
-36
lines changed

components/barcodegenerator/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 27.2.2 (2024-11-15)
5+
## 27.2.3 (2024-11-21)
66

77
### Barcode
88

components/buttons/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 27.2.2 (2024-11-15)
5+
## 27.2.3 (2024-11-21)
66

77
### Checkbox
88

components/calendars/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 27.2.3 (2024-11-21)
6+
7+
### DatePicker
8+
9+
#### Bug Fixes
10+
11+
- `#I648389` - Fixed an issue where the CSS for the selected value was removed when the minimum and maximum properties were changed dynamically.
12+
13+
- `#I654432` - Fixed an issue where the Clear Icon was displayed when the enable mask support had no value.
14+
515
## 27.2.2 (2024-11-15)
616

17+
### DatePicker
18+
19+
#### Bug Fixes
20+
21+
- `#I648389` - Fixed an issue where the CSS for the selected value was removed when the minimum and maximum properties were changed dynamically.
22+
23+
## 27.1.57 (2024-10-29)
24+
25+
### DateRangePicker
26+
27+
#### Bug Fixes
28+
29+
- `#I643169` - Fixed an issue where the popup repositions to `Right-Bottom` when clicking on the custom range, even though it is set to `Left-Bottom`.
30+
31+
## 27.1.55 (2024-10-22)
32+
733
### DateTimePicker
834

935
#### Bug Fixes

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": "27.1.52",
3+
"version": "27.2.2",
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: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,9 @@ export let CalendarComponent: DefineVueComponent<CalendarModel> = vueDefineComp
139139
currentView(): string {
140140
return this.ej2Instances.currentView();
141141
},
142+
destroy(): void {
143+
return this.ej2Instances.destroy();
144+
},
142145
navigateTo(view: Object, date: Object, isCustomDate?: boolean): void {
143146
return this.ej2Instances.navigateTo(view, date, isCustomDate);
144147
},
@@ -170,6 +173,7 @@ export type CalendarComponent = typeof ComponentBase & {
170173
addDate(dates: Object | Object[]): void;
171174
createContent(): void;
172175
currentView(): string;
176+
destroy(): void;
173177
navigateTo(view: Object, date: Object, isCustomDate?: boolean): void;
174178
removeDate(dates: Object | Object[]): void;
175179
requiredModules(): Object[]

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,9 @@ export let DatePickerComponent: DefineVueComponent<DatePickerModel> = vueDefine
139139
currentView(): string {
140140
return this.ej2Instances.currentView();
141141
},
142+
destroy(): void {
143+
return this.ej2Instances.destroy();
144+
},
142145
focusIn(triggerEvent?: boolean): void {
143146
return this.ej2Instances.focusIn(triggerEvent);
144147
},
@@ -182,6 +185,7 @@ export type DatePickerComponent = typeof ComponentBase & {
182185
addDate(dates: Object | Object[]): void;
183186
createContent(): void;
184187
currentView(): string;
188+
destroy(): void;
185189
focusIn(triggerEvent?: boolean): void;
186190
focusOut(): void;
187191
hide(event?: Object | Object | Object): void;

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,9 @@ export let DateRangePickerComponent: DefineVueComponent<DateRangePickerModel> =
131131
custom(): void {
132132
this.updated();
133133
},
134+
destroy(): void {
135+
return this.ej2Instances.destroy();
136+
},
134137
focusIn(): void {
135138
return this.ej2Instances.focusIn();
136139
},
@@ -168,6 +171,7 @@ export type DateRangePickerComponent = typeof ComponentBase & {
168171
trigger(eventName: string, eventProp: {
169172
[key: string]: Object;
170173
}, successHandler?: Function): void;
174+
destroy(): void;
171175
focusIn(): void;
172176
focusOut(): void;
173177
getSelectedRange(): Object;

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,9 @@ export let DateTimePickerComponent: DefineVueComponent<DateTimePickerModel> = v
139139
currentView(): string {
140140
return this.ej2Instances.currentView();
141141
},
142+
destroy(): void {
143+
return this.ej2Instances.destroy();
144+
},
142145
focusIn(): void {
143146
return this.ej2Instances.focusIn();
144147
},
@@ -185,6 +188,7 @@ export type DateTimePickerComponent = typeof ComponentBase & {
185188
addDate(dates: Object | Object[]): void;
186189
createContent(): void;
187190
currentView(): string;
191+
destroy(): void;
188192
focusIn(): void;
189193
focusOut(): void;
190194
hide(e?: Object | Object | Object): void;

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,9 @@ export let TimePickerComponent: DefineVueComponent<TimePickerModel> = vueDefine
130130
custom(): void {
131131
this.updated();
132132
},
133+
destroy(): void {
134+
return this.ej2Instances.destroy();
135+
},
133136
focusIn(): void {
134137
return this.ej2Instances.focusIn();
135138
},
@@ -164,6 +167,7 @@ export type TimePickerComponent = typeof ComponentBase & {
164167
trigger(eventName: string, eventProp: {
165168
[key: string]: Object;
166169
}, successHandler?: Function): void;
170+
destroy(): void;
167171
focusIn(): void;
168172
focusOut(): void;
169173
hide(): void;

components/charts/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 27.2.3 (2024-11-21)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#I650885` - Now, the subtitle will align properly without cut off.
12+
- `#I651405` - Legends with paging now render correctly when toggling in canvas mode.
13+
14+
### Stock Chart
15+
16+
#### Bug Fixes
17+
18+
- `#I652007` - The tick mark now remains consistent for the selected indicator after refresh or resize.
19+
520
## 27.2.2 (2024-11-15)
621

722
### Chart

0 commit comments

Comments
 (0)