Skip to content

Commit a6f18db

Browse files
Update IDateTimePickerProps.ts
add max & min date
1 parent 63713fc commit a6f18db

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/controls/dateTimePicker/IDateTimePickerProps.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,4 +107,16 @@ export interface IDateTimePickerProps {
107107
* Placeholder text for the DatePicker
108108
*/
109109
placeholder?: string;
110+
111+
/**
112+
* The minimum allowable date for the DatePicker
113+
*/
114+
115+
minDate?: Date;
116+
117+
/**
118+
* The maximum allowable date for the DatePicker
119+
*/
120+
121+
maxDate?: Date;
110122
}

0 commit comments

Comments
 (0)