We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8823fb5 commit 12c4d9dCopy full SHA for 12c4d9d
src/datepicker.d.ts
@@ -80,6 +80,11 @@ export interface DatePickerProps {
80
*/
81
enabledDates?: string[];
82
83
+ /**
84
+ * Callback function to handle when the date change events.
85
+ */
86
+ onDateChange?: (event: Object) => void;
87
+
88
/**
89
* Callback function to handle day click events.
90
@@ -106,6 +111,11 @@ export interface DatePickerProps {
106
111
107
112
showPresets?: boolean;
108
113
114
115
+ * Indicates whether preset options should only be shown for range pickers.
116
117
+ showPresetsOnly?: boolean;
118
109
119
110
120
* Indicates whether the time picker is shown in the date picker.
121
0 commit comments