@litigiovirtual/ius-design-components 1.0.282 → 1.0.283
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/lib/avatar-business/avatar-business.component.mjs +1 -1
- package/esm2022/lib/avatar-v2/avatar-v2.component.mjs +1 -1
- package/esm2022/lib/button-standard-outline/button-standard-outline.component.mjs +3 -3
- package/esm2022/lib/button-standard-outline/index.mjs +1 -1
- package/esm2022/lib/card-actividad-evento/card-actividad-evento.component.mjs +3 -3
- package/esm2022/lib/card-etapa-subetapa/card-etapa-subetapa.component.mjs +3 -3
- package/esm2022/lib/card-impulso-procesal/card-impulso-procesal.component.mjs +3 -3
- package/esm2022/lib/card-vigilancia-judicial/card-vigilancia-judicial.component.mjs +3 -3
- package/esm2022/lib/create-ticket/create-ticket.component.mjs +3 -3
- package/esm2022/lib/create-ticket/index.mjs +1 -1
- package/esm2022/lib/date-hour-picker/date-hour-picker.component.mjs +1 -12
- package/esm2022/lib/option/option.component.mjs +3 -8
- package/esm2022/utils/currency-format.pipe.mjs +1 -1
- package/esm2022/utils/date-format.util.mjs +1 -1
- package/esm2022/utils/file-mime.util.mjs +1 -1
- package/esm2022/utils/file-size.util.mjs +1 -1
- package/esm2022/utils/formato-hora.pipe.mjs +1 -1
- package/esm2022/utils/public-api.mjs +1 -1
- package/fesm2022/litigiovirtual-ius-design-components-utils.mjs.map +1 -1
- package/fesm2022/litigiovirtual-ius-design-components.mjs +14 -30
- package/fesm2022/litigiovirtual-ius-design-components.mjs.map +1 -1
- package/lib/date-hour-picker/date-hour-picker.component.d.ts +0 -11
- package/lib/option/option.component.d.ts +0 -2
- package/package.json +1 -1
|
@@ -13,18 +13,7 @@ export declare class DateHourPickerComponent {
|
|
|
13
13
|
iconHelp: boolean;
|
|
14
14
|
isRequired: boolean;
|
|
15
15
|
mode: 'date-only' | 'time-only' | 'date-time';
|
|
16
|
-
/**
|
|
17
|
-
* Muestra un botón "X" a la derecha (igual que ius-input-textfield) para limpiar el
|
|
18
|
-
* valor cuando hay uno seleccionado. Opt-in: por defecto OFF para no cambiar el
|
|
19
|
-
* comportamiento de los usos existentes (muchos son campos requeridos de un solo valor).
|
|
20
|
-
*/
|
|
21
16
|
isEnableClear: boolean;
|
|
22
|
-
/**
|
|
23
|
-
* Valor controlado por el padre. Acepta Date, string (los mismos formatos que emite
|
|
24
|
-
* este picker) o null/''. Asignar null/'' LIMPIA el valor mostrado. NO dispara
|
|
25
|
-
* (dateSelected) — solo refleja lo que el padre setea. Sirve para precargar (editar)
|
|
26
|
-
* o limpiar el campo desde afuera (ej. botón "Borrar filtros").
|
|
27
|
-
*/
|
|
28
17
|
set value(v: Date | string | null | undefined);
|
|
29
18
|
dateSelected: EventEmitter<string>;
|
|
30
19
|
onBlurEvent: EventEmitter<void>;
|
|
@@ -5,8 +5,6 @@ export declare class OptionComponent {
|
|
|
5
5
|
checked: boolean;
|
|
6
6
|
leadingIcon: string;
|
|
7
7
|
optionClick: EventEmitter<any>;
|
|
8
|
-
iconHidden: boolean;
|
|
9
|
-
onMouseEnter(): void;
|
|
10
8
|
seleccionar(): void;
|
|
11
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<OptionComponent, never>;
|
|
12
10
|
static ɵcmp: i0.ɵɵComponentDeclaration<OptionComponent, "ius-option", never, { "disabled": { "alias": "disabled"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "leadingIcon": { "alias": "leadingIcon"; "required": false; }; }, { "optionClick": "optionClick"; }, never, ["*"], true, never>;
|