@senior-gestao-pessoas/payroll-core 9.3.0-be196b4c-4396-43c2-87cb-9cd868bf0100 → 9.3.0-ce4e33bc-a617-435b-b394-9a9e3ca226f4

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.
@@ -9434,6 +9434,9 @@
9434
9434
  this.isViewMode = false;
9435
9435
  this.withSideBar = true;
9436
9436
  this.defaultCpfNumber = null;
9437
+ this.isOnlyView = new core.EventEmitter();
9438
+ this.isOnlyEdit = new core.EventEmitter();
9439
+ this.isOnlyDelete = new core.EventEmitter();
9437
9440
  this.visibleChange = new core.EventEmitter();
9438
9441
  this.ngUnsubscribe = new rxjs.Subject();
9439
9442
  this.orderBy = {
@@ -9473,7 +9476,7 @@
9473
9476
  _this.visible = true;
9474
9477
  }
9475
9478
  else {
9476
- _this.isNotAllowMessage();
9479
+ _this.isOnlyView.emit(true);
9477
9480
  }
9478
9481
  },
9479
9482
  },
@@ -9487,7 +9490,7 @@
9487
9490
  _this.visible = true;
9488
9491
  }
9489
9492
  else {
9490
- _this.isNotAllowMessage();
9493
+ _this.isOnlyEdit.emit(true);
9491
9494
  }
9492
9495
  },
9493
9496
  },
@@ -9500,7 +9503,7 @@
9500
9503
  _this.deleteAnnuityItem(key);
9501
9504
  }
9502
9505
  else {
9503
- _this.isNotAllowMessage();
9506
+ _this.isOnlyDelete.emit(true);
9504
9507
  }
9505
9508
  },
9506
9509
  },
@@ -9804,6 +9807,15 @@
9804
9807
  __decorate([
9805
9808
  core.Input()
9806
9809
  ], HistoricalPixAccountComponent.prototype, "permission", void 0);
9810
+ __decorate([
9811
+ core.Output()
9812
+ ], HistoricalPixAccountComponent.prototype, "isOnlyView", void 0);
9813
+ __decorate([
9814
+ core.Output()
9815
+ ], HistoricalPixAccountComponent.prototype, "isOnlyEdit", void 0);
9816
+ __decorate([
9817
+ core.Output()
9818
+ ], HistoricalPixAccountComponent.prototype, "isOnlyDelete", void 0);
9807
9819
  __decorate([
9808
9820
  core.Input()
9809
9821
  ], HistoricalPixAccountComponent.prototype, "dateChange", null);