@mindly/ui-components 8.8.9 → 8.8.11
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/cjs/index.js +4 -4
- package/dist/cjs/lib2/features/ScheduleFeature/MinimumLimitSlotsBanner.d.ts +2 -0
- package/dist/cjs/lib2/features/ScheduleFeature/types.d.ts +2 -0
- package/dist/esm/index.js +7 -7
- package/dist/esm/lib2/features/ScheduleFeature/MinimumLimitSlotsBanner.d.ts +2 -0
- package/dist/esm/lib2/features/ScheduleFeature/types.d.ts +2 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
|
@@ -19,6 +19,8 @@ export type ScheduleProps = {
|
|
|
19
19
|
sections: DaySection[];
|
|
20
20
|
isLoading?: boolean;
|
|
21
21
|
isButtonLoading?: boolean;
|
|
22
|
+
isButtonDisabled?: boolean;
|
|
23
|
+
showMinimunLimitSlotsBanner?: boolean;
|
|
22
24
|
buttonText?: string;
|
|
23
25
|
skeletonCount?: number;
|
|
24
26
|
onDayChange?: (dayIndex: number) => void;
|
package/dist/index.d.ts
CHANGED
|
@@ -4081,6 +4081,8 @@ type ScheduleProps = {
|
|
|
4081
4081
|
sections: DaySection[];
|
|
4082
4082
|
isLoading?: boolean;
|
|
4083
4083
|
isButtonLoading?: boolean;
|
|
4084
|
+
isButtonDisabled?: boolean;
|
|
4085
|
+
showMinimunLimitSlotsBanner?: boolean;
|
|
4084
4086
|
buttonText?: string;
|
|
4085
4087
|
skeletonCount?: number;
|
|
4086
4088
|
onDayChange?: (dayIndex: number) => void;
|