@syncfusion/ej2-querybuilder 29.2.8 → 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);
@@ -1330,7 +1338,7 @@ var QueryBuilder = /** @__PURE__ @class */ (function (_super) {
1330
1338
  else {
1331
1339
  dragClsName = 'e-icons e-drag-qb-rule e-hidden';
1332
1340
  }
1333
- var spanDragElement = this.createElement('span', { attrs: { class: dragClsName, 'aria-lable': 'drag handle',
1341
+ var spanDragElement = this.createElement('span', { attrs: { class: dragClsName, 'aria-label': 'drag handle',
1334
1342
  title: 'drag handle' } });
1335
1343
  groupHdrElem.appendChild(spanDragElement);
1336
1344
  var className = this.enableSeparateConnector && !isConnector ? 'e-lib e-btn-group e-qb-toggle-btn' : 'e-lib e-btn-group';
@@ -1388,7 +1396,7 @@ var QueryBuilder = /** @__PURE__ @class */ (function (_super) {
1388
1396
  else {
1389
1397
  dragClsName = 'e-icons e-drag-qb-rule e-hidden';
1390
1398
  }
1391
- var spanDragElement = this.createElement('span', { attrs: { class: dragClsName, 'aria-lable': 'drag handle',
1399
+ var spanDragElement = this.createElement('span', { attrs: { class: dragClsName, 'aria-label': 'drag handle',
1392
1400
  title: 'drag handle' } });
1393
1401
  fieldElem.appendChild(spanDragElement);
1394
1402
  var filterElem = this.createElement('input', { attrs: { type: 'text', class: 'e-filter-input' } });