pjc-fields 0.0.51 → 0.0.52
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
package/types/pjc-fields.d.ts
CHANGED
|
@@ -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;
|