@syncfusion/ej2-dropdowns 26.1.42 → 26.2.4
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/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 +7 -2
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +7 -2
- 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/hotfix/26.1.35_Vol2.txt +1 -0
- package/package.json +12 -12
- package/src/drop-down-list/drop-down-list.js +1 -1
- package/src/drop-down-tree/drop-down-tree.js +6 -1
- package/styles/auto-complete/fluent2.css +10 -10
- package/styles/bootstrap-dark.css +15 -14
- package/styles/bootstrap.css +15 -14
- package/styles/bootstrap4.css +15 -14
- package/styles/bootstrap5-dark.css +15 -14
- package/styles/bootstrap5.css +15 -14
- package/styles/combo-box/fluent2.css +10 -10
- package/styles/drop-down-base/fluent2.css +10 -10
- package/styles/drop-down-list/fluent2.css +10 -10
- package/styles/drop-down-tree/fluent2.css +10 -10
- package/styles/fabric-dark.css +15 -14
- package/styles/fabric.css +15 -14
- package/styles/fluent-dark.css +15 -14
- package/styles/fluent.css +15 -14
- package/styles/fluent2.css +27 -26
- package/styles/highcontrast-light.css +15 -14
- package/styles/highcontrast.css +15 -14
- package/styles/list-box/_layout.scss +17 -13
- package/styles/list-box/bootstrap-dark.css +15 -14
- package/styles/list-box/bootstrap.css +15 -14
- package/styles/list-box/bootstrap4.css +15 -14
- package/styles/list-box/bootstrap5-dark.css +15 -14
- package/styles/list-box/bootstrap5.css +15 -14
- package/styles/list-box/fabric-dark.css +15 -14
- package/styles/list-box/fabric.css +15 -14
- package/styles/list-box/fluent-dark.css +15 -14
- package/styles/list-box/fluent.css +15 -14
- package/styles/list-box/fluent2.css +27 -26
- package/styles/list-box/highcontrast-light.css +15 -14
- package/styles/list-box/highcontrast.css +15 -14
- package/styles/list-box/material-dark.css +15 -14
- package/styles/list-box/material.css +15 -14
- package/styles/list-box/material3-dark.css +15 -14
- package/styles/list-box/material3.css +15 -14
- package/styles/list-box/tailwind-dark.css +15 -14
- package/styles/list-box/tailwind.css +15 -14
- package/styles/material-dark.css +15 -14
- package/styles/material.css +16 -15
- package/styles/material3-dark.css +15 -14
- package/styles/material3.css +15 -14
- package/styles/mention/fluent2.css +10 -10
- package/styles/multi-select/_material-definition.scss +1 -1
- package/styles/multi-select/fluent2.css +10 -10
- package/styles/multi-select/material.css +1 -1
- package/styles/tailwind-dark.css +15 -14
- package/styles/tailwind.css +15 -14
|
@@ -4587,7 +4587,7 @@ var DropDownList = /** @__PURE__ @class */ (function (_super) {
|
|
|
4587
4587
|
return;
|
|
4588
4588
|
}
|
|
4589
4589
|
_this.isCustomFilter = true;
|
|
4590
|
-
_this.customFilterQuery = query.clone();
|
|
4590
|
+
_this.customFilterQuery = query ? query.clone() : query;
|
|
4591
4591
|
_this.filteringAction(dataSource, query, fields);
|
|
4592
4592
|
},
|
|
4593
4593
|
baseEventArgs: e,
|
|
@@ -7067,7 +7067,12 @@ var DropDownTree = /** @__PURE__ @class */ (function (_super) {
|
|
|
7067
7067
|
}
|
|
7068
7068
|
}
|
|
7069
7069
|
else {
|
|
7070
|
-
|
|
7070
|
+
if (!isNullOrUndefined(this.element.id)) {
|
|
7071
|
+
this.inputEle = this.createElement('input', { attrs: { role: 'textbox', type: 'text', id: this.element.id } });
|
|
7072
|
+
}
|
|
7073
|
+
else {
|
|
7074
|
+
this.inputEle = this.createElement('input', { attrs: { role: 'textbox', type: 'text' } });
|
|
7075
|
+
}
|
|
7071
7076
|
this.element.parentElement.insertBefore(this.inputEle, this.element);
|
|
7072
7077
|
}
|
|
7073
7078
|
this.inputObj = Input.createInput({
|