@underverse-ui/underverse 1.0.81 → 1.0.83
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/api-reference.json +1 -1
- package/dist/index.cjs +334 -104
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +5 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.js +334 -104
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -822,11 +822,15 @@ interface DatePickerProps {
|
|
|
822
822
|
}
|
|
823
823
|
declare const DatePicker: React$1.FC<DatePickerProps>;
|
|
824
824
|
interface DateRangePickerProps {
|
|
825
|
+
id?: string;
|
|
825
826
|
startDate?: Date;
|
|
826
827
|
endDate?: Date;
|
|
827
|
-
onChange: (start: Date, end: Date) => void;
|
|
828
|
+
onChange: (start: Date | undefined, end: Date | undefined) => void;
|
|
828
829
|
placeholder?: string;
|
|
829
830
|
className?: string;
|
|
831
|
+
label?: string;
|
|
832
|
+
labelClassName?: string;
|
|
833
|
+
required?: boolean;
|
|
830
834
|
/** Disable selecting past dates (before today) */
|
|
831
835
|
disablePastDates?: boolean;
|
|
832
836
|
/** Minimum selectable date (inclusive). Compared by day in local timezone. */
|
package/dist/index.d.ts
CHANGED
|
@@ -822,11 +822,15 @@ interface DatePickerProps {
|
|
|
822
822
|
}
|
|
823
823
|
declare const DatePicker: React$1.FC<DatePickerProps>;
|
|
824
824
|
interface DateRangePickerProps {
|
|
825
|
+
id?: string;
|
|
825
826
|
startDate?: Date;
|
|
826
827
|
endDate?: Date;
|
|
827
|
-
onChange: (start: Date, end: Date) => void;
|
|
828
|
+
onChange: (start: Date | undefined, end: Date | undefined) => void;
|
|
828
829
|
placeholder?: string;
|
|
829
830
|
className?: string;
|
|
831
|
+
label?: string;
|
|
832
|
+
labelClassName?: string;
|
|
833
|
+
required?: boolean;
|
|
830
834
|
/** Disable selecting past dates (before today) */
|
|
831
835
|
disablePastDates?: boolean;
|
|
832
836
|
/** Minimum selectable date (inclusive). Compared by day in local timezone. */
|