@cauca-911/material 21.0.3 → 21.0.4
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
|
@@ -23,6 +23,7 @@ declare class CaucaMaterialComponent {
|
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
declare class CaucaDateTimePickerComponent implements ControlValueAccessor, OnInit {
|
|
26
|
+
readonly value: _angular_core.WritableSignal<Date>;
|
|
26
27
|
readonly subscriptSizing: _angular_core.InputSignal<SubscriptSizing>;
|
|
27
28
|
readonly showTime: _angular_core.InputSignal<boolean>;
|
|
28
29
|
readonly label: _angular_core.InputSignal<string>;
|
|
@@ -38,14 +39,12 @@ declare class CaucaDateTimePickerComponent implements ControlValueAccessor, OnIn
|
|
|
38
39
|
readonly showButtonIcons: _angular_core.InputSignal<boolean>;
|
|
39
40
|
readonly selectedChange: _angular_core.OutputEmitterRef<Date>;
|
|
40
41
|
control: AbstractControl;
|
|
41
|
-
readonly stringDate: _angular_core.
|
|
42
|
+
readonly stringDate: _angular_core.Signal<string>;
|
|
42
43
|
readonly isRequired: _angular_core.Signal<boolean>;
|
|
43
44
|
private readonly injector;
|
|
44
45
|
private readonly elementRef;
|
|
45
46
|
private readonly dialog;
|
|
46
47
|
private readonly datePipe;
|
|
47
|
-
private selectedDate;
|
|
48
|
-
set value(value: Date);
|
|
49
48
|
ngOnInit(): void;
|
|
50
49
|
showDialog(): void;
|
|
51
50
|
writeValue(date: Date): void;
|