@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.
@@ -9269,9 +9269,9 @@ var HistoricalPixAccountComponent = /** @class */ (function () {
9269
9269
  this.withSideBar = true;
9270
9270
  this.defaultCpfNumber = null;
9271
9271
  this.listDataReciever = [];
9272
- this.isOnlyView = new EventEmitter();
9273
- this.isOnlyEdit = new EventEmitter();
9274
- this.isOnlyDelete = new EventEmitter();
9272
+ this.isViewModeActive = new EventEmitter();
9273
+ this.isEditModeActive = new EventEmitter();
9274
+ this.isDeleteModeActive = new EventEmitter();
9275
9275
  this.listFromApp = [];
9276
9276
  this.visibleChange = new EventEmitter();
9277
9277
  this.ngUnsubscribe = new Subject();
@@ -9312,7 +9312,7 @@ var HistoricalPixAccountComponent = /** @class */ (function () {
9312
9312
  _this.visible = true;
9313
9313
  }
9314
9314
  else {
9315
- _this.isOnlyView.emit(true);
9315
+ _this.isViewModeActive.emit(true);
9316
9316
  }
9317
9317
  },
9318
9318
  },
@@ -9326,7 +9326,7 @@ var HistoricalPixAccountComponent = /** @class */ (function () {
9326
9326
  _this.visible = true;
9327
9327
  }
9328
9328
  else {
9329
- _this.isOnlyEdit.emit(true);
9329
+ _this.isEditModeActive.emit(true);
9330
9330
  if (_this.listFromApp.length == 0) {
9331
9331
  rowData["index"] = key;
9332
9332
  _this.pixAccountItemInput = { currentItem: rowData, listData: _this.listDataNoPage, isEditMode: true };
@@ -9344,7 +9344,7 @@ var HistoricalPixAccountComponent = /** @class */ (function () {
9344
9344
  _this.deleteAnnuityItem(key);
9345
9345
  }
9346
9346
  else {
9347
- _this.isOnlyDelete.emit(true);
9347
+ _this.isDeleteModeActive.emit(true);
9348
9348
  if (_this.listFromApp.length == 0) {
9349
9349
  _this.loading = true;
9350
9350
  _this.deleteAnnuityItem(key);
@@ -9662,13 +9662,13 @@ var HistoricalPixAccountComponent = /** @class */ (function () {
9662
9662
  ], HistoricalPixAccountComponent.prototype, "listDataReciever", void 0);
9663
9663
  __decorate([
9664
9664
  Output()
9665
- ], HistoricalPixAccountComponent.prototype, "isOnlyView", void 0);
9665
+ ], HistoricalPixAccountComponent.prototype, "isViewModeActive", void 0);
9666
9666
  __decorate([
9667
9667
  Output()
9668
- ], HistoricalPixAccountComponent.prototype, "isOnlyEdit", void 0);
9668
+ ], HistoricalPixAccountComponent.prototype, "isEditModeActive", void 0);
9669
9669
  __decorate([
9670
9670
  Output()
9671
- ], HistoricalPixAccountComponent.prototype, "isOnlyDelete", void 0);
9671
+ ], HistoricalPixAccountComponent.prototype, "isDeleteModeActive", void 0);
9672
9672
  __decorate([
9673
9673
  Input()
9674
9674
  ], HistoricalPixAccountComponent.prototype, "dateChange", null);