@syncfusion/ej2-querybuilder 25.1.38 → 25.1.42

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.
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: index.d.ts
3
- * version : 25.1.38
3
+ * version : 25.1.42
4
4
  * Copyright Syncfusion Inc. 2001 - 2023. All rights reserved.
5
5
  * Use of this code is subject to the terms of our license.
6
6
  * A copy of the current license can be obtained at any time by e-mailing
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "_from": "@syncfusion/ej2-querybuilder@*",
3
- "_id": "@syncfusion/ej2-querybuilder@25.1.37",
3
+ "_id": "@syncfusion/ej2-querybuilder@25.1.38",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-82Ugl8XToVyBNpReqvpq6VltiaoMT+MCsZYQwT+vBYxBWBhnXgQJ4iZ5r6HyF7EePtMZhYgeRZED0K0AbGpRWw==",
5
+ "_integrity": "sha512-RLUddm+Ql/CK4B9L75aovBZ1SksSfwr8nonX77H2Q5jI20+6I8TLJAZo8MBSmybIpl6GA2/1JARXa24aDC322w==",
6
6
  "_location": "/@syncfusion/ej2-querybuilder",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -23,8 +23,8 @@
23
23
  "/@syncfusion/ej2-react-querybuilder",
24
24
  "/@syncfusion/ej2-vue-querybuilder"
25
25
  ],
26
- "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-querybuilder/-/ej2-querybuilder-25.1.37.tgz",
27
- "_shasum": "db89eb0ea98202e49522c04dd6bfdba7db0c030f",
26
+ "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-querybuilder/-/ej2-querybuilder-25.1.38.tgz",
27
+ "_shasum": "9901505552698bdd0ad97442067588722a2d4556",
28
28
  "_spec": "@syncfusion/ej2-querybuilder@*",
29
29
  "_where": "/jenkins/workspace/elease-automation_release_25.1.1/packages/included",
30
30
  "author": {
@@ -33,10 +33,10 @@
33
33
  "bundleDependencies": false,
34
34
  "dependencies": {
35
35
  "@syncfusion/ej2-base": "~25.1.35",
36
- "@syncfusion/ej2-buttons": "~25.1.35",
37
- "@syncfusion/ej2-calendars": "~25.1.37",
38
- "@syncfusion/ej2-dropdowns": "~25.1.37",
39
- "@syncfusion/ej2-inputs": "~25.1.38",
36
+ "@syncfusion/ej2-buttons": "~25.1.39",
37
+ "@syncfusion/ej2-calendars": "~25.1.42",
38
+ "@syncfusion/ej2-dropdowns": "~25.1.41",
39
+ "@syncfusion/ej2-inputs": "~25.1.42",
40
40
  "@syncfusion/ej2-splitbuttons": "~25.1.38"
41
41
  },
42
42
  "deprecated": false,
@@ -66,7 +66,7 @@
66
66
  "url": "https://github.com/syncfusion/ej2-javascript-ui-controls/tree/master/controls/querybuilder"
67
67
  },
68
68
  "typings": "index.d.ts",
69
- "version": "25.1.38",
69
+ "version": "25.1.42",
70
70
  "sideEffects": false,
71
71
  "homepage": "https://www.syncfusion.com/javascript-ui-controls"
72
72
  }
@@ -1802,13 +1802,12 @@ var QueryBuilder = /** @class */ (function (_super) {
1802
1802
  var subFieldElem = this.createElement('input', { attrs: { type: 'text', id: ruleId + '_subfilterkey' + this.subFilterCounter } });
1803
1803
  tempElem.appendChild(subFieldElem);
1804
1804
  var height = (this.element.className.indexOf('e-device') > -1) ? '250px' : '200px';
1805
- var subFieldData = Object.keys(this.selectedColumn.columns[0]);
1806
1805
  var ddlField;
1807
1806
  ddlField = {
1808
1807
  dataSource: this.selectedColumn.columns,
1809
1808
  fields: this.fields,
1810
1809
  placeholder: this.l10n.getConstant('SelectField'),
1811
- popupHeight: ((subFieldData.length > 5) ? height : 'auto'),
1810
+ popupHeight: ((this.selectedColumn.columns.length > 5) ? height : 'auto'),
1812
1811
  change: this.changeField.bind(this),
1813
1812
  index: 0,
1814
1813
  open: this.popupOpen.bind(this, false)