@mindly/ui-components 3.44.0 → 3.45.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.
@@ -3,6 +3,8 @@ declare type SpecialistAboutProps = {
3
3
  text?: string;
4
4
  limit?: number;
5
5
  showLoading?: boolean;
6
+ moreLabel?: string;
7
+ hideLabel?: string;
6
8
  };
7
9
  declare const SpecialistAbout: React.FC<SpecialistAboutProps>;
8
10
  export default SpecialistAbout;
@@ -3,6 +3,8 @@ export declare type SpecialistWorkDirectionsPropsType = {
3
3
  workDirections?: string[] | [];
4
4
  limit?: number;
5
5
  showLoader?: boolean;
6
+ moreLabel?: string;
7
+ hideLabel?: string;
6
8
  };
7
9
  declare const WorkDirections: React.FC<SpecialistWorkDirectionsPropsType>;
8
10
  export default WorkDirections;
@@ -15,6 +15,19 @@ export declare type SpecialistStatisticsCardProps = {
15
15
  sessionDuration?: number;
16
16
  subscriptionStatus?: boolean;
17
17
  subscriptionBalance?: number;
18
+ translations?: {
19
+ checked?: string;
20
+ active?: string;
21
+ subscription?: string;
22
+ balance?: string;
23
+ perSessions?: string;
24
+ clients?: string[];
25
+ sessions?: string[];
26
+ practice?: string;
27
+ experience?: string;
28
+ minutes?: string;
29
+ perSession?: string;
30
+ };
18
31
  };
19
32
  declare const StatisticsScroll: React.FC<SpecialistStatisticsCardProps>;
20
33
  export default StatisticsScroll;