@syncfusion/ej2-dropdowns 22.2.10 → 22.2.11
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/CHANGELOG.md +3 -0
- 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 +5 -3
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +5 -3
- 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 +8 -8
- package/src/drop-down-list/drop-down-list.js +5 -3
- package/styles/auto-complete/material.css +1 -1
- package/styles/combo-box/material.css +1 -1
- package/styles/drop-down-base/material.css +1 -1
- package/styles/drop-down-list/material.css +1 -1
- package/styles/drop-down-tree/material.css +1 -1
- package/styles/list-box/material.css +1 -1
- package/styles/material.css +1 -1
- package/styles/mention/material.css +1 -1
- package/styles/multi-select/material.css +1 -1
|
@@ -3314,7 +3314,7 @@ var DropDownList = /** @__PURE__ @class */ (function (_super) {
|
|
|
3314
3314
|
_this.wireListEvents();
|
|
3315
3315
|
}
|
|
3316
3316
|
_this.selectedElementID = _this.selectedLI ? _this.selectedLI.id : null;
|
|
3317
|
-
attributes(_this.targetElement(), { 'aria-expanded': 'true', 'aria-owns': _this.
|
|
3317
|
+
attributes(_this.targetElement(), { 'aria-expanded': 'true', 'aria-owns': _this.element.id + '_options' });
|
|
3318
3318
|
_this.inputElement.setAttribute('aria-expanded', 'true');
|
|
3319
3319
|
var inputParent = _this.isFiltering() ? _this.filterInput.parentElement : _this.inputWrapper.container;
|
|
3320
3320
|
addClass([inputParent], [dropDownListClasses.inputFocus]);
|
|
@@ -4092,8 +4092,10 @@ var DropDownList = /** @__PURE__ @class */ (function (_super) {
|
|
|
4092
4092
|
}
|
|
4093
4093
|
break;
|
|
4094
4094
|
case 'showClearButton':
|
|
4095
|
-
|
|
4096
|
-
|
|
4095
|
+
if (!this_1.inputWrapper.clearButton) {
|
|
4096
|
+
Input.setClearButton(newProp.showClearButton, this_1.inputElement, this_1.inputWrapper, null, this_1.createElement);
|
|
4097
|
+
this_1.bindClearEvent();
|
|
4098
|
+
}
|
|
4097
4099
|
break;
|
|
4098
4100
|
default:
|
|
4099
4101
|
{
|