@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.
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: index.d.ts
3
- * version : 33.1.44
3
+ * version : 33.2.3
4
4
  * Copyright Syncfusion Inc. 2001 - 2025. All rights reserved.
5
5
  * Use of this code is subject to the terms of our license.
6
6
  * A copy of the current license can be obtained at any time by e-mailing
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@syncfusion/ej2-splitbuttons",
3
- "version": "33.1.44",
3
+ "version": "33.2.3",
4
4
  "description": "A package of feature-rich Essential JS 2 components such as DropDownButton, SplitButton, ProgressButton and ButtonGroup.",
5
5
  "author": "Syncfusion Inc.",
6
6
  "license": "SEE LICENSE IN license",
@@ -8,8 +8,8 @@
8
8
  "module": "./index.js",
9
9
  "es2015": "./dist/es6/ej2-splitbuttons.es5.js",
10
10
  "dependencies": {
11
- "@syncfusion/ej2-base": "~33.1.44",
12
- "@syncfusion/ej2-popups": "~33.1.44"
11
+ "@syncfusion/ej2-base": "~33.2.3",
12
+ "@syncfusion/ej2-popups": "~33.2.3"
13
13
  },
14
14
  "devDependencies": {},
15
15
  "keywords": [
@@ -220,7 +220,7 @@ var SplitButton = /** @class */ (function (_super) {
220
220
  };
221
221
  SplitButton.prototype.setAria = function () {
222
222
  attributes(this.element, {
223
- 'aria-expanded': 'false', 'aria-haspopup': 'true',
223
+ 'aria-expanded': 'false',
224
224
  'aria-label': this.element.textContent ? this.element.textContent + ' splitbutton' : 'splitbutton', 'aria-owns': this.element.id + '_dropdownbtn-popup'
225
225
  });
226
226
  };
@@ -257,7 +257,7 @@ var SplitButton = /** @class */ (function (_super) {
257
257
  }
258
258
  else {
259
259
  removeClass([this.element], classList);
260
- ['aria-label', 'aria-haspopup', 'aria-expanded', 'aria-owns', 'type'].forEach(function (key) {
260
+ ['aria-label', 'aria-expanded', 'aria-owns', 'type'].forEach(function (key) {
261
261
  _this.element.removeAttribute(key);
262
262
  });
263
263
  this.wrapper.parentNode.insertBefore(this.element, this.wrapper);