@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.
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/lib/SpecialistProfile/SpecialistAbout/SpecialistAbout.d.ts +2 -0
- package/dist/cjs/types/lib/SpecialistProfile/WorkDirections/WorkDirections.d.ts +2 -0
- package/dist/cjs/types/lib/StatisticsScroll/StatisticsScroll.d.ts +13 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/lib/SpecialistProfile/SpecialistAbout/SpecialistAbout.d.ts +2 -0
- package/dist/esm/types/lib/SpecialistProfile/WorkDirections/WorkDirections.d.ts +2 -0
- package/dist/esm/types/lib/StatisticsScroll/StatisticsScroll.d.ts +13 -0
- package/dist/index.d.ts +17 -0
- package/package.json +1 -1
|
@@ -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;
|
package/dist/index.d.ts
CHANGED
|
@@ -872,6 +872,8 @@ declare type SpecialistWorkDirectionsPropsType = {
|
|
|
872
872
|
workDirections?: string[] | [];
|
|
873
873
|
limit?: number;
|
|
874
874
|
showLoader?: boolean;
|
|
875
|
+
moreLabel?: string;
|
|
876
|
+
hideLabel?: string;
|
|
875
877
|
};
|
|
876
878
|
declare const WorkDirections: React.FC<SpecialistWorkDirectionsPropsType>;
|
|
877
879
|
|
|
@@ -888,6 +890,8 @@ declare type SpecialistAboutProps = {
|
|
|
888
890
|
text?: string;
|
|
889
891
|
limit?: number;
|
|
890
892
|
showLoading?: boolean;
|
|
893
|
+
moreLabel?: string;
|
|
894
|
+
hideLabel?: string;
|
|
891
895
|
};
|
|
892
896
|
declare const SpecialistAbout: React.FC<SpecialistAboutProps>;
|
|
893
897
|
|
|
@@ -918,6 +922,19 @@ declare type SpecialistStatisticsCardProps = {
|
|
|
918
922
|
sessionDuration?: number;
|
|
919
923
|
subscriptionStatus?: boolean;
|
|
920
924
|
subscriptionBalance?: number;
|
|
925
|
+
translations?: {
|
|
926
|
+
checked?: string;
|
|
927
|
+
active?: string;
|
|
928
|
+
subscription?: string;
|
|
929
|
+
balance?: string;
|
|
930
|
+
perSessions?: string;
|
|
931
|
+
clients?: string[];
|
|
932
|
+
sessions?: string[];
|
|
933
|
+
practice?: string;
|
|
934
|
+
experience?: string;
|
|
935
|
+
minutes?: string;
|
|
936
|
+
perSession?: string;
|
|
937
|
+
};
|
|
921
938
|
};
|
|
922
939
|
declare const StatisticsScroll: React.FC<SpecialistStatisticsCardProps>;
|
|
923
940
|
|