@acorex/components 1.3.87 → 1.3.88

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.
@@ -8286,7 +8286,6 @@ var AXSelectBoxComponent = /** @class */ (function (_super) {
8286
8286
  if (this.itemsChange) {
8287
8287
  this.itemsChange.emit(v);
8288
8288
  }
8289
- debugger;
8290
8289
  if (this.itemsStatusObserver) {
8291
8290
  this.itemsStatusObserver.next(this.items.length);
8292
8291
  }
@@ -8483,7 +8482,6 @@ var AXSelectBoxComponent = /** @class */ (function (_super) {
8483
8482
  }
8484
8483
  else {
8485
8484
  if (Array.isArray(v)) {
8486
- debugger;
8487
8485
  if (_this.selectedItems.length > v.length) {
8488
8486
  _this.selectedItems = _this.selectedItems.filter(function (c) { return v.includes(c[_this.valueField]); });
8489
8487
  }
@@ -8548,7 +8546,6 @@ var AXSelectBoxComponent = /** @class */ (function (_super) {
8548
8546
  if (this.mode == 'single') {
8549
8547
  this.showCheckBox = false;
8550
8548
  }
8551
- debugger;
8552
8549
  if (!this.remoteOperation || (this.remoteOperation && this.hasSelectedValue)) {
8553
8550
  this.refresh();
8554
8551
  }
@@ -9058,7 +9055,6 @@ var AXSelectBoxComponent = /** @class */ (function (_super) {
9058
9055
  .pipe(debounceTime(100))
9059
9056
  .pipe(distinctUntilChanged())
9060
9057
  .subscribe(function (c) {
9061
- debugger;
9062
9058
  callbackfn();
9063
9059
  });
9064
9060
  }