@litigiovirtual/ius-design-components 2.1.9 → 2.1.10
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/README.md +14 -14
- package/fesm2022/litigiovirtual-ius-design-components-utils.mjs.map +1 -1
- package/fesm2022/litigiovirtual-ius-design-components.mjs +68 -62
- package/fesm2022/litigiovirtual-ius-design-components.mjs.map +1 -1
- package/package.json +1 -1
- package/types/litigiovirtual-ius-design-components.d.ts +11 -3
package/package.json
CHANGED
|
@@ -556,6 +556,11 @@ declare class TextFieldComponent implements ControlValueAccessor {
|
|
|
556
556
|
error: boolean;
|
|
557
557
|
/** `name` del input. */
|
|
558
558
|
name?: string;
|
|
559
|
+
/** `autocomplete` del input (passthrough, como ariaLabel en Button). Necesario para
|
|
560
|
+
* que el gestor de credenciales del navegador ofrezca lo guardado: un correo suelto
|
|
561
|
+
* sin `autocomplete="username"` no dispara las sugerencias (un type=password sí,
|
|
562
|
+
* por heurística propia del navegador — por eso el paso 2 funcionaba y el 1 no). */
|
|
563
|
+
autocomplete?: string;
|
|
559
564
|
/** `type` del input. La variación password enmascara y agrega el toggle de revelado. */
|
|
560
565
|
type: IusTextFieldType;
|
|
561
566
|
private readonly sizeState;
|
|
@@ -590,7 +595,7 @@ declare class TextFieldComponent implements ControlValueAccessor {
|
|
|
590
595
|
protected toggleReveal(): void;
|
|
591
596
|
protected clear(): void;
|
|
592
597
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TextFieldComponent, never>;
|
|
593
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TextFieldComponent, "ius-text-field", never, { "label": { "alias": "label"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "required": { "alias": "required"; "required": false; }; "prefixIcon": { "alias": "prefixIcon"; "required": false; }; "showClear": { "alias": "showClear"; "required": false; }; "helpText": { "alias": "helpText"; "required": false; }; "errorText": { "alias": "errorText"; "required": false; }; "showHelpText": { "alias": "showHelpText"; "required": false; }; "showIconHelp": { "alias": "showIconHelp"; "required": false; }; "iconHelpTitle": { "alias": "iconHelpTitle"; "required": false; }; "iconHelpContent": { "alias": "iconHelpContent"; "required": false; }; "error": { "alias": "error"; "required": false; }; "name": { "alias": "name"; "required": false; }; "type": { "alias": "type"; "required": false; }; "size": { "alias": "size"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "valueChange": "valueChange"; "cleared": "cleared"; }, never, never, true, never>;
|
|
598
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TextFieldComponent, "ius-text-field", never, { "label": { "alias": "label"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "required": { "alias": "required"; "required": false; }; "prefixIcon": { "alias": "prefixIcon"; "required": false; }; "showClear": { "alias": "showClear"; "required": false; }; "helpText": { "alias": "helpText"; "required": false; }; "errorText": { "alias": "errorText"; "required": false; }; "showHelpText": { "alias": "showHelpText"; "required": false; }; "showIconHelp": { "alias": "showIconHelp"; "required": false; }; "iconHelpTitle": { "alias": "iconHelpTitle"; "required": false; }; "iconHelpContent": { "alias": "iconHelpContent"; "required": false; }; "error": { "alias": "error"; "required": false; }; "name": { "alias": "name"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; "type": { "alias": "type"; "required": false; }; "size": { "alias": "size"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "valueChange": "valueChange"; "cleared": "cleared"; }, never, never, true, never>;
|
|
594
599
|
static ngAcceptInputType_required: unknown;
|
|
595
600
|
static ngAcceptInputType_showHelpText: unknown;
|
|
596
601
|
static ngAcceptInputType_showIconHelp: unknown;
|
|
@@ -2087,8 +2092,9 @@ type IusListCardSize = 'small' | 'medium' | 'large';
|
|
|
2087
2092
|
interface IusListCardField {
|
|
2088
2093
|
/** Etiqueta superior (opcional; omítela para un valor suelto como el monto). */
|
|
2089
2094
|
label?: string;
|
|
2090
|
-
/** Valor mostrado debajo de la etiqueta
|
|
2091
|
-
|
|
2095
|
+
/** Valor mostrado debajo de la etiqueta; `TemplateRef` para contenido rico
|
|
2096
|
+
* (equivalente Angular del `ReactNode` del golden — p.ej. un Tag). */
|
|
2097
|
+
value: string | TemplateRef<unknown>;
|
|
2092
2098
|
/** Ícono Material Symbols antes del valor (p.ej. correo, teléfono). */
|
|
2093
2099
|
icon?: string;
|
|
2094
2100
|
/** Resalta el valor (display, semibold, color primario) — p.ej. el monto. */
|
|
@@ -2292,6 +2298,8 @@ declare class ListCardComponent implements AfterViewInit, OnChanges, OnDestroy {
|
|
|
2292
2298
|
protected onMenuOpenChange(open: boolean): void;
|
|
2293
2299
|
protected onAction(action: IusListCardAction, event: MouseEvent): void;
|
|
2294
2300
|
protected onMarker(marker: IusListCardMarker, event: MouseEvent): void;
|
|
2301
|
+
/** Discrimina el valor rico del field (el template no puede usar instanceof). */
|
|
2302
|
+
protected fieldTpl(field: IusListCardField): TemplateRef<unknown> | null;
|
|
2295
2303
|
protected fieldWidth(field: IusListCardField): string | null;
|
|
2296
2304
|
protected onHostClick(event: MouseEvent): void;
|
|
2297
2305
|
/** Enter en keydown y Espacio en keyup activan SOLO con el foco en la fila. */
|