@syncfusion/ej2-querybuilder 33.2.6 → 33.2.7

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 : 33.2.6
3
+ * version : 33.2.7
4
4
  * Copyright Syncfusion Inc. 2001 - 2025. 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": "33.2.6",
3
+ "version": "33.2.7",
4
4
  "description": "Essential JS 2 QueryBuilder",
5
5
  "author": "Syncfusion Inc.",
6
6
  "license": "SEE LICENSE IN license",
@@ -10,8 +10,8 @@
10
10
  "dependencies": {
11
11
  "@syncfusion/ej2-base": "~33.2.3",
12
12
  "@syncfusion/ej2-buttons": "~33.2.5",
13
- "@syncfusion/ej2-calendars": "~33.2.6",
14
- "@syncfusion/ej2-dropdowns": "~33.2.6",
13
+ "@syncfusion/ej2-calendars": "~33.2.7",
14
+ "@syncfusion/ej2-dropdowns": "~33.2.7",
15
15
  "@syncfusion/ej2-inputs": "~33.2.5",
16
16
  "@syncfusion/ej2-splitbuttons": "~33.2.6"
17
17
  },
@@ -6401,6 +6401,13 @@ var QueryBuilder = /** @class */ (function (_super) {
6401
6401
  if (this.element.querySelectorAll('.e-group-container').length > this.maxGroupCount) {
6402
6402
  return null;
6403
6403
  }
6404
+ if (isNullOrUndefined(this.updatedRule) && this.allowDragAndDrop && this.dragElement &&
6405
+ this.dragElement.querySelector('.e-rule-list') && this.dragElement.querySelector('.e-rule-list').querySelector('.e-group-container')) {
6406
+ this.updatedRule = {
6407
+ isLocked: ruleColl[i].isLocked, condition: ruleColl[i].condition,
6408
+ not: ruleColl[i].not
6409
+ };
6410
+ }
6404
6411
  parentElem = this.renderGroup(ruleColl[i], ruleColl[i].condition, parentElem, ruleColl[i].not);
6405
6412
  parentElem = this.importRules(ruleColl[i], parentElem, true);
6406
6413
  }