@mindly/ui-components 5.85.4 → 5.87.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 +4 -4
- package/dist/cjs/lib2/features/OnBoardingFlow/OnBoardingReviewsScreenPreviewFeature/OnBoardingReviewsScreenPreviewFeature.d.ts +4 -0
- package/dist/cjs/lib2/features/OnBoardingFlow/OnBoardingReviewsScreenPreviewFeature/index.d.ts +1 -0
- package/dist/cjs/lib2/features/OnBoardingFlow/index.d.ts +1 -0
- package/dist/cjs/lib2/features/ReviewCardFeature/ReviewsCardFeatureSkeleton.d.ts +2 -0
- package/dist/cjs/lib2/features/ReviewCardFeature/index.d.ts +1 -0
- package/dist/cjs/lib2/shared/types/onBoardingFlow.type.d.ts +5 -1
- package/dist/esm/index.js +4 -4
- package/dist/esm/lib2/features/OnBoardingFlow/OnBoardingReviewsScreenPreviewFeature/OnBoardingReviewsScreenPreviewFeature.d.ts +4 -0
- package/dist/esm/lib2/features/OnBoardingFlow/OnBoardingReviewsScreenPreviewFeature/index.d.ts +1 -0
- package/dist/esm/lib2/features/OnBoardingFlow/index.d.ts +1 -0
- package/dist/esm/lib2/features/ReviewCardFeature/ReviewsCardFeatureSkeleton.d.ts +2 -0
- package/dist/esm/lib2/features/ReviewCardFeature/index.d.ts +1 -0
- package/dist/esm/lib2/shared/types/onBoardingFlow.type.d.ts +5 -1
- package/dist/index.d.ts +82 -76
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -225,7 +225,7 @@ type LetterAvatarProps = {
|
|
|
225
225
|
fontSize?: number;
|
|
226
226
|
onClick?: () => void;
|
|
227
227
|
};
|
|
228
|
-
declare const _default$
|
|
228
|
+
declare const _default$1d: React__default.NamedExoticComponent<LetterAvatarProps>;
|
|
229
229
|
|
|
230
230
|
type ImageWithFallbackProps = JSX.IntrinsicElements['img'] & {
|
|
231
231
|
onErrorContent: React__default.ReactElement;
|
|
@@ -237,7 +237,7 @@ type PersonDateTimeCardProps = {
|
|
|
237
237
|
name: string;
|
|
238
238
|
dateTime: Date;
|
|
239
239
|
};
|
|
240
|
-
declare const _default$
|
|
240
|
+
declare const _default$1c: React__default.NamedExoticComponent<PersonDateTimeCardProps>;
|
|
241
241
|
|
|
242
242
|
type PsychologistProfileType = {
|
|
243
243
|
id: string;
|
|
@@ -403,7 +403,7 @@ type SelectImpressionEmojiProps = {
|
|
|
403
403
|
onChange?: (val: ImpressionEmojiEnum) => void;
|
|
404
404
|
};
|
|
405
405
|
|
|
406
|
-
declare const _default$
|
|
406
|
+
declare const _default$1b: React__default.NamedExoticComponent<SelectImpressionEmojiProps>;
|
|
407
407
|
|
|
408
408
|
interface FooterForBookingProps {
|
|
409
409
|
eventHandler: (props?: React__default.SyntheticEvent) => void;
|
|
@@ -435,7 +435,7 @@ type MediaPlayerProps<TCameraTrack extends Playable | undefined, TAudioTrack ext
|
|
|
435
435
|
showControls: boolean;
|
|
436
436
|
isScreenSharing?: boolean;
|
|
437
437
|
} & HTMLAttributes<HTMLDivElement>;
|
|
438
|
-
declare const _default$
|
|
438
|
+
declare const _default$1a: <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;
|
|
439
439
|
|
|
440
440
|
type RoundButtonPropsType = {
|
|
441
441
|
disabled?: boolean;
|
|
@@ -464,7 +464,7 @@ type ChatListItemProps = {
|
|
|
464
464
|
isDisabled?: boolean;
|
|
465
465
|
t?: WithTranslation['t'];
|
|
466
466
|
};
|
|
467
|
-
declare const _default$
|
|
467
|
+
declare const _default$19: React__default.NamedExoticComponent<ChatListItemProps>;
|
|
468
468
|
|
|
469
469
|
type ChatMessageProps = {
|
|
470
470
|
message: string | File;
|
|
@@ -492,11 +492,11 @@ type ChatMessageProps = {
|
|
|
492
492
|
onClickHandler: () => void;
|
|
493
493
|
}[] | null;
|
|
494
494
|
};
|
|
495
|
-
declare const _default$
|
|
495
|
+
declare const _default$18: React__default.NamedExoticComponent<ChatMessageProps>;
|
|
496
496
|
|
|
497
497
|
declare const ChatMessageSkeleton: () => JSX.Element;
|
|
498
498
|
|
|
499
|
-
declare const _default$
|
|
499
|
+
declare const _default$17: React__default.MemoExoticComponent<() => JSX.Element>;
|
|
500
500
|
|
|
501
501
|
type EmptyChatList = {
|
|
502
502
|
title?: string;
|
|
@@ -506,7 +506,7 @@ type EmptyChatList = {
|
|
|
506
506
|
onClick?: () => void;
|
|
507
507
|
};
|
|
508
508
|
declare const EmptyChatList: FC<EmptyChatList>;
|
|
509
|
-
declare const _default$
|
|
509
|
+
declare const _default$16: React__default.NamedExoticComponent<EmptyChatList>;
|
|
510
510
|
|
|
511
511
|
type EmptyChatMessagesProps = {
|
|
512
512
|
title?: string;
|
|
@@ -531,7 +531,7 @@ type TextareaProps = {
|
|
|
531
531
|
onFileSelect?: (file: File | null, type: 'file' | 'image' | 'video', fileInfo: FileInfoType) => void;
|
|
532
532
|
t?: WithTranslation['t'];
|
|
533
533
|
};
|
|
534
|
-
declare const _default$
|
|
534
|
+
declare const _default$15: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TextareaProps & React__default.RefAttributes<HTMLIonFooterElement>>>;
|
|
535
535
|
|
|
536
536
|
type LouseConnectProps = {
|
|
537
537
|
onClick?: () => void;
|
|
@@ -610,7 +610,7 @@ type SpecialistEducationCardProps$1 = {
|
|
|
610
610
|
yearEnd?: number | null;
|
|
611
611
|
showLoader?: boolean;
|
|
612
612
|
};
|
|
613
|
-
declare const _default$
|
|
613
|
+
declare const _default$14: React__default.NamedExoticComponent<SpecialistEducationCardProps$1>;
|
|
614
614
|
|
|
615
615
|
type SpecialistProfileViewCardProps$1 = {
|
|
616
616
|
avatarLink?: string | null;
|
|
@@ -623,7 +623,7 @@ type SpecialistProfileViewCardProps$1 = {
|
|
|
623
623
|
videoLinkUrl?: string | null;
|
|
624
624
|
showLoader?: boolean;
|
|
625
625
|
} & React__default.DetailedHTMLProps<React__default.HTMLAttributes<HTMLDivElement>, HTMLDivElement>;
|
|
626
|
-
declare const _default$
|
|
626
|
+
declare const _default$13: React__default.NamedExoticComponent<SpecialistProfileViewCardProps$1>;
|
|
627
627
|
|
|
628
628
|
type SpecialistStatisticsCardProps$1 = {
|
|
629
629
|
activeClients?: number;
|
|
@@ -659,7 +659,7 @@ type VideoPlayerProps = {
|
|
|
659
659
|
closeModalHandler?: () => void;
|
|
660
660
|
onErrorContent: React__default.ReactElement;
|
|
661
661
|
} & JSX$1.IonModal;
|
|
662
|
-
declare const _default$
|
|
662
|
+
declare const _default$12: React__default.NamedExoticComponent<VideoPlayerProps>;
|
|
663
663
|
|
|
664
664
|
type NotSupportModalProps = {
|
|
665
665
|
closeModal?: () => void;
|
|
@@ -695,7 +695,7 @@ type VideoCallInfoProps = {
|
|
|
695
695
|
abbreviatedSeconds: string;
|
|
696
696
|
};
|
|
697
697
|
};
|
|
698
|
-
declare const _default$
|
|
698
|
+
declare const _default$11: React__default.NamedExoticComponent<VideoCallInfoProps>;
|
|
699
699
|
|
|
700
700
|
declare enum ConsultationCardType {
|
|
701
701
|
FEATURE = "feature",
|
|
@@ -730,14 +730,14 @@ type ConsultationCardProps = {
|
|
|
730
730
|
};
|
|
731
731
|
};
|
|
732
732
|
|
|
733
|
-
declare const _default
|
|
733
|
+
declare const _default$10: React__default.NamedExoticComponent<ConsultationCardProps>;
|
|
734
734
|
|
|
735
735
|
type SignUpSessionButtonProps = {
|
|
736
736
|
label: string;
|
|
737
737
|
isLoading?: boolean;
|
|
738
738
|
onClick?: () => void;
|
|
739
739
|
};
|
|
740
|
-
declare const _default
|
|
740
|
+
declare const _default$$: React__default.NamedExoticComponent<SignUpSessionButtonProps>;
|
|
741
741
|
|
|
742
742
|
type EmptyConsultationsProps = {
|
|
743
743
|
title: string;
|
|
@@ -745,7 +745,7 @@ type EmptyConsultationsProps = {
|
|
|
745
745
|
buttonLabel?: string;
|
|
746
746
|
onClick?: () => void;
|
|
747
747
|
};
|
|
748
|
-
declare const _default$
|
|
748
|
+
declare const _default$_: React__default.NamedExoticComponent<EmptyConsultationsProps>;
|
|
749
749
|
|
|
750
750
|
type ConsultationModalProps = {
|
|
751
751
|
isOpen: boolean;
|
|
@@ -781,7 +781,7 @@ type ConsultationModalProps = {
|
|
|
781
781
|
started?: string;
|
|
782
782
|
};
|
|
783
783
|
};
|
|
784
|
-
declare const _default$
|
|
784
|
+
declare const _default$Z: React__default.NamedExoticComponent<ConsultationModalProps>;
|
|
785
785
|
|
|
786
786
|
type SpecialistData = {
|
|
787
787
|
id: string;
|
|
@@ -798,7 +798,7 @@ type SignUpSessionModalProps = {
|
|
|
798
798
|
title: string;
|
|
799
799
|
cancelBtnLabel: string;
|
|
800
800
|
};
|
|
801
|
-
declare const _default$
|
|
801
|
+
declare const _default$Y: React__default.NamedExoticComponent<SignUpSessionModalProps>;
|
|
802
802
|
|
|
803
803
|
type ConsultationSpecialistCardProps = {
|
|
804
804
|
id: string;
|
|
@@ -809,7 +809,7 @@ type ConsultationSpecialistCardProps = {
|
|
|
809
809
|
onSignUp?: (id: string) => void;
|
|
810
810
|
signInBtnLabel: string;
|
|
811
811
|
};
|
|
812
|
-
declare const _default$
|
|
812
|
+
declare const _default$X: React__default.NamedExoticComponent<ConsultationSpecialistCardProps>;
|
|
813
813
|
|
|
814
814
|
type UserInfoModalProps = {
|
|
815
815
|
isOpen: boolean;
|
|
@@ -880,7 +880,7 @@ type ReScheduleProps = {
|
|
|
880
880
|
btnLabel: string;
|
|
881
881
|
};
|
|
882
882
|
};
|
|
883
|
-
declare const _default$
|
|
883
|
+
declare const _default$W: React__default.NamedExoticComponent<ReScheduleProps>;
|
|
884
884
|
|
|
885
885
|
type ReScheduleSuccessProps = {
|
|
886
886
|
name: string;
|
|
@@ -918,7 +918,7 @@ type DaySliderProps = JSX$1.IonSlides & HTMLAttributes<HTMLIonSlidesElement> & R
|
|
|
918
918
|
tomorrow?: string;
|
|
919
919
|
};
|
|
920
920
|
};
|
|
921
|
-
declare const _default$
|
|
921
|
+
declare const _default$V: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<DaySliderProps, "ref"> & React__default.RefAttributes<HTMLIonSlidesElement>>>;
|
|
922
922
|
|
|
923
923
|
type SpecialistWorkDirectionsPropsType = {
|
|
924
924
|
workDirections?: string[] | [];
|
|
@@ -927,7 +927,7 @@ type SpecialistWorkDirectionsPropsType = {
|
|
|
927
927
|
moreLabel?: string;
|
|
928
928
|
hideLabel?: string;
|
|
929
929
|
};
|
|
930
|
-
declare const _default$
|
|
930
|
+
declare const _default$U: React__default.NamedExoticComponent<SpecialistWorkDirectionsPropsType>;
|
|
931
931
|
|
|
932
932
|
type SpecialistProfileViewCardProps = {
|
|
933
933
|
videoLink?: string;
|
|
@@ -937,7 +937,7 @@ type SpecialistProfileViewCardProps = {
|
|
|
937
937
|
isLoading?: boolean;
|
|
938
938
|
videoDurationSeconds?: number;
|
|
939
939
|
};
|
|
940
|
-
declare const _default$
|
|
940
|
+
declare const _default$T: React__default.NamedExoticComponent<SpecialistProfileViewCardProps>;
|
|
941
941
|
|
|
942
942
|
type SpecialistAboutProps = {
|
|
943
943
|
text?: string;
|
|
@@ -946,7 +946,7 @@ type SpecialistAboutProps = {
|
|
|
946
946
|
moreLabel?: string;
|
|
947
947
|
hideLabel?: string;
|
|
948
948
|
};
|
|
949
|
-
declare const _default$
|
|
949
|
+
declare const _default$S: React__default.NamedExoticComponent<SpecialistAboutProps>;
|
|
950
950
|
|
|
951
951
|
type SpecialistEducationCardProps = {
|
|
952
952
|
institutionName?: string;
|
|
@@ -957,7 +957,7 @@ type SpecialistEducationCardProps = {
|
|
|
957
957
|
yearEnd?: number | null;
|
|
958
958
|
showLoader?: boolean;
|
|
959
959
|
};
|
|
960
|
-
declare const _default$
|
|
960
|
+
declare const _default$R: React__default.NamedExoticComponent<SpecialistEducationCardProps>;
|
|
961
961
|
|
|
962
962
|
type SpecialistStatisticsCardProps = {
|
|
963
963
|
trust?: boolean;
|
|
@@ -1003,7 +1003,7 @@ type BookingScheduleTimeProps = {
|
|
|
1003
1003
|
onClick?: (index: number, item: string) => void;
|
|
1004
1004
|
isLoading?: boolean;
|
|
1005
1005
|
};
|
|
1006
|
-
declare const _default$
|
|
1006
|
+
declare const _default$Q: React__default.NamedExoticComponent<BookingScheduleTimeProps>;
|
|
1007
1007
|
|
|
1008
1008
|
type BookingSpecialistInfoProps = {
|
|
1009
1009
|
name: string;
|
|
@@ -1012,7 +1012,7 @@ type BookingSpecialistInfoProps = {
|
|
|
1012
1012
|
avatar?: string;
|
|
1013
1013
|
isLoading?: boolean;
|
|
1014
1014
|
};
|
|
1015
|
-
declare const _default$
|
|
1015
|
+
declare const _default$P: React__default.NamedExoticComponent<BookingSpecialistInfoProps>;
|
|
1016
1016
|
|
|
1017
1017
|
type SpecialistCardProps = {
|
|
1018
1018
|
fullName?: string;
|
|
@@ -1061,7 +1061,7 @@ type SpecialistCardProps = {
|
|
|
1061
1061
|
};
|
|
1062
1062
|
declare const SpecialistCard$1: React__default.FC<SpecialistCardProps>;
|
|
1063
1063
|
|
|
1064
|
-
declare const _default$
|
|
1064
|
+
declare const _default$O: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
|
|
1065
1065
|
isError?: boolean | undefined;
|
|
1066
1066
|
errorStyle?: "filled" | "unfilled" | undefined;
|
|
1067
1067
|
type?: "number" | "text" | "email" | undefined;
|
|
@@ -1085,11 +1085,11 @@ declare const PasswordInput: React__default.ForwardRefExoticComponent<{
|
|
|
1085
1085
|
error?: string | null | undefined;
|
|
1086
1086
|
} & Omit<React__default.InputHTMLAttributes<HTMLInputElement>, "type"> & React__default.RefAttributes<HTMLInputElement>>;
|
|
1087
1087
|
|
|
1088
|
-
declare const _default$
|
|
1088
|
+
declare const _default$N: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
|
|
1089
1089
|
isError?: boolean | undefined;
|
|
1090
1090
|
} & React__default.TextareaHTMLAttributes<HTMLTextAreaElement> & React__default.RefAttributes<HTMLTextAreaElement>>>;
|
|
1091
1091
|
|
|
1092
|
-
declare const _default$
|
|
1092
|
+
declare const _default$M: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
|
|
1093
1093
|
options: {
|
|
1094
1094
|
id: string | number;
|
|
1095
1095
|
label: string | number;
|
|
@@ -1121,7 +1121,7 @@ type CustomCheckboxProps = {
|
|
|
1121
1121
|
isCheckbox?: boolean;
|
|
1122
1122
|
onChange?: (e: ChangeEvent<HTMLInputElement>) => void;
|
|
1123
1123
|
};
|
|
1124
|
-
declare const _default$
|
|
1124
|
+
declare const _default$L: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<CustomCheckboxProps & React__default.RefAttributes<HTMLInputElement>>>;
|
|
1125
1125
|
|
|
1126
1126
|
type CheckboxListItem = {
|
|
1127
1127
|
id: ReactText;
|
|
@@ -1149,7 +1149,7 @@ type CheckboxListProps = {
|
|
|
1149
1149
|
from: string;
|
|
1150
1150
|
};
|
|
1151
1151
|
};
|
|
1152
|
-
declare const _default$
|
|
1152
|
+
declare const _default$K: React__default.NamedExoticComponent<CheckboxListProps>;
|
|
1153
1153
|
|
|
1154
1154
|
type BookingHeaderProps = {
|
|
1155
1155
|
title?: string;
|
|
@@ -1163,9 +1163,9 @@ type ProgressBarProps = {
|
|
|
1163
1163
|
progress: number;
|
|
1164
1164
|
loaderTitle?: string;
|
|
1165
1165
|
};
|
|
1166
|
-
declare const _default$
|
|
1166
|
+
declare const _default$J: React__default.NamedExoticComponent<ProgressBarProps>;
|
|
1167
1167
|
|
|
1168
|
-
declare const _default$
|
|
1168
|
+
declare const _default$I: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
|
|
1169
1169
|
title: string;
|
|
1170
1170
|
subTitle?: string | undefined;
|
|
1171
1171
|
isError?: boolean | undefined;
|
|
@@ -1197,7 +1197,7 @@ type FlagProps$1 = {
|
|
|
1197
1197
|
dimensions?: number;
|
|
1198
1198
|
className?: string;
|
|
1199
1199
|
};
|
|
1200
|
-
declare const _default$
|
|
1200
|
+
declare const _default$H: React__default.NamedExoticComponent<FlagProps$1>;
|
|
1201
1201
|
|
|
1202
1202
|
type SpecialistLangsProps = {
|
|
1203
1203
|
showLoader?: boolean;
|
|
@@ -1237,7 +1237,7 @@ type ProfileInformationProps = {
|
|
|
1237
1237
|
reviews: string[];
|
|
1238
1238
|
};
|
|
1239
1239
|
} & React__default.HTMLAttributes<HTMLDivElement>;
|
|
1240
|
-
declare const _default$
|
|
1240
|
+
declare const _default$G: React__default.NamedExoticComponent<ProfileInformationProps>;
|
|
1241
1241
|
|
|
1242
1242
|
type SpecialistMatchProps = {
|
|
1243
1243
|
specialistFirstName?: string;
|
|
@@ -1249,7 +1249,7 @@ type SpecialistMatchProps = {
|
|
|
1249
1249
|
howWeMatchThis: string;
|
|
1250
1250
|
};
|
|
1251
1251
|
} & React__default.HTMLAttributes<HTMLDivElement>;
|
|
1252
|
-
declare const _default$
|
|
1252
|
+
declare const _default$F: React__default.NamedExoticComponent<SpecialistMatchProps>;
|
|
1253
1253
|
|
|
1254
1254
|
type SpecialistStatisticProps = {
|
|
1255
1255
|
learnMoreClick: () => void;
|
|
@@ -1269,7 +1269,7 @@ type SpecialistStatisticProps = {
|
|
|
1269
1269
|
bookedSession: string;
|
|
1270
1270
|
};
|
|
1271
1271
|
} & React__default.HTMLAttributes<HTMLDivElement>;
|
|
1272
|
-
declare const _default$
|
|
1272
|
+
declare const _default$E: React__default.NamedExoticComponent<SpecialistStatisticProps>;
|
|
1273
1273
|
|
|
1274
1274
|
type RatingWithLabelProps = {
|
|
1275
1275
|
countOfReviews?: number;
|
|
@@ -1460,7 +1460,7 @@ type TypographyProps = {
|
|
|
1460
1460
|
onClick?: (args: any) => typeof args;
|
|
1461
1461
|
isError?: boolean;
|
|
1462
1462
|
};
|
|
1463
|
-
declare const _default$
|
|
1463
|
+
declare const _default$D: React__default.NamedExoticComponent<TypographyProps>;
|
|
1464
1464
|
|
|
1465
1465
|
type AppFooterProps = {
|
|
1466
1466
|
children?: React__default.ReactNode;
|
|
@@ -1471,7 +1471,7 @@ type AppFooterProps = {
|
|
|
1471
1471
|
toolbarStyle?: CSSProperties;
|
|
1472
1472
|
className?: string;
|
|
1473
1473
|
};
|
|
1474
|
-
declare const _default$
|
|
1474
|
+
declare const _default$C: React__default.NamedExoticComponent<AppFooterProps>;
|
|
1475
1475
|
|
|
1476
1476
|
type AvatarRoundVariants = 'circle' | 'drop';
|
|
1477
1477
|
|
|
@@ -1483,14 +1483,14 @@ type AvatarProps = {
|
|
|
1483
1483
|
alt?: string;
|
|
1484
1484
|
showSkeleton?: boolean;
|
|
1485
1485
|
};
|
|
1486
|
-
declare const _default$
|
|
1486
|
+
declare const _default$B: React__default.NamedExoticComponent<AvatarProps>;
|
|
1487
1487
|
|
|
1488
1488
|
type SkeletonProps = {
|
|
1489
1489
|
animated?: boolean;
|
|
1490
1490
|
className?: string;
|
|
1491
1491
|
style?: React__default.CSSProperties;
|
|
1492
1492
|
};
|
|
1493
|
-
declare const _default$
|
|
1493
|
+
declare const _default$A: React__default.NamedExoticComponent<SkeletonProps>;
|
|
1494
1494
|
|
|
1495
1495
|
type ButtonProps = {
|
|
1496
1496
|
fill?: 'outline' | 'clear';
|
|
@@ -1525,7 +1525,7 @@ type FlagProps = {
|
|
|
1525
1525
|
name: string;
|
|
1526
1526
|
className?: string;
|
|
1527
1527
|
};
|
|
1528
|
-
declare const _default$
|
|
1528
|
+
declare const _default$z: React__default.NamedExoticComponent<FlagProps>;
|
|
1529
1529
|
|
|
1530
1530
|
type PictureProps = {
|
|
1531
1531
|
width: number;
|
|
@@ -1540,7 +1540,7 @@ type PictureProps = {
|
|
|
1540
1540
|
alt?: string;
|
|
1541
1541
|
className?: string;
|
|
1542
1542
|
};
|
|
1543
|
-
declare const _default$
|
|
1543
|
+
declare const _default$y: React__default.NamedExoticComponent<PictureProps>;
|
|
1544
1544
|
|
|
1545
1545
|
type BadgeType = 'default' | 'accent';
|
|
1546
1546
|
type BadgeVariants = 'attention' | 'neutral' | 'success' | 'warning' | 'brand' | 'info';
|
|
@@ -1550,7 +1550,7 @@ type BadgeProps = React.ComponentPropsWithoutRef<'span'> & {
|
|
|
1550
1550
|
type?: BadgeType;
|
|
1551
1551
|
};
|
|
1552
1552
|
|
|
1553
|
-
declare const _default$
|
|
1553
|
+
declare const _default$x: React.NamedExoticComponent<BadgeProps>;
|
|
1554
1554
|
|
|
1555
1555
|
type ItemCardVariants = 'neutral' | 'transparent' | 'transparent20';
|
|
1556
1556
|
type ItemCardProps = React.ComponentPropsWithoutRef<'div'> & {
|
|
@@ -1558,7 +1558,7 @@ type ItemCardProps = React.ComponentPropsWithoutRef<'div'> & {
|
|
|
1558
1558
|
size?: 'M' | 'M4' | 'M45';
|
|
1559
1559
|
};
|
|
1560
1560
|
|
|
1561
|
-
declare const _default$
|
|
1561
|
+
declare const _default$w: React.NamedExoticComponent<ItemCardProps>;
|
|
1562
1562
|
|
|
1563
1563
|
type AppHeaderProps = {
|
|
1564
1564
|
fullwidth?: boolean;
|
|
@@ -1886,9 +1886,11 @@ type OnBoardingLoaderScreenType = OnBoardingBaseScreenType & {
|
|
|
1886
1886
|
allScreens?: Record<string, OnBoardingScreensType>;
|
|
1887
1887
|
selectedAnswers?: Record<string, string[]>;
|
|
1888
1888
|
};
|
|
1889
|
-
type OnBoardingReviewsScreenType = OnBoardingBaseScreenType & OnBoardingScreenButtonType & {
|
|
1889
|
+
type OnBoardingReviewsScreenType = OnBoardingBaseScreenType & OnBoardingScreenButtonType & TranslationType & {
|
|
1890
1890
|
title?: string | null;
|
|
1891
1891
|
reviewLocale: string;
|
|
1892
|
+
reviews: ISpecialistReview[];
|
|
1893
|
+
isLoading?: boolean;
|
|
1892
1894
|
};
|
|
1893
1895
|
type OnBoardingScreensType = OnBoardingStartScreenType | OnBoardingMultiSelectScreenType | OnBoardingSingleSelectScreenType | OnBoardingInfoScreenType | OnBoardingLoaderScreenType | OnBoardingReviewsScreenType;
|
|
1894
1896
|
type OnBoardingFlowType = {
|
|
@@ -1979,7 +1981,7 @@ interface TextareaV2Props extends Omit<JSX$1.IonTextarea, 'color' | 'enterkeyhin
|
|
|
1979
1981
|
onKeyPress?: (e: KeyboardEvent<HTMLIonTextareaElement>) => void;
|
|
1980
1982
|
}
|
|
1981
1983
|
|
|
1982
|
-
declare const _default$
|
|
1984
|
+
declare const _default$v: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TextareaV2Props & React__default.RefAttributes<HTMLIonTextareaElement>>>;
|
|
1983
1985
|
|
|
1984
1986
|
type RatingProps = {
|
|
1985
1987
|
initialRating?: number;
|
|
@@ -1991,7 +1993,7 @@ type RatingProps = {
|
|
|
1991
1993
|
readonly?: boolean;
|
|
1992
1994
|
};
|
|
1993
1995
|
|
|
1994
|
-
declare const _default$
|
|
1996
|
+
declare const _default$u: React__default.NamedExoticComponent<RatingProps>;
|
|
1995
1997
|
|
|
1996
1998
|
declare const RatingCircleWrapper: FC<CircleRatingComponentProps & {
|
|
1997
1999
|
t: WithTranslation | any;
|
|
@@ -2005,7 +2007,7 @@ type IconButtonProps = {
|
|
|
2005
2007
|
fill?: 'clear' | 'filled';
|
|
2006
2008
|
type?: 'button' | 'submit' | 'reset';
|
|
2007
2009
|
};
|
|
2008
|
-
declare const _default$
|
|
2010
|
+
declare const _default$t: React__default.NamedExoticComponent<IconButtonProps>;
|
|
2009
2011
|
|
|
2010
2012
|
type ToastProviderProps = ToastStateProps;
|
|
2011
2013
|
type MindlyToastProps = {
|
|
@@ -2050,17 +2052,17 @@ type ProgressBar_v2Props = {
|
|
|
2050
2052
|
animationDuration?: number;
|
|
2051
2053
|
onProgressEnd?: () => void;
|
|
2052
2054
|
};
|
|
2053
|
-
declare const _default$
|
|
2055
|
+
declare const _default$s: React__default.NamedExoticComponent<ProgressBar_v2Props>;
|
|
2054
2056
|
|
|
2055
2057
|
type LoadingProps = {
|
|
2056
2058
|
isOpen: boolean;
|
|
2057
2059
|
};
|
|
2058
|
-
declare const _default$
|
|
2060
|
+
declare const _default$r: React__default.NamedExoticComponent<LoadingProps>;
|
|
2059
2061
|
|
|
2060
2062
|
type ListItemsProps = React.HTMLAttributes<HTMLIonListElement> & {
|
|
2061
2063
|
withBorders?: boolean;
|
|
2062
2064
|
};
|
|
2063
|
-
declare const _default$
|
|
2065
|
+
declare const _default$q: React.NamedExoticComponent<ListItemsProps>;
|
|
2064
2066
|
|
|
2065
2067
|
type ItemProps = React.HTMLAttributes<HTMLIonItemElement> & {
|
|
2066
2068
|
leftContent?: React.ReactNode;
|
|
@@ -2072,14 +2074,14 @@ type ItemProps = React.HTMLAttributes<HTMLIonItemElement> & {
|
|
|
2072
2074
|
isError?: boolean;
|
|
2073
2075
|
status?: 'error' | 'attention';
|
|
2074
2076
|
};
|
|
2075
|
-
declare const _default$
|
|
2077
|
+
declare const _default$p: React.NamedExoticComponent<ItemProps>;
|
|
2076
2078
|
|
|
2077
2079
|
type VideoProps = {
|
|
2078
2080
|
src: string;
|
|
2079
2081
|
isMuted: boolean;
|
|
2080
2082
|
onMuteToggle: () => void;
|
|
2081
2083
|
};
|
|
2082
|
-
declare const _default$
|
|
2084
|
+
declare const _default$o: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<VideoProps & React__default.RefAttributes<HTMLVideoElement>>>;
|
|
2083
2085
|
|
|
2084
2086
|
type UlLiProps = {
|
|
2085
2087
|
list: string[];
|
|
@@ -2656,9 +2658,9 @@ type SlotsGridItemProps = {
|
|
|
2656
2658
|
onSelectionChange: () => void;
|
|
2657
2659
|
};
|
|
2658
2660
|
|
|
2659
|
-
declare const _default$
|
|
2661
|
+
declare const _default$n: React__default.NamedExoticComponent<SlotsGridProps>;
|
|
2660
2662
|
|
|
2661
|
-
declare const _default$
|
|
2663
|
+
declare const _default$m: React.NamedExoticComponent<SlotsGridItemProps>;
|
|
2662
2664
|
|
|
2663
2665
|
type PushNotificationsModalProps = {
|
|
2664
2666
|
onApplyPermission: () => void;
|
|
@@ -2758,23 +2760,23 @@ type ShareModalFeatureProps = {
|
|
|
2758
2760
|
};
|
|
2759
2761
|
declare const ShareModalFeature: FC<ShareModalFeatureProps>;
|
|
2760
2762
|
|
|
2761
|
-
declare const _default$
|
|
2763
|
+
declare const _default$l: React__default.NamedExoticComponent<SpecialistPaymentConsultationDetailsType & TranslationType>;
|
|
2762
2764
|
|
|
2763
|
-
declare const _default$
|
|
2765
|
+
declare const _default$k: React__default.NamedExoticComponent<SpecialistPaymentCardProps & TranslationType>;
|
|
2764
2766
|
|
|
2765
2767
|
type SpecialistPaymentCommonCardSkeletonType = {
|
|
2766
2768
|
className?: string;
|
|
2767
2769
|
};
|
|
2768
2770
|
declare const SpecialistPaymentCommonCardSkeleton: (props: SpecialistPaymentCommonCardSkeletonType) => JSX.Element;
|
|
2769
2771
|
|
|
2770
|
-
declare const _default$
|
|
2772
|
+
declare const _default$j: React__default.NamedExoticComponent<SpecialistPaymentConsultationsProps & TranslationType>;
|
|
2771
2773
|
|
|
2772
2774
|
type ConsultationsListProps = {
|
|
2773
2775
|
consultations: SpecialistConsultation[];
|
|
2774
2776
|
locale?: string;
|
|
2775
2777
|
consultationClick?: (consultation: SpecialistConsultation) => void;
|
|
2776
2778
|
};
|
|
2777
|
-
declare const _default$
|
|
2779
|
+
declare const _default$i: React__default.NamedExoticComponent<ConsultationsListProps>;
|
|
2778
2780
|
|
|
2779
2781
|
type ConsultationsListSkeletonType = {
|
|
2780
2782
|
className?: string;
|
|
@@ -2789,9 +2791,9 @@ type CalendarPickerFeatureProps = {
|
|
|
2789
2791
|
monthsMore?: number;
|
|
2790
2792
|
dateCallback: (date: Date) => void;
|
|
2791
2793
|
};
|
|
2792
|
-
declare const _default$
|
|
2794
|
+
declare const _default$h: React__default.NamedExoticComponent<CalendarPickerFeatureProps & TranslationType>;
|
|
2793
2795
|
|
|
2794
|
-
declare const _default$
|
|
2796
|
+
declare const _default$g: React__default.NamedExoticComponent<PaymentCalendarFeatureProps & TranslationType>;
|
|
2795
2797
|
|
|
2796
2798
|
type GoogleCalendarModalFeatureProps = {
|
|
2797
2799
|
isOpen: boolean;
|
|
@@ -2813,7 +2815,9 @@ type ReviewCardFeatureProps = {
|
|
|
2813
2815
|
review: string;
|
|
2814
2816
|
size?: 'default' | 'small';
|
|
2815
2817
|
} & TranslationType;
|
|
2816
|
-
declare const _default$
|
|
2818
|
+
declare const _default$f: React__default.NamedExoticComponent<ReviewCardFeatureProps>;
|
|
2819
|
+
|
|
2820
|
+
declare const ReviewsCardFeatureSkeleton: React__default.MemoExoticComponent<() => JSX.Element>;
|
|
2817
2821
|
|
|
2818
2822
|
type AppNotSupportedProps = {
|
|
2819
2823
|
isOpen: boolean;
|
|
@@ -2899,7 +2903,7 @@ type ScreenInputFormFeatureProps = {
|
|
|
2899
2903
|
icon?: ReactNode | string;
|
|
2900
2904
|
isKeyboardShown?: boolean;
|
|
2901
2905
|
};
|
|
2902
|
-
declare const _default$
|
|
2906
|
+
declare const _default$e: React__default.NamedExoticComponent<ScreenInputFormFeatureProps>;
|
|
2903
2907
|
|
|
2904
2908
|
type SelectionType = {
|
|
2905
2909
|
value: any;
|
|
@@ -2917,7 +2921,7 @@ type SpecialistDrumPickerWidgetProps = {
|
|
|
2917
2921
|
onTouchStart?: () => void;
|
|
2918
2922
|
onTouchEnd?: () => void;
|
|
2919
2923
|
};
|
|
2920
|
-
declare const _default$
|
|
2924
|
+
declare const _default$d: React__default.NamedExoticComponent<SpecialistDrumPickerWidgetProps>;
|
|
2921
2925
|
|
|
2922
2926
|
type TextAreaFormFeatureProps = {
|
|
2923
2927
|
title?: string;
|
|
@@ -2931,7 +2935,7 @@ type TextAreaFormFeatureProps = {
|
|
|
2931
2935
|
isFocus?: boolean;
|
|
2932
2936
|
isKeyboardShown?: boolean;
|
|
2933
2937
|
};
|
|
2934
|
-
declare const _default$
|
|
2938
|
+
declare const _default$c: React__default.NamedExoticComponent<TextAreaFormFeatureProps>;
|
|
2935
2939
|
|
|
2936
2940
|
type AcceptAgreementFeatureProps = {
|
|
2937
2941
|
isAccepted: boolean;
|
|
@@ -2952,32 +2956,32 @@ type SelectWithSearchFormFeatureProps = {
|
|
|
2952
2956
|
otherText?: string;
|
|
2953
2957
|
buttonLabel?: string;
|
|
2954
2958
|
} & WithTranslation;
|
|
2955
|
-
declare const _default$
|
|
2959
|
+
declare const _default$b: React__default.NamedExoticComponent<SelectWithSearchFormFeatureProps>;
|
|
2956
2960
|
|
|
2957
2961
|
type MarkdownContainerFeatureProps = {
|
|
2958
2962
|
children?: string | null;
|
|
2959
2963
|
options?: MarkdownToJSX.Options;
|
|
2960
2964
|
className?: string;
|
|
2961
2965
|
};
|
|
2962
|
-
declare const _default$
|
|
2966
|
+
declare const _default$a: React__default.NamedExoticComponent<MarkdownContainerFeatureProps>;
|
|
2963
2967
|
|
|
2964
|
-
declare const _default$
|
|
2968
|
+
declare const _default$9: React__default.NamedExoticComponent<OnBoardingStartScreenType>;
|
|
2965
2969
|
|
|
2966
|
-
declare const _default$
|
|
2970
|
+
declare const _default$8: React__default.NamedExoticComponent<OnBoardingInfoScreenType>;
|
|
2967
2971
|
|
|
2968
2972
|
type OnBoardingMultiSelectionScreenPreviewFeatureProps = {
|
|
2969
2973
|
onChange?: (value: string[]) => void;
|
|
2970
2974
|
defaultValues?: string[];
|
|
2971
2975
|
} & OnBoardingMultiSelectScreenType;
|
|
2972
|
-
declare const _default$
|
|
2976
|
+
declare const _default$7: React__default.NamedExoticComponent<OnBoardingMultiSelectionScreenPreviewFeatureProps>;
|
|
2973
2977
|
|
|
2974
2978
|
type OnBoardingSingleSelectionScreenPreviewFeatureProps = {
|
|
2975
2979
|
onChange?: (value: string) => void;
|
|
2976
2980
|
defaultValues?: string[];
|
|
2977
2981
|
} & OnBoardingSingleSelectScreenType;
|
|
2978
|
-
declare const _default$
|
|
2982
|
+
declare const _default$6: React__default.NamedExoticComponent<OnBoardingSingleSelectionScreenPreviewFeatureProps>;
|
|
2979
2983
|
|
|
2980
|
-
declare const _default$
|
|
2984
|
+
declare const _default$5: React__default.NamedExoticComponent<OnBoardingLoaderScreenType>;
|
|
2981
2985
|
|
|
2982
2986
|
type OnBoardingProgressFeatureProps = {
|
|
2983
2987
|
progress: number;
|
|
@@ -2986,7 +2990,9 @@ type OnBoardingProgressFeatureProps = {
|
|
|
2986
2990
|
onBackButtonClick?: () => void;
|
|
2987
2991
|
contentStyle?: OnBoardingScreenStyleOptions;
|
|
2988
2992
|
};
|
|
2989
|
-
declare const _default$
|
|
2993
|
+
declare const _default$4: React__default.NamedExoticComponent<OnBoardingProgressFeatureProps>;
|
|
2994
|
+
|
|
2995
|
+
declare const _default$3: React__default.NamedExoticComponent<OnBoardingReviewsScreenType>;
|
|
2990
2996
|
|
|
2991
2997
|
type SupportedCountryLocale = string;
|
|
2992
2998
|
type Tabs = {
|
|
@@ -3072,4 +3078,4 @@ type UpdateContractWidgetProps = {
|
|
|
3072
3078
|
};
|
|
3073
3079
|
declare function UpdateContractWidget({ applyText, onApply, heading, image, avatar, agreementText, handlePressLink, isAccepted, setIsAccepted, isLoading, }: UpdateContractWidgetProps): JSX.Element;
|
|
3074
3080
|
|
|
3075
|
-
export { AcceptAgreementFeature, Action, AppFooter, _default$
|
|
3081
|
+
export { AcceptAgreementFeature, Action, AppFooter, _default$C as AppFooter_v2, AppHeader, AppHeader_v2, AppNotSupportedFeature, ArchivedConsultationCard, Avatar, AvatarProps$1 as AvatarProps, _default$B as Avatar_v2, BREAKPOINT_ICON_SIZE, _default$x as Badge, _default$Q as BookingScheduleTime, _default$P as BookingSpecialistInfo, BreakPointPositionProps, BreakPointPositionResult, Button, Button_v2, COUNTRIES_MAPPER, Calendar, _default$h as CalendarPickerFeature, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$19 as ChatListItem, _default$17 as ChatListSkeleton, _default$18 as ChatMessage, ChatMessageSkeleton, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$K as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingComponentProps, CircleRatingContent, CircleRatingContext, CircleRatingContextData, CircleRatingContextProps, CircleRatingDataProps, CircleRatingDataResult, CircleRatingLegendProps, CircleRatingProvider, CircleRatingRange, CircleRatingSize, CollapsableText, ConditionRulesType, _default$10 as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$Z as ConsultationModal, _default$l as ConsultationPricingFeature, _default$X as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentCard, ContentRendererProps, ContentTree as ContractTreeFeature, CountdownTimerFeature, CountryOfOriginModal, CurrencyLocaleMapper, CurrencySignByLocale, CustomButton, _default$L as CustomCheckbox, CustomRadioButton, _default$M as CustomSelect, _default$N as CustomTextarea, DatePicker, _default$V as DaySlider, DayToRender, DrumListPicker, DynamicCommissionValue, _default$R as EducationCard, _default$16 as EmptyChatList, EmptyChatMessages, _default$_ as EmptyConsultations, EntryNotFound, EntryNotFoundProps, ErrorCardFeature, _default$H as Flag, FlagTypes, _default$z as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconAddModerator, IconApple, IconArrowDown, IconArrowLeft, IconArrowRight, IconArrowTopRight, IconAttachMoney, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$t as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCancel, IconCancelRounded, IconCapFilled, IconChat3d, IconChatFilled, IconChatOutline, IconCheck, IconCheckCircle, IconCheckSmall, IconCheckboxChecked, IconCheckboxUnchecked, IconClient, IconClientFilled, IconClose, IconCopy, IconCreditCard, IconDelete, IconDocument, IconEcgHeart, IconEdit, IconEditCalendar, IconEventBusy, IconEye, IconEyeOff, IconGallery, IconGift, IconGoogle, IconHome, IconIdCard, IconInvisible, IconInvoice, IconLanguage, IconLeftArrow, IconLetter, IconLink, IconLock, IconLogout, IconManageAccounts, IconMinus, IconMoreVertical, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPause, IconPersonAlert, IconPlus, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconProps$B as IconProps, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconReceiptLong, IconResume, IconSchema, IconSearch, IconSend, IconSettings, IconShare, IconSpinner, IconStar, IconStarFilled, IconStylus, IconSuccess, IconText, IconTime, IconTimeAdd, IconUnmute, IconUserNotFound, IconVerifiedUser, IconVisible, IconWarning, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, InputSearch, _default$p as Item, _default$w as ItemCard, LabelArrowRedirect, LanguagesList, _default$1d as LetterAvatar, _default$I as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListButton, ListItemType, _default$q as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$r as Loading, LouseConnect, _default$a as MarkdownContainerFeature, _default$1a as MediaPlayer, Modal, ModalCalendar, ModalSheet, NavigationBar, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, OnBoardingBaseScreenType, OnBoardingFlowType, _default$8 as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, _default$5 as OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$7 as OnBoardingMultiSelectionScreenPreviewFeature, _default$4 as OnBoardingProgressFeature, _default$3 as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenBgType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenOptionType, OnBoardingScreenOptions, OnBoardingScreenStyleOptions, OnBoardingScreensType, OnBoardingSingleSelectScreenType, _default$6 as OnBoardingSingleSelectionScreenPreviewFeature, _default$9 as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$g as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$i as PaymentSessionsList, _default$1c as PersonDateTimeCard, _default$y as Picture, _default$G as ProfileInformation, _default$T as ProfileView, _default$J as ProgressBar, ProgressBarDashed, _default$s as ProgressBar_v2, ProgressRangeProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$u as Rating, RatingCircleWrapper, _default$W as ReSchedule, ReScheduleSuccess, Refresher, ResponseFileType, ReviewCard, _default$f as ReviewCardFeature, ReviewStatistics, ReviewSwiperSection, ReviewsCardFeatureSkeleton, RoundButton, RowItemType, RowSelect, RowSelectProps, Rule, SIZES, _default$d as ScreenDrumPickerFormFeature, ScreenInput, _default$e as ScreenInputFormFeature, ScreenInputUpdateFeature, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$1b as SelectImpressionEmoji, SelectItemType, _default$b as SelectWithSearchFormFeature, ShareModalFeature, ShortCurrencySignByLocale, _default$$ as SignUpSessionButton, _default$Y as SignUpSessionModal, SizeValues, Skeleton, _default$A as Skeleton_v2, _default$n as SlotsGrid, _default$m as SlotsGridItem, _default$S as SpecialistAbout, SpecialistCard$1 as SpecialistCard, SpecialistCardListWidget, _default$2 as SpecialistCardWidget, SpecialistConsultation, SpecialistConsultationPayment, _default$14 as SpecialistEducationCard, SpecialistInfoColumnFeature as SpecialistInfoColumn, SpecialistLangs, _default$F as SpecialistMatch, SpecialistPaymentCardProps, _default$k as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$j as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$1 as SpecialistPaymentWidget, SpecialistPaymentWidgetType, _default$13 as SpecialistProfileViewCard, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default$E as SpecialistStatistic, SpecialistStatisticsCard, SpecialistWorkDirections, Spinner, Spinner_v2, StarRating, StatisticsScroll, StatusTag, SuccessScreen, SupportedCurrency, SupportedLangs, SwitchDeviceCard, TabBar, TabItem, Tabs$1 as Tabs, Tag, _default$c as TextAreaFormFeature, _default$O as TextInput, _default$15 as Textarea, _default$v as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$D as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UsersPsychologistScrollList, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$o as Video, _default$11 as VideoCallInfo, _default$12 as VideoPlayer, _default$U as WorkDirections, YourLocalTimeBlock, appThemes, decOfNum, getCountryKeyByName, getProgressForBreakPoint, getSignAgreementsTabs, mergeRefs, newShade, priceNormalize, replaceMarkdownWithReactElements, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDomRef, useEvent, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useToastContext };
|