@litigiovirtual/ius-design-components 1.0.213 → 1.0.215
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/esm2022/lib/avatar-icon/avatar-icon.component.mjs +4 -3
- package/esm2022/lib/page-not-found/index.mjs +2 -0
- package/esm2022/lib/page-not-found/page-not-found.component.mjs +23 -0
- package/esm2022/public-api.mjs +2 -1
- package/fesm2022/litigiovirtual-ius-design-components.mjs +23 -3
- package/fesm2022/litigiovirtual-ius-design-components.mjs.map +1 -1
- package/lib/avatar-icon/avatar-icon.component.d.ts +1 -1
- package/lib/page-not-found/index.d.ts +1 -0
- package/lib/page-not-found/page-not-found.component.d.ts +8 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -3,6 +3,7 @@ import { Component, Input } from '@angular/core';
|
|
|
3
3
|
import { IconXsComponent } from "../icon-xs";
|
|
4
4
|
import { IconSmComponent } from '../icon-sm';
|
|
5
5
|
import { IconMdComponent } from "../icon-md";
|
|
6
|
+
import { IconXlComponent } from "../icon-xl";
|
|
6
7
|
import * as i0 from "@angular/core";
|
|
7
8
|
import * as i1 from "@angular/common";
|
|
8
9
|
export class AvatarIconComponent {
|
|
@@ -13,11 +14,11 @@ export class AvatarIconComponent {
|
|
|
13
14
|
this.iconColor = 'grey';
|
|
14
15
|
}
|
|
15
16
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: AvatarIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
16
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.12", type: AvatarIconComponent, isStandalone: true, selector: "ius-avatar-icon", inputs: { size: "size", imageUrl: "imageUrl", backgroundColor: "backgroundColor", iconName: "iconName", iconColor: "iconColor" }, ngImport: i0, template: "<div class=\"avatar\" [ngClass]=\"size\" [ngStyle]=\"{'background-color': backgroundColor}\">\r\n @if (imageUrl) {\r\n <img [src]=\"imageUrl\" alt=\"avatar\" />\r\n } @else {\r\n @switch (size) {\r\n @case('sm') {\r\n <ius-icon-xs [iconName]=\"iconName\" [color]=\"iconColor\"></ius-icon-xs>\r\n }\r\n @case('md') {\r\n <ius-icon-sm [iconName]=\"iconName\" [color]=\"iconColor\"></ius-icon-sm>\r\n }\r\n @case('lg') {\r\n <ius-icon-md [iconName]=\"iconName\" [color]=\"iconColor\"></ius-icon-md>\r\n }\r\n }\r\n }\r\n</div>", styles: [".avatar{border-radius:50%;display:flex;justify-content:center;align-items:center}.avatar img{border-radius:50%;width:100%;height:100%;object-fit:cover;display:block}.avatar.sm{width:24px;height:24px}.avatar.md{width:32px;height:32px}.avatar.lg{width:40px;height:40px}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: IconXsComponent, selector: "ius-icon-xs", inputs: ["iconName", "color"] }, { kind: "component", type: IconSmComponent, selector: "ius-icon-sm", inputs: ["iconName", "color"] }, { kind: "component", type: IconMdComponent, selector: "ius-icon-md", inputs: ["iconName", "color"] }] }); }
|
|
17
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.12", type: AvatarIconComponent, isStandalone: true, selector: "ius-avatar-icon", inputs: { size: "size", imageUrl: "imageUrl", backgroundColor: "backgroundColor", iconName: "iconName", iconColor: "iconColor" }, ngImport: i0, template: "<div class=\"avatar\" [ngClass]=\"size\" [ngStyle]=\"{'background-color': backgroundColor}\">\r\n @if (imageUrl) {\r\n <img [src]=\"imageUrl\" alt=\"avatar\" />\r\n } @else {\r\n @switch (size) {\r\n @case('sm') {\r\n <ius-icon-xs [iconName]=\"iconName\" [color]=\"iconColor\"></ius-icon-xs>\r\n }\r\n @case('md') {\r\n <ius-icon-sm [iconName]=\"iconName\" [color]=\"iconColor\"></ius-icon-sm>\r\n }\r\n @case('lg') {\r\n <ius-icon-md [iconName]=\"iconName\" [color]=\"iconColor\"></ius-icon-md>\r\n }\r\n @case('xl') {\r\n <ius-icon-xl [iconName]=\"iconName\" [color]=\"iconColor\"></ius-icon-xl>\r\n }\r\n }\r\n }\r\n</div>", styles: [".avatar{border-radius:50%;display:flex;justify-content:center;align-items:center}.avatar img{border-radius:50%;width:100%;height:100%;object-fit:cover;display:block}.avatar.sm{width:24px;height:24px}.avatar.md{width:32px;height:32px}.avatar.lg{width:40px;height:40px}.avatar.xl{width:64px;height:64px}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: IconXsComponent, selector: "ius-icon-xs", inputs: ["iconName", "color"] }, { kind: "component", type: IconSmComponent, selector: "ius-icon-sm", inputs: ["iconName", "color"] }, { kind: "component", type: IconMdComponent, selector: "ius-icon-md", inputs: ["iconName", "color"] }, { kind: "component", type: IconXlComponent, selector: "ius-icon-xl", inputs: ["iconName", "color"] }] }); }
|
|
17
18
|
}
|
|
18
19
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: AvatarIconComponent, decorators: [{
|
|
19
20
|
type: Component,
|
|
20
|
-
args: [{ selector: 'ius-avatar-icon', standalone: true, imports: [CommonModule, IconXsComponent, IconSmComponent, IconMdComponent], template: "<div class=\"avatar\" [ngClass]=\"size\" [ngStyle]=\"{'background-color': backgroundColor}\">\r\n @if (imageUrl) {\r\n <img [src]=\"imageUrl\" alt=\"avatar\" />\r\n } @else {\r\n @switch (size) {\r\n @case('sm') {\r\n <ius-icon-xs [iconName]=\"iconName\" [color]=\"iconColor\"></ius-icon-xs>\r\n }\r\n @case('md') {\r\n <ius-icon-sm [iconName]=\"iconName\" [color]=\"iconColor\"></ius-icon-sm>\r\n }\r\n @case('lg') {\r\n <ius-icon-md [iconName]=\"iconName\" [color]=\"iconColor\"></ius-icon-md>\r\n }\r\n }\r\n }\r\n</div>", styles: [".avatar{border-radius:50%;display:flex;justify-content:center;align-items:center}.avatar img{border-radius:50%;width:100%;height:100%;object-fit:cover;display:block}.avatar.sm{width:24px;height:24px}.avatar.md{width:32px;height:32px}.avatar.lg{width:40px;height:40px}\n"] }]
|
|
21
|
+
args: [{ selector: 'ius-avatar-icon', standalone: true, imports: [CommonModule, IconXsComponent, IconSmComponent, IconMdComponent, IconXlComponent], template: "<div class=\"avatar\" [ngClass]=\"size\" [ngStyle]=\"{'background-color': backgroundColor}\">\r\n @if (imageUrl) {\r\n <img [src]=\"imageUrl\" alt=\"avatar\" />\r\n } @else {\r\n @switch (size) {\r\n @case('sm') {\r\n <ius-icon-xs [iconName]=\"iconName\" [color]=\"iconColor\"></ius-icon-xs>\r\n }\r\n @case('md') {\r\n <ius-icon-sm [iconName]=\"iconName\" [color]=\"iconColor\"></ius-icon-sm>\r\n }\r\n @case('lg') {\r\n <ius-icon-md [iconName]=\"iconName\" [color]=\"iconColor\"></ius-icon-md>\r\n }\r\n @case('xl') {\r\n <ius-icon-xl [iconName]=\"iconName\" [color]=\"iconColor\"></ius-icon-xl>\r\n }\r\n }\r\n }\r\n</div>", styles: [".avatar{border-radius:50%;display:flex;justify-content:center;align-items:center}.avatar img{border-radius:50%;width:100%;height:100%;object-fit:cover;display:block}.avatar.sm{width:24px;height:24px}.avatar.md{width:32px;height:32px}.avatar.lg{width:40px;height:40px}.avatar.xl{width:64px;height:64px}\n"] }]
|
|
21
22
|
}], propDecorators: { size: [{
|
|
22
23
|
type: Input
|
|
23
24
|
}], imageUrl: [{
|
|
@@ -29,4 +30,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
29
30
|
}], iconColor: [{
|
|
30
31
|
type: Input
|
|
31
32
|
}] } });
|
|
32
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
33
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXZhdGFyLWljb24uY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvaXVzLWRlc2lnbi1jb21wb25lbnRzL3NyYy9saWIvYXZhdGFyLWljb24vYXZhdGFyLWljb24uY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvaXVzLWRlc2lnbi1jb21wb25lbnRzL3NyYy9saWIvYXZhdGFyLWljb24vYXZhdGFyLWljb24uY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ2pELE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSxZQUFZLENBQUM7QUFDN0MsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLFlBQVksQ0FBQztBQUM3QyxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0sWUFBWSxDQUFDO0FBQzdDLE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSxZQUFZLENBQUM7OztBQVU3QyxNQUFNLE9BQU8sbUJBQW1CO0lBUGhDO1FBUVcsU0FBSSxHQUE4QixJQUFJLENBQUM7UUFJdkMsb0JBQWUsR0FBVyxNQUFNLENBQUM7UUFDakMsYUFBUSxHQUFXLGNBQWMsQ0FBQztRQUNsQyxjQUFTLEdBQVcsTUFBTSxDQUFDO0tBQ3JDOytHQVJZLG1CQUFtQjttR0FBbkIsbUJBQW1CLDZNQ2ZoQyxxeEJBbUJNLHdXRFJNLFlBQVksa05BQUUsZUFBZSx1RkFBRSxlQUFlLHVGQUFFLGVBQWUsdUZBQUUsZUFBZTs7NEZBSS9FLG1CQUFtQjtrQkFQL0IsU0FBUzsrQkFDRSxpQkFBaUIsY0FDZixJQUFJLFdBQ1AsQ0FBQyxZQUFZLEVBQUUsZUFBZSxFQUFFLGVBQWUsRUFBRSxlQUFlLEVBQUUsZUFBZSxDQUFDOzhCQUtsRixJQUFJO3NCQUFaLEtBQUs7Z0JBRUcsUUFBUTtzQkFBaEIsS0FBSztnQkFFRyxlQUFlO3NCQUF2QixLQUFLO2dCQUNHLFFBQVE7c0JBQWhCLEtBQUs7Z0JBQ0csU0FBUztzQkFBakIsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XHJcbmltcG9ydCB7IENvbXBvbmVudCwgSW5wdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHsgSWNvblhzQ29tcG9uZW50IH0gZnJvbSBcIi4uL2ljb24teHNcIjtcclxuaW1wb3J0IHsgSWNvblNtQ29tcG9uZW50IH0gZnJvbSAnLi4vaWNvbi1zbSc7XHJcbmltcG9ydCB7IEljb25NZENvbXBvbmVudCB9IGZyb20gXCIuLi9pY29uLW1kXCI7XHJcbmltcG9ydCB7IEljb25YbENvbXBvbmVudCB9IGZyb20gXCIuLi9pY29uLXhsXCI7XHJcblxyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgc2VsZWN0b3I6ICdpdXMtYXZhdGFyLWljb24nLFxyXG4gIHN0YW5kYWxvbmU6IHRydWUsXHJcbiAgaW1wb3J0czogW0NvbW1vbk1vZHVsZSwgSWNvblhzQ29tcG9uZW50LCBJY29uU21Db21wb25lbnQsIEljb25NZENvbXBvbmVudCwgSWNvblhsQ29tcG9uZW50XSxcclxuICB0ZW1wbGF0ZVVybDogJy4vYXZhdGFyLWljb24uY29tcG9uZW50Lmh0bWwnLFxyXG4gIHN0eWxlVXJsOiAnLi9hdmF0YXItaWNvbi5jb21wb25lbnQuc2NzcydcclxufSlcclxuZXhwb3J0IGNsYXNzIEF2YXRhckljb25Db21wb25lbnQge1xyXG4gIEBJbnB1dCgpIHNpemU6ICdzbScgfCAnbWQnIHwgJ2xnJyB8ICd4bCcgPSAnc20nO1xyXG4gIFxyXG4gIEBJbnB1dCgpIGltYWdlVXJsPzogc3RyaW5nO1xyXG5cclxuICBASW5wdXQoKSBiYWNrZ3JvdW5kQ29sb3I6IHN0cmluZyA9ICdncmV5JztcclxuICBASW5wdXQoKSBpY29uTmFtZTogc3RyaW5nID0gJ2ljb24tY29tbWVudCc7XHJcbiAgQElucHV0KCkgaWNvbkNvbG9yOiBzdHJpbmcgPSAnZ3JleSc7XHJcbn1cclxuIiwiPGRpdiBjbGFzcz1cImF2YXRhclwiIFtuZ0NsYXNzXT1cInNpemVcIiBbbmdTdHlsZV09XCJ7J2JhY2tncm91bmQtY29sb3InOiBiYWNrZ3JvdW5kQ29sb3J9XCI+XHJcbiAgICBAaWYgKGltYWdlVXJsKSB7XHJcbiAgICAgICAgPGltZyBbc3JjXT1cImltYWdlVXJsXCIgYWx0PVwiYXZhdGFyXCIgLz5cclxuICAgIH0gQGVsc2Uge1xyXG4gICAgICAgIEBzd2l0Y2ggKHNpemUpIHtcclxuICAgICAgICAgICAgQGNhc2UoJ3NtJykge1xyXG4gICAgICAgICAgICA8aXVzLWljb24teHMgW2ljb25OYW1lXT1cImljb25OYW1lXCIgW2NvbG9yXT1cImljb25Db2xvclwiPjwvaXVzLWljb24teHM+XHJcbiAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgQGNhc2UoJ21kJykge1xyXG4gICAgICAgICAgICA8aXVzLWljb24tc20gW2ljb25OYW1lXT1cImljb25OYW1lXCIgW2NvbG9yXT1cImljb25Db2xvclwiPjwvaXVzLWljb24tc20+XHJcbiAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgQGNhc2UoJ2xnJykge1xyXG4gICAgICAgICAgICA8aXVzLWljb24tbWQgW2ljb25OYW1lXT1cImljb25OYW1lXCIgW2NvbG9yXT1cImljb25Db2xvclwiPjwvaXVzLWljb24tbWQ+XHJcbiAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgQGNhc2UoJ3hsJykge1xyXG4gICAgICAgICAgICA8aXVzLWljb24teGwgW2ljb25OYW1lXT1cImljb25OYW1lXCIgW2NvbG9yXT1cImljb25Db2xvclwiPjwvaXVzLWljb24teGw+XHJcbiAgICAgICAgICAgIH1cclxuICAgICAgICB9XHJcbiAgICB9XHJcbjwvZGl2PiJdfQ==
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './page-not-found.component';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9pdXMtZGVzaWduLWNvbXBvbmVudHMvc3JjL2xpYi9wYWdlLW5vdC1mb3VuZC9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLDRCQUE0QixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9wYWdlLW5vdC1mb3VuZC5jb21wb25lbnQnO1xyXG5cclxuIl19
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { Component, Input } from '@angular/core';
|
|
2
|
+
import { ButtonStandardPrimaryComponent } from "../button-standard-primary";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export class PageNotFoundComponent {
|
|
5
|
+
constructor() {
|
|
6
|
+
this.src = '';
|
|
7
|
+
this.title = 'Página no encontrada';
|
|
8
|
+
this.subtitle = 'Lo sentimos, la página que estás buscando no existe.';
|
|
9
|
+
}
|
|
10
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PageNotFoundComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
11
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: PageNotFoundComponent, isStandalone: true, selector: "ius-page-not-found", inputs: { src: "src", title: "title", subtitle: "subtitle" }, ngImport: i0, template: "<div class=\"ius-state-container\" aria-live=\"polite\">\r\n <div class=\"ius-state-inner\">\r\n <div class=\"ius-state-img-wrapper\">\r\n <img [src]=\"src\" alt=\"Sin resultados\" />\r\n </div>\r\n <div class=\"ius-state-text\">\r\n <span class=\"h4\">{{ title }}</span>\r\n <span class=\"h5\">{{ subtitle }}</span>\r\n </div>\r\n </div>\r\n <div class=\"footer\">\r\n <div class=\"footer-interno\">\r\n <div class=\"container-button\">\r\n <ius-button-standard-primary [iconName]=\"'icon-home'\">Volver al inicio</ius-button-standard-primary>\r\n </div>\r\n </div>\r\n </div>\r\n</div>", styles: [".h1{font-family:Roboto,sans-serif;font-size:2.375rem;font-weight:500;line-height:46px}.h2{font-family:Roboto,sans-serif;font-size:1.875rem;font-weight:700;line-height:38px}.h3{font-family:Roboto,sans-serif;font-size:1.5rem;font-weight:500;line-height:32px}.h4{font-family:Roboto,sans-serif;font-size:1.25rem;font-weight:700;line-height:26px}.h5{font-family:Roboto,sans-serif;font-size:1.125rem;font-weight:500;line-height:24px;letter-spacing:.18px}.label-large{font-family:Roboto,sans-serif;font-size:1rem;font-weight:500;line-height:22px}.body-large{font-family:Rubik,sans-serif;font-size:1rem;font-weight:400;line-height:22px}.label-base{font-family:Rubik,sans-serif;font-size:.875rem;font-weight:500;line-height:20px;letter-spacing:.28px}.body-base{font-family:Rubik,sans-serif;font-size:.875rem;font-weight:400;line-height:20px;font-style:italic;letter-spacing:.28px}.body-base-1,.body-base-1-1{font-family:Rubik,sans-serif;font-size:.875rem;font-weight:400;line-height:20px;letter-spacing:.28px}.body-sm{font-family:Rubik,sans-serif;font-size:.75rem;font-weight:400;line-height:16px;letter-spacing:.28px}.body-sm-italic{font-family:Rubik,sans-serif;font-size:.75rem;font-weight:400;line-height:16px;font-style:italic;letter-spacing:.28px}.caption-sm{font-family:Rubik,sans-serif;font-size:.75rem;font-weight:500;line-height:16px;letter-spacing:.28px}.caption-sm-italic{font-family:Rubik,sans-serif;font-size:.75rem;font-weight:500;line-height:16px;font-style:italic;letter-spacing:.28px}.ius-state-container{display:flex;flex-direction:column;justify-content:center;align-items:center;flex:1 0 0;align-self:stretch;height:100%;border-radius:8px;border:1px solid #eaeaea;background:#fff;gap:var(--Spacing-Spacing-xxs, 4px);padding:8px}.ius-state-container[data-state=idle]{display:none}.ius-state-inner{display:flex;flex-direction:column;justify-content:center;align-items:center;gap:16px}.ius-state-text{display:flex;flex-direction:column;align-items:center;gap:4px;text-align:center}.ius-state-img-wrapper{display:flex;width:87px;height:87px;justify-content:center;align-items:center}.footer{display:flex;flex-direction:column;align-items:center;gap:40px;align-self:stretch}.footer-interno{display:flex;flex-direction:column;align-items:center;gap:32px;align-self:stretch}.container-button{display:flex;padding:0 16px;flex-direction:column;align-items:center;gap:12px;align-self:stretch}\n"], dependencies: [{ kind: "component", type: ButtonStandardPrimaryComponent, selector: "ius-button-standard-primary", inputs: ["disabled", "iconName"], outputs: ["buttonClicked"] }] }); }
|
|
12
|
+
}
|
|
13
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PageNotFoundComponent, decorators: [{
|
|
14
|
+
type: Component,
|
|
15
|
+
args: [{ selector: 'ius-page-not-found', standalone: true, imports: [ButtonStandardPrimaryComponent], template: "<div class=\"ius-state-container\" aria-live=\"polite\">\r\n <div class=\"ius-state-inner\">\r\n <div class=\"ius-state-img-wrapper\">\r\n <img [src]=\"src\" alt=\"Sin resultados\" />\r\n </div>\r\n <div class=\"ius-state-text\">\r\n <span class=\"h4\">{{ title }}</span>\r\n <span class=\"h5\">{{ subtitle }}</span>\r\n </div>\r\n </div>\r\n <div class=\"footer\">\r\n <div class=\"footer-interno\">\r\n <div class=\"container-button\">\r\n <ius-button-standard-primary [iconName]=\"'icon-home'\">Volver al inicio</ius-button-standard-primary>\r\n </div>\r\n </div>\r\n </div>\r\n</div>", styles: [".h1{font-family:Roboto,sans-serif;font-size:2.375rem;font-weight:500;line-height:46px}.h2{font-family:Roboto,sans-serif;font-size:1.875rem;font-weight:700;line-height:38px}.h3{font-family:Roboto,sans-serif;font-size:1.5rem;font-weight:500;line-height:32px}.h4{font-family:Roboto,sans-serif;font-size:1.25rem;font-weight:700;line-height:26px}.h5{font-family:Roboto,sans-serif;font-size:1.125rem;font-weight:500;line-height:24px;letter-spacing:.18px}.label-large{font-family:Roboto,sans-serif;font-size:1rem;font-weight:500;line-height:22px}.body-large{font-family:Rubik,sans-serif;font-size:1rem;font-weight:400;line-height:22px}.label-base{font-family:Rubik,sans-serif;font-size:.875rem;font-weight:500;line-height:20px;letter-spacing:.28px}.body-base{font-family:Rubik,sans-serif;font-size:.875rem;font-weight:400;line-height:20px;font-style:italic;letter-spacing:.28px}.body-base-1,.body-base-1-1{font-family:Rubik,sans-serif;font-size:.875rem;font-weight:400;line-height:20px;letter-spacing:.28px}.body-sm{font-family:Rubik,sans-serif;font-size:.75rem;font-weight:400;line-height:16px;letter-spacing:.28px}.body-sm-italic{font-family:Rubik,sans-serif;font-size:.75rem;font-weight:400;line-height:16px;font-style:italic;letter-spacing:.28px}.caption-sm{font-family:Rubik,sans-serif;font-size:.75rem;font-weight:500;line-height:16px;letter-spacing:.28px}.caption-sm-italic{font-family:Rubik,sans-serif;font-size:.75rem;font-weight:500;line-height:16px;font-style:italic;letter-spacing:.28px}.ius-state-container{display:flex;flex-direction:column;justify-content:center;align-items:center;flex:1 0 0;align-self:stretch;height:100%;border-radius:8px;border:1px solid #eaeaea;background:#fff;gap:var(--Spacing-Spacing-xxs, 4px);padding:8px}.ius-state-container[data-state=idle]{display:none}.ius-state-inner{display:flex;flex-direction:column;justify-content:center;align-items:center;gap:16px}.ius-state-text{display:flex;flex-direction:column;align-items:center;gap:4px;text-align:center}.ius-state-img-wrapper{display:flex;width:87px;height:87px;justify-content:center;align-items:center}.footer{display:flex;flex-direction:column;align-items:center;gap:40px;align-self:stretch}.footer-interno{display:flex;flex-direction:column;align-items:center;gap:32px;align-self:stretch}.container-button{display:flex;padding:0 16px;flex-direction:column;align-items:center;gap:12px;align-self:stretch}\n"] }]
|
|
16
|
+
}], propDecorators: { src: [{
|
|
17
|
+
type: Input
|
|
18
|
+
}], title: [{
|
|
19
|
+
type: Input
|
|
20
|
+
}], subtitle: [{
|
|
21
|
+
type: Input
|
|
22
|
+
}] } });
|
|
23
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFnZS1ub3QtZm91bmQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvaXVzLWRlc2lnbi1jb21wb25lbnRzL3NyYy9saWIvcGFnZS1ub3QtZm91bmQvcGFnZS1ub3QtZm91bmQuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvaXVzLWRlc2lnbi1jb21wb25lbnRzL3NyYy9saWIvcGFnZS1ub3QtZm91bmQvcGFnZS1ub3QtZm91bmQuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDakQsT0FBTyxFQUFFLDhCQUE4QixFQUFFLE1BQU0sNEJBQTRCLENBQUM7O0FBUzVFLE1BQU0sT0FBTyxxQkFBcUI7SUFQbEM7UUFRVyxRQUFHLEdBQVcsRUFBRSxDQUFDO1FBRWpCLFVBQUssR0FBRyxzQkFBc0IsQ0FBQztRQUMvQixhQUFRLEdBQUcsc0RBQXNELENBQUM7S0FFNUU7K0dBTlkscUJBQXFCO21HQUFyQixxQkFBcUIsNElDVmxDLHlzQkFpQk0scTVFRFhNLDhCQUE4Qjs7NEZBSTdCLHFCQUFxQjtrQkFQakMsU0FBUzsrQkFDRSxvQkFBb0IsY0FDbEIsSUFBSSxXQUNQLENBQUMsOEJBQThCLENBQUM7OEJBS2hDLEdBQUc7c0JBQVgsS0FBSztnQkFFRyxLQUFLO3NCQUFiLEtBQUs7Z0JBQ0csUUFBUTtzQkFBaEIsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgSW5wdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHsgQnV0dG9uU3RhbmRhcmRQcmltYXJ5Q29tcG9uZW50IH0gZnJvbSBcIi4uL2J1dHRvbi1zdGFuZGFyZC1wcmltYXJ5XCI7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICBzZWxlY3RvcjogJ2l1cy1wYWdlLW5vdC1mb3VuZCcsXHJcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcclxuICBpbXBvcnRzOiBbQnV0dG9uU3RhbmRhcmRQcmltYXJ5Q29tcG9uZW50XSxcclxuICB0ZW1wbGF0ZVVybDogJy4vcGFnZS1ub3QtZm91bmQuY29tcG9uZW50Lmh0bWwnLFxyXG4gIHN0eWxlVXJsOiAnLi9wYWdlLW5vdC1mb3VuZC5jb21wb25lbnQuc2NzcydcclxufSlcclxuZXhwb3J0IGNsYXNzIFBhZ2VOb3RGb3VuZENvbXBvbmVudCB7XHJcbiAgQElucHV0KCkgc3JjOiBzdHJpbmcgPSAnJztcclxuXHJcbiAgQElucHV0KCkgdGl0bGUgPSAnUMOhZ2luYSBubyBlbmNvbnRyYWRhJztcclxuICBASW5wdXQoKSBzdWJ0aXRsZSA9ICdMbyBzZW50aW1vcywgbGEgcMOhZ2luYSBxdWUgZXN0w6FzIGJ1c2NhbmRvIG5vIGV4aXN0ZS4nO1xyXG5cclxufVxyXG4iLCI8ZGl2IGNsYXNzPVwiaXVzLXN0YXRlLWNvbnRhaW5lclwiIGFyaWEtbGl2ZT1cInBvbGl0ZVwiPlxyXG4gICAgPGRpdiBjbGFzcz1cIml1cy1zdGF0ZS1pbm5lclwiPlxyXG4gICAgICAgIDxkaXYgY2xhc3M9XCJpdXMtc3RhdGUtaW1nLXdyYXBwZXJcIj5cclxuICAgICAgICAgICAgPGltZyBbc3JjXT1cInNyY1wiIGFsdD1cIlNpbiByZXN1bHRhZG9zXCIgLz5cclxuICAgICAgICA8L2Rpdj5cclxuICAgICAgICA8ZGl2IGNsYXNzPVwiaXVzLXN0YXRlLXRleHRcIj5cclxuICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJoNFwiPnt7IHRpdGxlIH19PC9zcGFuPlxyXG4gICAgICAgICAgICA8c3BhbiBjbGFzcz1cImg1XCI+e3sgc3VidGl0bGUgfX08L3NwYW4+XHJcbiAgICAgICAgPC9kaXY+XHJcbiAgICA8L2Rpdj5cclxuICAgIDxkaXYgY2xhc3M9XCJmb290ZXJcIj5cclxuICAgICAgICA8ZGl2IGNsYXNzPVwiZm9vdGVyLWludGVybm9cIj5cclxuICAgICAgICAgICAgPGRpdiBjbGFzcz1cImNvbnRhaW5lci1idXR0b25cIj5cclxuICAgICAgICAgICAgICAgIDxpdXMtYnV0dG9uLXN0YW5kYXJkLXByaW1hcnkgW2ljb25OYW1lXT1cIidpY29uLWhvbWUnXCI+Vm9sdmVyIGFsIGluaWNpbzwvaXVzLWJ1dHRvbi1zdGFuZGFyZC1wcmltYXJ5PlxyXG4gICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICA8L2Rpdj5cclxuICAgIDwvZGl2PlxyXG48L2Rpdj4iXX0=
|
package/esm2022/public-api.mjs
CHANGED
|
@@ -93,7 +93,8 @@ export * from './lib/input-card';
|
|
|
93
93
|
export * from './lib/notifications';
|
|
94
94
|
export * from './lib/support-panel';
|
|
95
95
|
export * from './lib/loading-component-dynamic';
|
|
96
|
+
export * from './lib/page-not-found';
|
|
96
97
|
//Directivas
|
|
97
98
|
export * from './lib/directives/popover.directive';
|
|
98
99
|
export * from './lib/directives/infinite-scroll.directive';
|
|
99
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
100
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3Byb2plY3RzL2l1cy1kZXNpZ24tY29tcG9uZW50cy9zcmMvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLCtCQUErQixDQUFDO0FBQzlDLGNBQWMsaUNBQWlDLENBQUM7QUFDaEQsY0FBYyxnQ0FBZ0MsQ0FBQztBQUMvQyxjQUFjLHNDQUFzQyxDQUFDO0FBQ3JELGNBQWMsZ0NBQWdDLENBQUM7QUFDL0MsY0FBYywrQkFBK0IsQ0FBQztBQUM5QyxjQUFjLCtCQUErQixDQUFDO0FBQzlDLGNBQWMsc0JBQXNCLENBQUM7QUFDckMsY0FBYyw4QkFBOEIsQ0FBQztBQUM3QyxjQUFjLHVCQUF1QixDQUFDO0FBQ3RDLGNBQWMsc0NBQXNDLENBQUM7QUFDckQsY0FBYyxxQ0FBcUMsQ0FBQztBQUNwRCxjQUFjLGlCQUFpQixDQUFDO0FBQ2hDLGNBQWMsMEJBQTBCLENBQUM7QUFDekMsY0FBYyxtQkFBbUIsQ0FBQztBQUNsQyxjQUFjLHdCQUF3QixDQUFDO0FBQ3ZDLGNBQWMsZ0JBQWdCLENBQUM7QUFDL0IsY0FBYyxrQkFBa0IsQ0FBQztBQUNqQyxjQUFjLHVCQUF1QixDQUFDO0FBQ3RDLGNBQWMsYUFBYSxDQUFDO0FBQzVCLGNBQWMsb0JBQW9CLENBQUM7QUFDbkMsY0FBYywyQkFBMkIsQ0FBQztBQUMxQyxjQUFjLGNBQWMsQ0FBQztBQUM3QixjQUFjLGdCQUFnQixDQUFDO0FBQy9CLGNBQWMsMEJBQTBCLENBQUM7QUFDekMsY0FBYyw0QkFBNEIsQ0FBQztBQUMzQyxjQUFjLGVBQWUsQ0FBQztBQUM5QixjQUFjLGVBQWUsQ0FBQztBQUM5QixjQUFjLGVBQWUsQ0FBQztBQUM5QixjQUFjLGVBQWUsQ0FBQztBQUM5QixjQUFjLGVBQWUsQ0FBQztBQUM5QixjQUFjLGdCQUFnQixDQUFDO0FBQy9CLGNBQWMsc0JBQXNCLENBQUM7QUFDckMsY0FBYywyQkFBMkIsQ0FBQztBQUMxQyxjQUFjLHNCQUFzQixDQUFDO0FBQ3JDLGNBQWMsOEJBQThCLENBQUM7QUFDN0MsY0FBYyxvQkFBb0IsQ0FBQztBQUNuQyxjQUFjLDZCQUE2QixDQUFDO0FBQzVDLGNBQWMsNEJBQTRCLENBQUM7QUFDM0MsY0FBYyxtQkFBbUIsQ0FBQztBQUNsQyxjQUFjLGtCQUFrQixDQUFDO0FBQ2pDLGNBQWMsdUJBQXVCLENBQUM7QUFDdEMsY0FBYyxpQkFBaUIsQ0FBQztBQUNoQyxjQUFjLGVBQWUsQ0FBQztBQUM5QixjQUFjLHlCQUF5QixDQUFDO0FBQ3hDLGNBQWMsbUJBQW1CLENBQUM7QUFDbEMsY0FBYyxzQkFBc0IsQ0FBQztBQUNyQyxjQUFjLGlCQUFpQixDQUFDO0FBQ2hDLGNBQWMsZ0JBQWdCLENBQUM7QUFDL0IsY0FBYyxvQkFBb0IsQ0FBQztBQUNuQyxjQUFjLDBCQUEwQixDQUFDO0FBQ3pDLGNBQWMsa0JBQWtCLENBQUM7QUFDakMsY0FBYyxpQkFBaUIsQ0FBQztBQUNoQyxjQUFjLHdCQUF3QixDQUFDO0FBQ3ZDLGNBQWMsbUJBQW1CLENBQUM7QUFDbEMsY0FBYyxZQUFZLENBQUM7QUFDM0IsY0FBYyw0QkFBNEIsQ0FBQztBQUMzQyxjQUFjLGdDQUFnQyxDQUFDO0FBQy9DLGNBQWMsZUFBZSxDQUFDO0FBQzlCLGNBQWMseUJBQXlCLENBQUM7QUFDeEMsY0FBYyx5QkFBeUIsQ0FBQztBQUN4QyxjQUFjLGdCQUFnQixDQUFDO0FBQy9CLGNBQWMsc0JBQXNCLENBQUM7QUFDckMsY0FBYyxvQkFBb0IsQ0FBQztBQUNuQyxjQUFjLHFCQUFxQixDQUFDO0FBQ3BDLGNBQWMsMkJBQTJCLENBQUM7QUFDMUMsY0FBYyx5QkFBeUIsQ0FBQztBQUN4QyxjQUFjLGtCQUFrQixDQUFDO0FBQ2pDLGNBQWMsNEJBQTRCLENBQUM7QUFDM0MsY0FBYyxtQkFBbUIsQ0FBQztBQUNsQyxjQUFjLG1CQUFtQixDQUFDO0FBQ2xDLGNBQWMsOEJBQThCLENBQUM7QUFDN0MsY0FBYyx1QkFBdUIsQ0FBQztBQUN0QyxjQUFjLHFCQUFxQixDQUFDO0FBQ3BDLGNBQWMseUJBQXlCLENBQUM7QUFDeEMsY0FBYyw2QkFBNkIsQ0FBQztBQUM1QyxjQUFjLG1CQUFtQixDQUFDO0FBQ2xDLGNBQWMsZ0JBQWdCLENBQUM7QUFDL0IsY0FBYyx5QkFBeUIsQ0FBQztBQUN4QyxjQUFjLHlCQUF5QixDQUFDO0FBQ3hDLGNBQWMscUNBQXFDLENBQUM7QUFDcEQsY0FBYyxxQkFBcUIsQ0FBQztBQUNwQyxjQUFjLG1CQUFtQixDQUFDO0FBQ2xDLGNBQWMsZ0NBQWdDLENBQUM7QUFDL0MsY0FBYyx3QkFBd0IsQ0FBQztBQUN2QyxjQUFjLDRCQUE0QixDQUFDO0FBQzNDLGNBQWMsNkJBQTZCLENBQUM7QUFDNUMsY0FBYywyQkFBMkIsQ0FBQztBQUMxQyxjQUFjLDZCQUE2QixDQUFDO0FBQzVDLGNBQWMsb0JBQW9CLENBQUM7QUFDbkMsY0FBYyxhQUFhLENBQUM7QUFDNUIsY0FBYyxrQkFBa0IsQ0FBQztBQUNqQyxjQUFjLHFCQUFxQixDQUFDO0FBQ3BDLGNBQWMscUJBQXFCLENBQUM7QUFDcEMsY0FBYyxpQ0FBaUMsQ0FBQztBQUNoRCxjQUFjLHNCQUFzQixDQUFDO0FBSXJDLFlBQVk7QUFDWixjQUFjLG9DQUFvQyxDQUFDO0FBQ25ELGNBQWMsNENBQTRDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2xpYi9idXR0b24tc3RhbmRhcmQtcHJpbWFyeSc7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL2J1dHRvbi1zdGFuZGFyZC1zZWNvbmRhcnknO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9idXR0b24tc3RhbmRhcmQtdGVydGlhcnknO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9idXR0b24tc3RhbmRhcmQtdGVydGlhcnktc21hbGwnO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9idXR0b24tc3F1YXJlZC1zZWNvbmRhcnknO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9idXR0b24tc3F1YXJlZC10ZXJ0aWFyeSc7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL2J1dHRvbi1jaXJjbGUtc2Vjb25kYXJ5JztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvYnV0dG9uLWR5bmFtaWMnO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9idXR0b24tY2lyY2xlLXRlcnRpYXJ5JztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvYnV0dG9uLWFjY291bnRzJztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvc2VjdGlvbi1jb2xsYXBzZS1kcmF3ZXItcGFyZW50JztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvc2VjdGlvbi1jb2xsYXBzZS1kcmF3ZXItY2hpbGQnO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9tZW51LWl0ZW0nO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9kb3VibGUtZGF0ZS1waWNrZXInO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9kYXRlLXBpY2tlcic7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL2RhdGUtaG91ci1waWNrZXInO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9uYXYtcmFpbCc7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL3NlYXJjaC1iYXInO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9pbnB1dC10ZXh0ZmllbGQnO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9iYWRnZSc7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL2lucHV0LXNlbGVjdCc7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL2lucHV0LXNlbGVjdC1udW1iZXInO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9vcHRpb24nO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9kcm9wZG93bic7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL2Ryb3Bkb3duLXVzZXItbWVudSc7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL2Ryb3Bkb3duLW9wdGlvbi1pdGVtJztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvaWNvbi14cyc7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL2ljb24tc20nO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9pY29uLW1kJztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvaWNvbi1sZyc7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL2ljb24teGwnO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9pY29uLXh4bCc7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL3NpbXBsZS1kaXZpZGVyJztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvbGluZWFyLXByb2dyZXNzLWJhcic7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL2xvYWRpbmctY2lyY2xlJztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvZHJhd2VyLWNvbnRhaW5lci1yaWdodCc7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL3NsaWRlLXRvZ2dsZSc7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NhcmQtbGlzdC1tb3ZpbWllbnRvcyc7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NhcmQtZHluYW1pYy1jb250ZW50JztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvYXZhdGFyLWljb24nO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9jYXRlZ29yaWVzJztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvY3VzdG9tLWRyb3Bkb3duJztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvY2hpcC11c2VyJztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvdG9vbGJhcic7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL3Rvb2xiYXItdXNlci1tZW51JztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvYnV0dG9uLWF1dGgnO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9pbnB1dC1wYXNzd29yZCc7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL2lucHV0LW90cCc7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL3NuYWNrYmFyJztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvY2hhcnRzLWRvbnV0JztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvY2hhcnRzLWJhci1ncm91cGVkJztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvYnJlYWRjcnVtYic7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL3VzZXItY2FyZCc7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL3NpbXBsZS11c2VyLWNhcmQnO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9zaW1wbGUtY2hpcCc7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NoaXAnO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9zaW1wbGUtY2FyZC1jb250YWRvcic7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL2Ryb3Bkb3duLWNvbnRleHR1YWwtbWVudSc7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL3NlZ21lbnQnO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9ub3RpZmljYXRpb24tY2FyZCc7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NhcmQtbGlzdC1jb25zdW1vJztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvY2hlY2tib3gnO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9jaGVja2JveC1yYWRpbyc7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL2J1dHRvbi1vcmRlcic7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL2J1dHRvbi1maWx0ZXInO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9pbnB1dC1zZWxlY3QtZmlsdGVyJztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvY2FyZC1saXN0LXByb2Nlc28nO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9jYXJkLWJsb2NrJztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvY2FyZC1idXR0b24tY2hlY2tib3gnO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9vcHRpb24taXRlbSc7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL2ZpbHRlci1pdGVtJztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvY2FyZC1wbGFuLXN1YnNjcmlwdGlvbic7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NhcmQtcGxhbi1zbWFsbCc7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NhcmQtdXNvLXBsYW4nO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9jYXJkLWdlc3Rpb24tY3Vwbyc7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NhcmQtaW5mby1mYWN0dXJhY2lvbic7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL2lucHV0LWxhcmdlJztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvY2FyZC1sb2cnO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9jYXJkLXRpcG8tcHJvY2Vzbyc7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NhcmQtbGlzdC1kcmFnLW9uJztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvY2FyZC1jb2xsYXBzZS1kZXRhbGxlLXByb2Nlc28nO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9pdGVtLWRvY3VtZW50JztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvY2FyZC10aWNrZXQnO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9jYXJkLXZpZ2lsYW5jaWEtanVkaWNpYWwnO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9idXR0b24tbWVudS1saW5rJztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvY2FyZC1hZ2VuZGEtanVkaWNpYWwnO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9jYXJkLWFjdGl2aWRhZC1ldmVudG8nO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9jYXJkLWV0YXBhLXN1YmV0YXBhJztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvY2FyZC1pbXB1bHNvLXByb2Nlc2FsJztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvY2FsaWZpY2F0aW9uJztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvYWxlcnQnO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9pbnB1dC1jYXJkJztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvbm90aWZpY2F0aW9ucyc7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL3N1cHBvcnQtcGFuZWwnO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9sb2FkaW5nLWNvbXBvbmVudC1keW5hbWljJztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvcGFnZS1ub3QtZm91bmQnO1xyXG5cclxuXHJcblxyXG4vL0RpcmVjdGl2YXNcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvZGlyZWN0aXZlcy9wb3BvdmVyLmRpcmVjdGl2ZSc7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL2RpcmVjdGl2ZXMvaW5maW5pdGUtc2Nyb2xsLmRpcmVjdGl2ZSc7Il19
|
|
@@ -3285,11 +3285,11 @@ class AvatarIconComponent {
|
|
|
3285
3285
|
this.iconColor = 'grey';
|
|
3286
3286
|
}
|
|
3287
3287
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: AvatarIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3288
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.12", type: AvatarIconComponent, isStandalone: true, selector: "ius-avatar-icon", inputs: { size: "size", imageUrl: "imageUrl", backgroundColor: "backgroundColor", iconName: "iconName", iconColor: "iconColor" }, ngImport: i0, template: "<div class=\"avatar\" [ngClass]=\"size\" [ngStyle]=\"{'background-color': backgroundColor}\">\r\n @if (imageUrl) {\r\n <img [src]=\"imageUrl\" alt=\"avatar\" />\r\n } @else {\r\n @switch (size) {\r\n @case('sm') {\r\n <ius-icon-xs [iconName]=\"iconName\" [color]=\"iconColor\"></ius-icon-xs>\r\n }\r\n @case('md') {\r\n <ius-icon-sm [iconName]=\"iconName\" [color]=\"iconColor\"></ius-icon-sm>\r\n }\r\n @case('lg') {\r\n <ius-icon-md [iconName]=\"iconName\" [color]=\"iconColor\"></ius-icon-md>\r\n }\r\n }\r\n }\r\n</div>", styles: [".avatar{border-radius:50%;display:flex;justify-content:center;align-items:center}.avatar img{border-radius:50%;width:100%;height:100%;object-fit:cover;display:block}.avatar.sm{width:24px;height:24px}.avatar.md{width:32px;height:32px}.avatar.lg{width:40px;height:40px}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1$1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: IconXsComponent, selector: "ius-icon-xs", inputs: ["iconName", "color"] }, { kind: "component", type: IconSmComponent, selector: "ius-icon-sm", inputs: ["iconName", "color"] }, { kind: "component", type: IconMdComponent, selector: "ius-icon-md", inputs: ["iconName", "color"] }] }); }
|
|
3288
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.12", type: AvatarIconComponent, isStandalone: true, selector: "ius-avatar-icon", inputs: { size: "size", imageUrl: "imageUrl", backgroundColor: "backgroundColor", iconName: "iconName", iconColor: "iconColor" }, ngImport: i0, template: "<div class=\"avatar\" [ngClass]=\"size\" [ngStyle]=\"{'background-color': backgroundColor}\">\r\n @if (imageUrl) {\r\n <img [src]=\"imageUrl\" alt=\"avatar\" />\r\n } @else {\r\n @switch (size) {\r\n @case('sm') {\r\n <ius-icon-xs [iconName]=\"iconName\" [color]=\"iconColor\"></ius-icon-xs>\r\n }\r\n @case('md') {\r\n <ius-icon-sm [iconName]=\"iconName\" [color]=\"iconColor\"></ius-icon-sm>\r\n }\r\n @case('lg') {\r\n <ius-icon-md [iconName]=\"iconName\" [color]=\"iconColor\"></ius-icon-md>\r\n }\r\n @case('xl') {\r\n <ius-icon-xl [iconName]=\"iconName\" [color]=\"iconColor\"></ius-icon-xl>\r\n }\r\n }\r\n }\r\n</div>", styles: [".avatar{border-radius:50%;display:flex;justify-content:center;align-items:center}.avatar img{border-radius:50%;width:100%;height:100%;object-fit:cover;display:block}.avatar.sm{width:24px;height:24px}.avatar.md{width:32px;height:32px}.avatar.lg{width:40px;height:40px}.avatar.xl{width:64px;height:64px}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1$1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: IconXsComponent, selector: "ius-icon-xs", inputs: ["iconName", "color"] }, { kind: "component", type: IconSmComponent, selector: "ius-icon-sm", inputs: ["iconName", "color"] }, { kind: "component", type: IconMdComponent, selector: "ius-icon-md", inputs: ["iconName", "color"] }, { kind: "component", type: IconXlComponent, selector: "ius-icon-xl", inputs: ["iconName", "color"] }] }); }
|
|
3289
3289
|
}
|
|
3290
3290
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: AvatarIconComponent, decorators: [{
|
|
3291
3291
|
type: Component,
|
|
3292
|
-
args: [{ selector: 'ius-avatar-icon', standalone: true, imports: [CommonModule, IconXsComponent, IconSmComponent, IconMdComponent], template: "<div class=\"avatar\" [ngClass]=\"size\" [ngStyle]=\"{'background-color': backgroundColor}\">\r\n @if (imageUrl) {\r\n <img [src]=\"imageUrl\" alt=\"avatar\" />\r\n } @else {\r\n @switch (size) {\r\n @case('sm') {\r\n <ius-icon-xs [iconName]=\"iconName\" [color]=\"iconColor\"></ius-icon-xs>\r\n }\r\n @case('md') {\r\n <ius-icon-sm [iconName]=\"iconName\" [color]=\"iconColor\"></ius-icon-sm>\r\n }\r\n @case('lg') {\r\n <ius-icon-md [iconName]=\"iconName\" [color]=\"iconColor\"></ius-icon-md>\r\n }\r\n }\r\n }\r\n</div>", styles: [".avatar{border-radius:50%;display:flex;justify-content:center;align-items:center}.avatar img{border-radius:50%;width:100%;height:100%;object-fit:cover;display:block}.avatar.sm{width:24px;height:24px}.avatar.md{width:32px;height:32px}.avatar.lg{width:40px;height:40px}\n"] }]
|
|
3292
|
+
args: [{ selector: 'ius-avatar-icon', standalone: true, imports: [CommonModule, IconXsComponent, IconSmComponent, IconMdComponent, IconXlComponent], template: "<div class=\"avatar\" [ngClass]=\"size\" [ngStyle]=\"{'background-color': backgroundColor}\">\r\n @if (imageUrl) {\r\n <img [src]=\"imageUrl\" alt=\"avatar\" />\r\n } @else {\r\n @switch (size) {\r\n @case('sm') {\r\n <ius-icon-xs [iconName]=\"iconName\" [color]=\"iconColor\"></ius-icon-xs>\r\n }\r\n @case('md') {\r\n <ius-icon-sm [iconName]=\"iconName\" [color]=\"iconColor\"></ius-icon-sm>\r\n }\r\n @case('lg') {\r\n <ius-icon-md [iconName]=\"iconName\" [color]=\"iconColor\"></ius-icon-md>\r\n }\r\n @case('xl') {\r\n <ius-icon-xl [iconName]=\"iconName\" [color]=\"iconColor\"></ius-icon-xl>\r\n }\r\n }\r\n }\r\n</div>", styles: [".avatar{border-radius:50%;display:flex;justify-content:center;align-items:center}.avatar img{border-radius:50%;width:100%;height:100%;object-fit:cover;display:block}.avatar.sm{width:24px;height:24px}.avatar.md{width:32px;height:32px}.avatar.lg{width:40px;height:40px}.avatar.xl{width:64px;height:64px}\n"] }]
|
|
3293
3293
|
}], propDecorators: { size: [{
|
|
3294
3294
|
type: Input
|
|
3295
3295
|
}], imageUrl: [{
|
|
@@ -7350,6 +7350,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
7350
7350
|
type: Input
|
|
7351
7351
|
}] } });
|
|
7352
7352
|
|
|
7353
|
+
class PageNotFoundComponent {
|
|
7354
|
+
constructor() {
|
|
7355
|
+
this.src = '';
|
|
7356
|
+
this.title = 'Página no encontrada';
|
|
7357
|
+
this.subtitle = 'Lo sentimos, la página que estás buscando no existe.';
|
|
7358
|
+
}
|
|
7359
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PageNotFoundComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
7360
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: PageNotFoundComponent, isStandalone: true, selector: "ius-page-not-found", inputs: { src: "src", title: "title", subtitle: "subtitle" }, ngImport: i0, template: "<div class=\"ius-state-container\" aria-live=\"polite\">\r\n <div class=\"ius-state-inner\">\r\n <div class=\"ius-state-img-wrapper\">\r\n <img [src]=\"src\" alt=\"Sin resultados\" />\r\n </div>\r\n <div class=\"ius-state-text\">\r\n <span class=\"h4\">{{ title }}</span>\r\n <span class=\"h5\">{{ subtitle }}</span>\r\n </div>\r\n </div>\r\n <div class=\"footer\">\r\n <div class=\"footer-interno\">\r\n <div class=\"container-button\">\r\n <ius-button-standard-primary [iconName]=\"'icon-home'\">Volver al inicio</ius-button-standard-primary>\r\n </div>\r\n </div>\r\n </div>\r\n</div>", styles: [".h1{font-family:Roboto,sans-serif;font-size:2.375rem;font-weight:500;line-height:46px}.h2{font-family:Roboto,sans-serif;font-size:1.875rem;font-weight:700;line-height:38px}.h3{font-family:Roboto,sans-serif;font-size:1.5rem;font-weight:500;line-height:32px}.h4{font-family:Roboto,sans-serif;font-size:1.25rem;font-weight:700;line-height:26px}.h5{font-family:Roboto,sans-serif;font-size:1.125rem;font-weight:500;line-height:24px;letter-spacing:.18px}.label-large{font-family:Roboto,sans-serif;font-size:1rem;font-weight:500;line-height:22px}.body-large{font-family:Rubik,sans-serif;font-size:1rem;font-weight:400;line-height:22px}.label-base{font-family:Rubik,sans-serif;font-size:.875rem;font-weight:500;line-height:20px;letter-spacing:.28px}.body-base{font-family:Rubik,sans-serif;font-size:.875rem;font-weight:400;line-height:20px;font-style:italic;letter-spacing:.28px}.body-base-1,.body-base-1-1{font-family:Rubik,sans-serif;font-size:.875rem;font-weight:400;line-height:20px;letter-spacing:.28px}.body-sm{font-family:Rubik,sans-serif;font-size:.75rem;font-weight:400;line-height:16px;letter-spacing:.28px}.body-sm-italic{font-family:Rubik,sans-serif;font-size:.75rem;font-weight:400;line-height:16px;font-style:italic;letter-spacing:.28px}.caption-sm{font-family:Rubik,sans-serif;font-size:.75rem;font-weight:500;line-height:16px;letter-spacing:.28px}.caption-sm-italic{font-family:Rubik,sans-serif;font-size:.75rem;font-weight:500;line-height:16px;font-style:italic;letter-spacing:.28px}.ius-state-container{display:flex;flex-direction:column;justify-content:center;align-items:center;flex:1 0 0;align-self:stretch;height:100%;border-radius:8px;border:1px solid #eaeaea;background:#fff;gap:var(--Spacing-Spacing-xxs, 4px);padding:8px}.ius-state-container[data-state=idle]{display:none}.ius-state-inner{display:flex;flex-direction:column;justify-content:center;align-items:center;gap:16px}.ius-state-text{display:flex;flex-direction:column;align-items:center;gap:4px;text-align:center}.ius-state-img-wrapper{display:flex;width:87px;height:87px;justify-content:center;align-items:center}.footer{display:flex;flex-direction:column;align-items:center;gap:40px;align-self:stretch}.footer-interno{display:flex;flex-direction:column;align-items:center;gap:32px;align-self:stretch}.container-button{display:flex;padding:0 16px;flex-direction:column;align-items:center;gap:12px;align-self:stretch}\n"], dependencies: [{ kind: "component", type: ButtonStandardPrimaryComponent, selector: "ius-button-standard-primary", inputs: ["disabled", "iconName"], outputs: ["buttonClicked"] }] }); }
|
|
7361
|
+
}
|
|
7362
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PageNotFoundComponent, decorators: [{
|
|
7363
|
+
type: Component,
|
|
7364
|
+
args: [{ selector: 'ius-page-not-found', standalone: true, imports: [ButtonStandardPrimaryComponent], template: "<div class=\"ius-state-container\" aria-live=\"polite\">\r\n <div class=\"ius-state-inner\">\r\n <div class=\"ius-state-img-wrapper\">\r\n <img [src]=\"src\" alt=\"Sin resultados\" />\r\n </div>\r\n <div class=\"ius-state-text\">\r\n <span class=\"h4\">{{ title }}</span>\r\n <span class=\"h5\">{{ subtitle }}</span>\r\n </div>\r\n </div>\r\n <div class=\"footer\">\r\n <div class=\"footer-interno\">\r\n <div class=\"container-button\">\r\n <ius-button-standard-primary [iconName]=\"'icon-home'\">Volver al inicio</ius-button-standard-primary>\r\n </div>\r\n </div>\r\n </div>\r\n</div>", styles: [".h1{font-family:Roboto,sans-serif;font-size:2.375rem;font-weight:500;line-height:46px}.h2{font-family:Roboto,sans-serif;font-size:1.875rem;font-weight:700;line-height:38px}.h3{font-family:Roboto,sans-serif;font-size:1.5rem;font-weight:500;line-height:32px}.h4{font-family:Roboto,sans-serif;font-size:1.25rem;font-weight:700;line-height:26px}.h5{font-family:Roboto,sans-serif;font-size:1.125rem;font-weight:500;line-height:24px;letter-spacing:.18px}.label-large{font-family:Roboto,sans-serif;font-size:1rem;font-weight:500;line-height:22px}.body-large{font-family:Rubik,sans-serif;font-size:1rem;font-weight:400;line-height:22px}.label-base{font-family:Rubik,sans-serif;font-size:.875rem;font-weight:500;line-height:20px;letter-spacing:.28px}.body-base{font-family:Rubik,sans-serif;font-size:.875rem;font-weight:400;line-height:20px;font-style:italic;letter-spacing:.28px}.body-base-1,.body-base-1-1{font-family:Rubik,sans-serif;font-size:.875rem;font-weight:400;line-height:20px;letter-spacing:.28px}.body-sm{font-family:Rubik,sans-serif;font-size:.75rem;font-weight:400;line-height:16px;letter-spacing:.28px}.body-sm-italic{font-family:Rubik,sans-serif;font-size:.75rem;font-weight:400;line-height:16px;font-style:italic;letter-spacing:.28px}.caption-sm{font-family:Rubik,sans-serif;font-size:.75rem;font-weight:500;line-height:16px;letter-spacing:.28px}.caption-sm-italic{font-family:Rubik,sans-serif;font-size:.75rem;font-weight:500;line-height:16px;font-style:italic;letter-spacing:.28px}.ius-state-container{display:flex;flex-direction:column;justify-content:center;align-items:center;flex:1 0 0;align-self:stretch;height:100%;border-radius:8px;border:1px solid #eaeaea;background:#fff;gap:var(--Spacing-Spacing-xxs, 4px);padding:8px}.ius-state-container[data-state=idle]{display:none}.ius-state-inner{display:flex;flex-direction:column;justify-content:center;align-items:center;gap:16px}.ius-state-text{display:flex;flex-direction:column;align-items:center;gap:4px;text-align:center}.ius-state-img-wrapper{display:flex;width:87px;height:87px;justify-content:center;align-items:center}.footer{display:flex;flex-direction:column;align-items:center;gap:40px;align-self:stretch}.footer-interno{display:flex;flex-direction:column;align-items:center;gap:32px;align-self:stretch}.container-button{display:flex;padding:0 16px;flex-direction:column;align-items:center;gap:12px;align-self:stretch}\n"] }]
|
|
7365
|
+
}], propDecorators: { src: [{
|
|
7366
|
+
type: Input
|
|
7367
|
+
}], title: [{
|
|
7368
|
+
type: Input
|
|
7369
|
+
}], subtitle: [{
|
|
7370
|
+
type: Input
|
|
7371
|
+
}] } });
|
|
7372
|
+
|
|
7353
7373
|
class InfiniteScrollDirective {
|
|
7354
7374
|
constructor(host) {
|
|
7355
7375
|
this.host = host;
|
|
@@ -7404,5 +7424,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
7404
7424
|
* Generated bundle index. Do not edit.
|
|
7405
7425
|
*/
|
|
7406
7426
|
|
|
7407
|
-
export { AlertComponent, AvatarIconComponent, BadgeComponent, BreadcrumbComponent, ButtonAccountsComponent, ButtonAuthComponent, ButtonCircleSecondaryComponent, ButtonCircleTertiaryComponent, ButtonDynamicComponent, ButtonFilterComponent, ButtonMenuLinkComponent, ButtonOrderComponent, ButtonSquaredSecondaryComponent, ButtonSquaredTertiaryComponent, ButtonStandardPrimaryComponent, ButtonStandardSecondaryComponent, ButtonStandardTertiaryComponent, ButtonStandardTertiarySmallComponent, CalificationComponent, CardActividadEventoComponent, CardAgendaJudicialComponent, CardBlockComponent, CardButtonCheckboxComponent, CardCollapseDetalleProcesoComponent, CardDynamicContentComponent, CardEtapaSubetapaComponent, CardGestionCupoComponent, CardImpulsoProcesalComponent, CardInfoFacturacionComponent, CardListConsumoComponent, CardListDragOnComponent, CardListMovimientosComponent, CardListProcesoComponent, CardLogComponent, CardPlanSmallComponent, CardPlanSubscriptionComponent, CardTicketComponent, CardTipoProcesoComponent, CardUsoPlanComponent, CardVigilanciaJudicialComponent, CategoriesComponent, ChartsDonutComponent, CheckboxComponent, CheckboxRadioComponent, ChipComponent, ChipUserComponent, CustomDropdownComponent, DateHourPickerComponent, DatePickerComponent, DoubleDatePickerComponent, DrawerContainerRightComponent, DropdownComponent, DropdownContextualMenuComponent, DropdownOptionItemComponent, DropdownUserMenuComponent, FilterItemComponent, IconLgComponent, IconMdComponent, IconSmComponent, IconXlComponent, IconXsComponent, IconXxlComponent, InfiniteScrollDirective, InputCardComponent, InputLargeComponent, InputOtpComponent, InputPasswordComponent, InputSelectComponent, InputSelectFilterComponent, InputSelectNumberComponent, InputTextfieldComponent, ItemDocumentComponent, IusChartsBarGroupedComponent, LinearProgressBarComponent, LoadingCircleComponent, LoadingComponentDynamicComponent, MenuItemComponent, NavRailComponent, NotificationCardComponent, NotificationsComponent, OptionComponent, OptionItemComponent, PopoverDirective, SearchBarComponent, SectionCollapseDrawerChildComponent, SectionCollapseDrawerParentComponent, SegmentComponent, SimpleCardContadorComponent, SimpleChipComponent, SimpleDividerComponent, SimpleUserCardComponent, SlideToggleComponent, SnackbarComponent, SupportPanelComponent, ToolbarComponent, ToolbarUserMenuComponent, UserCardComponent };
|
|
7427
|
+
export { AlertComponent, AvatarIconComponent, BadgeComponent, BreadcrumbComponent, ButtonAccountsComponent, ButtonAuthComponent, ButtonCircleSecondaryComponent, ButtonCircleTertiaryComponent, ButtonDynamicComponent, ButtonFilterComponent, ButtonMenuLinkComponent, ButtonOrderComponent, ButtonSquaredSecondaryComponent, ButtonSquaredTertiaryComponent, ButtonStandardPrimaryComponent, ButtonStandardSecondaryComponent, ButtonStandardTertiaryComponent, ButtonStandardTertiarySmallComponent, CalificationComponent, CardActividadEventoComponent, CardAgendaJudicialComponent, CardBlockComponent, CardButtonCheckboxComponent, CardCollapseDetalleProcesoComponent, CardDynamicContentComponent, CardEtapaSubetapaComponent, CardGestionCupoComponent, CardImpulsoProcesalComponent, CardInfoFacturacionComponent, CardListConsumoComponent, CardListDragOnComponent, CardListMovimientosComponent, CardListProcesoComponent, CardLogComponent, CardPlanSmallComponent, CardPlanSubscriptionComponent, CardTicketComponent, CardTipoProcesoComponent, CardUsoPlanComponent, CardVigilanciaJudicialComponent, CategoriesComponent, ChartsDonutComponent, CheckboxComponent, CheckboxRadioComponent, ChipComponent, ChipUserComponent, CustomDropdownComponent, DateHourPickerComponent, DatePickerComponent, DoubleDatePickerComponent, DrawerContainerRightComponent, DropdownComponent, DropdownContextualMenuComponent, DropdownOptionItemComponent, DropdownUserMenuComponent, FilterItemComponent, IconLgComponent, IconMdComponent, IconSmComponent, IconXlComponent, IconXsComponent, IconXxlComponent, InfiniteScrollDirective, InputCardComponent, InputLargeComponent, InputOtpComponent, InputPasswordComponent, InputSelectComponent, InputSelectFilterComponent, InputSelectNumberComponent, InputTextfieldComponent, ItemDocumentComponent, IusChartsBarGroupedComponent, LinearProgressBarComponent, LoadingCircleComponent, LoadingComponentDynamicComponent, MenuItemComponent, NavRailComponent, NotificationCardComponent, NotificationsComponent, OptionComponent, OptionItemComponent, PageNotFoundComponent, PopoverDirective, SearchBarComponent, SectionCollapseDrawerChildComponent, SectionCollapseDrawerParentComponent, SegmentComponent, SimpleCardContadorComponent, SimpleChipComponent, SimpleDividerComponent, SimpleUserCardComponent, SlideToggleComponent, SnackbarComponent, SupportPanelComponent, ToolbarComponent, ToolbarUserMenuComponent, UserCardComponent };
|
|
7408
7428
|
//# sourceMappingURL=litigiovirtual-ius-design-components.mjs.map
|