valtech-components 4.0.0 → 4.0.2
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 +17 -6
- package/esm2022/lib/version.mjs +2 -2
- package/fesm2022/valtech-components.mjs +16 -5
- package/fesm2022/valtech-components.mjs.map +1 -1
- package/lib/components/molecules/date-picker/date-picker.component.d.ts +3 -0
- package/lib/version.d.ts +1 -1
- package/package.json +1 -1
|
@@ -19,6 +19,9 @@ import * as i0 from "@angular/core";
|
|
|
19
19
|
*/
|
|
20
20
|
export declare class DatePickerComponent implements OnChanges, OnDestroy {
|
|
21
21
|
private i18n;
|
|
22
|
+
private elRef;
|
|
23
|
+
/** Cierra el panel si el click fue fuera del componente. */
|
|
24
|
+
onDocumentClick(target: HTMLElement): void;
|
|
22
25
|
constructor();
|
|
23
26
|
props: DatePickerMetadata;
|
|
24
27
|
/** Emite el valor (`YYYY-MM-DD` | null) en cada cambio. */
|
package/lib/version.d.ts
CHANGED