@mindly/ui-components 3.56.6 → 3.56.7
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/SpecialistStatistic/SpecialistStatistic.d.ts +3 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/lib/SpecialistProfile/SpecialistStatistic/SpecialistStatistic.d.ts +3 -1
- package/dist/index.d.ts +3 -1
- package/package.json +1 -1
|
@@ -3,7 +3,8 @@ declare type SpecialistStatisticProps = {
|
|
|
3
3
|
learnMoreClick: () => void;
|
|
4
4
|
isSuperSpecialist?: boolean;
|
|
5
5
|
countConsultationFor3Days?: number;
|
|
6
|
-
|
|
6
|
+
specialistFirstName: string;
|
|
7
|
+
specialistLastName: string;
|
|
7
8
|
isLoading?: boolean;
|
|
8
9
|
superSpecialistIcon: string;
|
|
9
10
|
trendingUpIcon: string;
|
|
@@ -13,6 +14,7 @@ declare type SpecialistStatisticProps = {
|
|
|
13
14
|
superSpecialist: string;
|
|
14
15
|
popularSpecialist: string;
|
|
15
16
|
sessions: string[];
|
|
17
|
+
bookedSession: string;
|
|
16
18
|
};
|
|
17
19
|
} & React.HTMLAttributes<HTMLDivElement>;
|
|
18
20
|
declare const _default: React.NamedExoticComponent<SpecialistStatisticProps>;
|
package/dist/index.d.ts
CHANGED
|
@@ -1214,7 +1214,8 @@ declare type SpecialistStatisticProps = {
|
|
|
1214
1214
|
learnMoreClick: () => void;
|
|
1215
1215
|
isSuperSpecialist?: boolean;
|
|
1216
1216
|
countConsultationFor3Days?: number;
|
|
1217
|
-
|
|
1217
|
+
specialistFirstName: string;
|
|
1218
|
+
specialistLastName: string;
|
|
1218
1219
|
isLoading?: boolean;
|
|
1219
1220
|
superSpecialistIcon: string;
|
|
1220
1221
|
trendingUpIcon: string;
|
|
@@ -1224,6 +1225,7 @@ declare type SpecialistStatisticProps = {
|
|
|
1224
1225
|
superSpecialist: string;
|
|
1225
1226
|
popularSpecialist: string;
|
|
1226
1227
|
sessions: string[];
|
|
1228
|
+
bookedSession: string;
|
|
1227
1229
|
};
|
|
1228
1230
|
} & React.HTMLAttributes<HTMLDivElement>;
|
|
1229
1231
|
declare const _default: React.NamedExoticComponent<SpecialistStatisticProps>;
|