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.
- package/README.md +24 -24
- package/esm2020/iptdevs-design-system.mjs +4 -4
- package/esm2020/lib/components/atoms/aside-button/aside-button.component.mjs +50 -50
- package/esm2020/lib/components/atoms/button/button.component.mjs +64 -64
- package/esm2020/lib/components/atoms/checkbox/checkbox.component.mjs +47 -47
- package/esm2020/lib/components/atoms/datalist/datalist.component.mjs +94 -94
- package/esm2020/lib/components/atoms/input/input.component.mjs +137 -137
- package/esm2020/lib/components/atoms/level-button/level-button.component.mjs +64 -64
- package/esm2020/lib/components/atoms/level-text/level-text.component.mjs +19 -19
- package/esm2020/lib/components/atoms/radio/radio.component.mjs +47 -47
- package/esm2020/lib/components/atoms/select/select.component.mjs +92 -92
- package/esm2020/lib/components/atoms/text-link/text-link.component.mjs +39 -39
- package/esm2020/lib/components/components.module.mjs +108 -108
- package/esm2020/lib/components/forms/login-form/login-form.component.mjs +93 -93
- package/esm2020/lib/components/material.module.mjs +18 -18
- package/esm2020/lib/components/molecules/sidenav/sidenav.component.mjs +146 -146
- package/esm2020/lib/core/core.module.mjs +46 -46
- package/esm2020/lib/core/models/activities/activities.interface.mjs +2 -0
- package/esm2020/lib/core/models/attendance/attendance.interface.mjs +2 -0
- package/esm2020/lib/core/models/budget/budget.model.mjs +2 -2
- package/esm2020/lib/core/models/calendar/calendar-rq.models.mjs +2 -0
- package/esm2020/lib/core/models/cod/cod-rq.model.mjs +2 -2
- package/esm2020/lib/core/models/course/course-rq.model.mjs +2 -2
- package/esm2020/lib/core/models/cronogram/cronogram.models.mjs +2 -0
- package/esm2020/lib/core/models/marketing/marketing.model.mjs +2 -2
- package/esm2020/lib/core/models/notes/notes.interface.mjs +2 -0
- package/esm2020/lib/core/models/response/response.interface.mjs +2 -0
- package/esm2020/lib/core/models/session/session.model.mjs +3 -3
- package/esm2020/lib/core/models/student/student.interface.mjs +2 -0
- package/esm2020/lib/core/models/table/table-rs.model.mjs +2 -2
- package/esm2020/lib/core/models/test/test.model.mjs +2 -2
- package/esm2020/lib/core/models/url/url.model.mjs +2 -2
- package/esm2020/lib/core/models/user/user-rq.model.mjs +2 -2
- package/esm2020/lib/core/models/user/user-rs.model.mjs +5 -5
- package/esm2020/lib/core/services/attendance-service/attendance.service.mjs +17 -0
- package/esm2020/lib/core/services/budget-service/budget-service.mjs +41 -41
- package/esm2020/lib/core/services/calendar-service/calendar.service.mjs +34 -0
- package/esm2020/lib/core/services/course-service/course-service.model.mjs +75 -56
- package/esm2020/lib/core/services/marketing-service/marketing-service.mjs +57 -57
- package/esm2020/lib/core/services/notes-service/notes.service.mjs +40 -0
- package/esm2020/lib/core/services/parameters-service/parameters.service.mjs +110 -110
- package/esm2020/lib/core/services/storage-service/storage-service.mjs +50 -50
- package/esm2020/lib/core/services/student-service/student.service.mjs +30 -0
- package/esm2020/lib/core/services/switch-service/switch.service.mjs +16 -16
- package/esm2020/lib/core/services/test-service/test.service.mjs +136 -136
- package/esm2020/lib/core/services/user-service/user-service.mjs +84 -84
- package/esm2020/lib/core/utils/base-service/base.service.mjs +153 -153
- package/esm2020/lib/core/utils/route-service/route.service.mjs +18 -18
- package/esm2020/lib/design-system.module.mjs +36 -36
- package/esm2020/public-api.mjs +56 -45
- package/fesm2015/iptdevs-design-system.mjs +1782 -1657
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +1779 -1654
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/iptdevs-design-system.d.ts +5 -5
- package/lib/components/atoms/aside-button/aside-button.component.d.ts +11 -11
- package/lib/components/atoms/button/button.component.d.ts +13 -13
- package/lib/components/atoms/checkbox/checkbox.component.d.ts +11 -11
- package/lib/components/atoms/datalist/datalist.component.d.ts +20 -20
- package/lib/components/atoms/input/input.component.d.ts +24 -24
- package/lib/components/atoms/level-button/level-button.component.d.ts +11 -11
- package/lib/components/atoms/level-text/level-text.component.d.ts +7 -7
- package/lib/components/atoms/radio/radio.component.d.ts +11 -11
- package/lib/components/atoms/select/select.component.d.ts +24 -24
- package/lib/components/atoms/text-link/text-link.component.d.ts +12 -12
- package/lib/components/components.module.d.ts +22 -22
- package/lib/components/forms/login-form/login-form.component.d.ts +13 -13
- package/lib/components/material.module.d.ts +10 -10
- package/lib/components/molecules/sidenav/sidenav.component.d.ts +22 -22
- package/lib/core/core.module.d.ts +6 -6
- package/lib/core/models/activities/activities.interface.d.ts +6 -0
- package/lib/core/models/attendance/attendance.interface.d.ts +44 -0
- package/lib/core/models/budget/budget.model.d.ts +69 -69
- package/lib/core/models/calendar/calendar-rq.models.d.ts +27 -0
- package/lib/core/models/cod/cod-rq.model.d.ts +51 -51
- package/lib/core/models/course/course-rq.model.d.ts +86 -78
- package/lib/core/models/cronogram/cronogram.models.d.ts +71 -0
- package/lib/core/models/marketing/marketing.model.d.ts +104 -104
- package/lib/core/models/notes/notes.interface.d.ts +59 -0
- package/lib/core/models/response/response.interface.d.ts +10 -0
- package/lib/core/models/session/session.model.d.ts +5 -5
- package/lib/core/models/student/student.interface.d.ts +4 -0
- package/lib/core/models/table/table-rs.model.d.ts +7 -7
- package/lib/core/models/test/test.model.d.ts +219 -219
- package/lib/core/models/url/url.model.d.ts +8 -8
- package/lib/core/models/user/user-rq.model.d.ts +91 -72
- package/lib/core/models/user/user-rs.model.d.ts +35 -35
- package/lib/core/services/attendance-service/attendance.service.d.ts +8 -0
- package/lib/core/services/budget-service/budget-service.d.ts +16 -16
- package/lib/core/services/calendar-service/calendar.service.d.ts +15 -0
- package/lib/core/services/course-service/course-service.model.d.ts +24 -19
- package/lib/core/services/marketing-service/marketing-service.d.ts +20 -20
- package/lib/core/services/notes-service/notes.service.d.ts +17 -0
- package/lib/core/services/parameters-service/parameters.service.d.ts +33 -33
- package/lib/core/services/storage-service/storage-service.d.ts +18 -18
- package/lib/core/services/student-service/student.service.d.ts +14 -0
- package/lib/core/services/switch-service/switch.service.d.ts +8 -8
- package/lib/core/services/test-service/test.service.d.ts +35 -35
- package/lib/core/services/user-service/user-service.d.ts +26 -26
- package/lib/core/utils/base-service/base.service.d.ts +18 -18
- package/lib/core/utils/route-service/route.service.d.ts +9 -9
- package/lib/design-system.module.d.ts +9 -9
- package/package.json +3 -3
- package/public-api.d.ts +47 -36
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class AttendanceService {
|
|
4
|
+
private http;
|
|
5
|
+
constructor(http: HttpClient);
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AttendanceService, never>;
|
|
7
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AttendanceService>;
|
|
8
|
+
}
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { HttpClient } from '@angular/common/http';
|
|
2
|
-
import { Observable } from 'rxjs';
|
|
3
|
-
import { getdiscountAllRq, DiscountRq, DiscountUpdateRq } from '../../models/budget/budget.model';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class BudgetService {
|
|
6
|
-
private http;
|
|
7
|
-
private SERVICE_URL;
|
|
8
|
-
httpOptions: any;
|
|
9
|
-
constructor(http: HttpClient);
|
|
10
|
-
getAllDiscount(user: getdiscountAllRq): Observable<any>;
|
|
11
|
-
createDiscount(params: DiscountRq): Observable<any>;
|
|
12
|
-
updateDiscount(params: DiscountUpdateRq): Observable<any>;
|
|
13
|
-
private generateRequestParams;
|
|
14
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<BudgetService, never>;
|
|
15
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<BudgetService>;
|
|
16
|
-
}
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { getdiscountAllRq, DiscountRq, DiscountUpdateRq } from '../../models/budget/budget.model';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class BudgetService {
|
|
6
|
+
private http;
|
|
7
|
+
private SERVICE_URL;
|
|
8
|
+
httpOptions: any;
|
|
9
|
+
constructor(http: HttpClient);
|
|
10
|
+
getAllDiscount(user: getdiscountAllRq): Observable<any>;
|
|
11
|
+
createDiscount(params: DiscountRq): Observable<any>;
|
|
12
|
+
updateDiscount(params: DiscountUpdateRq): Observable<any>;
|
|
13
|
+
private generateRequestParams;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BudgetService, never>;
|
|
15
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<BudgetService>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { eventqueryRq } from '../../models/calendar/calendar-rq.models';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class CalendarService {
|
|
6
|
+
private http;
|
|
7
|
+
private SERVICE_URL;
|
|
8
|
+
httpOptions: any;
|
|
9
|
+
constructor(http: HttpClient);
|
|
10
|
+
getEventByIdCalendar(idCalendar: string): Observable<any>;
|
|
11
|
+
postEventByDayTime(params: eventqueryRq): Observable<any>;
|
|
12
|
+
private generateRequestParams;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CalendarService, never>;
|
|
14
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CalendarService>;
|
|
15
|
+
}
|
|
@@ -1,19 +1,24 @@
|
|
|
1
|
-
import { HttpClient } from '@angular/common/http';
|
|
2
|
-
import { Observable } from 'rxjs';
|
|
3
|
-
import { CreateCourseRq, EditCourseRq, GetAvailibleCoursesRq, GetCourseByCodeRq, GetCoursesRq } from '../../models/course/course-rq.model';
|
|
4
|
-
import
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
private
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { CreateCourseRq, EditCourseRq, GetAvailibleCoursesRq, GetCourseByCodeRq, GetCoursesByTeacherRq, GetCoursesRq } from '../../models/course/course-rq.model';
|
|
4
|
+
import { CourseStartDateRq } from '../../models/cronogram/cronogram.models';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class CourseService {
|
|
7
|
+
private http;
|
|
8
|
+
private SERVICE_URL;
|
|
9
|
+
httpOptions: any;
|
|
10
|
+
constructor(http: HttpClient);
|
|
11
|
+
createCourse(course: CreateCourseRq): Observable<any>;
|
|
12
|
+
editCourse(course: EditCourseRq): Observable<any>;
|
|
13
|
+
getAllCourses(params: GetCoursesRq): Observable<any>;
|
|
14
|
+
getCoursesByLevel(params: GetCoursesRq): Observable<any>;
|
|
15
|
+
getAvailibleCourses(availibleCourses: GetAvailibleCoursesRq): Observable<any>;
|
|
16
|
+
getCourseByCode(params: GetCourseByCodeRq): Observable<any>;
|
|
17
|
+
getCoursesByTeacher(params: GetCoursesByTeacherRq): Observable<any>;
|
|
18
|
+
getFilteredCoursesByTeacher(params: GetCoursesByTeacherRq): Observable<any>;
|
|
19
|
+
getCoursesByStartDate(params: CourseStartDateRq): Observable<any>;
|
|
20
|
+
numberClassByCode(idCode: number): Observable<any>;
|
|
21
|
+
private generateRequestParams;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CourseService, never>;
|
|
23
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CourseService>;
|
|
24
|
+
}
|
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
import { HttpClient } from '@angular/common/http';
|
|
2
|
-
import { Observable } from 'rxjs';
|
|
3
|
-
import { getStrategyByUserCommercialRq, CreateObservationsRq } from '../../models/marketing/marketing.model';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class MarketingService {
|
|
6
|
-
private http;
|
|
7
|
-
private SERVICE_URL;
|
|
8
|
-
httpOptions: any;
|
|
9
|
-
constructor(http: HttpClient);
|
|
10
|
-
getStrategyByUserCommercial(user: getStrategyByUserCommercialRq): Observable<any>;
|
|
11
|
-
getObservationsContact(codeContact: number): Observable<any>;
|
|
12
|
-
createObservations(params: CreateObservationsRq): Observable<any>;
|
|
13
|
-
getUserStatistics(userToken: getStrategyByUserCommercialRq): Observable<any>;
|
|
14
|
-
getTopAdviser(): Observable<any>;
|
|
15
|
-
getMovementStatus(): Observable<any>;
|
|
16
|
-
getgroupSignupStatus(): Observable<any>;
|
|
17
|
-
private generateRequestParams;
|
|
18
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MarketingService, never>;
|
|
19
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<MarketingService>;
|
|
20
|
-
}
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { getStrategyByUserCommercialRq, CreateObservationsRq } from '../../models/marketing/marketing.model';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class MarketingService {
|
|
6
|
+
private http;
|
|
7
|
+
private SERVICE_URL;
|
|
8
|
+
httpOptions: any;
|
|
9
|
+
constructor(http: HttpClient);
|
|
10
|
+
getStrategyByUserCommercial(user: getStrategyByUserCommercialRq): Observable<any>;
|
|
11
|
+
getObservationsContact(codeContact: number): Observable<any>;
|
|
12
|
+
createObservations(params: CreateObservationsRq): Observable<any>;
|
|
13
|
+
getUserStatistics(userToken: getStrategyByUserCommercialRq): Observable<any>;
|
|
14
|
+
getTopAdviser(): Observable<any>;
|
|
15
|
+
getMovementStatus(): Observable<any>;
|
|
16
|
+
getgroupSignupStatus(): Observable<any>;
|
|
17
|
+
private generateRequestParams;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MarketingService, never>;
|
|
19
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MarketingService>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { CreateNewNoteRq, GetNotesByGroupRq, GetNotesByStudentRq } from '../../models/notes/notes.interface';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
import { Response } from '../../models/response/response.interface';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class NotesService {
|
|
7
|
+
private http;
|
|
8
|
+
private SERVICE_URL;
|
|
9
|
+
httpOptions: any;
|
|
10
|
+
constructor(http: HttpClient);
|
|
11
|
+
getNotesByGroup(params: GetNotesByGroupRq): Observable<Response>;
|
|
12
|
+
getNotesByStudent(params: GetNotesByStudentRq): Observable<Response>;
|
|
13
|
+
createNewNote(params: CreateNewNoteRq): Observable<Response>;
|
|
14
|
+
private generateRequestParams;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NotesService, never>;
|
|
16
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<NotesService>;
|
|
17
|
+
}
|
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
import { HttpClient } from '@angular/common/http';
|
|
2
|
-
import { Observable } from 'rxjs';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class ParameterService {
|
|
5
|
-
private http;
|
|
6
|
-
private SERVICE_URL;
|
|
7
|
-
constructor(http: HttpClient);
|
|
8
|
-
getIndicatives(): Observable<any>;
|
|
9
|
-
getCardTypes(country: string): Observable<any>;
|
|
10
|
-
getCountries(): Observable<any>;
|
|
11
|
-
getStatesByCountry(country: string): Observable<any>;
|
|
12
|
-
getCitiesByState(state: number): Observable<any>;
|
|
13
|
-
getAllPlans(): Observable<any>;
|
|
14
|
-
getLevels(): Observable<any>;
|
|
15
|
-
getAgreements(): Observable<any>;
|
|
16
|
-
getAgreementByCategory(typeCategory: any): Observable<any>;
|
|
17
|
-
getAllClassrooms(): Observable<any>;
|
|
18
|
-
getCoursesTypes(): Observable<any>;
|
|
19
|
-
getCoursesTypesByPlan(typePlan: any): Observable<any>;
|
|
20
|
-
getDegrees(): Observable<any>;
|
|
21
|
-
getProgramsByDegree(typeDegree: any): Observable<any>;
|
|
22
|
-
getMarketingReasons(): Observable<any>;
|
|
23
|
-
getStudyReasons(): Observable<any>;
|
|
24
|
-
getAcademicUnits(): Observable<any>;
|
|
25
|
-
getStatusContact(): Observable<any>;
|
|
26
|
-
getTypePlan(): Observable<any>;
|
|
27
|
-
getTypePlanDiscount(): Observable<any>;
|
|
28
|
-
getContactedType(): Observable<any>;
|
|
29
|
-
getStatusByCode(codeStatus: number): Observable<any>;
|
|
30
|
-
getAllTypeDiscount(): Observable<any>;
|
|
31
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ParameterService, never>;
|
|
32
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<ParameterService>;
|
|
33
|
-
}
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ParameterService {
|
|
5
|
+
private http;
|
|
6
|
+
private SERVICE_URL;
|
|
7
|
+
constructor(http: HttpClient);
|
|
8
|
+
getIndicatives(): Observable<any>;
|
|
9
|
+
getCardTypes(country: string): Observable<any>;
|
|
10
|
+
getCountries(): Observable<any>;
|
|
11
|
+
getStatesByCountry(country: string): Observable<any>;
|
|
12
|
+
getCitiesByState(state: number): Observable<any>;
|
|
13
|
+
getAllPlans(): Observable<any>;
|
|
14
|
+
getLevels(): Observable<any>;
|
|
15
|
+
getAgreements(): Observable<any>;
|
|
16
|
+
getAgreementByCategory(typeCategory: any): Observable<any>;
|
|
17
|
+
getAllClassrooms(): Observable<any>;
|
|
18
|
+
getCoursesTypes(): Observable<any>;
|
|
19
|
+
getCoursesTypesByPlan(typePlan: any): Observable<any>;
|
|
20
|
+
getDegrees(): Observable<any>;
|
|
21
|
+
getProgramsByDegree(typeDegree: any): Observable<any>;
|
|
22
|
+
getMarketingReasons(): Observable<any>;
|
|
23
|
+
getStudyReasons(): Observable<any>;
|
|
24
|
+
getAcademicUnits(): Observable<any>;
|
|
25
|
+
getStatusContact(): Observable<any>;
|
|
26
|
+
getTypePlan(): Observable<any>;
|
|
27
|
+
getTypePlanDiscount(): Observable<any>;
|
|
28
|
+
getContactedType(): Observable<any>;
|
|
29
|
+
getStatusByCode(codeStatus: number): Observable<any>;
|
|
30
|
+
getAllTypeDiscount(): Observable<any>;
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ParameterService, never>;
|
|
32
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ParameterService>;
|
|
33
|
+
}
|
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import { Session } from "../../models/session/session.model";
|
|
2
|
-
import { UserRs } from "../../models/user/user-rs.model";
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class StorageService {
|
|
5
|
-
private localStorageService;
|
|
6
|
-
private currentSession;
|
|
7
|
-
constructor();
|
|
8
|
-
setCurrentSession(session: Session): void;
|
|
9
|
-
loadSessionData(): Session | null;
|
|
10
|
-
getCurrentSession(): Session | null;
|
|
11
|
-
removeCurrentSession(): void;
|
|
12
|
-
getCurrentUser(): UserRs | null;
|
|
13
|
-
isAuthenticated(): boolean;
|
|
14
|
-
getCurrentToken(): string | null;
|
|
15
|
-
logout(): void;
|
|
16
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<StorageService, never>;
|
|
17
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<StorageService>;
|
|
18
|
-
}
|
|
1
|
+
import { Session } from "../../models/session/session.model";
|
|
2
|
+
import { UserRs } from "../../models/user/user-rs.model";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class StorageService {
|
|
5
|
+
private localStorageService;
|
|
6
|
+
private currentSession;
|
|
7
|
+
constructor();
|
|
8
|
+
setCurrentSession(session: Session): void;
|
|
9
|
+
loadSessionData(): Session | null;
|
|
10
|
+
getCurrentSession(): Session | null;
|
|
11
|
+
removeCurrentSession(): void;
|
|
12
|
+
getCurrentUser(): UserRs | null;
|
|
13
|
+
isAuthenticated(): boolean;
|
|
14
|
+
getCurrentToken(): string | null;
|
|
15
|
+
logout(): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StorageService, never>;
|
|
17
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<StorageService>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { GetStudentsByCourseRq } from '../../models/student/student.interface';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class StudentService {
|
|
6
|
+
private http;
|
|
7
|
+
private SERVICE_URL;
|
|
8
|
+
httpOptions: any;
|
|
9
|
+
constructor(http: HttpClient);
|
|
10
|
+
getStudentsByCourse(params: GetStudentsByCourseRq): Observable<any>;
|
|
11
|
+
private generateRequestParams;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StudentService, never>;
|
|
13
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<StudentService>;
|
|
14
|
+
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class SwitchService {
|
|
4
|
-
constructor();
|
|
5
|
-
$modal: EventEmitter<any>;
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SwitchService, never>;
|
|
7
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<SwitchService>;
|
|
8
|
-
}
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class SwitchService {
|
|
4
|
+
constructor();
|
|
5
|
+
$modal: EventEmitter<any>;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SwitchService, never>;
|
|
7
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SwitchService>;
|
|
8
|
+
}
|
|
@@ -1,35 +1,35 @@
|
|
|
1
|
-
import { HttpClient } from '@angular/common/http';
|
|
2
|
-
import { Observable } from 'rxjs';
|
|
3
|
-
import { CopyExamRq, CreateAnswerRq, CreateQuestionRq, CreateSectionRq, CreateSectionWithAllRq, Exam, GetAllExamsRq, GetAllSectionsRq, GetQuestionsBySectionRq, getQuestionsBySectionsRq, UpdateAnswerRq, UpdateExamRq, UpdateExamStatusRq, UpdateQuestionRq, UpdateQuestionStateRq, UpdateSectionMediaRq, UpdateSectionRq, UpdateSectionStateRq } from '../../models/test/test.model';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class TestService {
|
|
6
|
-
private http;
|
|
7
|
-
private SERVICE_URL;
|
|
8
|
-
httpOptions: any;
|
|
9
|
-
constructor(http: HttpClient);
|
|
10
|
-
createExam(exam: Exam): Observable<any>;
|
|
11
|
-
getAllExams(params: GetAllExamsRq): Observable<any>;
|
|
12
|
-
updateExam(params: UpdateExamRq): Observable<any>;
|
|
13
|
-
updateExamStatus(params: UpdateExamStatusRq): Observable<any>;
|
|
14
|
-
copyExam(params: CopyExamRq): Observable<any>;
|
|
15
|
-
getExamByCode(code: number): Observable<any>;
|
|
16
|
-
getExamByAuthor(code: number): Observable<any>;
|
|
17
|
-
createSectionWithAll(params: CreateSectionWithAllRq): Observable<any>;
|
|
18
|
-
createSection(params: CreateSectionRq): Observable<any>;
|
|
19
|
-
getAllSections(params: GetAllSectionsRq): Observable<any>;
|
|
20
|
-
updateSection(params: UpdateSectionRq): Observable<any>;
|
|
21
|
-
updateSectionMedia(params: UpdateSectionMediaRq): Observable<any>;
|
|
22
|
-
updateSectionState(params: UpdateSectionStateRq): Observable<any>;
|
|
23
|
-
getSectionsByExam(code: number): Observable<any>;
|
|
24
|
-
createQuestion(params: CreateQuestionRq): Observable<any>;
|
|
25
|
-
updateQuestion(params: UpdateQuestionRq): Observable<any>;
|
|
26
|
-
getQuestionsBySections(params: getQuestionsBySectionsRq): Observable<any>;
|
|
27
|
-
getQuestionsBySection(params: GetQuestionsBySectionRq): Observable<any>;
|
|
28
|
-
createAnswer(params: CreateAnswerRq): Observable<any>;
|
|
29
|
-
updateAnswer(params: UpdateAnswerRq): Observable<any>;
|
|
30
|
-
getAnswersByQuestion(code: number): Observable<any>;
|
|
31
|
-
updateQuestionState(params: UpdateQuestionStateRq): Observable<any>;
|
|
32
|
-
private generateRequestParams;
|
|
33
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TestService, never>;
|
|
34
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<TestService>;
|
|
35
|
-
}
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { CopyExamRq, CreateAnswerRq, CreateQuestionRq, CreateSectionRq, CreateSectionWithAllRq, Exam, GetAllExamsRq, GetAllSectionsRq, GetQuestionsBySectionRq, getQuestionsBySectionsRq, UpdateAnswerRq, UpdateExamRq, UpdateExamStatusRq, UpdateQuestionRq, UpdateQuestionStateRq, UpdateSectionMediaRq, UpdateSectionRq, UpdateSectionStateRq } from '../../models/test/test.model';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class TestService {
|
|
6
|
+
private http;
|
|
7
|
+
private SERVICE_URL;
|
|
8
|
+
httpOptions: any;
|
|
9
|
+
constructor(http: HttpClient);
|
|
10
|
+
createExam(exam: Exam): Observable<any>;
|
|
11
|
+
getAllExams(params: GetAllExamsRq): Observable<any>;
|
|
12
|
+
updateExam(params: UpdateExamRq): Observable<any>;
|
|
13
|
+
updateExamStatus(params: UpdateExamStatusRq): Observable<any>;
|
|
14
|
+
copyExam(params: CopyExamRq): Observable<any>;
|
|
15
|
+
getExamByCode(code: number): Observable<any>;
|
|
16
|
+
getExamByAuthor(code: number): Observable<any>;
|
|
17
|
+
createSectionWithAll(params: CreateSectionWithAllRq): Observable<any>;
|
|
18
|
+
createSection(params: CreateSectionRq): Observable<any>;
|
|
19
|
+
getAllSections(params: GetAllSectionsRq): Observable<any>;
|
|
20
|
+
updateSection(params: UpdateSectionRq): Observable<any>;
|
|
21
|
+
updateSectionMedia(params: UpdateSectionMediaRq): Observable<any>;
|
|
22
|
+
updateSectionState(params: UpdateSectionStateRq): Observable<any>;
|
|
23
|
+
getSectionsByExam(code: number): Observable<any>;
|
|
24
|
+
createQuestion(params: CreateQuestionRq): Observable<any>;
|
|
25
|
+
updateQuestion(params: UpdateQuestionRq): Observable<any>;
|
|
26
|
+
getQuestionsBySections(params: getQuestionsBySectionsRq): Observable<any>;
|
|
27
|
+
getQuestionsBySection(params: GetQuestionsBySectionRq): Observable<any>;
|
|
28
|
+
createAnswer(params: CreateAnswerRq): Observable<any>;
|
|
29
|
+
updateAnswer(params: UpdateAnswerRq): Observable<any>;
|
|
30
|
+
getAnswersByQuestion(code: number): Observable<any>;
|
|
31
|
+
updateQuestionState(params: UpdateQuestionStateRq): Observable<any>;
|
|
32
|
+
private generateRequestParams;
|
|
33
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TestService, never>;
|
|
34
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TestService>;
|
|
35
|
+
}
|
|
@@ -1,26 +1,26 @@
|
|
|
1
|
-
import { HttpClient } from '@angular/common/http';
|
|
2
|
-
import { Observable } from 'rxjs';
|
|
3
|
-
import { RegisterIndexRq, RegisterDashboardRq, UserTokenRq, ForgotPasswordRq, LoginRq, RegisterRq, getStudentRq } from '../../models/user/user-rq.model';
|
|
4
|
-
import { getStrategyByUserCommercialRq } from '../../models/marketing/marketing.model';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class UserService {
|
|
7
|
-
private http;
|
|
8
|
-
private SERVICE_URL;
|
|
9
|
-
httpOptions: any;
|
|
10
|
-
constructor(http: HttpClient);
|
|
11
|
-
login(userLogin: LoginRq): Observable<any>;
|
|
12
|
-
resetPassword(resetPassword: ForgotPasswordRq): Observable<any>;
|
|
13
|
-
register(user: RegisterRq): Observable<any>;
|
|
14
|
-
registerIndex(register: RegisterIndexRq): Observable<any>;
|
|
15
|
-
registerDashboard(user: RegisterDashboardRq): Observable<any>;
|
|
16
|
-
getAvailableTeachers(token: UserTokenRq): Observable<any>;
|
|
17
|
-
getAllAdvisor(userToken: getStrategyByUserCommercialRq): Observable<any>;
|
|
18
|
-
getByRoleUser(codeRole: number): Observable<any>;
|
|
19
|
-
getUserStatistics(userToken: getStrategyByUserCommercialRq): Observable<any>;
|
|
20
|
-
getRoutesForRole(token: UserTokenRq): Observable<any>;
|
|
21
|
-
getStudents(token: UserTokenRq): Observable<any>;
|
|
22
|
-
getStudent(token: getStudentRq): Observable<any>;
|
|
23
|
-
private generateRequestParams;
|
|
24
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<UserService, never>;
|
|
25
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<UserService>;
|
|
26
|
-
}
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { RegisterIndexRq, RegisterDashboardRq, UserTokenRq, ForgotPasswordRq, LoginRq, RegisterRq, getStudentRq } from '../../models/user/user-rq.model';
|
|
4
|
+
import { getStrategyByUserCommercialRq } from '../../models/marketing/marketing.model';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class UserService {
|
|
7
|
+
private http;
|
|
8
|
+
private SERVICE_URL;
|
|
9
|
+
httpOptions: any;
|
|
10
|
+
constructor(http: HttpClient);
|
|
11
|
+
login(userLogin: LoginRq): Observable<any>;
|
|
12
|
+
resetPassword(resetPassword: ForgotPasswordRq): Observable<any>;
|
|
13
|
+
register(user: RegisterRq): Observable<any>;
|
|
14
|
+
registerIndex(register: RegisterIndexRq): Observable<any>;
|
|
15
|
+
registerDashboard(user: RegisterDashboardRq): Observable<any>;
|
|
16
|
+
getAvailableTeachers(token: UserTokenRq): Observable<any>;
|
|
17
|
+
getAllAdvisor(userToken: getStrategyByUserCommercialRq): Observable<any>;
|
|
18
|
+
getByRoleUser(codeRole: number): Observable<any>;
|
|
19
|
+
getUserStatistics(userToken: getStrategyByUserCommercialRq): Observable<any>;
|
|
20
|
+
getRoutesForRole(token: UserTokenRq): Observable<any>;
|
|
21
|
+
getStudents(token: UserTokenRq): Observable<any>;
|
|
22
|
+
getStudent(token: getStudentRq): Observable<any>;
|
|
23
|
+
private generateRequestParams;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UserService, never>;
|
|
25
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<UserService>;
|
|
26
|
+
}
|
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import { RegisterDashboardRq } from '../../models/user/user-rq.model';
|
|
2
|
-
import { UserService } from '../../services/user-service/user-service';
|
|
3
|
-
import { StorageService } from '../../services/storage-service/storage-service';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class BaseService {
|
|
6
|
-
private userService;
|
|
7
|
-
private storageService;
|
|
8
|
-
constructor(userService: UserService, storageService: StorageService);
|
|
9
|
-
webLogin(user: string, password: string): Promise<boolean>;
|
|
10
|
-
getUserRole(): number;
|
|
11
|
-
getUserToken(): string;
|
|
12
|
-
getUserName(): string;
|
|
13
|
-
registerUserFromDashboard(registerDashboardRq: RegisterDashboardRq): Promise<boolean>;
|
|
14
|
-
jsonToArray(data: any[]): any[][];
|
|
15
|
-
subJsonToArray(data: any[]): string;
|
|
16
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<BaseService, never>;
|
|
17
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<BaseService>;
|
|
18
|
-
}
|
|
1
|
+
import { RegisterDashboardRq } from '../../models/user/user-rq.model';
|
|
2
|
+
import { UserService } from '../../services/user-service/user-service';
|
|
3
|
+
import { StorageService } from '../../services/storage-service/storage-service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class BaseService {
|
|
6
|
+
private userService;
|
|
7
|
+
private storageService;
|
|
8
|
+
constructor(userService: UserService, storageService: StorageService);
|
|
9
|
+
webLogin(user: string, password: string): Promise<boolean>;
|
|
10
|
+
getUserRole(): number;
|
|
11
|
+
getUserToken(): string;
|
|
12
|
+
getUserName(): string;
|
|
13
|
+
registerUserFromDashboard(registerDashboardRq: RegisterDashboardRq): Promise<boolean>;
|
|
14
|
+
jsonToArray(data: any[]): any[][];
|
|
15
|
+
subJsonToArray(data: any[]): string;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BaseService, never>;
|
|
17
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<BaseService>;
|
|
18
|
+
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { CanActivate, ActivatedRouteSnapshot, Router, RouterStateSnapshot } from '@angular/router';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class RedirectGuard implements CanActivate {
|
|
4
|
-
private router;
|
|
5
|
-
constructor(router: Router);
|
|
6
|
-
canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): boolean;
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<RedirectGuard, never>;
|
|
8
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<RedirectGuard>;
|
|
9
|
-
}
|
|
1
|
+
import { CanActivate, ActivatedRouteSnapshot, Router, RouterStateSnapshot } from '@angular/router';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class RedirectGuard implements CanActivate {
|
|
4
|
+
private router;
|
|
5
|
+
constructor(router: Router);
|
|
6
|
+
canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): boolean;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RedirectGuard, never>;
|
|
8
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<RedirectGuard>;
|
|
9
|
+
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./components/components.module";
|
|
3
|
-
import * as i2 from "./core/core.module";
|
|
4
|
-
import * as i3 from "ng2-currency-mask";
|
|
5
|
-
export declare class DesignSystemModule {
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DesignSystemModule, never>;
|
|
7
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<DesignSystemModule, never, [typeof i1.ComponentsModule, typeof i2.CoreModule, typeof i3.CurrencyMaskModule], [typeof i1.ComponentsModule, typeof i2.CoreModule, typeof i3.CurrencyMaskModule]>;
|
|
8
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<DesignSystemModule>;
|
|
9
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./components/components.module";
|
|
3
|
+
import * as i2 from "./core/core.module";
|
|
4
|
+
import * as i3 from "ng2-currency-mask";
|
|
5
|
+
export declare class DesignSystemModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DesignSystemModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DesignSystemModule, never, [typeof i1.ComponentsModule, typeof i2.CoreModule, typeof i3.CurrencyMaskModule], [typeof i1.ComponentsModule, typeof i2.CoreModule, typeof i3.CurrencyMaskModule]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<DesignSystemModule>;
|
|
9
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "iptdevs-design-system",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.0",
|
|
4
4
|
"description": "Library common elements into IPT Plattform.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"IPT",
|
|
@@ -10,9 +10,9 @@
|
|
|
10
10
|
],
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"author": {
|
|
13
|
-
"name": "Academia
|
|
13
|
+
"name": "Academia Inglés Para Todos S.A.S",
|
|
14
14
|
"email": "development@inglesparatodos.edu.co",
|
|
15
|
-
"url": "https
|
|
15
|
+
"url": "https://inglesparatodos.edu.co"
|
|
16
16
|
},
|
|
17
17
|
"peerDependencies": {
|
|
18
18
|
"@angular/common": "^13.1.0",
|
package/public-api.d.ts
CHANGED
|
@@ -1,36 +1,47 @@
|
|
|
1
|
-
export * from "./lib/design-system.module";
|
|
2
|
-
export * from "./lib/components/components.module";
|
|
3
|
-
export * from "./lib/core/core.module";
|
|
4
|
-
export * from "./lib/components/atoms/aside-button/aside-button.component";
|
|
5
|
-
export * from "./lib/components/atoms/button/button.component";
|
|
6
|
-
export * from "./lib/components/atoms/checkbox/checkbox.component";
|
|
7
|
-
export * from "./lib/components/atoms/datalist/datalist.component";
|
|
8
|
-
export * from "./lib/components/atoms/input/input.component";
|
|
9
|
-
export * from "./lib/components/atoms/level-button/level-button.component";
|
|
10
|
-
export * from "./lib/components/atoms/level-text/level-text.component";
|
|
11
|
-
export * from "./lib/components/atoms/radio/radio.component";
|
|
12
|
-
export * from "./lib/components/atoms/select/select.component";
|
|
13
|
-
export * from "./lib/components/atoms/text-link/text-link.component";
|
|
14
|
-
export * from "./lib/components/forms/login-form/login-form.component";
|
|
15
|
-
export * from "./lib/components/molecules/sidenav/sidenav.component";
|
|
16
|
-
export * from "./lib/core/services/
|
|
17
|
-
export * from "./lib/core/services/
|
|
18
|
-
export * from "./lib/core/services/
|
|
19
|
-
export * from "./lib/core/services/
|
|
20
|
-
export * from "./lib/core/services/
|
|
21
|
-
export * from "./lib/core/services/
|
|
22
|
-
export * from "./lib/core/services/
|
|
23
|
-
export * from "./lib/core/services/
|
|
24
|
-
export * from "./lib/core/
|
|
25
|
-
export * from "./lib/core/
|
|
26
|
-
export * from "./lib/core/
|
|
27
|
-
export * from "./lib/core/
|
|
28
|
-
export * from "./lib/core/
|
|
29
|
-
export * from "./lib/core/
|
|
30
|
-
export * from "./lib/core/models/
|
|
31
|
-
export * from "./lib/core/models/
|
|
32
|
-
export * from "./lib/core/models/
|
|
33
|
-
export * from "./lib/core/models/
|
|
34
|
-
export * from "./lib/core/models/
|
|
35
|
-
export * from "./lib/core/models/
|
|
36
|
-
export * from "./lib/
|
|
1
|
+
export * from "./lib/design-system.module";
|
|
2
|
+
export * from "./lib/components/components.module";
|
|
3
|
+
export * from "./lib/core/core.module";
|
|
4
|
+
export * from "./lib/components/atoms/aside-button/aside-button.component";
|
|
5
|
+
export * from "./lib/components/atoms/button/button.component";
|
|
6
|
+
export * from "./lib/components/atoms/checkbox/checkbox.component";
|
|
7
|
+
export * from "./lib/components/atoms/datalist/datalist.component";
|
|
8
|
+
export * from "./lib/components/atoms/input/input.component";
|
|
9
|
+
export * from "./lib/components/atoms/level-button/level-button.component";
|
|
10
|
+
export * from "./lib/components/atoms/level-text/level-text.component";
|
|
11
|
+
export * from "./lib/components/atoms/radio/radio.component";
|
|
12
|
+
export * from "./lib/components/atoms/select/select.component";
|
|
13
|
+
export * from "./lib/components/atoms/text-link/text-link.component";
|
|
14
|
+
export * from "./lib/components/forms/login-form/login-form.component";
|
|
15
|
+
export * from "./lib/components/molecules/sidenav/sidenav.component";
|
|
16
|
+
export * from "./lib/core/services/attendance-service/attendance.service";
|
|
17
|
+
export * from "./lib/core/services/budget-service/budget-service";
|
|
18
|
+
export * from "./lib/core/services/course-service/course-service.model";
|
|
19
|
+
export * from "./lib/core/services/calendar-service/calendar.service";
|
|
20
|
+
export * from "./lib/core/services/marketing-service/marketing-service";
|
|
21
|
+
export * from "./lib/core/services/notes-service/notes.service";
|
|
22
|
+
export * from "./lib/core/services/parameters-service/parameters.service";
|
|
23
|
+
export * from "./lib/core/services/student-service/student.service";
|
|
24
|
+
export * from "./lib/core/services/storage-service/storage-service";
|
|
25
|
+
export * from "./lib/core/services/switch-service/switch.service";
|
|
26
|
+
export * from "./lib/core/services/test-service/test.service";
|
|
27
|
+
export * from "./lib/core/services/user-service/user-service";
|
|
28
|
+
export * from "./lib/core/utils/base-service/base.service";
|
|
29
|
+
export * from "./lib/core/utils/route-service/route.service";
|
|
30
|
+
export * from "./lib/core/models/activities/activities.interface";
|
|
31
|
+
export * from "./lib/core/models/attendance/attendance.interface";
|
|
32
|
+
export * from "./lib/core/models/budget/budget.model";
|
|
33
|
+
export * from "./lib/core/models/cod/cod-rq.model";
|
|
34
|
+
export * from "./lib/core/models/calendar/calendar-rq.models";
|
|
35
|
+
export * from "./lib/core/models/cronogram/cronogram.models";
|
|
36
|
+
export * from "./lib/core/models/course/course-rq.model";
|
|
37
|
+
export * from "./lib/core/models/marketing/marketing.model";
|
|
38
|
+
export * from "./lib/core/models/notes/notes.interface";
|
|
39
|
+
export * from "./lib/core/models/response/response.interface";
|
|
40
|
+
export * from "./lib/core/models/session/session.model";
|
|
41
|
+
export * from "./lib/core/models/student/student.interface";
|
|
42
|
+
export * from "./lib/core/models/table/table-rs.model";
|
|
43
|
+
export * from "./lib/core/models/test/test.model";
|
|
44
|
+
export * from "./lib/core/models/url/url.model";
|
|
45
|
+
export * from "./lib/core/models/user/user-rq.model";
|
|
46
|
+
export * from "./lib/core/models/user/user-rs.model";
|
|
47
|
+
export * from "./lib/components/components.module";
|