@mindly/ui-components 3.42.0 → 3.43.0
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/index.js.map +1 -1
- package/dist/cjs/types/index.d.ts +2 -2
- package/dist/cjs/types/lib/{SpecialistProfile/StatisticsScroll → StatisticsScroll}/StatisticsScroll.d.ts +3 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/index.d.ts +2 -2
- package/dist/esm/types/lib/{SpecialistProfile/StatisticsScroll → StatisticsScroll}/StatisticsScroll.d.ts +3 -0
- package/dist/index.d.ts +3 -0
- package/package.json +1 -1
- /package/dist/cjs/types/lib/{SpecialistProfile/StatisticsScroll → StatisticsScroll}/StatisticsScroll.style.d.ts +0 -0
- /package/dist/cjs/types/lib/{SpecialistProfile/StatisticsScroll → StatisticsScroll}/index.d.ts +0 -0
- /package/dist/cjs/types/lib/{SpecialistProfile/StatisticsScroll → StatisticsScroll}/utils.d.ts +0 -0
- /package/dist/esm/types/lib/{SpecialistProfile/StatisticsScroll → StatisticsScroll}/StatisticsScroll.style.d.ts +0 -0
- /package/dist/esm/types/lib/{SpecialistProfile/StatisticsScroll → StatisticsScroll}/index.d.ts +0 -0
- /package/dist/esm/types/lib/{SpecialistProfile/StatisticsScroll → StatisticsScroll}/utils.d.ts +0 -0
|
@@ -124,8 +124,8 @@ export { default as SpecialistAbout } from './lib/SpecialistProfile/SpecialistAb
|
|
|
124
124
|
export * from './lib/SpecialistProfile/SpecialistAbout';
|
|
125
125
|
export { default as EducationCard } from './lib/SpecialistProfile/EducationCard';
|
|
126
126
|
export * from './lib/SpecialistProfile/EducationCard';
|
|
127
|
-
export { default as StatisticsScroll } from './lib/
|
|
128
|
-
export * from './lib/
|
|
127
|
+
export { default as StatisticsScroll } from './lib/StatisticsScroll';
|
|
128
|
+
export * from './lib/StatisticsScroll';
|
|
129
129
|
export { decOfNum } from './lib/Consultations/utils';
|
|
130
130
|
export { default as BookingScheduleTime } from './lib/Booking/BookingScheduleTime';
|
|
131
131
|
export * from './lib/Booking/BookingScheduleTime';
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
export declare type SpecialistStatisticsCardProps = {
|
|
3
|
+
trust?: boolean;
|
|
3
4
|
activeClients?: number;
|
|
4
5
|
sessionsCount?: number;
|
|
5
6
|
showLoader?: boolean;
|
|
@@ -12,6 +13,8 @@ export declare type SpecialistStatisticsCardProps = {
|
|
|
12
13
|
hoursOfPractice?: number;
|
|
13
14
|
yearOfExperience?: number;
|
|
14
15
|
sessionDuration?: number;
|
|
16
|
+
subscriptionStatus?: boolean;
|
|
17
|
+
subscriptionBalance?: number;
|
|
15
18
|
};
|
|
16
19
|
declare const StatisticsScroll: React.FC<SpecialistStatisticsCardProps>;
|
|
17
20
|
export default StatisticsScroll;
|