pjc-fields 0.0.35 → 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pjc-fields",
3
- "version": "0.0.35",
3
+ "version": "0.0.36",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^21.2.0",
6
6
  "@angular/core": "^21.2.0",
@@ -203,7 +203,7 @@ 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;
@@ -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;