@syncfusion/ej2-dropdowns 26.1.42 → 26.2.5
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 +18 -4
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +18 -4
- 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-base/drop-down-base.js +11 -2
- 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
|
@@ -2061,12 +2061,21 @@ var DropDownBase = /** @__PURE__ @class */ (function (_super) {
|
|
|
2061
2061
|
option.templateID = this.itemTemplateId;
|
|
2062
2062
|
option.isStringTemplate = this.isStringTemplate;
|
|
2063
2063
|
var itemcheck = this.templateCompiler(this.itemTemplate);
|
|
2064
|
+
var ulElement;
|
|
2064
2065
|
if (typeof this.itemTemplate !== 'function' && itemcheck) {
|
|
2065
2066
|
var itemValue = select(this.itemTemplate, document).innerHTML.trim();
|
|
2066
|
-
|
|
2067
|
+
ulElement = ListBase.renderContentTemplate(this.createElement, itemValue, dataSource, fields.properties, option, this);
|
|
2068
|
+
if (this.isVirtualizationEnabled && this.isReact) {
|
|
2069
|
+
this.renderReactTemplates();
|
|
2070
|
+
}
|
|
2071
|
+
return ulElement;
|
|
2067
2072
|
}
|
|
2068
2073
|
else {
|
|
2069
|
-
|
|
2074
|
+
ulElement = ListBase.renderContentTemplate(this.createElement, this.itemTemplate, dataSource, fields.properties, option, this);
|
|
2075
|
+
if (this.isVirtualizationEnabled && this.isReact) {
|
|
2076
|
+
this.renderReactTemplates();
|
|
2077
|
+
}
|
|
2078
|
+
return ulElement;
|
|
2070
2079
|
}
|
|
2071
2080
|
};
|
|
2072
2081
|
DropDownBase.prototype.typeOfData = function (items) {
|
|
@@ -4587,7 +4596,7 @@ var DropDownList = /** @__PURE__ @class */ (function (_super) {
|
|
|
4587
4596
|
return;
|
|
4588
4597
|
}
|
|
4589
4598
|
_this.isCustomFilter = true;
|
|
4590
|
-
_this.customFilterQuery = query.clone();
|
|
4599
|
+
_this.customFilterQuery = query ? query.clone() : query;
|
|
4591
4600
|
_this.filteringAction(dataSource, query, fields);
|
|
4592
4601
|
},
|
|
4593
4602
|
baseEventArgs: e,
|
|
@@ -7067,7 +7076,12 @@ var DropDownTree = /** @__PURE__ @class */ (function (_super) {
|
|
|
7067
7076
|
}
|
|
7068
7077
|
}
|
|
7069
7078
|
else {
|
|
7070
|
-
|
|
7079
|
+
if (!isNullOrUndefined(this.element.id)) {
|
|
7080
|
+
this.inputEle = this.createElement('input', { attrs: { role: 'textbox', type: 'text', id: this.element.id } });
|
|
7081
|
+
}
|
|
7082
|
+
else {
|
|
7083
|
+
this.inputEle = this.createElement('input', { attrs: { role: 'textbox', type: 'text' } });
|
|
7084
|
+
}
|
|
7071
7085
|
this.element.parentElement.insertBefore(this.inputEle, this.element);
|
|
7072
7086
|
}
|
|
7073
7087
|
this.inputObj = Input.createInput({
|