@syncfusion/ej2-dropdowns 27.1.50 → 27.1.51
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-dropdowns.min.js +2 -2
- package/dist/ej2-dropdowns.umd.min.js +2 -2
- package/dist/ej2-dropdowns.umd.min.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es2015.js +10 -5
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +9 -4
- package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
- package/dist/global/ej2-dropdowns.min.js +2 -2
- package/dist/global/ej2-dropdowns.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +7 -7
- package/src/drop-down-list/drop-down-list.js +8 -0
- package/src/multi-select/multi-select.js +1 -4
package/dist/global/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: index.d.ts
|
|
3
|
-
* version : 27.1.
|
|
3
|
+
* version : 27.1.51
|
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2023. 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,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_from": "@syncfusion/ej2-dropdowns@*",
|
|
3
|
-
"_id": "@syncfusion/ej2-dropdowns@27.1.
|
|
3
|
+
"_id": "@syncfusion/ej2-dropdowns@27.1.50",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-d+GdPNjbqOxz9DrSa/8uKyenGw0SkyE4raSfIApI5VXDrcafbRTPRJOxQ2v1qOc/vB5DhLFWrmrl/DjyEPMa/w==",
|
|
6
6
|
"_location": "/@syncfusion/ej2-dropdowns",
|
|
7
7
|
"_phantomChildren": {},
|
|
8
8
|
"_requested": {
|
|
@@ -36,8 +36,8 @@
|
|
|
36
36
|
"/@syncfusion/ej2-spreadsheet",
|
|
37
37
|
"/@syncfusion/ej2-vue-dropdowns"
|
|
38
38
|
],
|
|
39
|
-
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-dropdowns/-/ej2-dropdowns-27.1.
|
|
40
|
-
"_shasum": "
|
|
39
|
+
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-dropdowns/-/ej2-dropdowns-27.1.50.tgz",
|
|
40
|
+
"_shasum": "5a6cca641f4d7086aa4fb372124b73e9014568f3",
|
|
41
41
|
"_spec": "@syncfusion/ej2-dropdowns@*",
|
|
42
42
|
"_where": "/jenkins/workspace/elease-automation_release_27.1.1/packages/included",
|
|
43
43
|
"author": {
|
|
@@ -46,10 +46,10 @@
|
|
|
46
46
|
"bundleDependencies": false,
|
|
47
47
|
"dependencies": {
|
|
48
48
|
"@syncfusion/ej2-base": "~27.1.50",
|
|
49
|
-
"@syncfusion/ej2-data": "~27.1.
|
|
49
|
+
"@syncfusion/ej2-data": "~27.1.51",
|
|
50
50
|
"@syncfusion/ej2-inputs": "~27.1.50",
|
|
51
51
|
"@syncfusion/ej2-lists": "~27.1.50",
|
|
52
|
-
"@syncfusion/ej2-navigations": "~27.1.
|
|
52
|
+
"@syncfusion/ej2-navigations": "~27.1.51",
|
|
53
53
|
"@syncfusion/ej2-notifications": "~27.1.50",
|
|
54
54
|
"@syncfusion/ej2-popups": "~27.1.50"
|
|
55
55
|
},
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
"module": "./index.js",
|
|
77
77
|
"name": "@syncfusion/ej2-dropdowns",
|
|
78
78
|
"typings": "index.d.ts",
|
|
79
|
-
"version": "27.1.
|
|
79
|
+
"version": "27.1.51",
|
|
80
80
|
"sideEffects": false,
|
|
81
81
|
"homepage": "https://www.syncfusion.com/javascript-ui-controls"
|
|
82
82
|
}
|
|
@@ -361,12 +361,20 @@ var DropDownList = /** @class */ (function (_super) {
|
|
|
361
361
|
removeClass([this.inputWrapper.container], dropDownListClasses.disable);
|
|
362
362
|
this.inputElement.setAttribute('aria-disabled', 'false');
|
|
363
363
|
this.targetElement().setAttribute('tabindex', this.tabIndex);
|
|
364
|
+
if (this.inputWrapper && this.inputWrapper.container) {
|
|
365
|
+
this.inputWrapper.container.setAttribute('aria-disabled', 'false');
|
|
366
|
+
this.inputWrapper.container.removeAttribute('disabled');
|
|
367
|
+
}
|
|
364
368
|
}
|
|
365
369
|
else {
|
|
366
370
|
this.hidePopup();
|
|
367
371
|
addClass([this.inputWrapper.container], dropDownListClasses.disable);
|
|
368
372
|
this.inputElement.setAttribute('aria-disabled', 'true');
|
|
369
373
|
this.targetElement().tabIndex = -1;
|
|
374
|
+
if (this.inputWrapper && this.inputWrapper.container) {
|
|
375
|
+
this.inputWrapper.container.setAttribute('aria-disabled', 'true');
|
|
376
|
+
this.inputWrapper.container.setAttribute('disabled', '');
|
|
377
|
+
}
|
|
370
378
|
}
|
|
371
379
|
};
|
|
372
380
|
/**
|
|
@@ -2397,9 +2397,6 @@ var MultiSelect = /** @class */ (function (_super) {
|
|
|
2397
2397
|
_this.fields.value : ''), value) : value;
|
|
2398
2398
|
_this.virtualSelectAll = false;
|
|
2399
2399
|
var removeVal = _this.value.slice(0);
|
|
2400
|
-
if (_this.enableVirtualization && isClearAll) {
|
|
2401
|
-
removeVal = [];
|
|
2402
|
-
}
|
|
2403
2400
|
removeVal.splice(index, 1);
|
|
2404
2401
|
if (_this.enableVirtualization && _this.mode === 'CheckBox') {
|
|
2405
2402
|
_this.selectedListData.splice(index, 1);
|
|
@@ -4676,7 +4673,7 @@ var MultiSelect = /** @class */ (function (_super) {
|
|
|
4676
4673
|
this.isSelectAll = this.isSelectAll ? !this.isSelectAll : this.isSelectAll;
|
|
4677
4674
|
}
|
|
4678
4675
|
this.updateHiddenElement();
|
|
4679
|
-
this.value
|
|
4676
|
+
this.setProperties({ value: [] }, true);
|
|
4680
4677
|
this.virtualSelectAll = false;
|
|
4681
4678
|
if (!isNullOrUndefined(this.viewPortInfo.startIndex) && !isNullOrUndefined(this.viewPortInfo.endIndex)) {
|
|
4682
4679
|
this.notify('setCurrentViewDataAsync', {
|