@mindly/ui-components 3.55.0 → 3.55.2
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/lib/SpecialistProfile/ProfileInformation/ProfileInformation.d.ts +5 -4
- package/dist/cjs/types/lib/SpecialistProfile/SpecialistMatch/SpecialistMatch.d.ts +3 -3
- package/dist/cjs/types/lib/SpecialistProfile/SpecialistStatistic/SpecialistStatistic.d.ts +5 -3
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/lib/SpecialistProfile/ProfileInformation/ProfileInformation.d.ts +5 -4
- package/dist/esm/types/lib/SpecialistProfile/SpecialistMatch/SpecialistMatch.d.ts +3 -3
- package/dist/esm/types/lib/SpecialistProfile/SpecialistStatistic/SpecialistStatistic.d.ts +5 -3
- package/dist/index.d.ts +13 -10
- package/package.json +1 -1
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
declare type ProfileInformationProps = {
|
|
3
|
-
specialistAvatar
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
3
|
+
specialistAvatar?: string;
|
|
4
|
+
specialistFirstName?: string;
|
|
5
|
+
specialistLastName?: string;
|
|
6
|
+
specialistSpecialization?: string;
|
|
7
|
+
countryCode?: string;
|
|
7
8
|
isLoading?: boolean;
|
|
8
9
|
} & React.HTMLAttributes<HTMLDivElement>;
|
|
9
10
|
declare const _default: React.NamedExoticComponent<ProfileInformationProps>;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
declare type SpecialistMatchProps = {
|
|
3
|
-
specialistFirstName
|
|
4
|
-
percentMatch
|
|
5
|
-
documentationLink
|
|
3
|
+
specialistFirstName?: string;
|
|
4
|
+
percentMatch?: number;
|
|
5
|
+
documentationLink: string;
|
|
6
6
|
isLoading?: boolean;
|
|
7
7
|
translations: {
|
|
8
8
|
matchYou: string;
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
declare type SpecialistStatisticProps = {
|
|
3
3
|
linkToSuperSpecialistDocs: string;
|
|
4
|
-
isSuperSpecialist
|
|
5
|
-
countConsultationFor3Days
|
|
6
|
-
specialistFullName
|
|
4
|
+
isSuperSpecialist?: boolean;
|
|
5
|
+
countConsultationFor3Days?: number;
|
|
6
|
+
specialistFullName?: string;
|
|
7
7
|
isLoading?: boolean;
|
|
8
|
+
superSpecialistIcon: string;
|
|
9
|
+
trendingUpIcon: string;
|
|
8
10
|
translations: {
|
|
9
11
|
knowMore: string;
|
|
10
12
|
superSpecialistInfo: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -1186,18 +1186,19 @@ declare const LanguagesList: FC<LanguagesListProps>;
|
|
|
1186
1186
|
declare const ChangeLangModal: FC<ChangeLangModalProps>;
|
|
1187
1187
|
|
|
1188
1188
|
declare type ProfileInformationProps = {
|
|
1189
|
-
specialistAvatar
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1189
|
+
specialistAvatar?: string;
|
|
1190
|
+
specialistFirstName?: string;
|
|
1191
|
+
specialistLastName?: string;
|
|
1192
|
+
specialistSpecialization?: string;
|
|
1193
|
+
countryCode?: string;
|
|
1193
1194
|
isLoading?: boolean;
|
|
1194
1195
|
} & React.HTMLAttributes<HTMLDivElement>;
|
|
1195
1196
|
declare const _default$2: React.NamedExoticComponent<ProfileInformationProps>;
|
|
1196
1197
|
|
|
1197
1198
|
declare type SpecialistMatchProps = {
|
|
1198
|
-
specialistFirstName
|
|
1199
|
-
percentMatch
|
|
1200
|
-
documentationLink
|
|
1199
|
+
specialistFirstName?: string;
|
|
1200
|
+
percentMatch?: number;
|
|
1201
|
+
documentationLink: string;
|
|
1201
1202
|
isLoading?: boolean;
|
|
1202
1203
|
translations: {
|
|
1203
1204
|
matchYou: string;
|
|
@@ -1208,10 +1209,12 @@ declare const _default$1: React.NamedExoticComponent<SpecialistMatchProps>;
|
|
|
1208
1209
|
|
|
1209
1210
|
declare type SpecialistStatisticProps = {
|
|
1210
1211
|
linkToSuperSpecialistDocs: string;
|
|
1211
|
-
isSuperSpecialist
|
|
1212
|
-
countConsultationFor3Days
|
|
1213
|
-
specialistFullName
|
|
1212
|
+
isSuperSpecialist?: boolean;
|
|
1213
|
+
countConsultationFor3Days?: number;
|
|
1214
|
+
specialistFullName?: string;
|
|
1214
1215
|
isLoading?: boolean;
|
|
1216
|
+
superSpecialistIcon: string;
|
|
1217
|
+
trendingUpIcon: string;
|
|
1215
1218
|
translations: {
|
|
1216
1219
|
knowMore: string;
|
|
1217
1220
|
superSpecialistInfo: string;
|