@mindly/ui-components 5.68.0 → 5.69.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/index.js +4 -4
- package/dist/cjs/lib2/features/ScreenDrumPickerFormFeature/ScreenDrumPickerFormFeature.d.ts +19 -0
- package/dist/cjs/lib2/features/ScreenDrumPickerFormFeature/index.d.ts +1 -0
- package/dist/cjs/lib2/features/ScreenInputFormFeature/ScreenInputFormFeature.d.ts +23 -0
- package/dist/cjs/lib2/features/ScreenInputFormFeature/index.d.ts +1 -0
- package/dist/cjs/lib2/features/ScreenInputUpdateFeature/ScreenInputUpdateFeature.d.ts +3 -0
- package/dist/cjs/lib2/features/TextAreaFormFeature/TextAreaFormFeature.d.ts +14 -0
- package/dist/cjs/lib2/features/TextAreaFormFeature/index.d.ts +1 -0
- package/dist/cjs/lib2/features/index.d.ts +3 -0
- package/dist/cjs/lib2/shared/utils/getSignAgreementsTabs.d.ts +2 -2
- package/dist/esm/index.js +7 -7
- package/dist/esm/lib2/features/ScreenDrumPickerFormFeature/ScreenDrumPickerFormFeature.d.ts +19 -0
- package/dist/esm/lib2/features/ScreenDrumPickerFormFeature/index.d.ts +1 -0
- package/dist/esm/lib2/features/ScreenInputFormFeature/ScreenInputFormFeature.d.ts +23 -0
- package/dist/esm/lib2/features/ScreenInputFormFeature/index.d.ts +1 -0
- package/dist/esm/lib2/features/ScreenInputUpdateFeature/ScreenInputUpdateFeature.d.ts +3 -0
- package/dist/esm/lib2/features/TextAreaFormFeature/TextAreaFormFeature.d.ts +14 -0
- package/dist/esm/lib2/features/TextAreaFormFeature/index.d.ts +1 -0
- package/dist/esm/lib2/features/index.d.ts +3 -0
- package/dist/esm/lib2/shared/utils/getSignAgreementsTabs.d.ts +2 -2
- package/dist/index.d.ts +125 -69
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -224,7 +224,7 @@ type LetterAvatarProps = {
|
|
|
224
224
|
fontSize?: number;
|
|
225
225
|
onClick?: () => void;
|
|
226
226
|
};
|
|
227
|
-
declare const _default$
|
|
227
|
+
declare const _default$14: React__default.NamedExoticComponent<LetterAvatarProps>;
|
|
228
228
|
|
|
229
229
|
type ImageWithFallbackProps = JSX.IntrinsicElements['img'] & {
|
|
230
230
|
onErrorContent: React__default.ReactElement;
|
|
@@ -236,7 +236,7 @@ type PersonDateTimeCardProps = {
|
|
|
236
236
|
name: string;
|
|
237
237
|
dateTime: Date;
|
|
238
238
|
};
|
|
239
|
-
declare const _default$
|
|
239
|
+
declare const _default$13: React__default.NamedExoticComponent<PersonDateTimeCardProps>;
|
|
240
240
|
|
|
241
241
|
type PsychologistProfileType = {
|
|
242
242
|
id: string;
|
|
@@ -402,7 +402,7 @@ type SelectImpressionEmojiProps = {
|
|
|
402
402
|
onChange?: (val: ImpressionEmojiEnum) => void;
|
|
403
403
|
};
|
|
404
404
|
|
|
405
|
-
declare const _default
|
|
405
|
+
declare const _default$12: React__default.NamedExoticComponent<SelectImpressionEmojiProps>;
|
|
406
406
|
|
|
407
407
|
interface FooterForBookingProps {
|
|
408
408
|
eventHandler: (props?: React__default.SyntheticEvent) => void;
|
|
@@ -434,7 +434,7 @@ type MediaPlayerProps<TCameraTrack extends Playable | undefined, TAudioTrack ext
|
|
|
434
434
|
showControls: boolean;
|
|
435
435
|
isScreenSharing?: boolean;
|
|
436
436
|
} & HTMLAttributes<HTMLDivElement>;
|
|
437
|
-
declare const _default$
|
|
437
|
+
declare const _default$11: <TCameraTrack extends Playable | undefined, TAudioTrack extends Playable | undefined>({ fullwidth, cameraTrack, audioTrack, isVideoTrackMuted, isAudioTrackMuted, networkQuality, fallbackAvatar, fallbackAvatarDimensions, fallbackName, showControls, isScreenSharing, ...props }: MediaPlayerProps<TCameraTrack, TAudioTrack>) => JSX.Element;
|
|
438
438
|
|
|
439
439
|
type RoundButtonPropsType = {
|
|
440
440
|
disabled?: boolean;
|
|
@@ -463,7 +463,7 @@ type ChatListItemProps = {
|
|
|
463
463
|
isDisabled?: boolean;
|
|
464
464
|
t?: WithTranslation['t'];
|
|
465
465
|
};
|
|
466
|
-
declare const _default$
|
|
466
|
+
declare const _default$10: React__default.NamedExoticComponent<ChatListItemProps>;
|
|
467
467
|
|
|
468
468
|
type ChatMessageProps = {
|
|
469
469
|
message: string | File;
|
|
@@ -491,11 +491,11 @@ type ChatMessageProps = {
|
|
|
491
491
|
onClickHandler: () => void;
|
|
492
492
|
}[] | null;
|
|
493
493
|
};
|
|
494
|
-
declare const _default
|
|
494
|
+
declare const _default$$: React__default.NamedExoticComponent<ChatMessageProps>;
|
|
495
495
|
|
|
496
496
|
declare const ChatMessageSkeleton: () => JSX.Element;
|
|
497
497
|
|
|
498
|
-
declare const _default$
|
|
498
|
+
declare const _default$_: React__default.MemoExoticComponent<() => JSX.Element>;
|
|
499
499
|
|
|
500
500
|
type EmptyChatList = {
|
|
501
501
|
title?: string;
|
|
@@ -505,7 +505,7 @@ type EmptyChatList = {
|
|
|
505
505
|
onClick?: () => void;
|
|
506
506
|
};
|
|
507
507
|
declare const EmptyChatList: FC<EmptyChatList>;
|
|
508
|
-
declare const _default$
|
|
508
|
+
declare const _default$Z: React__default.NamedExoticComponent<EmptyChatList>;
|
|
509
509
|
|
|
510
510
|
type EmptyChatMessagesProps = {
|
|
511
511
|
title?: string;
|
|
@@ -530,7 +530,7 @@ type TextareaProps = {
|
|
|
530
530
|
onFileSelect?: (file: File | null, type: 'file' | 'image' | 'video', fileInfo: FileInfoType) => void;
|
|
531
531
|
t?: WithTranslation['t'];
|
|
532
532
|
};
|
|
533
|
-
declare const _default$
|
|
533
|
+
declare const _default$Y: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TextareaProps & React__default.RefAttributes<HTMLIonFooterElement>>>;
|
|
534
534
|
|
|
535
535
|
type LouseConnectProps = {
|
|
536
536
|
onClick?: () => void;
|
|
@@ -609,7 +609,7 @@ type SpecialistEducationCardProps$1 = {
|
|
|
609
609
|
yearEnd?: number | null;
|
|
610
610
|
showLoader?: boolean;
|
|
611
611
|
};
|
|
612
|
-
declare const _default$
|
|
612
|
+
declare const _default$X: React__default.NamedExoticComponent<SpecialistEducationCardProps$1>;
|
|
613
613
|
|
|
614
614
|
type SpecialistProfileViewCardProps$1 = {
|
|
615
615
|
avatarLink?: string | null;
|
|
@@ -622,7 +622,7 @@ type SpecialistProfileViewCardProps$1 = {
|
|
|
622
622
|
videoLinkUrl?: string | null;
|
|
623
623
|
showLoader?: boolean;
|
|
624
624
|
} & React__default.DetailedHTMLProps<React__default.HTMLAttributes<HTMLDivElement>, HTMLDivElement>;
|
|
625
|
-
declare const _default$
|
|
625
|
+
declare const _default$W: React__default.NamedExoticComponent<SpecialistProfileViewCardProps$1>;
|
|
626
626
|
|
|
627
627
|
type SpecialistStatisticsCardProps$1 = {
|
|
628
628
|
activeClients?: number;
|
|
@@ -658,7 +658,7 @@ type VideoPlayerProps = {
|
|
|
658
658
|
closeModalHandler?: () => void;
|
|
659
659
|
onErrorContent: React__default.ReactElement;
|
|
660
660
|
} & JSX$1.IonModal;
|
|
661
|
-
declare const _default$
|
|
661
|
+
declare const _default$V: React__default.NamedExoticComponent<VideoPlayerProps>;
|
|
662
662
|
|
|
663
663
|
type NotSupportModalProps = {
|
|
664
664
|
closeModal?: () => void;
|
|
@@ -694,7 +694,7 @@ type VideoCallInfoProps = {
|
|
|
694
694
|
abbreviatedSeconds: string;
|
|
695
695
|
};
|
|
696
696
|
};
|
|
697
|
-
declare const _default$
|
|
697
|
+
declare const _default$U: React__default.NamedExoticComponent<VideoCallInfoProps>;
|
|
698
698
|
|
|
699
699
|
declare enum ConsultationCardType {
|
|
700
700
|
FEATURE = "feature",
|
|
@@ -729,14 +729,14 @@ type ConsultationCardProps = {
|
|
|
729
729
|
};
|
|
730
730
|
};
|
|
731
731
|
|
|
732
|
-
declare const _default$
|
|
732
|
+
declare const _default$T: React__default.NamedExoticComponent<ConsultationCardProps>;
|
|
733
733
|
|
|
734
734
|
type SignUpSessionButtonProps = {
|
|
735
735
|
label: string;
|
|
736
736
|
isLoading?: boolean;
|
|
737
737
|
onClick?: () => void;
|
|
738
738
|
};
|
|
739
|
-
declare const _default$
|
|
739
|
+
declare const _default$S: React__default.NamedExoticComponent<SignUpSessionButtonProps>;
|
|
740
740
|
|
|
741
741
|
type EmptyConsultationsProps = {
|
|
742
742
|
title: string;
|
|
@@ -744,7 +744,7 @@ type EmptyConsultationsProps = {
|
|
|
744
744
|
buttonLabel?: string;
|
|
745
745
|
onClick?: () => void;
|
|
746
746
|
};
|
|
747
|
-
declare const _default$
|
|
747
|
+
declare const _default$R: React__default.NamedExoticComponent<EmptyConsultationsProps>;
|
|
748
748
|
|
|
749
749
|
type ConsultationModalProps = {
|
|
750
750
|
isOpen: boolean;
|
|
@@ -779,7 +779,7 @@ type ConsultationModalProps = {
|
|
|
779
779
|
started?: string;
|
|
780
780
|
};
|
|
781
781
|
};
|
|
782
|
-
declare const _default$
|
|
782
|
+
declare const _default$Q: React__default.NamedExoticComponent<ConsultationModalProps>;
|
|
783
783
|
|
|
784
784
|
type SpecialistData = {
|
|
785
785
|
id: string;
|
|
@@ -796,7 +796,7 @@ type SignUpSessionModalProps = {
|
|
|
796
796
|
title: string;
|
|
797
797
|
cancelBtnLabel: string;
|
|
798
798
|
};
|
|
799
|
-
declare const _default$
|
|
799
|
+
declare const _default$P: React__default.NamedExoticComponent<SignUpSessionModalProps>;
|
|
800
800
|
|
|
801
801
|
type ConsultationSpecialistCardProps = {
|
|
802
802
|
id: string;
|
|
@@ -807,7 +807,7 @@ type ConsultationSpecialistCardProps = {
|
|
|
807
807
|
onSignUp?: (id: string) => void;
|
|
808
808
|
signInBtnLabel: string;
|
|
809
809
|
};
|
|
810
|
-
declare const _default$
|
|
810
|
+
declare const _default$O: React__default.NamedExoticComponent<ConsultationSpecialistCardProps>;
|
|
811
811
|
|
|
812
812
|
type UserInfoModalProps = {
|
|
813
813
|
isOpen: boolean;
|
|
@@ -877,7 +877,7 @@ type ReScheduleProps = {
|
|
|
877
877
|
btnLabel: string;
|
|
878
878
|
};
|
|
879
879
|
};
|
|
880
|
-
declare const _default$
|
|
880
|
+
declare const _default$N: React__default.NamedExoticComponent<ReScheduleProps>;
|
|
881
881
|
|
|
882
882
|
type ReScheduleSuccessProps = {
|
|
883
883
|
name: string;
|
|
@@ -915,7 +915,7 @@ type DaySliderProps = JSX$1.IonSlides & HTMLAttributes<HTMLIonSlidesElement> & R
|
|
|
915
915
|
tomorrow?: string;
|
|
916
916
|
};
|
|
917
917
|
};
|
|
918
|
-
declare const _default$
|
|
918
|
+
declare const _default$M: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<DaySliderProps, "ref"> & React__default.RefAttributes<HTMLIonSlidesElement>>>;
|
|
919
919
|
|
|
920
920
|
type SpecialistWorkDirectionsPropsType = {
|
|
921
921
|
workDirections?: string[] | [];
|
|
@@ -924,7 +924,7 @@ type SpecialistWorkDirectionsPropsType = {
|
|
|
924
924
|
moreLabel?: string;
|
|
925
925
|
hideLabel?: string;
|
|
926
926
|
};
|
|
927
|
-
declare const _default$
|
|
927
|
+
declare const _default$L: React__default.NamedExoticComponent<SpecialistWorkDirectionsPropsType>;
|
|
928
928
|
|
|
929
929
|
type SpecialistProfileViewCardProps = {
|
|
930
930
|
videoLink?: string;
|
|
@@ -934,7 +934,7 @@ type SpecialistProfileViewCardProps = {
|
|
|
934
934
|
isLoading?: boolean;
|
|
935
935
|
videoDurationSeconds?: number;
|
|
936
936
|
};
|
|
937
|
-
declare const _default$
|
|
937
|
+
declare const _default$K: React__default.NamedExoticComponent<SpecialistProfileViewCardProps>;
|
|
938
938
|
|
|
939
939
|
type SpecialistAboutProps = {
|
|
940
940
|
text?: string;
|
|
@@ -943,7 +943,7 @@ type SpecialistAboutProps = {
|
|
|
943
943
|
moreLabel?: string;
|
|
944
944
|
hideLabel?: string;
|
|
945
945
|
};
|
|
946
|
-
declare const _default$
|
|
946
|
+
declare const _default$J: React__default.NamedExoticComponent<SpecialistAboutProps>;
|
|
947
947
|
|
|
948
948
|
type SpecialistEducationCardProps = {
|
|
949
949
|
institutionName?: string;
|
|
@@ -954,7 +954,7 @@ type SpecialistEducationCardProps = {
|
|
|
954
954
|
yearEnd?: number | null;
|
|
955
955
|
showLoader?: boolean;
|
|
956
956
|
};
|
|
957
|
-
declare const _default$
|
|
957
|
+
declare const _default$I: React__default.NamedExoticComponent<SpecialistEducationCardProps>;
|
|
958
958
|
|
|
959
959
|
type SpecialistStatisticsCardProps = {
|
|
960
960
|
trust?: boolean;
|
|
@@ -1000,7 +1000,7 @@ type BookingScheduleTimeProps = {
|
|
|
1000
1000
|
onClick?: (index: number, item: string) => void;
|
|
1001
1001
|
isLoading?: boolean;
|
|
1002
1002
|
};
|
|
1003
|
-
declare const _default$
|
|
1003
|
+
declare const _default$H: React__default.NamedExoticComponent<BookingScheduleTimeProps>;
|
|
1004
1004
|
|
|
1005
1005
|
type BookingSpecialistInfoProps = {
|
|
1006
1006
|
name: string;
|
|
@@ -1009,7 +1009,7 @@ type BookingSpecialistInfoProps = {
|
|
|
1009
1009
|
avatar?: string;
|
|
1010
1010
|
isLoading?: boolean;
|
|
1011
1011
|
};
|
|
1012
|
-
declare const _default$
|
|
1012
|
+
declare const _default$G: React__default.NamedExoticComponent<BookingSpecialistInfoProps>;
|
|
1013
1013
|
|
|
1014
1014
|
type SpecialistCardProps = {
|
|
1015
1015
|
fullName?: string;
|
|
@@ -1058,7 +1058,7 @@ type SpecialistCardProps = {
|
|
|
1058
1058
|
};
|
|
1059
1059
|
declare const SpecialistCard$1: React__default.FC<SpecialistCardProps>;
|
|
1060
1060
|
|
|
1061
|
-
declare const _default$
|
|
1061
|
+
declare const _default$F: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
|
|
1062
1062
|
isError?: boolean | undefined;
|
|
1063
1063
|
errorStyle?: "filled" | "unfilled" | undefined;
|
|
1064
1064
|
type?: "number" | "text" | "email" | undefined;
|
|
@@ -1082,11 +1082,11 @@ declare const PasswordInput: React__default.ForwardRefExoticComponent<{
|
|
|
1082
1082
|
error?: string | null | undefined;
|
|
1083
1083
|
} & Omit<React__default.InputHTMLAttributes<HTMLInputElement>, "type"> & React__default.RefAttributes<HTMLInputElement>>;
|
|
1084
1084
|
|
|
1085
|
-
declare const _default$
|
|
1085
|
+
declare const _default$E: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
|
|
1086
1086
|
isError?: boolean | undefined;
|
|
1087
1087
|
} & React__default.TextareaHTMLAttributes<HTMLTextAreaElement> & React__default.RefAttributes<HTMLTextAreaElement>>>;
|
|
1088
1088
|
|
|
1089
|
-
declare const _default$
|
|
1089
|
+
declare const _default$D: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
|
|
1090
1090
|
options: {
|
|
1091
1091
|
id: string | number;
|
|
1092
1092
|
label: string | number;
|
|
@@ -1118,7 +1118,7 @@ type CustomCheckboxProps = {
|
|
|
1118
1118
|
isCheckbox?: boolean;
|
|
1119
1119
|
onChange?: (e: ChangeEvent<HTMLInputElement>) => void;
|
|
1120
1120
|
};
|
|
1121
|
-
declare const _default$
|
|
1121
|
+
declare const _default$C: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<CustomCheckboxProps & React__default.RefAttributes<HTMLInputElement>>>;
|
|
1122
1122
|
|
|
1123
1123
|
type CheckboxListItem = {
|
|
1124
1124
|
id: ReactText;
|
|
@@ -1146,7 +1146,7 @@ type CheckboxListProps = {
|
|
|
1146
1146
|
from: string;
|
|
1147
1147
|
};
|
|
1148
1148
|
};
|
|
1149
|
-
declare const _default$
|
|
1149
|
+
declare const _default$B: React__default.NamedExoticComponent<CheckboxListProps>;
|
|
1150
1150
|
|
|
1151
1151
|
type BookingHeaderProps = {
|
|
1152
1152
|
title?: string;
|
|
@@ -1160,9 +1160,9 @@ type ProgressBarProps = {
|
|
|
1160
1160
|
progress: number;
|
|
1161
1161
|
loaderTitle?: string;
|
|
1162
1162
|
};
|
|
1163
|
-
declare const _default$
|
|
1163
|
+
declare const _default$A: React__default.NamedExoticComponent<ProgressBarProps>;
|
|
1164
1164
|
|
|
1165
|
-
declare const _default$
|
|
1165
|
+
declare const _default$z: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
|
|
1166
1166
|
title: string;
|
|
1167
1167
|
subTitle?: string | undefined;
|
|
1168
1168
|
isError?: boolean | undefined;
|
|
@@ -1194,7 +1194,7 @@ type FlagProps$1 = {
|
|
|
1194
1194
|
dimensions?: number;
|
|
1195
1195
|
className?: string;
|
|
1196
1196
|
};
|
|
1197
|
-
declare const _default$
|
|
1197
|
+
declare const _default$y: React__default.NamedExoticComponent<FlagProps$1>;
|
|
1198
1198
|
|
|
1199
1199
|
type SpecialistLangsProps = {
|
|
1200
1200
|
showLoader?: boolean;
|
|
@@ -1234,7 +1234,7 @@ type ProfileInformationProps = {
|
|
|
1234
1234
|
reviews: string[];
|
|
1235
1235
|
};
|
|
1236
1236
|
} & React__default.HTMLAttributes<HTMLDivElement>;
|
|
1237
|
-
declare const _default$
|
|
1237
|
+
declare const _default$x: React__default.NamedExoticComponent<ProfileInformationProps>;
|
|
1238
1238
|
|
|
1239
1239
|
type SpecialistMatchProps = {
|
|
1240
1240
|
specialistFirstName?: string;
|
|
@@ -1246,7 +1246,7 @@ type SpecialistMatchProps = {
|
|
|
1246
1246
|
howWeMatchThis: string;
|
|
1247
1247
|
};
|
|
1248
1248
|
} & React__default.HTMLAttributes<HTMLDivElement>;
|
|
1249
|
-
declare const _default$
|
|
1249
|
+
declare const _default$w: React__default.NamedExoticComponent<SpecialistMatchProps>;
|
|
1250
1250
|
|
|
1251
1251
|
type SpecialistStatisticProps = {
|
|
1252
1252
|
learnMoreClick: () => void;
|
|
@@ -1266,7 +1266,7 @@ type SpecialistStatisticProps = {
|
|
|
1266
1266
|
bookedSession: string;
|
|
1267
1267
|
};
|
|
1268
1268
|
} & React__default.HTMLAttributes<HTMLDivElement>;
|
|
1269
|
-
declare const _default$
|
|
1269
|
+
declare const _default$v: React__default.NamedExoticComponent<SpecialistStatisticProps>;
|
|
1270
1270
|
|
|
1271
1271
|
type RatingWithLabelProps = {
|
|
1272
1272
|
countOfReviews?: number;
|
|
@@ -1457,7 +1457,7 @@ type TypographyProps = {
|
|
|
1457
1457
|
onClick?: (args: any) => typeof args;
|
|
1458
1458
|
isError?: boolean;
|
|
1459
1459
|
};
|
|
1460
|
-
declare const _default$
|
|
1460
|
+
declare const _default$u: React__default.NamedExoticComponent<TypographyProps>;
|
|
1461
1461
|
|
|
1462
1462
|
type AppFooterProps = {
|
|
1463
1463
|
children?: React__default.ReactNode;
|
|
@@ -1467,7 +1467,7 @@ type AppFooterProps = {
|
|
|
1467
1467
|
style?: CSSProperties;
|
|
1468
1468
|
toolbarStyle?: CSSProperties;
|
|
1469
1469
|
};
|
|
1470
|
-
declare const _default$
|
|
1470
|
+
declare const _default$t: React__default.NamedExoticComponent<AppFooterProps>;
|
|
1471
1471
|
|
|
1472
1472
|
type AvatarRoundVariants = 'circle' | 'drop';
|
|
1473
1473
|
|
|
@@ -1479,14 +1479,14 @@ type AvatarProps = {
|
|
|
1479
1479
|
alt?: string;
|
|
1480
1480
|
showSkeleton?: boolean;
|
|
1481
1481
|
};
|
|
1482
|
-
declare const _default$
|
|
1482
|
+
declare const _default$s: React__default.NamedExoticComponent<AvatarProps>;
|
|
1483
1483
|
|
|
1484
1484
|
type SkeletonProps = {
|
|
1485
1485
|
animated?: boolean;
|
|
1486
1486
|
className?: string;
|
|
1487
1487
|
style?: React__default.CSSProperties;
|
|
1488
1488
|
};
|
|
1489
|
-
declare const _default$
|
|
1489
|
+
declare const _default$r: React__default.NamedExoticComponent<SkeletonProps>;
|
|
1490
1490
|
|
|
1491
1491
|
type ButtonProps = {
|
|
1492
1492
|
fill?: 'outline' | 'clear';
|
|
@@ -1521,7 +1521,7 @@ type FlagProps = {
|
|
|
1521
1521
|
name: string;
|
|
1522
1522
|
className?: string;
|
|
1523
1523
|
};
|
|
1524
|
-
declare const _default$
|
|
1524
|
+
declare const _default$q: React__default.NamedExoticComponent<FlagProps>;
|
|
1525
1525
|
|
|
1526
1526
|
type PictureProps = {
|
|
1527
1527
|
width: number;
|
|
@@ -1536,7 +1536,7 @@ type PictureProps = {
|
|
|
1536
1536
|
alt?: string;
|
|
1537
1537
|
className?: string;
|
|
1538
1538
|
};
|
|
1539
|
-
declare const _default$
|
|
1539
|
+
declare const _default$p: React__default.NamedExoticComponent<PictureProps>;
|
|
1540
1540
|
|
|
1541
1541
|
type BadgeType = 'default' | 'accent';
|
|
1542
1542
|
type BadgeVariants = 'attention' | 'neutral' | 'success' | 'warning' | 'brand' | 'info';
|
|
@@ -1546,7 +1546,7 @@ type BadgeProps = React.ComponentPropsWithoutRef<'span'> & {
|
|
|
1546
1546
|
type?: BadgeType;
|
|
1547
1547
|
};
|
|
1548
1548
|
|
|
1549
|
-
declare const _default$
|
|
1549
|
+
declare const _default$o: React.NamedExoticComponent<BadgeProps>;
|
|
1550
1550
|
|
|
1551
1551
|
type ItemCardVariants = 'neutral' | 'transparent' | 'transparent20';
|
|
1552
1552
|
type ItemCardProps = React.ComponentPropsWithoutRef<'div'> & {
|
|
@@ -1554,7 +1554,7 @@ type ItemCardProps = React.ComponentPropsWithoutRef<'div'> & {
|
|
|
1554
1554
|
size?: 'M' | 'M4' | 'M45';
|
|
1555
1555
|
};
|
|
1556
1556
|
|
|
1557
|
-
declare const _default$
|
|
1557
|
+
declare const _default$n: React.NamedExoticComponent<ItemCardProps>;
|
|
1558
1558
|
|
|
1559
1559
|
type AppHeaderProps = {
|
|
1560
1560
|
fullwidth?: boolean;
|
|
@@ -1834,7 +1834,7 @@ interface TextareaV2Props extends Omit<JSX$1.IonTextarea, 'color' | 'enterkeyhin
|
|
|
1834
1834
|
onKeyPress?: (e: KeyboardEvent<HTMLIonTextareaElement>) => void;
|
|
1835
1835
|
}
|
|
1836
1836
|
|
|
1837
|
-
declare const _default$
|
|
1837
|
+
declare const _default$m: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TextareaV2Props & React__default.RefAttributes<HTMLIonTextareaElement>>>;
|
|
1838
1838
|
|
|
1839
1839
|
type RatingProps = {
|
|
1840
1840
|
initialRating?: number;
|
|
@@ -1846,7 +1846,7 @@ type RatingProps = {
|
|
|
1846
1846
|
readonly?: boolean;
|
|
1847
1847
|
};
|
|
1848
1848
|
|
|
1849
|
-
declare const _default$
|
|
1849
|
+
declare const _default$l: React__default.NamedExoticComponent<RatingProps>;
|
|
1850
1850
|
|
|
1851
1851
|
declare const RatingCircleWrapper: FC<CircleRatingComponentProps & {
|
|
1852
1852
|
t: WithTranslation | any;
|
|
@@ -1860,7 +1860,7 @@ type IconButtonProps = {
|
|
|
1860
1860
|
fill?: 'clear' | 'filled';
|
|
1861
1861
|
type?: 'button' | 'submit' | 'reset';
|
|
1862
1862
|
};
|
|
1863
|
-
declare const _default$
|
|
1863
|
+
declare const _default$k: React__default.NamedExoticComponent<IconButtonProps>;
|
|
1864
1864
|
|
|
1865
1865
|
type ToastProviderProps = ToastStateProps;
|
|
1866
1866
|
type MindlyToastProps = {
|
|
@@ -1902,17 +1902,17 @@ type ProgressBar_v2Props = {
|
|
|
1902
1902
|
className?: string;
|
|
1903
1903
|
reversed?: boolean;
|
|
1904
1904
|
};
|
|
1905
|
-
declare const _default$
|
|
1905
|
+
declare const _default$j: React__default.NamedExoticComponent<ProgressBar_v2Props>;
|
|
1906
1906
|
|
|
1907
1907
|
type LoadingProps = {
|
|
1908
1908
|
isOpen: boolean;
|
|
1909
1909
|
};
|
|
1910
|
-
declare const _default$
|
|
1910
|
+
declare const _default$i: React__default.NamedExoticComponent<LoadingProps>;
|
|
1911
1911
|
|
|
1912
1912
|
type ListItemsProps = React.HTMLAttributes<HTMLIonListElement> & {
|
|
1913
1913
|
withBorders?: boolean;
|
|
1914
1914
|
};
|
|
1915
|
-
declare const _default$
|
|
1915
|
+
declare const _default$h: React.NamedExoticComponent<ListItemsProps>;
|
|
1916
1916
|
|
|
1917
1917
|
type ItemProps = React.HTMLAttributes<HTMLIonItemElement> & {
|
|
1918
1918
|
leftContent?: React.ReactNode;
|
|
@@ -1922,14 +1922,14 @@ type ItemProps = React.HTMLAttributes<HTMLIonItemElement> & {
|
|
|
1922
1922
|
isDisabled?: boolean;
|
|
1923
1923
|
isError?: boolean;
|
|
1924
1924
|
};
|
|
1925
|
-
declare const _default$
|
|
1925
|
+
declare const _default$g: React.NamedExoticComponent<ItemProps>;
|
|
1926
1926
|
|
|
1927
1927
|
type VideoProps = {
|
|
1928
1928
|
src: string;
|
|
1929
1929
|
isMuted: boolean;
|
|
1930
1930
|
onMuteToggle: () => void;
|
|
1931
1931
|
};
|
|
1932
|
-
declare const _default$
|
|
1932
|
+
declare const _default$f: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<VideoProps & React__default.RefAttributes<HTMLVideoElement>>>;
|
|
1933
1933
|
|
|
1934
1934
|
type UlLiProps = {
|
|
1935
1935
|
list: string[];
|
|
@@ -1995,15 +1995,15 @@ type ProgressBarDashedProps = {
|
|
|
1995
1995
|
};
|
|
1996
1996
|
declare const ProgressBarDashed: FC<ProgressBarDashedProps>;
|
|
1997
1997
|
|
|
1998
|
-
type SelectionType = {
|
|
1998
|
+
type SelectionType$1 = {
|
|
1999
1999
|
value: any;
|
|
2000
2000
|
label: string;
|
|
2001
2001
|
};
|
|
2002
2002
|
type Props$2 = {
|
|
2003
2003
|
height?: number | undefined;
|
|
2004
|
-
selections: Record<string, SelectionType[]>;
|
|
2004
|
+
selections: Record<string, SelectionType$1[]>;
|
|
2005
2005
|
defaults?: Record<string, string>;
|
|
2006
|
-
onChange(value: Record<string, SelectionType>): void;
|
|
2006
|
+
onChange(value: Record<string, SelectionType$1>): void;
|
|
2007
2007
|
className?: string;
|
|
2008
2008
|
compareBy?: 'value' | 'label';
|
|
2009
2009
|
};
|
|
@@ -2501,9 +2501,9 @@ type SlotsGridItemProps = {
|
|
|
2501
2501
|
onSelectionChange: () => void;
|
|
2502
2502
|
};
|
|
2503
2503
|
|
|
2504
|
-
declare const _default$
|
|
2504
|
+
declare const _default$e: React__default.NamedExoticComponent<SlotsGridProps>;
|
|
2505
2505
|
|
|
2506
|
-
declare const _default$
|
|
2506
|
+
declare const _default$d: React.NamedExoticComponent<SlotsGridItemProps>;
|
|
2507
2507
|
|
|
2508
2508
|
type PushNotificationsModalProps = {
|
|
2509
2509
|
onApplyPermission: () => void;
|
|
@@ -2603,23 +2603,23 @@ type ShareModalFeatureProps = {
|
|
|
2603
2603
|
};
|
|
2604
2604
|
declare const ShareModalFeature: FC<ShareModalFeatureProps>;
|
|
2605
2605
|
|
|
2606
|
-
declare const _default$
|
|
2606
|
+
declare const _default$c: React__default.NamedExoticComponent<SpecialistPaymentConsultationDetailsType & TranslationType>;
|
|
2607
2607
|
|
|
2608
|
-
declare const _default$
|
|
2608
|
+
declare const _default$b: React__default.NamedExoticComponent<SpecialistPaymentCardProps & TranslationType>;
|
|
2609
2609
|
|
|
2610
2610
|
type SpecialistPaymentCommonCardSkeletonType = {
|
|
2611
2611
|
className?: string;
|
|
2612
2612
|
};
|
|
2613
2613
|
declare const SpecialistPaymentCommonCardSkeleton: (props: SpecialistPaymentCommonCardSkeletonType) => JSX.Element;
|
|
2614
2614
|
|
|
2615
|
-
declare const _default$
|
|
2615
|
+
declare const _default$a: React__default.NamedExoticComponent<SpecialistPaymentConsultationsProps & TranslationType>;
|
|
2616
2616
|
|
|
2617
2617
|
type ConsultationsListProps = {
|
|
2618
2618
|
consultations: SpecialistConsultation[];
|
|
2619
2619
|
locale?: string;
|
|
2620
2620
|
consultationClick?: (consultation: SpecialistConsultation) => void;
|
|
2621
2621
|
};
|
|
2622
|
-
declare const _default$
|
|
2622
|
+
declare const _default$9: React__default.NamedExoticComponent<ConsultationsListProps>;
|
|
2623
2623
|
|
|
2624
2624
|
type ConsultationsListSkeletonType = {
|
|
2625
2625
|
className?: string;
|
|
@@ -2634,9 +2634,9 @@ type CalendarPickerFeatureProps = {
|
|
|
2634
2634
|
monthsMore?: number;
|
|
2635
2635
|
dateCallback: (date: Date) => void;
|
|
2636
2636
|
};
|
|
2637
|
-
declare const _default$
|
|
2637
|
+
declare const _default$8: React__default.NamedExoticComponent<CalendarPickerFeatureProps & TranslationType>;
|
|
2638
2638
|
|
|
2639
|
-
declare const _default$
|
|
2639
|
+
declare const _default$7: React__default.NamedExoticComponent<PaymentCalendarFeatureProps & TranslationType>;
|
|
2640
2640
|
|
|
2641
2641
|
type GoogleCalendarModalFeatureProps = {
|
|
2642
2642
|
isOpen: boolean;
|
|
@@ -2658,7 +2658,7 @@ type ReviewCardFeatureProps = {
|
|
|
2658
2658
|
review: string;
|
|
2659
2659
|
size?: 'default' | 'small';
|
|
2660
2660
|
} & TranslationType;
|
|
2661
|
-
declare const _default$
|
|
2661
|
+
declare const _default$6: React__default.NamedExoticComponent<ReviewCardFeatureProps>;
|
|
2662
2662
|
|
|
2663
2663
|
type AppNotSupportedProps = {
|
|
2664
2664
|
isOpen: boolean;
|
|
@@ -2681,6 +2681,9 @@ type ScreenInputUpdateFeatureProps = {
|
|
|
2681
2681
|
isDisabled: boolean;
|
|
2682
2682
|
isKeyboardShown: boolean;
|
|
2683
2683
|
};
|
|
2684
|
+
/**
|
|
2685
|
+
* @deprecated Use `ScreenInputFormFeature`
|
|
2686
|
+
* */
|
|
2684
2687
|
declare const ScreenInputUpdateFeature: FC<ScreenInputUpdateFeatureProps>;
|
|
2685
2688
|
|
|
2686
2689
|
type ErrorCardFeatureProps = {
|
|
@@ -2719,17 +2722,70 @@ type OutdatedPersonalDataFeatureProps = {
|
|
|
2719
2722
|
|
|
2720
2723
|
declare function OutdatedPersonalDataFeature({ isOpen, presentingElement, onApply, onDismiss, subtitle, title, applyText, }: OutdatedPersonalDataFeatureProps): JSX.Element;
|
|
2721
2724
|
|
|
2725
|
+
type ScreenInputFormFeatureProps = {
|
|
2726
|
+
type?: 'text' | 'email' | 'number';
|
|
2727
|
+
title?: string;
|
|
2728
|
+
subtitle?: string;
|
|
2729
|
+
placeholder?: string;
|
|
2730
|
+
buttonText?: string;
|
|
2731
|
+
defaultValue?: string;
|
|
2732
|
+
onSubmit?: (value: string, name: string) => void;
|
|
2733
|
+
name?: string;
|
|
2734
|
+
isLoading?: boolean;
|
|
2735
|
+
resetButtonText?: string;
|
|
2736
|
+
resetValue?: string;
|
|
2737
|
+
autoComplete?: string;
|
|
2738
|
+
required?: boolean;
|
|
2739
|
+
isFocus?: boolean;
|
|
2740
|
+
pattern?: string;
|
|
2741
|
+
isAutoGrow?: boolean;
|
|
2742
|
+
icon?: ReactNode | string;
|
|
2743
|
+
isKeyboardShown?: boolean;
|
|
2744
|
+
};
|
|
2745
|
+
declare const _default$5: React__default.NamedExoticComponent<ScreenInputFormFeatureProps>;
|
|
2746
|
+
|
|
2747
|
+
type SelectionType = {
|
|
2748
|
+
value: any;
|
|
2749
|
+
label: string;
|
|
2750
|
+
};
|
|
2751
|
+
type SpecialistDrumPickerWidgetProps = {
|
|
2752
|
+
title?: string;
|
|
2753
|
+
subtitle?: string;
|
|
2754
|
+
buttonText?: string;
|
|
2755
|
+
selections: Record<string, SelectionType[]>;
|
|
2756
|
+
defaults?: Record<string, string>;
|
|
2757
|
+
onChange(value: Record<string, string>): void;
|
|
2758
|
+
compareBy?: 'value' | 'label';
|
|
2759
|
+
isLoading?: boolean;
|
|
2760
|
+
onTouchStart?: () => void;
|
|
2761
|
+
onTouchEnd?: () => void;
|
|
2762
|
+
};
|
|
2763
|
+
declare const _default$4: React__default.NamedExoticComponent<SpecialistDrumPickerWidgetProps>;
|
|
2764
|
+
|
|
2765
|
+
type TextAreaFormFeatureProps = {
|
|
2766
|
+
title?: string;
|
|
2767
|
+
placeholder?: string;
|
|
2768
|
+
buttonText?: string;
|
|
2769
|
+
defaultValue?: string;
|
|
2770
|
+
onSubmit?: (value: string, name: string) => void;
|
|
2771
|
+
name?: string;
|
|
2772
|
+
isLoading?: boolean;
|
|
2773
|
+
isFocus?: boolean;
|
|
2774
|
+
isKeyboardShown?: boolean;
|
|
2775
|
+
};
|
|
2776
|
+
declare const _default$3: React__default.NamedExoticComponent<TextAreaFormFeatureProps>;
|
|
2777
|
+
|
|
2722
2778
|
type SupportedCountryLocale = string;
|
|
2723
2779
|
type Tabs = {
|
|
2724
2780
|
behavior: 'tax-country' | 'profile-lang';
|
|
2725
2781
|
localeOrCountry: `${SupportedLangs}` | SupportedCountryLocale;
|
|
2726
2782
|
t: WithTranslation['t'];
|
|
2727
|
-
jsonTree: TreeNode[];
|
|
2783
|
+
jsonTree: TreeNode[][];
|
|
2728
2784
|
};
|
|
2729
2785
|
type TabsReturnType = {
|
|
2730
2786
|
id: `${SupportedLangs}`;
|
|
2731
2787
|
title: string;
|
|
2732
|
-
value: TreeNode;
|
|
2788
|
+
value: TreeNode[];
|
|
2733
2789
|
};
|
|
2734
2790
|
/**
|
|
2735
2791
|
* This function takes json tree and locale and
|
|
@@ -2789,4 +2845,4 @@ declare const _default$1: React__default.NamedExoticComponent<SpecialistPaymentC
|
|
|
2789
2845
|
|
|
2790
2846
|
declare const _default: React__default.NamedExoticComponent<SpecialistPaymentCardProps & SpecialistPaymentConsultationsProps & TranslationType>;
|
|
2791
2847
|
|
|
2792
|
-
export { AppFooter, _default$
|
|
2848
|
+
export { AppFooter, _default$t as AppFooter_v2, AppHeader, AppHeader_v2, AppNotSupportedFeature, ArchivedConsultationCard, Avatar, AvatarProps$1 as AvatarProps, _default$s as Avatar_v2, BREAKPOINT_ICON_SIZE, _default$o as Badge, _default$H as BookingScheduleTime, _default$G as BookingSpecialistInfo, Button, Button_v2, Calendar, _default$8 as CalendarPickerFeature, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$10 as ChatListItem, _default$_ as ChatListSkeleton, _default$$ as ChatMessage, ChatMessageSkeleton, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$B as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingContext, CircleRatingProvider, CollapsableText, _default$T as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$Q as ConsultationModal, _default$c as ConsultationPricingFeature, _default$O as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentCard, ContentRendererProps, ContentTree as ContractTreeFeature, CountdownTimerFeature, CountryOfOriginModal, CustomButton, _default$C as CustomCheckbox, CustomRadioButton, _default$D as CustomSelect, _default$E as CustomTextarea, DatePicker, _default$M as DaySlider, DayToRender, DrumListPicker, _default$I as EducationCard, _default$Z as EmptyChatList, EmptyChatMessages, _default$R as EmptyConsultations, EntryNotFound, EntryNotFoundProps, ErrorCardFeature, _default$y as Flag, FlagTypes, _default$q as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconAddModerator, IconApple, IconArrowDown, IconArrowLeft, IconArrowRight, IconArrowTopRight, IconAttachMoney, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$k 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, IconLanguage, IconLeftArrow, IconLetter, IconLink, IconLock, IconLogout, IconManageAccounts, IconMinus, IconMoreVertical, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPause, IconPersonAlert, IconPlus, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconQueryStats, IconQuestion, IconRadioButtonChecked, 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$g as Item, _default$n as ItemCard, LabelArrowRedirect, LanguagesList, _default$14 as LetterAvatar, _default$z as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListButton, ListItemType, _default$h as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$i as Loading, LouseConnect, _default$11 as MediaPlayer, Modal, ModalCalendar, ModalSheet, NavigationBar, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, OutdatedPersonalDataFeature, PasswordInput, _default$7 as PaymentCalendarFeature, _default$9 as PaymentSessionsList, _default$13 as PersonDateTimeCard, _default$p as Picture, _default$x as ProfileInformation, _default$K as ProfileView, _default$A as ProgressBar, ProgressBarDashed, _default$j as ProgressBar_v2, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$l as Rating, RatingCircleWrapper, _default$N as ReSchedule, ReScheduleSuccess, Refresher, ReviewCard, _default$6 as ReviewCardFeature, ReviewStatistics, ReviewSwiperSection, RoundButton, RowItemType, RowSelect, RowSelectProps, SIZES, _default$4 as ScreenDrumPickerFormFeature, ScreenInput, _default$5 as ScreenInputFormFeature, ScreenInputUpdateFeature, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$12 as SelectImpressionEmoji, SelectItemType, ShareModalFeature, _default$S as SignUpSessionButton, _default$P as SignUpSessionModal, Skeleton, _default$r as Skeleton_v2, _default$e as SlotsGrid, _default$d as SlotsGridItem, _default$J as SpecialistAbout, SpecialistCard$1 as SpecialistCard, SpecialistCardListWidget, _default$2 as SpecialistCardWidget, _default$X as SpecialistEducationCard, SpecialistInfoColumnFeature as SpecialistInfoColumn, SpecialistLangs, _default$w as SpecialistMatch, _default$b as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, _default$a as SpecialistPaymentConsultationsFeature, _default as SpecialistPaymentResumeWidget, _default$1 as SpecialistPaymentWidget, _default$W as SpecialistProfileViewCard, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default$v as SpecialistStatistic, SpecialistStatisticsCard, SpecialistWorkDirections, Spinner, Spinner_v2, StarRating, StatisticsScroll, StatusTag, SuccessScreen, SwitchDeviceCard, TabBar, TabItem, Tabs$1 as Tabs, Tag, _default$3 as TextAreaFormFeature, _default$F as TextInput, _default$Y as Textarea, _default$m as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TreeNode, _default$u as Typography, TypographyVariantsEnum, UpdatesCard, UserInfoModal, UsersPsychologistScrollList, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$f as Video, _default$U as VideoCallInfo, _default$V as VideoPlayer, _default$L as WorkDirections, YourLocalTimeBlock, appThemes, decOfNum, getProgressForBreakPoint, getSignAgreementsTabs, mergeRefs, newShade, priceNormalize, replaceAsterisksWithBold, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDomRef, useEvent, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useToastContext };
|