@still-forest/canopy 0.13.0 → 0.14.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.
- package/dist/index.d.ts +9 -0
- package/dist/index.js +8260 -5291
- package/dist/index.js.map +1 -1
- package/package.json +4 -2
package/dist/index.d.ts
CHANGED
|
@@ -71,6 +71,15 @@ export declare const DateInput: ({ name, label, placeholder, note, className, ..
|
|
|
71
71
|
declare interface DateInputProps extends Omit<TextInputProps, "type"> {
|
|
72
72
|
}
|
|
73
73
|
|
|
74
|
+
export declare const DatePicker: ({ onDateSelection, initialValue, className, size }: DatePickerProps) => JSX.Element;
|
|
75
|
+
|
|
76
|
+
declare interface DatePickerProps {
|
|
77
|
+
onDateSelection: (date: Date) => void;
|
|
78
|
+
initialValue?: Date;
|
|
79
|
+
className?: string;
|
|
80
|
+
size?: "default" | "xs" | "sm" | "lg";
|
|
81
|
+
}
|
|
82
|
+
|
|
74
83
|
export declare const DeleteButton: ({ disabled, handleDelete, ...rest }: Props) => JSX.Element;
|
|
75
84
|
|
|
76
85
|
declare type Display = (typeof DISPLAYS)[number];
|