iptdevs-design-system 2.2.3 → 2.2.6

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 (82) hide show
  1. package/README.md +24 -24
  2. package/esm2020/iptdevs-design-system.mjs +5 -5
  3. package/esm2020/lib/components/atoms/aside-button/aside-button.component.mjs +50 -50
  4. package/esm2020/lib/components/atoms/button/button.component.mjs +66 -64
  5. package/esm2020/lib/components/atoms/checkbox/checkbox.component.mjs +47 -47
  6. package/esm2020/lib/components/atoms/datalist/datalist.component.mjs +88 -88
  7. package/esm2020/lib/components/atoms/input/input.component.mjs +109 -109
  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 +87 -87
  12. package/esm2020/lib/components/atoms/text-link/text-link.component.mjs +39 -39
  13. package/esm2020/lib/components/components.module.mjs +96 -96
  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 +37 -46
  18. package/esm2020/lib/core/models/cod/cod-rq.model.mjs +2 -2
  19. package/esm2020/lib/core/models/course/course-rq.model.mjs +2 -2
  20. package/esm2020/lib/core/models/session/session.model.mjs +3 -3
  21. package/esm2020/lib/core/models/table/table-rs.model.mjs +2 -2
  22. package/esm2020/lib/core/models/url/url.model.mjs +2 -2
  23. package/esm2020/lib/core/models/user/user-rq.model.mjs +2 -2
  24. package/esm2020/lib/core/models/user/user-rs.model.mjs +5 -5
  25. package/esm2020/lib/core/services/course-service/course-service.model.mjs +56 -56
  26. package/esm2020/lib/core/services/parameters-service/parameters.service.mjs +82 -110
  27. package/esm2020/lib/core/services/storage-service/storage-service.mjs +50 -50
  28. package/esm2020/lib/core/services/switch-service/switch.service.mjs +16 -16
  29. package/esm2020/lib/core/services/user-service/user-service.mjs +60 -74
  30. package/esm2020/lib/core/utils/base-service/base.service.mjs +153 -153
  31. package/esm2020/lib/core/utils/route-service/route.service.mjs +18 -18
  32. package/esm2020/lib/design-system.module.mjs +29 -29
  33. package/esm2020/public-api.mjs +37 -43
  34. package/fesm2015/iptdevs-design-system.mjs +1328 -1595
  35. package/fesm2015/iptdevs-design-system.mjs.map +1 -1
  36. package/fesm2020/iptdevs-design-system.mjs +1325 -1592
  37. package/fesm2020/iptdevs-design-system.mjs.map +1 -1
  38. package/iptdevs-design-system.d.ts +5 -5
  39. package/lib/components/atoms/aside-button/aside-button.component.d.ts +11 -11
  40. package/lib/components/atoms/button/button.component.d.ts +13 -13
  41. package/lib/components/atoms/checkbox/checkbox.component.d.ts +11 -11
  42. package/lib/components/atoms/datalist/datalist.component.d.ts +20 -20
  43. package/lib/components/atoms/input/input.component.d.ts +17 -17
  44. package/lib/components/atoms/level-button/level-button.component.d.ts +11 -11
  45. package/lib/components/atoms/level-text/level-text.component.d.ts +7 -7
  46. package/lib/components/atoms/radio/radio.component.d.ts +11 -11
  47. package/lib/components/atoms/select/select.component.d.ts +23 -23
  48. package/lib/components/atoms/text-link/text-link.component.d.ts +12 -12
  49. package/lib/components/components.module.d.ts +22 -22
  50. package/lib/components/forms/login-form/login-form.component.d.ts +13 -13
  51. package/lib/components/material.module.d.ts +10 -10
  52. package/lib/components/molecules/sidenav/sidenav.component.d.ts +22 -22
  53. package/lib/core/core.module.d.ts +6 -6
  54. package/lib/core/models/cod/cod-rq.model.d.ts +51 -51
  55. package/lib/core/models/course/course-rq.model.d.ts +77 -77
  56. package/lib/core/models/session/session.model.d.ts +5 -5
  57. package/lib/core/models/table/table-rs.model.d.ts +7 -7
  58. package/lib/core/models/url/url.model.d.ts +8 -8
  59. package/lib/core/models/user/user-rq.model.d.ts +68 -68
  60. package/lib/core/models/user/user-rs.model.d.ts +35 -35
  61. package/lib/core/services/course-service/course-service.model.d.ts +19 -19
  62. package/lib/core/services/parameters-service/parameters.service.d.ts +26 -33
  63. package/lib/core/services/storage-service/storage-service.d.ts +18 -18
  64. package/lib/core/services/switch-service/switch.service.d.ts +8 -8
  65. package/lib/core/services/user-service/user-service.d.ts +20 -24
  66. package/lib/core/utils/base-service/base.service.d.ts +18 -18
  67. package/lib/core/utils/route-service/route.service.d.ts +9 -9
  68. package/lib/design-system.module.d.ts +8 -8
  69. package/package.json +1 -1
  70. package/public-api.d.ts +29 -35
  71. package/esm2020/lib/core/models/budget/budget.model.mjs +0 -2
  72. package/esm2020/lib/core/models/marketing/marketing.modal.mjs +0 -2
  73. package/esm2020/lib/core/models/test/test.model.mjs +0 -2
  74. package/esm2020/lib/core/services/budget-service/budget-service.mjs +0 -41
  75. package/esm2020/lib/core/services/marketing-service/marketing-service.mjs +0 -57
  76. package/esm2020/lib/core/services/test-service/test.service.mjs +0 -135
  77. package/lib/core/models/budget/budget.model.d.ts +0 -69
  78. package/lib/core/models/marketing/marketing.modal.d.ts +0 -141
  79. package/lib/core/models/test/test.model.d.ts +0 -213
  80. package/lib/core/services/budget-service/budget-service.d.ts +0 -16
  81. package/lib/core/services/marketing-service/marketing-service.d.ts +0 -20
  82. package/lib/core/services/test-service/test.service.d.ts +0 -35
@@ -1,68 +1,68 @@
1
- export interface UserRq {
2
- name: string;
3
- last_name: string;
4
- id_card: number;
5
- email: string;
6
- phone_indicative: string;
7
- phone_number: number;
8
- password: string;
9
- }
10
- export interface LoginRq {
11
- user: string;
12
- password: string;
13
- }
14
- export interface RegisterRq {
15
- name: string;
16
- last_name: string;
17
- id_card_type: string;
18
- id_card: number;
19
- phone_indicative: string;
20
- phone_number: number;
21
- email: string;
22
- password: string;
23
- city?: number;
24
- gender?: number;
25
- }
26
- export interface RegisterIndexRq {
27
- name: string;
28
- last_name: string;
29
- email: string;
30
- phone_indicative: string;
31
- phone_number: number;
32
- id_card_type: number;
33
- id_card: number;
34
- city: string;
35
- birthdate: string;
36
- comment?: string;
37
- }
38
- export interface RegisterHomeRq {
39
- name: string;
40
- last_name: string;
41
- type_id: string;
42
- id_card: number;
43
- city: string;
44
- date_of_birth: string;
45
- phone: number;
46
- email: string;
47
- comments: string;
48
- }
49
- export interface RegisterDashboardRq {
50
- name: string;
51
- last_name: string;
52
- email: string;
53
- phone_indicative: string;
54
- phone_number: number;
55
- id_card_type: number;
56
- id_card: number;
57
- city: string;
58
- service_hour: number;
59
- role: number;
60
- password: string;
61
- }
62
- export interface UserTokenRq {
63
- token: string;
64
- }
65
- export interface ForgotPasswordRq {
66
- email: string;
67
- id_card: number;
68
- }
1
+ export interface UserRq {
2
+ name: string;
3
+ last_name: string;
4
+ id_card: number;
5
+ email: string;
6
+ phone_indicative: string;
7
+ phone_number: number;
8
+ password: string;
9
+ }
10
+ export interface LoginRq {
11
+ user: string;
12
+ password: string;
13
+ }
14
+ export interface RegisterRq {
15
+ name: string;
16
+ last_name: string;
17
+ id_card_type: string;
18
+ id_card: number;
19
+ phone_indicative: string;
20
+ phone_number: number;
21
+ email: string;
22
+ password: string;
23
+ city?: number;
24
+ gender?: number;
25
+ }
26
+ export interface RegisterIndexRq {
27
+ name: string;
28
+ last_name: string;
29
+ email: string;
30
+ phone_indicative: string;
31
+ phone_number: number;
32
+ id_card_type: number;
33
+ id_card: number;
34
+ city: string;
35
+ birthdate: string;
36
+ comment?: string;
37
+ }
38
+ export interface RegisterHomeRq {
39
+ name: string;
40
+ last_name: string;
41
+ type_id: string;
42
+ id_card: number;
43
+ city: string;
44
+ date_of_birth: string;
45
+ phone: number;
46
+ email: string;
47
+ comments: string;
48
+ }
49
+ export interface RegisterDashboardRq {
50
+ name: string;
51
+ last_name: string;
52
+ email: string;
53
+ phone_indicative: string;
54
+ phone_number: number;
55
+ id_card_type: number;
56
+ id_card: number;
57
+ city: string;
58
+ service_hour: number;
59
+ role: number;
60
+ password: string;
61
+ }
62
+ export interface UserTokenRq {
63
+ token: string;
64
+ }
65
+ export interface ForgotPasswordRq {
66
+ email: string;
67
+ id_card: number;
68
+ }
@@ -1,35 +1,35 @@
1
- export declare class UserRs {
2
- code: number;
3
- name: string;
4
- last_name: string;
5
- nick_name: string;
6
- email: string;
7
- email_ipt: string;
8
- role: number;
9
- service_hour: number;
10
- phone_indicative: number;
11
- phone_number: number;
12
- gender: string;
13
- birthdate: string;
14
- city: number;
15
- id_card_type: number;
16
- id_card: number;
17
- comment?: string;
18
- password: string;
19
- token: string;
20
- }
21
- export declare class UserLoginRs {
22
- code: number;
23
- name: string;
24
- last_name: string;
25
- email: string;
26
- id_card: string;
27
- id_card_type: number;
28
- phone_indicative: number;
29
- phone: string;
30
- gender: number;
31
- city: number;
32
- role: number;
33
- birthdate: string;
34
- token: string;
35
- }
1
+ export declare class UserRs {
2
+ code: number;
3
+ name: string;
4
+ last_name: string;
5
+ nick_name: string;
6
+ email: string;
7
+ email_ipt: string;
8
+ role: number;
9
+ service_hour: number;
10
+ phone_indicative: number;
11
+ phone_number: number;
12
+ gender: string;
13
+ birthdate: string;
14
+ city: number;
15
+ id_card_type: number;
16
+ id_card: number;
17
+ comment?: string;
18
+ password: string;
19
+ token: string;
20
+ }
21
+ export declare class UserLoginRs {
22
+ code: number;
23
+ name: string;
24
+ last_name: string;
25
+ email: string;
26
+ id_card: string;
27
+ id_card_type: number;
28
+ phone_indicative: number;
29
+ phone: string;
30
+ gender: number;
31
+ city: number;
32
+ role: number;
33
+ birthdate: string;
34
+ token: string;
35
+ }
@@ -1,19 +1,19 @@
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 * as i0 from "@angular/core";
5
- export declare class CourseService {
6
- private http;
7
- private SERVICE_URL;
8
- httpOptions: any;
9
- constructor(http: HttpClient);
10
- createCourse(course: CreateCourseRq): Observable<any>;
11
- editCourse(course: EditCourseRq): Observable<any>;
12
- getAllCourses(params: GetCoursesRq): Observable<any>;
13
- getCoursesByLevel(params: GetCoursesRq): Observable<any>;
14
- getAvailibleCourses(availibleCourses: GetAvailibleCoursesRq): Observable<any>;
15
- getCourseByCode(params: GetCourseByCodeRq): Observable<any>;
16
- private generateRequestParams;
17
- static ɵfac: i0.ɵɵFactoryDeclaration<CourseService, never>;
18
- static ɵprov: i0.ɵɵInjectableDeclaration<CourseService>;
19
- }
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 * as i0 from "@angular/core";
5
+ export declare class CourseService {
6
+ private http;
7
+ private SERVICE_URL;
8
+ httpOptions: any;
9
+ constructor(http: HttpClient);
10
+ createCourse(course: CreateCourseRq): Observable<any>;
11
+ editCourse(course: EditCourseRq): Observable<any>;
12
+ getAllCourses(params: GetCoursesRq): Observable<any>;
13
+ getCoursesByLevel(params: GetCoursesRq): Observable<any>;
14
+ getAvailibleCourses(availibleCourses: GetAvailibleCoursesRq): Observable<any>;
15
+ getCourseByCode(params: GetCourseByCodeRq): Observable<any>;
16
+ private generateRequestParams;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<CourseService, never>;
18
+ static ɵprov: i0.ɵɵInjectableDeclaration<CourseService>;
19
+ }
@@ -1,33 +1,26 @@
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
+ static ɵfac: i0.ɵɵFactoryDeclaration<ParameterService, never>;
25
+ static ɵprov: i0.ɵɵInjectableDeclaration<ParameterService>;
26
+ }
@@ -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
+ }
@@ -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,24 +1,20 @@
1
- import { HttpClient } from '@angular/common/http';
2
- import { Observable } from 'rxjs';
3
- import { RegisterIndexRq, RegisterDashboardRq, UserTokenRq, ForgotPasswordRq, LoginRq, RegisterRq } from '../../models/user/user-rq.model';
4
- import { getStrategyByUserCommercialRq } from '../../models/marketing/marketing.modal';
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
- getRoutesForRole(token: UserTokenRq): Observable<any>;
18
- getAllAdvisor(userToken: getStrategyByUserCommercialRq): Observable<any>;
19
- getByRoleAdvisor(codeRole: number): Observable<any>;
20
- getUserStatistics(userToken: getStrategyByUserCommercialRq): Observable<any>;
21
- private generateRequestParams;
22
- static ɵfac: i0.ɵɵFactoryDeclaration<UserService, never>;
23
- static ɵprov: i0.ɵɵInjectableDeclaration<UserService>;
24
- }
1
+ import { HttpClient } from '@angular/common/http';
2
+ import { Observable } from 'rxjs';
3
+ import { RegisterIndexRq, RegisterDashboardRq, UserTokenRq, ForgotPasswordRq, LoginRq, RegisterRq } from '../../models/user/user-rq.model';
4
+ import * as i0 from "@angular/core";
5
+ export declare class UserService {
6
+ private http;
7
+ private SERVICE_URL;
8
+ httpOptions: any;
9
+ constructor(http: HttpClient);
10
+ login(userLogin: LoginRq): Observable<any>;
11
+ resetPassword(resetPassword: ForgotPasswordRq): Observable<any>;
12
+ register(user: RegisterRq): Observable<any>;
13
+ registerIndex(register: RegisterIndexRq): Observable<any>;
14
+ registerDashboard(user: RegisterDashboardRq): Observable<any>;
15
+ getAvailableTeachers(token: UserTokenRq): Observable<any>;
16
+ getRoutesForRole(token: UserTokenRq): Observable<any>;
17
+ private generateRequestParams;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<UserService, never>;
19
+ static ɵprov: i0.ɵɵInjectableDeclaration<UserService>;
20
+ }
@@ -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,8 +1,8 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./components/components.module";
3
- import * as i2 from "./core/core.module";
4
- export declare class DesignSystemModule {
5
- static ɵfac: i0.ɵɵFactoryDeclaration<DesignSystemModule, never>;
6
- static ɵmod: i0.ɵɵNgModuleDeclaration<DesignSystemModule, never, [typeof i1.ComponentsModule, typeof i2.CoreModule], [typeof i1.ComponentsModule, typeof i2.CoreModule]>;
7
- static ɵinj: i0.ɵɵInjectorDeclaration<DesignSystemModule>;
8
- }
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./components/components.module";
3
+ import * as i2 from "./core/core.module";
4
+ export declare class DesignSystemModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<DesignSystemModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<DesignSystemModule, never, [typeof i1.ComponentsModule, typeof i2.CoreModule], [typeof i1.ComponentsModule, typeof i2.CoreModule]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<DesignSystemModule>;
8
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iptdevs-design-system",
3
- "version": "2.2.3",
3
+ "version": "2.2.6",
4
4
  "description": "Library common elements into IPT Plattform.",
5
5
  "keywords": [
6
6
  "IPT",
package/public-api.d.ts CHANGED
@@ -1,35 +1,29 @@
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/course-service/course-service.model";
17
- export * from "./lib/core/services/parameters-service/parameters.service";
18
- export * from "./lib/core/services/storage-service/storage-service";
19
- export * from "./lib/core/services/user-service/user-service";
20
- export * from "./lib/core/services/switch-service/switch.service";
21
- export * from "./lib/core/utils/route-service/route.service";
22
- export * from "./lib/core/utils/base-service/base.service";
23
- export * from "./lib/core/services/test-service/test.service";
24
- export * from "./lib/core/services/marketing-service/marketing-service";
25
- export * from "./lib/core/services/budget-service/budget-service";
26
- export * from "./lib/core/models/cod/cod-rq.model";
27
- export * from "./lib/core/models/course/course-rq.model";
28
- export * from "./lib/core/models/session/session.model";
29
- export * from "./lib/core/models/table/table-rs.model";
30
- export * from "./lib/core/models/url/url.model";
31
- export * from "./lib/core/models/user/user-rq.model";
32
- export * from "./lib/core/models/user/user-rs.model";
33
- export * from "./lib/core/models/test/test.model";
34
- export * from "./lib/core/models/marketing/marketing.modal";
35
- export * from "./lib/core/models/budget/budget.model";
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/course-service/course-service.model";
17
+ export * from "./lib/core/services/parameters-service/parameters.service";
18
+ export * from "./lib/core/services/storage-service/storage-service";
19
+ export * from "./lib/core/services/user-service/user-service";
20
+ export * from "./lib/core/services/switch-service/switch.service";
21
+ export * from "./lib/core/utils/route-service/route.service";
22
+ export * from "./lib/core/utils/base-service/base.service";
23
+ export * from "./lib/core/models/cod/cod-rq.model";
24
+ export * from "./lib/core/models/course/course-rq.model";
25
+ export * from "./lib/core/models/session/session.model";
26
+ export * from "./lib/core/models/table/table-rs.model";
27
+ export * from "./lib/core/models/url/url.model";
28
+ export * from "./lib/core/models/user/user-rq.model";
29
+ export * from "./lib/core/models/user/user-rs.model";
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnVkZ2V0Lm1vZGVsLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvZGVzaWduLXN5c3RlbS9zcmMvbGliL2NvcmUvbW9kZWxzL2J1ZGdldC9idWRnZXQubW9kZWwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBpbnRlcmZhY2UgZ2V0ZGlzY291bnRBbGxScXtcclxuICB0b2tlbjpzdHJpbmdcclxufVxyXG5leHBvcnQgaW50ZXJmYWNlIENvdXBvbiB7XHJcbiAgY29kZT86ICAgICAgICAgICAgICAgICAgIG51bWJlcjtcclxuICBkaXNjb3VudF9yZWY6ICAgICAgICAgICBzdHJpbmc7XHJcbiAgbmFtZTogICAgICAgICAgICAgICAgICAgc3RyaW5nO1xyXG4gIHR5cGU6ICAgICAgICAgICAgICAgICAgIG51bWJlcjtcclxuICBkaXNjb3VudF90eXBlOiAgICAgICAgICBzdHJpbmc7XHJcbiAgcGVyY2VudGFnZTogICAgICAgICAgICAgbnVtYmVyO1xyXG4gIHN0YXJ0X2RhdGU6ICAgICAgICAgICAgIERhdGU7XHJcbiAgZW5kX2RhdGU6ICAgICAgICAgICAgICAgRGF0ZTtcclxuICBzdGF0ZTogICAgICAgICAgICAgICAgICBudW1iZXI7XHJcbiAgZGVzY3JpcHRpb246ICAgICAgICAgICAgc3RyaW5nO1xyXG4gIGRpc2NvdW50X2FjYWRlbWljX3BsYW46IERpc2NvdW50QWNhZGVtaWNQbGFuW107XHJcbn1cclxuXHJcbmV4cG9ydCBpbnRlcmZhY2UgRGlzY291bnRBY2FkZW1pY1BsYW4ge1xyXG4gIGNvZGU6ICBudW1iZXI7XHJcbiAgbmFtZTogIHN0cmluZztcclxuXHJcbn1cclxuZXhwb3J0IGludGVyZmFjZSBEaXNjb3VudFJxe1xyXG4gIHRva2VuOnN0cmluZztcclxuICBkaXNjb3VudF9yZWY6c3RyaW5nO1xyXG4gIG5hbWU6c3RyaW5nO1xyXG4gIHR5cGU6bnVtYmVyO1xyXG4gIGRpc2NvdW50X3R5cGU6bnVtYmVyO1xyXG4gIHBlcmNlbnRhZ2U6bnVtYmVyO1xyXG4gIHN0YXJ0X2RhdGU6RGF0ZTtcclxuICBlbmRfZGF0ZTpEYXRlO1xyXG4gIHN0YXRlOm51bWJlcjtcclxuICBkZXNjcmlwdGlvbjpzdHJpbmc7XHJcbiAgcGxhbjpudW1iZXJbXTtcclxufVxyXG5leHBvcnQgaW50ZXJmYWNlIERpc2NvdW50VXBkYXRlUnF7XHJcbiAgdG9rZW46c3RyaW5nO1xyXG4gIGNvZGU/Om51bWJlcjtcclxuICBzdGFydF9kYXRlOkRhdGU7XHJcbiAgZW5kX2RhdGU6RGF0ZTtcclxuICBzdGF0ZTpudW1iZXI7XHJcbiAgZGVzY3JpcHRpb246c3RyaW5nO1xyXG4gIHBsYW46bnVtYmVyW107XHJcbn1cclxuXHJcbmV4cG9ydCBpbnRlcmZhY2UgVHlwZUNvdXBvbntcclxuICBjb2RlPzpudW1iZXI7XHJcbiAgbmFtZT86c3RyaW5nO1xyXG59XHJcbmV4cG9ydCBpbnRlcmZhY2UgVHlwZURpc2NvdW50e1xyXG4gIGNvZGU/Om51bWJlcjtcclxuICBuYW1lPzpzdHJpbmc7XHJcbn1cclxuZXhwb3J0IGludGVyZmFjZSBUeXBlU3RhdGV7XHJcbiAgY29kZT86bnVtYmVyO1xyXG4gIG5hbWU/OnN0cmluZztcclxufVxyXG5leHBvcnQgaW50ZXJmYWNlIFN0dWRlbnR7XHJcbiAgbmFtZTogc3RyaW5nO1xyXG4gIGRvY3VtZW50OiBudW1iZXI7XHJcbiAgcGhvbmU6bnVtYmVyO1xyXG4gIHBsYW46IHN0cmluZztcclxuICBzdGF0ZTogbnVtYmVyO1xyXG59XHJcbmV4cG9ydCBpbnRlcmZhY2UgU3RhdGV7XHJcbiAgY29kZT86bnVtYmVyO1xyXG4gIG5hbWU/OnN0cmluZztcclxufVxyXG5leHBvcnQgaW50ZXJmYWNlIFBsYW57XHJcbiAgY29kZT86bnVtYmVyO1xyXG4gIG5hbWU/OnN0cmluZztcclxufVxyXG4iXX0=
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWFya2V0aW5nLm1vZGFsLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvZGVzaWduLXN5c3RlbS9zcmMvbGliL2NvcmUvbW9kZWxzL21hcmtldGluZy9tYXJrZXRpbmcubW9kYWwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbIi8vRVAgTUlDUk9TRVJWSUNFIENPTUVSQ0lBTFxyXG5leHBvcnQgaW50ZXJmYWNlIGdldFN0cmF0ZWd5QnlVc2VyQ29tbWVyY2lhbFJxIHtcclxuICB0b2tlbjogc3RyaW5nXHJcbn1cclxuXHJcbmV4cG9ydCBpbnRlcmZhY2UgZ2V0T2JzZXJ2YXRpb25zQnlTdHVkZW50UnEge1xyXG4gIGNvZGVTdHVkZW50OiBudW1iZXJcclxufVxyXG5cclxuZXhwb3J0IGludGVyZmFjZSBDb250YWN0Y1JxIHtcclxuICBjb2RlOiAgICAgICAgICAgICBudW1iZXI7XHJcbiAgdXNlcl9zdHVkZW50OiAgICAgVXNlcjtcclxuICB1c2VyX2NvbW1lcmNpYWw6ICBVc2VyO1xyXG4gIG1hcmtldGluZ19zdGF0dXM6IHN0cmluZztcclxuICBtYXJrZXRpbmdfb3JpZ2luOiBzdHJpbmc7XHJcbiAgYWNhZGVtaWNfcGxhbjogICAgc3RyaW5nO1xyXG4gIHVwZGF0ZWRfYXQ6ICAgICAgIERhdGU7XHJcbiAgY3JlYXRlZF9hdDogICAgICAgRGF0ZTtcclxufVxyXG5cclxuZXhwb3J0IGludGVyZmFjZSBVc2VyIHtcclxuICBjb2RlOiAgICAgICAgICAgICBudW1iZXI7XHJcbiAgbmFtZTogICAgICAgICAgICAgc3RyaW5nO1xyXG4gIGxhc3RfbmFtZTogICAgICAgIHN0cmluZztcclxuICBuaWNrX25hbWU6ICAgICAgICBudWxsO1xyXG4gIGVtYWlsOiAgICAgICAgICAgIHN0cmluZztcclxuICBlbWFpbF9pcHQ6ICAgICAgICBudWxsO1xyXG4gIHJvbGU6ICAgICAgICAgICAgIG51bWJlcjtcclxuICBwaG9uZV9pbmRpY2F0aXZlOiBudW1iZXI7XHJcbiAgcGhvbmVfbnVtYmVyOiAgICAgc3RyaW5nO1xyXG4gIGdlbmRlcjogICAgICAgICAgIG51bWJlcjtcclxuICBiaXJ0aGRhdGU6ICAgICAgICBudWxsO1xyXG4gIGNpdHk6ICAgICAgICAgICAgIG51bWJlcjtcclxuICBpZF9jYXJkX3R5cGU6ICAgICBudW1iZXI7XHJcbiAgaWRfY2FyZDogICAgICAgICAgc3RyaW5nO1xyXG59XHJcblxyXG5leHBvcnQgaW50ZXJmYWNlIE9ic2VydmF0aW9uc0NvbnRhY3RScSB7XHJcbiAgY29kZTogICAgICAgICAgICAgICBudW1iZXI7XHJcbiAgbWFya2V0aW5nX3N0cmF0ZWd5OiBudW1iZXI7XHJcbiAgbWFya2V0aW5nX3N0YXR1czogICBzdHJpbmc7XHJcbiAgbWFya2V0aW5nX2NvbnRhY3Q6ICBzdHJpbmc7XHJcbiAgYWNhZGVtaWNfcGxhbjogICAgICBzdHJpbmc7XHJcbiAgb2JzZXJ2YXRpb246ICAgICAgICBzdHJpbmc7XHJcbn1cclxuXHJcbi8vIEVQIE9CU0VSVkFUSU9OU1xyXG5leHBvcnQgaW50ZXJmYWNlIENyZWF0ZU9ic2VydmF0aW9uc1JxIHtcclxuICB0b2tlbjogICAgICAgICAgICAgIHN0cmluZztcclxuICBtYXJrZXRpbmdfc3RyYXRlZ3k6IG51bWJlcjtcclxuICBtYXJrZXRpbmdfc3RhdHVzOiAgIG51bWJlcjtcclxuICBtYXJrZXRpbmdfY29udGFjdDogIG51bWJlcjtcclxuICBhY2FkZW1pY19wbGFuOiAgICAgIG51bWJlcjtcclxuICBvYnNlcnZhdGlvbjogICAgICAgIHN0cmluZztcclxufVxyXG5cclxuXHJcbi8vIEVQIFBBUkFNRVRFUlNcclxuZXhwb3J0IGludGVyZmFjZSBTdGF0dXNDb250YWN0UnEge1xyXG4gIGNvZGU6ICAgICAgIG51bWJlcjtcclxuICBuYW1lOiAgICAgICBzdHJpbmc7XHJcbiAgcHJpb3JpdHk6ICAgbnVtYmVyO1xyXG4gIGNvbG9yOiAgICAgIHN0cmluZztcclxuICB1cGRhdGVkX2F0OiBEYXRlO1xyXG59XHJcblxyXG5leHBvcnQgaW50ZXJmYWNlIENvbnRhY3RlZFR5cGVScSB7XHJcbiAgY29kZTogbnVtYmVyO1xyXG4gIG5hbWU6IHN0cmluZztcclxufVxyXG5cclxuZXhwb3J0IGludGVyZmFjZSBQbGFuQ29udGFjdFJxIHtcclxuICBjb2RlOiBudW1iZXI7XHJcbiAgbmFtZTogc3RyaW5nO1xyXG59XHJcblxyXG5leHBvcnQgaW50ZXJmYWNlIFRvcFNhbGVzUnEge1xyXG4gIHBvc2l0aW9uOiBudW1iZXIsXHJcbiAgbmFtZTogc3RyaW5nLFxyXG59XHJcbmV4cG9ydCBpbnRlcmZhY2UgVXNlckFkdmlzZXJScSB7XHJcbiAgY29kZTogICAgICAgICBudW1iZXI7XHJcbiAgaWRfY2FyZDogICAgICBzdHJpbmc7XHJcbiAgbmFtZTogICAgICAgICBzdHJpbmc7XHJcbiAgbGFzdF9uYW1lOiAgICBzdHJpbmc7XHJcbiAgbmlja19uYW1lOiAgICBudWxsO1xyXG4gIGVtYWlsOiAgICAgICAgc3RyaW5nO1xyXG4gIHBob25lX251bWJlcjogc3RyaW5nO1xyXG4gIGdlbmRlcjogICAgICAgbnVtYmVyO1xyXG4gIGNpdHk6ICAgICAgICAgc3RyaW5nO1xyXG4gIGJpcnRoZGF0ZTogICAgbnVsbDtcclxuICByb2xlOiAgICAgICAgIHN0cmluZztcclxuICBzZXJ2aWNlX2hvdXI6IG51bWJlcjtcclxuICBlbWFpbF9pcHQ6ICAgIG51bGw7XHJcbiAgdXBkYXRlZF9hdDogICBEYXRlO1xyXG59XHJcblxyXG5leHBvcnQgaW50ZXJmYWNlIFVzZXJTdGF0aXN0aWNzUnEge1xyXG4gIGRheTogICBEYXk7XHJcbiAgd2VlazogIERheTtcclxuICBtb250aDogRGF5O1xyXG59XHJcblxyXG5leHBvcnQgaW50ZXJmYWNlIERheSB7XHJcbiAgUGVuZGllbnRlOiAgICBudW1iZXI7XHJcbiAgTm9jb250ZXN0YTogICBudW1iZXI7XHJcbiAgU2VndWltaWVudG86ICBudW1iZXI7XHJcbiAgT3Ryb2FzZXNvcjogICBudW1iZXI7XHJcbiAgTm9pbnRlcmVzYWRvOiBudW1iZXI7XHJcbiAgTWF0cmljdWxhZG86ICBudW1iZXI7XHJcbiAgT3Ryb3M6ICAgICAgICBudW1iZXI7XHJcbn1cclxuXHJcbmV4cG9ydCBpbnRlcmZhY2UgVXNlclRvcEFkdmlzZXJScSB7XHJcbiAgbWF0cmljdWxhZG9zOiAgIG51bWJlcjtcclxuICB1c2VyQ29tbWVyY2lhbDogc3RyaW5nO1xyXG59XHJcblxyXG5leHBvcnQgaW50ZXJmYWNlIEdyb3VwU2lnbnVwU3RhdHVzUnEge1xyXG4gIHNpZ251cFN0YXR1czogbnVtYmVyO1xyXG59XHJcblxyXG5leHBvcnQgaW50ZXJmYWNlIFVzZXJBZHZpc2VyUnEge1xyXG4gIGNvZGU6ICAgICAgICAgbnVtYmVyO1xyXG4gIGlkX2NhcmQ6ICAgICAgc3RyaW5nO1xyXG4gIG5hbWU6ICAgICAgICAgc3RyaW5nO1xyXG4gIGxhc3RfbmFtZTogICAgc3RyaW5nO1xyXG4gIG5pY2tfbmFtZTogICAgbnVsbDtcclxuICBlbWFpbDogICAgICAgIHN0cmluZztcclxuICBwaG9uZV9udW1iZXI6IHN0cmluZztcclxuICBnZW5kZXI6ICAgICAgIG51bWJlcjtcclxuICBjaXR5OiAgICAgICAgIHN0cmluZztcclxuICBiaXJ0aGRhdGU6ICAgIG51bGw7XHJcbiAgcm9sZTogICAgICAgICBzdHJpbmc7XHJcbiAgc2VydmljZV9ob3VyOiBudW1iZXI7XHJcbiAgZW1haWxfaXB0OiAgICBudWxsO1xyXG4gIHVwZGF0ZWRfYXQ6ICAgRGF0ZTtcclxufVxyXG5cclxuZXhwb3J0IGludGVyZmFjZSBVc2VyU3RhdGlzdGljc1JxIHtcclxuICBkYXk6ICAgRGF5O1xyXG4gIHdlZWs6ICBEYXk7XHJcbiAgbW9udGg6IERheTtcclxufVxyXG5cclxuZXhwb3J0IGludGVyZmFjZSBEYXkge1xyXG4gIFBlbmRpZW50ZTogICAgbnVtYmVyO1xyXG4gIE5vY29udGVzdGE6ICAgbnVtYmVyO1xyXG4gIFNlZ3VpbWllbnRvOiAgbnVtYmVyO1xyXG4gIE90cm9hc2Vzb3I6ICAgbnVtYmVyO1xyXG4gIE5vaW50ZXJlc2FkbzogbnVtYmVyO1xyXG4gIE1hdHJpY3VsYWRvOiAgbnVtYmVyO1xyXG4gIE90cm9zOiAgICAgICAgbnVtYmVyO1xyXG59XHJcblxyXG5leHBvcnQgaW50ZXJmYWNlIFVzZXJUb3BBZHZpc2VyUnEge1xyXG4gIG1hdHJpY3VsYWRvczogICBudW1iZXI7XHJcbiAgdXNlckNvbW1lcmNpYWw6IHN0cmluZztcclxufVxyXG5cclxuZXhwb3J0IGludGVyZmFjZSBHcm91cFNpZ251cFN0YXR1c1JxIHtcclxuICBzaWdudXBTdGF0dXM6IG51bWJlcjtcclxufVxyXG4iXX0=
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGVzdC5tb2RlbC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2Rlc2lnbi1zeXN0ZW0vc3JjL2xpYi9jb3JlL21vZGVscy90ZXN0L3Rlc3QubW9kZWwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBpbnRlcmZhY2UgRXhhbSB7XHJcbiAgdG9rZW46IHN0cmluZyxcclxuICBlbmdsaXNoX2xldmVsczogbnVtYmVyXHJcbiAgYWNhZGVtaWNfdW5pdDogbnVtYmVyXHJcbiAgdXNlcl9hdXRob3I/OiBudW1iZXIsXHJcbiAgbmFtZTogc3RyaW5nXHJcbiAgdGltaW5nX2hvdXI6IG51bWJlclxyXG4gIHRpbWluZ19taW46IG51bWJlclxyXG4gIHN0YXRlOiBudW1iZXIsXHJcbiAgc3RhdGVCb29sPzogYm9vbGVhblxyXG4gIGNvZGU/OiBudW1iZXJcclxufVxyXG5cclxuZXhwb3J0IGludGVyZmFjZSBTZWN0aW9uUnEge1xyXG4gIGNvZGU6IG51bWJlclxyXG4gIHRva2VuPzogbnVtYmVyXHJcbiAgZXhhbTogbnVtYmVyXHJcbiAgdHlwZV9zZWN0aW9uOiBudW1iZXJcclxuICB0aXRsZTogc3RyaW5nXHJcbiAgc3RhdGVtZW50OiBzdHJpbmdcclxuICBvcmRlcmVkOiBudW1iZXJcclxuICBzdGF0ZTogbnVtYmVyXHJcbiAgcXVlc3Rpb25zPzogW11cclxuICBtZWRpYV91cmw6IHN0cmluZ1xyXG4gIHN0YXRlQm9vbD86IGJvb2xlYW5cclxufVxyXG5cclxuZXhwb3J0IGludGVyZmFjZSBDcmVhdGVTZWN0aW9uV2l0aEFsbFJxIHtcclxuICBjb2RlPzogbnVtYmVyXHJcbiAgdG9rZW4/OiBzdHJpbmdcclxuICBleGFtOiBudW1iZXJcclxuICB0eXBlX3NlY3Rpb246IG51bWJlclxyXG4gIHRpdGxlOiBzdHJpbmdcclxuICBzdGF0ZW1lbnQ6IHN0cmluZ1xyXG4gIG9yZGVyZWQ6IG51bWJlclxyXG4gIHN0YXRlOiBudW1iZXJcclxuICBxdWVzdGlvbnM/OiBbXVxyXG4gIHN0YXRlQm9vbD86IGJvb2xlYW5cclxuICBmaXJzdF9wYXJhZ3JhcGg6IHN0cmluZ1xyXG4gIHNlY29uZF9wYXJhZ3JhcGg6IHN0cmluZ1xyXG4gIHRoaXJkX3BhcmFncmFwaDogc3RyaW5nXHJcbiAgbWVkaWFfdXJsOiBudW1iZXJcclxuICBhbnN3ZXJzOiBDcmVhdGVBbnN3ZXJScVtdXHJcbn1cclxuXHJcbmV4cG9ydCBpbnRlcmZhY2UgR2V0QWxsU2VjdGlvbnNScSB7XHJcbiAgdG9rZW46IHN0cmluZ1xyXG59XHJcblxyXG5leHBvcnQgaW50ZXJmYWNlIFVwZGF0ZUV4YW1ScSB7XHJcbiAgY29kZTogbnVtYmVyLFxyXG4gIHRva2VuOiBzdHJpbmcsXHJcbiAgdXNlcl9hdXRob3I6IG51bWJlcixcclxuICBlbmdsaXNoX2xldmVsczogbnVtYmVyLFxyXG4gIGFjYWRlbWljX3VuaXQ6IG51bWJlcixcclxuICBuYW1lOiBzdHJpbmcsXHJcbiAgdGltaW5nX2hvdXI6IG51bWJlcixcclxuICB0aW1pbmdfbWluOiBudW1iZXJcclxuICBzdGF0ZTogbnVtYmVyXHJcbn1cclxuXHJcbmV4cG9ydCBpbnRlcmZhY2UgVXBkYXRlRXhhbVN0YXR1c1JxIHtcclxuICBjb2RlOiBudW1iZXIsXHJcbiAgdG9rZW46IHN0cmluZyxcclxuICBzdGF0ZTogbnVtYmVyXHJcbn1cclxuXHJcbmV4cG9ydCBpbnRlcmZhY2UgQ29weUV4YW1ScSB7XHJcbiAgdG9rZW46IHN0cmluZyxcclxuICB0ZWFjaGVyczogbnVtYmVyW10sXHJcbiAgZXhhbV9jb2RlOiBudW1iZXJcclxufVxyXG5cclxuZXhwb3J0IGludGVyZmFjZSByZXF1ZXN0Rm9yT2J0YWluVGVhY2hlcnNScSB7XHJcbiAgdG9rZW46IHN0cmluZ1xyXG59XHJcblxyXG5leHBvcnQgaW50ZXJmYWNlIFNlY3Rpb24ge1xyXG4gIHRpdGxlOiBzdHJpbmcsXHJcbiAgc3RhdGVtZW50OiBzdHJpbmcsXHJcbiAgdHlwZV9zZWN0aW9uPzogbnVtYmVyLFxyXG4gIGZpcnN0cDogc3RyaW5nLFxyXG4gIHNlY29uZHA/OiBzdHJpbmcsXHJcbiAgdGhpcmRwPzogc3RyaW5nLFxyXG4gIG11bHRpbWVkaWE6IE11bHRpbWVkaWFcclxuICBtZWRpYV90aXRsZTogc3RyaW5nLFxyXG4gIHRleHQ6IHN0cmluZyxcclxuICBtZWRpYV91cmw6IHN0cmluZ1xyXG4gIHF1ZXN0aW9uczogUXVlc3Rpb25zLFxyXG4gIHNlY3Rpb25BQkNEPzogU2VjdGlvbkFCQ0QsXHJcbiAgc2VjdGlvbkFCQz86IFNlY3Rpb25BQkNcclxuICBzZWN0aW9uVE9GPzogU2VjdGlvblRPRixcclxuICByZWxhdGlvbnNoaXA/OiBzdHJpbmcsXHJcbiAgcmVsYXRpb25zaGlwVmFsdWU/OiBudW1iZXIsXHJcbiAgY29tcGxldGU/OiBzdHJpbmcsXHJcbiAgY29tcGxldGVWYWx1ZT86IG51bWJlcixcclxuICBzZWN0aW9uQ09JPzogU2VjdGlvbkNPSSxcclxuICBjb252ZXJzYXRpb24/OiBzdHJpbmcsXHJcbiAgY29udmVyc2F0aW9uVmFsdWU/OiBudW1iZXIsXHJcbn1cclxuXHJcbmV4cG9ydCBpbnRlcmZhY2UgQ3JlYXRlU2VjdGlvblJxIHtcclxuICB0b2tlbj86IHN0cmluZ1xyXG4gIHRpdGxlOiAgICAgICAgc3RyaW5nO1xyXG4gIHN0YXRlbWVudDogICAgc3RyaW5nO1xyXG4gIGV4YW06ICAgICAgICAgbnVtYmVyO1xyXG4gIHR5cGVfc2VjdGlvbjogc3RyaW5nO1xyXG4gIG9yZGVyZWQ6ICAgICAgbnVtYmVyO1xyXG4gIHN0YXRlOiAgICAgICAgbnVtYmVyO1xyXG4gIGNvZGU/OiAgICAgICAgbnVtYmVyO1xyXG4gIG1lZGlhX3VybD86ICAgIHN0cmluZ1xyXG59XHJcblxyXG5leHBvcnQgaW50ZXJmYWNlIFVwZGF0ZVNlY3Rpb25ScSB7XHJcbiAgdG9rZW4/OiBzdHJpbmcsXHJcbiAgc2VjdGlvbl9jb2RlOiBudW1iZXIsXHJcbiAgdGl0bGU6IHN0cmluZyxcclxuICBzdGF0ZW1lbnQ6IHN0cmluZyxcclxufVxyXG5cclxuZXhwb3J0IGludGVyZmFjZSBVcGRhdGVTZWN0aW9uU3RhdGVScSB7XHJcbiAgdG9rZW46IHN0cmluZyxcclxuICBzZWN0aW9uX2NvZGU6IG51bWJlcixcclxuICBzdGF0ZTogbnVtYmVyXHJcbn1cclxuXHJcbmV4cG9ydCBpbnRlcmZhY2UgZ2V0UXVlc3Rpb25zQnlTZWN0aW9uc1JxIHtcclxuICB0b2tlbjogc3RyaW5nLFxyXG4gIHNlY3Rpb25zOiBudW1iZXJbXVxyXG59XHJcblxyXG5leHBvcnQgaW50ZXJmYWNlIE11bHRpbWVkaWEge1xyXG4gIG1lZGlhX3RpdGxlOiBzdHJpbmcsXHJcbiAgdGV4dDogc3RyaW5nLFxyXG4gIG1lZGlhOiBhbnlcclxufVxyXG5cclxuZXhwb3J0IGludGVyZmFjZSBRdWVzdGlvbnMge1xyXG4gIGNvZGU6IG51bWJlcixcclxuICBjb250ZW50OiBhbnlbXVxyXG59XHJcblxyXG5leHBvcnQgaW50ZXJmYWNlIFVwZGF0ZVF1ZXN0aW9uUnEge1xyXG4gIHF1ZXN0aW9uX2NvZGU6IG51bWJlcixcclxuICBleGFtX3NlY3Rpb246IG51bWJlcixcclxuICB0b2tlbjogc3RyaW5nLFxyXG4gIGZpcnN0X3BhcmFncmFwaDogc3RyaW5nLFxyXG4gIHNlY29uZF9wYXJhZ3JhcGg6IHN0cmluZyxcclxuICB0aGlyZF9wYXJhZ3JhcGg6IHN0cmluZ1xyXG59XHJcblxyXG5leHBvcnQgaW50ZXJmYWNlIENyZWF0ZVF1ZXN0aW9uUnEge1xyXG4gIHRva2VuPzogc3RyaW5nXHJcbiAgY29kZT86IG51bWJlcjtcclxuICBleGFtX3NlY3Rpb246IG51bWJlcjtcclxuICBzdGF0ZTogbnVtYmVyO1xyXG4gIGZpcnN0X3BhcmFncmFwaDogc3RyaW5nO1xyXG4gIHNlY29uZF9wYXJhZ3JhcGg/OiBzdHJpbmc7XHJcbiAgdGhpcmRfcGFyYWdyYXBoPzogc3RyaW5nO1xyXG4gIG1lZGlhX3VybD86IG51bWJlcjtcclxuICBhbnN3ZXJzOiBDcmVhdGVBbnN3ZXJScVtdO1xyXG59XHJcblxyXG5leHBvcnQgaW50ZXJmYWNlIEFuc3dlciB7XHJcbiAgY29kZTogbnVtYmVyO1xyXG4gIGV4YW1fcXVlc3Rpb246IG51bWJlcjtcclxuICBjb250ZW50OiBzdHJpbmc7XHJcbiAgc2NvcmU6IG51bWJlcjtcclxuICBzdGF0ZTogbnVtYmVyO1xyXG59XHJcblxyXG5leHBvcnQgaW50ZXJmYWNlIFVwZGF0ZUFuc3dlclJxIHtcclxuICBhbnN3ZXJfY29kZTogbnVtYmVyLFxyXG4gIHRva2VuOiBzdHJpbmcsXHJcbiAgZXhhbV9xdWVzdGlvbjogbnVtYmVyLFxyXG4gIGNvbnRlbnQ6IHN0cmluZyxcclxuICBzY29yZTogbnVtYmVyXHJcbn1cclxuXHJcbmV4cG9ydCBpbnRlcmZhY2UgVXBkYXRlUXVlc3Rpb25TdGF0ZVJxIHtcclxuICBxdWVzdGlvbl9jb2RlOiBudW1iZXIsXHJcbiAgdG9rZW46IHN0cmluZyxcclxuICBzdGF0ZTogbnVtYmVyXHJcbn1cclxuXHJcbmV4cG9ydCBpbnRlcmZhY2UgU2VjdGlvbkFCQ0Qge1xyXG4gIG9wdGlvbkE6IHN0cmluZyxcclxuICBvcHRpb25COiBzdHJpbmcsXHJcbiAgb3B0aW9uQzogc3RyaW5nLFxyXG4gIG9wdGlvbkQ6IHN0cmluZyxcclxuICB2YWx1ZUE6IG51bWJlcixcclxuICBWYWx1ZUI6IG51bWJlcixcclxuICB2YWx1ZUM6IG51bWJlcixcclxuICB2YWx1ZUQ6IG51bWJlclxyXG59XHJcblxyXG5leHBvcnQgaW50ZXJmYWNlIFNlY3Rpb25BQkMge1xyXG4gIG9wdGlvbkE6IHN0cmluZyxcclxuICBvcHRpb25COiBzdHJpbmcsXHJcbiAgb3B0aW9uQzogc3RyaW5nLFxyXG4gIHZhbHVlQTogbnVtYmVyLFxyXG4gIFZhbHVlQjogbnVtYmVyLFxyXG4gIHZhbHVlQzogbnVtYmVyLFxyXG59XHJcblxyXG5leHBvcnQgaW50ZXJmYWNlIFNlY3Rpb25UT0Yge1xyXG4gIG9wdGlvblRydWU6IHN0cmluZyxcclxuICBvcHRpb25UcnVlVmFsdWU6IG51bWJlcixcclxuICBvcHRpb25GYWxzZTogc3RyaW5nLFxyXG4gIG9wdGlvbkZhbHNlVmFsdWU6IG51bWJlclxyXG59XHJcblxyXG5leHBvcnQgaW50ZXJmYWNlIFNlY3Rpb25DT0kge1xyXG4gIG9wdGlvbkNvcnJlY3Q6IHN0cmluZyxcclxuICBvcHRpb25Db3JyZWN0VmFsdWU6IG51bWJlcixcclxuICBvcHRpb25JbmNvcnJlY3Q6IHN0cmluZyxcclxuICBvcHRpb25JbmNvcnJlY3RWYWx1ZTogbnVtYmVyXHJcbn1cclxuXHJcbmV4cG9ydCBpbnRlcmZhY2UgR2V0QWxsRXhhbXNScSB7XHJcbiAgdG9rZW46IHN0cmluZ1xyXG59XHJcblxyXG5leHBvcnQgaW50ZXJmYWNlIENyZWF0ZUFuc3dlclJxIHtcclxuICB0b2tlbj86IHN0cmluZ1xyXG4gIGV4YW1fcXVlc3Rpb24/OiBudW1iZXJcclxuICBjb250ZW50OiBzdHJpbmdcclxuICBzY29yZTogbnVtYmVyXHJcbiAgc3RhdGU6IG51bWJlclxyXG4gIGNvZGU/OiBudW1iZXJcclxufVxyXG5cclxuZXhwb3J0IGludGVyZmFjZSBVcGRhdGVTZWN0aW9uTWVkaWFScSB7XHJcbiAgdG9rZW46IHN0cmluZ1xyXG4gIHNlY3Rpb25fY29kZTogbnVtYmVyXHJcbiAgdGl0bGU/OiBzdHJpbmdcclxuICB0ZXh0Pzogc3RyaW5nXHJcbiAgbWVkaWFfdXJsOiBhbnlcclxufVxyXG4iXX0=