@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
|
@@ -3253,7 +3253,7 @@ let DropDownList = class DropDownList extends DropDownBase {
|
|
|
3253
3253
|
this.wireListEvents();
|
|
3254
3254
|
}
|
|
3255
3255
|
this.selectedElementID = this.selectedLI ? this.selectedLI.id : null;
|
|
3256
|
-
attributes(this.targetElement(), { 'aria-expanded': 'true', 'aria-owns': this.
|
|
3256
|
+
attributes(this.targetElement(), { 'aria-expanded': 'true', 'aria-owns': this.element.id + '_options' });
|
|
3257
3257
|
this.inputElement.setAttribute('aria-expanded', 'true');
|
|
3258
3258
|
const inputParent = this.isFiltering() ? this.filterInput.parentElement : this.inputWrapper.container;
|
|
3259
3259
|
addClass([inputParent], [dropDownListClasses.inputFocus]);
|
|
@@ -4027,8 +4027,10 @@ let DropDownList = class DropDownList extends DropDownBase {
|
|
|
4027
4027
|
}
|
|
4028
4028
|
break;
|
|
4029
4029
|
case 'showClearButton':
|
|
4030
|
-
|
|
4031
|
-
|
|
4030
|
+
if (!this.inputWrapper.clearButton) {
|
|
4031
|
+
Input.setClearButton(newProp.showClearButton, this.inputElement, this.inputWrapper, null, this.createElement);
|
|
4032
|
+
this.bindClearEvent();
|
|
4033
|
+
}
|
|
4032
4034
|
break;
|
|
4033
4035
|
default:
|
|
4034
4036
|
{
|