@syncfusion/ej2-querybuilder 29.1.33 → 29.1.39
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-querybuilder.min.js +2 -2
- package/dist/ej2-querybuilder.umd.min.js +2 -2
- package/dist/ej2-querybuilder.umd.min.js.map +1 -1
- package/dist/es6/ej2-querybuilder.es2015.js +4 -1
- package/dist/es6/ej2-querybuilder.es2015.js.map +1 -1
- package/dist/es6/ej2-querybuilder.es5.js +4 -1
- package/dist/es6/ej2-querybuilder.es5.js.map +1 -1
- package/dist/global/ej2-querybuilder.min.js +2 -2
- package/dist/global/ej2-querybuilder.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +10 -10
- package/src/query-builder/query-builder.js +4 -1
- package/styles/bootstrap5-dark-lite.css +18 -18
- package/styles/bootstrap5-dark.css +18 -18
- package/styles/bootstrap5-lite.css +6 -6
- package/styles/bootstrap5.css +6 -6
- package/styles/query-builder/bootstrap5-dark.css +18 -18
- package/styles/query-builder/bootstrap5.css +6 -6
- package/styles/query-builder/tailwind-dark.css +2 -2
- package/styles/tailwind-dark-lite.css +2 -2
- package/styles/tailwind-dark.css +2 -2
|
@@ -266,7 +266,10 @@ var QueryBuilder = /** @__PURE__ @class */ (function (_super) {
|
|
|
266
266
|
return modules;
|
|
267
267
|
};
|
|
268
268
|
QueryBuilder.prototype.GetRootColumnName = function (field) {
|
|
269
|
-
|
|
269
|
+
if (!isNullOrUndefined(field)) {
|
|
270
|
+
return this.separator ? field.split(this.separator)[0] : field;
|
|
271
|
+
}
|
|
272
|
+
return '';
|
|
270
273
|
};
|
|
271
274
|
QueryBuilder.prototype.initialize = function () {
|
|
272
275
|
if (this.dataColl.length) {
|