ng-pli-commons 1.0.90 → 1.0.93
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/esm2022/lib/components/dynamic-filter/dynamic-filter.component.mjs +1 -1
- package/esm2022/lib/components/select-ppp/select-ppp.component.mjs +1 -1
- package/esm2022/lib/components/token/token.component.mjs +7 -21
- package/esm2022/lib/components/tokens-calculator/tokens-calculator.component.mjs +1 -1
- package/esm2022/lib/services/maintenance.service.mjs +12 -5
- package/esm2022/version.mjs +8 -8
- package/fesm2022/ng-pli-commons.mjs +26 -32
- package/fesm2022/ng-pli-commons.mjs.map +1 -1
- package/lib/components/token/token.component.d.ts +2 -6
- package/lib/services/maintenance.service.d.ts +1 -0
- package/package.json +1 -1
|
@@ -6,18 +6,15 @@ import { ToastrService } from 'ngx-toastr';
|
|
|
6
6
|
import { AuthenticationService } from '../../services/authentication.service';
|
|
7
7
|
import 'jquery';
|
|
8
8
|
import { SesionService } from '../../services/sesion.service';
|
|
9
|
-
import { TokenTransformationService } from '../../services/token-transformation.service';
|
|
10
9
|
import * as i0 from "@angular/core";
|
|
11
10
|
export declare class TokenComponent implements OnInit, OnChanges {
|
|
12
11
|
private currencyPipe;
|
|
13
12
|
private tokenService;
|
|
14
13
|
private toastrService;
|
|
15
14
|
private authenticationService;
|
|
16
|
-
private tokenTransformationService;
|
|
17
15
|
private sesionService;
|
|
18
16
|
/** It contains the template html to translate */
|
|
19
17
|
template: string;
|
|
20
|
-
istemplate: boolean;
|
|
21
18
|
/** It contains the data to implement */
|
|
22
19
|
data: DataToTranslateToken;
|
|
23
20
|
/** It notifies the html is generated*/
|
|
@@ -26,7 +23,6 @@ export declare class TokenComponent implements OnInit, OnChanges {
|
|
|
26
23
|
enableDestination: boolean;
|
|
27
24
|
/** It contains the prom code */
|
|
28
25
|
promCodigo: number;
|
|
29
|
-
applicationId: string;
|
|
30
26
|
/** */
|
|
31
27
|
lTokenCalculated: Token[];
|
|
32
28
|
/** */
|
|
@@ -40,7 +36,7 @@ export declare class TokenComponent implements OnInit, OnChanges {
|
|
|
40
36
|
/** As the list of token are loaded dynamically, this manage that only replace the info once. */
|
|
41
37
|
alreadyCallReplaceTokens: boolean;
|
|
42
38
|
evaluation: Evaluation;
|
|
43
|
-
constructor(currencyPipe: CurrencyPipe, tokenService: TokenService, toastrService: ToastrService, authenticationService: AuthenticationService,
|
|
39
|
+
constructor(currencyPipe: CurrencyPipe, tokenService: TokenService, toastrService: ToastrService, authenticationService: AuthenticationService, sesionService: SesionService);
|
|
44
40
|
ngOnInit(): void;
|
|
45
41
|
/** It manages the change of the every @Input */
|
|
46
42
|
ngOnChanges(changes: SimpleChanges): void;
|
|
@@ -102,5 +98,5 @@ export declare class TokenComponent implements OnInit, OnChanges {
|
|
|
102
98
|
*/
|
|
103
99
|
addInfoTokenResumeCategoryYear(tpresCodigo: number, idTotalBudget: string, budgetDto: BudgetDto): void;
|
|
104
100
|
static ɵfac: i0.ɵɵFactoryDeclaration<TokenComponent, never>;
|
|
105
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TokenComponent, "pli-token", never, { "template": { "alias": "template"; "required": false; }; "
|
|
101
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TokenComponent, "pli-token", never, { "template": { "alias": "template"; "required": false; }; "data": { "alias": "data"; "required": false; }; }, { "onGenerate": "onGenerate"; }, never, never, false, never>;
|
|
106
102
|
}
|
|
@@ -18,6 +18,7 @@ export declare class MaintenanceService {
|
|
|
18
18
|
updateCondonationMaintenace(maintenanceForm: CondonationMaintenance): Observable<Object>;
|
|
19
19
|
generateCondonationMaintenance(dateGenerate: string): Observable<Object>;
|
|
20
20
|
deleteCondonationMaintenaceByIdIn(maintenanceIdList: string[]): Observable<Object>;
|
|
21
|
+
getEstatusChangePendCount(): Observable<Object>;
|
|
21
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<MaintenanceService, never>;
|
|
22
23
|
static ɵprov: i0.ɵɵInjectableDeclaration<MaintenanceService>;
|
|
23
24
|
}
|