Skip to content

Commit e595127

Browse files
author
pipeline
committed
v26.2.7 is released
1 parent ee83145 commit e595127

File tree

188 files changed

+2783
-1195
lines changed

Some content is hidden

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

188 files changed

+2783
-1195
lines changed

controls/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-
## 26.2.5 (2024-07-26)
5+
## 26.2.7 (2024-07-30)
66

77
### Barcode
88

controls/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+
## 26.2.7 (2024-07-30)
6+
7+
### Switch
8+
9+
#### Bug Fixes
10+
11+
- `#F190104` - The issue with Script error occurs while `opening dialog` component using switch button has been resolved.
12+
513
## 26.1.40 (2024-07-02)
614

715
### Checkbox

controls/buttons/node_modules/@types/node/README.md

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/buttons/node_modules/aws-sdk/README.md

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/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-buttons",
3-
"version": "26.1.40",
3+
"version": "26.2.5",
44
"description": "A package of feature-rich Essential JS 2 components such as Button, CheckBox, RadioButton and Switch.",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

controls/buttons/src/check-box/check-box.ts

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -591,10 +591,12 @@ export class CheckBox extends Component<HTMLInputElement> implements INotifyProp
591591

592592
protected unWireEvents(): void {
593593
const wrapper: Element = this.wrapper;
594-
EventHandler.remove(wrapper, 'click', this.clickHandler);
595-
EventHandler.remove(this.element, 'keyup', this.keyUpHandler);
596-
EventHandler.remove(this.element, 'focus', this.focusHandler);
597-
EventHandler.remove(this.element, 'focusout', this.focusOutHandler);
594+
if (wrapper) {
595+
EventHandler.remove(wrapper, 'click', this.clickHandler);
596+
EventHandler.remove(this.element, 'keyup', this.keyUpHandler);
597+
EventHandler.remove(this.element, 'focus', this.focusHandler);
598+
EventHandler.remove(this.element, 'focusout', this.focusOutHandler);
599+
}
598600
const label: Element = wrapper.getElementsByTagName('label')[0];
599601
if (label) {
600602
EventHandler.remove(label, 'mousedown', this.labelMouseDownHandler);

controls/buttons/src/switch/switch.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,9 @@ export class Switch extends Component<HTMLInputElement> implements INotifyProper
180180
if (!this.disabled) {
181181
this.unWireEvents();
182182
}
183-
destroy(this, this.getWrapper() as Element, this.tagName);
183+
if (this.getWrapper()) {
184+
destroy(this, this.getWrapper() as Element, this.tagName);
185+
}
184186
if (this.refreshing) {
185187
['e-control', 'e-switch', 'e-lib'].forEach((key: string) => {
186188
this.element.classList.add(key);

controls/charts/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-
## 26.2.5 (2024-07-26)
5+
## 26.2.7 (2024-07-30)
66

77
### Chart
88

controls/diagrams/node_modules/aws-sdk/README.md

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/diagrams/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-diagrams",
3-
"version": "26.2.4",
3+
"version": "26.2.5",
44
"description": "Feature-rich diagram control to create diagrams like flow charts, organizational charts, mind maps, and BPMN diagrams. Its rich feature set includes built-in shapes, editing, serializing, exporting, printing, overview, data binding, and automatic layouts.",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

0 commit comments

Comments
 (0)