pjc-fields 0.0.34 → 0.0.36
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/fesm2022/pjc-fields.mjs +22 -17
- package/fesm2022/pjc-fields.mjs.map +1 -1
- package/package.json +1 -1
- package/types/pjc-fields.d.ts +3 -3
package/package.json
CHANGED
package/types/pjc-fields.d.ts
CHANGED
|
@@ -203,11 +203,11 @@ declare class PjcUppercaseFieldComponent implements ControlValueAccessor {
|
|
|
203
203
|
id: _angular_core.InputSignal<string>;
|
|
204
204
|
labelVariant: _angular_core.InputSignal<"over" | "in" | "on">;
|
|
205
205
|
readonly: _angular_core.InputSignal<boolean>;
|
|
206
|
-
value: string
|
|
206
|
+
value: _angular_core.WritableSignal<string>;
|
|
207
207
|
disabled: boolean;
|
|
208
208
|
onChange: (value: string) => void;
|
|
209
209
|
onTouched: () => void;
|
|
210
|
-
writeValue(val: string | null): void;
|
|
210
|
+
writeValue(val: string | number | null): void;
|
|
211
211
|
registerOnChange(fn: (value: string) => void): void;
|
|
212
212
|
registerOnTouched(fn: () => void): void;
|
|
213
213
|
setDisabledState(isDisabled: boolean): void;
|
|
@@ -487,7 +487,7 @@ declare class PjcCidadeFieldComponent implements ControlValueAccessor {
|
|
|
487
487
|
municipios: _angular_core.WritableSignal<PjcMunicipio[]>;
|
|
488
488
|
filteredMunicipios: _angular_core.WritableSignal<PjcMunicipio[]>;
|
|
489
489
|
loading: _angular_core.WritableSignal<boolean>;
|
|
490
|
-
value: PjcMunicipio | null
|
|
490
|
+
value: _angular_core.WritableSignal<PjcMunicipio | null>;
|
|
491
491
|
disabled: boolean;
|
|
492
492
|
onChange: (value: PjcMunicipio | null) => void;
|
|
493
493
|
onTouched: () => void;
|