@syncfusion/ej2-dropdowns 25.2.6 → 25.2.7-130084
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/{README.md → ReadMe.md} +1 -1
- package/dist/ej2-dropdowns.min.js +1 -10
- package/dist/ej2-dropdowns.umd.min.js +1 -10
- package/dist/ej2-dropdowns.umd.min.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es2015.js +10 -10
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +10 -10
- package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
- package/dist/global/ej2-dropdowns.min.js +1 -10
- package/dist/global/ej2-dropdowns.min.js.map +1 -1
- package/dist/global/index.d.ts +0 -9
- package/package.json +79 -79
- package/src/auto-complete/auto-complete-model.d.ts +10 -10
- package/src/auto-complete/auto-complete.d.ts +12 -12
- package/src/auto-complete/auto-complete.js +2 -2
- package/src/combo-box/combo-box-model.d.ts +17 -17
- package/src/combo-box/combo-box.d.ts +27 -27
- package/src/combo-box/combo-box.js +10 -10
- package/src/drop-down-base/drop-down-base-model.d.ts +13 -13
- package/src/drop-down-base/drop-down-base.d.ts +15 -15
- package/src/drop-down-base/drop-down-base.js +1 -1
- package/src/drop-down-list/drop-down-list-model.d.ts +3 -3
- package/src/drop-down-list/drop-down-list.d.ts +4 -5
- package/src/drop-down-list/drop-down-list.js +1 -10
- package/src/drop-down-tree/drop-down-tree-model.d.ts +1 -1
- package/src/drop-down-tree/drop-down-tree.d.ts +1 -1
- package/src/list-box/list-box-model.d.ts +2 -2
- package/src/list-box/list-box.d.ts +2 -2
- package/src/multi-select/multi-select.js +10 -1
- package/styles/auto-complete/material3-dark.scss +1 -1
- package/styles/auto-complete/material3.scss +1 -1
- package/styles/combo-box/material3-dark.scss +1 -1
- package/styles/combo-box/material3.scss +1 -1
- package/styles/drop-down-base/material3-dark.scss +1 -1
- package/styles/drop-down-base/material3.scss +1 -1
- package/styles/drop-down-list/material3-dark.scss +1 -1
- package/styles/drop-down-list/material3.scss +1 -1
- package/styles/drop-down-tree/material3-dark.scss +1 -1
- package/styles/drop-down-tree/material3.scss +1 -1
- package/styles/list-box/material3-dark.scss +1 -1
- package/styles/list-box/material3.scss +1 -1
- package/styles/material3-dark.scss +1 -1
- package/styles/material3.scss +1 -1
- package/styles/mention/material3-dark.scss +1 -1
- package/styles/mention/material3.scss +1 -1
- package/styles/multi-select/material3-dark.scss +1 -1
- package/styles/multi-select/material3.scss +1 -1
|
@@ -97,7 +97,7 @@ export interface ListBoxModel extends DropDownBaseModel{
|
|
|
97
97
|
* Specifies a value that indicates whether the component is enabled or not.
|
|
98
98
|
*
|
|
99
99
|
* @default true
|
|
100
|
-
|
|
100
|
+
* @deprecated
|
|
101
101
|
*/
|
|
102
102
|
enabled?: boolean;
|
|
103
103
|
|
|
@@ -107,7 +107,7 @@ export interface ListBoxModel extends DropDownBaseModel{
|
|
|
107
107
|
* 1. value
|
|
108
108
|
*
|
|
109
109
|
* @default false
|
|
110
|
-
|
|
110
|
+
* @deprecated
|
|
111
111
|
*/
|
|
112
112
|
enablePersistence?: boolean;
|
|
113
113
|
|
|
@@ -161,7 +161,7 @@ export declare class ListBox extends DropDownBase {
|
|
|
161
161
|
* Specifies a value that indicates whether the component is enabled or not.
|
|
162
162
|
*
|
|
163
163
|
* @default true
|
|
164
|
-
|
|
164
|
+
* @deprecated
|
|
165
165
|
*/
|
|
166
166
|
enabled: boolean;
|
|
167
167
|
/**
|
|
@@ -170,7 +170,7 @@ export declare class ListBox extends DropDownBase {
|
|
|
170
170
|
* 1. value
|
|
171
171
|
*
|
|
172
172
|
* @default false
|
|
173
|
-
|
|
173
|
+
* @deprecated
|
|
174
174
|
*/
|
|
175
175
|
enablePersistence: boolean;
|
|
176
176
|
/**
|
|
@@ -1005,6 +1005,9 @@ var MultiSelect = /** @class */ (function (_super) {
|
|
|
1005
1005
|
this.totalItemCount = this.enableVirtualization && this.dataSource instanceof DataManager ? tempCount : this.totalItemCount;
|
|
1006
1006
|
}
|
|
1007
1007
|
else {
|
|
1008
|
+
if (this.dataSource instanceof DataManager && this.allowCustomValue && this.allowFiltering) {
|
|
1009
|
+
this.remoteCustomValue = false;
|
|
1010
|
+
}
|
|
1008
1011
|
var tempData = JSON.parse(JSON.stringify(this.listData));
|
|
1009
1012
|
tempData.splice(0, 0, dataItem_1);
|
|
1010
1013
|
this.resetList(tempData, field, query);
|
|
@@ -3151,6 +3154,9 @@ var MultiSelect = /** @class */ (function (_super) {
|
|
|
3151
3154
|
if (!eventArgs.cancel) {
|
|
3152
3155
|
if (!_this.isFiltered && !eventArgs.preventDefaultAction) {
|
|
3153
3156
|
_this.filterAction = true;
|
|
3157
|
+
if (_this.dataSource instanceof DataManager && _this.allowCustomValue) {
|
|
3158
|
+
_this.isCustomRendered = false;
|
|
3159
|
+
}
|
|
3154
3160
|
_this.dataUpdater(_this.dataSource, null, _this.fields);
|
|
3155
3161
|
}
|
|
3156
3162
|
}
|
|
@@ -5219,6 +5225,9 @@ var MultiSelect = /** @class */ (function (_super) {
|
|
|
5219
5225
|
if (this.mode === 'Default' || this.mode === 'Box') {
|
|
5220
5226
|
this.inputElement.setAttribute('aria-describedby', this.chipCollectionWrapper.id);
|
|
5221
5227
|
}
|
|
5228
|
+
if (!isNullOrUndefined(this.inputElement)) {
|
|
5229
|
+
attributes(this.inputElement, { 'aria-expanded': 'false', 'aria-label': this.getModuleName() });
|
|
5230
|
+
}
|
|
5222
5231
|
if (this.element.tagName !== this.getNgDirective()) {
|
|
5223
5232
|
this.element.style.display = 'none';
|
|
5224
5233
|
}
|
|
@@ -5489,7 +5498,7 @@ var MultiSelect = /** @class */ (function (_super) {
|
|
|
5489
5498
|
this.ulElement = null;
|
|
5490
5499
|
this.mainListCollection = null;
|
|
5491
5500
|
_super.prototype.destroy.call(this);
|
|
5492
|
-
var temp = ['readonly', 'aria-disabled', 'placeholder'];
|
|
5501
|
+
var temp = ['readonly', 'aria-disabled', 'placeholder', 'aria-label', 'aria-expanded'];
|
|
5493
5502
|
var length = temp.length;
|
|
5494
5503
|
if (!isNullOrUndefined(this.inputElement)) {
|
|
5495
5504
|
while (length > 0) {
|
package/styles/material3.scss
CHANGED