@litigiovirtual/ius-design-components 1.0.217 → 1.0.218
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/filter-item/filter-item.component.mjs +2 -2
- package/esm2022/lib/input-textfield/input-textfield.component.mjs +14 -4
- package/esm2022/lib/page-not-found/page-not-found.component.mjs +3 -3
- package/fesm2022/litigiovirtual-ius-design-components.mjs +17 -7
- package/fesm2022/litigiovirtual-ius-design-components.mjs.map +1 -1
- package/lib/input-textfield/input-textfield.component.d.ts +2 -1
- package/package.json +1 -1
|
@@ -2544,6 +2544,7 @@ class InputTextfieldComponent {
|
|
|
2544
2544
|
this.disabled = false;
|
|
2545
2545
|
this.isEnableClearText = false;
|
|
2546
2546
|
this.showHelpText = false;
|
|
2547
|
+
this.error = false;
|
|
2547
2548
|
this.labelInput = '';
|
|
2548
2549
|
this.inputType = 'text';
|
|
2549
2550
|
this.onChangesValueEvent = new EventEmitter();
|
|
@@ -2561,7 +2562,10 @@ class InputTextfieldComponent {
|
|
|
2561
2562
|
}
|
|
2562
2563
|
onInput() {
|
|
2563
2564
|
if (this.inputType === 'number') {
|
|
2564
|
-
|
|
2565
|
+
let soloDigitos = this.textInput.replace(/\D+/g, '');
|
|
2566
|
+
if (this.maxlenght) {
|
|
2567
|
+
soloDigitos = soloDigitos.slice(0, this.maxlenght);
|
|
2568
|
+
}
|
|
2565
2569
|
if (soloDigitos !== this.textInput) {
|
|
2566
2570
|
this.textInput = soloDigitos;
|
|
2567
2571
|
}
|
|
@@ -2579,6 +2583,10 @@ class InputTextfieldComponent {
|
|
|
2579
2583
|
return;
|
|
2580
2584
|
if (event.key.length === 1 && !/[0-9]/.test(event.key)) {
|
|
2581
2585
|
event.preventDefault();
|
|
2586
|
+
return;
|
|
2587
|
+
}
|
|
2588
|
+
if (this.maxlenght && this.textInput.length >= this.maxlenght) {
|
|
2589
|
+
event.preventDefault();
|
|
2582
2590
|
}
|
|
2583
2591
|
}
|
|
2584
2592
|
onFocus() {
|
|
@@ -2611,11 +2619,11 @@ class InputTextfieldComponent {
|
|
|
2611
2619
|
event.preventDefault();
|
|
2612
2620
|
}
|
|
2613
2621
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: InputTextfieldComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2614
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.12", type: InputTextfieldComponent, isStandalone: true, selector: "ius-input-textfield", inputs: { textInput: "textInput", required: "required", disabled: "disabled", isEnableClearText: "isEnableClearText", showHelpText: "showHelpText", labelSuperior: "labelSuperior", labelInferior: "labelInferior", labelInput: "labelInput", iconInput: "iconInput", inputType: "inputType", maxlenght: "maxlenght", initialText: "initialText" }, outputs: { onChangesValueEvent: "onChangesValueEvent", onEnterKey: "onEnterKey" }, ngImport: i0, template: "<div class=\"container-general\">\r\n @if (labelSuperior) {\r\n <div\r\n class=\"container-label-sup\"\r\n [ngClass]=\"{\r\n disabled: disabled\r\n }\"\r\n >\r\n @if(!disabled && required){\r\n <div class=\"icon-dot\"></div>\r\n }\r\n <span class=\"\">{{ labelSuperior }}</span>\r\n @if(!disabled && showHelpText){\r\n <ius-icon-md iconName=\"icon-help\" class=\"icon-color-help\"></ius-icon-md>\r\n }\r\n <span>:</span>\r\n </div>\r\n }\r\n <div\r\n class=\"container-textfield\"\r\n [ngClass]=\"{\r\n disabled: disabled,\r\n focused: isFocused,\r\n alert: !isFocused && isAlertText && !disabled\r\n }\"\r\n >\r\n @if (iconInput) {\r\n <ius-icon-md [iconName]=\"iconInput\" class=\"icon-color\"></ius-icon-md>\r\n }\r\n <input\r\n [type]=\"inputType\"\r\n [(ngModel)]=\"textInput\"\r\n [placeholder]=\"labelInput\"\r\n [disabled]=\"disabled\"\r\n [autocomplete]=\"inputType\"\r\n [name]=\"inputType\"\r\n [maxlength]=\"maxlenght ?? null\"\r\n (input)=\"onInput()\"\r\n (focus)=\"onFocus()\"\r\n (blur)=\"onBlur()\"\r\n (keypress)=\"onKeyPress($event)\"\r\n (keydown)=\"onKeyDown($event)\"\r\n (drop)=\"onDropBlock($event)\"\r\n (dragover)=\"onDragOverBlock($event)\"\r\n />\r\n @if (!disabled && textInput && isEnableClearText) {\r\n <button class=\"button-delete\" (click)=\"clearSearch()\">\r\n <ius-icon-md\r\n iconName=\"icon-cancel\"\r\n class=\"icon-color-cancel\"\r\n ></ius-icon-md>\r\n </button>\r\n }\r\n </div>\r\n @if (labelInferior && isFocused) {\r\n <span class=\"label-inf\">{{ labelInferior }}</span>\r\n } @if (labelInferior && !isFocused && isAlertText) {\r\n <span
|
|
2622
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.12", type: InputTextfieldComponent, isStandalone: true, selector: "ius-input-textfield", inputs: { textInput: "textInput", required: "required", disabled: "disabled", isEnableClearText: "isEnableClearText", showHelpText: "showHelpText", error: "error", labelSuperior: "labelSuperior", labelInferior: "labelInferior", labelInput: "labelInput", iconInput: "iconInput", inputType: "inputType", maxlenght: "maxlenght", initialText: "initialText" }, outputs: { onChangesValueEvent: "onChangesValueEvent", onEnterKey: "onEnterKey" }, ngImport: i0, template: "<div class=\"container-general\">\r\n @if (labelSuperior) {\r\n <div\r\n class=\"container-label-sup\"\r\n [ngClass]=\"{\r\n disabled: disabled\r\n }\"\r\n >\r\n @if(!disabled && required){\r\n <div class=\"icon-dot\"></div>\r\n }\r\n <span class=\"\">{{ labelSuperior }}</span>\r\n @if(!disabled && showHelpText){\r\n <ius-icon-md iconName=\"icon-help\" class=\"icon-color-help\"></ius-icon-md>\r\n }\r\n <span>:</span>\r\n </div>\r\n }\r\n <div\r\n class=\"container-textfield\"\r\n [ngClass]=\"{\r\n disabled: disabled,\r\n focused: isFocused,\r\n alert: (!isFocused && isAlertText && !disabled) || (error && !disabled)\r\n }\"\r\n >\r\n @if (iconInput) {\r\n <ius-icon-md [iconName]=\"iconInput\" class=\"icon-color\"></ius-icon-md>\r\n }\r\n <input\r\n [type]=\"inputType\"\r\n [(ngModel)]=\"textInput\"\r\n [placeholder]=\"labelInput\"\r\n [disabled]=\"disabled\"\r\n [autocomplete]=\"inputType\"\r\n [name]=\"inputType\"\r\n [maxlength]=\"maxlenght ?? null\"\r\n (input)=\"onInput()\"\r\n (focus)=\"onFocus()\"\r\n (blur)=\"onBlur()\"\r\n (keypress)=\"onKeyPress($event)\"\r\n (keydown)=\"onKeyDown($event)\"\r\n (drop)=\"onDropBlock($event)\"\r\n (dragover)=\"onDragOverBlock($event)\"\r\n />\r\n @if (!disabled && textInput && isEnableClearText) {\r\n <button class=\"button-delete\" (click)=\"clearSearch()\">\r\n <ius-icon-md\r\n iconName=\"icon-cancel\"\r\n class=\"icon-color-cancel\"\r\n ></ius-icon-md>\r\n </button>\r\n }\r\n </div>\r\n @if (labelInferior && isFocused && !error) {\r\n <span class=\"label-inf\">{{ labelInferior }}</span>\r\n } @if (labelInferior && ((!isFocused && isAlertText && !disabled) || (error && !disabled))) {\r\n <span class=\"label-inf alert\">{{ labelInferior }}</span>\r\n }\r\n</div>\r\n", 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{position:relative;height:100%}.container-textfield{display:flex;padding:10px 12px;justify-content:center;align-items:flex-start;gap:4px;border:1px solid #f5f5f5;border-radius:8px;background:#f5f5f5;font-family:Rubik,sans-serif;font-size:.875rem;font-weight:400;line-height:20px;letter-spacing:.28px;transition:all .2s ease-in-out}.container-textfield:hover:not(.disabled):not(.focused):not(.alert){background:#edf6ff}.container-textfield.focused{border:1px solid #0581BC;background:#edf6ff}.container-textfield.disabled{background:#f5f5f5}.container-textfield.disabled .icon-color,.container-textfield.disabled input{color:#bfbfbf}.container-textfield.disabled input::placeholder{color:#bfbfbf;opacity:1}.container-textfield.alert{border:1px solid #DB2E2A;background:#fff4f0}.icon-color{color:#595959}.icon-color-cancel{color:#013169}input{display:flex;align-items:center;flex:1 0 0;border:none;outline:none;background-color:transparent;font-family:Rubik,sans-serif;font-size:.875rem;font-weight:400;line-height:20px;letter-spacing:.28px}.button-delete{display:flex;align-items:center;justify-content:center;background:none;border:none;cursor:pointer;padding:0;color:#595959}.button-delete:hover{color:#013169}.container-label-sup{display:flex;align-items:center;gap:4px;margin-bottom:8px;color:#333;font-family:Roboto,sans-serif;font-size:.875rem;font-weight:500;line-height:20px;letter-spacing:.28px}.container-label-sup.disabled{color:#bfbfbf}.icon-dot{display:flex;align-items:center;width:4px;height:4px;aspect-ratio:1/1;background-color:#db2e2a;border-radius:100px}.icon-color-help{color:#8c8c8c}.label-inf{display:flex;position:absolute;margin-top:4px;color:#595959;font-family:Roboto,sans-serif;font-size:.75rem;font-style:italic;font-weight:500;line-height:16px;letter-spacing:.24px}.label-inf.alert{color:#931224}input::-webkit-outer-spin-button,input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}\n"], dependencies: [{ kind: "component", type: IconMdComponent, selector: "ius-icon-md", inputs: ["iconName", "color"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1$3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$3.MaxLengthValidator, selector: "[maxlength][formControlName],[maxlength][formControl],[maxlength][ngModel]", inputs: ["maxlength"] }, { kind: "directive", type: i1$3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] }); }
|
|
2615
2623
|
}
|
|
2616
2624
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: InputTextfieldComponent, decorators: [{
|
|
2617
2625
|
type: Component,
|
|
2618
|
-
args: [{ selector: 'ius-input-textfield', standalone: true, imports: [IconMdComponent, FormsModule, CommonModule], template: "<div class=\"container-general\">\r\n @if (labelSuperior) {\r\n <div\r\n class=\"container-label-sup\"\r\n [ngClass]=\"{\r\n disabled: disabled\r\n }\"\r\n >\r\n @if(!disabled && required){\r\n <div class=\"icon-dot\"></div>\r\n }\r\n <span class=\"\">{{ labelSuperior }}</span>\r\n @if(!disabled && showHelpText){\r\n <ius-icon-md iconName=\"icon-help\" class=\"icon-color-help\"></ius-icon-md>\r\n }\r\n <span>:</span>\r\n </div>\r\n }\r\n <div\r\n class=\"container-textfield\"\r\n [ngClass]=\"{\r\n disabled: disabled,\r\n focused: isFocused,\r\n alert: !isFocused && isAlertText && !disabled\r\n }\"\r\n >\r\n @if (iconInput) {\r\n <ius-icon-md [iconName]=\"iconInput\" class=\"icon-color\"></ius-icon-md>\r\n }\r\n <input\r\n [type]=\"inputType\"\r\n [(ngModel)]=\"textInput\"\r\n [placeholder]=\"labelInput\"\r\n [disabled]=\"disabled\"\r\n [autocomplete]=\"inputType\"\r\n [name]=\"inputType\"\r\n [maxlength]=\"maxlenght ?? null\"\r\n (input)=\"onInput()\"\r\n (focus)=\"onFocus()\"\r\n (blur)=\"onBlur()\"\r\n (keypress)=\"onKeyPress($event)\"\r\n (keydown)=\"onKeyDown($event)\"\r\n (drop)=\"onDropBlock($event)\"\r\n (dragover)=\"onDragOverBlock($event)\"\r\n />\r\n @if (!disabled && textInput && isEnableClearText) {\r\n <button class=\"button-delete\" (click)=\"clearSearch()\">\r\n <ius-icon-md\r\n iconName=\"icon-cancel\"\r\n class=\"icon-color-cancel\"\r\n ></ius-icon-md>\r\n </button>\r\n }\r\n </div>\r\n @if (labelInferior && isFocused) {\r\n <span class=\"label-inf\">{{ labelInferior }}</span>\r\n } @if (labelInferior && !isFocused && isAlertText) {\r\n <span
|
|
2626
|
+
args: [{ selector: 'ius-input-textfield', standalone: true, imports: [IconMdComponent, FormsModule, CommonModule], template: "<div class=\"container-general\">\r\n @if (labelSuperior) {\r\n <div\r\n class=\"container-label-sup\"\r\n [ngClass]=\"{\r\n disabled: disabled\r\n }\"\r\n >\r\n @if(!disabled && required){\r\n <div class=\"icon-dot\"></div>\r\n }\r\n <span class=\"\">{{ labelSuperior }}</span>\r\n @if(!disabled && showHelpText){\r\n <ius-icon-md iconName=\"icon-help\" class=\"icon-color-help\"></ius-icon-md>\r\n }\r\n <span>:</span>\r\n </div>\r\n }\r\n <div\r\n class=\"container-textfield\"\r\n [ngClass]=\"{\r\n disabled: disabled,\r\n focused: isFocused,\r\n alert: (!isFocused && isAlertText && !disabled) || (error && !disabled)\r\n }\"\r\n >\r\n @if (iconInput) {\r\n <ius-icon-md [iconName]=\"iconInput\" class=\"icon-color\"></ius-icon-md>\r\n }\r\n <input\r\n [type]=\"inputType\"\r\n [(ngModel)]=\"textInput\"\r\n [placeholder]=\"labelInput\"\r\n [disabled]=\"disabled\"\r\n [autocomplete]=\"inputType\"\r\n [name]=\"inputType\"\r\n [maxlength]=\"maxlenght ?? null\"\r\n (input)=\"onInput()\"\r\n (focus)=\"onFocus()\"\r\n (blur)=\"onBlur()\"\r\n (keypress)=\"onKeyPress($event)\"\r\n (keydown)=\"onKeyDown($event)\"\r\n (drop)=\"onDropBlock($event)\"\r\n (dragover)=\"onDragOverBlock($event)\"\r\n />\r\n @if (!disabled && textInput && isEnableClearText) {\r\n <button class=\"button-delete\" (click)=\"clearSearch()\">\r\n <ius-icon-md\r\n iconName=\"icon-cancel\"\r\n class=\"icon-color-cancel\"\r\n ></ius-icon-md>\r\n </button>\r\n }\r\n </div>\r\n @if (labelInferior && isFocused && !error) {\r\n <span class=\"label-inf\">{{ labelInferior }}</span>\r\n } @if (labelInferior && ((!isFocused && isAlertText && !disabled) || (error && !disabled))) {\r\n <span class=\"label-inf alert\">{{ labelInferior }}</span>\r\n }\r\n</div>\r\n", 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{position:relative;height:100%}.container-textfield{display:flex;padding:10px 12px;justify-content:center;align-items:flex-start;gap:4px;border:1px solid #f5f5f5;border-radius:8px;background:#f5f5f5;font-family:Rubik,sans-serif;font-size:.875rem;font-weight:400;line-height:20px;letter-spacing:.28px;transition:all .2s ease-in-out}.container-textfield:hover:not(.disabled):not(.focused):not(.alert){background:#edf6ff}.container-textfield.focused{border:1px solid #0581BC;background:#edf6ff}.container-textfield.disabled{background:#f5f5f5}.container-textfield.disabled .icon-color,.container-textfield.disabled input{color:#bfbfbf}.container-textfield.disabled input::placeholder{color:#bfbfbf;opacity:1}.container-textfield.alert{border:1px solid #DB2E2A;background:#fff4f0}.icon-color{color:#595959}.icon-color-cancel{color:#013169}input{display:flex;align-items:center;flex:1 0 0;border:none;outline:none;background-color:transparent;font-family:Rubik,sans-serif;font-size:.875rem;font-weight:400;line-height:20px;letter-spacing:.28px}.button-delete{display:flex;align-items:center;justify-content:center;background:none;border:none;cursor:pointer;padding:0;color:#595959}.button-delete:hover{color:#013169}.container-label-sup{display:flex;align-items:center;gap:4px;margin-bottom:8px;color:#333;font-family:Roboto,sans-serif;font-size:.875rem;font-weight:500;line-height:20px;letter-spacing:.28px}.container-label-sup.disabled{color:#bfbfbf}.icon-dot{display:flex;align-items:center;width:4px;height:4px;aspect-ratio:1/1;background-color:#db2e2a;border-radius:100px}.icon-color-help{color:#8c8c8c}.label-inf{display:flex;position:absolute;margin-top:4px;color:#595959;font-family:Roboto,sans-serif;font-size:.75rem;font-style:italic;font-weight:500;line-height:16px;letter-spacing:.24px}.label-inf.alert{color:#931224}input::-webkit-outer-spin-button,input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}\n"] }]
|
|
2619
2627
|
}], propDecorators: { textInput: [{
|
|
2620
2628
|
type: Input
|
|
2621
2629
|
}], required: [{
|
|
@@ -2626,6 +2634,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
2626
2634
|
type: Input
|
|
2627
2635
|
}], showHelpText: [{
|
|
2628
2636
|
type: Input
|
|
2637
|
+
}], error: [{
|
|
2638
|
+
type: Input
|
|
2629
2639
|
}], labelSuperior: [{
|
|
2630
2640
|
type: Input
|
|
2631
2641
|
}], labelInferior: [{
|
|
@@ -6087,11 +6097,11 @@ class FilterItemComponent {
|
|
|
6087
6097
|
this.clickDelete.emit(event);
|
|
6088
6098
|
}
|
|
6089
6099
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: FilterItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6090
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: FilterItemComponent, isStandalone: true, selector: "ius-filter-item", inputs: { iconName: "iconName", label: "label" }, outputs: { clickDelete: "clickDelete" }, ngImport: i0, template: "<div class=\"filter-item\">\r\n <ius-icon-lg [iconName]=\"iconName\" class=\"color-filter\"></ius-icon-lg>\r\n <span class=\"filter-text\" [iusPopoverContent]=\"label\">{{ label }}</span>\r\n <ius-button-circle-tertiary (buttonClicked)=\"onClickDelete($event)\"\r\n iconName=\"icon-cancel\"></ius-button-circle-tertiary>\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}.filter-item{display:flex;box-sizing:border-box;height:44px;width:
|
|
6100
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: FilterItemComponent, isStandalone: true, selector: "ius-filter-item", inputs: { iconName: "iconName", label: "label" }, outputs: { clickDelete: "clickDelete" }, ngImport: i0, template: "<div class=\"filter-item\">\r\n <ius-icon-lg [iconName]=\"iconName\" class=\"color-filter\"></ius-icon-lg>\r\n <span class=\"filter-text\" [iusPopoverContent]=\"label\">{{ label }}</span>\r\n <ius-button-circle-tertiary (buttonClicked)=\"onClickDelete($event)\"\r\n iconName=\"icon-cancel\"></ius-button-circle-tertiary>\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}.filter-item{display:flex;box-sizing:border-box;height:44px;width:210px;padding:4px 8px;align-items:center;gap:4px;overflow:hidden;border-radius:8px;border:1px dashed #EAEAEA;color:#184fdb;font-family:Rubik,sans-serif;font-size:.875rem;font-weight:400;line-height:20px;letter-spacing:.28px}.color-filter{color:#184fdb}.filter-text{cursor:default;flex:1;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}\n"], dependencies: [{ kind: "component", type: IconLgComponent, selector: "ius-icon-lg", inputs: ["iconName", "color"] }, { kind: "component", type: ButtonCircleTertiaryComponent, selector: "ius-button-circle-tertiary", inputs: ["disabled", "iconName"], outputs: ["buttonClicked"] }, { kind: "directive", type: PopoverDirective, selector: "[iusPopover], [iusPopoverTitle], [iusPopoverContent]", inputs: ["iusPopover", "iusPopoverTitle", "iusPopoverContent", "iusPopoverPosition", "iusPopoverOpenDelay", "iusPopoverCloseDelay"] }] }); }
|
|
6091
6101
|
}
|
|
6092
6102
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: FilterItemComponent, decorators: [{
|
|
6093
6103
|
type: Component,
|
|
6094
|
-
args: [{ selector: 'ius-filter-item', standalone: true, imports: [IconLgComponent, ButtonCircleTertiaryComponent, PopoverDirective], template: "<div class=\"filter-item\">\r\n <ius-icon-lg [iconName]=\"iconName\" class=\"color-filter\"></ius-icon-lg>\r\n <span class=\"filter-text\" [iusPopoverContent]=\"label\">{{ label }}</span>\r\n <ius-button-circle-tertiary (buttonClicked)=\"onClickDelete($event)\"\r\n iconName=\"icon-cancel\"></ius-button-circle-tertiary>\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}.filter-item{display:flex;box-sizing:border-box;height:44px;width:
|
|
6104
|
+
args: [{ selector: 'ius-filter-item', standalone: true, imports: [IconLgComponent, ButtonCircleTertiaryComponent, PopoverDirective], template: "<div class=\"filter-item\">\r\n <ius-icon-lg [iconName]=\"iconName\" class=\"color-filter\"></ius-icon-lg>\r\n <span class=\"filter-text\" [iusPopoverContent]=\"label\">{{ label }}</span>\r\n <ius-button-circle-tertiary (buttonClicked)=\"onClickDelete($event)\"\r\n iconName=\"icon-cancel\"></ius-button-circle-tertiary>\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}.filter-item{display:flex;box-sizing:border-box;height:44px;width:210px;padding:4px 8px;align-items:center;gap:4px;overflow:hidden;border-radius:8px;border:1px dashed #EAEAEA;color:#184fdb;font-family:Rubik,sans-serif;font-size:.875rem;font-weight:400;line-height:20px;letter-spacing:.28px}.color-filter{color:#184fdb}.filter-text{cursor:default;flex:1;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}\n"] }]
|
|
6095
6105
|
}], propDecorators: { iconName: [{
|
|
6096
6106
|
type: Input
|
|
6097
6107
|
}], label: [{
|
|
@@ -7361,11 +7371,11 @@ class PageNotFoundComponent {
|
|
|
7361
7371
|
this.router.navigate([this.homeRoute]);
|
|
7362
7372
|
}
|
|
7363
7373
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PageNotFoundComponent, deps: [{ token: i1$4.Router }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
7364
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: PageNotFoundComponent, isStandalone: true, selector: "ius-page-not-found", inputs: { title: "title", subtitle: "subtitle", homeRoute: "homeRoute" }, 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 <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"110\" height=\"110\" viewBox=\"0 0 110 110\" fill=\"none\">\r\n <path d=\"M7.27 93.64H102.72C103.98 93.64 104.99 94.66 104.99 95.91V100.46C104.99 104.23 101.94 107.28 98.17 107.28H11.82C8.05 107.28 5 104.23 5 100.46V95.91C5 94.65 6.02 93.64 7.27 93.64Z\" fill=\"#4795EA\"/>\r\n <path d=\"M66.36 98.18H43.63C41.12 98.18 39.08 96.14 39.08 93.63H70.9C70.9 96.14 68.86 98.18 66.35 98.18H66.36Z\" fill=\"url(#paint0_linear_4454_1610)\"/>\r\n <path d=\"M41.36 16.36C40.1 16.36 39.09 17.38 39.09 18.63V20.9H35.61L38.93 12.65C39.4 11.48 38.83 10.16 37.66 9.7C36.49 9.23 35.17 9.8 34.71 10.97L30.16 22.33C29.7 23.5 30.26 24.82 31.43 25.28C31.7 25.39 31.98 25.44 32.27 25.44H39.09V27.71C39.09 28.97 40.11 29.98 41.36 29.98C42.61 29.98 43.63 28.96 43.63 27.71V18.62C43.63 17.36 42.61 16.35 41.36 16.35V16.36Z\" fill=\"#F0F7FC\"/>\r\n <path d=\"M77.73 16.36C76.47 16.36 75.46 17.38 75.46 18.63V20.9H71.98L75.3 12.65C75.77 11.48 75.2 10.16 74.03 9.7C72.86 9.23 71.54 9.8 71.08 10.97L66.53 22.33C66.07 23.5 66.63 24.82 67.8 25.28C68.07 25.39 68.35 25.44 68.64 25.44H75.46V27.71C75.46 28.97 76.48 29.98 77.73 29.98C78.98 29.98 80 28.96 80 27.71V18.62C80 17.36 78.98 16.35 77.73 16.35V16.36Z\" fill=\"#F0F7FC\"/>\r\n <path d=\"M55.0001 9.54999C51.2301 9.54999 48.1801 12.6 48.1801 16.37V23.19C48.1801 26.96 51.2301 30.01 55.0001 30.01C58.7701 30.01 61.8201 26.96 61.8201 23.19V16.37C61.8201 12.6 58.7701 9.54999 55.0001 9.54999ZM57.2701 23.18C57.2701 24.44 56.2501 25.45 55.0001 25.45C53.7501 25.45 52.7301 24.43 52.7301 23.18V16.36C52.7301 15.1 53.7501 14.09 55.0001 14.09C56.2501 14.09 57.2701 15.11 57.2701 16.36V23.18Z\" fill=\"#F0F7FC\"/>\r\n <path d=\"M81.76 20.91H28.25C17.9223 20.91 9.55005 29.2823 9.55005 39.61V74.94C9.55005 85.2677 17.9223 93.64 28.25 93.64H81.76C92.0878 93.64 100.46 85.2677 100.46 74.94V39.61C100.46 29.2823 92.0878 20.91 81.76 20.91Z\" fill=\"url(#paint1_linear_4454_1610)\"/>\r\n <path d=\"M82.96 27.73H27.03C21.1371 27.73 16.36 32.5071 16.36 38.4V76.15C16.36 82.0429 21.1371 86.82 27.03 86.82H82.96C88.8529 86.82 93.63 82.0429 93.63 76.15V38.4C93.63 32.5071 88.8529 27.73 82.96 27.73Z\" fill=\"#F0F7FC\"/>\r\n <path d=\"M86.82 7.27V32.27C86.82 34.78 84.78 36.82 82.27 36.82H58.77L57.11 40.12C56.54 41.24 55.17 41.68 54.05 41.11C53.63 40.89 53.28 40.55 53.06 40.12L51.33 36.82H27.72C25.21 36.82 23.17 34.78 23.17 32.27V7.27C23.17 4.76 25.21 2.72 27.72 2.72H82.27C84.78 2.72 86.82 4.76 86.82 7.27Z\" fill=\"#A1B3BF\"/>\r\n <path d=\"M41.36 16.36C40.1 16.36 39.09 17.38 39.09 18.63V20.9H35.61L38.93 12.65C39.4 11.48 38.83 10.16 37.66 9.7C36.49 9.23 35.17 9.8 34.71 10.97L30.16 22.33C29.7 23.5 30.26 24.82 31.43 25.28C31.7 25.39 31.98 25.44 32.27 25.44H39.09V27.71C39.09 28.97 40.11 29.98 41.36 29.98C42.61 29.98 43.63 28.96 43.63 27.71V18.62C43.63 17.36 42.61 16.35 41.36 16.35V16.36Z\" fill=\"#F0F7FC\"/>\r\n <path d=\"M77.73 16.36C76.47 16.36 75.46 17.38 75.46 18.63V20.9H71.98L75.3 12.65C75.77 11.48 75.2 10.16 74.03 9.7C72.86 9.23 71.54 9.8 71.08 10.97L66.53 22.33C66.07 23.5 66.63 24.82 67.8 25.28C68.07 25.39 68.35 25.44 68.64 25.44H75.46V27.71C75.46 28.97 76.48 29.98 77.73 29.98C78.98 29.98 80 28.96 80 27.71V18.62C80 17.36 78.98 16.35 77.73 16.35V16.36Z\" fill=\"#F0F7FC\"/>\r\n <path d=\"M55.0001 9.54999C51.2301 9.54999 48.1801 12.6 48.1801 16.37V23.19C48.1801 26.96 51.2301 30.01 55.0001 30.01C58.7701 30.01 61.8201 26.96 61.8201 23.19V16.37C61.8201 12.6 58.7701 9.54999 55.0001 9.54999ZM57.2701 23.18C57.2701 24.44 56.2501 25.45 55.0001 25.45C53.7501 25.45 52.7301 24.43 52.7301 23.18V16.36C52.7301 15.1 53.7501 14.09 55.0001 14.09C56.2501 14.09 57.2701 15.11 57.2701 16.36V23.18Z\" fill=\"#F0F7FC\"/>\r\n <path d=\"M31.5 64.75C30.61 63.87 29.18 63.87 28.3 64.75L27.64 65.43L26.96 64.75C26.07 63.87 24.64 63.87 23.76 64.75C22.87 65.63 22.86 67.07 23.75 67.96C23.75 67.96 23.75 67.96 23.76 67.97L24.42 68.63L23.76 69.29C22.87 70.17 22.86 71.61 23.75 72.5C23.75 72.5 23.75 72.5 23.76 72.51C24.65 73.39 26.08 73.39 26.96 72.51L27.64 71.83L28.3 72.51C29.19 73.39 30.62 73.39 31.5 72.51C32.39 71.63 32.4 70.19 31.51 69.3C31.51 69.3 31.51 69.3 31.5 69.29L30.93 68.63L31.59 67.97C32.46 67.06 32.42 65.62 31.51 64.76C31.51 64.76 31.51 64.76 31.5 64.75Z\" fill=\"#B4CDE1\"/>\r\n <path d=\"M31.5 51.11C30.61 50.23 29.18 50.23 28.3 51.11L27.64 51.79L26.96 51.11C26.07 50.23 24.64 50.23 23.76 51.11C22.87 51.99 22.86 53.43 23.75 54.32C23.75 54.32 23.75 54.32 23.76 54.33L24.42 54.99L23.76 55.65C22.87 56.53 22.86 57.97 23.75 58.86C23.75 58.86 23.75 58.86 23.76 58.87C24.65 59.75 26.08 59.75 26.96 58.87L27.64 58.19L28.3 58.87C29.19 59.75 30.62 59.75 31.5 58.87C32.39 57.99 32.4 56.55 31.51 55.66C31.51 55.66 31.51 55.66 31.5 55.65L30.93 54.99L31.59 54.33C32.46 53.42 32.42 51.98 31.51 51.12C31.51 51.12 31.51 51.12 31.5 51.11Z\" fill=\"#B4CDE1\"/>\r\n <path d=\"M43.25 56.25C43.93 55.21 43.65 53.81 42.61 53.11C41.57 52.41 40.16 52.69 39.46 53.74C36.21 58.63 36.21 64.99 39.46 69.88C39.88 70.52 40.6 70.91 41.37 70.9C42.63 70.9 43.64 69.87 43.63 68.62C43.63 68.18 43.5 67.75 43.26 67.38C41.01 64.01 41.01 59.61 43.26 56.24L43.25 56.25Z\" fill=\"#B4CDE1\"/>\r\n <path d=\"M84.55 55H52.73C51.47 55 50.46 53.98 50.46 52.73C50.46 51.48 51.48 50.46 52.73 50.46H84.55C85.81 50.46 86.82 51.48 86.82 52.73C86.82 53.98 85.8 55 84.55 55Z\" fill=\"#D7E9F7\"/>\r\n <path d=\"M84.55 64.09H52.73C51.47 64.09 50.46 63.07 50.46 61.82C50.46 60.57 51.48 59.55 52.73 59.55H84.55C85.81 59.55 86.82 60.57 86.82 61.82C86.82 63.07 85.8 64.09 84.55 64.09Z\" fill=\"#D7E9F7\"/>\r\n <path d=\"M73.18 73.18H52.73C51.47 73.18 50.46 72.16 50.46 70.91C50.46 69.66 51.48 68.64 52.73 68.64H73.18C74.44 68.64 75.45 69.66 75.45 70.91C75.45 72.16 74.43 73.18 73.18 73.18Z\" fill=\"#D7E9F7\"/>\r\n <defs>\r\n <linearGradient id=\"paint0_linear_4454_1610\" x1=\"36.1737\" y1=\"92.5078\" x2=\"67.9703\" y2=\"92.5078\" gradientUnits=\"userSpaceOnUse\">\r\n <stop stop-color=\"#D3E6F5\"/>\r\n <stop offset=\"1\" stop-color=\"#F0F7FC\"/>\r\n </linearGradient>\r\n <linearGradient id=\"paint1_linear_4454_1610\" x1=\"52.072\" y1=\"90.2671\" x2=\"52.072\" y2=\"17.4977\" gradientUnits=\"userSpaceOnUse\">\r\n <stop stop-color=\"#54A5FF\"/>\r\n <stop offset=\"1\" stop-color=\"#8AD3FE\"/>\r\n </linearGradient>\r\n </defs>\r\n </svg>\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'\" (buttonClicked)=\"goHome()\">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:110px;height:110px;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"] }] }); }
|
|
7374
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: PageNotFoundComponent, isStandalone: true, selector: "ius-page-not-found", inputs: { title: "title", subtitle: "subtitle", homeRoute: "homeRoute" }, 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 <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"110\" height=\"110\" viewBox=\"0 0 110 110\" fill=\"none\">\r\n <path d=\"M7.27 93.64H102.72C103.98 93.64 104.99 94.66 104.99 95.91V100.46C104.99 104.23 101.94 107.28 98.17 107.28H11.82C8.05 107.28 5 104.23 5 100.46V95.91C5 94.65 6.02 93.64 7.27 93.64Z\" fill=\"#4795EA\"/>\r\n <path d=\"M66.36 98.18H43.63C41.12 98.18 39.08 96.14 39.08 93.63H70.9C70.9 96.14 68.86 98.18 66.35 98.18H66.36Z\" fill=\"url(#paint0_linear_4454_1610)\"/>\r\n <path d=\"M41.36 16.36C40.1 16.36 39.09 17.38 39.09 18.63V20.9H35.61L38.93 12.65C39.4 11.48 38.83 10.16 37.66 9.7C36.49 9.23 35.17 9.8 34.71 10.97L30.16 22.33C29.7 23.5 30.26 24.82 31.43 25.28C31.7 25.39 31.98 25.44 32.27 25.44H39.09V27.71C39.09 28.97 40.11 29.98 41.36 29.98C42.61 29.98 43.63 28.96 43.63 27.71V18.62C43.63 17.36 42.61 16.35 41.36 16.35V16.36Z\" fill=\"#F0F7FC\"/>\r\n <path d=\"M77.73 16.36C76.47 16.36 75.46 17.38 75.46 18.63V20.9H71.98L75.3 12.65C75.77 11.48 75.2 10.16 74.03 9.7C72.86 9.23 71.54 9.8 71.08 10.97L66.53 22.33C66.07 23.5 66.63 24.82 67.8 25.28C68.07 25.39 68.35 25.44 68.64 25.44H75.46V27.71C75.46 28.97 76.48 29.98 77.73 29.98C78.98 29.98 80 28.96 80 27.71V18.62C80 17.36 78.98 16.35 77.73 16.35V16.36Z\" fill=\"#F0F7FC\"/>\r\n <path d=\"M55.0001 9.54999C51.2301 9.54999 48.1801 12.6 48.1801 16.37V23.19C48.1801 26.96 51.2301 30.01 55.0001 30.01C58.7701 30.01 61.8201 26.96 61.8201 23.19V16.37C61.8201 12.6 58.7701 9.54999 55.0001 9.54999ZM57.2701 23.18C57.2701 24.44 56.2501 25.45 55.0001 25.45C53.7501 25.45 52.7301 24.43 52.7301 23.18V16.36C52.7301 15.1 53.7501 14.09 55.0001 14.09C56.2501 14.09 57.2701 15.11 57.2701 16.36V23.18Z\" fill=\"#F0F7FC\"/>\r\n <path d=\"M81.76 20.91H28.25C17.9223 20.91 9.55005 29.2823 9.55005 39.61V74.94C9.55005 85.2677 17.9223 93.64 28.25 93.64H81.76C92.0878 93.64 100.46 85.2677 100.46 74.94V39.61C100.46 29.2823 92.0878 20.91 81.76 20.91Z\" fill=\"url(#paint1_linear_4454_1610)\"/>\r\n <path d=\"M82.96 27.73H27.03C21.1371 27.73 16.36 32.5071 16.36 38.4V76.15C16.36 82.0429 21.1371 86.82 27.03 86.82H82.96C88.8529 86.82 93.63 82.0429 93.63 76.15V38.4C93.63 32.5071 88.8529 27.73 82.96 27.73Z\" fill=\"#F0F7FC\"/>\r\n <path d=\"M86.82 7.27V32.27C86.82 34.78 84.78 36.82 82.27 36.82H58.77L57.11 40.12C56.54 41.24 55.17 41.68 54.05 41.11C53.63 40.89 53.28 40.55 53.06 40.12L51.33 36.82H27.72C25.21 36.82 23.17 34.78 23.17 32.27V7.27C23.17 4.76 25.21 2.72 27.72 2.72H82.27C84.78 2.72 86.82 4.76 86.82 7.27Z\" fill=\"#A1B3BF\"/>\r\n <path d=\"M41.36 16.36C40.1 16.36 39.09 17.38 39.09 18.63V20.9H35.61L38.93 12.65C39.4 11.48 38.83 10.16 37.66 9.7C36.49 9.23 35.17 9.8 34.71 10.97L30.16 22.33C29.7 23.5 30.26 24.82 31.43 25.28C31.7 25.39 31.98 25.44 32.27 25.44H39.09V27.71C39.09 28.97 40.11 29.98 41.36 29.98C42.61 29.98 43.63 28.96 43.63 27.71V18.62C43.63 17.36 42.61 16.35 41.36 16.35V16.36Z\" fill=\"#F0F7FC\"/>\r\n <path d=\"M77.73 16.36C76.47 16.36 75.46 17.38 75.46 18.63V20.9H71.98L75.3 12.65C75.77 11.48 75.2 10.16 74.03 9.7C72.86 9.23 71.54 9.8 71.08 10.97L66.53 22.33C66.07 23.5 66.63 24.82 67.8 25.28C68.07 25.39 68.35 25.44 68.64 25.44H75.46V27.71C75.46 28.97 76.48 29.98 77.73 29.98C78.98 29.98 80 28.96 80 27.71V18.62C80 17.36 78.98 16.35 77.73 16.35V16.36Z\" fill=\"#F0F7FC\"/>\r\n <path d=\"M55.0001 9.54999C51.2301 9.54999 48.1801 12.6 48.1801 16.37V23.19C48.1801 26.96 51.2301 30.01 55.0001 30.01C58.7701 30.01 61.8201 26.96 61.8201 23.19V16.37C61.8201 12.6 58.7701 9.54999 55.0001 9.54999ZM57.2701 23.18C57.2701 24.44 56.2501 25.45 55.0001 25.45C53.7501 25.45 52.7301 24.43 52.7301 23.18V16.36C52.7301 15.1 53.7501 14.09 55.0001 14.09C56.2501 14.09 57.2701 15.11 57.2701 16.36V23.18Z\" fill=\"#F0F7FC\"/>\r\n <path d=\"M31.5 64.75C30.61 63.87 29.18 63.87 28.3 64.75L27.64 65.43L26.96 64.75C26.07 63.87 24.64 63.87 23.76 64.75C22.87 65.63 22.86 67.07 23.75 67.96C23.75 67.96 23.75 67.96 23.76 67.97L24.42 68.63L23.76 69.29C22.87 70.17 22.86 71.61 23.75 72.5C23.75 72.5 23.75 72.5 23.76 72.51C24.65 73.39 26.08 73.39 26.96 72.51L27.64 71.83L28.3 72.51C29.19 73.39 30.62 73.39 31.5 72.51C32.39 71.63 32.4 70.19 31.51 69.3C31.51 69.3 31.51 69.3 31.5 69.29L30.93 68.63L31.59 67.97C32.46 67.06 32.42 65.62 31.51 64.76C31.51 64.76 31.51 64.76 31.5 64.75Z\" fill=\"#B4CDE1\"/>\r\n <path d=\"M31.5 51.11C30.61 50.23 29.18 50.23 28.3 51.11L27.64 51.79L26.96 51.11C26.07 50.23 24.64 50.23 23.76 51.11C22.87 51.99 22.86 53.43 23.75 54.32C23.75 54.32 23.75 54.32 23.76 54.33L24.42 54.99L23.76 55.65C22.87 56.53 22.86 57.97 23.75 58.86C23.75 58.86 23.75 58.86 23.76 58.87C24.65 59.75 26.08 59.75 26.96 58.87L27.64 58.19L28.3 58.87C29.19 59.75 30.62 59.75 31.5 58.87C32.39 57.99 32.4 56.55 31.51 55.66C31.51 55.66 31.51 55.66 31.5 55.65L30.93 54.99L31.59 54.33C32.46 53.42 32.42 51.98 31.51 51.12C31.51 51.12 31.51 51.12 31.5 51.11Z\" fill=\"#B4CDE1\"/>\r\n <path d=\"M43.25 56.25C43.93 55.21 43.65 53.81 42.61 53.11C41.57 52.41 40.16 52.69 39.46 53.74C36.21 58.63 36.21 64.99 39.46 69.88C39.88 70.52 40.6 70.91 41.37 70.9C42.63 70.9 43.64 69.87 43.63 68.62C43.63 68.18 43.5 67.75 43.26 67.38C41.01 64.01 41.01 59.61 43.26 56.24L43.25 56.25Z\" fill=\"#B4CDE1\"/>\r\n <path d=\"M84.55 55H52.73C51.47 55 50.46 53.98 50.46 52.73C50.46 51.48 51.48 50.46 52.73 50.46H84.55C85.81 50.46 86.82 51.48 86.82 52.73C86.82 53.98 85.8 55 84.55 55Z\" fill=\"#D7E9F7\"/>\r\n <path d=\"M84.55 64.09H52.73C51.47 64.09 50.46 63.07 50.46 61.82C50.46 60.57 51.48 59.55 52.73 59.55H84.55C85.81 59.55 86.82 60.57 86.82 61.82C86.82 63.07 85.8 64.09 84.55 64.09Z\" fill=\"#D7E9F7\"/>\r\n <path d=\"M73.18 73.18H52.73C51.47 73.18 50.46 72.16 50.46 70.91C50.46 69.66 51.48 68.64 52.73 68.64H73.18C74.44 68.64 75.45 69.66 75.45 70.91C75.45 72.16 74.43 73.18 73.18 73.18Z\" fill=\"#D7E9F7\"/>\r\n <defs>\r\n <linearGradient id=\"paint0_linear_4454_1610\" x1=\"36.1737\" y1=\"92.5078\" x2=\"67.9703\" y2=\"92.5078\" gradientUnits=\"userSpaceOnUse\">\r\n <stop stop-color=\"#D3E6F5\"/>\r\n <stop offset=\"1\" stop-color=\"#F0F7FC\"/>\r\n </linearGradient>\r\n <linearGradient id=\"paint1_linear_4454_1610\" x1=\"52.072\" y1=\"90.2671\" x2=\"52.072\" y2=\"17.4977\" gradientUnits=\"userSpaceOnUse\">\r\n <stop stop-color=\"#54A5FF\"/>\r\n <stop offset=\"1\" stop-color=\"#8AD3FE\"/>\r\n </linearGradient>\r\n </defs>\r\n </svg>\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'\" (buttonClicked)=\"goHome()\">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:110px;height:110px;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;margin-top:12px}\n"], dependencies: [{ kind: "component", type: ButtonStandardPrimaryComponent, selector: "ius-button-standard-primary", inputs: ["disabled", "iconName"], outputs: ["buttonClicked"] }] }); }
|
|
7365
7375
|
}
|
|
7366
7376
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PageNotFoundComponent, decorators: [{
|
|
7367
7377
|
type: Component,
|
|
7368
|
-
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 <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"110\" height=\"110\" viewBox=\"0 0 110 110\" fill=\"none\">\r\n <path d=\"M7.27 93.64H102.72C103.98 93.64 104.99 94.66 104.99 95.91V100.46C104.99 104.23 101.94 107.28 98.17 107.28H11.82C8.05 107.28 5 104.23 5 100.46V95.91C5 94.65 6.02 93.64 7.27 93.64Z\" fill=\"#4795EA\"/>\r\n <path d=\"M66.36 98.18H43.63C41.12 98.18 39.08 96.14 39.08 93.63H70.9C70.9 96.14 68.86 98.18 66.35 98.18H66.36Z\" fill=\"url(#paint0_linear_4454_1610)\"/>\r\n <path d=\"M41.36 16.36C40.1 16.36 39.09 17.38 39.09 18.63V20.9H35.61L38.93 12.65C39.4 11.48 38.83 10.16 37.66 9.7C36.49 9.23 35.17 9.8 34.71 10.97L30.16 22.33C29.7 23.5 30.26 24.82 31.43 25.28C31.7 25.39 31.98 25.44 32.27 25.44H39.09V27.71C39.09 28.97 40.11 29.98 41.36 29.98C42.61 29.98 43.63 28.96 43.63 27.71V18.62C43.63 17.36 42.61 16.35 41.36 16.35V16.36Z\" fill=\"#F0F7FC\"/>\r\n <path d=\"M77.73 16.36C76.47 16.36 75.46 17.38 75.46 18.63V20.9H71.98L75.3 12.65C75.77 11.48 75.2 10.16 74.03 9.7C72.86 9.23 71.54 9.8 71.08 10.97L66.53 22.33C66.07 23.5 66.63 24.82 67.8 25.28C68.07 25.39 68.35 25.44 68.64 25.44H75.46V27.71C75.46 28.97 76.48 29.98 77.73 29.98C78.98 29.98 80 28.96 80 27.71V18.62C80 17.36 78.98 16.35 77.73 16.35V16.36Z\" fill=\"#F0F7FC\"/>\r\n <path d=\"M55.0001 9.54999C51.2301 9.54999 48.1801 12.6 48.1801 16.37V23.19C48.1801 26.96 51.2301 30.01 55.0001 30.01C58.7701 30.01 61.8201 26.96 61.8201 23.19V16.37C61.8201 12.6 58.7701 9.54999 55.0001 9.54999ZM57.2701 23.18C57.2701 24.44 56.2501 25.45 55.0001 25.45C53.7501 25.45 52.7301 24.43 52.7301 23.18V16.36C52.7301 15.1 53.7501 14.09 55.0001 14.09C56.2501 14.09 57.2701 15.11 57.2701 16.36V23.18Z\" fill=\"#F0F7FC\"/>\r\n <path d=\"M81.76 20.91H28.25C17.9223 20.91 9.55005 29.2823 9.55005 39.61V74.94C9.55005 85.2677 17.9223 93.64 28.25 93.64H81.76C92.0878 93.64 100.46 85.2677 100.46 74.94V39.61C100.46 29.2823 92.0878 20.91 81.76 20.91Z\" fill=\"url(#paint1_linear_4454_1610)\"/>\r\n <path d=\"M82.96 27.73H27.03C21.1371 27.73 16.36 32.5071 16.36 38.4V76.15C16.36 82.0429 21.1371 86.82 27.03 86.82H82.96C88.8529 86.82 93.63 82.0429 93.63 76.15V38.4C93.63 32.5071 88.8529 27.73 82.96 27.73Z\" fill=\"#F0F7FC\"/>\r\n <path d=\"M86.82 7.27V32.27C86.82 34.78 84.78 36.82 82.27 36.82H58.77L57.11 40.12C56.54 41.24 55.17 41.68 54.05 41.11C53.63 40.89 53.28 40.55 53.06 40.12L51.33 36.82H27.72C25.21 36.82 23.17 34.78 23.17 32.27V7.27C23.17 4.76 25.21 2.72 27.72 2.72H82.27C84.78 2.72 86.82 4.76 86.82 7.27Z\" fill=\"#A1B3BF\"/>\r\n <path d=\"M41.36 16.36C40.1 16.36 39.09 17.38 39.09 18.63V20.9H35.61L38.93 12.65C39.4 11.48 38.83 10.16 37.66 9.7C36.49 9.23 35.17 9.8 34.71 10.97L30.16 22.33C29.7 23.5 30.26 24.82 31.43 25.28C31.7 25.39 31.98 25.44 32.27 25.44H39.09V27.71C39.09 28.97 40.11 29.98 41.36 29.98C42.61 29.98 43.63 28.96 43.63 27.71V18.62C43.63 17.36 42.61 16.35 41.36 16.35V16.36Z\" fill=\"#F0F7FC\"/>\r\n <path d=\"M77.73 16.36C76.47 16.36 75.46 17.38 75.46 18.63V20.9H71.98L75.3 12.65C75.77 11.48 75.2 10.16 74.03 9.7C72.86 9.23 71.54 9.8 71.08 10.97L66.53 22.33C66.07 23.5 66.63 24.82 67.8 25.28C68.07 25.39 68.35 25.44 68.64 25.44H75.46V27.71C75.46 28.97 76.48 29.98 77.73 29.98C78.98 29.98 80 28.96 80 27.71V18.62C80 17.36 78.98 16.35 77.73 16.35V16.36Z\" fill=\"#F0F7FC\"/>\r\n <path d=\"M55.0001 9.54999C51.2301 9.54999 48.1801 12.6 48.1801 16.37V23.19C48.1801 26.96 51.2301 30.01 55.0001 30.01C58.7701 30.01 61.8201 26.96 61.8201 23.19V16.37C61.8201 12.6 58.7701 9.54999 55.0001 9.54999ZM57.2701 23.18C57.2701 24.44 56.2501 25.45 55.0001 25.45C53.7501 25.45 52.7301 24.43 52.7301 23.18V16.36C52.7301 15.1 53.7501 14.09 55.0001 14.09C56.2501 14.09 57.2701 15.11 57.2701 16.36V23.18Z\" fill=\"#F0F7FC\"/>\r\n <path d=\"M31.5 64.75C30.61 63.87 29.18 63.87 28.3 64.75L27.64 65.43L26.96 64.75C26.07 63.87 24.64 63.87 23.76 64.75C22.87 65.63 22.86 67.07 23.75 67.96C23.75 67.96 23.75 67.96 23.76 67.97L24.42 68.63L23.76 69.29C22.87 70.17 22.86 71.61 23.75 72.5C23.75 72.5 23.75 72.5 23.76 72.51C24.65 73.39 26.08 73.39 26.96 72.51L27.64 71.83L28.3 72.51C29.19 73.39 30.62 73.39 31.5 72.51C32.39 71.63 32.4 70.19 31.51 69.3C31.51 69.3 31.51 69.3 31.5 69.29L30.93 68.63L31.59 67.97C32.46 67.06 32.42 65.62 31.51 64.76C31.51 64.76 31.51 64.76 31.5 64.75Z\" fill=\"#B4CDE1\"/>\r\n <path d=\"M31.5 51.11C30.61 50.23 29.18 50.23 28.3 51.11L27.64 51.79L26.96 51.11C26.07 50.23 24.64 50.23 23.76 51.11C22.87 51.99 22.86 53.43 23.75 54.32C23.75 54.32 23.75 54.32 23.76 54.33L24.42 54.99L23.76 55.65C22.87 56.53 22.86 57.97 23.75 58.86C23.75 58.86 23.75 58.86 23.76 58.87C24.65 59.75 26.08 59.75 26.96 58.87L27.64 58.19L28.3 58.87C29.19 59.75 30.62 59.75 31.5 58.87C32.39 57.99 32.4 56.55 31.51 55.66C31.51 55.66 31.51 55.66 31.5 55.65L30.93 54.99L31.59 54.33C32.46 53.42 32.42 51.98 31.51 51.12C31.51 51.12 31.51 51.12 31.5 51.11Z\" fill=\"#B4CDE1\"/>\r\n <path d=\"M43.25 56.25C43.93 55.21 43.65 53.81 42.61 53.11C41.57 52.41 40.16 52.69 39.46 53.74C36.21 58.63 36.21 64.99 39.46 69.88C39.88 70.52 40.6 70.91 41.37 70.9C42.63 70.9 43.64 69.87 43.63 68.62C43.63 68.18 43.5 67.75 43.26 67.38C41.01 64.01 41.01 59.61 43.26 56.24L43.25 56.25Z\" fill=\"#B4CDE1\"/>\r\n <path d=\"M84.55 55H52.73C51.47 55 50.46 53.98 50.46 52.73C50.46 51.48 51.48 50.46 52.73 50.46H84.55C85.81 50.46 86.82 51.48 86.82 52.73C86.82 53.98 85.8 55 84.55 55Z\" fill=\"#D7E9F7\"/>\r\n <path d=\"M84.55 64.09H52.73C51.47 64.09 50.46 63.07 50.46 61.82C50.46 60.57 51.48 59.55 52.73 59.55H84.55C85.81 59.55 86.82 60.57 86.82 61.82C86.82 63.07 85.8 64.09 84.55 64.09Z\" fill=\"#D7E9F7\"/>\r\n <path d=\"M73.18 73.18H52.73C51.47 73.18 50.46 72.16 50.46 70.91C50.46 69.66 51.48 68.64 52.73 68.64H73.18C74.44 68.64 75.45 69.66 75.45 70.91C75.45 72.16 74.43 73.18 73.18 73.18Z\" fill=\"#D7E9F7\"/>\r\n <defs>\r\n <linearGradient id=\"paint0_linear_4454_1610\" x1=\"36.1737\" y1=\"92.5078\" x2=\"67.9703\" y2=\"92.5078\" gradientUnits=\"userSpaceOnUse\">\r\n <stop stop-color=\"#D3E6F5\"/>\r\n <stop offset=\"1\" stop-color=\"#F0F7FC\"/>\r\n </linearGradient>\r\n <linearGradient id=\"paint1_linear_4454_1610\" x1=\"52.072\" y1=\"90.2671\" x2=\"52.072\" y2=\"17.4977\" gradientUnits=\"userSpaceOnUse\">\r\n <stop stop-color=\"#54A5FF\"/>\r\n <stop offset=\"1\" stop-color=\"#8AD3FE\"/>\r\n </linearGradient>\r\n </defs>\r\n </svg>\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'\" (buttonClicked)=\"goHome()\">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:110px;height:110px;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"] }]
|
|
7378
|
+
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 <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"110\" height=\"110\" viewBox=\"0 0 110 110\" fill=\"none\">\r\n <path d=\"M7.27 93.64H102.72C103.98 93.64 104.99 94.66 104.99 95.91V100.46C104.99 104.23 101.94 107.28 98.17 107.28H11.82C8.05 107.28 5 104.23 5 100.46V95.91C5 94.65 6.02 93.64 7.27 93.64Z\" fill=\"#4795EA\"/>\r\n <path d=\"M66.36 98.18H43.63C41.12 98.18 39.08 96.14 39.08 93.63H70.9C70.9 96.14 68.86 98.18 66.35 98.18H66.36Z\" fill=\"url(#paint0_linear_4454_1610)\"/>\r\n <path d=\"M41.36 16.36C40.1 16.36 39.09 17.38 39.09 18.63V20.9H35.61L38.93 12.65C39.4 11.48 38.83 10.16 37.66 9.7C36.49 9.23 35.17 9.8 34.71 10.97L30.16 22.33C29.7 23.5 30.26 24.82 31.43 25.28C31.7 25.39 31.98 25.44 32.27 25.44H39.09V27.71C39.09 28.97 40.11 29.98 41.36 29.98C42.61 29.98 43.63 28.96 43.63 27.71V18.62C43.63 17.36 42.61 16.35 41.36 16.35V16.36Z\" fill=\"#F0F7FC\"/>\r\n <path d=\"M77.73 16.36C76.47 16.36 75.46 17.38 75.46 18.63V20.9H71.98L75.3 12.65C75.77 11.48 75.2 10.16 74.03 9.7C72.86 9.23 71.54 9.8 71.08 10.97L66.53 22.33C66.07 23.5 66.63 24.82 67.8 25.28C68.07 25.39 68.35 25.44 68.64 25.44H75.46V27.71C75.46 28.97 76.48 29.98 77.73 29.98C78.98 29.98 80 28.96 80 27.71V18.62C80 17.36 78.98 16.35 77.73 16.35V16.36Z\" fill=\"#F0F7FC\"/>\r\n <path d=\"M55.0001 9.54999C51.2301 9.54999 48.1801 12.6 48.1801 16.37V23.19C48.1801 26.96 51.2301 30.01 55.0001 30.01C58.7701 30.01 61.8201 26.96 61.8201 23.19V16.37C61.8201 12.6 58.7701 9.54999 55.0001 9.54999ZM57.2701 23.18C57.2701 24.44 56.2501 25.45 55.0001 25.45C53.7501 25.45 52.7301 24.43 52.7301 23.18V16.36C52.7301 15.1 53.7501 14.09 55.0001 14.09C56.2501 14.09 57.2701 15.11 57.2701 16.36V23.18Z\" fill=\"#F0F7FC\"/>\r\n <path d=\"M81.76 20.91H28.25C17.9223 20.91 9.55005 29.2823 9.55005 39.61V74.94C9.55005 85.2677 17.9223 93.64 28.25 93.64H81.76C92.0878 93.64 100.46 85.2677 100.46 74.94V39.61C100.46 29.2823 92.0878 20.91 81.76 20.91Z\" fill=\"url(#paint1_linear_4454_1610)\"/>\r\n <path d=\"M82.96 27.73H27.03C21.1371 27.73 16.36 32.5071 16.36 38.4V76.15C16.36 82.0429 21.1371 86.82 27.03 86.82H82.96C88.8529 86.82 93.63 82.0429 93.63 76.15V38.4C93.63 32.5071 88.8529 27.73 82.96 27.73Z\" fill=\"#F0F7FC\"/>\r\n <path d=\"M86.82 7.27V32.27C86.82 34.78 84.78 36.82 82.27 36.82H58.77L57.11 40.12C56.54 41.24 55.17 41.68 54.05 41.11C53.63 40.89 53.28 40.55 53.06 40.12L51.33 36.82H27.72C25.21 36.82 23.17 34.78 23.17 32.27V7.27C23.17 4.76 25.21 2.72 27.72 2.72H82.27C84.78 2.72 86.82 4.76 86.82 7.27Z\" fill=\"#A1B3BF\"/>\r\n <path d=\"M41.36 16.36C40.1 16.36 39.09 17.38 39.09 18.63V20.9H35.61L38.93 12.65C39.4 11.48 38.83 10.16 37.66 9.7C36.49 9.23 35.17 9.8 34.71 10.97L30.16 22.33C29.7 23.5 30.26 24.82 31.43 25.28C31.7 25.39 31.98 25.44 32.27 25.44H39.09V27.71C39.09 28.97 40.11 29.98 41.36 29.98C42.61 29.98 43.63 28.96 43.63 27.71V18.62C43.63 17.36 42.61 16.35 41.36 16.35V16.36Z\" fill=\"#F0F7FC\"/>\r\n <path d=\"M77.73 16.36C76.47 16.36 75.46 17.38 75.46 18.63V20.9H71.98L75.3 12.65C75.77 11.48 75.2 10.16 74.03 9.7C72.86 9.23 71.54 9.8 71.08 10.97L66.53 22.33C66.07 23.5 66.63 24.82 67.8 25.28C68.07 25.39 68.35 25.44 68.64 25.44H75.46V27.71C75.46 28.97 76.48 29.98 77.73 29.98C78.98 29.98 80 28.96 80 27.71V18.62C80 17.36 78.98 16.35 77.73 16.35V16.36Z\" fill=\"#F0F7FC\"/>\r\n <path d=\"M55.0001 9.54999C51.2301 9.54999 48.1801 12.6 48.1801 16.37V23.19C48.1801 26.96 51.2301 30.01 55.0001 30.01C58.7701 30.01 61.8201 26.96 61.8201 23.19V16.37C61.8201 12.6 58.7701 9.54999 55.0001 9.54999ZM57.2701 23.18C57.2701 24.44 56.2501 25.45 55.0001 25.45C53.7501 25.45 52.7301 24.43 52.7301 23.18V16.36C52.7301 15.1 53.7501 14.09 55.0001 14.09C56.2501 14.09 57.2701 15.11 57.2701 16.36V23.18Z\" fill=\"#F0F7FC\"/>\r\n <path d=\"M31.5 64.75C30.61 63.87 29.18 63.87 28.3 64.75L27.64 65.43L26.96 64.75C26.07 63.87 24.64 63.87 23.76 64.75C22.87 65.63 22.86 67.07 23.75 67.96C23.75 67.96 23.75 67.96 23.76 67.97L24.42 68.63L23.76 69.29C22.87 70.17 22.86 71.61 23.75 72.5C23.75 72.5 23.75 72.5 23.76 72.51C24.65 73.39 26.08 73.39 26.96 72.51L27.64 71.83L28.3 72.51C29.19 73.39 30.62 73.39 31.5 72.51C32.39 71.63 32.4 70.19 31.51 69.3C31.51 69.3 31.51 69.3 31.5 69.29L30.93 68.63L31.59 67.97C32.46 67.06 32.42 65.62 31.51 64.76C31.51 64.76 31.51 64.76 31.5 64.75Z\" fill=\"#B4CDE1\"/>\r\n <path d=\"M31.5 51.11C30.61 50.23 29.18 50.23 28.3 51.11L27.64 51.79L26.96 51.11C26.07 50.23 24.64 50.23 23.76 51.11C22.87 51.99 22.86 53.43 23.75 54.32C23.75 54.32 23.75 54.32 23.76 54.33L24.42 54.99L23.76 55.65C22.87 56.53 22.86 57.97 23.75 58.86C23.75 58.86 23.75 58.86 23.76 58.87C24.65 59.75 26.08 59.75 26.96 58.87L27.64 58.19L28.3 58.87C29.19 59.75 30.62 59.75 31.5 58.87C32.39 57.99 32.4 56.55 31.51 55.66C31.51 55.66 31.51 55.66 31.5 55.65L30.93 54.99L31.59 54.33C32.46 53.42 32.42 51.98 31.51 51.12C31.51 51.12 31.51 51.12 31.5 51.11Z\" fill=\"#B4CDE1\"/>\r\n <path d=\"M43.25 56.25C43.93 55.21 43.65 53.81 42.61 53.11C41.57 52.41 40.16 52.69 39.46 53.74C36.21 58.63 36.21 64.99 39.46 69.88C39.88 70.52 40.6 70.91 41.37 70.9C42.63 70.9 43.64 69.87 43.63 68.62C43.63 68.18 43.5 67.75 43.26 67.38C41.01 64.01 41.01 59.61 43.26 56.24L43.25 56.25Z\" fill=\"#B4CDE1\"/>\r\n <path d=\"M84.55 55H52.73C51.47 55 50.46 53.98 50.46 52.73C50.46 51.48 51.48 50.46 52.73 50.46H84.55C85.81 50.46 86.82 51.48 86.82 52.73C86.82 53.98 85.8 55 84.55 55Z\" fill=\"#D7E9F7\"/>\r\n <path d=\"M84.55 64.09H52.73C51.47 64.09 50.46 63.07 50.46 61.82C50.46 60.57 51.48 59.55 52.73 59.55H84.55C85.81 59.55 86.82 60.57 86.82 61.82C86.82 63.07 85.8 64.09 84.55 64.09Z\" fill=\"#D7E9F7\"/>\r\n <path d=\"M73.18 73.18H52.73C51.47 73.18 50.46 72.16 50.46 70.91C50.46 69.66 51.48 68.64 52.73 68.64H73.18C74.44 68.64 75.45 69.66 75.45 70.91C75.45 72.16 74.43 73.18 73.18 73.18Z\" fill=\"#D7E9F7\"/>\r\n <defs>\r\n <linearGradient id=\"paint0_linear_4454_1610\" x1=\"36.1737\" y1=\"92.5078\" x2=\"67.9703\" y2=\"92.5078\" gradientUnits=\"userSpaceOnUse\">\r\n <stop stop-color=\"#D3E6F5\"/>\r\n <stop offset=\"1\" stop-color=\"#F0F7FC\"/>\r\n </linearGradient>\r\n <linearGradient id=\"paint1_linear_4454_1610\" x1=\"52.072\" y1=\"90.2671\" x2=\"52.072\" y2=\"17.4977\" gradientUnits=\"userSpaceOnUse\">\r\n <stop stop-color=\"#54A5FF\"/>\r\n <stop offset=\"1\" stop-color=\"#8AD3FE\"/>\r\n </linearGradient>\r\n </defs>\r\n </svg>\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'\" (buttonClicked)=\"goHome()\">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:110px;height:110px;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;margin-top:12px}\n"] }]
|
|
7369
7379
|
}], ctorParameters: () => [{ type: i1$4.Router }], propDecorators: { title: [{
|
|
7370
7380
|
type: Input
|
|
7371
7381
|
}], subtitle: [{
|