iptdevs-design-system 2.7.43 → 2.7.45

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 (166) 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 +123 -123
  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/question-type/edit-question-types.component.mjs +346 -346
  32. package/esm2020/lib/components/molecules/sidenav/sidenav.component.mjs +150 -150
  33. package/esm2020/lib/core/core.module.mjs +73 -73
  34. package/esm2020/lib/core/models/academic/academic.component.mjs +2 -2
  35. package/esm2020/lib/core/models/activities/activities.interface.mjs +2 -2
  36. package/esm2020/lib/core/models/attendance/attendance.interface.mjs +2 -2
  37. package/esm2020/lib/core/models/budget/budget.model.mjs +2 -2
  38. package/esm2020/lib/core/models/calendar/calendar-rq.models.mjs +2 -2
  39. package/esm2020/lib/core/models/classroom/classroom-rq.model.mjs +2 -2
  40. package/esm2020/lib/core/models/cod/cod-rq.model.mjs +2 -2
  41. package/esm2020/lib/core/models/commercial/commercial.model.mjs +2 -2
  42. package/esm2020/lib/core/models/course/course-rq.model.mjs +2 -2
  43. package/esm2020/lib/core/models/course/courses.model.mjs +2 -2
  44. package/esm2020/lib/core/models/cronogram/cronogram.models.mjs +2 -2
  45. package/esm2020/lib/core/models/marketing/marketing.model.mjs +2 -2
  46. package/esm2020/lib/core/models/notes/notes.interface.mjs +2 -2
  47. package/esm2020/lib/core/models/payment/payment-rq.model.mjs +2 -2
  48. package/esm2020/lib/core/models/response/response.interface.mjs +2 -2
  49. package/esm2020/lib/core/models/session/session.model.mjs +3 -3
  50. package/esm2020/lib/core/models/student/student.interface.mjs +2 -2
  51. package/esm2020/lib/core/models/table/table-rs.model.mjs +2 -2
  52. package/esm2020/lib/core/models/test/test.model.mjs +2 -2
  53. package/esm2020/lib/core/models/url/url.model.mjs +2 -2
  54. package/esm2020/lib/core/models/user/user-rq.model.mjs +2 -2
  55. package/esm2020/lib/core/models/user/user-rs.model.mjs +5 -5
  56. package/esm2020/lib/core/services/academic-service/academic.service.mjs +55 -55
  57. package/esm2020/lib/core/services/activity-service/activity.service.mjs +87 -87
  58. package/esm2020/lib/core/services/attendance-service/attendance.service.mjs +64 -64
  59. package/esm2020/lib/core/services/budget-service/budget-service.mjs +66 -66
  60. package/esm2020/lib/core/services/calendar-service/calendar.service.mjs +65 -65
  61. package/esm2020/lib/core/services/certificate-service/certificate.service.mjs +26 -26
  62. package/esm2020/lib/core/services/classroom-service/classroom-service.service.mjs +36 -36
  63. package/esm2020/lib/core/services/commercial-service/comercial.service.mjs +49 -49
  64. package/esm2020/lib/core/services/commercial-service/validators.mjs +4 -4
  65. package/esm2020/lib/core/services/copies.service.mjs +17 -17
  66. package/esm2020/lib/core/services/course-service/course-service.model.mjs +75 -70
  67. package/esm2020/lib/core/services/ekt-service/userekt.service.mjs +29 -29
  68. package/esm2020/lib/core/services/marketing-service/marketing-service.mjs +52 -52
  69. package/esm2020/lib/core/services/notes-service/notes.service.mjs +46 -46
  70. package/esm2020/lib/core/services/parameters-service/parameters.service.mjs +173 -173
  71. package/esm2020/lib/core/services/service-enviroments.mjs +26 -26
  72. package/esm2020/lib/core/services/storage-service/storage-service.mjs +50 -50
  73. package/esm2020/lib/core/services/student-service/student.service.mjs +26 -26
  74. package/esm2020/lib/core/services/switch-service/switch.service.mjs +16 -16
  75. package/esm2020/lib/core/services/test-service/test.service.mjs +128 -128
  76. package/esm2020/lib/core/services/user-service/user-service.mjs +100 -100
  77. package/esm2020/lib/core/utils/base-service/base.service.mjs +191 -191
  78. package/esm2020/lib/core/utils/copies.mjs +214 -214
  79. package/esm2020/lib/core/utils/route-service/route.service.mjs +18 -18
  80. package/esm2020/lib/design-system.module.mjs +40 -40
  81. package/esm2020/public-api.mjs +89 -89
  82. package/fesm2015/iptdevs-design-system.mjs +4597 -4592
  83. package/fesm2015/iptdevs-design-system.mjs.map +1 -1
  84. package/fesm2020/iptdevs-design-system.mjs +4594 -4589
  85. package/fesm2020/iptdevs-design-system.mjs.map +1 -1
  86. package/iptdevs-design-system.d.ts +5 -5
  87. package/lib/cod/cod-documents-section/cod-documents-section.component.d.ts +8 -8
  88. package/lib/cod/cod-form/cod-form.component.d.ts +37 -37
  89. package/lib/cod/cod.module.d.ts +21 -21
  90. package/lib/cod/logic/calculate-quotes.service.d.ts +14 -14
  91. package/lib/cod/logic/cod-form-controls.d.ts +16 -16
  92. package/lib/cod/logic/cod-form-steps.d.ts +15 -15
  93. package/lib/cod/logic/communicator.service.d.ts +13 -13
  94. package/lib/cod/logic/local-storage-cod.service.d.ts +8 -8
  95. package/lib/cod/steps/cod-form-step-five/cod-form-step-five.component.d.ts +31 -31
  96. package/lib/cod/steps/cod-form-step-four/cod-form-step-four.component.d.ts +47 -47
  97. package/lib/cod/steps/cod-form-step-one/cod-form-step-one.component.d.ts +46 -46
  98. package/lib/cod/steps/cod-form-step-three/cod-form-step-three.component.d.ts +35 -35
  99. package/lib/cod/steps/cod-form-step-two/cod-form-step-two.component.d.ts +44 -44
  100. package/lib/components/atoms/aside-button/aside-button.component.d.ts +11 -11
  101. package/lib/components/atoms/button/button.component.d.ts +13 -13
  102. package/lib/components/atoms/checkbox/checkbox.component.d.ts +11 -11
  103. package/lib/components/atoms/datalist/datalist.component.d.ts +20 -20
  104. package/lib/components/atoms/input/input.component.d.ts +26 -26
  105. package/lib/components/atoms/level-button/level-button.component.d.ts +11 -11
  106. package/lib/components/atoms/level-text/level-text.component.d.ts +7 -7
  107. package/lib/components/atoms/loader/loader.component.d.ts +7 -7
  108. package/lib/components/atoms/radio/radio.component.d.ts +11 -11
  109. package/lib/components/atoms/select/select.component.d.ts +26 -26
  110. package/lib/components/atoms/text-link/text-link.component.d.ts +12 -12
  111. package/lib/components/components.module.d.ts +25 -25
  112. package/lib/components/forms/create-user-form/create-user-form.component.d.ts +36 -36
  113. package/lib/components/forms/login-form/login-form.component.d.ts +13 -13
  114. package/lib/components/material.module.d.ts +11 -11
  115. package/lib/components/molecules/question-type/edit-question-types.component.d.ts +11 -11
  116. package/lib/components/molecules/sidenav/sidenav.component.d.ts +25 -25
  117. package/lib/core/core.module.d.ts +6 -6
  118. package/lib/core/models/academic/academic.component.d.ts +26 -26
  119. package/lib/core/models/activities/activities.interface.d.ts +12 -12
  120. package/lib/core/models/attendance/attendance.interface.d.ts +62 -62
  121. package/lib/core/models/budget/budget.model.d.ts +69 -69
  122. package/lib/core/models/calendar/calendar-rq.models.d.ts +27 -27
  123. package/lib/core/models/classroom/classroom-rq.model.d.ts +23 -23
  124. package/lib/core/models/cod/cod-rq.model.d.ts +168 -168
  125. package/lib/core/models/commercial/commercial.model.d.ts +10 -10
  126. package/lib/core/models/course/course-rq.model.d.ts +86 -86
  127. package/lib/core/models/course/courses.model.d.ts +18 -18
  128. package/lib/core/models/cronogram/cronogram.models.d.ts +184 -183
  129. package/lib/core/models/marketing/marketing.model.d.ts +104 -104
  130. package/lib/core/models/notes/notes.interface.d.ts +89 -89
  131. package/lib/core/models/payment/payment-rq.model.d.ts +212 -212
  132. package/lib/core/models/response/response.interface.d.ts +10 -10
  133. package/lib/core/models/session/session.model.d.ts +5 -5
  134. package/lib/core/models/student/student.interface.d.ts +4 -4
  135. package/lib/core/models/table/table-rs.model.d.ts +7 -7
  136. package/lib/core/models/test/test.model.d.ts +219 -219
  137. package/lib/core/models/url/url.model.d.ts +8 -8
  138. package/lib/core/models/user/user-rq.model.d.ts +90 -90
  139. package/lib/core/models/user/user-rs.model.d.ts +35 -35
  140. package/lib/core/services/academic-service/academic.service.d.ts +20 -20
  141. package/lib/core/services/activity-service/activity.service.d.ts +25 -25
  142. package/lib/core/services/attendance-service/attendance.service.d.ts +22 -22
  143. package/lib/core/services/budget-service/budget-service.d.ts +23 -23
  144. package/lib/core/services/calendar-service/calendar.service.d.ts +23 -23
  145. package/lib/core/services/certificate-service/certificate.service.d.ts +13 -13
  146. package/lib/core/services/classroom-service/classroom-service.service.d.ts +15 -15
  147. package/lib/core/services/commercial-service/comercial.service.d.ts +19 -19
  148. package/lib/core/services/commercial-service/validators.d.ts +2 -2
  149. package/lib/core/services/copies.service.d.ts +7 -7
  150. package/lib/core/services/course-service/course-service.model.d.ts +24 -23
  151. package/lib/core/services/ekt-service/userekt.service.d.ts +13 -13
  152. package/lib/core/services/marketing-service/marketing-service.d.ts +19 -19
  153. package/lib/core/services/notes-service/notes.service.d.ts +18 -18
  154. package/lib/core/services/parameters-service/parameters.service.d.ts +49 -49
  155. package/lib/core/services/service-enviroments.d.ts +5 -5
  156. package/lib/core/services/storage-service/storage-service.d.ts +18 -18
  157. package/lib/core/services/student-service/student.service.d.ts +13 -13
  158. package/lib/core/services/switch-service/switch.service.d.ts +8 -8
  159. package/lib/core/services/test-service/test.service.d.ts +33 -33
  160. package/lib/core/services/user-service/user-service.d.ts +30 -30
  161. package/lib/core/utils/base-service/base.service.d.ts +23 -23
  162. package/lib/core/utils/copies.d.ts +1 -1
  163. package/lib/core/utils/route-service/route.service.d.ts +9 -9
  164. package/lib/design-system.module.d.ts +10 -10
  165. package/package.json +1 -1
  166. package/public-api.d.ts +76 -76
package/README.md CHANGED
@@ -1,24 +1,24 @@
1
- # DesignSystem
2
-
3
- This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.1.0.
4
-
5
- ## Code scaffolding
6
-
7
- Run `ng generate component component-name --project design-system` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project design-system`.
8
- > Note: Don't forget to add `--project design-system` or else it will be added to the default project in your `angular.json` file.
9
-
10
- ## Build
11
-
12
- Run `ng build design-system` to build the project. The build artifacts will be stored in the `dist/` directory.
13
-
14
- ## Publishing
15
-
16
- After building your library with `ng build design-system`, go to the dist folder `cd dist/design-system` and run `npm publish`.
17
-
18
- ## Running unit tests
19
-
20
- Run `ng test design-system` to execute the unit tests via [Karma](https://karma-runner.github.io).
21
-
22
- ## Further help
23
-
24
- To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
1
+ # DesignSystem
2
+
3
+ This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.1.0.
4
+
5
+ ## Code scaffolding
6
+
7
+ Run `ng generate component component-name --project design-system` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project design-system`.
8
+ > Note: Don't forget to add `--project design-system` or else it will be added to the default project in your `angular.json` file.
9
+
10
+ ## Build
11
+
12
+ Run `ng build design-system` to build the project. The build artifacts will be stored in the `dist/` directory.
13
+
14
+ ## Publishing
15
+
16
+ After building your library with `ng build design-system`, go to the dist folder `cd dist/design-system` and run `npm publish`.
17
+
18
+ ## Running unit tests
19
+
20
+ Run `ng test design-system` to execute the unit tests via [Karma](https://karma-runner.github.io).
21
+
22
+ ## Further help
23
+
24
+ To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
@@ -1,5 +1,5 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- export * from './public-api';
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ export * from './public-api';
5
5
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaXB0ZGV2cy1kZXNpZ24tc3lzdGVtLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vZGVzaWduLXN5c3RlbS9zcmMvaXB0ZGV2cy1kZXNpZ24tc3lzdGVtLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBRUgsY0FBYyxjQUFjLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIEdlbmVyYXRlZCBidW5kbGUgaW5kZXguIERvIG5vdCBlZGl0LlxuICovXG5cbmV4cG9ydCAqIGZyb20gJy4vcHVibGljLWFwaSc7XG4iXX0=
@@ -1,16 +1,16 @@
1
- import { Component } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- import * as i1 from "@angular/common";
4
- import * as i2 from "primeng/button";
5
- export class CodDocumentsSectionComponent {
6
- constructor() { }
7
- ngOnInit() {
8
- }
9
- }
10
- CodDocumentsSectionComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: CodDocumentsSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
11
- CodDocumentsSectionComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.3", type: CodDocumentsSectionComponent, selector: "ipt-cod-documents-section", ngImport: i0, template: "<div class=\"container flex flex-column bg-white border-round-2xl p-3 container animate__animated animate__fadeInUp\">\r\n\r\n <span class=\"bg-primary p-2 border-round mb-2 w-auto text-lg font-semibold\">Documentos del COD</span>\r\n\r\n <div *ngFor=\"let item of [1,2,3,4,5]\" class=\"document_item flex align-items-center p-2 border-round\">\r\n <span>Documento de identidad</span>\r\n <div class=\"ml-auto\">\r\n <button pButton pRipple type=\"button\" icon=\"pi pi-eye\" class=\"p-button-rounded p-button-sm ml-auto mr-1\"></button>\r\n <button pButton pRipple type=\"button\" icon=\"pi pi-trash\" class=\"p-button-rounded p-button-sm p-button-danger ml-auto\"></button>\r\n </div>\r\n </div>\r\n\r\n <hr>\r\n <button pButton pRipple type=\"button\" icon=\"pi pi-plus\" label=\"Agregar\" class=\"p-button-rounded p-button-sm ml-auto mt-2\"></button>\r\n\r\n</div>\r\n", styles: [".document_item{transition:.15s;gap:1rem;max-height:150px}.document_item:hover{cursor:pointer;box-shadow:#64646f33 0 7px 29px}\n"], directives: [{ type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i2.ButtonDirective, selector: "[pButton]", inputs: ["iconPos", "loadingIcon", "label", "icon", "loading"] }] });
12
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: CodDocumentsSectionComponent, decorators: [{
13
- type: Component,
14
- args: [{ selector: 'ipt-cod-documents-section', template: "<div class=\"container flex flex-column bg-white border-round-2xl p-3 container animate__animated animate__fadeInUp\">\r\n\r\n <span class=\"bg-primary p-2 border-round mb-2 w-auto text-lg font-semibold\">Documentos del COD</span>\r\n\r\n <div *ngFor=\"let item of [1,2,3,4,5]\" class=\"document_item flex align-items-center p-2 border-round\">\r\n <span>Documento de identidad</span>\r\n <div class=\"ml-auto\">\r\n <button pButton pRipple type=\"button\" icon=\"pi pi-eye\" class=\"p-button-rounded p-button-sm ml-auto mr-1\"></button>\r\n <button pButton pRipple type=\"button\" icon=\"pi pi-trash\" class=\"p-button-rounded p-button-sm p-button-danger ml-auto\"></button>\r\n </div>\r\n </div>\r\n\r\n <hr>\r\n <button pButton pRipple type=\"button\" icon=\"pi pi-plus\" label=\"Agregar\" class=\"p-button-rounded p-button-sm ml-auto mt-2\"></button>\r\n\r\n</div>\r\n", styles: [".document_item{transition:.15s;gap:1rem;max-height:150px}.document_item:hover{cursor:pointer;box-shadow:#64646f33 0 7px 29px}\n"] }]
15
- }], ctorParameters: function () { return []; } });
16
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29kLWRvY3VtZW50cy1zZWN0aW9uLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL2Rlc2lnbi1zeXN0ZW0vc3JjL2xpYi9jb2QvY29kLWRvY3VtZW50cy1zZWN0aW9uL2NvZC1kb2N1bWVudHMtc2VjdGlvbi5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi9kZXNpZ24tc3lzdGVtL3NyYy9saWIvY29kL2NvZC1kb2N1bWVudHMtc2VjdGlvbi9jb2QtZG9jdW1lbnRzLXNlY3Rpb24uY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBVSxNQUFNLGVBQWUsQ0FBQzs7OztBQU9sRCxNQUFNLE9BQU8sNEJBQTRCO0lBRXZDLGdCQUFnQixDQUFDO0lBRWpCLFFBQVE7SUFDUixDQUFDOzt5SEFMVSw0QkFBNEI7NkdBQTVCLDRCQUE0QixpRUNQekMsazRCQWdCQTsyRkRUYSw0QkFBNEI7a0JBTHhDLFNBQVM7K0JBQ0UsMkJBQTJCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBPbkluaXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiAnaXB0LWNvZC1kb2N1bWVudHMtc2VjdGlvbicsXHJcbiAgdGVtcGxhdGVVcmw6ICcuL2NvZC1kb2N1bWVudHMtc2VjdGlvbi5jb21wb25lbnQuaHRtbCcsXHJcbiAgc3R5bGVVcmxzOiBbJy4vY29kLWRvY3VtZW50cy1zZWN0aW9uLmNvbXBvbmVudC5jc3MnXVxyXG59KVxyXG5leHBvcnQgY2xhc3MgQ29kRG9jdW1lbnRzU2VjdGlvbkNvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XHJcblxyXG4gIGNvbnN0cnVjdG9yKCkgeyB9XHJcblxyXG4gIG5nT25Jbml0KCk6IHZvaWQge1xyXG4gIH1cclxuXHJcbn1cclxuIiwiPGRpdiBjbGFzcz1cImNvbnRhaW5lciBmbGV4IGZsZXgtY29sdW1uIGJnLXdoaXRlIGJvcmRlci1yb3VuZC0yeGwgcC0zIGNvbnRhaW5lciBhbmltYXRlX19hbmltYXRlZCBhbmltYXRlX19mYWRlSW5VcFwiPlxyXG5cclxuICA8c3BhbiBjbGFzcz1cImJnLXByaW1hcnkgcC0yIGJvcmRlci1yb3VuZCBtYi0yIHctYXV0byB0ZXh0LWxnIGZvbnQtc2VtaWJvbGRcIj5Eb2N1bWVudG9zIGRlbCBDT0Q8L3NwYW4+XHJcblxyXG4gIDxkaXYgKm5nRm9yPVwibGV0IGl0ZW0gb2YgWzEsMiwzLDQsNV1cIiBjbGFzcz1cImRvY3VtZW50X2l0ZW0gZmxleCBhbGlnbi1pdGVtcy1jZW50ZXIgcC0yIGJvcmRlci1yb3VuZFwiPlxyXG4gICAgPHNwYW4+RG9jdW1lbnRvIGRlIGlkZW50aWRhZDwvc3Bhbj5cclxuICAgIDxkaXYgY2xhc3M9XCJtbC1hdXRvXCI+XHJcbiAgICAgIDxidXR0b24gcEJ1dHRvbiBwUmlwcGxlIHR5cGU9XCJidXR0b25cIiBpY29uPVwicGkgcGktZXllXCIgY2xhc3M9XCJwLWJ1dHRvbi1yb3VuZGVkIHAtYnV0dG9uLXNtIG1sLWF1dG8gbXItMVwiPjwvYnV0dG9uPlxyXG4gICAgICA8YnV0dG9uIHBCdXR0b24gcFJpcHBsZSB0eXBlPVwiYnV0dG9uXCIgaWNvbj1cInBpIHBpLXRyYXNoXCIgY2xhc3M9XCJwLWJ1dHRvbi1yb3VuZGVkIHAtYnV0dG9uLXNtIHAtYnV0dG9uLWRhbmdlciBtbC1hdXRvXCI+PC9idXR0b24+XHJcbiAgICA8L2Rpdj5cclxuICA8L2Rpdj5cclxuXHJcbiAgPGhyPlxyXG4gIDxidXR0b24gcEJ1dHRvbiBwUmlwcGxlIHR5cGU9XCJidXR0b25cIiBpY29uPVwicGkgcGktcGx1c1wiIGxhYmVsPVwiQWdyZWdhclwiIGNsYXNzPVwicC1idXR0b24tcm91bmRlZCBwLWJ1dHRvbi1zbSBtbC1hdXRvIG10LTJcIj48L2J1dHRvbj5cclxuXHJcbjwvZGl2PlxyXG4iXX0=
1
+ import { Component } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "@angular/common";
4
+ import * as i2 from "primeng/button";
5
+ export class CodDocumentsSectionComponent {
6
+ constructor() { }
7
+ ngOnInit() {
8
+ }
9
+ }
10
+ CodDocumentsSectionComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: CodDocumentsSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
11
+ CodDocumentsSectionComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.3", type: CodDocumentsSectionComponent, selector: "ipt-cod-documents-section", ngImport: i0, template: "<div class=\"container flex flex-column bg-white border-round-2xl p-3 container animate__animated animate__fadeInUp\">\n\n <span class=\"bg-primary p-2 border-round mb-2 w-auto text-lg font-semibold\">Documentos del COD</span>\n\n <div *ngFor=\"let item of [1,2,3,4,5]\" class=\"document_item flex align-items-center p-2 border-round\">\n <span>Documento de identidad</span>\n <div class=\"ml-auto\">\n <button pButton pRipple type=\"button\" icon=\"pi pi-eye\" class=\"p-button-rounded p-button-sm ml-auto mr-1\"></button>\n <button pButton pRipple type=\"button\" icon=\"pi pi-trash\" class=\"p-button-rounded p-button-sm p-button-danger ml-auto\"></button>\n </div>\n </div>\n\n <hr>\n <button pButton pRipple type=\"button\" icon=\"pi pi-plus\" label=\"Agregar\" class=\"p-button-rounded p-button-sm ml-auto mt-2\"></button>\n\n</div>\n", styles: [".document_item{transition:.15s;gap:1rem;max-height:150px}.document_item:hover{cursor:pointer;box-shadow:#64646f33 0 7px 29px}\n"], directives: [{ type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i2.ButtonDirective, selector: "[pButton]", inputs: ["iconPos", "loadingIcon", "label", "icon", "loading"] }] });
12
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: CodDocumentsSectionComponent, decorators: [{
13
+ type: Component,
14
+ args: [{ selector: 'ipt-cod-documents-section', template: "<div class=\"container flex flex-column bg-white border-round-2xl p-3 container animate__animated animate__fadeInUp\">\n\n <span class=\"bg-primary p-2 border-round mb-2 w-auto text-lg font-semibold\">Documentos del COD</span>\n\n <div *ngFor=\"let item of [1,2,3,4,5]\" class=\"document_item flex align-items-center p-2 border-round\">\n <span>Documento de identidad</span>\n <div class=\"ml-auto\">\n <button pButton pRipple type=\"button\" icon=\"pi pi-eye\" class=\"p-button-rounded p-button-sm ml-auto mr-1\"></button>\n <button pButton pRipple type=\"button\" icon=\"pi pi-trash\" class=\"p-button-rounded p-button-sm p-button-danger ml-auto\"></button>\n </div>\n </div>\n\n <hr>\n <button pButton pRipple type=\"button\" icon=\"pi pi-plus\" label=\"Agregar\" class=\"p-button-rounded p-button-sm ml-auto mt-2\"></button>\n\n</div>\n", styles: [".document_item{transition:.15s;gap:1rem;max-height:150px}.document_item:hover{cursor:pointer;box-shadow:#64646f33 0 7px 29px}\n"] }]
15
+ }], ctorParameters: function () { return []; } });
16
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29kLWRvY3VtZW50cy1zZWN0aW9uLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL2Rlc2lnbi1zeXN0ZW0vc3JjL2xpYi9jb2QvY29kLWRvY3VtZW50cy1zZWN0aW9uL2NvZC1kb2N1bWVudHMtc2VjdGlvbi5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi9kZXNpZ24tc3lzdGVtL3NyYy9saWIvY29kL2NvZC1kb2N1bWVudHMtc2VjdGlvbi9jb2QtZG9jdW1lbnRzLXNlY3Rpb24uY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBVSxNQUFNLGVBQWUsQ0FBQzs7OztBQU9sRCxNQUFNLE9BQU8sNEJBQTRCO0lBRXZDLGdCQUFnQixDQUFDO0lBRWpCLFFBQVE7SUFDUixDQUFDOzt5SEFMVSw0QkFBNEI7NkdBQTVCLDRCQUE0QixpRUNQekMsazJCQWdCQTsyRkRUYSw0QkFBNEI7a0JBTHhDLFNBQVM7K0JBQ0UsMkJBQTJCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBPbkluaXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnaXB0LWNvZC1kb2N1bWVudHMtc2VjdGlvbicsXG4gIHRlbXBsYXRlVXJsOiAnLi9jb2QtZG9jdW1lbnRzLXNlY3Rpb24uY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9jb2QtZG9jdW1lbnRzLXNlY3Rpb24uY29tcG9uZW50LmNzcyddXG59KVxuZXhwb3J0IGNsYXNzIENvZERvY3VtZW50c1NlY3Rpb25Db21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xuXG4gIGNvbnN0cnVjdG9yKCkgeyB9XG5cbiAgbmdPbkluaXQoKTogdm9pZCB7XG4gIH1cblxufVxuIiwiPGRpdiBjbGFzcz1cImNvbnRhaW5lciBmbGV4IGZsZXgtY29sdW1uIGJnLXdoaXRlIGJvcmRlci1yb3VuZC0yeGwgcC0zIGNvbnRhaW5lciBhbmltYXRlX19hbmltYXRlZCBhbmltYXRlX19mYWRlSW5VcFwiPlxuXG4gIDxzcGFuIGNsYXNzPVwiYmctcHJpbWFyeSBwLTIgYm9yZGVyLXJvdW5kIG1iLTIgdy1hdXRvIHRleHQtbGcgZm9udC1zZW1pYm9sZFwiPkRvY3VtZW50b3MgZGVsIENPRDwvc3Bhbj5cblxuICA8ZGl2ICpuZ0Zvcj1cImxldCBpdGVtIG9mIFsxLDIsMyw0LDVdXCIgY2xhc3M9XCJkb2N1bWVudF9pdGVtIGZsZXggYWxpZ24taXRlbXMtY2VudGVyIHAtMiBib3JkZXItcm91bmRcIj5cbiAgICA8c3Bhbj5Eb2N1bWVudG8gZGUgaWRlbnRpZGFkPC9zcGFuPlxuICAgIDxkaXYgY2xhc3M9XCJtbC1hdXRvXCI+XG4gICAgICA8YnV0dG9uIHBCdXR0b24gcFJpcHBsZSB0eXBlPVwiYnV0dG9uXCIgaWNvbj1cInBpIHBpLWV5ZVwiIGNsYXNzPVwicC1idXR0b24tcm91bmRlZCBwLWJ1dHRvbi1zbSBtbC1hdXRvIG1yLTFcIj48L2J1dHRvbj5cbiAgICAgIDxidXR0b24gcEJ1dHRvbiBwUmlwcGxlIHR5cGU9XCJidXR0b25cIiBpY29uPVwicGkgcGktdHJhc2hcIiBjbGFzcz1cInAtYnV0dG9uLXJvdW5kZWQgcC1idXR0b24tc20gcC1idXR0b24tZGFuZ2VyIG1sLWF1dG9cIj48L2J1dHRvbj5cbiAgICA8L2Rpdj5cbiAgPC9kaXY+XG5cbiAgPGhyPlxuICA8YnV0dG9uIHBCdXR0b24gcFJpcHBsZSB0eXBlPVwiYnV0dG9uXCIgaWNvbj1cInBpIHBpLXBsdXNcIiBsYWJlbD1cIkFncmVnYXJcIiBjbGFzcz1cInAtYnV0dG9uLXJvdW5kZWQgcC1idXR0b24tc20gbWwtYXV0byBtdC0yXCI+PC9idXR0b24+XG5cbjwvZGl2PlxuIl19