valtech-components 4.0.3 → 4.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/esm2022/lib/components/molecules/date-picker/date-picker.component.mjs +65 -13
- package/esm2022/lib/version.mjs +2 -2
- package/fesm2022/valtech-components.mjs +64 -12
- package/fesm2022/valtech-components.mjs.map +1 -1
- package/lib/components/molecules/date-picker/date-picker.component.d.ts +2 -0
- package/lib/version.d.ts +1 -1
- package/package.json +1 -1
|
@@ -21,6 +21,8 @@ export declare class DatePickerComponent implements OnChanges, OnDestroy {
|
|
|
21
21
|
valueChange: EventEmitter<string>;
|
|
22
22
|
private calRef?;
|
|
23
23
|
readonly sheetOpen: import("@angular/core").WritableSignal<boolean>;
|
|
24
|
+
/** true cuando el calendario ya se construyó y es visible (fade-in). */
|
|
25
|
+
readonly calReady: import("@angular/core").WritableSignal<boolean>;
|
|
24
26
|
private calendar?;
|
|
25
27
|
get triggerId(): string;
|
|
26
28
|
private get locale();
|
package/lib/version.d.ts
CHANGED