@7shifts/sous-chef 3.16.0 → 3.18.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/forms/TextAreaField/TextAreaField.d.ts +1 -0
- package/dist/index.css +336 -336
- package/dist/index.js +3966 -3968
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +3966 -3968
- package/dist/index.modern.js.map +1 -1
- package/dist/overlay/Calendar/Calendar.d.ts +2 -0
- package/package.json +1 -1
|
@@ -10,6 +10,7 @@ declare type Props = {
|
|
|
10
10
|
position?: CalendarPlacement;
|
|
11
11
|
weekStart?: WeekStart;
|
|
12
12
|
selected?: Date;
|
|
13
|
+
initialMonth?: Date;
|
|
13
14
|
onSelect: (selected: Date) => void;
|
|
14
15
|
onClickOutside: () => void;
|
|
15
16
|
/** It disable some dates so the user can't click on them. Refer to this
|
|
@@ -18,6 +19,7 @@ declare type Props = {
|
|
|
18
19
|
disabledDays?: BlockedDays;
|
|
19
20
|
anchorRef: MutableRefObject<HTMLElement | null>;
|
|
20
21
|
testId?: string;
|
|
22
|
+
onMonthChange?: (month: Date) => void;
|
|
21
23
|
};
|
|
22
24
|
/**Calendar overlay component*/
|
|
23
25
|
declare const Calendar: React.FC<Props>;
|