@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
|
@@ -3034,12 +3034,20 @@ let DropDownList = class DropDownList extends DropDownBase {
|
|
|
3034
3034
|
removeClass([this.inputWrapper.container], dropDownListClasses.disable);
|
|
3035
3035
|
this.inputElement.setAttribute('aria-disabled', 'false');
|
|
3036
3036
|
this.targetElement().setAttribute('tabindex', this.tabIndex);
|
|
3037
|
+
if (this.inputWrapper && this.inputWrapper.container) {
|
|
3038
|
+
this.inputWrapper.container.setAttribute('aria-disabled', 'false');
|
|
3039
|
+
this.inputWrapper.container.removeAttribute('disabled');
|
|
3040
|
+
}
|
|
3037
3041
|
}
|
|
3038
3042
|
else {
|
|
3039
3043
|
this.hidePopup();
|
|
3040
3044
|
addClass([this.inputWrapper.container], dropDownListClasses.disable);
|
|
3041
3045
|
this.inputElement.setAttribute('aria-disabled', 'true');
|
|
3042
3046
|
this.targetElement().tabIndex = -1;
|
|
3047
|
+
if (this.inputWrapper && this.inputWrapper.container) {
|
|
3048
|
+
this.inputWrapper.container.setAttribute('aria-disabled', 'true');
|
|
3049
|
+
this.inputWrapper.container.setAttribute('disabled', '');
|
|
3050
|
+
}
|
|
3043
3051
|
}
|
|
3044
3052
|
}
|
|
3045
3053
|
/**
|
|
@@ -14441,10 +14449,7 @@ let MultiSelect = class MultiSelect extends DropDownBase {
|
|
|
14441
14449
|
this.currentRemoveValue = this.allowObjectBinding ? getValue(((this.fields.value) ?
|
|
14442
14450
|
this.fields.value : ''), value) : value;
|
|
14443
14451
|
this.virtualSelectAll = false;
|
|
14444
|
-
|
|
14445
|
-
if (this.enableVirtualization && isClearAll) {
|
|
14446
|
-
removeVal = [];
|
|
14447
|
-
}
|
|
14452
|
+
const removeVal = this.value.slice(0);
|
|
14448
14453
|
removeVal.splice(index, 1);
|
|
14449
14454
|
if (this.enableVirtualization && this.mode === 'CheckBox') {
|
|
14450
14455
|
this.selectedListData.splice(index, 1);
|
|
@@ -16700,7 +16705,7 @@ let MultiSelect = class MultiSelect extends DropDownBase {
|
|
|
16700
16705
|
this.isSelectAll = this.isSelectAll ? !this.isSelectAll : this.isSelectAll;
|
|
16701
16706
|
}
|
|
16702
16707
|
this.updateHiddenElement();
|
|
16703
|
-
this.value
|
|
16708
|
+
this.setProperties({ value: [] }, true);
|
|
16704
16709
|
this.virtualSelectAll = false;
|
|
16705
16710
|
if (!isNullOrUndefined(this.viewPortInfo.startIndex) && !isNullOrUndefined(this.viewPortInfo.endIndex)) {
|
|
16706
16711
|
this.notify('setCurrentViewDataAsync', {
|