@syncfusion/ej2-splitbuttons 33.1.44 → 33.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ej2-splitbuttons.min.js +2 -2
- package/dist/ej2-splitbuttons.umd.min.js +2 -2
- package/dist/ej2-splitbuttons.umd.min.js.map +1 -1
- package/dist/es6/ej2-splitbuttons.es2015.js +2 -2
- package/dist/es6/ej2-splitbuttons.es2015.js.map +1 -1
- package/dist/es6/ej2-splitbuttons.es5.js +2 -2
- package/dist/es6/ej2-splitbuttons.es5.js.map +1 -1
- package/dist/global/ej2-splitbuttons.min.js +2 -2
- package/dist/global/ej2-splitbuttons.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +3 -3
- package/src/split-button/split-button.js +2 -2
|
@@ -1335,7 +1335,7 @@ let SplitButton = class SplitButton extends DropDownButton {
|
|
|
1335
1335
|
}
|
|
1336
1336
|
setAria() {
|
|
1337
1337
|
attributes(this.element, {
|
|
1338
|
-
'aria-expanded': 'false',
|
|
1338
|
+
'aria-expanded': 'false',
|
|
1339
1339
|
'aria-label': this.element.textContent ? this.element.textContent + ' splitbutton' : 'splitbutton', 'aria-owns': this.element.id + '_dropdownbtn-popup'
|
|
1340
1340
|
});
|
|
1341
1341
|
}
|
|
@@ -1371,7 +1371,7 @@ let SplitButton = class SplitButton extends DropDownButton {
|
|
|
1371
1371
|
}
|
|
1372
1372
|
else {
|
|
1373
1373
|
removeClass([this.element], classList);
|
|
1374
|
-
['aria-label', 'aria-
|
|
1374
|
+
['aria-label', 'aria-expanded', 'aria-owns', 'type'].forEach((key) => {
|
|
1375
1375
|
this.element.removeAttribute(key);
|
|
1376
1376
|
});
|
|
1377
1377
|
this.wrapper.parentNode.insertBefore(this.element, this.wrapper);
|