iptdevs-design-system 3.1.661 → 3.1.663
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/esm2020/lib/cod-self-managed/cod-form-self-managed/cod-self-managed.component.mjs +6 -3
- package/esm2020/lib/cod-self-managed/steps/cod-form-step-four/cod-self-form-step-four.component.mjs +61 -35
- package/esm2020/lib/cod-self-managed/steps/cod-form-step-one/cod-self-form-step-one.component.mjs +6 -2
- package/fesm2015/iptdevs-design-system.mjs +62 -28
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +62 -28
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/cod-self-managed/cod-form-self-managed/cod-self-managed.component.d.ts +2 -0
- package/lib/cod-self-managed/steps/cod-form-step-four/cod-self-form-step-four.component.d.ts +5 -7
- package/lib/cod-self-managed/steps/cod-form-step-one/cod-self-form-step-one.component.d.ts +2 -1
- package/package.json +1 -1
|
@@ -15,12 +15,14 @@ export declare class CodSelfManagedComponent implements OnDestroy, OnInit {
|
|
|
15
15
|
financingData?: any[];
|
|
16
16
|
countInitialStep: number;
|
|
17
17
|
subscription?: Subscription;
|
|
18
|
+
idTypes: any;
|
|
18
19
|
items: MenuItem[];
|
|
19
20
|
constructor(baseService: BaseService, commercialService: CommercialService);
|
|
20
21
|
ngOnInit(): void;
|
|
21
22
|
ngOnDestroy(): void;
|
|
22
23
|
changeStep(step: any): void;
|
|
23
24
|
saveFinancingData(data: any[]): void;
|
|
25
|
+
handleIdTypesChanged(idTypes: any): void;
|
|
24
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<CodSelfManagedComponent, never>;
|
|
25
27
|
static ɵcmp: i0.ɵɵComponentDeclaration<CodSelfManagedComponent, "ipt-cod-self-managed", never, { "user": "user"; "scorePlacementTest": "scorePlacementTest"; "codPrevious": "codPrevious"; }, {}, never, never, false>;
|
|
26
28
|
}
|
package/lib/cod-self-managed/steps/cod-form-step-four/cod-self-form-step-four.component.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { ParameterService } from './../../../core/services/parameters-service/parameters.service';
|
|
2
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
3
2
|
import { FormGroup, FormBuilder } from '@angular/forms';
|
|
4
3
|
import { MessageService } from 'primeng/api';
|
|
@@ -8,7 +7,7 @@ import * as i0 from "@angular/core";
|
|
|
8
7
|
export declare class CodSelfFormStepFourComponent extends CodSelfManagedSteps implements OnInit {
|
|
9
8
|
private fb;
|
|
10
9
|
private messageService;
|
|
11
|
-
|
|
10
|
+
idTypes: any;
|
|
12
11
|
completed: EventEmitter<number>;
|
|
13
12
|
controls: import("../../logic/cod-self-managed-controls").ControlSteps[];
|
|
14
13
|
messageInfo: string;
|
|
@@ -19,24 +18,23 @@ export declare class CodSelfFormStepFourComponent extends CodSelfManagedSteps im
|
|
|
19
18
|
disableweekdays: boolean[];
|
|
20
19
|
isSelectionOptionPayments: boolean;
|
|
21
20
|
isEditBillingData: boolean;
|
|
22
|
-
idTypes: any;
|
|
23
21
|
OptionPayments: any[];
|
|
24
|
-
constructor(fb: FormBuilder, messageService: MessageService
|
|
22
|
+
constructor(fb: FormBuilder, messageService: MessageService);
|
|
25
23
|
ngOnInit(): void;
|
|
26
|
-
getDataUser(): void;
|
|
27
24
|
initForm(): void;
|
|
25
|
+
getDataUser(): void;
|
|
28
26
|
back(): void;
|
|
29
27
|
next(): void;
|
|
30
28
|
startLocalStorageWork(): void;
|
|
31
29
|
editBillingData(): void;
|
|
32
30
|
updateDatosBillingData(): void;
|
|
33
|
-
getParamenters(): void;
|
|
34
31
|
sendForm(): void;
|
|
35
32
|
onReject(): void;
|
|
36
33
|
showConfirm(): void;
|
|
37
34
|
selectOpcionsPayments(eve: IweekDaysRq): void;
|
|
38
35
|
selectIdType(idType: any): void;
|
|
39
36
|
getViewBasedOnPaymentOption(): string;
|
|
37
|
+
getIdTypeDescription(idType: string): string;
|
|
40
38
|
static ɵfac: i0.ɵɵFactoryDeclaration<CodSelfFormStepFourComponent, never>;
|
|
41
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CodSelfFormStepFourComponent, "app-cod-self-form-step-four", never, {}, { "completed": "completed"; }, never, never, false>;
|
|
39
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CodSelfFormStepFourComponent, "app-cod-self-form-step-four", never, { "idTypes": "idTypes"; }, { "completed": "completed"; }, never, never, false>;
|
|
42
40
|
}
|
|
@@ -12,6 +12,7 @@ export declare class CodSelfFormStepOneComponent extends CodSelfManagedSteps imp
|
|
|
12
12
|
private messageService;
|
|
13
13
|
userStudent?: IUserIPTRqs;
|
|
14
14
|
completed: EventEmitter<number>;
|
|
15
|
+
idTypesChanged: EventEmitter<any>;
|
|
15
16
|
codSelfFormStepOne: FormGroup;
|
|
16
17
|
genders: any[];
|
|
17
18
|
stratums: any;
|
|
@@ -53,5 +54,5 @@ export declare class CodSelfFormStepOneComponent extends CodSelfManagedSteps imp
|
|
|
53
54
|
showConfirm(): void;
|
|
54
55
|
onReject(): void;
|
|
55
56
|
static ɵfac: i0.ɵɵFactoryDeclaration<CodSelfFormStepOneComponent, never>;
|
|
56
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CodSelfFormStepOneComponent, "app-cod-self-form-step-one", never, { "userStudent": "userStudent"; }, { "completed": "completed"; }, never, never, false>;
|
|
57
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CodSelfFormStepOneComponent, "app-cod-self-form-step-one", never, { "userStudent": "userStudent"; }, { "completed": "completed"; "idTypesChanged": "idTypesChanged"; }, never, never, false>;
|
|
57
58
|
}
|