@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.
@@ -9268,6 +9268,9 @@ var HistoricalPixAccountComponent = /** @class */ (function () {
9268
9268
  this.isViewMode = false;
9269
9269
  this.withSideBar = true;
9270
9270
  this.defaultCpfNumber = null;
9271
+ this.isOnlyView = new EventEmitter();
9272
+ this.isOnlyEdit = new EventEmitter();
9273
+ this.isOnlyDelete = new EventEmitter();
9271
9274
  this.visibleChange = new EventEmitter();
9272
9275
  this.ngUnsubscribe = new Subject();
9273
9276
  this.orderBy = {
@@ -9307,7 +9310,7 @@ var HistoricalPixAccountComponent = /** @class */ (function () {
9307
9310
  _this.visible = true;
9308
9311
  }
9309
9312
  else {
9310
- _this.isNotAllowMessage();
9313
+ _this.isOnlyView.emit(true);
9311
9314
  }
9312
9315
  },
9313
9316
  },
@@ -9321,7 +9324,7 @@ var HistoricalPixAccountComponent = /** @class */ (function () {
9321
9324
  _this.visible = true;
9322
9325
  }
9323
9326
  else {
9324
- _this.isNotAllowMessage();
9327
+ _this.isOnlyEdit.emit(true);
9325
9328
  }
9326
9329
  },
9327
9330
  },
@@ -9334,7 +9337,7 @@ var HistoricalPixAccountComponent = /** @class */ (function () {
9334
9337
  _this.deleteAnnuityItem(key);
9335
9338
  }
9336
9339
  else {
9337
- _this.isNotAllowMessage();
9340
+ _this.isOnlyDelete.emit(true);
9338
9341
  }
9339
9342
  },
9340
9343
  },
@@ -9638,6 +9641,15 @@ var HistoricalPixAccountComponent = /** @class */ (function () {
9638
9641
  __decorate([
9639
9642
  Input()
9640
9643
  ], HistoricalPixAccountComponent.prototype, "permission", void 0);
9644
+ __decorate([
9645
+ Output()
9646
+ ], HistoricalPixAccountComponent.prototype, "isOnlyView", void 0);
9647
+ __decorate([
9648
+ Output()
9649
+ ], HistoricalPixAccountComponent.prototype, "isOnlyEdit", void 0);
9650
+ __decorate([
9651
+ Output()
9652
+ ], HistoricalPixAccountComponent.prototype, "isOnlyDelete", void 0);
9641
9653
  __decorate([
9642
9654
  Input()
9643
9655
  ], HistoricalPixAccountComponent.prototype, "dateChange", null);