Skip to content

Commit 2193742

Browse files
author
pipeline
committed
v27.2.4 is released
1 parent 64632c9 commit 2193742

File tree

68 files changed

+306
-42
lines changed

Some content is hidden

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

68 files changed

+306
-42
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.3 (2024-11-21)
5+
## 27.2.4 (2024-11-26)
66

77
### Barcode
88

components/buttons/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@
22

33
## [Unreleased]
44

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

77
### Checkbox
88

99
#### Bug Fixes
1010

11+
- `#F857466`- The issue with "Need to set the label tag for attribute if user changes the checkbox input id in checkbox component" has been resolved.
1112
- `#F95768`- The issue with "Parent element click event `prevented` while clicking on switch component in angular." has been resolved.
1213

1314
## 27.1.58 (2024-11-05)

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": "27.1.58",
3+
"version": "27.2.2",
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/buttons/src/button/button.component.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,9 @@ export let ButtonComponent: DefineVueComponent<ButtonModel> = vueDefineComponen
9595
click(): void {
9696
return this.ej2Instances.click();
9797
},
98+
destroy(): void {
99+
return this.ej2Instances.destroy();
100+
},
98101
focusIn(): void {
99102
return this.ej2Instances.focusIn();
100103
},
@@ -118,6 +121,7 @@ export type ButtonComponent = typeof ComponentBase & {
118121
[key: string]: Object;
119122
}, successHandler?: Function): void;
120123
click(): void;
124+
destroy(): void;
121125
focusIn(): void
122126
};
123127

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,9 @@ export let CheckBoxComponent: DefineVueComponent<CheckBoxModel> = vueDefineComp
133133
click(): void {
134134
return this.ej2Instances.click();
135135
},
136+
destroy(): void {
137+
return this.ej2Instances.destroy();
138+
},
136139
focusIn(): void {
137140
return this.ej2Instances.focusIn();
138141
},
@@ -156,6 +159,7 @@ export type CheckBoxComponent = typeof ComponentBase & {
156159
[key: string]: Object;
157160
}, successHandler?: Function): void;
158161
click(): void;
162+
destroy(): void;
159163
focusIn(): void
160164
};
161165

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,9 @@ export let ChipListComponent: DefineVueComponent<ChipListModel> = vueDefineComp
9696
add(chipsData: string[] | number[] | Object[] | string | number | Object): void {
9797
return this.ej2Instances.add(chipsData);
9898
},
99+
destroy(): void {
100+
return this.ej2Instances.destroy();
101+
},
99102
find(fields: number | Object): Object {
100103
return this.ej2Instances.find(fields);
101104
},
@@ -128,6 +131,7 @@ export type ChipListComponent = typeof ComponentBase & {
128131
[key: string]: Object;
129132
}, successHandler?: Function): void;
130133
add(chipsData: string[] | number[] | Object[] | string | number | Object): void;
134+
destroy(): void;
131135
find(fields: number | Object): Object;
132136
getSelectedChips(): Object | Object | undefined;
133137
remove(fields: number | number[] | Object | Object[]): void;

components/buttons/src/floating-action-button/fab.component.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,9 @@ export let FabComponent: DefineVueComponent<FabModel> = vueDefineComponent({
9595
click(): void {
9696
return this.ej2Instances.click();
9797
},
98+
destroy(): void {
99+
return this.ej2Instances.destroy();
100+
},
98101
focusIn(): void {
99102
return this.ej2Instances.focusIn();
100103
},
@@ -121,6 +124,7 @@ export type FabComponent = typeof ComponentBase & {
121124
[key: string]: Object;
122125
}, successHandler?: Function): void;
123126
click(): void;
127+
destroy(): void;
124128
focusIn(): void;
125129
refreshPosition(): void
126130
};

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,9 @@ export let RadioButtonComponent: DefineVueComponent<RadioButtonModel> = vueDefi
133133
click(): void {
134134
return this.ej2Instances.click();
135135
},
136+
destroy(): void {
137+
return this.ej2Instances.destroy();
138+
},
136139
focusIn(): void {
137140
return this.ej2Instances.focusIn();
138141
},
@@ -159,6 +162,7 @@ export type RadioButtonComponent = typeof ComponentBase & {
159162
[key: string]: Object;
160163
}, successHandler?: Function): void;
161164
click(): void;
165+
destroy(): void;
162166
focusIn(): void;
163167
getSelectedValue(): string
164168
};

components/buttons/src/smart-paste-button/smartpastebutton.component.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,9 @@ export let SmartPasteButtonComponent: DefineVueComponent<SmartPasteButtonModel>
9595
click(): void {
9696
return this.ej2Instances.click();
9797
},
98+
destroy(): void {
99+
return this.ej2Instances.destroy();
100+
},
98101
focusIn(): void {
99102
return this.ej2Instances.focusIn();
100103
},
@@ -118,6 +121,7 @@ export type SmartPasteButtonComponent = typeof ComponentBase & {
118121
[key: string]: Object;
119122
}, successHandler?: Function): void;
120123
click(): void;
124+
destroy(): void;
121125
focusIn(): void
122126
};
123127

components/buttons/src/speed-dial/speeddial.component.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,9 @@ export let SpeedDialComponent: DefineVueComponent<SpeedDialModel> = vueDefineCo
134134
createPopup(): void {
135135
return this.ej2Instances.createPopup();
136136
},
137+
destroy(): void {
138+
return this.ej2Instances.destroy();
139+
},
137140
hide(): void {
138141
return this.ej2Instances.hide();
139142
},
@@ -163,6 +166,7 @@ export type SpeedDialComponent = typeof ComponentBase & {
163166
[key: string]: Object;
164167
}, successHandler?: Function): void;
165168
createPopup(): void;
169+
destroy(): void;
166170
hide(): void;
167171
refreshPosition(): void;
168172
show(): void

0 commit comments

Comments
 (0)