@syncfusion/ej2-dropdowns 25.2.6 → 25.2.7
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 +4 -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 +10 -1
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +10 -1
- 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/multi-select/multi-select.js +10 -1
|
@@ -12393,6 +12393,9 @@ let MultiSelect = class MultiSelect extends DropDownBase {
|
|
|
12393
12393
|
this.totalItemCount = this.enableVirtualization && this.dataSource instanceof DataManager ? tempCount : this.totalItemCount;
|
|
12394
12394
|
}
|
|
12395
12395
|
else {
|
|
12396
|
+
if (this.dataSource instanceof DataManager && this.allowCustomValue && this.allowFiltering) {
|
|
12397
|
+
this.remoteCustomValue = false;
|
|
12398
|
+
}
|
|
12396
12399
|
const tempData = JSON.parse(JSON.stringify(this.listData));
|
|
12397
12400
|
tempData.splice(0, 0, dataItem);
|
|
12398
12401
|
this.resetList(tempData, field, query);
|
|
@@ -14522,6 +14525,9 @@ let MultiSelect = class MultiSelect extends DropDownBase {
|
|
|
14522
14525
|
if (!eventArgs.cancel) {
|
|
14523
14526
|
if (!this.isFiltered && !eventArgs.preventDefaultAction) {
|
|
14524
14527
|
this.filterAction = true;
|
|
14528
|
+
if (this.dataSource instanceof DataManager && this.allowCustomValue) {
|
|
14529
|
+
this.isCustomRendered = false;
|
|
14530
|
+
}
|
|
14525
14531
|
this.dataUpdater(this.dataSource, null, this.fields);
|
|
14526
14532
|
}
|
|
14527
14533
|
}
|
|
@@ -16578,6 +16584,9 @@ let MultiSelect = class MultiSelect extends DropDownBase {
|
|
|
16578
16584
|
if (this.mode === 'Default' || this.mode === 'Box') {
|
|
16579
16585
|
this.inputElement.setAttribute('aria-describedby', this.chipCollectionWrapper.id);
|
|
16580
16586
|
}
|
|
16587
|
+
if (!isNullOrUndefined(this.inputElement)) {
|
|
16588
|
+
attributes(this.inputElement, { 'aria-expanded': 'false', 'aria-label': this.getModuleName() });
|
|
16589
|
+
}
|
|
16581
16590
|
if (this.element.tagName !== this.getNgDirective()) {
|
|
16582
16591
|
this.element.style.display = 'none';
|
|
16583
16592
|
}
|
|
@@ -16846,7 +16855,7 @@ let MultiSelect = class MultiSelect extends DropDownBase {
|
|
|
16846
16855
|
this.ulElement = null;
|
|
16847
16856
|
this.mainListCollection = null;
|
|
16848
16857
|
super.destroy();
|
|
16849
|
-
const temp = ['readonly', 'aria-disabled', 'placeholder'];
|
|
16858
|
+
const temp = ['readonly', 'aria-disabled', 'placeholder', 'aria-label', 'aria-expanded'];
|
|
16850
16859
|
let length = temp.length;
|
|
16851
16860
|
if (!isNullOrUndefined(this.inputElement)) {
|
|
16852
16861
|
while (length > 0) {
|