@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.
@@ -469,7 +469,15 @@ let QueryBuilder = class QueryBuilder extends Component {
469
469
  targetValue = document.getElementById(forIdValue).getAttribute('value');
470
470
  }
471
471
  else if (this.enableSeparateConnector) {
472
- targetValue = target.textContent;
472
+ if (target.classList.contains('e-btngroup-or-lbl')) {
473
+ targetValue = 'or';
474
+ }
475
+ else if (target.classList.contains('e-btngroup-and-lbl')) {
476
+ targetValue = 'and';
477
+ }
478
+ else {
479
+ targetValue = target.textContent;
480
+ }
473
481
  }
474
482
  groupID = element.id.replace(this.element.id + '_', '');
475
483
  const group = this.getGroup(groupID);