@syncfusion/ej2-querybuilder 30.1.39 → 30.1.41

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 : 30.1.39
3
+ * version : 30.1.41
4
4
  * Copyright Syncfusion Inc. 2001 - 2024. 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,6 +1,6 @@
1
1
  {
2
2
  "name": "@syncfusion/ej2-querybuilder",
3
- "version": "30.1.39",
3
+ "version": "30.1.41",
4
4
  "description": "Essential JS 2 QueryBuilder",
5
5
  "author": "Syncfusion Inc.",
6
6
  "license": "SEE LICENSE IN license",
@@ -11,8 +11,8 @@
11
11
  "@syncfusion/ej2-base": "~30.1.38",
12
12
  "@syncfusion/ej2-buttons": "~30.1.37",
13
13
  "@syncfusion/ej2-calendars": "~30.1.37",
14
- "@syncfusion/ej2-dropdowns": "~30.1.39",
15
- "@syncfusion/ej2-inputs": "~30.1.38",
14
+ "@syncfusion/ej2-dropdowns": "~30.1.41",
15
+ "@syncfusion/ej2-inputs": "~30.1.40",
16
16
  "@syncfusion/ej2-splitbuttons": "~30.1.39"
17
17
  },
18
18
  "devDependencies": {},
@@ -363,7 +363,7 @@ var QueryBuilder = /** @class */ (function (_super) {
363
363
  else if (this.columns && this.columns.length) {
364
364
  var columns = this.columns;
365
365
  for (var i = 0, len = columns.length; i < len; i++) {
366
- if (columns[i].category) {
366
+ if (columns[i].category && columns[i].category !== this.l10n.getConstant('OtherFields')) {
367
367
  this.fields = { text: 'label', value: 'field', groupBy: 'category' };
368
368
  }
369
369
  else {
@@ -2449,6 +2449,12 @@ var QueryBuilder = /** @class */ (function (_super) {
2449
2449
  if (tooltipElem) {
2450
2450
  getComponent(tooltipElem, 'tooltip').destroy();
2451
2451
  }
2452
+ else if (prevOper.indexOf('in') > -1) {
2453
+ tooltipElem = parentElem.querySelector('.e-tooltip');
2454
+ if (tooltipElem) {
2455
+ getComponent(tooltipElem, 'tooltip').destroy();
2456
+ }
2457
+ }
2452
2458
  removeClass([parentElem], 'e-show');
2453
2459
  addClass([parentElem], 'e-hide');
2454
2460
  }