@acorex/components 1.3.89 → 1.3.93

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.
@@ -1338,6 +1338,7 @@
1338
1338
  if (v == undefined) {
1339
1339
  this._value = null;
1340
1340
  this.focusedValue = this.today;
1341
+ this.viewRange = this.today.month.range;
1341
1342
  this.navigate(0);
1342
1343
  }
1343
1344
  this.onClick.emit({
@@ -1350,6 +1351,13 @@
1350
1351
  enumerable: true,
1351
1352
  configurable: true
1352
1353
  });
1354
+ Object.defineProperty(AXCalendarBoxComponent.prototype, "today", {
1355
+ get: function () {
1356
+ return new core$1.AXDateTime(new Date(), this.type);
1357
+ },
1358
+ enumerable: true,
1359
+ configurable: true
1360
+ });
1353
1361
  AXCalendarBoxComponent.prototype.findDay = function (date) {
1354
1362
  if (this.dayStyle.find(function (c) { return c.date == date.toISOString().split('T')[0]; })) {
1355
1363
  return true;
@@ -1375,12 +1383,17 @@
1375
1383
  }
1376
1384
  };
1377
1385
  AXCalendarBoxComponent.prototype.ngOnInit = function () {
1378
- this.today = this.focusedValue = new core$1.AXDateTime(new Date(), this.type);
1386
+ this.focusedValue = new core$1.AXDateTime(new Date(), this.type);
1379
1387
  //
1380
1388
  this.initLayout();
1381
1389
  //
1382
1390
  this.viewRange = this.today.month.range;
1383
- this.setFocus(this.today);
1391
+ if (this.value) {
1392
+ this.setFocus(new core$1.AXDateTime(this.value, this.type));
1393
+ }
1394
+ else {
1395
+ this.setFocus(this.today);
1396
+ }
1384
1397
  this.view = 'day';
1385
1398
  };
1386
1399
  AXCalendarBoxComponent.prototype.getViewCompaire = function (view) {
@@ -1430,9 +1443,7 @@
1430
1443
  };
1431
1444
  AXCalendarBoxComponent.prototype.rotate = function (array, n) {
1432
1445
  var len = array.length;
1433
- return !(n % len) ? array
1434
- : n > 0 ? array.map(function (e, i, a) { return a[(i + n) % len]; })
1435
- : array.map(function (e, i, a) { return a[(len - (len - i - n) % len) % len]; });
1446
+ return !(n % len) ? array : n > 0 ? array.map(function (e, i, a) { return a[(i + n) % len]; }) : array.map(function (e, i, a) { return a[(len - ((len - i - n) % len)) % len]; });
1436
1447
  };
1437
1448
  AXCalendarBoxComponent.prototype.navigate = function (value) {
1438
1449
  var start;
@@ -1443,10 +1454,7 @@
1443
1454
  fd = value.startOf('month');
1444
1455
  }
1445
1456
  else {
1446
- fd = this.viewRange.startTime
1447
- .add('day', 15)
1448
- .add('month', value)
1449
- .startOf('month');
1457
+ fd = this.viewRange.startTime.add('day', 15).add('month', value).startOf('month');
1450
1458
  }
1451
1459
  start = fd.firstDayOfWeek;
1452
1460
  end = fd.endOf('month').endDayOfWeek;
@@ -1469,10 +1477,7 @@
1469
1477
  fd = value.startOf('year');
1470
1478
  }
1471
1479
  else {
1472
- fd = this.viewRange.startTime
1473
- .add('day', 15)
1474
- .add('year', value)
1475
- .startOf('year');
1480
+ fd = this.viewRange.startTime.add('day', 15).add('year', value).startOf('year');
1476
1481
  }
1477
1482
  start = fd;
1478
1483
  end = fd.endOf('year');
@@ -1493,10 +1498,10 @@
1493
1498
  }
1494
1499
  this.viewRange = new core$1.AXDateTimeRange(start, end);
1495
1500
  //
1496
- if (this.getHoliday && typeof (this.getHoliday) === 'function') {
1501
+ if (this.getHoliday && typeof this.getHoliday === 'function') {
1497
1502
  this.holidays = this.getHoliday(start.date, end.date, this.type);
1498
1503
  }
1499
- if (this.getWeekend && typeof (this.getWeekend) === 'function') {
1504
+ if (this.getWeekend && typeof this.getWeekend === 'function') {
1500
1505
  this.weekends = this.getWeekend(start.date, end.date, this.type);
1501
1506
  }
1502
1507
  //
@@ -1587,8 +1592,9 @@
1587
1592
  r = d.compaireNew(new core$1.AXDateTime(this.max, this.type), this.getViewCompaire(this.view), this.type) === 1;
1588
1593
  }
1589
1594
  if (this.min && this.max) {
1590
- r = (d.compaireNew(new core$1.AXDateTime(this.min, this.type), this.getViewCompaire(this.view), this.type) === -1 ||
1591
- d.compaireNew(new core$1.AXDateTime(this.max, this.type), this.getViewCompaire(this.view), this.type) === 1);
1595
+ r =
1596
+ d.compaireNew(new core$1.AXDateTime(this.min, this.type), this.getViewCompaire(this.view), this.type) === -1 ||
1597
+ d.compaireNew(new core$1.AXDateTime(this.max, this.type), this.getViewCompaire(this.view), this.type) === 1;
1592
1598
  }
1593
1599
  }
1594
1600
  return r;
@@ -1698,8 +1704,7 @@
1698
1704
  encapsulation: core.ViewEncapsulation.None,
1699
1705
  changeDetection: core.ChangeDetectionStrategy.OnPush
1700
1706
  }),
1701
- __metadata("design:paramtypes", [core.ChangeDetectorRef,
1702
- core.ElementRef])
1707
+ __metadata("design:paramtypes", [core.ChangeDetectorRef, core.ElementRef])
1703
1708
  ], AXCalendarBoxComponent);
1704
1709
  return AXCalendarBoxComponent;
1705
1710
  }());
@@ -8524,12 +8529,13 @@
8524
8529
  enumerable: true,
8525
8530
  configurable: true
8526
8531
  });
8527
- AXSelectBoxComponent.prototype.setSelectedItemsChange = function (v) {
8532
+ AXSelectBoxComponent.prototype.setSelectedItemsChange = function (v, old) {
8528
8533
  var _this = this;
8534
+ if (old === void 0) { old = this.selectedItems; }
8529
8535
  if (!v) {
8530
8536
  v = [];
8531
8537
  }
8532
- var old = this.selectedItems;
8538
+ // const old = this.selectedItems;
8533
8539
  if (JSON.stringify(old) !== JSON.stringify(v)) {
8534
8540
  this._selectedItems = this.mode == 'single' ? v.slice(0, 1) : __spread(new Set(v)); //[...new Set(v[0])] : [...new Set(v)];
8535
8541
  this._selectedItems.forEach(function (c) { return (c.selected = true); });
@@ -8593,9 +8599,11 @@
8593
8599
  // this.searchText = e.value;
8594
8600
  // this.text = e.value;
8595
8601
  // this.items = [];
8596
- var t = this.items.length;
8597
- for (var i = 0; i < t; i++) {
8598
- this.items.pop();
8602
+ if (this.items) {
8603
+ var t = this.items.length;
8604
+ for (var i = 0; i < t; i++) {
8605
+ this.items.pop();
8606
+ }
8599
8607
  }
8600
8608
  // this.items.forEach((element) => {
8601
8609
  // this.items.pop();
@@ -8709,7 +8717,7 @@
8709
8717
  _this.selectedItems.push(res);
8710
8718
  });
8711
8719
  // this.selectedItems.push(this.items.filter((c) => vv.includes(c[this.valueField])));
8712
- _this.setSelectedItemsChange(_this.selectedItems);
8720
+ _this.setSelectedItemsChange(_this.selectedItems, vv_1.length > 0 ? [1] : _this.selectedItems);
8713
8721
  }
8714
8722
  // this.selectedItems = this.items.filter((c) => v.includes(c[this.valueField]));
8715
8723
  }
@@ -8780,9 +8788,9 @@
8780
8788
  // }
8781
8789
  this.initValidation(this.ref, 'selectedItems', this.validation);
8782
8790
  if (this.dataSource) {
8783
- if (this.allowSearch == false) {
8784
- this.fetch();
8785
- }
8791
+ // if (this.allowSearch == false) {
8792
+ // this.fetch();
8793
+ // }
8786
8794
  this.dataSource.onDataReceived.subscribe(function (c) {
8787
8795
  _this.showLoading = false;
8788
8796
  _this.dataReceived(c.data.result);
@@ -8877,9 +8885,11 @@
8877
8885
  // this.items.forEach((element) => {
8878
8886
  // this.items.pop();
8879
8887
  // });
8880
- var t = this.items.length;
8881
- for (var i = 0; i < t; i++) {
8882
- this.items.pop();
8888
+ if (this.items) {
8889
+ var t = this.items.length;
8890
+ for (var i = 0; i < t; i++) {
8891
+ this.items.pop();
8892
+ }
8883
8893
  }
8884
8894
  this.fetch(params);
8885
8895
  }
@@ -8944,6 +8954,7 @@
8944
8954
  };
8945
8955
  AXSelectBoxComponent.prototype.handleKeyEventSearch = function (e) {
8946
8956
  var _this = this;
8957
+ var _a;
8947
8958
  if (this.disabled || this.readonly) {
8948
8959
  this.dropdown.close();
8949
8960
  setTimeout(function () {
@@ -9028,7 +9039,7 @@
9028
9039
  }
9029
9040
  }
9030
9041
  else {
9031
- if (this.text && this.itemsFiltered.length === 1) {
9042
+ if (this.text && ((_a = this.itemsFiltered) === null || _a === void 0 ? void 0 : _a.length) === 1) {
9032
9043
  this.setSelectedItems(this.itemsFiltered, true);
9033
9044
  }
9034
9045
  if (this.mode == 'single') {
@@ -9703,7 +9714,7 @@
9703
9714
  AXQueryBuilderRuleComponent = __decorate([
9704
9715
  core.Component({
9705
9716
  selector: 'ax-query-rule',
9706
- template: "<div class=\"condition\" *ngIf=\"parent\">\r\n <div class=\"text {{parent.condition}}\">\r\n <span>{{parent.condition}}</span>\r\n </div>\r\n</div>\r\n<div class=\"handler\">\r\n <i class=\"far fa-grip-lines-vertical\"></i>\r\n</div>\r\n\r\n<div class=\"caption\" [ngClass]=\"{'editable': isEditing}\">\r\n <ng-container *ngIf=\"isEditing;else fieldsTemplate\">\r\n <ax-form-group>\r\n <ax-select-box (selectionChanged)=\"captionChange($event)\" allowNull=\"false\"\r\n [(selectedItems)]=\"rule.dataFieldItem\" textField=\"caption\" valueField=\"dataField\" [items]=\"fields\"\r\n size=\"sm\" mode=\"single\">\r\n </ax-select-box>\r\n </ax-form-group>\r\n </ng-container>\r\n <ng-template #fieldsTemplate>\r\n <div (click)=\"handleEditClick()\">\r\n {{rule.caption}}\r\n </div>\r\n </ng-template>\r\n</div>\r\n\r\n<div class=\"operator\" [ngClass]=\"{'editable': isEditing,'radius':!showValue}\">\r\n <ng-container *ngIf=\"isEditing;else operatorTemplate\">\r\n <ax-form-group>\r\n <ax-select-box #selectBox (selectedItemsChange)=\"operatorChange($event)\" allowNull=\"false\"\r\n [(selectedValues)]=\"rule.operator\" size=\"sm\" mode=\"single\">\r\n <ax-data-source [provideData]=\"provideDataOperator\">\r\n </ax-data-source>\r\n </ax-select-box>\r\n </ax-form-group>\r\n </ng-container>\r\n <ng-template #operatorTemplate>\r\n <div class=\"text\" (click)=\"handleEditClick()\">\r\n {{('queryBuilder.'+rule.operator) | trans}}\r\n </div>\r\n </ng-template>\r\n</div>\r\n<div *ngIf=\"showValue\" class=\"value\" [ngClass]=\"{'editable': isEditing}\">\r\n <ng-container *ngIf=\"isEditing;else valueTemplate\">\r\n\r\n <div *ngIf=\" rule.control && !isOnDemandLabel\" [ngSwitch]=\"rule.control.type\">\r\n <div *ngSwitchCase=\"'textBox'\">\r\n <ax-form-group>\r\n <ax-text-box (onValueChanged)=\"valueChange($event)\" placeholder=\"\u0645\u0642\u062F\u0627\u0631 \u0645\u0648\u0631\u062F \u0646\u0638\u0631 \u062E\u0648\u062F \u0631\u0627 \u0648\u0627\u0631\u062F \u06A9\u0646\u06CC\u062F\"\r\n [(value)]=\"rule.value\" size=\"sm\">\r\n </ax-text-box>\r\n </ax-form-group>\r\n </div>\r\n <div *ngSwitchCase=\"'selectBox'\">\r\n <ax-form-group>\r\n <ax-select-box placeholder=\"\u0645\u0642\u062F\u0627\u0631 \u0645\u0648\u0631\u062F \u0646\u0638\u0631 \u062E\u0648\u062F \u0631\u0627 \u0648\u0627\u0631\u062F \u06A9\u0646\u06CC\u062F\" [textField]=\"getOption('textField')\"\r\n [(selectedItems)]=\"rule.valueItem\" [valueField]=\"getOption('valueField')\"\r\n [mode]=\"getOption('mode')\" (selectedItemsChange)=\"selectedItemsChange($event)\" size=\"sm\"\r\n #selectBoxValue [remoteOperation]=\"getOption('remoteOperation')\">\r\n <ax-data-source [provideData]=\"getProvideData\"></ax-data-source>\r\n </ax-select-box>\r\n </ax-form-group>\r\n </div>\r\n <div *ngSwitchCase=\"'numberBox'\">\r\n <ax-form-group>\r\n <ax-number-box (onValueChanged)=\"valueChange($event)\" placeholder=\"\u0645\u0642\u062F\u0627\u0631 \u0645\u0648\u0631\u062F \u0646\u0638\u0631 \u062E\u0648\u062F \u0631\u0627 \u0648\u0627\u0631\u062F \u06A9\u0646\u06CC\u062F\"\r\n [(value)]=\"rule.value\" size=\"sm\">\r\n </ax-number-box>\r\n </ax-form-group>\r\n </div>\r\n <div *ngSwitchCase=\"'datePicker'\">\r\n\r\n\r\n </div>\r\n <div *ngSwitchCase=\"'boolean'\">\r\n\r\n <ax-form-group>\r\n <ax-select-box #selectBoxBoolean (selectedItemsChange)=\"valueBooleanChange($event)\"\r\n allowNull=\"false\" [selectedValues]=\"rule.value\" size=\"sm\" mode=\"single\">\r\n <ax-data-source [provideData]=\"provideDataBoolean\">\r\n </ax-data-source>\r\n </ax-select-box>\r\n </ax-form-group>\r\n\r\n </div>\r\n <div *ngSwitchDefault>\r\n <ax-form-group>\r\n <ax-text-box (onValueChanged)=\"valueChange($event)\" placeholder=\"\u0645\u0642\u062F\u0627\u0631 \u0645\u0648\u0631\u062F \u0646\u0638\u0631 \u062E\u0648\u062F \u0631\u0627 \u0648\u0627\u0631\u062F \u06A9\u0646\u06CC\u062F\"\r\n [(value)]=\"rule.value\" size=\"sm\">\r\n </ax-text-box>\r\n\r\n </ax-form-group>\r\n\r\n </div>\r\n </div>\r\n\r\n <div *ngIf=\"isOnDemandLabel\">\r\n\r\n <ax-text-box #textBoxNameValue [value]=\"getOnDemandName(rule.onDemandLabel)\"\r\n (onValueChanged)=\"onDemandLabelChange($event)\" placeholder=\"\u0646\u0627\u0645 \u0645\u062A\u063A\u06CC\u0631 \u062E\u0648\u062F \u0631\u0627 \u0648\u0627\u0631\u062F \u06A9\u0646\u06CC\u062F\" size=\"sm\">\r\n <!-- <ax-validation>\r\n <ax-validation-rule type=\"required\"></ax-validation-rule>\r\n </ax-validation> -->\r\n </ax-text-box>\r\n\r\n\r\n </div>\r\n\r\n </ng-container>\r\n <ng-template #valueTemplate>\r\n <div (click)=\"handleEditClick()\">\r\n\r\n {{rule.text}}\r\n\r\n </div>\r\n </ng-template>\r\n</div>\r\n\r\n<div class=\"buttons-list\">\r\n <div *ngIf=\"showValue && isEditing\" class=\"button variable\" [ngClass]=\"{'active-button': isOnDemandLabel}\">\r\n <i class=\"far fa-dollar-sign\"></i>\r\n <ax-check-box [value]=\"isOnDemandLabel\" (onClick)=\"onDemandLabel($event)\">\r\n </ax-check-box>\r\n </div>\r\n\r\n <div class=\"button commit\" (click)=\"handleCommitClick()\" *ngIf=\"isEditing\">\r\n <i class=\"far fa-check\"></i>\r\n </div>\r\n <div class=\"button remove\" (click)=\"handleRemoveClick()\" *ngIf=\"!isEditing\">\r\n <i class=\"far fa-times\"></i>\r\n </div>\r\n</div>",
9717
+ template: "<div class=\"condition\" *ngIf=\"parent\">\r\n <div class=\"text {{parent.condition}}\">\r\n <span>{{parent.condition}}</span>\r\n </div>\r\n</div>\r\n<div class=\"handler\">\r\n <i class=\"far fa-grip-lines-vertical\"></i>\r\n</div>\r\n\r\n<div class=\"caption\" [ngClass]=\"{'editable': isEditing}\">\r\n <ng-container *ngIf=\"isEditing;else fieldsTemplate\">\r\n <ax-form-group>\r\n <ax-select-box (selectionChanged)=\"captionChange($event)\" allowNull=\"false\"\r\n [(selectedItems)]=\"rule.dataFieldItem\" textField=\"caption\" valueField=\"dataField\" [items]=\"fields\"\r\n size=\"sm\" mode=\"single\">\r\n </ax-select-box>\r\n </ax-form-group>\r\n </ng-container>\r\n <ng-template #fieldsTemplate>\r\n <div (click)=\"handleEditClick()\">\r\n {{rule.caption}}\r\n </div>\r\n </ng-template>\r\n</div>\r\n\r\n<div class=\"operator\" [ngClass]=\"{'editable': isEditing,'radius':!showValue}\">\r\n <ng-container *ngIf=\"isEditing;else operatorTemplate\">\r\n <ax-form-group>\r\n <ax-select-box #selectBox (selectedItemsChange)=\"operatorChange($event)\" allowNull=\"false\"\r\n [(selectedValues)]=\"rule.operator\" size=\"sm\" mode=\"single\">\r\n <ax-data-source [provideData]=\"provideDataOperator\">\r\n </ax-data-source>\r\n </ax-select-box>\r\n </ax-form-group>\r\n </ng-container>\r\n <ng-template #operatorTemplate>\r\n <div class=\"text\" (click)=\"handleEditClick()\">\r\n {{('queryBuilder.'+rule.operator) | trans}}\r\n </div>\r\n </ng-template>\r\n</div>\r\n<div *ngIf=\"showValue\" class=\"value\" [ngClass]=\"{'editable': isEditing}\">\r\n <ng-container *ngIf=\"isEditing;else valueTemplate\">\r\n\r\n <div *ngIf=\" rule.control && !isOnDemandLabel\" [ngSwitch]=\"rule.control.type\">\r\n <div *ngSwitchCase=\"'textBox'\">\r\n <ax-form-group>\r\n <ax-text-box (onValueChanged)=\"valueChange($event)\" placeholder=\"\u0645\u0642\u062F\u0627\u0631 \u0645\u0648\u0631\u062F \u0646\u0638\u0631 \u062E\u0648\u062F \u0631\u0627 \u0648\u0627\u0631\u062F \u06A9\u0646\u06CC\u062F\"\r\n [(value)]=\"rule.value\" size=\"sm\">\r\n </ax-text-box>\r\n </ax-form-group>\r\n </div>\r\n <div *ngSwitchCase=\"'selectBox'\">\r\n <ax-form-group>\r\n <ax-select-box placeholder=\"\u0645\u0642\u062F\u0627\u0631 \u0645\u0648\u0631\u062F \u0646\u0638\u0631 \u062E\u0648\u062F \u0631\u0627 \u0648\u0627\u0631\u062F \u06A9\u0646\u06CC\u062F\" [textField]=\"getOption('textField')\"\r\n [(selectedItems)]=\"rule.valueItem\" [valueField]=\"getOption('valueField')\"\r\n [mode]=\"getOption('mode')\" (selectedItemsChange)=\"selectedItemsChange($event)\" size=\"sm\"\r\n #selectBoxValue [remoteOperation]=\"getOption('remoteOperation')\">\r\n <ax-data-source [provideData]=\"getProvideData\"></ax-data-source>\r\n </ax-select-box>\r\n </ax-form-group>\r\n </div>\r\n <div *ngSwitchCase=\"'numberBox'\">\r\n <ax-form-group>\r\n <ax-number-box (onValueChanged)=\"valueChange($event)\" placeholder=\"\u0645\u0642\u062F\u0627\u0631 \u0645\u0648\u0631\u062F \u0646\u0638\u0631 \u062E\u0648\u062F \u0631\u0627 \u0648\u0627\u0631\u062F \u06A9\u0646\u06CC\u062F\"\r\n [(value)]=\"rule.value\" size=\"sm\">\r\n </ax-number-box>\r\n </ax-form-group>\r\n </div>\r\n <div *ngSwitchCase=\"'datePicker'\">\r\n\r\n\r\n </div>\r\n <div *ngSwitchCase=\"'boolean'\">\r\n\r\n <ax-form-group>\r\n <ax-select-box #selectBoxBoolean (selectedItemsChange)=\"valueBooleanChange($event)\"\r\n allowNull=\"false\" [selectedValues]=\"rule.value\" size=\"sm\" mode=\"single\">\r\n <ax-data-source [provideData]=\"provideDataBoolean\">\r\n </ax-data-source>\r\n </ax-select-box>\r\n </ax-form-group>\r\n\r\n </div>\r\n <div *ngSwitchDefault>\r\n <ax-form-group>\r\n <ax-text-box (onValueChanged)=\"valueChange($event)\" placeholder=\"\u0645\u0642\u062F\u0627\u0631 \u0645\u0648\u0631\u062F \u0646\u0638\u0631 \u062E\u0648\u062F \u0631\u0627 \u0648\u0627\u0631\u062F \u06A9\u0646\u06CC\u062F\"\r\n [(value)]=\"rule.value\" size=\"sm\">\r\n </ax-text-box>\r\n\r\n </ax-form-group>\r\n\r\n </div>\r\n </div>\r\n\r\n <div *ngIf=\"isOnDemandLabel\">\r\n\r\n <ax-text-box #textBoxNameValue [value]=\"getOnDemandName(rule.onDemandLabel)\"\r\n (onValueChanged)=\"onDemandLabelChange($event)\" placeholder=\"\u0646\u0627\u0645 \u0645\u062A\u063A\u06CC\u0631 \u062E\u0648\u062F \u0631\u0627 \u0648\u0627\u0631\u062F \u06A9\u0646\u06CC\u062F\" size=\"sm\">\r\n <!-- <ax-validation>\r\n <ax-validation-rule type=\"required\"></ax-validation-rule>\r\n </ax-validation> -->\r\n </ax-text-box>\r\n\r\n\r\n </div>\r\n\r\n </ng-container>\r\n <ng-template #valueTemplate>\r\n <div (click)=\"handleEditClick()\">\r\n\r\n {{rule.text}}\r\n\r\n </div>\r\n </ng-template>\r\n</div>\r\n\r\n<div class=\"buttons-list\">\r\n <div *ngIf=\"showValue && isEditing\" class=\"button variable\" [ngClass]=\"{'active-button': isOnDemandLabel}\">\r\n <i class=\"far fa-dollar-sign\"></i>\r\n <ax-check-box [value]=\"isOnDemandLabel\" (onClick)=\"onDemandLabel($event)\">\r\n </ax-check-box>\r\n </div>\r\n\r\n <div class=\"button commit\" (click)=\"handleCommitClick()\" *ngIf=\"isEditing\">\r\n <i class=\"far fa-check\"></i>\r\n </div>\r\n <div class=\"button remove\" (click)=\"handleRemoveClick()\">\r\n <i class=\"far fa-times\"></i>\r\n </div>\r\n</div>",
9707
9718
  host: { class: 'ax ax-query-rule' },
9708
9719
  encapsulation: core.ViewEncapsulation.None
9709
9720
  }),
@@ -13931,7 +13942,6 @@
13931
13942
  _this.isSelectedItem = true;
13932
13943
  }
13933
13944
  }
13934
- debugger;
13935
13945
  });
13936
13946
  }
13937
13947
  else {