iptdevs-design-system 1.3.8 → 1.3.11
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/esm2020/lib/components/components.module.mjs +24 -6
- package/esm2020/lib/components/forms/login-form/login-form.component.mjs +13 -44
- package/esm2020/lib/components/molecules/sidenav/sidenav.component.mjs +91 -0
- package/esm2020/lib/core/services/user-service/user-service.mjs +5 -4
- package/esm2020/lib/core/utils/base-service/base.service.mjs +72 -39
- package/esm2020/public-api.mjs +2 -1
- package/fesm2015/iptdevs-design-system.mjs +157 -65
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +188 -94
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/components/components.module.d.ts +6 -2
- package/lib/components/forms/login-form/login-form.component.d.ts +2 -5
- package/lib/components/molecules/sidenav/sidenav.component.d.ts +19 -0
- package/lib/core/services/user-service/user-service.d.ts +1 -1
- package/lib/core/utils/base-service/base.service.d.ts +3 -1
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/esm2020/lib/components/forms/register-form/register-form.component.mjs +0 -14
- package/lib/components/forms/register-form/register-form.component.d.ts +0 -8
|
@@ -8,6 +8,14 @@ import { Validators, FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
|
8
8
|
import Swal from 'sweetalert2';
|
|
9
9
|
import * as i1$2 from '@angular/common/http';
|
|
10
10
|
import { HttpHeaders } from '@angular/common/http';
|
|
11
|
+
import * as i4 from '@angular/material/sidenav';
|
|
12
|
+
import { MatSidenavModule } from '@angular/material/sidenav';
|
|
13
|
+
import * as i5 from '@angular/material/toolbar';
|
|
14
|
+
import { MatToolbarModule } from '@angular/material/toolbar';
|
|
15
|
+
import * as i6 from '@angular/material/icon';
|
|
16
|
+
import { MatIconModule } from '@angular/material/icon';
|
|
17
|
+
import * as i7 from '@angular/material/list';
|
|
18
|
+
import { MatListModule } from '@angular/material/list';
|
|
11
19
|
import * as i1$3 from '@angular/router';
|
|
12
20
|
|
|
13
21
|
class AsideButtonComponent {
|
|
@@ -635,9 +643,10 @@ class UserService {
|
|
|
635
643
|
this.generateRequestParams(token);
|
|
636
644
|
return this.http.post(serviceUrl, this.httpOptions);
|
|
637
645
|
}
|
|
638
|
-
|
|
639
|
-
let serviceUrl = this.SERVICE_URL + '
|
|
640
|
-
|
|
646
|
+
getRoutesForRole(token) {
|
|
647
|
+
let serviceUrl = this.SERVICE_URL + 'post/routes/role';
|
|
648
|
+
this.generateRequestParams(token);
|
|
649
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
641
650
|
}
|
|
642
651
|
generateRequestParams(param) {
|
|
643
652
|
this.httpOptions = {
|
|
@@ -708,54 +717,87 @@ class BaseService {
|
|
|
708
717
|
this.userService = userService;
|
|
709
718
|
this.storageService = storageService;
|
|
710
719
|
}
|
|
711
|
-
|
|
720
|
+
webLogin(user, password) {
|
|
712
721
|
let request = {
|
|
713
722
|
user: user,
|
|
714
723
|
password: password
|
|
715
724
|
};
|
|
716
|
-
this.userService
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
725
|
+
let service = this.userService;
|
|
726
|
+
let storage = this.storageService;
|
|
727
|
+
return new Promise(function (resolve, reject) {
|
|
728
|
+
service.login(request).subscribe(response => {
|
|
729
|
+
switch (response.message.code) {
|
|
730
|
+
case 1:
|
|
731
|
+
Swal.fire({
|
|
732
|
+
'title': '<p style="font-family: Poppins"">Perfect!</p>',
|
|
733
|
+
'html': '<p style="font-family: Poppins"">Succesfull login</p>',
|
|
734
|
+
'icon': 'success',
|
|
735
|
+
});
|
|
736
|
+
const loginRegisterUser = {
|
|
737
|
+
token: response.data.token,
|
|
738
|
+
user: response.data,
|
|
739
|
+
};
|
|
740
|
+
storage.setCurrentSession(loginRegisterUser);
|
|
741
|
+
resolve(true);
|
|
742
|
+
break;
|
|
743
|
+
case 2:
|
|
744
|
+
Swal.fire({
|
|
745
|
+
'title': '<p style="font-family: Poppins"">Warning!</p>',
|
|
746
|
+
'html': '<p style="font-family: Poppins"">The data does not correspond to a user registered in our system, please review them.</p>',
|
|
747
|
+
'icon': 'warning',
|
|
748
|
+
});
|
|
749
|
+
resolve(false);
|
|
750
|
+
break;
|
|
751
|
+
case 3:
|
|
752
|
+
Swal.fire({
|
|
753
|
+
'title': '<p style="font-family: Poppins"">Error!</p>',
|
|
754
|
+
'html': '<p style="font-family: Poppins"">The input data does not meet the established parameters.</p>',
|
|
755
|
+
'icon': 'error',
|
|
756
|
+
});
|
|
757
|
+
resolve(false);
|
|
758
|
+
break;
|
|
759
|
+
default:
|
|
760
|
+
Swal.fire({
|
|
761
|
+
'title': '<p style="font-family: Poppins"">Error!</p>',
|
|
762
|
+
'html': '<p style="font-family: Poppins"">An unexpected error has occurred</p>',
|
|
763
|
+
'icon': 'error',
|
|
764
|
+
});
|
|
765
|
+
resolve(false);
|
|
766
|
+
break;
|
|
767
|
+
}
|
|
768
|
+
reject('Unhandled exception');
|
|
769
|
+
});
|
|
753
770
|
});
|
|
754
771
|
}
|
|
755
772
|
getUserRole() {
|
|
756
773
|
let user = this.storageService.getCurrentUser()?.role;
|
|
757
774
|
return user === undefined ? -1 : Math.floor(user / 10);
|
|
758
775
|
}
|
|
776
|
+
jsonToArray(data) {
|
|
777
|
+
var response = [];
|
|
778
|
+
data.forEach((element) => {
|
|
779
|
+
var object = [];
|
|
780
|
+
for (var clave in element) {
|
|
781
|
+
if (element.hasOwnProperty(clave)) {
|
|
782
|
+
if (typeof element[clave] == 'object') {
|
|
783
|
+
element[clave] = this.subJsonToArray(element[clave]);
|
|
784
|
+
}
|
|
785
|
+
object.push(element[clave]);
|
|
786
|
+
}
|
|
787
|
+
}
|
|
788
|
+
response.push(object);
|
|
789
|
+
});
|
|
790
|
+
return response;
|
|
791
|
+
}
|
|
792
|
+
subJsonToArray(data) {
|
|
793
|
+
var object = '';
|
|
794
|
+
for (var clave in data) {
|
|
795
|
+
if (clave != 'code') {
|
|
796
|
+
object += '\n' + data[clave];
|
|
797
|
+
}
|
|
798
|
+
}
|
|
799
|
+
return object;
|
|
800
|
+
}
|
|
759
801
|
}
|
|
760
802
|
BaseService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: BaseService, deps: [{ token: UserService }, { token: StorageService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
761
803
|
BaseService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: BaseService, providedIn: 'root' });
|
|
@@ -769,29 +811,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImpor
|
|
|
769
811
|
class LoginFormComponent {
|
|
770
812
|
constructor(fb, baseService) {
|
|
771
813
|
this.baseService = baseService;
|
|
772
|
-
this.
|
|
773
|
-
this.email = new EventEmitter();
|
|
774
|
-
this.password = new EventEmitter();
|
|
814
|
+
this.isLogged = new EventEmitter();
|
|
775
815
|
this.loginForm = fb.group({
|
|
776
816
|
email: ['', [Validators.required]],
|
|
777
817
|
password: ['', [Validators.required, Validators.minLength(3), Validators.maxLength(15)]],
|
|
778
818
|
});
|
|
779
819
|
}
|
|
780
820
|
login(data) {
|
|
781
|
-
this.baseService.webLogin(data.controls['email'].value, data.controls['password'].value)
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
this.loginForm.controls['email'].setValue('');
|
|
785
|
-
this.loginForm.controls['password'].setValue('');
|
|
821
|
+
this.baseService.webLogin(data.controls['email'].value, data.controls['password'].value).then((isLogged) => {
|
|
822
|
+
this.isLogged.emit(isLogged);
|
|
823
|
+
});
|
|
786
824
|
}
|
|
787
825
|
}
|
|
788
826
|
LoginFormComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: LoginFormComponent, deps: [{ token: i1$1.FormBuilder }, { token: BaseService }], target: i0.ɵɵFactoryTarget.Component });
|
|
789
|
-
LoginFormComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.3", type: LoginFormComponent, selector: "ipt-login-form",
|
|
790
|
-
<div
|
|
791
|
-
|
|
792
|
-
<img [src]="image" alt="wolf" width="150px">
|
|
827
|
+
LoginFormComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.3", type: LoginFormComponent, selector: "ipt-login-form", outputs: { isLogged: "isLogged" }, ngImport: i0, template: `
|
|
828
|
+
<div class="form-container">
|
|
793
829
|
|
|
794
|
-
<h2>IPT PLATFORM</h2>
|
|
830
|
+
<h2 style="text-align: center;">IPT PLATFORM</h2>
|
|
795
831
|
<hr>
|
|
796
832
|
|
|
797
833
|
<form (ngSubmit)="login(loginForm)" [formGroup]="loginForm">
|
|
@@ -810,7 +846,6 @@ LoginFormComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ver
|
|
|
810
846
|
</form>
|
|
811
847
|
|
|
812
848
|
<div class="button-container">
|
|
813
|
-
<a href="">Forget password</a>
|
|
814
849
|
<ipt-button
|
|
815
850
|
[label]="'Login'"
|
|
816
851
|
[primary]="true"
|
|
@@ -819,23 +854,14 @@ LoginFormComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ver
|
|
|
819
854
|
></ipt-button>
|
|
820
855
|
</div>
|
|
821
856
|
|
|
822
|
-
<footer>
|
|
823
|
-
<ipt-button
|
|
824
|
-
[label]="'Register'"
|
|
825
|
-
[primary]="false"
|
|
826
|
-
></ipt-button>
|
|
827
|
-
</footer>
|
|
828
|
-
|
|
829
857
|
</div>
|
|
830
|
-
`, isInline: true, styles: [".form-container{display:grid;grid-template-columns:1fr;justify-items:center;width:350px}.with-background{background-color:#fff;border-radius:25px;box-shadow:#32325d40 0 50px 100px -20px,#0000004d 0 30px 60px -30px}h2{color:#1c77f7}hr{width:80%}form{margin-bottom:60px;display:grid;grid-template-columns:1fr;grid-gap:30px;gap:30px;width:100%}.button-container{margin-bottom:70px;align-items:center;display:flex;gap:50px}footer{background-color:#1c77f7;border-top-left-radius:25px;border-top-right-radius:25px;width:100%;height:100px;display:flex;align-items:center;justify-content:center}\n"], components: [{ type: InputComponent, selector: "ipt-input", inputs: ["inputType", "placeHolder", "validateText", "list", "iconUrl", "control"] }, { type: ButtonComponent, selector: "ipt-button", inputs: ["primary", "size", "label", "buttonType", "isEnabled"], outputs: ["onClick"] }], directives: [{ type: i1
|
|
858
|
+
`, isInline: true, styles: [".form-container{display:grid;grid-template-columns:1fr;justify-items:center;width:350px}.with-background{background-color:#fff;border-radius:25px;box-shadow:#32325d40 0 50px 100px -20px,#0000004d 0 30px 60px -30px}h2{color:#1c77f7}hr{width:80%}form{margin-bottom:60px;display:grid;grid-template-columns:1fr;grid-gap:30px;gap:30px;width:100%}.button-container{margin-bottom:70px;align-items:center;display:flex;gap:50px}footer{background-color:#1c77f7;border-top-left-radius:25px;border-top-right-radius:25px;width:100%;height:100px;display:flex;align-items:center;justify-content:center}\n"], components: [{ type: InputComponent, selector: "ipt-input", inputs: ["inputType", "placeHolder", "validateText", "list", "iconUrl", "control"] }, { type: ButtonComponent, selector: "ipt-button", inputs: ["primary", "size", "label", "buttonType", "isEnabled"], outputs: ["onClick"] }], directives: [{ type: i1$1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { type: i1$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { type: i1$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }] });
|
|
831
859
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: LoginFormComponent, decorators: [{
|
|
832
860
|
type: Component,
|
|
833
861
|
args: [{ selector: 'ipt-login-form', template: `
|
|
834
|
-
<div
|
|
862
|
+
<div class="form-container">
|
|
835
863
|
|
|
836
|
-
<
|
|
837
|
-
|
|
838
|
-
<h2>IPT PLATFORM</h2>
|
|
864
|
+
<h2 style="text-align: center;">IPT PLATFORM</h2>
|
|
839
865
|
<hr>
|
|
840
866
|
|
|
841
867
|
<form (ngSubmit)="login(loginForm)" [formGroup]="loginForm">
|
|
@@ -854,7 +880,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImpor
|
|
|
854
880
|
</form>
|
|
855
881
|
|
|
856
882
|
<div class="button-container">
|
|
857
|
-
<a href="">Forget password</a>
|
|
858
883
|
<ipt-button
|
|
859
884
|
[label]="'Login'"
|
|
860
885
|
[primary]="true"
|
|
@@ -863,36 +888,91 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImpor
|
|
|
863
888
|
></ipt-button>
|
|
864
889
|
</div>
|
|
865
890
|
|
|
866
|
-
<footer>
|
|
867
|
-
<ipt-button
|
|
868
|
-
[label]="'Register'"
|
|
869
|
-
[primary]="false"
|
|
870
|
-
></ipt-button>
|
|
871
|
-
</footer>
|
|
872
|
-
|
|
873
891
|
</div>
|
|
874
892
|
`, styles: [".form-container{display:grid;grid-template-columns:1fr;justify-items:center;width:350px}.with-background{background-color:#fff;border-radius:25px;box-shadow:#32325d40 0 50px 100px -20px,#0000004d 0 30px 60px -30px}h2{color:#1c77f7}hr{width:80%}form{margin-bottom:60px;display:grid;grid-template-columns:1fr;grid-gap:30px;gap:30px;width:100%}.button-container{margin-bottom:70px;align-items:center;display:flex;gap:50px}footer{background-color:#1c77f7;border-top-left-radius:25px;border-top-right-radius:25px;width:100%;height:100px;display:flex;align-items:center;justify-content:center}\n"] }]
|
|
875
|
-
}], ctorParameters: function () { return [{ type: i1$1.FormBuilder }, { type: BaseService }]; }, propDecorators: {
|
|
876
|
-
type: Input
|
|
877
|
-
}], image: [{
|
|
878
|
-
type: Input
|
|
879
|
-
}], email: [{
|
|
880
|
-
type: Output
|
|
881
|
-
}], password: [{
|
|
893
|
+
}], ctorParameters: function () { return [{ type: i1$1.FormBuilder }, { type: BaseService }]; }, propDecorators: { isLogged: [{
|
|
882
894
|
type: Output
|
|
883
895
|
}] } });
|
|
884
896
|
|
|
885
|
-
class
|
|
886
|
-
constructor() {
|
|
897
|
+
class SidenavComponent {
|
|
898
|
+
constructor(userService, baseService, storageService) {
|
|
899
|
+
this.userService = userService;
|
|
900
|
+
this.baseService = baseService;
|
|
901
|
+
this.storageService = storageService;
|
|
902
|
+
this.pageChangeEvent = new EventEmitter();
|
|
903
|
+
this.routes = [];
|
|
904
|
+
}
|
|
887
905
|
ngOnInit() {
|
|
906
|
+
let user = this.storageService.getCurrentUser()?.token;
|
|
907
|
+
let token = user === undefined ? '' : user;
|
|
908
|
+
this.userService.getRoutesForRole(token).subscribe(response => {
|
|
909
|
+
this.routes = this.baseService.jsonToArray(response.data);
|
|
910
|
+
});
|
|
911
|
+
}
|
|
912
|
+
clickPage(event) {
|
|
913
|
+
this.pageChangeEvent.emit(event);
|
|
888
914
|
}
|
|
889
915
|
}
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
916
|
+
SidenavComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: SidenavComponent, deps: [{ token: UserService }, { token: BaseService }, { token: StorageService }], target: i0.ɵɵFactoryTarget.Component });
|
|
917
|
+
SidenavComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.3", type: SidenavComponent, selector: "ipt-sidenav", inputs: { department: "department", setPage: "setPage" }, outputs: { pageChangeEvent: "pageChangeEvent" }, ngImport: i0, template: `
|
|
918
|
+
<mat-sidenav #sidenav mode="push">
|
|
919
|
+
<mat-toolbar color="primary">
|
|
920
|
+
<span>{{department}}</span>
|
|
921
|
+
<span class="spacer"></span>
|
|
922
|
+
<button mat-icon-button (click)="sidenav.toggle()">
|
|
923
|
+
<mat-icon>Menu</mat-icon>
|
|
924
|
+
</button>
|
|
925
|
+
</mat-toolbar>
|
|
926
|
+
|
|
927
|
+
<mat-nav-list>
|
|
928
|
+
<nav class="flex-container-menu" (click)="sidenav.toggle()" *ngFor="let route of routes">
|
|
929
|
+
<ipt-aside-button
|
|
930
|
+
[buttonActive]="this.setPage === route.page"
|
|
931
|
+
[url]="route.url"
|
|
932
|
+
[type]="route.type"
|
|
933
|
+
[icon]="route.icon"
|
|
934
|
+
[text]="route.text"
|
|
935
|
+
(isClicked)="clickPage(route.page)"
|
|
936
|
+
>
|
|
937
|
+
</ipt-aside-button>
|
|
938
|
+
</nav>
|
|
939
|
+
</mat-nav-list>
|
|
940
|
+
</mat-sidenav>
|
|
941
|
+
`, isInline: true, styles: [""], components: [{ type: i4.MatSidenav, selector: "mat-sidenav", inputs: ["fixedInViewport", "fixedTopGap", "fixedBottomGap"], exportAs: ["matSidenav"] }, { type: i5.MatToolbar, selector: "mat-toolbar", inputs: ["color"], exportAs: ["matToolbar"] }, { type: i6.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { type: i7.MatNavList, selector: "mat-nav-list", inputs: ["disableRipple", "disabled"], exportAs: ["matNavList"] }, { type: AsideButtonComponent, selector: "ipt-aside-button", inputs: ["icon", "text", "type", "url", "textColor", "buttonActive"], outputs: ["isClicked"] }], directives: [{ type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
|
|
942
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: SidenavComponent, decorators: [{
|
|
893
943
|
type: Component,
|
|
894
|
-
args: [{ selector: '
|
|
895
|
-
|
|
944
|
+
args: [{ selector: 'ipt-sidenav', template: `
|
|
945
|
+
<mat-sidenav #sidenav mode="push">
|
|
946
|
+
<mat-toolbar color="primary">
|
|
947
|
+
<span>{{department}}</span>
|
|
948
|
+
<span class="spacer"></span>
|
|
949
|
+
<button mat-icon-button (click)="sidenav.toggle()">
|
|
950
|
+
<mat-icon>Menu</mat-icon>
|
|
951
|
+
</button>
|
|
952
|
+
</mat-toolbar>
|
|
953
|
+
|
|
954
|
+
<mat-nav-list>
|
|
955
|
+
<nav class="flex-container-menu" (click)="sidenav.toggle()" *ngFor="let route of routes">
|
|
956
|
+
<ipt-aside-button
|
|
957
|
+
[buttonActive]="this.setPage === route.page"
|
|
958
|
+
[url]="route.url"
|
|
959
|
+
[type]="route.type"
|
|
960
|
+
[icon]="route.icon"
|
|
961
|
+
[text]="route.text"
|
|
962
|
+
(isClicked)="clickPage(route.page)"
|
|
963
|
+
>
|
|
964
|
+
</ipt-aside-button>
|
|
965
|
+
</nav>
|
|
966
|
+
</mat-nav-list>
|
|
967
|
+
</mat-sidenav>
|
|
968
|
+
`, styles: [""] }]
|
|
969
|
+
}], ctorParameters: function () { return [{ type: UserService }, { type: BaseService }, { type: StorageService }]; }, propDecorators: { department: [{
|
|
970
|
+
type: Input
|
|
971
|
+
}], setPage: [{
|
|
972
|
+
type: Input
|
|
973
|
+
}], pageChangeEvent: [{
|
|
974
|
+
type: Output
|
|
975
|
+
}] } });
|
|
896
976
|
|
|
897
977
|
class ComponentsModule {
|
|
898
978
|
}
|
|
@@ -908,10 +988,14 @@ ComponentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", versio
|
|
|
908
988
|
SelectComponent,
|
|
909
989
|
TextLinkComponent,
|
|
910
990
|
LoginFormComponent,
|
|
911
|
-
|
|
991
|
+
SidenavComponent], imports: [CommonModule,
|
|
912
992
|
BrowserModule,
|
|
913
993
|
FormsModule,
|
|
914
|
-
ReactiveFormsModule
|
|
994
|
+
ReactiveFormsModule,
|
|
995
|
+
MatSidenavModule,
|
|
996
|
+
MatToolbarModule,
|
|
997
|
+
MatIconModule,
|
|
998
|
+
MatListModule], exports: [AsideButtonComponent,
|
|
915
999
|
ButtonComponent,
|
|
916
1000
|
CheckboxComponent,
|
|
917
1001
|
DatalistComponent,
|
|
@@ -921,12 +1005,17 @@ ComponentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", versio
|
|
|
921
1005
|
RadioComponent,
|
|
922
1006
|
SelectComponent,
|
|
923
1007
|
TextLinkComponent,
|
|
924
|
-
LoginFormComponent
|
|
1008
|
+
LoginFormComponent,
|
|
1009
|
+
SidenavComponent] });
|
|
925
1010
|
ComponentsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: ComponentsModule, imports: [[
|
|
926
1011
|
CommonModule,
|
|
927
1012
|
BrowserModule,
|
|
928
1013
|
FormsModule,
|
|
929
1014
|
ReactiveFormsModule,
|
|
1015
|
+
MatSidenavModule,
|
|
1016
|
+
MatToolbarModule,
|
|
1017
|
+
MatIconModule,
|
|
1018
|
+
MatListModule
|
|
930
1019
|
]] });
|
|
931
1020
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: ComponentsModule, decorators: [{
|
|
932
1021
|
type: NgModule,
|
|
@@ -943,13 +1032,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImpor
|
|
|
943
1032
|
SelectComponent,
|
|
944
1033
|
TextLinkComponent,
|
|
945
1034
|
LoginFormComponent,
|
|
946
|
-
|
|
1035
|
+
SidenavComponent,
|
|
947
1036
|
],
|
|
948
1037
|
imports: [
|
|
949
1038
|
CommonModule,
|
|
950
1039
|
BrowserModule,
|
|
951
1040
|
FormsModule,
|
|
952
1041
|
ReactiveFormsModule,
|
|
1042
|
+
MatSidenavModule,
|
|
1043
|
+
MatToolbarModule,
|
|
1044
|
+
MatIconModule,
|
|
1045
|
+
MatListModule
|
|
953
1046
|
],
|
|
954
1047
|
exports: [
|
|
955
1048
|
AsideButtonComponent,
|
|
@@ -963,6 +1056,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImpor
|
|
|
963
1056
|
SelectComponent,
|
|
964
1057
|
TextLinkComponent,
|
|
965
1058
|
LoginFormComponent,
|
|
1059
|
+
SidenavComponent,
|
|
966
1060
|
]
|
|
967
1061
|
}]
|
|
968
1062
|
}] });
|
|
@@ -1196,5 +1290,5 @@ class UserLoginRs {
|
|
|
1196
1290
|
* Generated bundle index. Do not edit.
|
|
1197
1291
|
*/
|
|
1198
1292
|
|
|
1199
|
-
export { AsideButtonComponent, BaseService, ButtonComponent, CheckboxComponent, ComponentsModule, CoreModule, CourseService, DatalistComponent, DesignSystemModule, InputComponent, LevelButtonComponent, LevelTextComponent, LoginFormComponent, ParameterService, RadioComponent, RedirectGuard, SelectComponent, Session, StorageService, SwitchService, TextLinkComponent, UserLoginRs, UserRs, UserService };
|
|
1293
|
+
export { AsideButtonComponent, BaseService, ButtonComponent, CheckboxComponent, ComponentsModule, CoreModule, CourseService, DatalistComponent, DesignSystemModule, InputComponent, LevelButtonComponent, LevelTextComponent, LoginFormComponent, ParameterService, RadioComponent, RedirectGuard, SelectComponent, Session, SidenavComponent, StorageService, SwitchService, TextLinkComponent, UserLoginRs, UserRs, UserService };
|
|
1200
1294
|
//# sourceMappingURL=iptdevs-design-system.mjs.map
|