@mindly/ui-components 8.2.9 → 8.2.10
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 +1 -1
- package/dist/cjs/lib2/features/SpecialistRescheduleFeature/types.d.ts +1 -0
- package/dist/cjs/lib2/features/SpecialistScheduleFeature/types.d.ts +1 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/lib2/features/SpecialistRescheduleFeature/types.d.ts +1 -0
- package/dist/esm/lib2/features/SpecialistScheduleFeature/types.d.ts +1 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
|
@@ -2,6 +2,7 @@ import { WithTranslation } from 'react-i18next';
|
|
|
2
2
|
import { ScheduleSlot, SupportedLocales, TypographyVariantsEnum } from '../../shared';
|
|
3
3
|
import { ScheduleDate } from '../../shared';
|
|
4
4
|
export type SpecialistRescheduleFeatureProps = {
|
|
5
|
+
loadingSlot?: string;
|
|
5
6
|
className?: string;
|
|
6
7
|
t?: WithTranslation['t'];
|
|
7
8
|
locale?: SupportedLocales;
|
|
@@ -13,6 +13,7 @@ export type ScheduleFeatureProps = {
|
|
|
13
13
|
slotVariant?: TypographyVariantsEnum;
|
|
14
14
|
isBookingLoading?: boolean;
|
|
15
15
|
isTimeSeparated?: boolean;
|
|
16
|
+
loadingSlot?: string;
|
|
16
17
|
onDateChange?: (date: ScheduleDate, slots: ScheduleSlot[]) => void;
|
|
17
18
|
onSlotChange?: (slot: ScheduleSlot | null) => void;
|
|
18
19
|
onShowAll?: () => void;
|
package/dist/index.d.ts
CHANGED
|
@@ -3546,6 +3546,7 @@ type ScheduleFeatureProps = {
|
|
|
3546
3546
|
slotVariant?: TypographyVariantsEnum;
|
|
3547
3547
|
isBookingLoading?: boolean;
|
|
3548
3548
|
isTimeSeparated?: boolean;
|
|
3549
|
+
loadingSlot?: string;
|
|
3549
3550
|
onDateChange?: (date: ScheduleDate, slots: ScheduleSlot[]) => void;
|
|
3550
3551
|
onSlotChange?: (slot: ScheduleSlot | null) => void;
|
|
3551
3552
|
onShowAll?: () => void;
|
|
@@ -3556,6 +3557,7 @@ declare const SpecialistScheduleFeature: React__default.FC<ScheduleFeatureProps>
|
|
|
3556
3557
|
declare const ScheduleSkeleton: React__default.FC<ScheduleFeatureProps>;
|
|
3557
3558
|
|
|
3558
3559
|
type SpecialistRescheduleFeatureProps = {
|
|
3560
|
+
loadingSlot?: string;
|
|
3559
3561
|
className?: string;
|
|
3560
3562
|
t?: WithTranslation['t'];
|
|
3561
3563
|
locale?: SupportedLocales;
|