iptdevs-design-system 2.2.4 → 2.2.7
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 +5 -5
- package/esm2020/lib/components/atoms/aside-button/aside-button.component.mjs +50 -50
- package/esm2020/lib/components/atoms/button/button.component.mjs +66 -64
- package/esm2020/lib/components/atoms/checkbox/checkbox.component.mjs +47 -47
- package/esm2020/lib/components/atoms/datalist/datalist.component.mjs +88 -88
- package/esm2020/lib/components/atoms/input/input.component.mjs +109 -109
- 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 +87 -87
- package/esm2020/lib/components/atoms/text-link/text-link.component.mjs +39 -39
- package/esm2020/lib/components/components.module.mjs +96 -96
- 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 +37 -46
- package/esm2020/lib/core/models/budget/budget.model.mjs +2 -2
- 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/marketing/marketing.modal.mjs +2 -2
- package/esm2020/lib/core/models/session/session.model.mjs +3 -3
- 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/course-service/course-service.model.mjs +56 -56
- package/esm2020/lib/core/services/parameters-service/parameters.service.mjs +82 -110
- package/esm2020/lib/core/services/storage-service/storage-service.mjs +50 -50
- package/esm2020/lib/core/services/switch-service/switch.service.mjs +16 -16
- package/esm2020/lib/core/services/user-service/user-service.mjs +60 -74
- 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 +29 -29
- package/esm2020/public-api.mjs +40 -43
- package/fesm2015/iptdevs-design-system.mjs +1328 -1595
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +1325 -1592
- 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 +17 -17
- 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 +23 -23
- 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/budget/budget.model.d.ts +69 -69
- package/lib/core/models/cod/cod-rq.model.d.ts +51 -51
- package/lib/core/models/course/course-rq.model.d.ts +77 -77
- package/lib/core/models/marketing/marketing.modal.d.ts +104 -104
- package/lib/core/models/session/session.model.d.ts +5 -5
- package/lib/core/models/table/table-rs.model.d.ts +7 -7
- package/lib/core/models/test/test.model.d.ts +213 -213
- package/lib/core/models/url/url.model.d.ts +8 -8
- package/lib/core/models/user/user-rq.model.d.ts +68 -68
- package/lib/core/models/user/user-rs.model.d.ts +35 -35
- package/lib/core/services/course-service/course-service.model.d.ts +19 -19
- package/lib/core/services/parameters-service/parameters.service.d.ts +26 -33
- package/lib/core/services/storage-service/storage-service.d.ts +18 -18
- package/lib/core/services/switch-service/switch.service.d.ts +8 -8
- package/lib/core/services/user-service/user-service.d.ts +20 -24
- 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 +8 -8
- package/package.json +1 -1
- package/public-api.d.ts +32 -35
- package/esm2020/lib/core/services/budget-service/budget-service.mjs +0 -41
- package/esm2020/lib/core/services/marketing-service/marketing-service.mjs +0 -57
- package/esm2020/lib/core/services/test-service/test.service.mjs +0 -135
- package/lib/core/services/budget-service/budget-service.d.ts +0 -16
- package/lib/core/services/marketing-service/marketing-service.d.ts +0 -20
- package/lib/core/services/test-service/test.service.d.ts +0 -35
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { HttpClient } from '@angular/common/http';
|
|
2
|
-
import { Observable } from 'rxjs';
|
|
3
|
-
import { getStrategyByUserCommercialRq, CreateObservationsRq } from '../../models/marketing/marketing.modal';
|
|
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,35 +0,0 @@
|
|
|
1
|
-
import { HttpClient } from '@angular/common/http';
|
|
2
|
-
import { Observable } from 'rxjs';
|
|
3
|
-
import { CopyExamRq, CreateAnswerRq, CreateQuestionRq, CreateSectionRq, CreateSectionWithAllRq, Exam, GetAllExamsRq, GetAllSectionsRq, 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(code: number): 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
|
-
}
|