@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
|
@@ -12628,6 +12628,9 @@ var MultiSelect = /** @__PURE__ @class */ (function (_super) {
|
|
|
12628
12628
|
this.totalItemCount = this.enableVirtualization && this.dataSource instanceof DataManager ? tempCount : this.totalItemCount;
|
|
12629
12629
|
}
|
|
12630
12630
|
else {
|
|
12631
|
+
if (this.dataSource instanceof DataManager && this.allowCustomValue && this.allowFiltering) {
|
|
12632
|
+
this.remoteCustomValue = false;
|
|
12633
|
+
}
|
|
12631
12634
|
var tempData = JSON.parse(JSON.stringify(this.listData));
|
|
12632
12635
|
tempData.splice(0, 0, dataItem_1);
|
|
12633
12636
|
this.resetList(tempData, field, query);
|
|
@@ -14773,6 +14776,9 @@ var MultiSelect = /** @__PURE__ @class */ (function (_super) {
|
|
|
14773
14776
|
if (!eventArgs.cancel) {
|
|
14774
14777
|
if (!_this.isFiltered && !eventArgs.preventDefaultAction) {
|
|
14775
14778
|
_this.filterAction = true;
|
|
14779
|
+
if (_this.dataSource instanceof DataManager && _this.allowCustomValue) {
|
|
14780
|
+
_this.isCustomRendered = false;
|
|
14781
|
+
}
|
|
14776
14782
|
_this.dataUpdater(_this.dataSource, null, _this.fields);
|
|
14777
14783
|
}
|
|
14778
14784
|
}
|
|
@@ -16841,6 +16847,9 @@ var MultiSelect = /** @__PURE__ @class */ (function (_super) {
|
|
|
16841
16847
|
if (this.mode === 'Default' || this.mode === 'Box') {
|
|
16842
16848
|
this.inputElement.setAttribute('aria-describedby', this.chipCollectionWrapper.id);
|
|
16843
16849
|
}
|
|
16850
|
+
if (!isNullOrUndefined(this.inputElement)) {
|
|
16851
|
+
attributes(this.inputElement, { 'aria-expanded': 'false', 'aria-label': this.getModuleName() });
|
|
16852
|
+
}
|
|
16844
16853
|
if (this.element.tagName !== this.getNgDirective()) {
|
|
16845
16854
|
this.element.style.display = 'none';
|
|
16846
16855
|
}
|
|
@@ -17111,7 +17120,7 @@ var MultiSelect = /** @__PURE__ @class */ (function (_super) {
|
|
|
17111
17120
|
this.ulElement = null;
|
|
17112
17121
|
this.mainListCollection = null;
|
|
17113
17122
|
_super.prototype.destroy.call(this);
|
|
17114
|
-
var temp = ['readonly', 'aria-disabled', 'placeholder'];
|
|
17123
|
+
var temp = ['readonly', 'aria-disabled', 'placeholder', 'aria-label', 'aria-expanded'];
|
|
17115
17124
|
var length = temp.length;
|
|
17116
17125
|
if (!isNullOrUndefined(this.inputElement)) {
|
|
17117
17126
|
while (length > 0) {
|