@litigiovirtual/ius-design-components 1.0.212 → 1.0.213

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.
@@ -1,16 +1,63 @@
1
1
  import { Component, CUSTOM_ELEMENTS_SCHEMA, Input } from '@angular/core';
2
+ import { CommonModule } from '@angular/common';
2
3
  import * as i0 from "@angular/core";
3
4
  export class LoadingComponentDynamicComponent {
4
5
  constructor() {
6
+ this.loading = false;
7
+ this.empty = false;
8
+ this.error = false;
5
9
  this.src = '';
10
+ this.srcEmpty = '';
11
+ this.srcError = '';
12
+ this.titleLoading = 'Estamos cargando la información';
13
+ this.subtitleLoading = 'Danos un momento por favor...';
14
+ this.titleEmpty = 'No hay nada aquí...';
15
+ this.subtitleEmpty = 'No encontramos resultados para mostrar.';
16
+ this.titleError = 'Ocurrió un error al cargar los datos...';
17
+ this.subtitleError = 'Inténtalo nuevamente.';
18
+ this.state = 'idle';
19
+ }
20
+ ngOnChanges(changes) {
21
+ this.state = this.resolveState();
22
+ }
23
+ resolveState() {
24
+ if (this.loading)
25
+ return 'loading';
26
+ if (this.error)
27
+ return 'error';
28
+ if (this.empty)
29
+ return 'empty';
30
+ return 'idle';
6
31
  }
7
32
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: LoadingComponentDynamicComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
8
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: LoadingComponentDynamicComponent, isStandalone: true, selector: "ius-loading-component-dynamic", inputs: { src: "src" }, ngImport: i0, template: "<div class=\"container-general\">\r\n <div class=\"container-interno-general\">\r\n <div class=\"transaction-detail-container\">\r\n <div class=\"company-info-container\">\r\n <!-- @if(isLoading) { -->\r\n <lottie-player \r\n [attr.src]=\"src\" \r\n speed=\"1\" \r\n style=\"width: 64px; height: 64px;\"\r\n loop \r\n autoplay>\r\n </lottie-player>\r\n <div class=\"company-name-container\">\r\n <div class=\"text-title\">\r\n <span class=\"h4\">Estamos cargando la informaci\u00F3n</span>\r\n </div>\r\n <div class=\"text\">\r\n <span class=\"h5\">Danos un momento por favor ...</span>\r\n </div>\r\n </div>\r\n <!-- } -->\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}.container-general{display:flex;flex-direction:column;justify-content:center;align-items:center;gap:11px;flex:1 0 0;align-self:stretch;border-radius:8px;border:1px solid #eaeaea;background:#fff;height:100%}.container-interno-general{display:flex;flex-direction:column;justify-content:center;align-items:center;flex:1 0 0;align-self:stretch}.transaction-detail-container{display:flex;padding:8px;flex-direction:column;justify-content:center;align-items:center;gap:12px;align-self:stretch}.company-info-container{display:flex;flex-direction:column;justify-content:center;align-items:center;gap:16px;align-self:stretch}.company-name-container{display:flex;flex-direction:column;align-items:center;gap:4px;align-self:stretch}.text-title{display:flex;justify-content:center;align-items:center;gap:10px;align-self:stretch}.text{display:flex;align-items:center;gap:10px}lottie-player{display:block;margin:0 auto;min-width:64px;min-height:64px}\n"] }); }
33
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.12", type: LoadingComponentDynamicComponent, isStandalone: true, selector: "ius-loading-component-dynamic", inputs: { loading: "loading", empty: "empty", error: "error", src: "src", srcEmpty: "srcEmpty", srcError: "srcError", titleLoading: "titleLoading", subtitleLoading: "subtitleLoading", titleEmpty: "titleEmpty", subtitleEmpty: "subtitleEmpty", titleError: "titleError", subtitleError: "subtitleError" }, usesOnChanges: true, ngImport: i0, template: "<div class=\"ius-state-container\" [attr.data-state]=\"state\" aria-live=\"polite\">\r\n <div class=\"ius-state-inner\">\r\n\r\n @switch (state) {\r\n\r\n @case ('loading') {\r\n <lottie-player [attr.src]=\"src\" speed=\"1\" style=\"width: 64px; height: 64px;\" loop autoplay>\r\n </lottie-player>\r\n <div class=\"ius-state-text\">\r\n <span class=\"h4\">{{ titleLoading }}</span>\r\n <span class=\"h5\">{{ subtitleLoading }}</span>\r\n </div>\r\n }\r\n\r\n @case ('empty') {\r\n <div class=\"ius-state-img-wrapper\">\r\n <img [src]=\"srcEmpty\" alt=\"Sin resultados\" />\r\n </div>\r\n <div class=\"ius-state-text\">\r\n <span class=\"h4\">{{ titleEmpty }}</span>\r\n <span class=\"h5\">{{ subtitleEmpty }}</span>\r\n </div>\r\n }\r\n\r\n @case ('error') {\r\n <div class=\"ius-state-img-wrapper\">\r\n <img [src]=\"srcError\" alt=\"Error\" />\r\n </div>\r\n <div class=\"ius-state-text\">\r\n <span class=\"h4\">{{ titleError }}</span>\r\n <span class=\"h5\">{{ subtitleError }}</span>\r\n </div>\r\n }\r\n\r\n @default {\r\n\r\n }\r\n\r\n }\r\n\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;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}lottie-player{display:block;min-width:64px;min-height:64px}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }] }); }
9
34
  }
10
35
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: LoadingComponentDynamicComponent, decorators: [{
11
36
  type: Component,
12
- args: [{ selector: 'ius-loading-component-dynamic', standalone: true, imports: [], schemas: [CUSTOM_ELEMENTS_SCHEMA], template: "<div class=\"container-general\">\r\n <div class=\"container-interno-general\">\r\n <div class=\"transaction-detail-container\">\r\n <div class=\"company-info-container\">\r\n <!-- @if(isLoading) { -->\r\n <lottie-player \r\n [attr.src]=\"src\" \r\n speed=\"1\" \r\n style=\"width: 64px; height: 64px;\"\r\n loop \r\n autoplay>\r\n </lottie-player>\r\n <div class=\"company-name-container\">\r\n <div class=\"text-title\">\r\n <span class=\"h4\">Estamos cargando la informaci\u00F3n</span>\r\n </div>\r\n <div class=\"text\">\r\n <span class=\"h5\">Danos un momento por favor ...</span>\r\n </div>\r\n </div>\r\n <!-- } -->\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}.container-general{display:flex;flex-direction:column;justify-content:center;align-items:center;gap:11px;flex:1 0 0;align-self:stretch;border-radius:8px;border:1px solid #eaeaea;background:#fff;height:100%}.container-interno-general{display:flex;flex-direction:column;justify-content:center;align-items:center;flex:1 0 0;align-self:stretch}.transaction-detail-container{display:flex;padding:8px;flex-direction:column;justify-content:center;align-items:center;gap:12px;align-self:stretch}.company-info-container{display:flex;flex-direction:column;justify-content:center;align-items:center;gap:16px;align-self:stretch}.company-name-container{display:flex;flex-direction:column;align-items:center;gap:4px;align-self:stretch}.text-title{display:flex;justify-content:center;align-items:center;gap:10px;align-self:stretch}.text{display:flex;align-items:center;gap:10px}lottie-player{display:block;margin:0 auto;min-width:64px;min-height:64px}\n"] }]
13
- }], propDecorators: { src: [{
37
+ args: [{ selector: 'ius-loading-component-dynamic', standalone: true, imports: [CommonModule], schemas: [CUSTOM_ELEMENTS_SCHEMA], template: "<div class=\"ius-state-container\" [attr.data-state]=\"state\" aria-live=\"polite\">\r\n <div class=\"ius-state-inner\">\r\n\r\n @switch (state) {\r\n\r\n @case ('loading') {\r\n <lottie-player [attr.src]=\"src\" speed=\"1\" style=\"width: 64px; height: 64px;\" loop autoplay>\r\n </lottie-player>\r\n <div class=\"ius-state-text\">\r\n <span class=\"h4\">{{ titleLoading }}</span>\r\n <span class=\"h5\">{{ subtitleLoading }}</span>\r\n </div>\r\n }\r\n\r\n @case ('empty') {\r\n <div class=\"ius-state-img-wrapper\">\r\n <img [src]=\"srcEmpty\" alt=\"Sin resultados\" />\r\n </div>\r\n <div class=\"ius-state-text\">\r\n <span class=\"h4\">{{ titleEmpty }}</span>\r\n <span class=\"h5\">{{ subtitleEmpty }}</span>\r\n </div>\r\n }\r\n\r\n @case ('error') {\r\n <div class=\"ius-state-img-wrapper\">\r\n <img [src]=\"srcError\" alt=\"Error\" />\r\n </div>\r\n <div class=\"ius-state-text\">\r\n <span class=\"h4\">{{ titleError }}</span>\r\n <span class=\"h5\">{{ subtitleError }}</span>\r\n </div>\r\n }\r\n\r\n @default {\r\n\r\n }\r\n\r\n }\r\n\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;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}lottie-player{display:block;min-width:64px;min-height:64px}\n"] }]
38
+ }], propDecorators: { loading: [{
39
+ type: Input
40
+ }], empty: [{
41
+ type: Input
42
+ }], error: [{
43
+ type: Input
44
+ }], src: [{
45
+ type: Input
46
+ }], srcEmpty: [{
47
+ type: Input
48
+ }], srcError: [{
49
+ type: Input
50
+ }], titleLoading: [{
51
+ type: Input
52
+ }], subtitleLoading: [{
53
+ type: Input
54
+ }], titleEmpty: [{
55
+ type: Input
56
+ }], subtitleEmpty: [{
57
+ type: Input
58
+ }], titleError: [{
59
+ type: Input
60
+ }], subtitleError: [{
14
61
  type: Input
15
62
  }] } });
16
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibG9hZGluZy1jb21wb25lbnQtZHluYW1pYy5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9pdXMtZGVzaWduLWNvbXBvbmVudHMvc3JjL2xpYi9sb2FkaW5nLWNvbXBvbmVudC1keW5hbWljL2xvYWRpbmctY29tcG9uZW50LWR5bmFtaWMuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvaXVzLWRlc2lnbi1jb21wb25lbnRzL3NyYy9saWIvbG9hZGluZy1jb21wb25lbnQtZHluYW1pYy9sb2FkaW5nLWNvbXBvbmVudC1keW5hbWljLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsc0JBQXNCLEVBQUUsS0FBSyxFQUFFLE1BQU0sZUFBZSxDQUFDOztBQVV6RSxNQUFNLE9BQU8sZ0NBQWdDO0lBUjdDO1FBU1csUUFBRyxHQUFXLEVBQUUsQ0FBQztLQUUzQjsrR0FIWSxnQ0FBZ0M7bUdBQWhDLGdDQUFnQyxpSENWN0MseS9CQXdCTTs7NEZEZE8sZ0NBQWdDO2tCQVI1QyxTQUFTOytCQUNFLCtCQUErQixjQUM3QixJQUFJLFdBQ1AsRUFBRSxXQUdGLENBQUMsc0JBQXNCLENBQUM7OEJBR3hCLEdBQUc7c0JBQVgsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgQ1VTVE9NX0VMRU1FTlRTX1NDSEVNQSwgSW5wdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiAnaXVzLWxvYWRpbmctY29tcG9uZW50LWR5bmFtaWMnLFxyXG4gIHN0YW5kYWxvbmU6IHRydWUsXHJcbiAgaW1wb3J0czogW10sXHJcbiAgdGVtcGxhdGVVcmw6ICcuL2xvYWRpbmctY29tcG9uZW50LWR5bmFtaWMuY29tcG9uZW50Lmh0bWwnLFxyXG4gIHN0eWxlVXJsOiAnLi9sb2FkaW5nLWNvbXBvbmVudC1keW5hbWljLmNvbXBvbmVudC5zY3NzJyxcclxuICBzY2hlbWFzOiBbQ1VTVE9NX0VMRU1FTlRTX1NDSEVNQV0sXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBMb2FkaW5nQ29tcG9uZW50RHluYW1pY0NvbXBvbmVudCAge1xyXG4gIEBJbnB1dCgpIHNyYzogc3RyaW5nID0gJyc7XHJcblxyXG59IiwiPGRpdiBjbGFzcz1cImNvbnRhaW5lci1nZW5lcmFsXCI+XHJcbiAgICA8ZGl2IGNsYXNzPVwiY29udGFpbmVyLWludGVybm8tZ2VuZXJhbFwiPlxyXG4gICAgICAgIDxkaXYgY2xhc3M9XCJ0cmFuc2FjdGlvbi1kZXRhaWwtY29udGFpbmVyXCI+XHJcbiAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJjb21wYW55LWluZm8tY29udGFpbmVyXCI+XHJcbiAgICAgICAgICAgICAgICA8IS0tIEBpZihpc0xvYWRpbmcpIHsgLS0+XHJcbiAgICAgICAgICAgICAgICA8bG90dGllLXBsYXllciBcclxuICAgICAgICAgICAgICAgICAgICBbYXR0ci5zcmNdPVwic3JjXCIgXHJcbiAgICAgICAgICAgICAgICAgICAgc3BlZWQ9XCIxXCIgXHJcbiAgICAgICAgICAgICAgICAgICAgc3R5bGU9XCJ3aWR0aDogNjRweDsgaGVpZ2h0OiA2NHB4O1wiXHJcbiAgICAgICAgICAgICAgICAgICAgbG9vcCBcclxuICAgICAgICAgICAgICAgICAgICBhdXRvcGxheT5cclxuICAgICAgICAgICAgICAgIDwvbG90dGllLXBsYXllcj5cclxuICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJjb21wYW55LW5hbWUtY29udGFpbmVyXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cInRleHQtdGl0bGVcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJoNFwiPkVzdGFtb3MgY2FyZ2FuZG8gbGEgaW5mb3JtYWNpw7NuPC9zcGFuPlxyXG4gICAgICAgICAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJ0ZXh0XCI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwiaDVcIj5EYW5vcyB1biBtb21lbnRvIHBvciBmYXZvciAuLi48L3NwYW4+XHJcbiAgICAgICAgICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgICAgIDwhLS0gfSAtLT5cclxuICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgPC9kaXY+XHJcbiAgICA8L2Rpdj5cclxuPC9kaXY+Il19
63
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibG9hZGluZy1jb21wb25lbnQtZHluYW1pYy5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9pdXMtZGVzaWduLWNvbXBvbmVudHMvc3JjL2xpYi9sb2FkaW5nLWNvbXBvbmVudC1keW5hbWljL2xvYWRpbmctY29tcG9uZW50LWR5bmFtaWMuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvaXVzLWRlc2lnbi1jb21wb25lbnRzL3NyYy9saWIvbG9hZGluZy1jb21wb25lbnQtZHluYW1pYy9sb2FkaW5nLWNvbXBvbmVudC1keW5hbWljLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsc0JBQXNCLEVBQUUsS0FBSyxFQUE0QixNQUFNLGVBQWUsQ0FBQztBQUNuRyxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7O0FBWS9DLE1BQU0sT0FBTyxnQ0FBZ0M7SUFSN0M7UUFVVyxZQUFPLEdBQUcsS0FBSyxDQUFDO1FBQ2hCLFVBQUssR0FBRyxLQUFLLENBQUM7UUFDZCxVQUFLLEdBQUcsS0FBSyxDQUFDO1FBQ2QsUUFBRyxHQUFXLEVBQUUsQ0FBQztRQUNqQixhQUFRLEdBQVcsRUFBRSxDQUFDO1FBQ3RCLGFBQVEsR0FBVyxFQUFFLENBQUM7UUFFdEIsaUJBQVksR0FBRyxpQ0FBaUMsQ0FBQztRQUNqRCxvQkFBZSxHQUFHLCtCQUErQixDQUFDO1FBRWxELGVBQVUsR0FBRyxxQkFBcUIsQ0FBQztRQUNuQyxrQkFBYSxHQUFHLHlDQUF5QyxDQUFDO1FBRTFELGVBQVUsR0FBRyx5Q0FBeUMsQ0FBQztRQUN2RCxrQkFBYSxHQUFHLHVCQUF1QixDQUFDO1FBRWpELFVBQUssR0FBaUIsTUFBTSxDQUFDO0tBWTlCO0lBVkMsV0FBVyxDQUFDLE9BQXNCO1FBQ2hDLElBQUksQ0FBQyxLQUFLLEdBQUcsSUFBSSxDQUFDLFlBQVksRUFBRSxDQUFDO0lBQ25DLENBQUM7SUFFTyxZQUFZO1FBQ2xCLElBQUksSUFBSSxDQUFDLE9BQU87WUFBRSxPQUFPLFNBQVMsQ0FBQztRQUNuQyxJQUFJLElBQUksQ0FBQyxLQUFLO1lBQUksT0FBTyxPQUFPLENBQUM7UUFDakMsSUFBSSxJQUFJLENBQUMsS0FBSztZQUFJLE9BQU8sT0FBTyxDQUFDO1FBQ2pDLE9BQU8sTUFBTSxDQUFDO0lBQ2hCLENBQUM7K0dBN0JVLGdDQUFnQzttR0FBaEMsZ0NBQWdDLDRaQ2I3Qyx1eUNBeUNNLDRuRURqQ00sWUFBWTs7NEZBS1gsZ0NBQWdDO2tCQVI1QyxTQUFTOytCQUNFLCtCQUErQixjQUM3QixJQUFJLFdBQ1AsQ0FBQyxZQUFZLENBQUMsV0FHZCxDQUFDLHNCQUFzQixDQUFDOzhCQUl4QixPQUFPO3NCQUFmLEtBQUs7Z0JBQ0csS0FBSztzQkFBYixLQUFLO2dCQUNHLEtBQUs7c0JBQWIsS0FBSztnQkFDRyxHQUFHO3NCQUFYLEtBQUs7Z0JBQ0csUUFBUTtzQkFBaEIsS0FBSztnQkFDRyxRQUFRO3NCQUFoQixLQUFLO2dCQUVHLFlBQVk7c0JBQXBCLEtBQUs7Z0JBQ0csZUFBZTtzQkFBdkIsS0FBSztnQkFFRyxVQUFVO3NCQUFsQixLQUFLO2dCQUNHLGFBQWE7c0JBQXJCLEtBQUs7Z0JBRUcsVUFBVTtzQkFBbEIsS0FBSztnQkFDRyxhQUFhO3NCQUFyQixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBDVVNUT01fRUxFTUVOVFNfU0NIRU1BLCBJbnB1dCwgT25DaGFuZ2VzLCBTaW1wbGVDaGFuZ2VzIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XHJcblxyXG5leHBvcnQgdHlwZSBMb2FkaW5nU3RhdGUgPSAnbG9hZGluZycgfCAnZW1wdHknIHwgJ2Vycm9yJyB8ICdpZGxlJztcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiAnaXVzLWxvYWRpbmctY29tcG9uZW50LWR5bmFtaWMnLFxyXG4gIHN0YW5kYWxvbmU6IHRydWUsXHJcbiAgaW1wb3J0czogW0NvbW1vbk1vZHVsZV0sXHJcbiAgdGVtcGxhdGVVcmw6ICcuL2xvYWRpbmctY29tcG9uZW50LWR5bmFtaWMuY29tcG9uZW50Lmh0bWwnLFxyXG4gIHN0eWxlVXJsOiAnLi9sb2FkaW5nLWNvbXBvbmVudC1keW5hbWljLmNvbXBvbmVudC5zY3NzJyxcclxuICBzY2hlbWFzOiBbQ1VTVE9NX0VMRU1FTlRTX1NDSEVNQV0sXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBMb2FkaW5nQ29tcG9uZW50RHluYW1pY0NvbXBvbmVudCBpbXBsZW1lbnRzIE9uQ2hhbmdlcyB7XHJcblxyXG4gIEBJbnB1dCgpIGxvYWRpbmcgPSBmYWxzZTtcclxuICBASW5wdXQoKSBlbXB0eSA9IGZhbHNlO1xyXG4gIEBJbnB1dCgpIGVycm9yID0gZmFsc2U7XHJcbiAgQElucHV0KCkgc3JjOiBzdHJpbmcgPSAnJztcclxuICBASW5wdXQoKSBzcmNFbXB0eTogc3RyaW5nID0gJyc7XHJcbiAgQElucHV0KCkgc3JjRXJyb3I6IHN0cmluZyA9ICcnO1xyXG5cclxuICBASW5wdXQoKSB0aXRsZUxvYWRpbmcgPSAnRXN0YW1vcyBjYXJnYW5kbyBsYSBpbmZvcm1hY2nDs24nO1xyXG4gIEBJbnB1dCgpIHN1YnRpdGxlTG9hZGluZyA9ICdEYW5vcyB1biBtb21lbnRvIHBvciBmYXZvci4uLic7XHJcblxyXG4gIEBJbnB1dCgpIHRpdGxlRW1wdHkgPSAnTm8gaGF5IG5hZGEgYXF1w60uLi4nO1xyXG4gIEBJbnB1dCgpIHN1YnRpdGxlRW1wdHkgPSAnTm8gZW5jb250cmFtb3MgcmVzdWx0YWRvcyBwYXJhIG1vc3RyYXIuJztcclxuXHJcbiAgQElucHV0KCkgdGl0bGVFcnJvciA9ICdPY3VycmnDsyB1biBlcnJvciBhbCBjYXJnYXIgbG9zIGRhdG9zLi4uJztcclxuICBASW5wdXQoKSBzdWJ0aXRsZUVycm9yID0gJ0ludMOpbnRhbG8gbnVldmFtZW50ZS4nO1xyXG5cclxuICBzdGF0ZTogTG9hZGluZ1N0YXRlID0gJ2lkbGUnO1xyXG5cclxuICBuZ09uQ2hhbmdlcyhjaGFuZ2VzOiBTaW1wbGVDaGFuZ2VzKTogdm9pZCB7XHJcbiAgICB0aGlzLnN0YXRlID0gdGhpcy5yZXNvbHZlU3RhdGUoKTtcclxuICB9XHJcblxyXG4gIHByaXZhdGUgcmVzb2x2ZVN0YXRlKCk6IExvYWRpbmdTdGF0ZSB7XHJcbiAgICBpZiAodGhpcy5sb2FkaW5nKSByZXR1cm4gJ2xvYWRpbmcnO1xyXG4gICAgaWYgKHRoaXMuZXJyb3IpICAgcmV0dXJuICdlcnJvcic7XHJcbiAgICBpZiAodGhpcy5lbXB0eSkgICByZXR1cm4gJ2VtcHR5JztcclxuICAgIHJldHVybiAnaWRsZSc7XHJcbiAgfVxyXG59IiwiPGRpdiBjbGFzcz1cIml1cy1zdGF0ZS1jb250YWluZXJcIiBbYXR0ci5kYXRhLXN0YXRlXT1cInN0YXRlXCIgYXJpYS1saXZlPVwicG9saXRlXCI+XHJcbiAgICA8ZGl2IGNsYXNzPVwiaXVzLXN0YXRlLWlubmVyXCI+XHJcblxyXG4gICAgICAgIEBzd2l0Y2ggKHN0YXRlKSB7XHJcblxyXG4gICAgICAgIEBjYXNlICgnbG9hZGluZycpIHtcclxuICAgICAgICA8bG90dGllLXBsYXllciBbYXR0ci5zcmNdPVwic3JjXCIgc3BlZWQ9XCIxXCIgc3R5bGU9XCJ3aWR0aDogNjRweDsgaGVpZ2h0OiA2NHB4O1wiIGxvb3AgYXV0b3BsYXk+XHJcbiAgICAgICAgPC9sb3R0aWUtcGxheWVyPlxyXG4gICAgICAgIDxkaXYgY2xhc3M9XCJpdXMtc3RhdGUtdGV4dFwiPlxyXG4gICAgICAgICAgICA8c3BhbiBjbGFzcz1cImg0XCI+e3sgdGl0bGVMb2FkaW5nIH19PC9zcGFuPlxyXG4gICAgICAgICAgICA8c3BhbiBjbGFzcz1cImg1XCI+e3sgc3VidGl0bGVMb2FkaW5nIH19PC9zcGFuPlxyXG4gICAgICAgIDwvZGl2PlxyXG4gICAgICAgIH1cclxuXHJcbiAgICAgICAgQGNhc2UgKCdlbXB0eScpIHtcclxuICAgICAgICA8ZGl2IGNsYXNzPVwiaXVzLXN0YXRlLWltZy13cmFwcGVyXCI+XHJcbiAgICAgICAgICAgIDxpbWcgW3NyY109XCJzcmNFbXB0eVwiIGFsdD1cIlNpbiByZXN1bHRhZG9zXCIgLz5cclxuICAgICAgICA8L2Rpdj5cclxuICAgICAgICA8ZGl2IGNsYXNzPVwiaXVzLXN0YXRlLXRleHRcIj5cclxuICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJoNFwiPnt7IHRpdGxlRW1wdHkgfX08L3NwYW4+XHJcbiAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwiaDVcIj57eyBzdWJ0aXRsZUVtcHR5IH19PC9zcGFuPlxyXG4gICAgICAgIDwvZGl2PlxyXG4gICAgICAgIH1cclxuXHJcbiAgICAgICAgQGNhc2UgKCdlcnJvcicpIHtcclxuICAgICAgICA8ZGl2IGNsYXNzPVwiaXVzLXN0YXRlLWltZy13cmFwcGVyXCI+XHJcbiAgICAgICAgICAgIDxpbWcgW3NyY109XCJzcmNFcnJvclwiIGFsdD1cIkVycm9yXCIgLz5cclxuICAgICAgICA8L2Rpdj5cclxuICAgICAgICA8ZGl2IGNsYXNzPVwiaXVzLXN0YXRlLXRleHRcIj5cclxuICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJoNFwiPnt7IHRpdGxlRXJyb3IgfX08L3NwYW4+XHJcbiAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwiaDVcIj57eyBzdWJ0aXRsZUVycm9yIH19PC9zcGFuPlxyXG4gICAgICAgIDwvZGl2PlxyXG4gICAgICAgIH1cclxuXHJcbiAgICAgICAgQGRlZmF1bHQge1xyXG5cclxuICAgICAgICB9XHJcblxyXG4gICAgICAgIH1cclxuXHJcbiAgICA8L2Rpdj5cclxuPC9kaXY+Il19
@@ -7292,15 +7292,61 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
7292
7292
 
7293
7293
  class LoadingComponentDynamicComponent {
7294
7294
  constructor() {
7295
+ this.loading = false;
7296
+ this.empty = false;
7297
+ this.error = false;
7295
7298
  this.src = '';
7299
+ this.srcEmpty = '';
7300
+ this.srcError = '';
7301
+ this.titleLoading = 'Estamos cargando la información';
7302
+ this.subtitleLoading = 'Danos un momento por favor...';
7303
+ this.titleEmpty = 'No hay nada aquí...';
7304
+ this.subtitleEmpty = 'No encontramos resultados para mostrar.';
7305
+ this.titleError = 'Ocurrió un error al cargar los datos...';
7306
+ this.subtitleError = 'Inténtalo nuevamente.';
7307
+ this.state = 'idle';
7308
+ }
7309
+ ngOnChanges(changes) {
7310
+ this.state = this.resolveState();
7311
+ }
7312
+ resolveState() {
7313
+ if (this.loading)
7314
+ return 'loading';
7315
+ if (this.error)
7316
+ return 'error';
7317
+ if (this.empty)
7318
+ return 'empty';
7319
+ return 'idle';
7296
7320
  }
7297
7321
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: LoadingComponentDynamicComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
7298
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: LoadingComponentDynamicComponent, isStandalone: true, selector: "ius-loading-component-dynamic", inputs: { src: "src" }, ngImport: i0, template: "<div class=\"container-general\">\r\n <div class=\"container-interno-general\">\r\n <div class=\"transaction-detail-container\">\r\n <div class=\"company-info-container\">\r\n <!-- @if(isLoading) { -->\r\n <lottie-player \r\n [attr.src]=\"src\" \r\n speed=\"1\" \r\n style=\"width: 64px; height: 64px;\"\r\n loop \r\n autoplay>\r\n </lottie-player>\r\n <div class=\"company-name-container\">\r\n <div class=\"text-title\">\r\n <span class=\"h4\">Estamos cargando la informaci\u00F3n</span>\r\n </div>\r\n <div class=\"text\">\r\n <span class=\"h5\">Danos un momento por favor ...</span>\r\n </div>\r\n </div>\r\n <!-- } -->\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}.container-general{display:flex;flex-direction:column;justify-content:center;align-items:center;gap:11px;flex:1 0 0;align-self:stretch;border-radius:8px;border:1px solid #eaeaea;background:#fff;height:100%}.container-interno-general{display:flex;flex-direction:column;justify-content:center;align-items:center;flex:1 0 0;align-self:stretch}.transaction-detail-container{display:flex;padding:8px;flex-direction:column;justify-content:center;align-items:center;gap:12px;align-self:stretch}.company-info-container{display:flex;flex-direction:column;justify-content:center;align-items:center;gap:16px;align-self:stretch}.company-name-container{display:flex;flex-direction:column;align-items:center;gap:4px;align-self:stretch}.text-title{display:flex;justify-content:center;align-items:center;gap:10px;align-self:stretch}.text{display:flex;align-items:center;gap:10px}lottie-player{display:block;margin:0 auto;min-width:64px;min-height:64px}\n"] }); }
7322
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.12", type: LoadingComponentDynamicComponent, isStandalone: true, selector: "ius-loading-component-dynamic", inputs: { loading: "loading", empty: "empty", error: "error", src: "src", srcEmpty: "srcEmpty", srcError: "srcError", titleLoading: "titleLoading", subtitleLoading: "subtitleLoading", titleEmpty: "titleEmpty", subtitleEmpty: "subtitleEmpty", titleError: "titleError", subtitleError: "subtitleError" }, usesOnChanges: true, ngImport: i0, template: "<div class=\"ius-state-container\" [attr.data-state]=\"state\" aria-live=\"polite\">\r\n <div class=\"ius-state-inner\">\r\n\r\n @switch (state) {\r\n\r\n @case ('loading') {\r\n <lottie-player [attr.src]=\"src\" speed=\"1\" style=\"width: 64px; height: 64px;\" loop autoplay>\r\n </lottie-player>\r\n <div class=\"ius-state-text\">\r\n <span class=\"h4\">{{ titleLoading }}</span>\r\n <span class=\"h5\">{{ subtitleLoading }}</span>\r\n </div>\r\n }\r\n\r\n @case ('empty') {\r\n <div class=\"ius-state-img-wrapper\">\r\n <img [src]=\"srcEmpty\" alt=\"Sin resultados\" />\r\n </div>\r\n <div class=\"ius-state-text\">\r\n <span class=\"h4\">{{ titleEmpty }}</span>\r\n <span class=\"h5\">{{ subtitleEmpty }}</span>\r\n </div>\r\n }\r\n\r\n @case ('error') {\r\n <div class=\"ius-state-img-wrapper\">\r\n <img [src]=\"srcError\" alt=\"Error\" />\r\n </div>\r\n <div class=\"ius-state-text\">\r\n <span class=\"h4\">{{ titleError }}</span>\r\n <span class=\"h5\">{{ subtitleError }}</span>\r\n </div>\r\n }\r\n\r\n @default {\r\n\r\n }\r\n\r\n }\r\n\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;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}lottie-player{display:block;min-width:64px;min-height:64px}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }] }); }
7299
7323
  }
7300
7324
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: LoadingComponentDynamicComponent, decorators: [{
7301
7325
  type: Component,
7302
- args: [{ selector: 'ius-loading-component-dynamic', standalone: true, imports: [], schemas: [CUSTOM_ELEMENTS_SCHEMA], template: "<div class=\"container-general\">\r\n <div class=\"container-interno-general\">\r\n <div class=\"transaction-detail-container\">\r\n <div class=\"company-info-container\">\r\n <!-- @if(isLoading) { -->\r\n <lottie-player \r\n [attr.src]=\"src\" \r\n speed=\"1\" \r\n style=\"width: 64px; height: 64px;\"\r\n loop \r\n autoplay>\r\n </lottie-player>\r\n <div class=\"company-name-container\">\r\n <div class=\"text-title\">\r\n <span class=\"h4\">Estamos cargando la informaci\u00F3n</span>\r\n </div>\r\n <div class=\"text\">\r\n <span class=\"h5\">Danos un momento por favor ...</span>\r\n </div>\r\n </div>\r\n <!-- } -->\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}.container-general{display:flex;flex-direction:column;justify-content:center;align-items:center;gap:11px;flex:1 0 0;align-self:stretch;border-radius:8px;border:1px solid #eaeaea;background:#fff;height:100%}.container-interno-general{display:flex;flex-direction:column;justify-content:center;align-items:center;flex:1 0 0;align-self:stretch}.transaction-detail-container{display:flex;padding:8px;flex-direction:column;justify-content:center;align-items:center;gap:12px;align-self:stretch}.company-info-container{display:flex;flex-direction:column;justify-content:center;align-items:center;gap:16px;align-self:stretch}.company-name-container{display:flex;flex-direction:column;align-items:center;gap:4px;align-self:stretch}.text-title{display:flex;justify-content:center;align-items:center;gap:10px;align-self:stretch}.text{display:flex;align-items:center;gap:10px}lottie-player{display:block;margin:0 auto;min-width:64px;min-height:64px}\n"] }]
7303
- }], propDecorators: { src: [{
7326
+ args: [{ selector: 'ius-loading-component-dynamic', standalone: true, imports: [CommonModule], schemas: [CUSTOM_ELEMENTS_SCHEMA], template: "<div class=\"ius-state-container\" [attr.data-state]=\"state\" aria-live=\"polite\">\r\n <div class=\"ius-state-inner\">\r\n\r\n @switch (state) {\r\n\r\n @case ('loading') {\r\n <lottie-player [attr.src]=\"src\" speed=\"1\" style=\"width: 64px; height: 64px;\" loop autoplay>\r\n </lottie-player>\r\n <div class=\"ius-state-text\">\r\n <span class=\"h4\">{{ titleLoading }}</span>\r\n <span class=\"h5\">{{ subtitleLoading }}</span>\r\n </div>\r\n }\r\n\r\n @case ('empty') {\r\n <div class=\"ius-state-img-wrapper\">\r\n <img [src]=\"srcEmpty\" alt=\"Sin resultados\" />\r\n </div>\r\n <div class=\"ius-state-text\">\r\n <span class=\"h4\">{{ titleEmpty }}</span>\r\n <span class=\"h5\">{{ subtitleEmpty }}</span>\r\n </div>\r\n }\r\n\r\n @case ('error') {\r\n <div class=\"ius-state-img-wrapper\">\r\n <img [src]=\"srcError\" alt=\"Error\" />\r\n </div>\r\n <div class=\"ius-state-text\">\r\n <span class=\"h4\">{{ titleError }}</span>\r\n <span class=\"h5\">{{ subtitleError }}</span>\r\n </div>\r\n }\r\n\r\n @default {\r\n\r\n }\r\n\r\n }\r\n\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;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}lottie-player{display:block;min-width:64px;min-height:64px}\n"] }]
7327
+ }], propDecorators: { loading: [{
7328
+ type: Input
7329
+ }], empty: [{
7330
+ type: Input
7331
+ }], error: [{
7332
+ type: Input
7333
+ }], src: [{
7334
+ type: Input
7335
+ }], srcEmpty: [{
7336
+ type: Input
7337
+ }], srcError: [{
7338
+ type: Input
7339
+ }], titleLoading: [{
7340
+ type: Input
7341
+ }], subtitleLoading: [{
7342
+ type: Input
7343
+ }], titleEmpty: [{
7344
+ type: Input
7345
+ }], subtitleEmpty: [{
7346
+ type: Input
7347
+ }], titleError: [{
7348
+ type: Input
7349
+ }], subtitleError: [{
7304
7350
  type: Input
7305
7351
  }] } });
7306
7352