@mindly/ui-components 5.50.0 → 5.51.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 +5 -5
- package/dist/cjs/lib2/features/ReviewCardFeature/ReviewCardFeature.d.ts +12 -0
- package/dist/cjs/lib2/features/ReviewCardFeature/index.d.ts +1 -0
- package/dist/cjs/lib2/features/ReviewCardFeature/styles.d.ts +104 -0
- package/dist/cjs/lib2/features/index.d.ts +1 -0
- package/dist/cjs/lib2/shared/ui/Avatar_v2/Avatar_v2.d.ts +1 -1
- package/dist/cjs/lib2/shared/ui/Typography/types.d.ts +2 -1
- package/dist/esm/index.js +5 -5
- package/dist/esm/lib2/features/ReviewCardFeature/ReviewCardFeature.d.ts +12 -0
- package/dist/esm/lib2/features/ReviewCardFeature/index.d.ts +1 -0
- package/dist/esm/lib2/features/ReviewCardFeature/styles.d.ts +104 -0
- package/dist/esm/lib2/features/index.d.ts +1 -0
- package/dist/esm/lib2/shared/ui/Avatar_v2/Avatar_v2.d.ts +1 -1
- package/dist/esm/lib2/shared/ui/Typography/types.d.ts +2 -1
- package/dist/index.d.ts +76 -65
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -224,7 +224,7 @@ type LetterAvatarProps = {
|
|
|
224
224
|
fontSize?: number;
|
|
225
225
|
onClick?: () => void;
|
|
226
226
|
};
|
|
227
|
-
declare const _default$
|
|
227
|
+
declare const _default$11: React__default.NamedExoticComponent<LetterAvatarProps>;
|
|
228
228
|
|
|
229
229
|
type ImageWithFallbackProps = JSX.IntrinsicElements['img'] & {
|
|
230
230
|
onErrorContent: React__default.ReactElement;
|
|
@@ -236,7 +236,7 @@ type PersonDateTimeCardProps = {
|
|
|
236
236
|
name: string;
|
|
237
237
|
dateTime: Date;
|
|
238
238
|
};
|
|
239
|
-
declare const _default
|
|
239
|
+
declare const _default$10: React__default.NamedExoticComponent<PersonDateTimeCardProps>;
|
|
240
240
|
|
|
241
241
|
type PsychologistProfileType = {
|
|
242
242
|
id: string;
|
|
@@ -402,7 +402,7 @@ type SelectImpressionEmojiProps = {
|
|
|
402
402
|
onChange?: (val: ImpressionEmojiEnum) => void;
|
|
403
403
|
};
|
|
404
404
|
|
|
405
|
-
declare const _default
|
|
405
|
+
declare const _default$$: React__default.NamedExoticComponent<SelectImpressionEmojiProps>;
|
|
406
406
|
|
|
407
407
|
interface FooterForBookingProps {
|
|
408
408
|
eventHandler: (props?: React__default.SyntheticEvent) => void;
|
|
@@ -434,7 +434,7 @@ type MediaPlayerProps<TCameraTrack extends Playable | undefined, TAudioTrack ext
|
|
|
434
434
|
showControls: boolean;
|
|
435
435
|
isScreenSharing?: boolean;
|
|
436
436
|
} & HTMLAttributes<HTMLDivElement>;
|
|
437
|
-
declare const _default$
|
|
437
|
+
declare const _default$_: <TCameraTrack extends Playable | undefined, TAudioTrack extends Playable | undefined>({ fullwidth, cameraTrack, audioTrack, isVideoTrackMuted, isAudioTrackMuted, networkQuality, fallbackAvatar, fallbackAvatarDimensions, fallbackName, showControls, isScreenSharing, ...props }: MediaPlayerProps<TCameraTrack, TAudioTrack>) => JSX.Element;
|
|
438
438
|
|
|
439
439
|
type RoundButtonPropsType = {
|
|
440
440
|
disabled?: boolean;
|
|
@@ -462,7 +462,7 @@ type ChatListItemProps = {
|
|
|
462
462
|
isDisabled?: boolean;
|
|
463
463
|
t?: WithTranslation['t'];
|
|
464
464
|
};
|
|
465
|
-
declare const _default$
|
|
465
|
+
declare const _default$Z: React__default.NamedExoticComponent<ChatListItemProps>;
|
|
466
466
|
|
|
467
467
|
type ChatMessageProps = {
|
|
468
468
|
message: string | File;
|
|
@@ -480,11 +480,11 @@ type ChatMessageProps = {
|
|
|
480
480
|
};
|
|
481
481
|
locale?: string;
|
|
482
482
|
};
|
|
483
|
-
declare const _default$
|
|
483
|
+
declare const _default$Y: React__default.NamedExoticComponent<ChatMessageProps>;
|
|
484
484
|
|
|
485
485
|
declare const ChatMessageSkeleton: () => JSX.Element;
|
|
486
486
|
|
|
487
|
-
declare const _default$
|
|
487
|
+
declare const _default$X: React__default.MemoExoticComponent<() => JSX.Element>;
|
|
488
488
|
|
|
489
489
|
type EmptyChatList = {
|
|
490
490
|
title?: string;
|
|
@@ -494,7 +494,7 @@ type EmptyChatList = {
|
|
|
494
494
|
onClick?: () => void;
|
|
495
495
|
};
|
|
496
496
|
declare const EmptyChatList: FC<EmptyChatList>;
|
|
497
|
-
declare const _default$
|
|
497
|
+
declare const _default$W: React__default.NamedExoticComponent<EmptyChatList>;
|
|
498
498
|
|
|
499
499
|
type EmptyChatMessagesProps = {
|
|
500
500
|
title?: string;
|
|
@@ -519,7 +519,7 @@ type TextareaProps = {
|
|
|
519
519
|
onFileSelect?: (file: File | null, type: 'file' | 'image' | 'video', fileInfo: FileInfoType) => void;
|
|
520
520
|
t?: WithTranslation['t'];
|
|
521
521
|
};
|
|
522
|
-
declare const _default$
|
|
522
|
+
declare const _default$V: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TextareaProps & React__default.RefAttributes<HTMLIonFooterElement>>>;
|
|
523
523
|
|
|
524
524
|
type LouseConnectProps = {
|
|
525
525
|
onClick?: () => void;
|
|
@@ -598,7 +598,7 @@ type SpecialistEducationCardProps$1 = {
|
|
|
598
598
|
yearEnd?: number | null;
|
|
599
599
|
showLoader?: boolean;
|
|
600
600
|
};
|
|
601
|
-
declare const _default$
|
|
601
|
+
declare const _default$U: React__default.NamedExoticComponent<SpecialistEducationCardProps$1>;
|
|
602
602
|
|
|
603
603
|
type SpecialistProfileViewCardProps$1 = {
|
|
604
604
|
avatarLink?: string | null;
|
|
@@ -611,7 +611,7 @@ type SpecialistProfileViewCardProps$1 = {
|
|
|
611
611
|
videoLinkUrl?: string | null;
|
|
612
612
|
showLoader?: boolean;
|
|
613
613
|
} & React__default.DetailedHTMLProps<React__default.HTMLAttributes<HTMLDivElement>, HTMLDivElement>;
|
|
614
|
-
declare const _default$
|
|
614
|
+
declare const _default$T: React__default.NamedExoticComponent<SpecialistProfileViewCardProps$1>;
|
|
615
615
|
|
|
616
616
|
type SpecialistStatisticsCardProps$1 = {
|
|
617
617
|
activeClients?: number;
|
|
@@ -647,7 +647,7 @@ type VideoPlayerProps = {
|
|
|
647
647
|
closeModalHandler?: () => void;
|
|
648
648
|
onErrorContent: React__default.ReactElement;
|
|
649
649
|
} & JSX$1.IonModal;
|
|
650
|
-
declare const _default$
|
|
650
|
+
declare const _default$S: React__default.NamedExoticComponent<VideoPlayerProps>;
|
|
651
651
|
|
|
652
652
|
type NotSupportModalProps = {
|
|
653
653
|
closeModal?: () => void;
|
|
@@ -683,7 +683,7 @@ type VideoCallInfoProps = {
|
|
|
683
683
|
abbreviatedSeconds: string;
|
|
684
684
|
};
|
|
685
685
|
};
|
|
686
|
-
declare const _default$
|
|
686
|
+
declare const _default$R: React__default.NamedExoticComponent<VideoCallInfoProps>;
|
|
687
687
|
|
|
688
688
|
declare enum ConsultationCardType {
|
|
689
689
|
FEATURE = "feature",
|
|
@@ -718,14 +718,14 @@ type ConsultationCardProps = {
|
|
|
718
718
|
};
|
|
719
719
|
};
|
|
720
720
|
|
|
721
|
-
declare const _default$
|
|
721
|
+
declare const _default$Q: React__default.NamedExoticComponent<ConsultationCardProps>;
|
|
722
722
|
|
|
723
723
|
type SignUpSessionButtonProps = {
|
|
724
724
|
label: string;
|
|
725
725
|
isLoading?: boolean;
|
|
726
726
|
onClick?: () => void;
|
|
727
727
|
};
|
|
728
|
-
declare const _default$
|
|
728
|
+
declare const _default$P: React__default.NamedExoticComponent<SignUpSessionButtonProps>;
|
|
729
729
|
|
|
730
730
|
type EmptyConsultationsProps = {
|
|
731
731
|
title: string;
|
|
@@ -733,7 +733,7 @@ type EmptyConsultationsProps = {
|
|
|
733
733
|
buttonLabel?: string;
|
|
734
734
|
onClick?: () => void;
|
|
735
735
|
};
|
|
736
|
-
declare const _default$
|
|
736
|
+
declare const _default$O: React__default.NamedExoticComponent<EmptyConsultationsProps>;
|
|
737
737
|
|
|
738
738
|
type ConsultationModalProps = {
|
|
739
739
|
isOpen: boolean;
|
|
@@ -768,7 +768,7 @@ type ConsultationModalProps = {
|
|
|
768
768
|
started?: string;
|
|
769
769
|
};
|
|
770
770
|
};
|
|
771
|
-
declare const _default$
|
|
771
|
+
declare const _default$N: React__default.NamedExoticComponent<ConsultationModalProps>;
|
|
772
772
|
|
|
773
773
|
type SpecialistData = {
|
|
774
774
|
id: string;
|
|
@@ -785,7 +785,7 @@ type SignUpSessionModalProps = {
|
|
|
785
785
|
title: string;
|
|
786
786
|
cancelBtnLabel: string;
|
|
787
787
|
};
|
|
788
|
-
declare const _default$
|
|
788
|
+
declare const _default$M: React__default.NamedExoticComponent<SignUpSessionModalProps>;
|
|
789
789
|
|
|
790
790
|
type ConsultationSpecialistCardProps = {
|
|
791
791
|
id: string;
|
|
@@ -796,7 +796,7 @@ type ConsultationSpecialistCardProps = {
|
|
|
796
796
|
onSignUp?: (id: string) => void;
|
|
797
797
|
signInBtnLabel: string;
|
|
798
798
|
};
|
|
799
|
-
declare const _default$
|
|
799
|
+
declare const _default$L: React__default.NamedExoticComponent<ConsultationSpecialistCardProps>;
|
|
800
800
|
|
|
801
801
|
type UserInfoModalProps = {
|
|
802
802
|
isOpen: boolean;
|
|
@@ -861,7 +861,7 @@ type ReScheduleProps = {
|
|
|
861
861
|
btnLabel: string;
|
|
862
862
|
};
|
|
863
863
|
};
|
|
864
|
-
declare const _default$
|
|
864
|
+
declare const _default$K: React__default.NamedExoticComponent<ReScheduleProps>;
|
|
865
865
|
|
|
866
866
|
type ReScheduleSuccessProps = {
|
|
867
867
|
name: string;
|
|
@@ -899,7 +899,7 @@ type DaySliderProps = JSX$1.IonSlides & HTMLAttributes<HTMLIonSlidesElement> & R
|
|
|
899
899
|
tomorrow?: string;
|
|
900
900
|
};
|
|
901
901
|
};
|
|
902
|
-
declare const _default$
|
|
902
|
+
declare const _default$J: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<DaySliderProps, "ref"> & React__default.RefAttributes<HTMLIonSlidesElement>>>;
|
|
903
903
|
|
|
904
904
|
type SpecialistWorkDirectionsPropsType = {
|
|
905
905
|
workDirections?: string[] | [];
|
|
@@ -908,7 +908,7 @@ type SpecialistWorkDirectionsPropsType = {
|
|
|
908
908
|
moreLabel?: string;
|
|
909
909
|
hideLabel?: string;
|
|
910
910
|
};
|
|
911
|
-
declare const _default$
|
|
911
|
+
declare const _default$I: React__default.NamedExoticComponent<SpecialistWorkDirectionsPropsType>;
|
|
912
912
|
|
|
913
913
|
type SpecialistProfileViewCardProps = {
|
|
914
914
|
videoLink?: string;
|
|
@@ -918,7 +918,7 @@ type SpecialistProfileViewCardProps = {
|
|
|
918
918
|
isLoading?: boolean;
|
|
919
919
|
videoDurationSeconds?: number;
|
|
920
920
|
};
|
|
921
|
-
declare const _default$
|
|
921
|
+
declare const _default$H: React__default.NamedExoticComponent<SpecialistProfileViewCardProps>;
|
|
922
922
|
|
|
923
923
|
type SpecialistAboutProps = {
|
|
924
924
|
text?: string;
|
|
@@ -927,7 +927,7 @@ type SpecialistAboutProps = {
|
|
|
927
927
|
moreLabel?: string;
|
|
928
928
|
hideLabel?: string;
|
|
929
929
|
};
|
|
930
|
-
declare const _default$
|
|
930
|
+
declare const _default$G: React__default.NamedExoticComponent<SpecialistAboutProps>;
|
|
931
931
|
|
|
932
932
|
type SpecialistEducationCardProps = {
|
|
933
933
|
institutionName?: string;
|
|
@@ -938,7 +938,7 @@ type SpecialistEducationCardProps = {
|
|
|
938
938
|
yearEnd?: number | null;
|
|
939
939
|
showLoader?: boolean;
|
|
940
940
|
};
|
|
941
|
-
declare const _default$
|
|
941
|
+
declare const _default$F: React__default.NamedExoticComponent<SpecialistEducationCardProps>;
|
|
942
942
|
|
|
943
943
|
type SpecialistStatisticsCardProps = {
|
|
944
944
|
trust?: boolean;
|
|
@@ -984,7 +984,7 @@ type BookingScheduleTimeProps = {
|
|
|
984
984
|
onClick?: (index: number, item: string) => void;
|
|
985
985
|
isLoading?: boolean;
|
|
986
986
|
};
|
|
987
|
-
declare const _default$
|
|
987
|
+
declare const _default$E: React__default.NamedExoticComponent<BookingScheduleTimeProps>;
|
|
988
988
|
|
|
989
989
|
type BookingSpecialistInfoProps = {
|
|
990
990
|
name: string;
|
|
@@ -993,7 +993,7 @@ type BookingSpecialistInfoProps = {
|
|
|
993
993
|
avatar?: string;
|
|
994
994
|
isLoading?: boolean;
|
|
995
995
|
};
|
|
996
|
-
declare const _default$
|
|
996
|
+
declare const _default$D: React__default.NamedExoticComponent<BookingSpecialistInfoProps>;
|
|
997
997
|
|
|
998
998
|
type SpecialistCardProps = {
|
|
999
999
|
fullName?: string;
|
|
@@ -1042,7 +1042,7 @@ type SpecialistCardProps = {
|
|
|
1042
1042
|
};
|
|
1043
1043
|
declare const SpecialistCard$1: React__default.FC<SpecialistCardProps>;
|
|
1044
1044
|
|
|
1045
|
-
declare const _default$
|
|
1045
|
+
declare const _default$C: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
|
|
1046
1046
|
isError?: boolean | undefined;
|
|
1047
1047
|
errorStyle?: "filled" | "unfilled" | undefined;
|
|
1048
1048
|
type?: "number" | "text" | "email" | undefined;
|
|
@@ -1066,11 +1066,11 @@ declare const PasswordInput: React__default.ForwardRefExoticComponent<{
|
|
|
1066
1066
|
error?: string | null | undefined;
|
|
1067
1067
|
} & Omit<React__default.InputHTMLAttributes<HTMLInputElement>, "type"> & React__default.RefAttributes<HTMLInputElement>>;
|
|
1068
1068
|
|
|
1069
|
-
declare const _default$
|
|
1069
|
+
declare const _default$B: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
|
|
1070
1070
|
isError?: boolean | undefined;
|
|
1071
1071
|
} & React__default.TextareaHTMLAttributes<HTMLTextAreaElement> & React__default.RefAttributes<HTMLTextAreaElement>>>;
|
|
1072
1072
|
|
|
1073
|
-
declare const _default$
|
|
1073
|
+
declare const _default$A: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
|
|
1074
1074
|
options: {
|
|
1075
1075
|
id: string | number;
|
|
1076
1076
|
label: string | number;
|
|
@@ -1102,7 +1102,7 @@ type CustomCheckboxProps = {
|
|
|
1102
1102
|
isCheckbox?: boolean;
|
|
1103
1103
|
onChange?: (e: ChangeEvent<HTMLInputElement>) => void;
|
|
1104
1104
|
};
|
|
1105
|
-
declare const _default$
|
|
1105
|
+
declare const _default$z: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<CustomCheckboxProps & React__default.RefAttributes<HTMLInputElement>>>;
|
|
1106
1106
|
|
|
1107
1107
|
type CheckboxListItem = {
|
|
1108
1108
|
id: ReactText;
|
|
@@ -1130,7 +1130,7 @@ type CheckboxListProps = {
|
|
|
1130
1130
|
from: string;
|
|
1131
1131
|
};
|
|
1132
1132
|
};
|
|
1133
|
-
declare const _default$
|
|
1133
|
+
declare const _default$y: React__default.NamedExoticComponent<CheckboxListProps>;
|
|
1134
1134
|
|
|
1135
1135
|
type BookingHeaderProps = {
|
|
1136
1136
|
title?: string;
|
|
@@ -1144,9 +1144,9 @@ type ProgressBarProps = {
|
|
|
1144
1144
|
progress: number;
|
|
1145
1145
|
loaderTitle?: string;
|
|
1146
1146
|
};
|
|
1147
|
-
declare const _default$
|
|
1147
|
+
declare const _default$x: React__default.NamedExoticComponent<ProgressBarProps>;
|
|
1148
1148
|
|
|
1149
|
-
declare const _default$
|
|
1149
|
+
declare const _default$w: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
|
|
1150
1150
|
title: string;
|
|
1151
1151
|
subTitle?: string | undefined;
|
|
1152
1152
|
isError?: boolean | undefined;
|
|
@@ -1178,7 +1178,7 @@ type FlagProps$1 = {
|
|
|
1178
1178
|
dimensions?: number;
|
|
1179
1179
|
className?: string;
|
|
1180
1180
|
};
|
|
1181
|
-
declare const _default$
|
|
1181
|
+
declare const _default$v: React__default.NamedExoticComponent<FlagProps$1>;
|
|
1182
1182
|
|
|
1183
1183
|
type SpecialistLangsProps = {
|
|
1184
1184
|
showLoader?: boolean;
|
|
@@ -1218,7 +1218,7 @@ type ProfileInformationProps = {
|
|
|
1218
1218
|
reviews: string[];
|
|
1219
1219
|
};
|
|
1220
1220
|
} & React__default.HTMLAttributes<HTMLDivElement>;
|
|
1221
|
-
declare const _default$
|
|
1221
|
+
declare const _default$u: React__default.NamedExoticComponent<ProfileInformationProps>;
|
|
1222
1222
|
|
|
1223
1223
|
type SpecialistMatchProps = {
|
|
1224
1224
|
specialistFirstName?: string;
|
|
@@ -1230,7 +1230,7 @@ type SpecialistMatchProps = {
|
|
|
1230
1230
|
howWeMatchThis: string;
|
|
1231
1231
|
};
|
|
1232
1232
|
} & React__default.HTMLAttributes<HTMLDivElement>;
|
|
1233
|
-
declare const _default$
|
|
1233
|
+
declare const _default$t: React__default.NamedExoticComponent<SpecialistMatchProps>;
|
|
1234
1234
|
|
|
1235
1235
|
type SpecialistStatisticProps = {
|
|
1236
1236
|
learnMoreClick: () => void;
|
|
@@ -1250,7 +1250,7 @@ type SpecialistStatisticProps = {
|
|
|
1250
1250
|
bookedSession: string;
|
|
1251
1251
|
};
|
|
1252
1252
|
} & React__default.HTMLAttributes<HTMLDivElement>;
|
|
1253
|
-
declare const _default$
|
|
1253
|
+
declare const _default$s: React__default.NamedExoticComponent<SpecialistStatisticProps>;
|
|
1254
1254
|
|
|
1255
1255
|
type RatingWithLabelProps = {
|
|
1256
1256
|
countOfReviews?: number;
|
|
@@ -1425,7 +1425,8 @@ declare enum TypographyVariantsEnum {
|
|
|
1425
1425
|
Text12Regular = "Text/12 Regular",
|
|
1426
1426
|
Tabbar10Medium = "Tabbar/10 Medium",
|
|
1427
1427
|
Text8Regular = "Text/8 Regular",
|
|
1428
|
-
Text7Regular = "Text/7 Regular"
|
|
1428
|
+
Text7Regular = "Text/7 Regular",
|
|
1429
|
+
Text6Regular = "Text/6 Regular"
|
|
1429
1430
|
}
|
|
1430
1431
|
type TypographyAlignType = 'left' | 'center' | 'right';
|
|
1431
1432
|
type TypographyOpacityType = 100 | 65 | 50 | 45 | 35 | 30 | 15 | 10 | 8 | 6;
|
|
@@ -1439,7 +1440,7 @@ type TypographyProps = {
|
|
|
1439
1440
|
children: React__default.ReactNode;
|
|
1440
1441
|
onClick?: (args: any) => typeof args;
|
|
1441
1442
|
};
|
|
1442
|
-
declare const _default$
|
|
1443
|
+
declare const _default$r: React__default.NamedExoticComponent<TypographyProps>;
|
|
1443
1444
|
|
|
1444
1445
|
type AppFooterProps = {
|
|
1445
1446
|
children?: React__default.ReactNode;
|
|
@@ -1447,26 +1448,26 @@ type AppFooterProps = {
|
|
|
1447
1448
|
bottomSaveArea?: boolean;
|
|
1448
1449
|
borderTop?: boolean;
|
|
1449
1450
|
};
|
|
1450
|
-
declare const _default$
|
|
1451
|
+
declare const _default$q: React__default.NamedExoticComponent<AppFooterProps>;
|
|
1451
1452
|
|
|
1452
1453
|
type AvatarRoundVariants = 'circle' | 'drop';
|
|
1453
1454
|
|
|
1454
1455
|
type AvatarProps = {
|
|
1455
|
-
variant?: 'small' | 'medium';
|
|
1456
|
+
variant?: 'small' | 'medium' | 'smaller';
|
|
1456
1457
|
round?: AvatarRoundVariants;
|
|
1457
1458
|
className?: string;
|
|
1458
1459
|
src?: string;
|
|
1459
1460
|
alt?: string;
|
|
1460
1461
|
showSkeleton?: boolean;
|
|
1461
1462
|
};
|
|
1462
|
-
declare const _default$
|
|
1463
|
+
declare const _default$p: React__default.NamedExoticComponent<AvatarProps>;
|
|
1463
1464
|
|
|
1464
1465
|
type SkeletonProps = {
|
|
1465
1466
|
animated?: boolean;
|
|
1466
1467
|
className?: string;
|
|
1467
1468
|
style?: React__default.CSSProperties;
|
|
1468
1469
|
};
|
|
1469
|
-
declare const _default$
|
|
1470
|
+
declare const _default$o: React__default.NamedExoticComponent<SkeletonProps>;
|
|
1470
1471
|
|
|
1471
1472
|
type ButtonProps = {
|
|
1472
1473
|
fill?: 'outline' | 'clear';
|
|
@@ -1501,7 +1502,7 @@ type FlagProps = {
|
|
|
1501
1502
|
name: string;
|
|
1502
1503
|
className?: string;
|
|
1503
1504
|
};
|
|
1504
|
-
declare const _default$
|
|
1505
|
+
declare const _default$n: React__default.NamedExoticComponent<FlagProps>;
|
|
1505
1506
|
|
|
1506
1507
|
type PictureProps = {
|
|
1507
1508
|
width: number;
|
|
@@ -1516,7 +1517,7 @@ type PictureProps = {
|
|
|
1516
1517
|
alt?: string;
|
|
1517
1518
|
className?: string;
|
|
1518
1519
|
};
|
|
1519
|
-
declare const _default$
|
|
1520
|
+
declare const _default$m: React__default.NamedExoticComponent<PictureProps>;
|
|
1520
1521
|
|
|
1521
1522
|
type BadgeType = 'default' | 'accent';
|
|
1522
1523
|
type BadgeVariants = 'attention' | 'neutral' | 'success' | 'warning' | 'brand' | 'info';
|
|
@@ -1526,7 +1527,7 @@ type BadgeProps = React.ComponentPropsWithoutRef<'span'> & {
|
|
|
1526
1527
|
type?: BadgeType;
|
|
1527
1528
|
};
|
|
1528
1529
|
|
|
1529
|
-
declare const _default$
|
|
1530
|
+
declare const _default$l: React.NamedExoticComponent<BadgeProps>;
|
|
1530
1531
|
|
|
1531
1532
|
type ItemCardVariants = 'neutral' | 'transparent';
|
|
1532
1533
|
type ItemCardProps = React.ComponentPropsWithoutRef<'div'> & {
|
|
@@ -1534,7 +1535,7 @@ type ItemCardProps = React.ComponentPropsWithoutRef<'div'> & {
|
|
|
1534
1535
|
size?: 'M' | 'M4';
|
|
1535
1536
|
};
|
|
1536
1537
|
|
|
1537
|
-
declare const _default$
|
|
1538
|
+
declare const _default$k: React.NamedExoticComponent<ItemCardProps>;
|
|
1538
1539
|
|
|
1539
1540
|
type AppHeaderProps = {
|
|
1540
1541
|
fullwidth?: boolean;
|
|
@@ -1803,7 +1804,7 @@ interface TextareaV2Props extends Omit<JSX$1.IonTextarea, 'color' | 'enterkeyhin
|
|
|
1803
1804
|
className?: string;
|
|
1804
1805
|
}
|
|
1805
1806
|
|
|
1806
|
-
declare const _default$
|
|
1807
|
+
declare const _default$j: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TextareaV2Props & React__default.RefAttributes<HTMLIonTextareaElement>>>;
|
|
1807
1808
|
|
|
1808
1809
|
type RatingProps = {
|
|
1809
1810
|
initialRating?: number;
|
|
@@ -1815,7 +1816,7 @@ type RatingProps = {
|
|
|
1815
1816
|
readonly?: boolean;
|
|
1816
1817
|
};
|
|
1817
1818
|
|
|
1818
|
-
declare const _default$
|
|
1819
|
+
declare const _default$i: React__default.NamedExoticComponent<RatingProps>;
|
|
1819
1820
|
|
|
1820
1821
|
declare const RatingCircleWrapper: FC<CircleRatingComponentProps & {
|
|
1821
1822
|
t: WithTranslation | any;
|
|
@@ -1829,7 +1830,7 @@ type IconButtonProps = {
|
|
|
1829
1830
|
fill?: 'clear' | 'filled';
|
|
1830
1831
|
type?: 'button' | 'submit' | 'reset';
|
|
1831
1832
|
};
|
|
1832
|
-
declare const _default$
|
|
1833
|
+
declare const _default$h: React__default.NamedExoticComponent<IconButtonProps>;
|
|
1833
1834
|
|
|
1834
1835
|
type ToastProviderProps = ToastStateProps;
|
|
1835
1836
|
type MindlyToastProps = {
|
|
@@ -1869,17 +1870,17 @@ type ProgressBar_v2Props = {
|
|
|
1869
1870
|
className?: string;
|
|
1870
1871
|
reversed?: boolean;
|
|
1871
1872
|
};
|
|
1872
|
-
declare const _default$
|
|
1873
|
+
declare const _default$g: React__default.NamedExoticComponent<ProgressBar_v2Props>;
|
|
1873
1874
|
|
|
1874
1875
|
type LoadingProps = {
|
|
1875
1876
|
isOpen: boolean;
|
|
1876
1877
|
};
|
|
1877
|
-
declare const _default$
|
|
1878
|
+
declare const _default$f: React__default.NamedExoticComponent<LoadingProps>;
|
|
1878
1879
|
|
|
1879
1880
|
type ListItemsProps = React.HTMLAttributes<HTMLIonListElement> & {
|
|
1880
1881
|
withBorders?: boolean;
|
|
1881
1882
|
};
|
|
1882
|
-
declare const _default$
|
|
1883
|
+
declare const _default$e: React.NamedExoticComponent<ListItemsProps>;
|
|
1883
1884
|
|
|
1884
1885
|
type ItemProps = React.HTMLAttributes<HTMLIonItemElement> & {
|
|
1885
1886
|
leftContent?: React.ReactNode;
|
|
@@ -1887,14 +1888,14 @@ type ItemProps = React.HTMLAttributes<HTMLIonItemElement> & {
|
|
|
1887
1888
|
withBorders?: boolean;
|
|
1888
1889
|
isDisabled?: boolean;
|
|
1889
1890
|
};
|
|
1890
|
-
declare const _default$
|
|
1891
|
+
declare const _default$d: React.NamedExoticComponent<ItemProps>;
|
|
1891
1892
|
|
|
1892
1893
|
type VideoProps = {
|
|
1893
1894
|
src: string;
|
|
1894
1895
|
isMuted: boolean;
|
|
1895
1896
|
onMuteToggle: () => void;
|
|
1896
1897
|
};
|
|
1897
|
-
declare const _default$
|
|
1898
|
+
declare const _default$c: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<VideoProps & React__default.RefAttributes<HTMLVideoElement>>>;
|
|
1898
1899
|
|
|
1899
1900
|
type UlLiProps = {
|
|
1900
1901
|
list: string[];
|
|
@@ -2427,9 +2428,9 @@ type SlotsGridItemProps = {
|
|
|
2427
2428
|
onSelectionChange: () => void;
|
|
2428
2429
|
};
|
|
2429
2430
|
|
|
2430
|
-
declare const _default$
|
|
2431
|
+
declare const _default$b: React__default.NamedExoticComponent<SlotsGridProps>;
|
|
2431
2432
|
|
|
2432
|
-
declare const _default$
|
|
2433
|
+
declare const _default$a: React.NamedExoticComponent<SlotsGridItemProps>;
|
|
2433
2434
|
|
|
2434
2435
|
type PushNotificationsModalProps = {
|
|
2435
2436
|
onApplyPermission: () => void;
|
|
@@ -2529,23 +2530,23 @@ type ShareModalFeatureProps = {
|
|
|
2529
2530
|
};
|
|
2530
2531
|
declare const ShareModalFeature: FC<ShareModalFeatureProps>;
|
|
2531
2532
|
|
|
2532
|
-
declare const _default$
|
|
2533
|
+
declare const _default$9: React__default.NamedExoticComponent<SpecialistPaymentConsultationDetailsType & TranslationType>;
|
|
2533
2534
|
|
|
2534
|
-
declare const _default$
|
|
2535
|
+
declare const _default$8: React__default.NamedExoticComponent<SpecialistPaymentCardProps & TranslationType>;
|
|
2535
2536
|
|
|
2536
2537
|
type SpecialistPaymentCommonCardSkeletonType = {
|
|
2537
2538
|
className?: string;
|
|
2538
2539
|
};
|
|
2539
2540
|
declare const SpecialistPaymentCommonCardSkeleton: (props: SpecialistPaymentCommonCardSkeletonType) => JSX.Element;
|
|
2540
2541
|
|
|
2541
|
-
declare const _default$
|
|
2542
|
+
declare const _default$7: React__default.NamedExoticComponent<SpecialistPaymentConsultationsProps & TranslationType>;
|
|
2542
2543
|
|
|
2543
2544
|
type ConsultationsListProps = {
|
|
2544
2545
|
consultations: SpecialistConsultation[];
|
|
2545
2546
|
locale?: string;
|
|
2546
2547
|
consultationClick?: (consultation: SpecialistConsultation) => void;
|
|
2547
2548
|
};
|
|
2548
|
-
declare const _default$
|
|
2549
|
+
declare const _default$6: React__default.NamedExoticComponent<ConsultationsListProps>;
|
|
2549
2550
|
|
|
2550
2551
|
type ConsultationsListSkeletonType = {
|
|
2551
2552
|
className?: string;
|
|
@@ -2560,9 +2561,9 @@ type CalendarPickerFeatureProps = {
|
|
|
2560
2561
|
monthsMore?: number;
|
|
2561
2562
|
dateCallback: (date: Date) => void;
|
|
2562
2563
|
};
|
|
2563
|
-
declare const _default$
|
|
2564
|
+
declare const _default$5: React__default.NamedExoticComponent<CalendarPickerFeatureProps & TranslationType>;
|
|
2564
2565
|
|
|
2565
|
-
declare const _default$
|
|
2566
|
+
declare const _default$4: React__default.NamedExoticComponent<PaymentCalendarFeatureProps & TranslationType>;
|
|
2566
2567
|
|
|
2567
2568
|
type GoogleCalendarModalFeatureProps = {
|
|
2568
2569
|
isOpen: boolean;
|
|
@@ -2576,6 +2577,16 @@ type GoogleCalendarModalFeatureProps = {
|
|
|
2576
2577
|
};
|
|
2577
2578
|
declare function GoogleCalendarModalFeature({ status, isOpen, onSync, isLoading, presentingElement, imageUrl, onDidDismiss, t, }: GoogleCalendarModalFeatureProps): JSX.Element;
|
|
2578
2579
|
|
|
2580
|
+
type ReviewCardFeatureProps = {
|
|
2581
|
+
avatarSrc?: string;
|
|
2582
|
+
name: string;
|
|
2583
|
+
date: number;
|
|
2584
|
+
rating: number;
|
|
2585
|
+
review: string;
|
|
2586
|
+
size?: 'default' | 'small';
|
|
2587
|
+
} & TranslationType;
|
|
2588
|
+
declare const _default$3: React__default.NamedExoticComponent<ReviewCardFeatureProps>;
|
|
2589
|
+
|
|
2579
2590
|
type SpecialistCardWidgetProps = {
|
|
2580
2591
|
t?: WithTranslation['t'];
|
|
2581
2592
|
loading: boolean;
|
|
@@ -2622,4 +2633,4 @@ declare const _default$1: React__default.NamedExoticComponent<SpecialistPaymentC
|
|
|
2622
2633
|
|
|
2623
2634
|
declare const _default: React__default.NamedExoticComponent<SpecialistPaymentCardProps & SpecialistPaymentConsultationsProps & TranslationType>;
|
|
2624
2635
|
|
|
2625
|
-
export { AppFooter, _default$
|
|
2636
|
+
export { AppFooter, _default$q as AppFooter_v2, AppHeader, AppHeader_v2, ArchivedConsultationCard, Avatar, AvatarProps$1 as AvatarProps, _default$p as Avatar_v2, BREAKPOINT_ICON_SIZE, _default$l as Badge, _default$E as BookingScheduleTime, _default$D as BookingSpecialistInfo, Button, Button_v2, Calendar, _default$5 as CalendarPickerFeature, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$Z as ChatListItem, _default$X as ChatListSkeleton, _default$Y as ChatMessage, ChatMessageSkeleton, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$y as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingContext, CircleRatingProvider, CollapsableText, _default$Q as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$N as ConsultationModal, _default$9 as ConsultationPricingFeature, _default$L as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentCard, CountdownTimerFeature, CountryOfOriginModal, CustomButton, _default$z as CustomCheckbox, CustomRadioButton, _default$A as CustomSelect, _default$B as CustomTextarea, DatePicker, _default$J as DaySlider, DayToRender, DrumListPicker, _default$F as EducationCard, _default$W as EmptyChatList, EmptyChatMessages, _default$O as EmptyConsultations, EntryNotFound, EntryNotFoundProps, _default$v as Flag, FlagTypes, _default$n as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconAddModerator, IconApple, IconArrowDown, IconArrowLeft, IconArrowRight, IconAttachMoney, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$h as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCancel, IconCancelRounded, IconCapFilled, IconChat3d, IconChatFilled, IconChatOutline, IconCheck, IconCheckCircle, IconCheckSmall, IconCheckboxChecked, IconCheckboxUnchecked, IconClient, IconClientFilled, IconClose, IconCopy, IconCreditCard, IconDelete, IconEcgHeart, IconEdit, IconEditCalendar, IconEventBusy, IconEye, IconEyeOff, IconGallery, IconGift, IconGoogle, IconHome, IconInvisible, IconLanguage, IconLeftArrow, IconLetter, IconLink, IconLogout, IconManageAccounts, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPause, IconPlus, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconResume, IconSchema, IconSearch, IconSend, IconSettings, IconShare, IconSpinner, IconStar, IconStarFilled, IconSuccess, IconText, IconTime, IconTimeAdd, IconUnmute, IconUserNotFound, IconVerifiedUser, IconVisible, IconWarning, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, InputSearch, _default$d as Item, _default$k as ItemCard, LabelArrowRedirect, LanguagesList, _default$11 as LetterAvatar, _default$w as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListButton, ListItemType, _default$e as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$f as Loading, LouseConnect, _default$_ as MediaPlayer, Modal, ModalCalendar, ModalSheet, NavigationBar, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, PasswordInput, _default$4 as PaymentCalendarFeature, _default$6 as PaymentSessionsList, _default$10 as PersonDateTimeCard, _default$m as Picture, _default$u as ProfileInformation, _default$H as ProfileView, _default$x as ProgressBar, ProgressBarDashed, _default$g as ProgressBar_v2, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$i as Rating, RatingCircleWrapper, _default$K as ReSchedule, ReScheduleSuccess, Refresher, ReviewCard, _default$3 as ReviewCardFeature, ReviewStatistics, ReviewSwiperSection, RoundButton, RowItemType, RowSelect, RowSelectProps, SIZES, ScreenInput, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$$ as SelectImpressionEmoji, SelectItemType, ShareModalFeature, _default$P as SignUpSessionButton, _default$M as SignUpSessionModal, Skeleton, _default$o as Skeleton_v2, _default$b as SlotsGrid, _default$a as SlotsGridItem, _default$G as SpecialistAbout, SpecialistCard$1 as SpecialistCard, SpecialistCardListWidget, _default$2 as SpecialistCardWidget, _default$U as SpecialistEducationCard, SpecialistInfoColumnFeature as SpecialistInfoColumn, SpecialistLangs, _default$t as SpecialistMatch, _default$8 as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, _default$7 as SpecialistPaymentConsultationsFeature, _default as SpecialistPaymentResumeWidget, _default$1 as SpecialistPaymentWidget, _default$T as SpecialistProfileViewCard, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default$s as SpecialistStatistic, SpecialistStatisticsCard, SpecialistWorkDirections, Spinner, Spinner_v2, StarRating, StatisticsScroll, StatusTag, SuccessScreen, SwitchDeviceCard, TabBar, Tag, _default$C as TextInput, _default$V as Textarea, _default$j as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, _default$r as Typography, TypographyVariantsEnum, UpdatesCard, UserInfoModal, UsersPsychologistScrollList, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$c as Video, _default$R as VideoCallInfo, _default$S as VideoPlayer, _default$I as WorkDirections, YourLocalTimeBlock, appThemes, decOfNum, getProgressForBreakPoint, mergeRefs, newShade, priceNormalize, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDomRef, useEvent, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useToastContext };
|