iptdevs-design-system 2.2.32 → 2.2.35
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/atoms/input/input.component.mjs +29 -37
- package/esm2020/lib/components/components.module.mjs +12 -6
- package/esm2020/lib/components/forms/login-form/login-form.component.mjs +1 -1
- package/esm2020/lib/design-system.module.mjs +12 -5
- package/esm2020/public-api.mjs +3 -1
- package/fesm2015/iptdevs-design-system.mjs +52 -48
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +52 -48
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/components/atoms/input/input.component.d.ts +5 -5
- package/lib/components/components.module.d.ts +2 -1
- package/lib/design-system.module.d.ts +2 -1
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
2
|
import { EventEmitter, Component, Input, Output, Injectable, NgModule } from '@angular/core';
|
|
3
|
+
import * as i3 from 'ng2-currency-mask';
|
|
4
|
+
import { CurrencyMaskModule } from 'ng2-currency-mask';
|
|
3
5
|
import * as i1 from '@angular/common';
|
|
4
6
|
import { CommonModule, CurrencyPipe, TitleCasePipe } from '@angular/common';
|
|
5
7
|
import * as i1$1 from '@angular/forms';
|
|
@@ -7,7 +9,7 @@ import { Validators, FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
|
7
9
|
import Swal from 'sweetalert2';
|
|
8
10
|
import * as i1$2 from '@angular/common/http';
|
|
9
11
|
import { HttpHeaders } from '@angular/common/http';
|
|
10
|
-
import * as i3 from '@angular/material/sidenav';
|
|
12
|
+
import * as i3$1 from '@angular/material/sidenav';
|
|
11
13
|
import { MatSidenavModule } from '@angular/material/sidenav';
|
|
12
14
|
import * as i4 from '@angular/material/toolbar';
|
|
13
15
|
import { MatToolbarModule } from '@angular/material/toolbar';
|
|
@@ -252,45 +254,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImpor
|
|
|
252
254
|
}] } });
|
|
253
255
|
|
|
254
256
|
class InputComponent {
|
|
255
|
-
constructor(
|
|
256
|
-
this.currencyPipe = currencyPipe;
|
|
257
|
+
constructor() {
|
|
257
258
|
this.data = [];
|
|
258
259
|
this.clicked = false;
|
|
259
260
|
this.withPipe = false;
|
|
261
|
+
this.prefix = '$';
|
|
262
|
+
this.thousands = '.';
|
|
263
|
+
this.decimal = ',';
|
|
260
264
|
}
|
|
261
265
|
set control(value) {
|
|
262
266
|
if (this.formControl !== value) {
|
|
263
267
|
this.formControl = value;
|
|
264
268
|
}
|
|
265
269
|
}
|
|
266
|
-
ngOnInit() {
|
|
267
|
-
// if (this.withPipe && this.formControl !== null) {
|
|
268
|
-
// this.formControl = this.currenPipe(this.control);
|
|
269
|
-
// console.log(this.formControl);
|
|
270
|
-
// console.log(this.withPipe, this.formControl, this.control);
|
|
271
|
-
// this.formControl.valueChanges.subscribe(value => {
|
|
272
|
-
// console.log(value);
|
|
273
|
-
// this.formControl.patchValue(
|
|
274
|
-
// { control: this.currencyPipe.transform(value)},
|
|
275
|
-
// { onlySelf: true, emitEvent: false}
|
|
276
|
-
// )
|
|
277
|
-
// })
|
|
278
|
-
// }
|
|
279
|
-
}
|
|
280
|
-
currenPipe(datControl) {
|
|
281
|
-
let formatted = new Intl.NumberFormat("en-US", {
|
|
282
|
-
style: 'currency',
|
|
283
|
-
currency: 'USD'
|
|
284
|
-
}).format(datControl);
|
|
285
|
-
console.log(formatted);
|
|
286
|
-
return formatted;
|
|
287
|
-
}
|
|
270
|
+
ngOnInit() { }
|
|
288
271
|
click(value) {
|
|
289
272
|
this.clicked = value.isTrusted;
|
|
290
273
|
}
|
|
291
274
|
}
|
|
292
|
-
InputComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: InputComponent, deps: [
|
|
293
|
-
InputComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.3", type: InputComponent, selector: "ipt-input", inputs: { inputType: "inputType", placeHolder: "placeHolder", validateText: "validateText", withPipe: "withPipe", list: "list", iconUrl: "iconUrl", control: "control" }, ngImport: i0, template: `
|
|
275
|
+
InputComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: InputComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
276
|
+
InputComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.3", type: InputComponent, selector: "ipt-input", inputs: { inputType: "inputType", placeHolder: "placeHolder", validateText: "validateText", withPipe: "withPipe", list: "list", iconUrl: "iconUrl", control: "control", prefix: "prefix", thousands: "thousands", decimal: "decimal" }, ngImport: i0, template: `
|
|
294
277
|
<div class="input-container">
|
|
295
278
|
<input *ngIf="inputType === 'date'"
|
|
296
279
|
class="input"
|
|
@@ -308,10 +291,12 @@ InputComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version
|
|
|
308
291
|
[attr.list]="list"/>
|
|
309
292
|
|
|
310
293
|
<input *ngIf="inputType === 'text' && withPipe"
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
294
|
+
class="input"
|
|
295
|
+
currencyMask
|
|
296
|
+
[options]="{ prefix: prefix, thousands: thousands, decimal: decimal, allowNegative: false }"
|
|
297
|
+
type="{{ inputType }}"
|
|
298
|
+
[formControl]="formControl"
|
|
299
|
+
[attr.list]="list"/>
|
|
315
300
|
|
|
316
301
|
<input *ngIf="inputType === 'time'"
|
|
317
302
|
class="input"
|
|
@@ -331,7 +316,7 @@ InputComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version
|
|
|
331
316
|
{{ validateText }}
|
|
332
317
|
</p>
|
|
333
318
|
</div>
|
|
334
|
-
`, isInline: true, styles: ["*{font-family:Poppins,sans-serif}@media screen and (min-width: 320px){p{color:#c73a3a;font-size:12px;padding-left:15px}}@media screen and (min-width: 768px){p{color:#c73a3a;font-size:13px;padding-left:15px}}@media screen and (min-width: 1024px){p{color:#c73a3a;font-size:13px;padding-left:15px}}.input-container{position:relative;margin-top:30px}input{box-shadow:#64646f33 0 7px 29px;border-radius:10px;border:none;outline:none;display:block;transition:.2s;font-weight:300;width:-webkit-fill-available;width:-moz-available;height:28px;padding-left:10px;background-color:#fff;-webkit-appearance:none}input:hover{box-shadow:#00000029 0 3px 6px,#0000003b 0 3px 6px}input:focus{box-shadow:#00000029 0 3px 6px,#0000003b 0 3px 6px;transition:0s;border:1.5px solid #1c77f7}label{color:#999;font-size:15px;font-weight:400;position:absolute;pointer-events:none;left:20px;top:7px;transition:.2s ease all;-moz-transition:.2s ease all;-webkit-transition:.2s ease all}.input:focus~label,.input:invalid~label{top:-20px;font-size:15px;color:#1c77f7}.labelUp{color:#999;font-size:15px;font-weight:400;position:absolute;pointer-events:none;left:20px;top:-20px;transition:.2s ease all;-moz-transition:.2s ease all;-webkit-transition:.2s ease all}\n"], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i1$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
319
|
+
`, isInline: true, styles: ["*{font-family:Poppins,sans-serif}@media screen and (min-width: 320px){p{color:#c73a3a;font-size:12px;padding-left:15px}}@media screen and (min-width: 768px){p{color:#c73a3a;font-size:13px;padding-left:15px}}@media screen and (min-width: 1024px){p{color:#c73a3a;font-size:13px;padding-left:15px}}.input-container{position:relative;margin-top:30px}input{box-shadow:#64646f33 0 7px 29px;border-radius:10px;border:none;outline:none;display:block;transition:.2s;font-weight:300;width:-webkit-fill-available;width:-moz-available;height:28px;padding-left:10px;background-color:#fff;-webkit-appearance:none}input:hover{box-shadow:#00000029 0 3px 6px,#0000003b 0 3px 6px}input:focus{box-shadow:#00000029 0 3px 6px,#0000003b 0 3px 6px;transition:0s;border:1.5px solid #1c77f7}label{color:#999;font-size:15px;font-weight:400;position:absolute;pointer-events:none;left:20px;top:7px;transition:.2s ease all;-moz-transition:.2s ease all;-webkit-transition:.2s ease all}.input:focus~label,.input:invalid~label{top:-20px;font-size:15px;color:#1c77f7}.labelUp{color:#999;font-size:15px;font-weight:400;position:absolute;pointer-events:none;left:20px;top:-20px;transition:.2s ease all;-moz-transition:.2s ease all;-webkit-transition:.2s ease all}\n"], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i1$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { type: i3.CurrencyMaskDirective, selector: "[currencyMask]", inputs: ["max", "min", "options"] }, { type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
335
320
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: InputComponent, decorators: [{
|
|
336
321
|
type: Component,
|
|
337
322
|
args: [{ selector: 'ipt-input', template: `
|
|
@@ -352,10 +337,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImpor
|
|
|
352
337
|
[attr.list]="list"/>
|
|
353
338
|
|
|
354
339
|
<input *ngIf="inputType === 'text' && withPipe"
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
340
|
+
class="input"
|
|
341
|
+
currencyMask
|
|
342
|
+
[options]="{ prefix: prefix, thousands: thousands, decimal: decimal, allowNegative: false }"
|
|
343
|
+
type="{{ inputType }}"
|
|
344
|
+
[formControl]="formControl"
|
|
345
|
+
[attr.list]="list"/>
|
|
359
346
|
|
|
360
347
|
<input *ngIf="inputType === 'time'"
|
|
361
348
|
class="input"
|
|
@@ -376,7 +363,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImpor
|
|
|
376
363
|
</p>
|
|
377
364
|
</div>
|
|
378
365
|
`, styles: ["*{font-family:Poppins,sans-serif}@media screen and (min-width: 320px){p{color:#c73a3a;font-size:12px;padding-left:15px}}@media screen and (min-width: 768px){p{color:#c73a3a;font-size:13px;padding-left:15px}}@media screen and (min-width: 1024px){p{color:#c73a3a;font-size:13px;padding-left:15px}}.input-container{position:relative;margin-top:30px}input{box-shadow:#64646f33 0 7px 29px;border-radius:10px;border:none;outline:none;display:block;transition:.2s;font-weight:300;width:-webkit-fill-available;width:-moz-available;height:28px;padding-left:10px;background-color:#fff;-webkit-appearance:none}input:hover{box-shadow:#00000029 0 3px 6px,#0000003b 0 3px 6px}input:focus{box-shadow:#00000029 0 3px 6px,#0000003b 0 3px 6px;transition:0s;border:1.5px solid #1c77f7}label{color:#999;font-size:15px;font-weight:400;position:absolute;pointer-events:none;left:20px;top:7px;transition:.2s ease all;-moz-transition:.2s ease all;-webkit-transition:.2s ease all}.input:focus~label,.input:invalid~label{top:-20px;font-size:15px;color:#1c77f7}.labelUp{color:#999;font-size:15px;font-weight:400;position:absolute;pointer-events:none;left:20px;top:-20px;transition:.2s ease all;-moz-transition:.2s ease all;-webkit-transition:.2s ease all}\n"] }]
|
|
379
|
-
}], ctorParameters: function () { return [
|
|
366
|
+
}], ctorParameters: function () { return []; }, propDecorators: { inputType: [{
|
|
380
367
|
type: Input
|
|
381
368
|
}], placeHolder: [{
|
|
382
369
|
type: Input
|
|
@@ -390,6 +377,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImpor
|
|
|
390
377
|
type: Input
|
|
391
378
|
}], control: [{
|
|
392
379
|
type: Input
|
|
380
|
+
}], prefix: [{
|
|
381
|
+
type: Input
|
|
382
|
+
}], thousands: [{
|
|
383
|
+
type: Input
|
|
384
|
+
}], decimal: [{
|
|
385
|
+
type: Input
|
|
393
386
|
}] } });
|
|
394
387
|
|
|
395
388
|
class LevelButtonComponent {
|
|
@@ -957,7 +950,7 @@ LoginFormComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ver
|
|
|
957
950
|
</div>
|
|
958
951
|
|
|
959
952
|
</div>
|
|
960
|
-
`, 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", "withPipe", "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"] }] });
|
|
953
|
+
`, 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", "withPipe", "list", "iconUrl", "control", "prefix", "thousands", "decimal"] }, { 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"] }] });
|
|
961
954
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: LoginFormComponent, decorators: [{
|
|
962
955
|
type: Component,
|
|
963
956
|
args: [{ selector: 'ipt-login-form', template: `
|
|
@@ -1072,7 +1065,7 @@ SidenavComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", versi
|
|
|
1072
1065
|
<div class="photo-logout"></div>
|
|
1073
1066
|
</div>
|
|
1074
1067
|
</mat-toolbar>
|
|
1075
|
-
`, isInline: true, styles: ["*{font-family:Poppins,sans-serif}@media screen and (min-width: 320px){.header{background-color:#fff;display:flex;justify-content:space-between;filter:drop-shadow(0px -1px 7px #000)}mat-sidenav{width:-moz-fit-content!important;width:fit-content!important;background-color:#1c77f7!important}.img-logo,.text-container{display:none}.mat-toolbar.mat-primary{background-color:#fff!important;color:#003d99!important;filter:drop-shadow(0px -1px 7px #000)}.logout-container{box-shadow:#11111a1a 0 8px 24px,#11111a1a 0 16px 56px,#11111a1a 0 24px 80px;height:35px;width:auto;border-radius:30px;display:flex;margin-left:10px}.logout-button{display:flex;align-items:center;color:#1c77f7;font-weight:500;font-size:16px;margin-left:20px;text-align:center;width:150px}.photo-logout{background:url(http://qa.iptdev.com.co/assets/icons/exit.png);background-size:25px 25px;background-position:center;background-repeat:no-repeat}.menu-icon{background:url(http://qa.iptdev.com.co/assets/icons/icon-menu.png);background-size:25px 25px;background-position:center;background-repeat:no-repeat}.menu-icon-close{background:url(http://qa.iptdev.com.co/assets/icons/cruz.png);background-size:25px 25px;background-position:center;background-repeat:no-repeat;width:35px;height:35px}.menu-container{box-shadow:#11111a1a 0 8px 24px,#11111a1a 0 16px 56px,#11111a1a 0 24px 80px;height:35px;width:52.5px;width:auto;border-radius:30px;display:flex}.menu-container p{width:85px;display:flex;align-items:center;color:#1c77f7;font-weight:500;font-size:16px;margin:0 0 0 15px;text-align:center}}@media screen and (min-width: 768px){.img-logo{display:flex;width:120px;height:60px}.text-container{border-radius:40px;height:45px;width:100%;display:flex;gap:-100px;justify-content:center;flex-direction:column;align-items:flex-start}}.p1{color:gray;margin-left:30px;font-size:13px;height:20px}.p2{margin-left:30px;font-size:14px;font-weight:600;color:#1c77f7}.flex-container-menu{font-size:18px;color:#fff!important}.mat-nav-list{padding:0}\n"], components: [{ type: i3.MatSidenav, selector: "mat-sidenav", inputs: ["fixedInViewport", "fixedTopGap", "fixedBottomGap"], exportAs: ["matSidenav"] }, { type: i4.MatToolbar, selector: "mat-toolbar", inputs: ["color"], exportAs: ["matToolbar"] }, { type: i5.MatNavList, selector: "mat-nav-list", inputs: ["disableRipple", "disabled"], exportAs: ["matNavList"] }, { type: AsideButtonComponent, selector: "ipt-aside-button", inputs: ["icon", "text", "buttonActive"], outputs: ["isClicked"] }], directives: [{ type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
1068
|
+
`, isInline: true, styles: ["*{font-family:Poppins,sans-serif}@media screen and (min-width: 320px){.header{background-color:#fff;display:flex;justify-content:space-between;filter:drop-shadow(0px -1px 7px #000)}mat-sidenav{width:-moz-fit-content!important;width:fit-content!important;background-color:#1c77f7!important}.img-logo,.text-container{display:none}.mat-toolbar.mat-primary{background-color:#fff!important;color:#003d99!important;filter:drop-shadow(0px -1px 7px #000)}.logout-container{box-shadow:#11111a1a 0 8px 24px,#11111a1a 0 16px 56px,#11111a1a 0 24px 80px;height:35px;width:auto;border-radius:30px;display:flex;margin-left:10px}.logout-button{display:flex;align-items:center;color:#1c77f7;font-weight:500;font-size:16px;margin-left:20px;text-align:center;width:150px}.photo-logout{background:url(http://qa.iptdev.com.co/assets/icons/exit.png);background-size:25px 25px;background-position:center;background-repeat:no-repeat}.menu-icon{background:url(http://qa.iptdev.com.co/assets/icons/icon-menu.png);background-size:25px 25px;background-position:center;background-repeat:no-repeat}.menu-icon-close{background:url(http://qa.iptdev.com.co/assets/icons/cruz.png);background-size:25px 25px;background-position:center;background-repeat:no-repeat;width:35px;height:35px}.menu-container{box-shadow:#11111a1a 0 8px 24px,#11111a1a 0 16px 56px,#11111a1a 0 24px 80px;height:35px;width:52.5px;width:auto;border-radius:30px;display:flex}.menu-container p{width:85px;display:flex;align-items:center;color:#1c77f7;font-weight:500;font-size:16px;margin:0 0 0 15px;text-align:center}}@media screen and (min-width: 768px){.img-logo{display:flex;width:120px;height:60px}.text-container{border-radius:40px;height:45px;width:100%;display:flex;gap:-100px;justify-content:center;flex-direction:column;align-items:flex-start}}.p1{color:gray;margin-left:30px;font-size:13px;height:20px}.p2{margin-left:30px;font-size:14px;font-weight:600;color:#1c77f7}.flex-container-menu{font-size:18px;color:#fff!important}.mat-nav-list{padding:0}\n"], components: [{ type: i3$1.MatSidenav, selector: "mat-sidenav", inputs: ["fixedInViewport", "fixedTopGap", "fixedBottomGap"], exportAs: ["matSidenav"] }, { type: i4.MatToolbar, selector: "mat-toolbar", inputs: ["color"], exportAs: ["matToolbar"] }, { type: i5.MatNavList, selector: "mat-nav-list", inputs: ["disableRipple", "disabled"], exportAs: ["matNavList"] }, { type: AsideButtonComponent, selector: "ipt-aside-button", inputs: ["icon", "text", "buttonActive"], outputs: ["isClicked"] }], directives: [{ type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
1076
1069
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: SidenavComponent, decorators: [{
|
|
1077
1070
|
type: Component,
|
|
1078
1071
|
args: [{ selector: 'ipt-sidenav', template: `
|
|
@@ -1163,7 +1156,8 @@ ComponentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", versio
|
|
|
1163
1156
|
// BrowserModule, // Para evitar doble carga de BrowserModule
|
|
1164
1157
|
FormsModule,
|
|
1165
1158
|
ReactiveFormsModule,
|
|
1166
|
-
MaterialModule
|
|
1159
|
+
MaterialModule,
|
|
1160
|
+
CurrencyMaskModule], exports: [AsideButtonComponent,
|
|
1167
1161
|
ButtonComponent,
|
|
1168
1162
|
CheckboxComponent,
|
|
1169
1163
|
DatalistComponent,
|
|
@@ -1174,7 +1168,8 @@ ComponentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", versio
|
|
|
1174
1168
|
SelectComponent,
|
|
1175
1169
|
TextLinkComponent,
|
|
1176
1170
|
LoginFormComponent,
|
|
1177
|
-
SidenavComponent
|
|
1171
|
+
SidenavComponent,
|
|
1172
|
+
CurrencyMaskModule] });
|
|
1178
1173
|
ComponentsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: ComponentsModule, providers: [
|
|
1179
1174
|
CurrencyPipe,
|
|
1180
1175
|
TitleCasePipe
|
|
@@ -1183,8 +1178,9 @@ ComponentsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", versio
|
|
|
1183
1178
|
// BrowserModule, // Para evitar doble carga de BrowserModule
|
|
1184
1179
|
FormsModule,
|
|
1185
1180
|
ReactiveFormsModule,
|
|
1186
|
-
MaterialModule
|
|
1187
|
-
|
|
1181
|
+
MaterialModule,
|
|
1182
|
+
CurrencyMaskModule
|
|
1183
|
+
], CurrencyMaskModule] });
|
|
1188
1184
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: ComponentsModule, decorators: [{
|
|
1189
1185
|
type: NgModule,
|
|
1190
1186
|
args: [{
|
|
@@ -1207,7 +1203,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImpor
|
|
|
1207
1203
|
// BrowserModule, // Para evitar doble carga de BrowserModule
|
|
1208
1204
|
FormsModule,
|
|
1209
1205
|
ReactiveFormsModule,
|
|
1210
|
-
MaterialModule
|
|
1206
|
+
MaterialModule,
|
|
1207
|
+
CurrencyMaskModule
|
|
1211
1208
|
],
|
|
1212
1209
|
exports: [
|
|
1213
1210
|
AsideButtonComponent,
|
|
@@ -1222,6 +1219,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImpor
|
|
|
1222
1219
|
TextLinkComponent,
|
|
1223
1220
|
LoginFormComponent,
|
|
1224
1221
|
SidenavComponent,
|
|
1222
|
+
CurrencyMaskModule
|
|
1225
1223
|
],
|
|
1226
1224
|
providers: [
|
|
1227
1225
|
CurrencyPipe,
|
|
@@ -1678,23 +1676,29 @@ class DesignSystemModule {
|
|
|
1678
1676
|
}
|
|
1679
1677
|
DesignSystemModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: DesignSystemModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1680
1678
|
DesignSystemModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: DesignSystemModule, imports: [ComponentsModule,
|
|
1681
|
-
CoreModule
|
|
1682
|
-
|
|
1679
|
+
CoreModule,
|
|
1680
|
+
CurrencyMaskModule], exports: [ComponentsModule,
|
|
1681
|
+
CoreModule,
|
|
1682
|
+
CurrencyMaskModule] });
|
|
1683
1683
|
DesignSystemModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: DesignSystemModule, imports: [[
|
|
1684
1684
|
ComponentsModule,
|
|
1685
1685
|
CoreModule,
|
|
1686
|
+
CurrencyMaskModule
|
|
1686
1687
|
], ComponentsModule,
|
|
1687
|
-
CoreModule
|
|
1688
|
+
CoreModule,
|
|
1689
|
+
CurrencyMaskModule] });
|
|
1688
1690
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: DesignSystemModule, decorators: [{
|
|
1689
1691
|
type: NgModule,
|
|
1690
1692
|
args: [{
|
|
1691
1693
|
imports: [
|
|
1692
1694
|
ComponentsModule,
|
|
1693
1695
|
CoreModule,
|
|
1696
|
+
CurrencyMaskModule
|
|
1694
1697
|
],
|
|
1695
1698
|
exports: [
|
|
1696
1699
|
ComponentsModule,
|
|
1697
|
-
CoreModule
|
|
1700
|
+
CoreModule,
|
|
1701
|
+
CurrencyMaskModule
|
|
1698
1702
|
]
|
|
1699
1703
|
}]
|
|
1700
1704
|
}] });
|