@acorex/components 3.0.43 → 3.0.44

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.
@@ -10227,7 +10227,6 @@
10227
10227
  return __generator(this, function (_d) {
10228
10228
  switch (_d.label) {
10229
10229
  case 0:
10230
- debugger;
10231
10230
  if (group.items.length > 0) {
10232
10231
  query = ' ( ';
10233
10232
  }
@@ -10286,7 +10285,6 @@
10286
10285
  codeOperator = item.operator;
10287
10286
  break;
10288
10287
  }
10289
- debugger;
10290
10288
  query = query + ' ' + item.caption + ' ' + codeOperator + ' ' + item.text;
10291
10289
  _d.label = 6;
10292
10290
  case 6:
@@ -10329,7 +10327,6 @@
10329
10327
  var query = '';
10330
10328
  switch (type) {
10331
10329
  case 'simple':
10332
- debugger;
10333
10330
  if (group.items.length > 0) {
10334
10331
  query = ' ( ';
10335
10332
  }
@@ -10471,7 +10468,6 @@
10471
10468
  };
10472
10469
  AXQueryBuilderGroupComponent.prototype.ruleChanged = function (e) {
10473
10470
  var _this = this;
10474
- debugger;
10475
10471
  // this.group.queryString = this.qs.getQueryString(this.group, 'simple');
10476
10472
  this.qs.getQueryStringSimple(this.group).then(function (c) {
10477
10473
  _this.group.queryString = c;
@@ -14056,7 +14052,7 @@
14056
14052
  }
14057
14053
  };
14058
14054
  node.parent.unSelectParent = function () {
14059
- if (item.parentNode['select'] == true) {
14055
+ if (item.parentNode['select'] != false) {
14060
14056
  _this.internalSelectItem(item.parentNode, true);
14061
14057
  }
14062
14058
  };
@@ -14071,7 +14067,7 @@
14071
14067
  };
14072
14068
  node.children.unSelectChilds = function () {
14073
14069
  item.childeren.forEach(function (element) {
14074
- if (element['select'] == true) {
14070
+ if (element['select'] != false) {
14075
14071
  _this.internalSelectItem(element, true);
14076
14072
  }
14077
14073
  });