pjc-fields 0.0.51 → 0.0.53

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.51",
3
+ "version": "0.0.53",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^21.2.0",
6
6
  "@angular/core": "^21.2.0",
@@ -288,7 +288,7 @@ declare class PjcDataFieldComponent implements ControlValueAccessor, Validator,
288
288
  ngAfterViewInit(): void;
289
289
  ngOnDestroy(): void;
290
290
  private handleDateInput;
291
- writeValue(val: Date | null): void;
291
+ writeValue(val: Date | string | null): void;
292
292
  registerOnChange(fn: (value: Date | null) => void): void;
293
293
  registerOnTouched(fn: () => void): void;
294
294
  setDisabledState(isDisabled: boolean): void;
@@ -323,7 +323,7 @@ declare class PjcDataHoraFieldComponent implements ControlValueAccessor, Validat
323
323
  ngAfterViewInit(): void;
324
324
  ngOnDestroy(): void;
325
325
  private handleDateInput;
326
- writeValue(val: Date | null): void;
326
+ writeValue(val: Date | string | null): void;
327
327
  registerOnChange(fn: (value: Date | null) => void): void;
328
328
  registerOnTouched(fn: () => void): void;
329
329
  setDisabledState(isDisabled: boolean): void;
@@ -362,8 +362,9 @@ declare class PjcEmailFieldComponent implements ControlValueAccessor, Validator,
362
362
  }
363
363
 
364
364
  interface PjcEnumItem {
365
- nome: string;
366
- descricao: string;
365
+ nome?: string;
366
+ descricao?: string;
367
+ [key: string]: any;
367
368
  }
368
369
 
369
370
  declare class PjcEnumFieldComponent implements ControlValueAccessor, OnInit {