@mindly/ui-components 8.9.0 → 8.9.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.
|
@@ -33,6 +33,20 @@ export type ScheduleFeatureProps = {
|
|
|
33
33
|
onShowAll?: () => void;
|
|
34
34
|
onBookClick?: () => void;
|
|
35
35
|
apiRef?: React.RefObject<ScheduleFeatureApiRef>;
|
|
36
|
+
slotsSegments?: {
|
|
37
|
+
morning: {
|
|
38
|
+
start: number;
|
|
39
|
+
end: number;
|
|
40
|
+
};
|
|
41
|
+
day: {
|
|
42
|
+
start: number;
|
|
43
|
+
end: number;
|
|
44
|
+
};
|
|
45
|
+
evening: {
|
|
46
|
+
start: number;
|
|
47
|
+
end: number;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
36
50
|
};
|
|
37
51
|
export type ScheduleFeatureApiRef = {
|
|
38
52
|
getHandledSchedule: () => Schedule | undefined;
|
package/dist/index.d.ts
CHANGED
|
@@ -3821,6 +3821,20 @@ type ScheduleFeatureProps = {
|
|
|
3821
3821
|
onShowAll?: () => void;
|
|
3822
3822
|
onBookClick?: () => void;
|
|
3823
3823
|
apiRef?: React.RefObject<ScheduleFeatureApiRef>;
|
|
3824
|
+
slotsSegments?: {
|
|
3825
|
+
morning: {
|
|
3826
|
+
start: number;
|
|
3827
|
+
end: number;
|
|
3828
|
+
};
|
|
3829
|
+
day: {
|
|
3830
|
+
start: number;
|
|
3831
|
+
end: number;
|
|
3832
|
+
};
|
|
3833
|
+
evening: {
|
|
3834
|
+
start: number;
|
|
3835
|
+
end: number;
|
|
3836
|
+
};
|
|
3837
|
+
};
|
|
3824
3838
|
};
|
|
3825
3839
|
type ScheduleFeatureApiRef = {
|
|
3826
3840
|
getHandledSchedule: () => Schedule$1 | undefined;
|