@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
|
@@ -3138,12 +3138,20 @@ var DropDownList = /** @__PURE__ @class */ (function (_super) {
|
|
|
3138
3138
|
removeClass([this.inputWrapper.container], dropDownListClasses.disable);
|
|
3139
3139
|
this.inputElement.setAttribute('aria-disabled', 'false');
|
|
3140
3140
|
this.targetElement().setAttribute('tabindex', this.tabIndex);
|
|
3141
|
+
if (this.inputWrapper && this.inputWrapper.container) {
|
|
3142
|
+
this.inputWrapper.container.setAttribute('aria-disabled', 'false');
|
|
3143
|
+
this.inputWrapper.container.removeAttribute('disabled');
|
|
3144
|
+
}
|
|
3141
3145
|
}
|
|
3142
3146
|
else {
|
|
3143
3147
|
this.hidePopup();
|
|
3144
3148
|
addClass([this.inputWrapper.container], dropDownListClasses.disable);
|
|
3145
3149
|
this.inputElement.setAttribute('aria-disabled', 'true');
|
|
3146
3150
|
this.targetElement().tabIndex = -1;
|
|
3151
|
+
if (this.inputWrapper && this.inputWrapper.container) {
|
|
3152
|
+
this.inputWrapper.container.setAttribute('aria-disabled', 'true');
|
|
3153
|
+
this.inputWrapper.container.setAttribute('disabled', '');
|
|
3154
|
+
}
|
|
3147
3155
|
}
|
|
3148
3156
|
};
|
|
3149
3157
|
/**
|
|
@@ -14697,9 +14705,6 @@ var MultiSelect = /** @__PURE__ @class */ (function (_super) {
|
|
|
14697
14705
|
_this.fields.value : ''), value) : value;
|
|
14698
14706
|
_this.virtualSelectAll = false;
|
|
14699
14707
|
var removeVal = _this.value.slice(0);
|
|
14700
|
-
if (_this.enableVirtualization && isClearAll) {
|
|
14701
|
-
removeVal = [];
|
|
14702
|
-
}
|
|
14703
14708
|
removeVal.splice(index, 1);
|
|
14704
14709
|
if (_this.enableVirtualization && _this.mode === 'CheckBox') {
|
|
14705
14710
|
_this.selectedListData.splice(index, 1);
|
|
@@ -16976,7 +16981,7 @@ var MultiSelect = /** @__PURE__ @class */ (function (_super) {
|
|
|
16976
16981
|
this.isSelectAll = this.isSelectAll ? !this.isSelectAll : this.isSelectAll;
|
|
16977
16982
|
}
|
|
16978
16983
|
this.updateHiddenElement();
|
|
16979
|
-
this.value
|
|
16984
|
+
this.setProperties({ value: [] }, true);
|
|
16980
16985
|
this.virtualSelectAll = false;
|
|
16981
16986
|
if (!isNullOrUndefined(this.viewPortInfo.startIndex) && !isNullOrUndefined(this.viewPortInfo.endIndex)) {
|
|
16982
16987
|
this.notify('setCurrentViewDataAsync', {
|