@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.
@@ -6385,6 +6385,13 @@ var QueryBuilder = /** @__PURE__ @class */ (function (_super) {
6385
6385
  if (this.element.querySelectorAll('.e-group-container').length > this.maxGroupCount) {
6386
6386
  return null;
6387
6387
  }
6388
+ if (isNullOrUndefined(this.updatedRule) && this.allowDragAndDrop && this.dragElement &&
6389
+ this.dragElement.querySelector('.e-rule-list') && this.dragElement.querySelector('.e-rule-list').querySelector('.e-group-container')) {
6390
+ this.updatedRule = {
6391
+ isLocked: ruleColl[i].isLocked, condition: ruleColl[i].condition,
6392
+ not: ruleColl[i].not
6393
+ };
6394
+ }
6388
6395
  parentElem = this.renderGroup(ruleColl[i], ruleColl[i].condition, parentElem, ruleColl[i].not);
6389
6396
  parentElem = this.importRules(ruleColl[i], parentElem, true);
6390
6397
  }