@syncfusion/ej2-querybuilder 28.2.3 → 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/README.md +1 -1
- 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 +12 -12
- 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/query-builder/tailwind3.css +1 -1
- package/styles/tailwind-dark-lite.css +2 -2
- package/styles/tailwind-dark.css +2 -2
- package/styles/tailwind3-lite.css +1 -1
- package/styles/tailwind3.css +1 -1
|
@@ -220,7 +220,10 @@ let QueryBuilder = class QueryBuilder extends Component {
|
|
|
220
220
|
return modules;
|
|
221
221
|
}
|
|
222
222
|
GetRootColumnName(field) {
|
|
223
|
-
|
|
223
|
+
if (!isNullOrUndefined(field)) {
|
|
224
|
+
return this.separator ? field.split(this.separator)[0] : field;
|
|
225
|
+
}
|
|
226
|
+
return '';
|
|
224
227
|
}
|
|
225
228
|
initialize() {
|
|
226
229
|
if (this.dataColl.length) {
|