@syncfusion/ej2-querybuilder 29.2.10 → 30.1.37

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.
@@ -520,7 +520,15 @@ var QueryBuilder = /** @__PURE__ @class */ (function (_super) {
520
520
  targetValue = document.getElementById(forIdValue).getAttribute('value');
521
521
  }
522
522
  else if (this.enableSeparateConnector) {
523
- targetValue = target.textContent;
523
+ if (target.classList.contains('e-btngroup-or-lbl')) {
524
+ targetValue = 'or';
525
+ }
526
+ else if (target.classList.contains('e-btngroup-and-lbl')) {
527
+ targetValue = 'and';
528
+ }
529
+ else {
530
+ targetValue = target.textContent;
531
+ }
524
532
  }
525
533
  groupID = element.id.replace(this.element.id + '_', '');
526
534
  var group = this.getGroup(groupID);