@srimandir/pitru-paksh-common 2.35.0-alpha.2 → 2.35.0
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.
|
@@ -19,9 +19,5 @@ export interface DatePickerSheetProps {
|
|
|
19
19
|
initialDate?: PickedDate;
|
|
20
20
|
minYear?: number;
|
|
21
21
|
maxYear?: number;
|
|
22
|
-
/** Day-precise lower bound. Takes precedence over `minYear` and also restricts month/day within its own year. */
|
|
23
|
-
minDate?: PickedDate;
|
|
24
|
-
/** Day-precise upper bound. Takes precedence over `maxYear` and also restricts month/day within its own year. */
|
|
25
|
-
maxDate?: PickedDate;
|
|
26
22
|
}
|
|
27
|
-
export declare function DatePickerSheet({ isOpen, onClose, avatarUrl, heading, monthLabels, confirmLabel, onConfirm, timezoneLabel, initialDate, minYear, maxYear,
|
|
23
|
+
export declare function DatePickerSheet({ isOpen, onClose, avatarUrl, heading, monthLabels, confirmLabel, onConfirm, timezoneLabel, initialDate, minYear, maxYear, }: DatePickerSheetProps): import("react").JSX.Element;
|