@mindly/ui-components 5.98.20 → 5.99.1
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/configs/tailwind/colors.d.ts +5 -0
- package/dist/cjs/index.js +5 -5
- package/dist/cjs/lib/AppHeader/AppHeader.d.ts +1 -0
- package/dist/cjs/lib2/features/OnBoardingFlow/OnBoardingLoaderScreenPreviewFeature/OnBoardingLoaderScreenPreviewFeature.d.ts +7 -3
- package/dist/cjs/lib2/shared/hooks/useCircleRating.d.ts +7 -3
- package/dist/cjs/lib2/shared/types/onBoardingFlow.type.d.ts +5 -0
- package/dist/cjs/lib2/shared/types/ratingCircleTypes.d.ts +4 -0
- package/dist/cjs/lib2/shared/ui/RatingCircle/RatingCircleWrapper.d.ts +1 -1
- package/dist/cjs/lib2/shared/ui/RatingCircle/styles.d.ts +49 -0
- package/dist/cjs/lib2/widgets/SpecialistDetailWidget/index.d.ts +1 -0
- package/dist/esm/configs/tailwind/colors.d.ts +5 -0
- package/dist/esm/index.js +5 -5
- package/dist/esm/lib/AppHeader/AppHeader.d.ts +1 -0
- package/dist/esm/lib2/features/OnBoardingFlow/OnBoardingLoaderScreenPreviewFeature/OnBoardingLoaderScreenPreviewFeature.d.ts +7 -3
- package/dist/esm/lib2/shared/hooks/useCircleRating.d.ts +7 -3
- package/dist/esm/lib2/shared/types/onBoardingFlow.type.d.ts +5 -0
- package/dist/esm/lib2/shared/types/ratingCircleTypes.d.ts +4 -0
- package/dist/esm/lib2/shared/ui/RatingCircle/RatingCircleWrapper.d.ts +1 -1
- package/dist/esm/lib2/shared/ui/RatingCircle/styles.d.ts +49 -0
- package/dist/esm/lib2/widgets/SpecialistDetailWidget/index.d.ts +1 -0
- package/dist/index.d.ts +90 -71
- package/package.json +1 -1
- package/src/configs/tailwind/colors.ts +6 -0
- package/src/lib2/shared/css/tailwind.css +1 -0
package/dist/index.d.ts
CHANGED
|
@@ -226,7 +226,7 @@ type LetterAvatarProps = {
|
|
|
226
226
|
fontSize?: number;
|
|
227
227
|
onClick?: () => void;
|
|
228
228
|
};
|
|
229
|
-
declare const _default$
|
|
229
|
+
declare const _default$1i: React__default.NamedExoticComponent<LetterAvatarProps>;
|
|
230
230
|
|
|
231
231
|
type ImageWithFallbackProps = JSX.IntrinsicElements['img'] & {
|
|
232
232
|
onErrorContent: React__default.ReactElement;
|
|
@@ -238,7 +238,7 @@ type PersonDateTimeCardProps = {
|
|
|
238
238
|
name: string;
|
|
239
239
|
dateTime: Date;
|
|
240
240
|
};
|
|
241
|
-
declare const _default$
|
|
241
|
+
declare const _default$1h: React__default.NamedExoticComponent<PersonDateTimeCardProps>;
|
|
242
242
|
|
|
243
243
|
type PsychologistProfileType = {
|
|
244
244
|
id: string;
|
|
@@ -364,6 +364,7 @@ declare const Avatar: FC<AvatarProps$1>;
|
|
|
364
364
|
type AppHeaderProps$1 = {
|
|
365
365
|
fullwidth?: boolean;
|
|
366
366
|
className?: string;
|
|
367
|
+
toolbarClassName?: string;
|
|
367
368
|
};
|
|
368
369
|
declare const AppHeader: FC<AppHeaderProps$1>;
|
|
369
370
|
|
|
@@ -404,7 +405,7 @@ type SelectImpressionEmojiProps = {
|
|
|
404
405
|
onChange?: (val: ImpressionEmojiEnum) => void;
|
|
405
406
|
};
|
|
406
407
|
|
|
407
|
-
declare const _default$
|
|
408
|
+
declare const _default$1g: React__default.NamedExoticComponent<SelectImpressionEmojiProps>;
|
|
408
409
|
|
|
409
410
|
interface FooterForBookingProps {
|
|
410
411
|
eventHandler: (props?: React__default.SyntheticEvent) => void;
|
|
@@ -436,7 +437,7 @@ type MediaPlayerProps<TCameraTrack extends Playable | undefined, TAudioTrack ext
|
|
|
436
437
|
showControls: boolean;
|
|
437
438
|
isScreenSharing?: boolean;
|
|
438
439
|
} & HTMLAttributes<HTMLDivElement>;
|
|
439
|
-
declare const _default$
|
|
440
|
+
declare const _default$1f: <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;
|
|
440
441
|
|
|
441
442
|
type RoundButtonPropsType = {
|
|
442
443
|
disabled?: boolean;
|
|
@@ -465,7 +466,7 @@ type ChatListItemProps = {
|
|
|
465
466
|
isDisabled?: boolean;
|
|
466
467
|
t?: WithTranslation['t'];
|
|
467
468
|
};
|
|
468
|
-
declare const _default$
|
|
469
|
+
declare const _default$1e: React__default.NamedExoticComponent<ChatListItemProps>;
|
|
469
470
|
|
|
470
471
|
type ChatMessageProps = {
|
|
471
472
|
message: string | File;
|
|
@@ -493,11 +494,11 @@ type ChatMessageProps = {
|
|
|
493
494
|
onClickHandler: () => void;
|
|
494
495
|
}[] | null;
|
|
495
496
|
};
|
|
496
|
-
declare const _default$
|
|
497
|
+
declare const _default$1d: React__default.NamedExoticComponent<ChatMessageProps>;
|
|
497
498
|
|
|
498
499
|
declare const ChatMessageSkeleton: () => JSX.Element;
|
|
499
500
|
|
|
500
|
-
declare const _default$
|
|
501
|
+
declare const _default$1c: React__default.MemoExoticComponent<() => JSX.Element>;
|
|
501
502
|
|
|
502
503
|
type EmptyChatList = {
|
|
503
504
|
title?: string;
|
|
@@ -507,7 +508,7 @@ type EmptyChatList = {
|
|
|
507
508
|
onClick?: () => void;
|
|
508
509
|
};
|
|
509
510
|
declare const EmptyChatList: FC<EmptyChatList>;
|
|
510
|
-
declare const _default$
|
|
511
|
+
declare const _default$1b: React__default.NamedExoticComponent<EmptyChatList>;
|
|
511
512
|
|
|
512
513
|
type EmptyChatMessagesProps = {
|
|
513
514
|
title?: string;
|
|
@@ -532,7 +533,7 @@ type TextareaProps = {
|
|
|
532
533
|
onFileSelect?: (file: File | null, type: 'file' | 'image' | 'video', fileInfo: FileInfoType) => void;
|
|
533
534
|
t?: WithTranslation['t'];
|
|
534
535
|
};
|
|
535
|
-
declare const _default$
|
|
536
|
+
declare const _default$1a: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TextareaProps & React__default.RefAttributes<HTMLIonFooterElement>>>;
|
|
536
537
|
|
|
537
538
|
type LouseConnectProps = {
|
|
538
539
|
onClick?: () => void;
|
|
@@ -611,7 +612,7 @@ type SpecialistEducationCardProps$1 = {
|
|
|
611
612
|
yearEnd?: number | null;
|
|
612
613
|
showLoader?: boolean;
|
|
613
614
|
};
|
|
614
|
-
declare const _default$
|
|
615
|
+
declare const _default$19: React__default.NamedExoticComponent<SpecialistEducationCardProps$1>;
|
|
615
616
|
|
|
616
617
|
type SpecialistProfileViewCardProps$1 = {
|
|
617
618
|
avatarLink?: string | null;
|
|
@@ -624,7 +625,7 @@ type SpecialistProfileViewCardProps$1 = {
|
|
|
624
625
|
videoLinkUrl?: string | null;
|
|
625
626
|
showLoader?: boolean;
|
|
626
627
|
} & React__default.DetailedHTMLProps<React__default.HTMLAttributes<HTMLDivElement>, HTMLDivElement>;
|
|
627
|
-
declare const _default$
|
|
628
|
+
declare const _default$18: React__default.NamedExoticComponent<SpecialistProfileViewCardProps$1>;
|
|
628
629
|
|
|
629
630
|
type SpecialistStatisticsCardProps$1 = {
|
|
630
631
|
activeClients?: number;
|
|
@@ -660,7 +661,7 @@ type VideoPlayerProps = {
|
|
|
660
661
|
closeModalHandler?: () => void;
|
|
661
662
|
onErrorContent: React__default.ReactElement;
|
|
662
663
|
} & JSX$1.IonModal;
|
|
663
|
-
declare const _default$
|
|
664
|
+
declare const _default$17: React__default.NamedExoticComponent<VideoPlayerProps>;
|
|
664
665
|
|
|
665
666
|
type NotSupportModalProps = {
|
|
666
667
|
closeModal?: () => void;
|
|
@@ -696,7 +697,7 @@ type VideoCallInfoProps = {
|
|
|
696
697
|
abbreviatedSeconds: string;
|
|
697
698
|
};
|
|
698
699
|
};
|
|
699
|
-
declare const _default$
|
|
700
|
+
declare const _default$16: React__default.NamedExoticComponent<VideoCallInfoProps>;
|
|
700
701
|
|
|
701
702
|
declare enum ConsultationCardType {
|
|
702
703
|
FEATURE = "feature",
|
|
@@ -732,14 +733,14 @@ type ConsultationCardProps = {
|
|
|
732
733
|
isBlockedText?: string;
|
|
733
734
|
};
|
|
734
735
|
|
|
735
|
-
declare const _default$
|
|
736
|
+
declare const _default$15: React__default.NamedExoticComponent<ConsultationCardProps>;
|
|
736
737
|
|
|
737
738
|
type SignUpSessionButtonProps = {
|
|
738
739
|
label: string;
|
|
739
740
|
isLoading?: boolean;
|
|
740
741
|
onClick?: () => void;
|
|
741
742
|
};
|
|
742
|
-
declare const _default$
|
|
743
|
+
declare const _default$14: React__default.NamedExoticComponent<SignUpSessionButtonProps>;
|
|
743
744
|
|
|
744
745
|
type EmptyConsultationsProps = {
|
|
745
746
|
title: string;
|
|
@@ -747,7 +748,7 @@ type EmptyConsultationsProps = {
|
|
|
747
748
|
buttonLabel?: string;
|
|
748
749
|
onClick?: () => void;
|
|
749
750
|
};
|
|
750
|
-
declare const _default$
|
|
751
|
+
declare const _default$13: React__default.NamedExoticComponent<EmptyConsultationsProps>;
|
|
751
752
|
|
|
752
753
|
type ConsultationModalProps = {
|
|
753
754
|
isOpen: boolean;
|
|
@@ -783,7 +784,7 @@ type ConsultationModalProps = {
|
|
|
783
784
|
started?: string;
|
|
784
785
|
};
|
|
785
786
|
};
|
|
786
|
-
declare const _default$
|
|
787
|
+
declare const _default$12: React__default.NamedExoticComponent<ConsultationModalProps>;
|
|
787
788
|
|
|
788
789
|
type SpecialistData = {
|
|
789
790
|
id: string;
|
|
@@ -801,7 +802,7 @@ type SignUpSessionModalProps = {
|
|
|
801
802
|
title: string;
|
|
802
803
|
cancelBtnLabel: string;
|
|
803
804
|
};
|
|
804
|
-
declare const _default$
|
|
805
|
+
declare const _default$11: React__default.NamedExoticComponent<SignUpSessionModalProps>;
|
|
805
806
|
|
|
806
807
|
type ConsultationSpecialistCardProps = {
|
|
807
808
|
id: string;
|
|
@@ -813,7 +814,7 @@ type ConsultationSpecialistCardProps = {
|
|
|
813
814
|
signInBtnLabel: string;
|
|
814
815
|
isBlockedText?: string;
|
|
815
816
|
};
|
|
816
|
-
declare const _default$
|
|
817
|
+
declare const _default$10: React__default.NamedExoticComponent<ConsultationSpecialistCardProps>;
|
|
817
818
|
|
|
818
819
|
type UserInfoModalProps = {
|
|
819
820
|
isOpen: boolean;
|
|
@@ -884,7 +885,7 @@ type ReScheduleProps = {
|
|
|
884
885
|
btnLabel: string;
|
|
885
886
|
};
|
|
886
887
|
};
|
|
887
|
-
declare const _default
|
|
888
|
+
declare const _default$$: React__default.NamedExoticComponent<ReScheduleProps>;
|
|
888
889
|
|
|
889
890
|
type ReScheduleSuccessProps = {
|
|
890
891
|
name: string;
|
|
@@ -922,7 +923,7 @@ type DaySliderProps = JSX$1.IonSlides & HTMLAttributes<HTMLIonSlidesElement> & R
|
|
|
922
923
|
tomorrow?: string;
|
|
923
924
|
};
|
|
924
925
|
};
|
|
925
|
-
declare const _default
|
|
926
|
+
declare const _default$_: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<DaySliderProps, "ref"> & React__default.RefAttributes<HTMLIonSlidesElement>>>;
|
|
926
927
|
|
|
927
928
|
type SpecialistWorkDirectionsPropsType = {
|
|
928
929
|
workDirections?: string[] | [];
|
|
@@ -931,7 +932,7 @@ type SpecialistWorkDirectionsPropsType = {
|
|
|
931
932
|
moreLabel?: string;
|
|
932
933
|
hideLabel?: string;
|
|
933
934
|
};
|
|
934
|
-
declare const _default$
|
|
935
|
+
declare const _default$Z: React__default.NamedExoticComponent<SpecialistWorkDirectionsPropsType>;
|
|
935
936
|
|
|
936
937
|
type SpecialistProfileViewCardProps = {
|
|
937
938
|
videoLink?: string;
|
|
@@ -941,7 +942,7 @@ type SpecialistProfileViewCardProps = {
|
|
|
941
942
|
isLoading?: boolean;
|
|
942
943
|
videoDurationSeconds?: number;
|
|
943
944
|
};
|
|
944
|
-
declare const _default$
|
|
945
|
+
declare const _default$Y: React__default.NamedExoticComponent<SpecialistProfileViewCardProps>;
|
|
945
946
|
|
|
946
947
|
type SpecialistAboutProps = {
|
|
947
948
|
text?: string;
|
|
@@ -950,7 +951,7 @@ type SpecialistAboutProps = {
|
|
|
950
951
|
moreLabel?: string;
|
|
951
952
|
hideLabel?: string;
|
|
952
953
|
};
|
|
953
|
-
declare const _default$
|
|
954
|
+
declare const _default$X: React__default.NamedExoticComponent<SpecialistAboutProps>;
|
|
954
955
|
|
|
955
956
|
type SpecialistEducationCardProps = {
|
|
956
957
|
institutionName?: string;
|
|
@@ -961,7 +962,7 @@ type SpecialistEducationCardProps = {
|
|
|
961
962
|
yearEnd?: number | null;
|
|
962
963
|
showLoader?: boolean;
|
|
963
964
|
};
|
|
964
|
-
declare const _default$
|
|
965
|
+
declare const _default$W: React__default.NamedExoticComponent<SpecialistEducationCardProps>;
|
|
965
966
|
|
|
966
967
|
type SpecialistStatisticsCardProps = {
|
|
967
968
|
trust?: boolean;
|
|
@@ -1007,7 +1008,7 @@ type BookingScheduleTimeProps = {
|
|
|
1007
1008
|
onClick?: (index: number, item: string) => void;
|
|
1008
1009
|
isLoading?: boolean;
|
|
1009
1010
|
};
|
|
1010
|
-
declare const _default$
|
|
1011
|
+
declare const _default$V: React__default.NamedExoticComponent<BookingScheduleTimeProps>;
|
|
1011
1012
|
|
|
1012
1013
|
type BookingSpecialistInfoProps = {
|
|
1013
1014
|
name: string;
|
|
@@ -1016,7 +1017,7 @@ type BookingSpecialistInfoProps = {
|
|
|
1016
1017
|
avatar?: string;
|
|
1017
1018
|
isLoading?: boolean;
|
|
1018
1019
|
};
|
|
1019
|
-
declare const _default$
|
|
1020
|
+
declare const _default$U: React__default.NamedExoticComponent<BookingSpecialistInfoProps>;
|
|
1020
1021
|
|
|
1021
1022
|
declare enum TypographyVariantsEnum {
|
|
1022
1023
|
Title48Bold = "Title/48 Bold",
|
|
@@ -1064,7 +1065,7 @@ type TypographyProps = {
|
|
|
1064
1065
|
isError?: boolean;
|
|
1065
1066
|
};
|
|
1066
1067
|
|
|
1067
|
-
declare const _default$
|
|
1068
|
+
declare const _default$T: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TypographyProps & React__default.RefAttributes<HTMLDivElement>>>;
|
|
1068
1069
|
|
|
1069
1070
|
type AlertCardVariants = 'transparent' | 'yellow' | 'blue';
|
|
1070
1071
|
type AlertCardProps = React$1.ComponentPropsWithoutRef<'div'> & {
|
|
@@ -1080,7 +1081,7 @@ type AlertCardProps = React$1.ComponentPropsWithoutRef<'div'> & {
|
|
|
1080
1081
|
};
|
|
1081
1082
|
};
|
|
1082
1083
|
|
|
1083
|
-
declare const _default$
|
|
1084
|
+
declare const _default$S: React$1.NamedExoticComponent<AlertCardProps>;
|
|
1084
1085
|
|
|
1085
1086
|
type AppFooterProps = {
|
|
1086
1087
|
children?: React__default.ReactNode;
|
|
@@ -1091,7 +1092,7 @@ type AppFooterProps = {
|
|
|
1091
1092
|
toolbarStyle?: CSSProperties;
|
|
1092
1093
|
className?: string;
|
|
1093
1094
|
};
|
|
1094
|
-
declare const _default$
|
|
1095
|
+
declare const _default$R: React__default.NamedExoticComponent<AppFooterProps>;
|
|
1095
1096
|
|
|
1096
1097
|
type AvatarRoundVariants = 'circle' | 'drop' | 'small';
|
|
1097
1098
|
|
|
@@ -1106,14 +1107,14 @@ type AvatarProps = {
|
|
|
1106
1107
|
onClick?(): void;
|
|
1107
1108
|
border?: boolean | string;
|
|
1108
1109
|
};
|
|
1109
|
-
declare const _default$
|
|
1110
|
+
declare const _default$Q: React__default.NamedExoticComponent<AvatarProps>;
|
|
1110
1111
|
|
|
1111
1112
|
type SkeletonProps = {
|
|
1112
1113
|
animated?: boolean;
|
|
1113
1114
|
className?: string;
|
|
1114
1115
|
style?: React__default.CSSProperties;
|
|
1115
1116
|
};
|
|
1116
|
-
declare const _default$
|
|
1117
|
+
declare const _default$P: React__default.NamedExoticComponent<SkeletonProps>;
|
|
1117
1118
|
|
|
1118
1119
|
type ButtonProps$1 = {
|
|
1119
1120
|
fill?: 'outline' | 'clear';
|
|
@@ -1150,7 +1151,7 @@ type FlagProps$1 = {
|
|
|
1150
1151
|
name: string;
|
|
1151
1152
|
className?: string;
|
|
1152
1153
|
};
|
|
1153
|
-
declare const _default$
|
|
1154
|
+
declare const _default$O: React__default.NamedExoticComponent<FlagProps$1>;
|
|
1154
1155
|
|
|
1155
1156
|
type PictureProps = {
|
|
1156
1157
|
width: number;
|
|
@@ -1167,7 +1168,7 @@ type PictureProps = {
|
|
|
1167
1168
|
responsive?: boolean;
|
|
1168
1169
|
containerWidth?: number;
|
|
1169
1170
|
};
|
|
1170
|
-
declare const _default$
|
|
1171
|
+
declare const _default$N: React__default.NamedExoticComponent<PictureProps>;
|
|
1171
1172
|
|
|
1172
1173
|
type BadgeType = 'default' | 'accent';
|
|
1173
1174
|
type BadgeVariants = 'attention' | 'neutral' | 'success' | 'warning' | 'brand' | 'info';
|
|
@@ -1178,7 +1179,7 @@ type BadgeProps = React$1.ComponentPropsWithoutRef<'span'> & {
|
|
|
1178
1179
|
iconType?: 'check';
|
|
1179
1180
|
};
|
|
1180
1181
|
|
|
1181
|
-
declare const _default$
|
|
1182
|
+
declare const _default$M: React$1.NamedExoticComponent<BadgeProps>;
|
|
1182
1183
|
|
|
1183
1184
|
type ItemCardVariants = 'neutral' | 'transparent' | 'transparent20';
|
|
1184
1185
|
type ItemCardProps = React$1.ComponentPropsWithoutRef<'div'> & {
|
|
@@ -1186,7 +1187,7 @@ type ItemCardProps = React$1.ComponentPropsWithoutRef<'div'> & {
|
|
|
1186
1187
|
size?: 'M' | 'M4' | 'M45';
|
|
1187
1188
|
};
|
|
1188
1189
|
|
|
1189
|
-
declare const _default$
|
|
1190
|
+
declare const _default$L: React$1.NamedExoticComponent<ItemCardProps>;
|
|
1190
1191
|
|
|
1191
1192
|
type AppHeaderProps = {
|
|
1192
1193
|
fullwidth?: boolean;
|
|
@@ -1250,6 +1251,7 @@ type CircleRatingLegendProps = {
|
|
|
1250
1251
|
t: WithTranslation['t'];
|
|
1251
1252
|
isReverse?: boolean;
|
|
1252
1253
|
isPercentage?: boolean;
|
|
1254
|
+
isShowLegend?: boolean;
|
|
1253
1255
|
};
|
|
1254
1256
|
type CircleRatingComponentProps = {
|
|
1255
1257
|
size: keyof typeof CircleRatingSize;
|
|
@@ -1266,7 +1268,10 @@ type CircleRatingComponentProps = {
|
|
|
1266
1268
|
isZeroTransparent?: boolean;
|
|
1267
1269
|
isWithOverlap?: boolean;
|
|
1268
1270
|
isWithAnimation?: boolean;
|
|
1271
|
+
isPrimaryColor?: boolean;
|
|
1272
|
+
isProgressWithAnimation?: boolean;
|
|
1269
1273
|
className?: string;
|
|
1274
|
+
onProgressEnd?: () => void;
|
|
1270
1275
|
};
|
|
1271
1276
|
type CircleRatingContextProps = CircleRatingComponentProps & {
|
|
1272
1277
|
legend?: string[];
|
|
@@ -1563,6 +1568,11 @@ type OnBoardingLoaderScreenType = OnBoardingBaseScreenType & {
|
|
|
1563
1568
|
answerScreenId?: string[];
|
|
1564
1569
|
allScreens?: Record<string, OnBoardingScreensType>;
|
|
1565
1570
|
selectedAnswers?: Record<string, string[]>;
|
|
1571
|
+
loadingItemDuration?: number;
|
|
1572
|
+
listItems?: {
|
|
1573
|
+
id: string;
|
|
1574
|
+
label: string;
|
|
1575
|
+
}[];
|
|
1566
1576
|
};
|
|
1567
1577
|
type OnBoardingReviewsScreenType = OnBoardingBaseScreenType & OnBoardingScreenButtonType & TranslationType & {
|
|
1568
1578
|
title?: string | null;
|
|
@@ -1924,7 +1934,7 @@ interface TextareaV2Props extends Omit<JSX$1.IonTextarea, 'color' | 'enterkeyhin
|
|
|
1924
1934
|
onKeyPress?: (e: KeyboardEvent<HTMLIonTextareaElement>) => void;
|
|
1925
1935
|
}
|
|
1926
1936
|
|
|
1927
|
-
declare const _default$
|
|
1937
|
+
declare const _default$K: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TextareaV2Props & React__default.RefAttributes<HTMLIonTextareaElement>>>;
|
|
1928
1938
|
|
|
1929
1939
|
type RatingProps = {
|
|
1930
1940
|
initialRating?: number;
|
|
@@ -1936,10 +1946,10 @@ type RatingProps = {
|
|
|
1936
1946
|
readonly?: boolean;
|
|
1937
1947
|
};
|
|
1938
1948
|
|
|
1939
|
-
declare const _default$
|
|
1949
|
+
declare const _default$J: React__default.NamedExoticComponent<RatingProps>;
|
|
1940
1950
|
|
|
1941
1951
|
declare const RatingCircleWrapper: FC<CircleRatingComponentProps & {
|
|
1942
|
-
t: WithTranslation | any;
|
|
1952
|
+
t: WithTranslation['t'] | any;
|
|
1943
1953
|
}>;
|
|
1944
1954
|
|
|
1945
1955
|
type IconButtonProps = {
|
|
@@ -1950,7 +1960,7 @@ type IconButtonProps = {
|
|
|
1950
1960
|
fill?: 'clear' | 'filled';
|
|
1951
1961
|
type?: 'button' | 'submit' | 'reset';
|
|
1952
1962
|
};
|
|
1953
|
-
declare const _default$
|
|
1963
|
+
declare const _default$I: React__default.NamedExoticComponent<IconButtonProps>;
|
|
1954
1964
|
|
|
1955
1965
|
type ToastProviderProps = ToastStateProps;
|
|
1956
1966
|
type MindlyToastProps = {
|
|
@@ -1996,17 +2006,17 @@ type ProgressBar_v2Props = {
|
|
|
1996
2006
|
animationDuration?: number;
|
|
1997
2007
|
onProgressEnd?: () => void;
|
|
1998
2008
|
};
|
|
1999
|
-
declare const _default$
|
|
2009
|
+
declare const _default$H: React__default.NamedExoticComponent<ProgressBar_v2Props>;
|
|
2000
2010
|
|
|
2001
2011
|
type LoadingProps = {
|
|
2002
2012
|
isOpen: boolean;
|
|
2003
2013
|
};
|
|
2004
|
-
declare const _default$
|
|
2014
|
+
declare const _default$G: React__default.NamedExoticComponent<LoadingProps>;
|
|
2005
2015
|
|
|
2006
2016
|
type ListItemsProps = React$1.HTMLAttributes<HTMLIonListElement> & {
|
|
2007
2017
|
withBorders?: boolean;
|
|
2008
2018
|
};
|
|
2009
|
-
declare const _default$
|
|
2019
|
+
declare const _default$F: React$1.NamedExoticComponent<ListItemsProps>;
|
|
2010
2020
|
|
|
2011
2021
|
type ItemProps = React$1.HTMLAttributes<HTMLIonItemElement> & {
|
|
2012
2022
|
leftContent?: React$1.ReactNode;
|
|
@@ -2018,7 +2028,7 @@ type ItemProps = React$1.HTMLAttributes<HTMLIonItemElement> & {
|
|
|
2018
2028
|
isError?: boolean;
|
|
2019
2029
|
status?: 'error' | 'attention';
|
|
2020
2030
|
};
|
|
2021
|
-
declare const _default$
|
|
2031
|
+
declare const _default$E: React$1.NamedExoticComponent<ItemProps>;
|
|
2022
2032
|
|
|
2023
2033
|
type VideoProps = {
|
|
2024
2034
|
src: string;
|
|
@@ -2038,7 +2048,7 @@ type VideoMethods = {
|
|
|
2038
2048
|
play(): void;
|
|
2039
2049
|
};
|
|
2040
2050
|
type VideoRef = HTMLVideoElement | VideoMethods;
|
|
2041
|
-
declare const _default$
|
|
2051
|
+
declare const _default$D: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<VideoProps & {
|
|
2042
2052
|
children?: React__default.ReactNode;
|
|
2043
2053
|
} & React__default.RefAttributes<VideoRef>>>;
|
|
2044
2054
|
|
|
@@ -2155,15 +2165,15 @@ type MatchProgressProps = {
|
|
|
2155
2165
|
className?: string;
|
|
2156
2166
|
percentMatch: number;
|
|
2157
2167
|
};
|
|
2158
|
-
declare const _default$
|
|
2168
|
+
declare const _default$C: React__default.NamedExoticComponent<React__default.PropsWithChildren<MatchProgressProps>>;
|
|
2159
2169
|
|
|
2160
2170
|
interface Props$7 {
|
|
2161
2171
|
className?: string;
|
|
2162
2172
|
title: string;
|
|
2163
2173
|
}
|
|
2164
|
-
declare const _default$
|
|
2174
|
+
declare const _default$B: React__default.NamedExoticComponent<React__default.PropsWithChildren<Props$7>>;
|
|
2165
2175
|
|
|
2166
|
-
declare const _default$
|
|
2176
|
+
declare const _default$A: React__default.NamedExoticComponent<React__default.PropsWithChildren<React__default.HTMLAttributes<HTMLButtonElement>>>;
|
|
2167
2177
|
|
|
2168
2178
|
type Props$6 = {
|
|
2169
2179
|
className?: string;
|
|
@@ -2256,7 +2266,7 @@ declare function useToastContext(): ToastState<MindlyToastProps>;
|
|
|
2256
2266
|
declare const SIZES: SizeValues;
|
|
2257
2267
|
declare const BREAKPOINT_ICON_SIZE = 20;
|
|
2258
2268
|
declare function useCircleRatingRenderData({ progress, size, maxValue, isReverse, isShowBreakPoints, }: CircleRatingDataProps): CircleRatingDataResult;
|
|
2259
|
-
declare function useRangeIndex({ progress, maxValue, ranges, isReverse }: ProgressRangeProps): number;
|
|
2269
|
+
declare function useRangeIndex({ progress, maxValue, ranges, isReverse, }: ProgressRangeProps): number;
|
|
2260
2270
|
declare function getProgressForBreakPoint({ maxValue, breakPoint, }: {
|
|
2261
2271
|
maxValue: number;
|
|
2262
2272
|
breakPoint: number;
|
|
@@ -2267,11 +2277,15 @@ declare function useBreakPointsPosition({ maxValue, breakPoints, radius, strokeW
|
|
|
2267
2277
|
radius?: number;
|
|
2268
2278
|
strokeWidth?: number;
|
|
2269
2279
|
}): BreakPointPositionResult[];
|
|
2270
|
-
declare function useRatingCircleLegend({ ranges, t, isReverse, isPercentage, }: CircleRatingLegendProps): string[];
|
|
2271
|
-
declare function useRatingCircleContentValue({ progress, isPercentage, decimal, }: {
|
|
2280
|
+
declare function useRatingCircleLegend({ ranges, t, isReverse, isPercentage, isShowLegend, }: CircleRatingLegendProps): string[];
|
|
2281
|
+
declare function useRatingCircleContentValue({ progress, isPercentage, decimal, isWithAnimation, animationDuration, targetPercentage, onProgressEnd, }: {
|
|
2272
2282
|
progress: number;
|
|
2273
2283
|
isPercentage?: boolean;
|
|
2274
2284
|
decimal?: number;
|
|
2285
|
+
isWithAnimation?: boolean;
|
|
2286
|
+
animationDuration?: number;
|
|
2287
|
+
targetPercentage?: number;
|
|
2288
|
+
onProgressEnd?: () => void;
|
|
2275
2289
|
}): string;
|
|
2276
2290
|
declare function useRatingCircleBreakPoints({ ranges, maxValue, isReverse, }: {
|
|
2277
2291
|
ranges: CircleRatingRange[];
|
|
@@ -2761,9 +2775,9 @@ type SlotsGridItemProps = {
|
|
|
2761
2775
|
onSelectionChange: () => void;
|
|
2762
2776
|
};
|
|
2763
2777
|
|
|
2764
|
-
declare const _default$
|
|
2778
|
+
declare const _default$z: React__default.NamedExoticComponent<SlotsGridProps>;
|
|
2765
2779
|
|
|
2766
|
-
declare const _default$
|
|
2780
|
+
declare const _default$y: React$1.NamedExoticComponent<SlotsGridItemProps>;
|
|
2767
2781
|
|
|
2768
2782
|
type PushNotificationsModalProps = {
|
|
2769
2783
|
onApplyPermission: () => void;
|
|
@@ -2877,23 +2891,23 @@ type ShareModalFeatureProps = {
|
|
|
2877
2891
|
};
|
|
2878
2892
|
declare const ShareModalFeature: FC<ShareModalFeatureProps>;
|
|
2879
2893
|
|
|
2880
|
-
declare const _default$
|
|
2894
|
+
declare const _default$x: React__default.NamedExoticComponent<SpecialistPaymentConsultationDetailsType & TranslationType>;
|
|
2881
2895
|
|
|
2882
|
-
declare const _default$
|
|
2896
|
+
declare const _default$w: React__default.NamedExoticComponent<SpecialistPaymentCardProps & TranslationType>;
|
|
2883
2897
|
|
|
2884
2898
|
type SpecialistPaymentCommonCardSkeletonType = {
|
|
2885
2899
|
className?: string;
|
|
2886
2900
|
};
|
|
2887
2901
|
declare const SpecialistPaymentCommonCardSkeleton: (props: SpecialistPaymentCommonCardSkeletonType) => JSX.Element;
|
|
2888
2902
|
|
|
2889
|
-
declare const _default$
|
|
2903
|
+
declare const _default$v: React__default.NamedExoticComponent<SpecialistPaymentConsultationsProps & TranslationType>;
|
|
2890
2904
|
|
|
2891
2905
|
type ConsultationsListProps = {
|
|
2892
2906
|
consultations: SpecialistConsultation[];
|
|
2893
2907
|
locale?: string;
|
|
2894
2908
|
consultationClick?: (consultation: SpecialistConsultation) => void;
|
|
2895
2909
|
};
|
|
2896
|
-
declare const _default$
|
|
2910
|
+
declare const _default$u: React__default.NamedExoticComponent<ConsultationsListProps>;
|
|
2897
2911
|
|
|
2898
2912
|
type ConsultationsListSkeletonType = {
|
|
2899
2913
|
className?: string;
|
|
@@ -2908,9 +2922,9 @@ type CalendarPickerFeatureProps = {
|
|
|
2908
2922
|
dateCallback: (date: Date) => void;
|
|
2909
2923
|
lastDate: Date;
|
|
2910
2924
|
};
|
|
2911
|
-
declare const _default$
|
|
2925
|
+
declare const _default$t: React__default.NamedExoticComponent<CalendarPickerFeatureProps & TranslationType>;
|
|
2912
2926
|
|
|
2913
|
-
declare const _default$
|
|
2927
|
+
declare const _default$s: React__default.NamedExoticComponent<PaymentCalendarFeatureProps & TranslationType>;
|
|
2914
2928
|
|
|
2915
2929
|
type GoogleCalendarModalFeatureProps = {
|
|
2916
2930
|
isOpen: boolean;
|
|
@@ -2925,7 +2939,7 @@ type GoogleCalendarModalFeatureProps = {
|
|
|
2925
2939
|
declare function GoogleCalendarModalFeature({ status, isOpen, onSync, isLoading, presentingElement, imageUrl, onDidDismiss, t, }: GoogleCalendarModalFeatureProps): JSX.Element;
|
|
2926
2940
|
|
|
2927
2941
|
type ReviewCardFeatureVariantType = 'default' | 'outlined' | 'full';
|
|
2928
|
-
declare const _default$
|
|
2942
|
+
declare const _default$r: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
|
|
2929
2943
|
avatarSrc?: string | undefined;
|
|
2930
2944
|
name: string;
|
|
2931
2945
|
date: number;
|
|
@@ -3024,7 +3038,7 @@ type ScreenInputFormFeatureProps = {
|
|
|
3024
3038
|
icon?: ReactNode | string;
|
|
3025
3039
|
isKeyboardShown?: boolean;
|
|
3026
3040
|
};
|
|
3027
|
-
declare const _default$
|
|
3041
|
+
declare const _default$q: React__default.NamedExoticComponent<ScreenInputFormFeatureProps>;
|
|
3028
3042
|
|
|
3029
3043
|
type SelectionType = {
|
|
3030
3044
|
value: any;
|
|
@@ -3042,7 +3056,7 @@ type SpecialistDrumPickerWidgetProps = {
|
|
|
3042
3056
|
onTouchStart?: () => void;
|
|
3043
3057
|
onTouchEnd?: () => void;
|
|
3044
3058
|
};
|
|
3045
|
-
declare const _default$
|
|
3059
|
+
declare const _default$p: React__default.NamedExoticComponent<SpecialistDrumPickerWidgetProps>;
|
|
3046
3060
|
|
|
3047
3061
|
type TextAreaFormFeatureProps = {
|
|
3048
3062
|
title?: string;
|
|
@@ -3058,7 +3072,7 @@ type TextAreaFormFeatureProps = {
|
|
|
3058
3072
|
maxlength?: number;
|
|
3059
3073
|
HeaderComponent?: FC;
|
|
3060
3074
|
};
|
|
3061
|
-
declare const _default$
|
|
3075
|
+
declare const _default$o: React__default.NamedExoticComponent<TextAreaFormFeatureProps>;
|
|
3062
3076
|
|
|
3063
3077
|
type AcceptAgreementFeatureProps = {
|
|
3064
3078
|
isAccepted: boolean;
|
|
@@ -3079,32 +3093,35 @@ type SelectWithSearchFormFeatureProps = {
|
|
|
3079
3093
|
otherText?: string;
|
|
3080
3094
|
buttonLabel?: string;
|
|
3081
3095
|
} & WithTranslation;
|
|
3082
|
-
declare const _default$
|
|
3096
|
+
declare const _default$n: React__default.NamedExoticComponent<SelectWithSearchFormFeatureProps>;
|
|
3083
3097
|
|
|
3084
3098
|
type MarkdownContainerFeatureProps = {
|
|
3085
3099
|
children?: string | null;
|
|
3086
3100
|
options?: MarkdownToJSX.Options;
|
|
3087
3101
|
className?: string;
|
|
3088
3102
|
};
|
|
3089
|
-
declare const _default$
|
|
3103
|
+
declare const _default$m: React__default.NamedExoticComponent<MarkdownContainerFeatureProps>;
|
|
3090
3104
|
|
|
3091
|
-
declare const _default$
|
|
3105
|
+
declare const _default$l: React__default.NamedExoticComponent<OnBoardingStartScreenType>;
|
|
3092
3106
|
|
|
3093
|
-
declare const _default$
|
|
3107
|
+
declare const _default$k: React__default.NamedExoticComponent<OnBoardingInfoScreenType>;
|
|
3094
3108
|
|
|
3095
3109
|
type OnBoardingMultiSelectionScreenPreviewFeatureProps = {
|
|
3096
3110
|
onChange?: (value: string[]) => void;
|
|
3097
3111
|
defaultValues?: string[];
|
|
3098
3112
|
} & OnBoardingMultiSelectScreenType;
|
|
3099
|
-
declare const _default$
|
|
3113
|
+
declare const _default$j: React__default.NamedExoticComponent<OnBoardingMultiSelectionScreenPreviewFeatureProps>;
|
|
3100
3114
|
|
|
3101
3115
|
type OnBoardingSingleSelectionScreenPreviewFeatureProps = {
|
|
3102
3116
|
onChange?: (value: string) => void;
|
|
3103
3117
|
defaultValues?: string[];
|
|
3104
3118
|
} & OnBoardingSingleSelectScreenType;
|
|
3105
|
-
declare const _default$
|
|
3119
|
+
declare const _default$i: React__default.NamedExoticComponent<OnBoardingSingleSelectionScreenPreviewFeatureProps>;
|
|
3106
3120
|
|
|
3107
|
-
declare const
|
|
3121
|
+
declare const OnBoardingLoaderScreenPreviewFeature: FC<OnBoardingLoaderScreenType & {
|
|
3122
|
+
t?: WithTranslation['t'];
|
|
3123
|
+
onProgressEnd?: () => void;
|
|
3124
|
+
}>;
|
|
3108
3125
|
|
|
3109
3126
|
type OnBoardingProgressFeatureProps = {
|
|
3110
3127
|
progress: number;
|
|
@@ -3925,6 +3942,8 @@ type SpecialistDetailWidgetProps = {
|
|
|
3925
3942
|
|
|
3926
3943
|
declare const _default: React__default.NamedExoticComponent<SpecialistDetailWidgetProps>;
|
|
3927
3944
|
|
|
3945
|
+
declare const SpecialistDetailWidgetSkeleton: React__default.FC;
|
|
3946
|
+
|
|
3928
3947
|
declare const FiltersWidget: FC<FiltersWidgetProps>;
|
|
3929
3948
|
|
|
3930
3949
|
type SpecialistPreviewListWidgetProps = {
|
|
@@ -3991,4 +4010,4 @@ type SessionPaymentsWidgetProps = {
|
|
|
3991
4010
|
|
|
3992
4011
|
declare const SessionPaymentsWidget: React__default.FC<SessionPaymentsWidgetProps>;
|
|
3993
4012
|
|
|
3994
|
-
export { AcceptAgreementFeature, Action, _default$T as AlertCard, AllowFilterValueType, AppFooter, _default$S as AppFooter_v2, AppHeader, AppHeaderPage as AppHeaderPageFeature, AppHeader_v2, AppNotSupportedFeature, ArchivedConsultationCard, AutoComplete, Avatar, AvatarProps$1 as AvatarProps, _default$R as Avatar_v2, AvatarProps as Avatar_v2Props, BREAKPOINT_ICON_SIZE, _default$N as Badge, _default$W as BookingScheduleTime, _default$V as BookingSpecialistInfo, BreakPointPositionProps, BreakPointPositionResult, Button, Button_v2, CAN_MANAGE_SESSION_TIME_HOURS, COUNTRIES_MAPPER, Calendar, _default$u as CalendarPickerFeature, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$1f as ChatListItem, _default$1d as ChatListSkeleton, _default$1e as ChatMessage, ChatMessageSkeleton, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$a as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingComponentProps, CircleRatingContent, CircleRatingContext, CircleRatingContextData, CircleRatingContextProps, CircleRatingDataProps, CircleRatingDataResult, CircleRatingLegendProps, CircleRatingProvider, CircleRatingRange, CircleRatingSize, ClientCanAction, ClientCanParams, ClientSpecialistContractStatusEnum, CollapsableText, ConditionRulesType, Consultation, _default$16 as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$13 as ConsultationModal, _default$y as ConsultationPricingFeature, _default$11 as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentCard, ContentRendererProps, ContractDataFeature, ContractStatusEnum, ContentTree as ContractTreeFeature, CountdownTimerFeature, CountryOfOriginModal, CurrencyLocaleMapper, CurrencySignByLocale, CustomButton, _default$b as CustomCheckbox, CustomRadioButton, _default$c as CustomSelect, _default$d as CustomTextarea, DatePicker, _default$$ as DaySlider, DayToRender, DividerProps, DrumListPicker, DynamicCommissionValue, _default$X as EducationCard, _default$1c as EmptyChatList, EmptyChatMessages, EmptyChatModalFeature, _default$14 as EmptyConsultations, EmptyList, EmptySpecialistListFeature, EntryNotFound, EntryNotFoundProps, ErrorCardFeature, FilterFeatureProps, FilterItem, FilterItemBoolean, FilterItemChips, FilterItemRange, FilterItemSelect, FilterOption, FilterOptionValue, FilterValue, FiltersWidget, FiltersWidgetProps, FirstChatMessageModalFeature, _default$7 as Flag, FlagTypes, _default$P as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconAddModerator, IconApple, IconArrowDown, IconArrowLeft, IconArrowRight, IconArrowTopRight, IconAttachMoney, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$J as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCalendarNew, IconCalendarWithDot, IconCancel, IconCancelRounded, IconCapFilled, IconChat, IconChat3d, IconChat3dSmaller, IconChatFilled, IconChatOutline, IconCheck, IconCheckCircle, IconCheckSmall, IconCheckboxChecked, IconCheckboxUnchecked, IconClient, IconClientFilled, IconClose, IconContract, IconCopy, IconCreditCard, IconDelete, IconDocument, IconDot, IconEcgHeart, IconEdit, IconEditCalendar, IconEmptyList, IconEventBusy, IconExperience, IconEye, IconEyeOff, IconFilters, IconGallery, IconGift, IconGiftNew, IconGoogle, IconHeart, IconHome, IconIdCard, IconInvisible, IconInvoice, IconLanguage, IconLeftArrow, IconLetter, IconLink, IconLock, IconLogout, IconManageAccounts, IconMindly, IconMindlyColored, IconMindlyMini, IconMinus, IconMoreVertical, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPause, IconPersonAlert, IconPlay, IconPlus, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconProps$B as IconProps, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconReceipt, IconReceiptLong, IconRenew, IconResume, IconReviewSessionSubscription, IconReviewSessionTrial, IconSchedule, IconSchema, IconSearch, IconSend, IconSettings, IconShare, IconSpecialistsEnded, IconSpinner, IconStar, IconStarFilled, IconStudyHat, IconStylus, IconSuccess, IconText, IconTime, IconTimeAdd, IconUnmute, IconUser, IconUserNotFound, IconVerifiedUser, IconVisible, IconWarning, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, InputSearch, _default$F as Item, _default$M as ItemCard, LabelArrowRedirect, LanguagesList, _default$1j as LetterAvatar, _default$8 as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListButton, ListItemType, _default$C as ListItemWithColumns, _default$G as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$H as Loading, LocaleCurrencyMapper, LouseConnect, MapStatusContractToUIStatus, _default$n as MarkdownContainerFeature, _default$D as MatchProgress, _default$1g as MediaPlayer, MenuFeature, Modal, ModalCalendar, ModalSheet, NEAR_SESSION_TIME_SECONDS, NavigationBar, NewSpecialist, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, OnBoardingBaseScreenType, OnBoardingFlowType, _default$l as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, _default$i as OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$k as OnBoardingMultiSelectionScreenPreviewFeature, _default$h as OnBoardingProgressFeature, _default$g as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenBgType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenOptionType, OnBoardingScreenOptions, OnBoardingScreenSkipButtonType, OnBoardingScreenStyleOptions, OnBoardingScreensType, OnBoardingSingleSelectScreenType, _default$j as OnBoardingSingleSelectionScreenPreviewFeature, _default$m as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$t as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$v as PaymentSessionsList, _default$1i as PersonDateTimeCard, _default$O as Picture, _default$6 as ProfileInformation, _default$Z as ProfileView, _default$9 as ProgressBar, ProgressBarDashed, _default$I as ProgressBar_v2, ProgressRangeProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$K as Rating, RatingCircleWrapper, _default$10 as ReSchedule, ReScheduleSuccess, Refresher, ResponseFileType, ReviewCard, _default$s as ReviewCardFeature, ReviewListFeature, ReviewStatistics, ReviewSubscriptionSessionFeature, ReviewSubscriptionSessionFeatureProps, ReviewSwiperSection, ReviewTrialSessionFeature, ReviewTrialSessionFeatureProps, ReviewsCardFeatureSkeleton, ReviewsSummary, RoundButton, RowItemType, RowSelect, RowSelectProps, Rule, SIZES, SOON_SESSION_TIME_SECONDS, _default$q as ScreenDrumPickerFormFeature, ScreenInput, _default$r as ScreenInputFormFeature, ScreenInputUpdateFeature, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$1h as SelectImpressionEmoji, SelectItemType, _default$o as SelectWithSearchFormFeature, Session, SessionDetailWidget, SessionPaymentsWidget, SessionPreviewFeature, SessionReview$1 as SessionReview, SessionTime, SessionVariant, SessionsWidget as SessionsListWidget, SessionsWidgetProps, Sex, ShareModalFeature, ShortCurrencySignByLocale, _default$B as ShowMore, _default$15 as SignUpSessionButton, _default$12 as SignUpSessionModal, SizeValues, Skeleton, _default$Q as Skeleton_v2, _default$A as SlotsGrid, _default$z as SlotsGridItem, Specialist, _default$Y as SpecialistAbout, SpecialistAreaList as SpecialistAreaListFeature, SpecialistCard, SpecialistCardListWidget, _default$3 as SpecialistCardWidget, SpecialistConsultation, SpecialistConsultationPayment, _default as SpecialistDetailWidget, SpecialistEducation, _default$1a as SpecialistEducationCard, SpecialistEducationsFeature, SpecialistInfoColumnFeature, SpecialistLangs, _default$5 as SpecialistMatch, SpecialistOrderType, SpecialistPaymentCardProps, _default$x as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$w as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default$1 as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$2 as SpecialistPaymentWidget, SpecialistPaymentWidgetType, SpecialistPreviewFeature, SpecialistPreviewListWidget, SpecialistProfileNotFound, _default$19 as SpecialistProfileViewCard, SpecialistReview$1 as SpecialistReview, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default$4 as SpecialistStatistic, SpecialistStatisticsCard, SpecialistWorkDirections, Spinner, Spinner_v2, StarRating, StatisticsScroll, StatusTag, StripeSupportedCurrency, Subscription, SubscriptionStatuses, SuccessScreen, SuperSpecialist, SupportedCurrency, SupportedLangs, SwitchDeviceCard, TabBar, TabItem, Tabs$1 as Tabs, TabsToolbarFeature, Tag, _default$p as TextAreaFormFeature, _default$e as TextInput, _default$f as TextWithClampFeature, _default$1b as Textarea, _default$L as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$U as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UserType, UsersPsychologistScrollList, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$E as Video, _default$17 as VideoCallInfo, _default$18 as VideoPlayer, VideoProvider, _default$_ as WorkDirections, YourLocalTimeBlock, appThemes, canManageSession, decOfNum, formatByDigits, getCountryKeyByName, getDateLocale, getFiltersQuery, getFiltersValues, getGMTOffset, getMappedFilterValue, getProgressForBreakPoint, getSessionTimeLabel, getSessionVariant, getSessionsByDay, getSessionsByMonth, getSessionsByYear, getSignAgreementsTabs, getStartSessionDate, getStartSessionTimestamp, isClientCan, isFilterSet, isNewSpecialist, isSpecialistActive, isSpecialistBlocked, isSpecialistPublic, isSuperSpecialist, mergeRefs, newShade, priceNormalize, replaceMarkdownWithReactElements, roundToPrecision, splitSessions, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDeepCompareEffect, useDeepUpdateEffect, useDomRef, useElementWidth, useEvent, useIsKeyBoardShown, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useToastContext, useUpdateEffect, useVideoContext };
|
|
4013
|
+
export { AcceptAgreementFeature, Action, _default$S as AlertCard, AllowFilterValueType, AppFooter, _default$R as AppFooter_v2, AppHeader, AppHeaderPage as AppHeaderPageFeature, AppHeader_v2, AppNotSupportedFeature, ArchivedConsultationCard, AutoComplete, Avatar, AvatarProps$1 as AvatarProps, _default$Q as Avatar_v2, AvatarProps as Avatar_v2Props, BREAKPOINT_ICON_SIZE, _default$M as Badge, _default$V as BookingScheduleTime, _default$U as BookingSpecialistInfo, BreakPointPositionProps, BreakPointPositionResult, Button, Button_v2, CAN_MANAGE_SESSION_TIME_HOURS, COUNTRIES_MAPPER, Calendar, _default$t as CalendarPickerFeature, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$1e as ChatListItem, _default$1c as ChatListSkeleton, _default$1d as ChatMessage, ChatMessageSkeleton, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$a as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingComponentProps, CircleRatingContent, CircleRatingContext, CircleRatingContextData, CircleRatingContextProps, CircleRatingDataProps, CircleRatingDataResult, CircleRatingLegendProps, CircleRatingProvider, CircleRatingRange, CircleRatingSize, ClientCanAction, ClientCanParams, ClientSpecialistContractStatusEnum, CollapsableText, ConditionRulesType, Consultation, _default$15 as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$12 as ConsultationModal, _default$x as ConsultationPricingFeature, _default$10 as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentCard, ContentRendererProps, ContractDataFeature, ContractStatusEnum, ContentTree as ContractTreeFeature, CountdownTimerFeature, CountryOfOriginModal, CurrencyLocaleMapper, CurrencySignByLocale, CustomButton, _default$b as CustomCheckbox, CustomRadioButton, _default$c as CustomSelect, _default$d as CustomTextarea, DatePicker, _default$_ as DaySlider, DayToRender, DividerProps, DrumListPicker, DynamicCommissionValue, _default$W as EducationCard, _default$1b as EmptyChatList, EmptyChatMessages, EmptyChatModalFeature, _default$13 as EmptyConsultations, EmptyList, EmptySpecialistListFeature, EntryNotFound, EntryNotFoundProps, ErrorCardFeature, FilterFeatureProps, FilterItem, FilterItemBoolean, FilterItemChips, FilterItemRange, FilterItemSelect, FilterOption, FilterOptionValue, FilterValue, FiltersWidget, FiltersWidgetProps, FirstChatMessageModalFeature, _default$7 as Flag, FlagTypes, _default$O as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconAddModerator, IconApple, IconArrowDown, IconArrowLeft, IconArrowRight, IconArrowTopRight, IconAttachMoney, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$I as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCalendarNew, IconCalendarWithDot, IconCancel, IconCancelRounded, IconCapFilled, IconChat, IconChat3d, IconChat3dSmaller, IconChatFilled, IconChatOutline, IconCheck, IconCheckCircle, IconCheckSmall, IconCheckboxChecked, IconCheckboxUnchecked, IconClient, IconClientFilled, IconClose, IconContract, IconCopy, IconCreditCard, IconDelete, IconDocument, IconDot, IconEcgHeart, IconEdit, IconEditCalendar, IconEmptyList, IconEventBusy, IconExperience, IconEye, IconEyeOff, IconFilters, IconGallery, IconGift, IconGiftNew, IconGoogle, IconHeart, IconHome, IconIdCard, IconInvisible, IconInvoice, IconLanguage, IconLeftArrow, IconLetter, IconLink, IconLock, IconLogout, IconManageAccounts, IconMindly, IconMindlyColored, IconMindlyMini, IconMinus, IconMoreVertical, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPause, IconPersonAlert, IconPlay, IconPlus, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconProps$B as IconProps, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconReceipt, IconReceiptLong, IconRenew, IconResume, IconReviewSessionSubscription, IconReviewSessionTrial, IconSchedule, IconSchema, IconSearch, IconSend, IconSettings, IconShare, IconSpecialistsEnded, IconSpinner, IconStar, IconStarFilled, IconStudyHat, IconStylus, IconSuccess, IconText, IconTime, IconTimeAdd, IconUnmute, IconUser, IconUserNotFound, IconVerifiedUser, IconVisible, IconWarning, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, InputSearch, _default$E as Item, _default$L as ItemCard, LabelArrowRedirect, LanguagesList, _default$1i as LetterAvatar, _default$8 as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListButton, ListItemType, _default$B as ListItemWithColumns, _default$F as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$G as Loading, LocaleCurrencyMapper, LouseConnect, MapStatusContractToUIStatus, _default$m as MarkdownContainerFeature, _default$C as MatchProgress, _default$1f as MediaPlayer, MenuFeature, Modal, ModalCalendar, ModalSheet, NEAR_SESSION_TIME_SECONDS, NavigationBar, NewSpecialist, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, OnBoardingBaseScreenType, OnBoardingFlowType, _default$k as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$j as OnBoardingMultiSelectionScreenPreviewFeature, _default$h as OnBoardingProgressFeature, _default$g as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenBgType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenOptionType, OnBoardingScreenOptions, OnBoardingScreenSkipButtonType, OnBoardingScreenStyleOptions, OnBoardingScreensType, OnBoardingSingleSelectScreenType, _default$i as OnBoardingSingleSelectionScreenPreviewFeature, _default$l as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$s as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$u as PaymentSessionsList, _default$1h as PersonDateTimeCard, _default$N as Picture, _default$6 as ProfileInformation, _default$Y as ProfileView, _default$9 as ProgressBar, ProgressBarDashed, _default$H as ProgressBar_v2, ProgressRangeProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$J as Rating, RatingCircleWrapper, _default$$ as ReSchedule, ReScheduleSuccess, Refresher, ResponseFileType, ReviewCard, _default$r as ReviewCardFeature, ReviewListFeature, ReviewStatistics, ReviewSubscriptionSessionFeature, ReviewSubscriptionSessionFeatureProps, ReviewSwiperSection, ReviewTrialSessionFeature, ReviewTrialSessionFeatureProps, ReviewsCardFeatureSkeleton, ReviewsSummary, RoundButton, RowItemType, RowSelect, RowSelectProps, Rule, SIZES, SOON_SESSION_TIME_SECONDS, _default$p as ScreenDrumPickerFormFeature, ScreenInput, _default$q as ScreenInputFormFeature, ScreenInputUpdateFeature, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$1g as SelectImpressionEmoji, SelectItemType, _default$n as SelectWithSearchFormFeature, Session, SessionDetailWidget, SessionPaymentsWidget, SessionPreviewFeature, SessionReview$1 as SessionReview, SessionTime, SessionVariant, SessionsWidget as SessionsListWidget, SessionsWidgetProps, Sex, ShareModalFeature, ShortCurrencySignByLocale, _default$A as ShowMore, _default$14 as SignUpSessionButton, _default$11 as SignUpSessionModal, SizeValues, Skeleton, _default$P as Skeleton_v2, _default$z as SlotsGrid, _default$y as SlotsGridItem, Specialist, _default$X as SpecialistAbout, SpecialistAreaList as SpecialistAreaListFeature, SpecialistCard, SpecialistCardListWidget, _default$3 as SpecialistCardWidget, SpecialistConsultation, SpecialistConsultationPayment, _default as SpecialistDetailWidget, SpecialistDetailWidgetSkeleton, SpecialistEducation, _default$19 as SpecialistEducationCard, SpecialistEducationsFeature, SpecialistInfoColumnFeature, SpecialistLangs, _default$5 as SpecialistMatch, SpecialistOrderType, SpecialistPaymentCardProps, _default$w as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$v as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default$1 as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$2 as SpecialistPaymentWidget, SpecialistPaymentWidgetType, SpecialistPreviewFeature, SpecialistPreviewListWidget, SpecialistProfileNotFound, _default$18 as SpecialistProfileViewCard, SpecialistReview$1 as SpecialistReview, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default$4 as SpecialistStatistic, SpecialistStatisticsCard, SpecialistWorkDirections, Spinner, Spinner_v2, StarRating, StatisticsScroll, StatusTag, StripeSupportedCurrency, Subscription, SubscriptionStatuses, SuccessScreen, SuperSpecialist, SupportedCurrency, SupportedLangs, SwitchDeviceCard, TabBar, TabItem, Tabs$1 as Tabs, TabsToolbarFeature, Tag, _default$o as TextAreaFormFeature, _default$e as TextInput, _default$f as TextWithClampFeature, _default$1a as Textarea, _default$K as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$T as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UserType, UsersPsychologistScrollList, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$D as Video, _default$16 as VideoCallInfo, _default$17 as VideoPlayer, VideoProvider, _default$Z as WorkDirections, YourLocalTimeBlock, appThemes, canManageSession, decOfNum, formatByDigits, getCountryKeyByName, getDateLocale, getFiltersQuery, getFiltersValues, getGMTOffset, getMappedFilterValue, getProgressForBreakPoint, getSessionTimeLabel, getSessionVariant, getSessionsByDay, getSessionsByMonth, getSessionsByYear, getSignAgreementsTabs, getStartSessionDate, getStartSessionTimestamp, isClientCan, isFilterSet, isNewSpecialist, isSpecialistActive, isSpecialistBlocked, isSpecialistPublic, isSuperSpecialist, mergeRefs, newShade, priceNormalize, replaceMarkdownWithReactElements, roundToPrecision, splitSessions, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDeepCompareEffect, useDeepUpdateEffect, useDomRef, useElementWidth, useEvent, useIsKeyBoardShown, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useToastContext, useUpdateEffect, useVideoContext };
|