@mindly/ui-components 5.91.8 → 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 +1 -1
- package/dist/cjs/lib2/widgets/SpecialistCardListWidget/SpecialistCardListWidget.d.ts +1 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/lib2/widgets/SpecialistCardListWidget/SpecialistCardListWidget.d.ts +1 -0
- package/dist/index.d.ts +1 -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
|
@@ -3348,6 +3348,7 @@ type SpecialistCardListWidgetProps = {
|
|
|
3348
3348
|
onCardClick?(id: string): void;
|
|
3349
3349
|
isLoading?: boolean;
|
|
3350
3350
|
currentUser?: UserType;
|
|
3351
|
+
isBookingLoading?: boolean;
|
|
3351
3352
|
};
|
|
3352
3353
|
declare const SpecialistCardListWidget: FC<SpecialistCardListWidgetProps>;
|
|
3353
3354
|
|