@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
package/dist/global/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: index.d.ts
|
|
3
|
-
* version : 33.
|
|
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.
|
|
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.
|
|
12
|
-
"@syncfusion/ej2-popups": "~33.
|
|
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',
|
|
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-
|
|
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);
|