@syncfusion/ej2-splitbuttons 32.2.7 → 33.1.49

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.
@@ -1335,7 +1335,7 @@ let SplitButton = class SplitButton extends DropDownButton {
1335
1335
  }
1336
1336
  setAria() {
1337
1337
  attributes(this.element, {
1338
- 'aria-expanded': 'false', 'aria-haspopup': 'true',
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-haspopup', 'aria-expanded', 'aria-owns', 'type'].forEach((key) => {
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);