rbro-tat-uds 1.5.1 → 1.5.2
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/components/Datepicker/Calendar.d.ts +2 -0
- package/dist/components/Datepicker/Datepicker.d.ts +8 -0
- package/dist/index.cjs.js +118 -117
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +1676 -1651
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
@@ -3,6 +3,8 @@ export interface CalendarProps extends HTMLAttributes<HTMLDivElement> {
|
|
3
3
|
date: Date;
|
4
4
|
onDateChanged?: (date: Date) => void;
|
5
5
|
setCalendarOpen?: (open: boolean) => void;
|
6
|
+
limitStart?: string;
|
7
|
+
limitEnd?: string;
|
6
8
|
}
|
7
9
|
declare const Calendar: React.FC<CalendarProps>;
|
8
10
|
export default Calendar;
|
@@ -9,6 +9,14 @@ export interface DatepickerProps extends HTMLAttributes<HTMLDivElement> {
|
|
9
9
|
size?: "medium" | "large";
|
10
10
|
intent?: "default" | "danger";
|
11
11
|
disabled?: boolean;
|
12
|
+
/**
|
13
|
+
* The date value should be in the format YYYY-MM-DD
|
14
|
+
*/
|
15
|
+
limitStart?: string;
|
16
|
+
/**
|
17
|
+
* The date value should be in the format YYYY-MM-DD
|
18
|
+
*/
|
19
|
+
limitEnd?: string;
|
12
20
|
}
|
13
21
|
declare const Datepicker: React.FC<DatepickerProps>;
|
14
22
|
export default Datepicker;
|