@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.
- package/bundles/senior-gestao-pessoas-payroll-core.umd.js +9 -9
- package/bundles/senior-gestao-pessoas-payroll-core.umd.js.map +1 -1
- package/bundles/senior-gestao-pessoas-payroll-core.umd.min.js +1 -1
- package/bundles/senior-gestao-pessoas-payroll-core.umd.min.js.map +1 -1
- package/components/historical-pix-account/historical-pix-account.component.d.ts +3 -3
- package/esm2015/components/historical-pix-account/historical-pix-account.component.js +10 -10
- package/esm5/components/historical-pix-account/historical-pix-account.component.js +10 -10
- package/fesm2015/senior-gestao-pessoas-payroll-core.js +9 -9
- package/fesm2015/senior-gestao-pessoas-payroll-core.js.map +1 -1
- package/fesm5/senior-gestao-pessoas-payroll-core.js +9 -9
- package/fesm5/senior-gestao-pessoas-payroll-core.js.map +1 -1
- package/package.json +1 -1
- package/senior-gestao-pessoas-payroll-core.metadata.json +1 -1
|
@@ -9269,9 +9269,9 @@ var HistoricalPixAccountComponent = /** @class */ (function () {
|
|
|
9269
9269
|
this.withSideBar = true;
|
|
9270
9270
|
this.defaultCpfNumber = null;
|
|
9271
9271
|
this.listDataReciever = [];
|
|
9272
|
-
this.
|
|
9273
|
-
this.
|
|
9274
|
-
this.
|
|
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.
|
|
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.
|
|
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.
|
|
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, "
|
|
9665
|
+
], HistoricalPixAccountComponent.prototype, "isViewModeActive", void 0);
|
|
9666
9666
|
__decorate([
|
|
9667
9667
|
Output()
|
|
9668
|
-
], HistoricalPixAccountComponent.prototype, "
|
|
9668
|
+
], HistoricalPixAccountComponent.prototype, "isEditModeActive", void 0);
|
|
9669
9669
|
__decorate([
|
|
9670
9670
|
Output()
|
|
9671
|
-
], HistoricalPixAccountComponent.prototype, "
|
|
9671
|
+
], HistoricalPixAccountComponent.prototype, "isDeleteModeActive", void 0);
|
|
9672
9672
|
__decorate([
|
|
9673
9673
|
Input()
|
|
9674
9674
|
], HistoricalPixAccountComponent.prototype, "dateChange", null);
|