@senior-gestao-pessoas/payroll-core 9.3.0-4c27311d-4594-4495-a90c-0e9e0ba69675 → 9.3.0-56ba6c21-b9f9-42a3-b8a4-a98934e9ccdf

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.
@@ -9435,9 +9435,9 @@
9435
9435
  this.withSideBar = true;
9436
9436
  this.defaultCpfNumber = null;
9437
9437
  this.listDataReciever = [];
9438
- this.isOnlyView = new core.EventEmitter();
9439
- this.isOnlyEdit = new core.EventEmitter();
9440
- this.isOnlyDelete = new core.EventEmitter();
9438
+ this.isViewModeActive = new core.EventEmitter();
9439
+ this.isEditModeActive = new core.EventEmitter();
9440
+ this.isDeleteModeActive = new core.EventEmitter();
9441
9441
  this.listFromApp = [];
9442
9442
  this.visibleChange = new core.EventEmitter();
9443
9443
  this.ngUnsubscribe = new rxjs.Subject();
@@ -9478,7 +9478,7 @@
9478
9478
  _this.visible = true;
9479
9479
  }
9480
9480
  else {
9481
- _this.isOnlyView.emit(true);
9481
+ _this.isViewModeActive.emit(true);
9482
9482
  }
9483
9483
  },
9484
9484
  },
@@ -9492,7 +9492,7 @@
9492
9492
  _this.visible = true;
9493
9493
  }
9494
9494
  else {
9495
- _this.isOnlyEdit.emit(true);
9495
+ _this.isEditModeActive.emit(true);
9496
9496
  if (_this.listFromApp.length == 0) {
9497
9497
  rowData["index"] = key;
9498
9498
  _this.pixAccountItemInput = { currentItem: rowData, listData: _this.listDataNoPage, isEditMode: true };
@@ -9510,7 +9510,7 @@
9510
9510
  _this.deleteAnnuityItem(key);
9511
9511
  }
9512
9512
  else {
9513
- _this.isOnlyDelete.emit(true);
9513
+ _this.isDeleteModeActive.emit(true);
9514
9514
  if (_this.listFromApp.length == 0) {
9515
9515
  _this.loading = true;
9516
9516
  _this.deleteAnnuityItem(key);
@@ -9828,13 +9828,13 @@
9828
9828
  ], HistoricalPixAccountComponent.prototype, "listDataReciever", void 0);
9829
9829
  __decorate([
9830
9830
  core.Output()
9831
- ], HistoricalPixAccountComponent.prototype, "isOnlyView", void 0);
9831
+ ], HistoricalPixAccountComponent.prototype, "isViewModeActive", void 0);
9832
9832
  __decorate([
9833
9833
  core.Output()
9834
- ], HistoricalPixAccountComponent.prototype, "isOnlyEdit", void 0);
9834
+ ], HistoricalPixAccountComponent.prototype, "isEditModeActive", void 0);
9835
9835
  __decorate([
9836
9836
  core.Output()
9837
- ], HistoricalPixAccountComponent.prototype, "isOnlyDelete", void 0);
9837
+ ], HistoricalPixAccountComponent.prototype, "isDeleteModeActive", void 0);
9838
9838
  __decorate([
9839
9839
  core.Input()
9840
9840
  ], HistoricalPixAccountComponent.prototype, "dateChange", null);