@mindly/ui-components 5.91.7 → 5.91.9
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 +2 -2
- package/dist/cjs/lib2/widgets/SpecialistCardListWidget/SpecialistCardListWidget.d.ts +1 -0
- package/dist/cjs/lib2/widgets/SpecialistCardWidget/types.d.ts +1 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/lib2/widgets/SpecialistCardListWidget/SpecialistCardListWidget.d.ts +1 -0
- package/dist/esm/lib2/widgets/SpecialistCardWidget/types.d.ts +1 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
|
@@ -12,6 +12,7 @@ export type SpecialistCardListWidgetProps = {
|
|
|
12
12
|
onCardClick?(id: string): void;
|
|
13
13
|
isLoading?: boolean;
|
|
14
14
|
currentUser?: UserType;
|
|
15
|
+
isBookingLoading?: boolean;
|
|
15
16
|
};
|
|
16
17
|
declare const SpecialistCardListWidget: FC<SpecialistCardListWidgetProps>;
|
|
17
18
|
export default SpecialistCardListWidget;
|
package/dist/index.d.ts
CHANGED
|
@@ -3332,6 +3332,7 @@ type SpecialistCardWidgetProps = {
|
|
|
3332
3332
|
onToggleFavourite(): void;
|
|
3333
3333
|
onCardClick(): void;
|
|
3334
3334
|
currentUser?: UserType;
|
|
3335
|
+
isBookingLoading?: boolean;
|
|
3335
3336
|
};
|
|
3336
3337
|
|
|
3337
3338
|
declare const _default$3: React__default.NamedExoticComponent<SpecialistCardWidgetProps>;
|
|
@@ -3347,6 +3348,7 @@ type SpecialistCardListWidgetProps = {
|
|
|
3347
3348
|
onCardClick?(id: string): void;
|
|
3348
3349
|
isLoading?: boolean;
|
|
3349
3350
|
currentUser?: UserType;
|
|
3351
|
+
isBookingLoading?: boolean;
|
|
3350
3352
|
};
|
|
3351
3353
|
declare const SpecialistCardListWidget: FC<SpecialistCardListWidgetProps>;
|
|
3352
3354
|
|