iptdevs-design-system 2.7.36 → 2.7.38

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.
Files changed (164) hide show
  1. package/README.md +24 -24
  2. package/esm2020/iptdevs-design-system.mjs +4 -4
  3. package/esm2020/lib/cod/cod-documents-section/cod-documents-section.component.mjs +16 -16
  4. package/esm2020/lib/cod/cod-form/cod-form.component.mjs +227 -227
  5. package/esm2020/lib/cod/cod.module.mjs +90 -90
  6. package/esm2020/lib/cod/logic/calculate-quotes.service.mjs +72 -72
  7. package/esm2020/lib/cod/logic/cod-form-controls.mjs +91 -91
  8. package/esm2020/lib/cod/logic/cod-form-steps.mjs +29 -29
  9. package/esm2020/lib/cod/logic/communicator.service.mjs +28 -28
  10. package/esm2020/lib/cod/logic/local-storage-cod.service.mjs +39 -39
  11. package/esm2020/lib/cod/steps/cod-form-step-five/cod-form-step-five.component.mjs +146 -146
  12. package/esm2020/lib/cod/steps/cod-form-step-four/cod-form-step-four.component.mjs +251 -251
  13. package/esm2020/lib/cod/steps/cod-form-step-one/cod-form-step-one.component.mjs +200 -200
  14. package/esm2020/lib/cod/steps/cod-form-step-three/cod-form-step-three.component.mjs +175 -175
  15. package/esm2020/lib/cod/steps/cod-form-step-two/cod-form-step-two.component.mjs +255 -255
  16. package/esm2020/lib/components/atoms/aside-button/aside-button.component.mjs +50 -50
  17. package/esm2020/lib/components/atoms/button/button.component.mjs +64 -64
  18. package/esm2020/lib/components/atoms/checkbox/checkbox.component.mjs +47 -47
  19. package/esm2020/lib/components/atoms/datalist/datalist.component.mjs +94 -94
  20. package/esm2020/lib/components/atoms/input/input.component.mjs +145 -145
  21. package/esm2020/lib/components/atoms/level-button/level-button.component.mjs +64 -64
  22. package/esm2020/lib/components/atoms/level-text/level-text.component.mjs +19 -19
  23. package/esm2020/lib/components/atoms/loader/loader.component.mjs +48 -48
  24. package/esm2020/lib/components/atoms/radio/radio.component.mjs +47 -47
  25. package/esm2020/lib/components/atoms/select/select.component.mjs +102 -102
  26. package/esm2020/lib/components/atoms/text-link/text-link.component.mjs +39 -39
  27. package/esm2020/lib/components/components.module.mjs +118 -118
  28. package/esm2020/lib/components/forms/create-user-form/create-user-form.component.mjs +228 -228
  29. package/esm2020/lib/components/forms/login-form/login-form.component.mjs +93 -93
  30. package/esm2020/lib/components/material.module.mjs +19 -19
  31. package/esm2020/lib/components/molecules/sidenav/sidenav.component.mjs +150 -150
  32. package/esm2020/lib/core/core.module.mjs +73 -73
  33. package/esm2020/lib/core/models/academic/academic.component.mjs +2 -2
  34. package/esm2020/lib/core/models/activities/activities.interface.mjs +2 -2
  35. package/esm2020/lib/core/models/attendance/attendance.interface.mjs +2 -2
  36. package/esm2020/lib/core/models/budget/budget.model.mjs +2 -2
  37. package/esm2020/lib/core/models/calendar/calendar-rq.models.mjs +2 -2
  38. package/esm2020/lib/core/models/classroom/classroom-rq.model.mjs +2 -2
  39. package/esm2020/lib/core/models/cod/cod-rq.model.mjs +2 -2
  40. package/esm2020/lib/core/models/commercial/commercial.model.mjs +2 -2
  41. package/esm2020/lib/core/models/course/course-rq.model.mjs +2 -2
  42. package/esm2020/lib/core/models/course/courses.model.mjs +2 -2
  43. package/esm2020/lib/core/models/cronogram/cronogram.models.mjs +2 -2
  44. package/esm2020/lib/core/models/marketing/marketing.model.mjs +2 -2
  45. package/esm2020/lib/core/models/notes/notes.interface.mjs +2 -2
  46. package/esm2020/lib/core/models/payment/payment-rq.model.mjs +2 -2
  47. package/esm2020/lib/core/models/response/response.interface.mjs +2 -2
  48. package/esm2020/lib/core/models/session/session.model.mjs +3 -3
  49. package/esm2020/lib/core/models/student/student.interface.mjs +2 -2
  50. package/esm2020/lib/core/models/table/table-rs.model.mjs +2 -2
  51. package/esm2020/lib/core/models/test/test.model.mjs +2 -2
  52. package/esm2020/lib/core/models/url/url.model.mjs +2 -2
  53. package/esm2020/lib/core/models/user/user-rq.model.mjs +2 -2
  54. package/esm2020/lib/core/models/user/user-rs.model.mjs +5 -5
  55. package/esm2020/lib/core/services/academic-service/academic.service.mjs +55 -55
  56. package/esm2020/lib/core/services/activity-service/activity.service.mjs +87 -87
  57. package/esm2020/lib/core/services/attendance-service/attendance.service.mjs +64 -64
  58. package/esm2020/lib/core/services/budget-service/budget-service.mjs +66 -66
  59. package/esm2020/lib/core/services/calendar-service/calendar.service.mjs +65 -60
  60. package/esm2020/lib/core/services/certificate-service/certificate.service.mjs +26 -26
  61. package/esm2020/lib/core/services/classroom-service/classroom-service.service.mjs +36 -36
  62. package/esm2020/lib/core/services/commercial-service/comercial.service.mjs +49 -49
  63. package/esm2020/lib/core/services/commercial-service/validators.mjs +4 -4
  64. package/esm2020/lib/core/services/copies.service.mjs +17 -17
  65. package/esm2020/lib/core/services/course-service/course-service.model.mjs +70 -70
  66. package/esm2020/lib/core/services/ekt-service/userekt.service.mjs +29 -29
  67. package/esm2020/lib/core/services/marketing-service/marketing-service.mjs +52 -52
  68. package/esm2020/lib/core/services/notes-service/notes.service.mjs +46 -46
  69. package/esm2020/lib/core/services/parameters-service/parameters.service.mjs +173 -173
  70. package/esm2020/lib/core/services/service-enviroments.mjs +26 -26
  71. package/esm2020/lib/core/services/storage-service/storage-service.mjs +50 -50
  72. package/esm2020/lib/core/services/student-service/student.service.mjs +26 -26
  73. package/esm2020/lib/core/services/switch-service/switch.service.mjs +16 -16
  74. package/esm2020/lib/core/services/test-service/test.service.mjs +128 -131
  75. package/esm2020/lib/core/services/user-service/user-service.mjs +100 -100
  76. package/esm2020/lib/core/utils/base-service/base.service.mjs +191 -186
  77. package/esm2020/lib/core/utils/copies.mjs +214 -214
  78. package/esm2020/lib/core/utils/route-service/route.service.mjs +18 -18
  79. package/esm2020/lib/design-system.module.mjs +40 -40
  80. package/esm2020/public-api.mjs +88 -88
  81. package/fesm2015/iptdevs-design-system.mjs +4248 -4241
  82. package/fesm2015/iptdevs-design-system.mjs.map +1 -1
  83. package/fesm2020/iptdevs-design-system.mjs +4245 -4238
  84. package/fesm2020/iptdevs-design-system.mjs.map +1 -1
  85. package/iptdevs-design-system.d.ts +5 -5
  86. package/lib/cod/cod-documents-section/cod-documents-section.component.d.ts +8 -8
  87. package/lib/cod/cod-form/cod-form.component.d.ts +37 -37
  88. package/lib/cod/cod.module.d.ts +21 -21
  89. package/lib/cod/logic/calculate-quotes.service.d.ts +14 -14
  90. package/lib/cod/logic/cod-form-controls.d.ts +16 -16
  91. package/lib/cod/logic/cod-form-steps.d.ts +15 -15
  92. package/lib/cod/logic/communicator.service.d.ts +13 -13
  93. package/lib/cod/logic/local-storage-cod.service.d.ts +8 -8
  94. package/lib/cod/steps/cod-form-step-five/cod-form-step-five.component.d.ts +31 -31
  95. package/lib/cod/steps/cod-form-step-four/cod-form-step-four.component.d.ts +47 -47
  96. package/lib/cod/steps/cod-form-step-one/cod-form-step-one.component.d.ts +46 -46
  97. package/lib/cod/steps/cod-form-step-three/cod-form-step-three.component.d.ts +35 -35
  98. package/lib/cod/steps/cod-form-step-two/cod-form-step-two.component.d.ts +44 -44
  99. package/lib/components/atoms/aside-button/aside-button.component.d.ts +11 -11
  100. package/lib/components/atoms/button/button.component.d.ts +13 -13
  101. package/lib/components/atoms/checkbox/checkbox.component.d.ts +11 -11
  102. package/lib/components/atoms/datalist/datalist.component.d.ts +20 -20
  103. package/lib/components/atoms/input/input.component.d.ts +26 -26
  104. package/lib/components/atoms/level-button/level-button.component.d.ts +11 -11
  105. package/lib/components/atoms/level-text/level-text.component.d.ts +7 -7
  106. package/lib/components/atoms/loader/loader.component.d.ts +7 -7
  107. package/lib/components/atoms/radio/radio.component.d.ts +11 -11
  108. package/lib/components/atoms/select/select.component.d.ts +26 -26
  109. package/lib/components/atoms/text-link/text-link.component.d.ts +12 -12
  110. package/lib/components/components.module.d.ts +24 -24
  111. package/lib/components/forms/create-user-form/create-user-form.component.d.ts +36 -36
  112. package/lib/components/forms/login-form/login-form.component.d.ts +13 -13
  113. package/lib/components/material.module.d.ts +11 -11
  114. package/lib/components/molecules/sidenav/sidenav.component.d.ts +25 -25
  115. package/lib/core/core.module.d.ts +6 -6
  116. package/lib/core/models/academic/academic.component.d.ts +26 -26
  117. package/lib/core/models/activities/activities.interface.d.ts +12 -12
  118. package/lib/core/models/attendance/attendance.interface.d.ts +62 -62
  119. package/lib/core/models/budget/budget.model.d.ts +69 -69
  120. package/lib/core/models/calendar/calendar-rq.models.d.ts +27 -27
  121. package/lib/core/models/classroom/classroom-rq.model.d.ts +23 -23
  122. package/lib/core/models/cod/cod-rq.model.d.ts +168 -168
  123. package/lib/core/models/commercial/commercial.model.d.ts +10 -10
  124. package/lib/core/models/course/course-rq.model.d.ts +86 -86
  125. package/lib/core/models/course/courses.model.d.ts +18 -18
  126. package/lib/core/models/cronogram/cronogram.models.d.ts +183 -183
  127. package/lib/core/models/marketing/marketing.model.d.ts +104 -104
  128. package/lib/core/models/notes/notes.interface.d.ts +89 -89
  129. package/lib/core/models/payment/payment-rq.model.d.ts +212 -212
  130. package/lib/core/models/response/response.interface.d.ts +10 -10
  131. package/lib/core/models/session/session.model.d.ts +5 -5
  132. package/lib/core/models/student/student.interface.d.ts +4 -4
  133. package/lib/core/models/table/table-rs.model.d.ts +7 -7
  134. package/lib/core/models/test/test.model.d.ts +219 -219
  135. package/lib/core/models/url/url.model.d.ts +8 -8
  136. package/lib/core/models/user/user-rq.model.d.ts +90 -90
  137. package/lib/core/models/user/user-rs.model.d.ts +35 -35
  138. package/lib/core/services/academic-service/academic.service.d.ts +20 -20
  139. package/lib/core/services/activity-service/activity.service.d.ts +25 -25
  140. package/lib/core/services/attendance-service/attendance.service.d.ts +22 -22
  141. package/lib/core/services/budget-service/budget-service.d.ts +23 -23
  142. package/lib/core/services/calendar-service/calendar.service.d.ts +23 -22
  143. package/lib/core/services/certificate-service/certificate.service.d.ts +13 -13
  144. package/lib/core/services/classroom-service/classroom-service.service.d.ts +15 -15
  145. package/lib/core/services/commercial-service/comercial.service.d.ts +19 -19
  146. package/lib/core/services/commercial-service/validators.d.ts +2 -2
  147. package/lib/core/services/copies.service.d.ts +7 -7
  148. package/lib/core/services/course-service/course-service.model.d.ts +23 -23
  149. package/lib/core/services/ekt-service/userekt.service.d.ts +13 -13
  150. package/lib/core/services/marketing-service/marketing-service.d.ts +19 -19
  151. package/lib/core/services/notes-service/notes.service.d.ts +18 -18
  152. package/lib/core/services/parameters-service/parameters.service.d.ts +49 -49
  153. package/lib/core/services/service-enviroments.d.ts +5 -5
  154. package/lib/core/services/storage-service/storage-service.d.ts +18 -18
  155. package/lib/core/services/student-service/student.service.d.ts +13 -13
  156. package/lib/core/services/switch-service/switch.service.d.ts +8 -8
  157. package/lib/core/services/test-service/test.service.d.ts +33 -34
  158. package/lib/core/services/user-service/user-service.d.ts +30 -30
  159. package/lib/core/utils/base-service/base.service.d.ts +23 -22
  160. package/lib/core/utils/copies.d.ts +1 -1
  161. package/lib/core/utils/route-service/route.service.d.ts +9 -9
  162. package/lib/design-system.module.d.ts +10 -10
  163. package/package.json +1 -1
  164. package/public-api.d.ts +75 -75
@@ -1,5 +1,5 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- /// <amd-module name="iptdevs-design-system" />
5
- export * from './public-api';
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="iptdevs-design-system" />
5
+ export * from './public-api';
@@ -1,8 +1,8 @@
1
- import { OnInit } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class CodDocumentsSectionComponent implements OnInit {
4
- constructor();
5
- ngOnInit(): void;
6
- static ɵfac: i0.ɵɵFactoryDeclaration<CodDocumentsSectionComponent, never>;
7
- static ɵcmp: i0.ɵɵComponentDeclaration<CodDocumentsSectionComponent, "ipt-cod-documents-section", never, {}, {}, never, never>;
8
- }
1
+ import { OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class CodDocumentsSectionComponent implements OnInit {
4
+ constructor();
5
+ ngOnInit(): void;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<CodDocumentsSectionComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<CodDocumentsSectionComponent, "ipt-cod-documents-section", never, {}, {}, never, never>;
8
+ }
@@ -1,37 +1,37 @@
1
- import { OnChanges, SimpleChanges } from '@angular/core';
2
- import { Subscription } from 'rxjs';
3
- import { CreateCODRq } from '../../core/models/cod/cod-rq.model';
4
- import { CommercialService } from '../../core/services/commercial-service/comercial.service';
5
- import { BaseService } from '../../core/utils/base-service/base.service';
6
- import { CodFormControls } from '../logic/cod-form-controls';
7
- import { LocalStorageCODService } from '../logic/local-storage-cod.service';
8
- import * as i0 from "@angular/core";
9
- export declare class CodFormComponent implements OnChanges {
10
- private baseService;
11
- private localStorageCOD;
12
- private codFormControls;
13
- private commercialService;
14
- dataFromPreviusCodData?: any;
15
- codCode?: number;
16
- subscription?: Subscription;
17
- private allowedRoles;
18
- currentStep: number;
19
- formTitle: string;
20
- userRole: number;
21
- formSteps: number;
22
- financingData?: any[];
23
- isLoading: boolean;
24
- loaderMessage: string;
25
- constructor(baseService: BaseService, localStorageCOD: LocalStorageCODService, codFormControls: CodFormControls, commercialService: CommercialService);
26
- ngOnChanges(changes: SimpleChanges): void;
27
- allowedRole(): boolean;
28
- getCodbyCode(): void;
29
- saveFinancingData(data: any[]): void;
30
- getFormAction(action: string): void;
31
- updateCOD(totalData: any[]): void;
32
- createCOD(totalData: any[]): void;
33
- getCreateCODRq(data: any[]): CreateCODRq;
34
- changeStep(step: number): void;
35
- static ɵfac: i0.ɵɵFactoryDeclaration<CodFormComponent, never>;
36
- static ɵcmp: i0.ɵɵComponentDeclaration<CodFormComponent, "ipt-cod-form", never, { "dataFromPreviusCodData": "dataFromPreviusCodData"; "codCode": "codCode"; }, {}, never, never>;
37
- }
1
+ import { OnChanges, SimpleChanges } from '@angular/core';
2
+ import { Subscription } from 'rxjs';
3
+ import { CreateCODRq } from '../../core/models/cod/cod-rq.model';
4
+ import { CommercialService } from '../../core/services/commercial-service/comercial.service';
5
+ import { BaseService } from '../../core/utils/base-service/base.service';
6
+ import { CodFormControls } from '../logic/cod-form-controls';
7
+ import { LocalStorageCODService } from '../logic/local-storage-cod.service';
8
+ import * as i0 from "@angular/core";
9
+ export declare class CodFormComponent implements OnChanges {
10
+ private baseService;
11
+ private localStorageCOD;
12
+ private codFormControls;
13
+ private commercialService;
14
+ dataFromPreviusCodData?: any;
15
+ codCode?: number;
16
+ subscription?: Subscription;
17
+ private allowedRoles;
18
+ currentStep: number;
19
+ formTitle: string;
20
+ userRole: number;
21
+ formSteps: number;
22
+ financingData?: any[];
23
+ isLoading: boolean;
24
+ loaderMessage: string;
25
+ constructor(baseService: BaseService, localStorageCOD: LocalStorageCODService, codFormControls: CodFormControls, commercialService: CommercialService);
26
+ ngOnChanges(changes: SimpleChanges): void;
27
+ allowedRole(): boolean;
28
+ getCodbyCode(): void;
29
+ saveFinancingData(data: any[]): void;
30
+ getFormAction(action: string): void;
31
+ updateCOD(totalData: any[]): void;
32
+ createCOD(totalData: any[]): void;
33
+ getCreateCODRq(data: any[]): CreateCODRq;
34
+ changeStep(step: number): void;
35
+ static ɵfac: i0.ɵɵFactoryDeclaration<CodFormComponent, never>;
36
+ static ɵcmp: i0.ɵɵComponentDeclaration<CodFormComponent, "ipt-cod-form", never, { "dataFromPreviusCodData": "dataFromPreviusCodData"; "codCode": "codCode"; }, {}, never, never>;
37
+ }
@@ -1,21 +1,21 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./cod-form/cod-form.component";
3
- import * as i2 from "./cod-documents-section/cod-documents-section.component";
4
- import * as i3 from "./steps/cod-form-step-one/cod-form-step-one.component";
5
- import * as i4 from "./steps/cod-form-step-two/cod-form-step-two.component";
6
- import * as i5 from "./steps/cod-form-step-three/cod-form-step-three.component";
7
- import * as i6 from "./steps/cod-form-step-four/cod-form-step-four.component";
8
- import * as i7 from "./steps/cod-form-step-five/cod-form-step-five.component";
9
- import * as i8 from "@angular/common";
10
- import * as i9 from "primeng/tabview";
11
- import * as i10 from "../components/components.module";
12
- import * as i11 from "@angular/material/checkbox";
13
- import * as i12 from "@angular/forms";
14
- import * as i13 from "primeng/table";
15
- import * as i14 from "primeng/button";
16
- import * as i15 from "primeng/inputtextarea";
17
- export declare class CodModule {
18
- static ɵfac: i0.ɵɵFactoryDeclaration<CodModule, never>;
19
- static ɵmod: i0.ɵɵNgModuleDeclaration<CodModule, [typeof i1.CodFormComponent, typeof i2.CodDocumentsSectionComponent, typeof i3.CodFormStepOneComponent, typeof i4.CodFormStepTwoComponent, typeof i5.CodFormStepThreeComponent, typeof i6.CodFormStepFourComponent, typeof i7.CodFormStepFiveComponent], [typeof i8.CommonModule, typeof i9.TabViewModule, typeof i10.ComponentsModule, typeof i11.MatCheckboxModule, typeof i12.ReactiveFormsModule, typeof i13.TableModule, typeof i14.ButtonModule, typeof i15.InputTextareaModule], [typeof i1.CodFormComponent, typeof i2.CodDocumentsSectionComponent, typeof i3.CodFormStepOneComponent, typeof i4.CodFormStepTwoComponent, typeof i5.CodFormStepThreeComponent, typeof i6.CodFormStepFourComponent, typeof i7.CodFormStepFiveComponent]>;
20
- static ɵinj: i0.ɵɵInjectorDeclaration<CodModule>;
21
- }
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./cod-form/cod-form.component";
3
+ import * as i2 from "./cod-documents-section/cod-documents-section.component";
4
+ import * as i3 from "./steps/cod-form-step-one/cod-form-step-one.component";
5
+ import * as i4 from "./steps/cod-form-step-two/cod-form-step-two.component";
6
+ import * as i5 from "./steps/cod-form-step-three/cod-form-step-three.component";
7
+ import * as i6 from "./steps/cod-form-step-four/cod-form-step-four.component";
8
+ import * as i7 from "./steps/cod-form-step-five/cod-form-step-five.component";
9
+ import * as i8 from "@angular/common";
10
+ import * as i9 from "primeng/tabview";
11
+ import * as i10 from "../components/components.module";
12
+ import * as i11 from "@angular/material/checkbox";
13
+ import * as i12 from "@angular/forms";
14
+ import * as i13 from "primeng/table";
15
+ import * as i14 from "primeng/button";
16
+ import * as i15 from "primeng/inputtextarea";
17
+ export declare class CodModule {
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<CodModule, never>;
19
+ static ɵmod: i0.ɵɵNgModuleDeclaration<CodModule, [typeof i1.CodFormComponent, typeof i2.CodDocumentsSectionComponent, typeof i3.CodFormStepOneComponent, typeof i4.CodFormStepTwoComponent, typeof i5.CodFormStepThreeComponent, typeof i6.CodFormStepFourComponent, typeof i7.CodFormStepFiveComponent], [typeof i8.CommonModule, typeof i9.TabViewModule, typeof i10.ComponentsModule, typeof i11.MatCheckboxModule, typeof i12.ReactiveFormsModule, typeof i13.TableModule, typeof i14.ButtonModule, typeof i15.InputTextareaModule], [typeof i1.CodFormComponent, typeof i2.CodDocumentsSectionComponent, typeof i3.CodFormStepOneComponent, typeof i4.CodFormStepTwoComponent, typeof i5.CodFormStepThreeComponent, typeof i6.CodFormStepFourComponent, typeof i7.CodFormStepFiveComponent]>;
20
+ static ɵinj: i0.ɵɵInjectorDeclaration<CodModule>;
21
+ }
@@ -1,14 +1,14 @@
1
- import * as i0 from "@angular/core";
2
- export interface CalculateQuotesParams {
3
- date: Date;
4
- quotaValues: number;
5
- quotaTimes: any;
6
- totalPrice: any;
7
- }
8
- export declare class CalculateQuotesService {
9
- constructor();
10
- calculateQuotes(params: CalculateQuotesParams): any[];
11
- validateSunday(date: Date): boolean;
12
- static ɵfac: i0.ɵɵFactoryDeclaration<CalculateQuotesService, never>;
13
- static ɵprov: i0.ɵɵInjectableDeclaration<CalculateQuotesService>;
14
- }
1
+ import * as i0 from "@angular/core";
2
+ export interface CalculateQuotesParams {
3
+ date: Date;
4
+ quotaValues: number;
5
+ quotaTimes: any;
6
+ totalPrice: any;
7
+ }
8
+ export declare class CalculateQuotesService {
9
+ constructor();
10
+ calculateQuotes(params: CalculateQuotesParams): any[];
11
+ validateSunday(date: Date): boolean;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<CalculateQuotesService, never>;
13
+ static ɵprov: i0.ɵɵInjectableDeclaration<CalculateQuotesService>;
14
+ }
@@ -1,16 +1,16 @@
1
- import { Observable } from "rxjs";
2
- import * as i0 from "@angular/core";
3
- export interface Control {
4
- name: string;
5
- required: boolean;
6
- description: string;
7
- }
8
- export declare class CodFormControls {
9
- controls: Array<Control[]>;
10
- private $controls;
11
- constructor();
12
- getControlValues(): Observable<Array<Control[]>>;
13
- changeValue(step: number, controlName: string, newValue: any): void;
14
- static ɵfac: i0.ɵɵFactoryDeclaration<CodFormControls, never>;
15
- static ɵprov: i0.ɵɵInjectableDeclaration<CodFormControls>;
16
- }
1
+ import { Observable } from "rxjs";
2
+ import * as i0 from "@angular/core";
3
+ export interface Control {
4
+ name: string;
5
+ required: boolean;
6
+ description: string;
7
+ }
8
+ export declare class CodFormControls {
9
+ controls: Array<Control[]>;
10
+ private $controls;
11
+ constructor();
12
+ getControlValues(): Observable<Array<Control[]>>;
13
+ changeValue(step: number, controlName: string, newValue: any): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<CodFormControls, never>;
15
+ static ɵprov: i0.ɵɵInjectableDeclaration<CodFormControls>;
16
+ }
@@ -1,15 +1,15 @@
1
- import { Observable } from "rxjs";
2
- import { Control } from "./cod-form-controls";
3
- import { LocalStorageCODService } from "./local-storage-cod.service";
4
- export interface localStorageValues {
5
- control: string;
6
- value: any;
7
- }
8
- export declare abstract class CodFormSteps {
9
- localStorageCOD: LocalStorageCODService;
10
- constructor();
11
- readAndWriteLS(step: number, control: string): localStorageValues;
12
- setDataInLocalStorage(step: number, control: string, value: any): void;
13
- listenFormChanges(step: number, control: string, obs: Observable<any>): void;
14
- resetLocalStorage(controls: Control[]): void;
15
- }
1
+ import { Observable } from "rxjs";
2
+ import { Control } from "./cod-form-controls";
3
+ import { LocalStorageCODService } from "./local-storage-cod.service";
4
+ export interface localStorageValues {
5
+ control: string;
6
+ value: any;
7
+ }
8
+ export declare abstract class CodFormSteps {
9
+ localStorageCOD: LocalStorageCODService;
10
+ constructor();
11
+ readAndWriteLS(step: number, control: string): localStorageValues;
12
+ setDataInLocalStorage(step: number, control: string, value: any): void;
13
+ listenFormChanges(step: number, control: string, obs: Observable<any>): void;
14
+ resetLocalStorage(controls: Control[]): void;
15
+ }
@@ -1,13 +1,13 @@
1
- import { Observable } from 'rxjs';
2
- import * as i0 from "@angular/core";
3
- export declare class CommunicatorService {
4
- private $courseType;
5
- private $agreement;
6
- constructor();
7
- getSelectedCourseType(): Observable<string>;
8
- setCurrentCourseType(value: string): void;
9
- getSelectedAgreement(): Observable<string>;
10
- setCurrentAgreement(value: string): void;
11
- static ɵfac: i0.ɵɵFactoryDeclaration<CommunicatorService, never>;
12
- static ɵprov: i0.ɵɵInjectableDeclaration<CommunicatorService>;
13
- }
1
+ import { Observable } from 'rxjs';
2
+ import * as i0 from "@angular/core";
3
+ export declare class CommunicatorService {
4
+ private $courseType;
5
+ private $agreement;
6
+ constructor();
7
+ getSelectedCourseType(): Observable<string>;
8
+ setCurrentCourseType(value: string): void;
9
+ getSelectedAgreement(): Observable<string>;
10
+ setCurrentAgreement(value: string): void;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<CommunicatorService, never>;
12
+ static ɵprov: i0.ɵɵInjectableDeclaration<CommunicatorService>;
13
+ }
@@ -1,8 +1,8 @@
1
- import * as i0 from "@angular/core";
2
- export declare class LocalStorageCODService {
3
- constructor();
4
- getCodFormData(step: number, control: string): string | null;
5
- setCodFormData(step: number, control: string, value: string): void;
6
- static ɵfac: i0.ɵɵFactoryDeclaration<LocalStorageCODService, never>;
7
- static ɵprov: i0.ɵɵInjectableDeclaration<LocalStorageCODService>;
8
- }
1
+ import * as i0 from "@angular/core";
2
+ export declare class LocalStorageCODService {
3
+ constructor();
4
+ getCodFormData(step: number, control: string): string | null;
5
+ setCodFormData(step: number, control: string, value: string): void;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<LocalStorageCODService, never>;
7
+ static ɵprov: i0.ɵɵInjectableDeclaration<LocalStorageCODService>;
8
+ }
@@ -1,31 +1,31 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
2
- import { FormBuilder, FormControl, FormGroup } from '@angular/forms';
3
- import { ParameterService } from '../../../core/services/parameters-service/parameters.service';
4
- import { CodFormSteps } from '../../logic/cod-form-steps';
5
- import * as i0 from "@angular/core";
6
- export declare class CodFormStepFiveComponent extends CodFormSteps implements OnInit {
7
- private fb;
8
- private parameterService;
9
- userRole: number;
10
- changeStepEvent: EventEmitter<number>;
11
- action: EventEmitter<string>;
12
- codFormStepFive: FormGroup;
13
- marketingReasons: any;
14
- studyReasons: any;
15
- errorMessage: string;
16
- sendFormMsg: string;
17
- termsCheckboxStatus: boolean;
18
- multiculturalities: any;
19
- controls: import("../../logic/cod-form-controls").Control[];
20
- constructor(fb: FormBuilder, parameterService: ParameterService);
21
- ngOnInit(): void;
22
- getParameters(): void;
23
- initForm(): void;
24
- startLocalStorageWork(): void;
25
- getCheckboxControl(): FormControl;
26
- sendForm(): void;
27
- selectMarketingReasons(marketingReasons: any): void;
28
- selectStudyReasons(studyReasons: any): void;
29
- static ɵfac: i0.ɵɵFactoryDeclaration<CodFormStepFiveComponent, never>;
30
- static ɵcmp: i0.ɵɵComponentDeclaration<CodFormStepFiveComponent, "app-cod-form-step-five", never, { "userRole": "userRole"; }, { "changeStepEvent": "changeStepEvent"; "action": "action"; }, never, never>;
31
- }
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { FormBuilder, FormControl, FormGroup } from '@angular/forms';
3
+ import { ParameterService } from '../../../core/services/parameters-service/parameters.service';
4
+ import { CodFormSteps } from '../../logic/cod-form-steps';
5
+ import * as i0 from "@angular/core";
6
+ export declare class CodFormStepFiveComponent extends CodFormSteps implements OnInit {
7
+ private fb;
8
+ private parameterService;
9
+ userRole: number;
10
+ changeStepEvent: EventEmitter<number>;
11
+ action: EventEmitter<string>;
12
+ codFormStepFive: FormGroup;
13
+ marketingReasons: any;
14
+ studyReasons: any;
15
+ errorMessage: string;
16
+ sendFormMsg: string;
17
+ termsCheckboxStatus: boolean;
18
+ multiculturalities: any;
19
+ controls: import("../../logic/cod-form-controls").Control[];
20
+ constructor(fb: FormBuilder, parameterService: ParameterService);
21
+ ngOnInit(): void;
22
+ getParameters(): void;
23
+ initForm(): void;
24
+ startLocalStorageWork(): void;
25
+ getCheckboxControl(): FormControl;
26
+ sendForm(): void;
27
+ selectMarketingReasons(marketingReasons: any): void;
28
+ selectStudyReasons(studyReasons: any): void;
29
+ static ɵfac: i0.ɵɵFactoryDeclaration<CodFormStepFiveComponent, never>;
30
+ static ɵcmp: i0.ɵɵComponentDeclaration<CodFormStepFiveComponent, "app-cod-form-step-five", never, { "userRole": "userRole"; }, { "changeStepEvent": "changeStepEvent"; "action": "action"; }, never, never>;
31
+ }
@@ -1,47 +1,47 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
2
- import { FormGroup, FormBuilder } from '@angular/forms';
3
- import { CodFormSteps } from '../../logic/cod-form-steps';
4
- import { CodFormControls } from '../../logic/cod-form-controls';
5
- import { CalculateQuotesService } from '../../logic/calculate-quotes.service';
6
- import { CommunicatorService } from '../../logic/communicator.service';
7
- import { CodPrices } from '../../../core/models/commercial/commercial.model';
8
- import { ParameterService } from '../../../core/services/parameters-service/parameters.service';
9
- import { CommercialService } from '../../../core/services/commercial-service/comercial.service';
10
- import * as i0 from "@angular/core";
11
- export declare class CodFormStepFourComponent extends CodFormSteps implements OnInit {
12
- private fb;
13
- private calculateQuotesService;
14
- private communicatorService;
15
- private parameterService;
16
- private codFormControls;
17
- private commercialService;
18
- changeStepEvent: EventEmitter<number>;
19
- financingData: EventEmitter<any>;
20
- codFormStepFour: FormGroup;
21
- isCalculateQuotesButtonClicked: boolean;
22
- errorMessage: string;
23
- paymentMethods: any[];
24
- dataFinancing: any[];
25
- isFinancing: boolean;
26
- isSemestral: boolean;
27
- codPrices: CodPrices[];
28
- controls: import("../../logic/cod-form-controls").Control[];
29
- constructor(fb: FormBuilder, calculateQuotesService: CalculateQuotesService, communicatorService: CommunicatorService, parameterService: ParameterService, codFormControls: CodFormControls, commercialService: CommercialService);
30
- ngOnInit(): void;
31
- getValuesOfStepOneComponent(): void;
32
- getCodPricesByAgreement(agreement?: string): void;
33
- validateErrors(): void;
34
- initForm(): void;
35
- listenPaymentMethodField(): void;
36
- updateGlobalControls(change: string): void;
37
- updateValueAndValidity(): void;
38
- startLocalStorageWork(): void;
39
- showTable(): void;
40
- calculateNewQuotes(): void;
41
- sendForm(): void;
42
- isFinanced(): boolean;
43
- selectPaymentMethod(paymentMethod: any): void;
44
- selectQuotas(quotas: string): void;
45
- static ɵfac: i0.ɵɵFactoryDeclaration<CodFormStepFourComponent, never>;
46
- static ɵcmp: i0.ɵɵComponentDeclaration<CodFormStepFourComponent, "app-cod-form-step-four", never, {}, { "changeStepEvent": "changeStepEvent"; "financingData": "financingData"; }, never, never>;
47
- }
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { FormGroup, FormBuilder } from '@angular/forms';
3
+ import { CodFormSteps } from '../../logic/cod-form-steps';
4
+ import { CodFormControls } from '../../logic/cod-form-controls';
5
+ import { CalculateQuotesService } from '../../logic/calculate-quotes.service';
6
+ import { CommunicatorService } from '../../logic/communicator.service';
7
+ import { CodPrices } from '../../../core/models/commercial/commercial.model';
8
+ import { ParameterService } from '../../../core/services/parameters-service/parameters.service';
9
+ import { CommercialService } from '../../../core/services/commercial-service/comercial.service';
10
+ import * as i0 from "@angular/core";
11
+ export declare class CodFormStepFourComponent extends CodFormSteps implements OnInit {
12
+ private fb;
13
+ private calculateQuotesService;
14
+ private communicatorService;
15
+ private parameterService;
16
+ private codFormControls;
17
+ private commercialService;
18
+ changeStepEvent: EventEmitter<number>;
19
+ financingData: EventEmitter<any>;
20
+ codFormStepFour: FormGroup;
21
+ isCalculateQuotesButtonClicked: boolean;
22
+ errorMessage: string;
23
+ paymentMethods: any[];
24
+ dataFinancing: any[];
25
+ isFinancing: boolean;
26
+ isSemestral: boolean;
27
+ codPrices: CodPrices[];
28
+ controls: import("../../logic/cod-form-controls").Control[];
29
+ constructor(fb: FormBuilder, calculateQuotesService: CalculateQuotesService, communicatorService: CommunicatorService, parameterService: ParameterService, codFormControls: CodFormControls, commercialService: CommercialService);
30
+ ngOnInit(): void;
31
+ getValuesOfStepOneComponent(): void;
32
+ getCodPricesByAgreement(agreement?: string): void;
33
+ validateErrors(): void;
34
+ initForm(): void;
35
+ listenPaymentMethodField(): void;
36
+ updateGlobalControls(change: string): void;
37
+ updateValueAndValidity(): void;
38
+ startLocalStorageWork(): void;
39
+ showTable(): void;
40
+ calculateNewQuotes(): void;
41
+ sendForm(): void;
42
+ isFinanced(): boolean;
43
+ selectPaymentMethod(paymentMethod: any): void;
44
+ selectQuotas(quotas: string): void;
45
+ static ɵfac: i0.ɵɵFactoryDeclaration<CodFormStepFourComponent, never>;
46
+ static ɵcmp: i0.ɵɵComponentDeclaration<CodFormStepFourComponent, "app-cod-form-step-four", never, {}, { "changeStepEvent": "changeStepEvent"; "financingData": "financingData"; }, never, never>;
47
+ }
@@ -1,46 +1,46 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
2
- import { FormBuilder, FormGroup } from '@angular/forms';
3
- import { CopiesService } from '../../../core/services/copies.service';
4
- import { CourseService } from '../../../core/services/course-service/course-service.model';
5
- import { ParameterService } from '../../../core/services/parameters-service/parameters.service';
6
- import { BaseService } from '../../../core/utils/base-service/base.service';
7
- import { CodFormSteps } from '../../logic/cod-form-steps';
8
- import { CommunicatorService } from '../../logic/communicator.service';
9
- import * as i0 from "@angular/core";
10
- export declare class CodFormStepOneComponent extends CodFormSteps implements OnInit {
11
- private fb;
12
- private parameterService;
13
- private copiesService;
14
- private baseService;
15
- private courseService;
16
- private communicatorService;
17
- changeStepEvent: EventEmitter<number>;
18
- copies: any;
19
- codFormStepOne: FormGroup;
20
- hasAvailableCourse: boolean;
21
- agreements: any;
22
- availibleCourses: any[];
23
- course_type: any;
24
- levels: any;
25
- plans: any;
26
- controls: import("../../logic/cod-form-controls").Control[];
27
- constructor(fb: FormBuilder, parameterService: ParameterService, copiesService: CopiesService, baseService: BaseService, courseService: CourseService, communicatorService: CommunicatorService);
28
- ngOnInit(): void;
29
- startLocalStorageWork(): void;
30
- getParameters(): void;
31
- initForm(): void;
32
- setValuesByLocalStorage(): void;
33
- sendForm(): void;
34
- resetForm(): void;
35
- selectAcademicPlan(academic_plan: any): void;
36
- getCourseType(plan: number): void;
37
- getAgreementByPlan(plan: number): void;
38
- selectCoursesTypesByPlan(coursesTypes: any): void;
39
- selectAgreementByCategory(agreementByCategories: any): void;
40
- selectLevel(levels: any): void;
41
- selectAvailibleCourses(availibleCourses: any): void;
42
- private validRequest;
43
- getAvailibleCourses(): void;
44
- static ɵfac: i0.ɵɵFactoryDeclaration<CodFormStepOneComponent, never>;
45
- static ɵcmp: i0.ɵɵComponentDeclaration<CodFormStepOneComponent, "app-cod-form-step-one", never, {}, { "changeStepEvent": "changeStepEvent"; }, never, never>;
46
- }
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { FormBuilder, FormGroup } from '@angular/forms';
3
+ import { CopiesService } from '../../../core/services/copies.service';
4
+ import { CourseService } from '../../../core/services/course-service/course-service.model';
5
+ import { ParameterService } from '../../../core/services/parameters-service/parameters.service';
6
+ import { BaseService } from '../../../core/utils/base-service/base.service';
7
+ import { CodFormSteps } from '../../logic/cod-form-steps';
8
+ import { CommunicatorService } from '../../logic/communicator.service';
9
+ import * as i0 from "@angular/core";
10
+ export declare class CodFormStepOneComponent extends CodFormSteps implements OnInit {
11
+ private fb;
12
+ private parameterService;
13
+ private copiesService;
14
+ private baseService;
15
+ private courseService;
16
+ private communicatorService;
17
+ changeStepEvent: EventEmitter<number>;
18
+ copies: any;
19
+ codFormStepOne: FormGroup;
20
+ hasAvailableCourse: boolean;
21
+ agreements: any;
22
+ availibleCourses: any[];
23
+ course_type: any;
24
+ levels: any;
25
+ plans: any;
26
+ controls: import("../../logic/cod-form-controls").Control[];
27
+ constructor(fb: FormBuilder, parameterService: ParameterService, copiesService: CopiesService, baseService: BaseService, courseService: CourseService, communicatorService: CommunicatorService);
28
+ ngOnInit(): void;
29
+ startLocalStorageWork(): void;
30
+ getParameters(): void;
31
+ initForm(): void;
32
+ setValuesByLocalStorage(): void;
33
+ sendForm(): void;
34
+ resetForm(): void;
35
+ selectAcademicPlan(academic_plan: any): void;
36
+ getCourseType(plan: number): void;
37
+ getAgreementByPlan(plan: number): void;
38
+ selectCoursesTypesByPlan(coursesTypes: any): void;
39
+ selectAgreementByCategory(agreementByCategories: any): void;
40
+ selectLevel(levels: any): void;
41
+ selectAvailibleCourses(availibleCourses: any): void;
42
+ private validRequest;
43
+ getAvailibleCourses(): void;
44
+ static ɵfac: i0.ɵɵFactoryDeclaration<CodFormStepOneComponent, never>;
45
+ static ɵcmp: i0.ɵɵComponentDeclaration<CodFormStepOneComponent, "app-cod-form-step-one", never, {}, { "changeStepEvent": "changeStepEvent"; }, never, never>;
46
+ }
@@ -1,35 +1,35 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
2
- import { FormGroup, FormBuilder } from '@angular/forms';
3
- import { ParameterService } from '../../../core/services/parameters-service/parameters.service';
4
- import { CodFormControls } from '../../logic/cod-form-controls';
5
- import { CodFormSteps } from '../../logic/cod-form-steps';
6
- import * as i0 from "@angular/core";
7
- export declare class CodFormStepThreeComponent extends CodFormSteps implements OnInit {
8
- private fb;
9
- private parameterService;
10
- private codFormControls;
11
- changeStepEvent: EventEmitter<number>;
12
- globalControls: CodFormControls;
13
- idTypes: any;
14
- indicatives: any;
15
- codFormStepThree: FormGroup;
16
- errorMessage: string;
17
- needAtendants: any[];
18
- controls: import("../../logic/cod-form-controls").Control[];
19
- constructor(fb: FormBuilder, parameterService: ParameterService, codFormControls: CodFormControls);
20
- ngOnInit(): void;
21
- validateErrors(): void;
22
- startLocalStorageWork(): void;
23
- getParameters(): void;
24
- initForm(): void;
25
- listenNeedAtendantField(): void;
26
- updateGlobalControls(change: string): void;
27
- updateValueAndValidity(): void;
28
- needAtendant(): boolean;
29
- sendForm(): void;
30
- selectNeedAtendant(needAtendant: any): void;
31
- selectIdTypeParents(value: string): void;
32
- selectIndicativesParents(value: string): void;
33
- static ɵfac: i0.ɵɵFactoryDeclaration<CodFormStepThreeComponent, never>;
34
- static ɵcmp: i0.ɵɵComponentDeclaration<CodFormStepThreeComponent, "app-cod-form-step-three", never, {}, { "changeStepEvent": "changeStepEvent"; }, never, never>;
35
- }
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { FormGroup, FormBuilder } from '@angular/forms';
3
+ import { ParameterService } from '../../../core/services/parameters-service/parameters.service';
4
+ import { CodFormControls } from '../../logic/cod-form-controls';
5
+ import { CodFormSteps } from '../../logic/cod-form-steps';
6
+ import * as i0 from "@angular/core";
7
+ export declare class CodFormStepThreeComponent extends CodFormSteps implements OnInit {
8
+ private fb;
9
+ private parameterService;
10
+ private codFormControls;
11
+ changeStepEvent: EventEmitter<number>;
12
+ globalControls: CodFormControls;
13
+ idTypes: any;
14
+ indicatives: any;
15
+ codFormStepThree: FormGroup;
16
+ errorMessage: string;
17
+ needAtendants: any[];
18
+ controls: import("../../logic/cod-form-controls").Control[];
19
+ constructor(fb: FormBuilder, parameterService: ParameterService, codFormControls: CodFormControls);
20
+ ngOnInit(): void;
21
+ validateErrors(): void;
22
+ startLocalStorageWork(): void;
23
+ getParameters(): void;
24
+ initForm(): void;
25
+ listenNeedAtendantField(): void;
26
+ updateGlobalControls(change: string): void;
27
+ updateValueAndValidity(): void;
28
+ needAtendant(): boolean;
29
+ sendForm(): void;
30
+ selectNeedAtendant(needAtendant: any): void;
31
+ selectIdTypeParents(value: string): void;
32
+ selectIndicativesParents(value: string): void;
33
+ static ɵfac: i0.ɵɵFactoryDeclaration<CodFormStepThreeComponent, never>;
34
+ static ɵcmp: i0.ɵɵComponentDeclaration<CodFormStepThreeComponent, "app-cod-form-step-three", never, {}, { "changeStepEvent": "changeStepEvent"; }, never, never>;
35
+ }