@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.
@@ -1,9 +1,10 @@
1
1
  import React from 'react';
2
2
  declare type ProfileInformationProps = {
3
- specialistAvatar: string;
4
- specialistFullName: string;
5
- specialistSpecialization: string;
6
- countryCode: string;
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: string;
4
- percentMatch: number;
5
- documentationLink?: string;
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: boolean;
5
- countConsultationFor3Days: number;
6
- specialistFullName: string;
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: string;
1190
- specialistFullName: string;
1191
- specialistSpecialization: string;
1192
- countryCode: string;
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: string;
1199
- percentMatch: number;
1200
- documentationLink?: string;
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: boolean;
1212
- countConsultationFor3Days: number;
1213
- specialistFullName: string;
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindly/ui-components",
3
- "version": "3.55.0",
3
+ "version": "3.55.2",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "start": "react-scripts start",