Skip to content

Commit a573cf0

Browse files
author
pipeline
committed
v18.4.33 is released
1 parent 81ebe38 commit a573cf0

File tree

278 files changed

+3172
-1503
lines changed

Some content is hidden

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

278 files changed

+3172
-1503
lines changed

controls/base/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-
## 18.4.32 (2020-12-29)
5+
## 18.4.33 (2021-01-05)
66

77
### Common
88

controls/buttons/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 18.4.33 (2021-01-05)
6+
7+
### CheckBox
8+
9+
#### Bug Fixes
10+
11+
- Issue with destroy has been fixed.
12+
13+
## 18.4.30 (2020-12-17)
14+
15+
### Chips
16+
17+
#### Bug Fixes
18+
19+
- `#293361` - The issue with "The Chip is not selected while setting the string values" has been resolved.
20+
521
## 18.3.40 (2020-10-13)
622

723
### Button

controls/buttons/dist/ej2-buttons.umd.min.js

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/dist/ej2-buttons.umd.min.js.map

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/dist/es6/ej2-buttons.es2015.js

Lines changed: 33 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/buttons/dist/es6/ej2-buttons.es2015.js.map

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/dist/es6/ej2-buttons.es5.js

Lines changed: 33 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/buttons/dist/es6/ej2-buttons.es5.js.map

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/dist/global/blazor/checkbox.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ var CheckBox = /** @class */ (function (_super) {
127127
this.unWireEvents();
128128
}
129129
if (this.tagName === 'INPUT') {
130-
if (this.getWrapper()) {
130+
if (this.getWrapper() && wrapper.parentNode) {
131131
wrapper.parentNode.insertBefore(this.element, wrapper);
132132
}
133133
sf.base.detach(wrapper);

controls/buttons/dist/global/blazor/radiobutton.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,9 @@ var RadioButton = /** @class */ (function (_super) {
8484
this.unWireEvents();
8585
}
8686
if (this.tagName === 'INPUT') {
87-
radioWrap.parentNode.insertBefore(this.element, radioWrap);
87+
if (radioWrap.parentNode) {
88+
radioWrap.parentNode.insertBefore(this.element, radioWrap);
89+
}
8890
sf.base.detach(radioWrap);
8991
this.element.checked = false;
9092
['name', 'value', 'disabled'].forEach(function (key) {

0 commit comments

Comments
 (0)