iptdevs-design-system 2.4.3 → 5.0.0

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 (104) hide show
  1. package/README.md +24 -24
  2. package/esm2020/iptdevs-design-system.mjs +4 -4
  3. package/esm2020/lib/components/atoms/aside-button/aside-button.component.mjs +50 -50
  4. package/esm2020/lib/components/atoms/button/button.component.mjs +64 -64
  5. package/esm2020/lib/components/atoms/checkbox/checkbox.component.mjs +47 -47
  6. package/esm2020/lib/components/atoms/datalist/datalist.component.mjs +94 -94
  7. package/esm2020/lib/components/atoms/input/input.component.mjs +137 -137
  8. package/esm2020/lib/components/atoms/level-button/level-button.component.mjs +64 -64
  9. package/esm2020/lib/components/atoms/level-text/level-text.component.mjs +19 -19
  10. package/esm2020/lib/components/atoms/radio/radio.component.mjs +47 -47
  11. package/esm2020/lib/components/atoms/select/select.component.mjs +92 -92
  12. package/esm2020/lib/components/atoms/text-link/text-link.component.mjs +39 -39
  13. package/esm2020/lib/components/components.module.mjs +108 -108
  14. package/esm2020/lib/components/forms/login-form/login-form.component.mjs +93 -93
  15. package/esm2020/lib/components/material.module.mjs +18 -18
  16. package/esm2020/lib/components/molecules/sidenav/sidenav.component.mjs +146 -146
  17. package/esm2020/lib/core/core.module.mjs +46 -46
  18. package/esm2020/lib/core/models/activities/activities.interface.mjs +2 -0
  19. package/esm2020/lib/core/models/attendance/attendance.interface.mjs +2 -0
  20. package/esm2020/lib/core/models/budget/budget.model.mjs +2 -2
  21. package/esm2020/lib/core/models/calendar/calendar-rq.models.mjs +2 -0
  22. package/esm2020/lib/core/models/cod/cod-rq.model.mjs +2 -2
  23. package/esm2020/lib/core/models/course/course-rq.model.mjs +2 -2
  24. package/esm2020/lib/core/models/cronogram/cronogram.models.mjs +2 -0
  25. package/esm2020/lib/core/models/marketing/marketing.model.mjs +2 -2
  26. package/esm2020/lib/core/models/notes/notes.interface.mjs +2 -0
  27. package/esm2020/lib/core/models/response/response.interface.mjs +2 -0
  28. package/esm2020/lib/core/models/session/session.model.mjs +3 -3
  29. package/esm2020/lib/core/models/student/student.interface.mjs +2 -0
  30. package/esm2020/lib/core/models/table/table-rs.model.mjs +2 -2
  31. package/esm2020/lib/core/models/test/test.model.mjs +2 -2
  32. package/esm2020/lib/core/models/url/url.model.mjs +2 -2
  33. package/esm2020/lib/core/models/user/user-rq.model.mjs +2 -2
  34. package/esm2020/lib/core/models/user/user-rs.model.mjs +5 -5
  35. package/esm2020/lib/core/services/attendance-service/attendance.service.mjs +17 -0
  36. package/esm2020/lib/core/services/budget-service/budget-service.mjs +41 -41
  37. package/esm2020/lib/core/services/calendar-service/calendar.service.mjs +34 -0
  38. package/esm2020/lib/core/services/course-service/course-service.model.mjs +75 -56
  39. package/esm2020/lib/core/services/marketing-service/marketing-service.mjs +57 -57
  40. package/esm2020/lib/core/services/notes-service/notes.service.mjs +40 -0
  41. package/esm2020/lib/core/services/parameters-service/parameters.service.mjs +110 -110
  42. package/esm2020/lib/core/services/storage-service/storage-service.mjs +50 -50
  43. package/esm2020/lib/core/services/student-service/student.service.mjs +30 -0
  44. package/esm2020/lib/core/services/switch-service/switch.service.mjs +16 -16
  45. package/esm2020/lib/core/services/test-service/test.service.mjs +136 -136
  46. package/esm2020/lib/core/services/user-service/user-service.mjs +84 -84
  47. package/esm2020/lib/core/utils/base-service/base.service.mjs +153 -153
  48. package/esm2020/lib/core/utils/route-service/route.service.mjs +18 -18
  49. package/esm2020/lib/design-system.module.mjs +36 -36
  50. package/esm2020/public-api.mjs +56 -45
  51. package/fesm2015/iptdevs-design-system.mjs +1782 -1657
  52. package/fesm2015/iptdevs-design-system.mjs.map +1 -1
  53. package/fesm2020/iptdevs-design-system.mjs +1779 -1654
  54. package/fesm2020/iptdevs-design-system.mjs.map +1 -1
  55. package/iptdevs-design-system.d.ts +5 -5
  56. package/lib/components/atoms/aside-button/aside-button.component.d.ts +11 -11
  57. package/lib/components/atoms/button/button.component.d.ts +13 -13
  58. package/lib/components/atoms/checkbox/checkbox.component.d.ts +11 -11
  59. package/lib/components/atoms/datalist/datalist.component.d.ts +20 -20
  60. package/lib/components/atoms/input/input.component.d.ts +24 -24
  61. package/lib/components/atoms/level-button/level-button.component.d.ts +11 -11
  62. package/lib/components/atoms/level-text/level-text.component.d.ts +7 -7
  63. package/lib/components/atoms/radio/radio.component.d.ts +11 -11
  64. package/lib/components/atoms/select/select.component.d.ts +24 -24
  65. package/lib/components/atoms/text-link/text-link.component.d.ts +12 -12
  66. package/lib/components/components.module.d.ts +22 -22
  67. package/lib/components/forms/login-form/login-form.component.d.ts +13 -13
  68. package/lib/components/material.module.d.ts +10 -10
  69. package/lib/components/molecules/sidenav/sidenav.component.d.ts +22 -22
  70. package/lib/core/core.module.d.ts +6 -6
  71. package/lib/core/models/activities/activities.interface.d.ts +6 -0
  72. package/lib/core/models/attendance/attendance.interface.d.ts +44 -0
  73. package/lib/core/models/budget/budget.model.d.ts +69 -69
  74. package/lib/core/models/calendar/calendar-rq.models.d.ts +27 -0
  75. package/lib/core/models/cod/cod-rq.model.d.ts +51 -51
  76. package/lib/core/models/course/course-rq.model.d.ts +86 -78
  77. package/lib/core/models/cronogram/cronogram.models.d.ts +71 -0
  78. package/lib/core/models/marketing/marketing.model.d.ts +104 -104
  79. package/lib/core/models/notes/notes.interface.d.ts +59 -0
  80. package/lib/core/models/response/response.interface.d.ts +10 -0
  81. package/lib/core/models/session/session.model.d.ts +5 -5
  82. package/lib/core/models/student/student.interface.d.ts +4 -0
  83. package/lib/core/models/table/table-rs.model.d.ts +7 -7
  84. package/lib/core/models/test/test.model.d.ts +219 -219
  85. package/lib/core/models/url/url.model.d.ts +8 -8
  86. package/lib/core/models/user/user-rq.model.d.ts +91 -72
  87. package/lib/core/models/user/user-rs.model.d.ts +35 -35
  88. package/lib/core/services/attendance-service/attendance.service.d.ts +8 -0
  89. package/lib/core/services/budget-service/budget-service.d.ts +16 -16
  90. package/lib/core/services/calendar-service/calendar.service.d.ts +15 -0
  91. package/lib/core/services/course-service/course-service.model.d.ts +24 -19
  92. package/lib/core/services/marketing-service/marketing-service.d.ts +20 -20
  93. package/lib/core/services/notes-service/notes.service.d.ts +17 -0
  94. package/lib/core/services/parameters-service/parameters.service.d.ts +33 -33
  95. package/lib/core/services/storage-service/storage-service.d.ts +18 -18
  96. package/lib/core/services/student-service/student.service.d.ts +14 -0
  97. package/lib/core/services/switch-service/switch.service.d.ts +8 -8
  98. package/lib/core/services/test-service/test.service.d.ts +35 -35
  99. package/lib/core/services/user-service/user-service.d.ts +26 -26
  100. package/lib/core/utils/base-service/base.service.d.ts +18 -18
  101. package/lib/core/utils/route-service/route.service.d.ts +9 -9
  102. package/lib/design-system.module.d.ts +9 -9
  103. package/package.json +3 -3
  104. package/public-api.d.ts +47 -36
@@ -1,11 +1,11 @@
1
- import { EventEmitter } from "@angular/core";
2
- import * as i0 from "@angular/core";
3
- export declare class AsideButtonComponent {
4
- icon: string;
5
- text: string;
6
- buttonActive?: boolean;
7
- isClicked: EventEmitter<boolean>;
8
- clickAction(): void;
9
- static ɵfac: i0.ɵɵFactoryDeclaration<AsideButtonComponent, never>;
10
- static ɵcmp: i0.ɵɵComponentDeclaration<AsideButtonComponent, "ipt-aside-button", never, { "icon": "icon"; "text": "text"; "buttonActive": "buttonActive"; }, { "isClicked": "isClicked"; }, never, never>;
11
- }
1
+ import { EventEmitter } from "@angular/core";
2
+ import * as i0 from "@angular/core";
3
+ export declare class AsideButtonComponent {
4
+ icon: string;
5
+ text: string;
6
+ buttonActive?: boolean;
7
+ isClicked: EventEmitter<boolean>;
8
+ clickAction(): void;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<AsideButtonComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<AsideButtonComponent, "ipt-aside-button", never, { "icon": "icon"; "text": "text"; "buttonActive": "buttonActive"; }, { "isClicked": "isClicked"; }, never, never>;
11
+ }
@@ -1,13 +1,13 @@
1
- import { EventEmitter } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class ButtonComponent {
4
- primary: boolean;
5
- size: 'small' | 'medium' | 'large';
6
- label: string;
7
- buttonType?: string;
8
- isEnabled: boolean;
9
- onClick: EventEmitter<Event>;
10
- get classes(): string[];
11
- static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
12
- static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "ipt-button", never, { "primary": "primary"; "size": "size"; "label": "label"; "buttonType": "buttonType"; "isEnabled": "isEnabled"; }, { "onClick": "onClick"; }, never, never>;
13
- }
1
+ import { EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ButtonComponent {
4
+ primary: boolean;
5
+ size: 'small' | 'medium' | 'large';
6
+ label: string;
7
+ buttonType?: string;
8
+ isEnabled: boolean;
9
+ onClick: EventEmitter<Event>;
10
+ get classes(): string[];
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "ipt-button", never, { "primary": "primary"; "size": "size"; "label": "label"; "buttonType": "buttonType"; "isEnabled": "isEnabled"; }, { "onClick": "onClick"; }, never, never>;
13
+ }
@@ -1,11 +1,11 @@
1
- import { EventEmitter } from "@angular/core";
2
- import { AbstractControl, FormControl } from "@angular/forms";
3
- import * as i0 from "@angular/core";
4
- export declare class CheckboxComponent {
5
- checkboxOption: boolean;
6
- set control(value: AbstractControl);
7
- onChecked: EventEmitter<Event>;
8
- formControl: FormControl;
9
- static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxComponent, never>;
10
- static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "ipt-checkbox", never, { "checkboxOption": "checkboxOption"; "control": "control"; }, { "onChecked": "onChecked"; }, never, never>;
11
- }
1
+ import { EventEmitter } from "@angular/core";
2
+ import { AbstractControl, FormControl } from "@angular/forms";
3
+ import * as i0 from "@angular/core";
4
+ export declare class CheckboxComponent {
5
+ checkboxOption: boolean;
6
+ set control(value: AbstractControl);
7
+ onChecked: EventEmitter<Event>;
8
+ formControl: FormControl;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "ipt-checkbox", never, { "checkboxOption": "checkboxOption"; "control": "control"; }, { "onChecked": "onChecked"; }, never, never>;
11
+ }
@@ -1,20 +1,20 @@
1
- import { EventEmitter } from '@angular/core';
2
- import { FormBuilder } from '@angular/forms';
3
- import * as i0 from "@angular/core";
4
- export declare class DatalistComponent {
5
- datalistId: string;
6
- datalistData: any[];
7
- placeHolder: string;
8
- validateText: string;
9
- initalData: string;
10
- disabledSel: boolean;
11
- isChanged: EventEmitter<string>;
12
- clicked: boolean;
13
- constructor(fb: FormBuilder);
14
- optionChanged(event: any): void;
15
- click(value: MouseEvent): void;
16
- setDataListValue(): any;
17
- get labelClass(): string;
18
- static ɵfac: i0.ɵɵFactoryDeclaration<DatalistComponent, never>;
19
- static ɵcmp: i0.ɵɵComponentDeclaration<DatalistComponent, "ipt-datalist", never, { "datalistId": "datalistId"; "datalistData": "datalistData"; "placeHolder": "placeHolder"; "validateText": "validateText"; "initalData": "initalData"; "disabledSel": "disabledSel"; }, { "isChanged": "isChanged"; }, never, never>;
20
- }
1
+ import { EventEmitter } from '@angular/core';
2
+ import { FormBuilder } from '@angular/forms';
3
+ import * as i0 from "@angular/core";
4
+ export declare class DatalistComponent {
5
+ datalistId: string;
6
+ datalistData: any[];
7
+ placeHolder: string;
8
+ validateText: string;
9
+ initalData: string;
10
+ disabledSel: boolean;
11
+ isChanged: EventEmitter<string>;
12
+ clicked: boolean;
13
+ constructor(fb: FormBuilder);
14
+ optionChanged(event: any): void;
15
+ click(value: MouseEvent): void;
16
+ setDataListValue(): any;
17
+ get labelClass(): string;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<DatalistComponent, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<DatalistComponent, "ipt-datalist", never, { "datalistId": "datalistId"; "datalistData": "datalistData"; "placeHolder": "placeHolder"; "validateText": "validateText"; "initalData": "initalData"; "disabledSel": "disabledSel"; }, { "isChanged": "isChanged"; }, never, never>;
20
+ }
@@ -1,24 +1,24 @@
1
- import { OnInit } from '@angular/core';
2
- import { AbstractControl, FormControl } from '@angular/forms';
3
- import * as i0 from "@angular/core";
4
- export declare class InputComponent implements OnInit {
5
- codeValue: string;
6
- data: any[];
7
- formControl: FormControl;
8
- clicked: boolean;
9
- inputType: string;
10
- placeHolder: string;
11
- validateText?: string;
12
- withPipe?: boolean;
13
- list?: string;
14
- iconUrl?: string;
15
- set control(value: AbstractControl | string);
16
- prefix: string;
17
- thousands: string;
18
- decimal: string;
19
- constructor();
20
- ngOnInit(): void;
21
- click(value: MouseEvent): void;
22
- static ɵfac: i0.ɵɵFactoryDeclaration<InputComponent, never>;
23
- static ɵcmp: i0.ɵɵComponentDeclaration<InputComponent, "ipt-input", never, { "inputType": "inputType"; "placeHolder": "placeHolder"; "validateText": "validateText"; "withPipe": "withPipe"; "list": "list"; "iconUrl": "iconUrl"; "control": "control"; "prefix": "prefix"; "thousands": "thousands"; "decimal": "decimal"; }, {}, never, never>;
24
- }
1
+ import { OnInit } from '@angular/core';
2
+ import { AbstractControl, FormControl } from '@angular/forms';
3
+ import * as i0 from "@angular/core";
4
+ export declare class InputComponent implements OnInit {
5
+ codeValue: string;
6
+ data: any[];
7
+ formControl: FormControl;
8
+ clicked: boolean;
9
+ inputType: string;
10
+ placeHolder: string;
11
+ validateText?: string;
12
+ withPipe?: boolean;
13
+ list?: string;
14
+ iconUrl?: string;
15
+ set control(value: AbstractControl | string);
16
+ prefix: string;
17
+ thousands: string;
18
+ decimal: string;
19
+ constructor();
20
+ ngOnInit(): void;
21
+ click(value: MouseEvent): void;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<InputComponent, never>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<InputComponent, "ipt-input", never, { "inputType": "inputType"; "placeHolder": "placeHolder"; "validateText": "validateText"; "withPipe": "withPipe"; "list": "list"; "iconUrl": "iconUrl"; "control": "control"; "prefix": "prefix"; "thousands": "thousands"; "decimal": "decimal"; }, {}, never, never>;
24
+ }
@@ -1,11 +1,11 @@
1
- import { EventEmitter } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class LevelButtonComponent {
4
- level: string;
5
- buttonActive: boolean;
6
- idColor: string;
7
- isClicked: EventEmitter<boolean>;
8
- clickAction(): void;
9
- static ɵfac: i0.ɵɵFactoryDeclaration<LevelButtonComponent, never>;
10
- static ɵcmp: i0.ɵɵComponentDeclaration<LevelButtonComponent, "ipt-level-button", never, { "level": "level"; "buttonActive": "buttonActive"; "idColor": "idColor"; }, { "isClicked": "isClicked"; }, never, never>;
11
- }
1
+ import { EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class LevelButtonComponent {
4
+ level: string;
5
+ buttonActive: boolean;
6
+ idColor: string;
7
+ isClicked: EventEmitter<boolean>;
8
+ clickAction(): void;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<LevelButtonComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<LevelButtonComponent, "ipt-level-button", never, { "level": "level"; "buttonActive": "buttonActive"; "idColor": "idColor"; }, { "isClicked": "isClicked"; }, never, never>;
11
+ }
@@ -1,7 +1,7 @@
1
- import * as i0 from "@angular/core";
2
- export declare class LevelTextComponent {
3
- level: string;
4
- total: string;
5
- static ɵfac: i0.ɵɵFactoryDeclaration<LevelTextComponent, never>;
6
- static ɵcmp: i0.ɵɵComponentDeclaration<LevelTextComponent, "ipt-level-button", never, { "level": "level"; "total": "total"; }, {}, never, never>;
7
- }
1
+ import * as i0 from "@angular/core";
2
+ export declare class LevelTextComponent {
3
+ level: string;
4
+ total: string;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<LevelTextComponent, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<LevelTextComponent, "ipt-level-button", never, { "level": "level"; "total": "total"; }, {}, never, never>;
7
+ }
@@ -1,11 +1,11 @@
1
- import { EventEmitter } from "@angular/core";
2
- import { AbstractControl, FormControl } from "@angular/forms";
3
- import * as i0 from "@angular/core";
4
- export declare class RadioComponent {
5
- radioOption: boolean;
6
- set control(value: AbstractControl);
7
- onSelected: EventEmitter<Event>;
8
- formControl: FormControl;
9
- static ɵfac: i0.ɵɵFactoryDeclaration<RadioComponent, never>;
10
- static ɵcmp: i0.ɵɵComponentDeclaration<RadioComponent, "ipt-radio", never, { "radioOption": "radioOption"; "control": "control"; }, { "onSelected": "onSelected"; }, never, never>;
11
- }
1
+ import { EventEmitter } from "@angular/core";
2
+ import { AbstractControl, FormControl } from "@angular/forms";
3
+ import * as i0 from "@angular/core";
4
+ export declare class RadioComponent {
5
+ radioOption: boolean;
6
+ set control(value: AbstractControl);
7
+ onSelected: EventEmitter<Event>;
8
+ formControl: FormControl;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<RadioComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<RadioComponent, "ipt-radio", never, { "radioOption": "radioOption"; "control": "control"; }, { "onSelected": "onSelected"; }, never, never>;
11
+ }
@@ -1,24 +1,24 @@
1
- import { EventEmitter, SimpleChanges } from '@angular/core';
2
- import { AbstractControl, FormControl } from '@angular/forms';
3
- import * as i0 from "@angular/core";
4
- export declare class SelectComponent {
5
- binding: any;
6
- boxShadow: number;
7
- formControl: FormControl;
8
- clicked: boolean;
9
- isRequired: boolean;
10
- data: any[];
11
- defaultText: any;
12
- selectCode: string;
13
- disabledSel: boolean;
14
- eventSelect: EventEmitter<string>;
15
- set control(value: AbstractControl);
16
- ngOnChanges(changes: SimpleChanges): void;
17
- seleccionar(evt: string): void;
18
- click(value: MouseEvent): void;
19
- ngOnInit(): void;
20
- get textClass(): string;
21
- get labelClass(): string;
22
- static ɵfac: i0.ɵɵFactoryDeclaration<SelectComponent, never>;
23
- static ɵcmp: i0.ɵɵComponentDeclaration<SelectComponent, "ipt-select", never, { "isRequired": "isRequired"; "data": "data"; "defaultText": "defaultText"; "selectCode": "selectCode"; "disabledSel": "disabledSel"; "control": "control"; }, { "eventSelect": "eventSelect"; }, never, never>;
24
- }
1
+ import { EventEmitter, SimpleChanges } from '@angular/core';
2
+ import { AbstractControl, FormControl } from '@angular/forms';
3
+ import * as i0 from "@angular/core";
4
+ export declare class SelectComponent {
5
+ binding: any;
6
+ boxShadow: number;
7
+ formControl: FormControl;
8
+ clicked: boolean;
9
+ isRequired: boolean;
10
+ data: any[];
11
+ defaultText: any;
12
+ selectCode: string;
13
+ disabledSel: boolean;
14
+ eventSelect: EventEmitter<string>;
15
+ set control(value: AbstractControl);
16
+ ngOnChanges(changes: SimpleChanges): void;
17
+ seleccionar(evt: string): void;
18
+ click(value: MouseEvent): void;
19
+ ngOnInit(): void;
20
+ get textClass(): string;
21
+ get labelClass(): string;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<SelectComponent, never>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<SelectComponent, "ipt-select", never, { "isRequired": "isRequired"; "data": "data"; "defaultText": "defaultText"; "selectCode": "selectCode"; "disabledSel": "disabledSel"; "control": "control"; }, { "eventSelect": "eventSelect"; }, never, never>;
24
+ }
@@ -1,12 +1,12 @@
1
- import { EventEmitter } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class TextLinkComponent {
4
- text: string;
5
- blank?: boolean;
6
- icon?: string;
7
- isClicked: EventEmitter<boolean>;
8
- constructor();
9
- isLinkClicked(): void;
10
- static ɵfac: i0.ɵɵFactoryDeclaration<TextLinkComponent, never>;
11
- static ɵcmp: i0.ɵɵComponentDeclaration<TextLinkComponent, "ipt-text-link", never, { "text": "text"; "blank": "blank"; "icon": "icon"; }, { "isClicked": "isClicked"; }, never, never>;
12
- }
1
+ import { EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class TextLinkComponent {
4
+ text: string;
5
+ blank?: boolean;
6
+ icon?: string;
7
+ isClicked: EventEmitter<boolean>;
8
+ constructor();
9
+ isLinkClicked(): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<TextLinkComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<TextLinkComponent, "ipt-text-link", never, { "text": "text"; "blank": "blank"; "icon": "icon"; }, { "isClicked": "isClicked"; }, never, never>;
12
+ }
@@ -1,22 +1,22 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./atoms/aside-button/aside-button.component";
3
- import * as i2 from "./atoms/button/button.component";
4
- import * as i3 from "./atoms/checkbox/checkbox.component";
5
- import * as i4 from "./atoms/datalist/datalist.component";
6
- import * as i5 from "./atoms/input/input.component";
7
- import * as i6 from "./atoms/level-button/level-button.component";
8
- import * as i7 from "./atoms/level-text/level-text.component";
9
- import * as i8 from "./atoms/radio/radio.component";
10
- import * as i9 from "./atoms/select/select.component";
11
- import * as i10 from "./atoms/text-link/text-link.component";
12
- import * as i11 from "./forms/login-form/login-form.component";
13
- import * as i12 from "./molecules/sidenav/sidenav.component";
14
- import * as i13 from "@angular/common";
15
- import * as i14 from "@angular/forms";
16
- import * as i15 from "./material.module";
17
- import * as i16 from "ng2-currency-mask";
18
- export declare class ComponentsModule {
19
- static ɵfac: i0.ɵɵFactoryDeclaration<ComponentsModule, never>;
20
- static ɵmod: i0.ɵɵNgModuleDeclaration<ComponentsModule, [typeof i1.AsideButtonComponent, typeof i2.ButtonComponent, typeof i3.CheckboxComponent, typeof i4.DatalistComponent, typeof i5.InputComponent, typeof i6.LevelButtonComponent, typeof i7.LevelTextComponent, typeof i8.RadioComponent, typeof i9.SelectComponent, typeof i10.TextLinkComponent, typeof i11.LoginFormComponent, typeof i12.SidenavComponent], [typeof i13.CommonModule, typeof i14.FormsModule, typeof i14.ReactiveFormsModule, typeof i15.MaterialModule, typeof i16.CurrencyMaskModule], [typeof i1.AsideButtonComponent, typeof i2.ButtonComponent, typeof i3.CheckboxComponent, typeof i4.DatalistComponent, typeof i5.InputComponent, typeof i6.LevelButtonComponent, typeof i7.LevelTextComponent, typeof i8.RadioComponent, typeof i9.SelectComponent, typeof i10.TextLinkComponent, typeof i11.LoginFormComponent, typeof i12.SidenavComponent, typeof i16.CurrencyMaskModule]>;
21
- static ɵinj: i0.ɵɵInjectorDeclaration<ComponentsModule>;
22
- }
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./atoms/aside-button/aside-button.component";
3
+ import * as i2 from "./atoms/button/button.component";
4
+ import * as i3 from "./atoms/checkbox/checkbox.component";
5
+ import * as i4 from "./atoms/datalist/datalist.component";
6
+ import * as i5 from "./atoms/input/input.component";
7
+ import * as i6 from "./atoms/level-button/level-button.component";
8
+ import * as i7 from "./atoms/level-text/level-text.component";
9
+ import * as i8 from "./atoms/radio/radio.component";
10
+ import * as i9 from "./atoms/select/select.component";
11
+ import * as i10 from "./atoms/text-link/text-link.component";
12
+ import * as i11 from "./forms/login-form/login-form.component";
13
+ import * as i12 from "./molecules/sidenav/sidenav.component";
14
+ import * as i13 from "@angular/common";
15
+ import * as i14 from "@angular/forms";
16
+ import * as i15 from "./material.module";
17
+ import * as i16 from "ng2-currency-mask";
18
+ export declare class ComponentsModule {
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<ComponentsModule, never>;
20
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ComponentsModule, [typeof i1.AsideButtonComponent, typeof i2.ButtonComponent, typeof i3.CheckboxComponent, typeof i4.DatalistComponent, typeof i5.InputComponent, typeof i6.LevelButtonComponent, typeof i7.LevelTextComponent, typeof i8.RadioComponent, typeof i9.SelectComponent, typeof i10.TextLinkComponent, typeof i11.LoginFormComponent, typeof i12.SidenavComponent], [typeof i13.CommonModule, typeof i14.FormsModule, typeof i14.ReactiveFormsModule, typeof i15.MaterialModule, typeof i16.CurrencyMaskModule], [typeof i1.AsideButtonComponent, typeof i2.ButtonComponent, typeof i3.CheckboxComponent, typeof i4.DatalistComponent, typeof i5.InputComponent, typeof i6.LevelButtonComponent, typeof i7.LevelTextComponent, typeof i8.RadioComponent, typeof i9.SelectComponent, typeof i10.TextLinkComponent, typeof i11.LoginFormComponent, typeof i12.SidenavComponent, typeof i16.CurrencyMaskModule]>;
21
+ static ɵinj: i0.ɵɵInjectorDeclaration<ComponentsModule>;
22
+ }
@@ -1,13 +1,13 @@
1
- import { EventEmitter } from '@angular/core';
2
- import { FormBuilder, FormGroup } from '@angular/forms';
3
- import { BaseService } from '../../../core/utils/base-service/base.service';
4
- import * as i0 from "@angular/core";
5
- export declare class LoginFormComponent {
6
- private baseService;
7
- isLogged: EventEmitter<boolean>;
8
- loginForm: FormGroup;
9
- constructor(fb: FormBuilder, baseService: BaseService);
10
- login(data: FormGroup): void;
11
- static ɵfac: i0.ɵɵFactoryDeclaration<LoginFormComponent, never>;
12
- static ɵcmp: i0.ɵɵComponentDeclaration<LoginFormComponent, "ipt-login-form", never, {}, { "isLogged": "isLogged"; }, never, never>;
13
- }
1
+ import { EventEmitter } from '@angular/core';
2
+ import { FormBuilder, FormGroup } from '@angular/forms';
3
+ import { BaseService } from '../../../core/utils/base-service/base.service';
4
+ import * as i0 from "@angular/core";
5
+ export declare class LoginFormComponent {
6
+ private baseService;
7
+ isLogged: EventEmitter<boolean>;
8
+ loginForm: FormGroup;
9
+ constructor(fb: FormBuilder, baseService: BaseService);
10
+ login(data: FormGroup): void;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<LoginFormComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<LoginFormComponent, "ipt-login-form", never, {}, { "isLogged": "isLogged"; }, never, never>;
13
+ }
@@ -1,10 +1,10 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "@angular/material/sidenav";
3
- import * as i2 from "@angular/material/toolbar";
4
- import * as i3 from "@angular/material/icon";
5
- import * as i4 from "@angular/material/list";
6
- export declare class MaterialModule {
7
- static ɵfac: i0.ɵɵFactoryDeclaration<MaterialModule, never>;
8
- static ɵmod: i0.ɵɵNgModuleDeclaration<MaterialModule, never, never, [typeof i1.MatSidenavModule, typeof i2.MatToolbarModule, typeof i3.MatIconModule, typeof i4.MatListModule]>;
9
- static ɵinj: i0.ɵɵInjectorDeclaration<MaterialModule>;
10
- }
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "@angular/material/sidenav";
3
+ import * as i2 from "@angular/material/toolbar";
4
+ import * as i3 from "@angular/material/icon";
5
+ import * as i4 from "@angular/material/list";
6
+ export declare class MaterialModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<MaterialModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MaterialModule, never, never, [typeof i1.MatSidenavModule, typeof i2.MatToolbarModule, typeof i3.MatIconModule, typeof i4.MatListModule]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<MaterialModule>;
10
+ }
@@ -1,22 +1,22 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
2
- import { StorageService } from '../../../core/services/storage-service/storage-service';
3
- import { UserService } from '../../../core/services/user-service/user-service';
4
- import * as i0 from "@angular/core";
5
- export declare class SidenavComponent implements OnInit {
6
- private userService;
7
- private storageService;
8
- department: string;
9
- setPage: string;
10
- userName: string;
11
- pageChangeEvent: EventEmitter<string>;
12
- routes: any[];
13
- options: any;
14
- currentDay: string;
15
- hour: number;
16
- constructor(userService: UserService, storageService: StorageService);
17
- ngOnInit(): void;
18
- clickPage(event: string): void;
19
- logout(): void;
20
- static ɵfac: i0.ɵɵFactoryDeclaration<SidenavComponent, never>;
21
- static ɵcmp: i0.ɵɵComponentDeclaration<SidenavComponent, "ipt-sidenav", never, { "department": "department"; "setPage": "setPage"; "userName": "userName"; }, { "pageChangeEvent": "pageChangeEvent"; }, never, never>;
22
- }
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { StorageService } from '../../../core/services/storage-service/storage-service';
3
+ import { UserService } from '../../../core/services/user-service/user-service';
4
+ import * as i0 from "@angular/core";
5
+ export declare class SidenavComponent implements OnInit {
6
+ private userService;
7
+ private storageService;
8
+ department: string;
9
+ setPage: string;
10
+ userName: string;
11
+ pageChangeEvent: EventEmitter<string>;
12
+ routes: any[];
13
+ options: any;
14
+ currentDay: string;
15
+ hour: number;
16
+ constructor(userService: UserService, storageService: StorageService);
17
+ ngOnInit(): void;
18
+ clickPage(event: string): void;
19
+ logout(): void;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<SidenavComponent, never>;
21
+ static ɵcmp: i0.ɵɵComponentDeclaration<SidenavComponent, "ipt-sidenav", never, { "department": "department"; "setPage": "setPage"; "userName": "userName"; }, { "pageChangeEvent": "pageChangeEvent"; }, never, never>;
22
+ }
@@ -1,6 +1,6 @@
1
- import * as i0 from "@angular/core";
2
- export declare class CoreModule {
3
- static ɵfac: i0.ɵɵFactoryDeclaration<CoreModule, never>;
4
- static ɵmod: i0.ɵɵNgModuleDeclaration<CoreModule, never, never, never>;
5
- static ɵinj: i0.ɵɵInjectorDeclaration<CoreModule>;
6
- }
1
+ import * as i0 from "@angular/core";
2
+ export declare class CoreModule {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<CoreModule, never>;
4
+ static ɵmod: i0.ɵɵNgModuleDeclaration<CoreModule, never, never, never>;
5
+ static ɵinj: i0.ɵɵInjectorDeclaration<CoreModule>;
6
+ }
@@ -0,0 +1,6 @@
1
+ export interface Activity {
2
+ name: string;
3
+ unit: string;
4
+ english_level: string;
5
+ activiti: string;
6
+ }
@@ -0,0 +1,44 @@
1
+ export interface AttendanceGroup {
2
+ code: number;
3
+ name: string;
4
+ english_level: string;
5
+ modality: string;
6
+ type_plan: string;
7
+ }
8
+ export interface StudentAttendance {
9
+ id: number;
10
+ first_name: string;
11
+ last_name: string;
12
+ email: string;
13
+ gender: string;
14
+ attendance: string;
15
+ isAttendance: number;
16
+ observations: string;
17
+ }
18
+ export interface Groups {
19
+ data: GroupsData;
20
+ }
21
+ export interface GroupsData {
22
+ number_of_pages: number;
23
+ current_page: string;
24
+ total_records: number;
25
+ records_per_page: string;
26
+ courses: Course[];
27
+ }
28
+ export interface Course {
29
+ code: number;
30
+ course_schedule: string[];
31
+ teacher: string;
32
+ course_type: TypeCourse;
33
+ start_date: Date;
34
+ finish_date: Date;
35
+ capacity: number;
36
+ more_days: number;
37
+ english_level: string;
38
+ agreement: string;
39
+ }
40
+ export interface TypeCourse {
41
+ code: number;
42
+ name: string;
43
+ academic_plan: string;
44
+ }