@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.
@@ -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/SpecialistProfile/StatisticsScroll';
128
- export * from './lib/SpecialistProfile/StatisticsScroll';
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;