@mindly/ui-components 5.99.1 → 5.99.3
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 +6 -6
- package/dist/cjs/lib2/features/OnBoardingFlow/OnBoardingConfirmScreenPreviewFeature/OnBoardingConfirmScreenPreviewFeature.d.ts +4 -0
- package/dist/cjs/lib2/features/OnBoardingFlow/OnBoardingConfirmScreenPreviewFeature/index.d.ts +1 -0
- package/dist/cjs/lib2/features/OnBoardingFlow/OnBoardingEmailScreenPreviewFeature/OnBoardingEmailScreenPreviewFeature.d.ts +4 -0
- package/dist/cjs/lib2/features/OnBoardingFlow/OnBoardingEmailScreenPreviewFeature/index.d.ts +1 -0
- package/dist/cjs/lib2/features/OnBoardingFlow/index.d.ts +2 -0
- package/dist/cjs/lib2/shared/types/onBoardingFlow.type.d.ts +28 -2
- package/dist/cjs/lib2/shared/ui/SolidInput/SolidInput.d.ts +12 -0
- package/dist/cjs/lib2/shared/ui/SolidInput/SolidInput.stories.d.ts +6 -0
- package/dist/cjs/lib2/shared/ui/SolidInput/index.d.ts +1 -0
- package/dist/cjs/lib2/shared/ui/SolidInput/types.d.ts +12 -0
- package/dist/cjs/lib2/shared/ui/index.d.ts +1 -0
- package/dist/esm/index.js +6 -6
- package/dist/esm/lib2/features/OnBoardingFlow/OnBoardingConfirmScreenPreviewFeature/OnBoardingConfirmScreenPreviewFeature.d.ts +4 -0
- package/dist/esm/lib2/features/OnBoardingFlow/OnBoardingConfirmScreenPreviewFeature/index.d.ts +1 -0
- package/dist/esm/lib2/features/OnBoardingFlow/OnBoardingEmailScreenPreviewFeature/OnBoardingEmailScreenPreviewFeature.d.ts +4 -0
- package/dist/esm/lib2/features/OnBoardingFlow/OnBoardingEmailScreenPreviewFeature/index.d.ts +1 -0
- package/dist/esm/lib2/features/OnBoardingFlow/index.d.ts +2 -0
- package/dist/esm/lib2/shared/types/onBoardingFlow.type.d.ts +28 -2
- package/dist/esm/lib2/shared/ui/SolidInput/SolidInput.d.ts +12 -0
- package/dist/esm/lib2/shared/ui/SolidInput/SolidInput.stories.d.ts +6 -0
- package/dist/esm/lib2/shared/ui/SolidInput/index.d.ts +1 -0
- package/dist/esm/lib2/shared/ui/SolidInput/types.d.ts +12 -0
- package/dist/esm/lib2/shared/ui/index.d.ts +1 -0
- package/dist/index.d.ts +114 -72
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import * as React$1 from 'react';
|
|
3
|
-
import React__default, { ReactNode, CSSProperties, HTMLAttributes, RefAttributes, FC, SVGAttributes, KeyboardEvent, InputHTMLAttributes, RefObject, EffectCallback, SVGProps, PropsWithChildren, ReactText, ReactElement, ChangeEvent } from 'react';
|
|
3
|
+
import React__default, { ReactNode, CSSProperties, HTMLAttributes, RefAttributes, FC, SVGAttributes, KeyboardEvent, InputHTMLAttributes, FormEventHandler, RefObject, EffectCallback, SVGProps, PropsWithChildren, ReactText, ReactElement, ChangeEvent } from 'react';
|
|
4
4
|
import { JSX as JSX$1 } from '@ionic/core/components';
|
|
5
5
|
import * as react_i18next from 'react-i18next';
|
|
6
6
|
import { WithTranslation } from 'react-i18next';
|
|
@@ -13,7 +13,7 @@ export { Selection } from 'react-stately';
|
|
|
13
13
|
import { AriaListBoxProps, AriaCalendarProps, DateValue, AriaTabListProps } from 'react-aria';
|
|
14
14
|
import { ToastStateProps, ToastState } from '@react-stately/toast';
|
|
15
15
|
import { AriaToastRegionProps } from '@react-aria/toast';
|
|
16
|
-
import { IonSearchbarCustomEvent, SearchbarChangeEventDetail } from '@ionic/core';
|
|
16
|
+
import { IonSearchbarCustomEvent, SearchbarChangeEventDetail, TextFieldTypes } from '@ionic/core';
|
|
17
17
|
import { MarkdownToJSX } from 'markdown-to-jsx';
|
|
18
18
|
|
|
19
19
|
interface ButtonProps$2 {
|
|
@@ -226,7 +226,7 @@ type LetterAvatarProps = {
|
|
|
226
226
|
fontSize?: number;
|
|
227
227
|
onClick?: () => void;
|
|
228
228
|
};
|
|
229
|
-
declare const _default$
|
|
229
|
+
declare const _default$1k: 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$1j: React__default.NamedExoticComponent<PersonDateTimeCardProps>;
|
|
242
242
|
|
|
243
243
|
type PsychologistProfileType = {
|
|
244
244
|
id: string;
|
|
@@ -405,7 +405,7 @@ type SelectImpressionEmojiProps = {
|
|
|
405
405
|
onChange?: (val: ImpressionEmojiEnum) => void;
|
|
406
406
|
};
|
|
407
407
|
|
|
408
|
-
declare const _default$
|
|
408
|
+
declare const _default$1i: React__default.NamedExoticComponent<SelectImpressionEmojiProps>;
|
|
409
409
|
|
|
410
410
|
interface FooterForBookingProps {
|
|
411
411
|
eventHandler: (props?: React__default.SyntheticEvent) => void;
|
|
@@ -437,7 +437,7 @@ type MediaPlayerProps<TCameraTrack extends Playable | undefined, TAudioTrack ext
|
|
|
437
437
|
showControls: boolean;
|
|
438
438
|
isScreenSharing?: boolean;
|
|
439
439
|
} & HTMLAttributes<HTMLDivElement>;
|
|
440
|
-
declare const _default$
|
|
440
|
+
declare const _default$1h: <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;
|
|
441
441
|
|
|
442
442
|
type RoundButtonPropsType = {
|
|
443
443
|
disabled?: boolean;
|
|
@@ -466,7 +466,7 @@ type ChatListItemProps = {
|
|
|
466
466
|
isDisabled?: boolean;
|
|
467
467
|
t?: WithTranslation['t'];
|
|
468
468
|
};
|
|
469
|
-
declare const _default$
|
|
469
|
+
declare const _default$1g: React__default.NamedExoticComponent<ChatListItemProps>;
|
|
470
470
|
|
|
471
471
|
type ChatMessageProps = {
|
|
472
472
|
message: string | File;
|
|
@@ -494,11 +494,11 @@ type ChatMessageProps = {
|
|
|
494
494
|
onClickHandler: () => void;
|
|
495
495
|
}[] | null;
|
|
496
496
|
};
|
|
497
|
-
declare const _default$
|
|
497
|
+
declare const _default$1f: React__default.NamedExoticComponent<ChatMessageProps>;
|
|
498
498
|
|
|
499
499
|
declare const ChatMessageSkeleton: () => JSX.Element;
|
|
500
500
|
|
|
501
|
-
declare const _default$
|
|
501
|
+
declare const _default$1e: React__default.MemoExoticComponent<() => JSX.Element>;
|
|
502
502
|
|
|
503
503
|
type EmptyChatList = {
|
|
504
504
|
title?: string;
|
|
@@ -508,7 +508,7 @@ type EmptyChatList = {
|
|
|
508
508
|
onClick?: () => void;
|
|
509
509
|
};
|
|
510
510
|
declare const EmptyChatList: FC<EmptyChatList>;
|
|
511
|
-
declare const _default$
|
|
511
|
+
declare const _default$1d: React__default.NamedExoticComponent<EmptyChatList>;
|
|
512
512
|
|
|
513
513
|
type EmptyChatMessagesProps = {
|
|
514
514
|
title?: string;
|
|
@@ -533,7 +533,7 @@ type TextareaProps = {
|
|
|
533
533
|
onFileSelect?: (file: File | null, type: 'file' | 'image' | 'video', fileInfo: FileInfoType) => void;
|
|
534
534
|
t?: WithTranslation['t'];
|
|
535
535
|
};
|
|
536
|
-
declare const _default$
|
|
536
|
+
declare const _default$1c: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TextareaProps & React__default.RefAttributes<HTMLIonFooterElement>>>;
|
|
537
537
|
|
|
538
538
|
type LouseConnectProps = {
|
|
539
539
|
onClick?: () => void;
|
|
@@ -612,7 +612,7 @@ type SpecialistEducationCardProps$1 = {
|
|
|
612
612
|
yearEnd?: number | null;
|
|
613
613
|
showLoader?: boolean;
|
|
614
614
|
};
|
|
615
|
-
declare const _default$
|
|
615
|
+
declare const _default$1b: React__default.NamedExoticComponent<SpecialistEducationCardProps$1>;
|
|
616
616
|
|
|
617
617
|
type SpecialistProfileViewCardProps$1 = {
|
|
618
618
|
avatarLink?: string | null;
|
|
@@ -625,7 +625,7 @@ type SpecialistProfileViewCardProps$1 = {
|
|
|
625
625
|
videoLinkUrl?: string | null;
|
|
626
626
|
showLoader?: boolean;
|
|
627
627
|
} & React__default.DetailedHTMLProps<React__default.HTMLAttributes<HTMLDivElement>, HTMLDivElement>;
|
|
628
|
-
declare const _default$
|
|
628
|
+
declare const _default$1a: React__default.NamedExoticComponent<SpecialistProfileViewCardProps$1>;
|
|
629
629
|
|
|
630
630
|
type SpecialistStatisticsCardProps$1 = {
|
|
631
631
|
activeClients?: number;
|
|
@@ -661,7 +661,7 @@ type VideoPlayerProps = {
|
|
|
661
661
|
closeModalHandler?: () => void;
|
|
662
662
|
onErrorContent: React__default.ReactElement;
|
|
663
663
|
} & JSX$1.IonModal;
|
|
664
|
-
declare const _default$
|
|
664
|
+
declare const _default$19: React__default.NamedExoticComponent<VideoPlayerProps>;
|
|
665
665
|
|
|
666
666
|
type NotSupportModalProps = {
|
|
667
667
|
closeModal?: () => void;
|
|
@@ -697,7 +697,7 @@ type VideoCallInfoProps = {
|
|
|
697
697
|
abbreviatedSeconds: string;
|
|
698
698
|
};
|
|
699
699
|
};
|
|
700
|
-
declare const _default$
|
|
700
|
+
declare const _default$18: React__default.NamedExoticComponent<VideoCallInfoProps>;
|
|
701
701
|
|
|
702
702
|
declare enum ConsultationCardType {
|
|
703
703
|
FEATURE = "feature",
|
|
@@ -733,14 +733,14 @@ type ConsultationCardProps = {
|
|
|
733
733
|
isBlockedText?: string;
|
|
734
734
|
};
|
|
735
735
|
|
|
736
|
-
declare const _default$
|
|
736
|
+
declare const _default$17: React__default.NamedExoticComponent<ConsultationCardProps>;
|
|
737
737
|
|
|
738
738
|
type SignUpSessionButtonProps = {
|
|
739
739
|
label: string;
|
|
740
740
|
isLoading?: boolean;
|
|
741
741
|
onClick?: () => void;
|
|
742
742
|
};
|
|
743
|
-
declare const _default$
|
|
743
|
+
declare const _default$16: React__default.NamedExoticComponent<SignUpSessionButtonProps>;
|
|
744
744
|
|
|
745
745
|
type EmptyConsultationsProps = {
|
|
746
746
|
title: string;
|
|
@@ -748,7 +748,7 @@ type EmptyConsultationsProps = {
|
|
|
748
748
|
buttonLabel?: string;
|
|
749
749
|
onClick?: () => void;
|
|
750
750
|
};
|
|
751
|
-
declare const _default$
|
|
751
|
+
declare const _default$15: React__default.NamedExoticComponent<EmptyConsultationsProps>;
|
|
752
752
|
|
|
753
753
|
type ConsultationModalProps = {
|
|
754
754
|
isOpen: boolean;
|
|
@@ -784,7 +784,7 @@ type ConsultationModalProps = {
|
|
|
784
784
|
started?: string;
|
|
785
785
|
};
|
|
786
786
|
};
|
|
787
|
-
declare const _default$
|
|
787
|
+
declare const _default$14: React__default.NamedExoticComponent<ConsultationModalProps>;
|
|
788
788
|
|
|
789
789
|
type SpecialistData = {
|
|
790
790
|
id: string;
|
|
@@ -802,7 +802,7 @@ type SignUpSessionModalProps = {
|
|
|
802
802
|
title: string;
|
|
803
803
|
cancelBtnLabel: string;
|
|
804
804
|
};
|
|
805
|
-
declare const _default$
|
|
805
|
+
declare const _default$13: React__default.NamedExoticComponent<SignUpSessionModalProps>;
|
|
806
806
|
|
|
807
807
|
type ConsultationSpecialistCardProps = {
|
|
808
808
|
id: string;
|
|
@@ -814,7 +814,7 @@ type ConsultationSpecialistCardProps = {
|
|
|
814
814
|
signInBtnLabel: string;
|
|
815
815
|
isBlockedText?: string;
|
|
816
816
|
};
|
|
817
|
-
declare const _default$
|
|
817
|
+
declare const _default$12: React__default.NamedExoticComponent<ConsultationSpecialistCardProps>;
|
|
818
818
|
|
|
819
819
|
type UserInfoModalProps = {
|
|
820
820
|
isOpen: boolean;
|
|
@@ -885,7 +885,7 @@ type ReScheduleProps = {
|
|
|
885
885
|
btnLabel: string;
|
|
886
886
|
};
|
|
887
887
|
};
|
|
888
|
-
declare const _default
|
|
888
|
+
declare const _default$11: React__default.NamedExoticComponent<ReScheduleProps>;
|
|
889
889
|
|
|
890
890
|
type ReScheduleSuccessProps = {
|
|
891
891
|
name: string;
|
|
@@ -923,7 +923,7 @@ type DaySliderProps = JSX$1.IonSlides & HTMLAttributes<HTMLIonSlidesElement> & R
|
|
|
923
923
|
tomorrow?: string;
|
|
924
924
|
};
|
|
925
925
|
};
|
|
926
|
-
declare const _default$
|
|
926
|
+
declare const _default$10: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<DaySliderProps, "ref"> & React__default.RefAttributes<HTMLIonSlidesElement>>>;
|
|
927
927
|
|
|
928
928
|
type SpecialistWorkDirectionsPropsType = {
|
|
929
929
|
workDirections?: string[] | [];
|
|
@@ -932,7 +932,7 @@ type SpecialistWorkDirectionsPropsType = {
|
|
|
932
932
|
moreLabel?: string;
|
|
933
933
|
hideLabel?: string;
|
|
934
934
|
};
|
|
935
|
-
declare const _default
|
|
935
|
+
declare const _default$$: React__default.NamedExoticComponent<SpecialistWorkDirectionsPropsType>;
|
|
936
936
|
|
|
937
937
|
type SpecialistProfileViewCardProps = {
|
|
938
938
|
videoLink?: string;
|
|
@@ -942,7 +942,7 @@ type SpecialistProfileViewCardProps = {
|
|
|
942
942
|
isLoading?: boolean;
|
|
943
943
|
videoDurationSeconds?: number;
|
|
944
944
|
};
|
|
945
|
-
declare const _default$
|
|
945
|
+
declare const _default$_: React__default.NamedExoticComponent<SpecialistProfileViewCardProps>;
|
|
946
946
|
|
|
947
947
|
type SpecialistAboutProps = {
|
|
948
948
|
text?: string;
|
|
@@ -951,7 +951,7 @@ type SpecialistAboutProps = {
|
|
|
951
951
|
moreLabel?: string;
|
|
952
952
|
hideLabel?: string;
|
|
953
953
|
};
|
|
954
|
-
declare const _default$
|
|
954
|
+
declare const _default$Z: React__default.NamedExoticComponent<SpecialistAboutProps>;
|
|
955
955
|
|
|
956
956
|
type SpecialistEducationCardProps = {
|
|
957
957
|
institutionName?: string;
|
|
@@ -962,7 +962,7 @@ type SpecialistEducationCardProps = {
|
|
|
962
962
|
yearEnd?: number | null;
|
|
963
963
|
showLoader?: boolean;
|
|
964
964
|
};
|
|
965
|
-
declare const _default$
|
|
965
|
+
declare const _default$Y: React__default.NamedExoticComponent<SpecialistEducationCardProps>;
|
|
966
966
|
|
|
967
967
|
type SpecialistStatisticsCardProps = {
|
|
968
968
|
trust?: boolean;
|
|
@@ -1008,7 +1008,7 @@ type BookingScheduleTimeProps = {
|
|
|
1008
1008
|
onClick?: (index: number, item: string) => void;
|
|
1009
1009
|
isLoading?: boolean;
|
|
1010
1010
|
};
|
|
1011
|
-
declare const _default$
|
|
1011
|
+
declare const _default$X: React__default.NamedExoticComponent<BookingScheduleTimeProps>;
|
|
1012
1012
|
|
|
1013
1013
|
type BookingSpecialistInfoProps = {
|
|
1014
1014
|
name: string;
|
|
@@ -1017,7 +1017,7 @@ type BookingSpecialistInfoProps = {
|
|
|
1017
1017
|
avatar?: string;
|
|
1018
1018
|
isLoading?: boolean;
|
|
1019
1019
|
};
|
|
1020
|
-
declare const _default$
|
|
1020
|
+
declare const _default$W: React__default.NamedExoticComponent<BookingSpecialistInfoProps>;
|
|
1021
1021
|
|
|
1022
1022
|
declare enum TypographyVariantsEnum {
|
|
1023
1023
|
Title48Bold = "Title/48 Bold",
|
|
@@ -1065,7 +1065,7 @@ type TypographyProps = {
|
|
|
1065
1065
|
isError?: boolean;
|
|
1066
1066
|
};
|
|
1067
1067
|
|
|
1068
|
-
declare const _default$
|
|
1068
|
+
declare const _default$V: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TypographyProps & React__default.RefAttributes<HTMLDivElement>>>;
|
|
1069
1069
|
|
|
1070
1070
|
type AlertCardVariants = 'transparent' | 'yellow' | 'blue';
|
|
1071
1071
|
type AlertCardProps = React$1.ComponentPropsWithoutRef<'div'> & {
|
|
@@ -1081,7 +1081,7 @@ type AlertCardProps = React$1.ComponentPropsWithoutRef<'div'> & {
|
|
|
1081
1081
|
};
|
|
1082
1082
|
};
|
|
1083
1083
|
|
|
1084
|
-
declare const _default$
|
|
1084
|
+
declare const _default$U: React$1.NamedExoticComponent<AlertCardProps>;
|
|
1085
1085
|
|
|
1086
1086
|
type AppFooterProps = {
|
|
1087
1087
|
children?: React__default.ReactNode;
|
|
@@ -1092,7 +1092,7 @@ type AppFooterProps = {
|
|
|
1092
1092
|
toolbarStyle?: CSSProperties;
|
|
1093
1093
|
className?: string;
|
|
1094
1094
|
};
|
|
1095
|
-
declare const _default$
|
|
1095
|
+
declare const _default$T: React__default.NamedExoticComponent<AppFooterProps>;
|
|
1096
1096
|
|
|
1097
1097
|
type AvatarRoundVariants = 'circle' | 'drop' | 'small';
|
|
1098
1098
|
|
|
@@ -1107,14 +1107,14 @@ type AvatarProps = {
|
|
|
1107
1107
|
onClick?(): void;
|
|
1108
1108
|
border?: boolean | string;
|
|
1109
1109
|
};
|
|
1110
|
-
declare const _default$
|
|
1110
|
+
declare const _default$S: React__default.NamedExoticComponent<AvatarProps>;
|
|
1111
1111
|
|
|
1112
1112
|
type SkeletonProps = {
|
|
1113
1113
|
animated?: boolean;
|
|
1114
1114
|
className?: string;
|
|
1115
1115
|
style?: React__default.CSSProperties;
|
|
1116
1116
|
};
|
|
1117
|
-
declare const _default$
|
|
1117
|
+
declare const _default$R: React__default.NamedExoticComponent<SkeletonProps>;
|
|
1118
1118
|
|
|
1119
1119
|
type ButtonProps$1 = {
|
|
1120
1120
|
fill?: 'outline' | 'clear';
|
|
@@ -1151,7 +1151,7 @@ type FlagProps$1 = {
|
|
|
1151
1151
|
name: string;
|
|
1152
1152
|
className?: string;
|
|
1153
1153
|
};
|
|
1154
|
-
declare const _default$
|
|
1154
|
+
declare const _default$Q: React__default.NamedExoticComponent<FlagProps$1>;
|
|
1155
1155
|
|
|
1156
1156
|
type PictureProps = {
|
|
1157
1157
|
width: number;
|
|
@@ -1168,7 +1168,7 @@ type PictureProps = {
|
|
|
1168
1168
|
responsive?: boolean;
|
|
1169
1169
|
containerWidth?: number;
|
|
1170
1170
|
};
|
|
1171
|
-
declare const _default$
|
|
1171
|
+
declare const _default$P: React__default.NamedExoticComponent<PictureProps>;
|
|
1172
1172
|
|
|
1173
1173
|
type BadgeType = 'default' | 'accent';
|
|
1174
1174
|
type BadgeVariants = 'attention' | 'neutral' | 'success' | 'warning' | 'brand' | 'info';
|
|
@@ -1179,7 +1179,7 @@ type BadgeProps = React$1.ComponentPropsWithoutRef<'span'> & {
|
|
|
1179
1179
|
iconType?: 'check';
|
|
1180
1180
|
};
|
|
1181
1181
|
|
|
1182
|
-
declare const _default$
|
|
1182
|
+
declare const _default$O: React$1.NamedExoticComponent<BadgeProps>;
|
|
1183
1183
|
|
|
1184
1184
|
type ItemCardVariants = 'neutral' | 'transparent' | 'transparent20';
|
|
1185
1185
|
type ItemCardProps = React$1.ComponentPropsWithoutRef<'div'> & {
|
|
@@ -1187,7 +1187,7 @@ type ItemCardProps = React$1.ComponentPropsWithoutRef<'div'> & {
|
|
|
1187
1187
|
size?: 'M' | 'M4' | 'M45';
|
|
1188
1188
|
};
|
|
1189
1189
|
|
|
1190
|
-
declare const _default$
|
|
1190
|
+
declare const _default$N: React$1.NamedExoticComponent<ItemCardProps>;
|
|
1191
1191
|
|
|
1192
1192
|
type AppHeaderProps = {
|
|
1193
1193
|
fullwidth?: boolean;
|
|
@@ -1505,7 +1505,9 @@ declare enum OnBoardingScreenOptions {
|
|
|
1505
1505
|
SINGLE_SELECT = "SINGLE_SELECT",
|
|
1506
1506
|
INFO = "INFO",
|
|
1507
1507
|
LOADER = "LOADER",
|
|
1508
|
-
REVIEWS = "REVIEWS"
|
|
1508
|
+
REVIEWS = "REVIEWS",
|
|
1509
|
+
EMAIL = "EMAIL",
|
|
1510
|
+
CONFIRM = "CONFIRM"
|
|
1509
1511
|
}
|
|
1510
1512
|
type OnBoardingScreenOptionType = {
|
|
1511
1513
|
id: string;
|
|
@@ -1531,6 +1533,23 @@ type OnBoardingScreenDescriptionType = {
|
|
|
1531
1533
|
title?: string | null;
|
|
1532
1534
|
description?: string | null;
|
|
1533
1535
|
};
|
|
1536
|
+
type OnBoardingScreenPrivacyType = {
|
|
1537
|
+
privacyText?: string;
|
|
1538
|
+
showPrivacyText?: boolean;
|
|
1539
|
+
};
|
|
1540
|
+
type OnBoardingScreenEmailType = {
|
|
1541
|
+
emailPlaceholder?: string;
|
|
1542
|
+
};
|
|
1543
|
+
type OnBoardingScreenPasswordType = {
|
|
1544
|
+
passwordPlaceholder?: string;
|
|
1545
|
+
};
|
|
1546
|
+
type OnBoardingScreenAlertType = {
|
|
1547
|
+
alertTitle?: string;
|
|
1548
|
+
alertText?: string;
|
|
1549
|
+
};
|
|
1550
|
+
type OnBoardingScreenTranslationsType = {
|
|
1551
|
+
t?: WithTranslation['t'];
|
|
1552
|
+
};
|
|
1534
1553
|
type OnBoardingBaseScreenType = {
|
|
1535
1554
|
id: string;
|
|
1536
1555
|
type: OnBoardingScreenOptions;
|
|
@@ -1580,7 +1599,13 @@ type OnBoardingReviewsScreenType = OnBoardingBaseScreenType & OnBoardingScreenBu
|
|
|
1580
1599
|
reviews: ISpecialistReview[];
|
|
1581
1600
|
isLoading?: boolean;
|
|
1582
1601
|
};
|
|
1583
|
-
type
|
|
1602
|
+
type OnBoardingEmailScreenType = OnBoardingBaseScreenType & OnBoardingScreenButtonType & OnBoardingScreenTranslationsType & OnBoardingScreenEmailType & OnBoardingScreenPrivacyType & {
|
|
1603
|
+
title: string;
|
|
1604
|
+
};
|
|
1605
|
+
type OnBoardingConfirmScreenType = OnBoardingBaseScreenType & OnBoardingScreenButtonType & OnBoardingScreenTranslationsType & OnBoardingScreenEmailType & OnBoardingScreenPasswordType & OnBoardingScreenAlertType & {
|
|
1606
|
+
title: string;
|
|
1607
|
+
};
|
|
1608
|
+
type OnBoardingScreensType = OnBoardingStartScreenType | OnBoardingMultiSelectScreenType | OnBoardingSingleSelectScreenType | OnBoardingInfoScreenType | OnBoardingLoaderScreenType | OnBoardingReviewsScreenType | OnBoardingEmailScreenType | OnBoardingConfirmScreenType;
|
|
1584
1609
|
type OnBoardingFlowType = {
|
|
1585
1610
|
id: string;
|
|
1586
1611
|
locale: string;
|
|
@@ -1934,7 +1959,7 @@ interface TextareaV2Props extends Omit<JSX$1.IonTextarea, 'color' | 'enterkeyhin
|
|
|
1934
1959
|
onKeyPress?: (e: KeyboardEvent<HTMLIonTextareaElement>) => void;
|
|
1935
1960
|
}
|
|
1936
1961
|
|
|
1937
|
-
declare const _default$
|
|
1962
|
+
declare const _default$M: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TextareaV2Props & React__default.RefAttributes<HTMLIonTextareaElement>>>;
|
|
1938
1963
|
|
|
1939
1964
|
type RatingProps = {
|
|
1940
1965
|
initialRating?: number;
|
|
@@ -1946,7 +1971,7 @@ type RatingProps = {
|
|
|
1946
1971
|
readonly?: boolean;
|
|
1947
1972
|
};
|
|
1948
1973
|
|
|
1949
|
-
declare const _default$
|
|
1974
|
+
declare const _default$L: React__default.NamedExoticComponent<RatingProps>;
|
|
1950
1975
|
|
|
1951
1976
|
declare const RatingCircleWrapper: FC<CircleRatingComponentProps & {
|
|
1952
1977
|
t: WithTranslation['t'] | any;
|
|
@@ -1960,7 +1985,7 @@ type IconButtonProps = {
|
|
|
1960
1985
|
fill?: 'clear' | 'filled';
|
|
1961
1986
|
type?: 'button' | 'submit' | 'reset';
|
|
1962
1987
|
};
|
|
1963
|
-
declare const _default$
|
|
1988
|
+
declare const _default$K: React__default.NamedExoticComponent<IconButtonProps>;
|
|
1964
1989
|
|
|
1965
1990
|
type ToastProviderProps = ToastStateProps;
|
|
1966
1991
|
type MindlyToastProps = {
|
|
@@ -2006,17 +2031,17 @@ type ProgressBar_v2Props = {
|
|
|
2006
2031
|
animationDuration?: number;
|
|
2007
2032
|
onProgressEnd?: () => void;
|
|
2008
2033
|
};
|
|
2009
|
-
declare const _default$
|
|
2034
|
+
declare const _default$J: React__default.NamedExoticComponent<ProgressBar_v2Props>;
|
|
2010
2035
|
|
|
2011
2036
|
type LoadingProps = {
|
|
2012
2037
|
isOpen: boolean;
|
|
2013
2038
|
};
|
|
2014
|
-
declare const _default$
|
|
2039
|
+
declare const _default$I: React__default.NamedExoticComponent<LoadingProps>;
|
|
2015
2040
|
|
|
2016
2041
|
type ListItemsProps = React$1.HTMLAttributes<HTMLIonListElement> & {
|
|
2017
2042
|
withBorders?: boolean;
|
|
2018
2043
|
};
|
|
2019
|
-
declare const _default$
|
|
2044
|
+
declare const _default$H: React$1.NamedExoticComponent<ListItemsProps>;
|
|
2020
2045
|
|
|
2021
2046
|
type ItemProps = React$1.HTMLAttributes<HTMLIonItemElement> & {
|
|
2022
2047
|
leftContent?: React$1.ReactNode;
|
|
@@ -2028,7 +2053,7 @@ type ItemProps = React$1.HTMLAttributes<HTMLIonItemElement> & {
|
|
|
2028
2053
|
isError?: boolean;
|
|
2029
2054
|
status?: 'error' | 'attention';
|
|
2030
2055
|
};
|
|
2031
|
-
declare const _default$
|
|
2056
|
+
declare const _default$G: React$1.NamedExoticComponent<ItemProps>;
|
|
2032
2057
|
|
|
2033
2058
|
type VideoProps = {
|
|
2034
2059
|
src: string;
|
|
@@ -2048,7 +2073,7 @@ type VideoMethods = {
|
|
|
2048
2073
|
play(): void;
|
|
2049
2074
|
};
|
|
2050
2075
|
type VideoRef = HTMLVideoElement | VideoMethods;
|
|
2051
|
-
declare const _default$
|
|
2076
|
+
declare const _default$F: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<VideoProps & {
|
|
2052
2077
|
children?: React__default.ReactNode;
|
|
2053
2078
|
} & React__default.RefAttributes<VideoRef>>>;
|
|
2054
2079
|
|
|
@@ -2165,15 +2190,15 @@ type MatchProgressProps = {
|
|
|
2165
2190
|
className?: string;
|
|
2166
2191
|
percentMatch: number;
|
|
2167
2192
|
};
|
|
2168
|
-
declare const _default$
|
|
2193
|
+
declare const _default$E: React__default.NamedExoticComponent<React__default.PropsWithChildren<MatchProgressProps>>;
|
|
2169
2194
|
|
|
2170
2195
|
interface Props$7 {
|
|
2171
2196
|
className?: string;
|
|
2172
2197
|
title: string;
|
|
2173
2198
|
}
|
|
2174
|
-
declare const _default$
|
|
2199
|
+
declare const _default$D: React__default.NamedExoticComponent<React__default.PropsWithChildren<Props$7>>;
|
|
2175
2200
|
|
|
2176
|
-
declare const _default$
|
|
2201
|
+
declare const _default$C: React__default.NamedExoticComponent<React__default.PropsWithChildren<React__default.HTMLAttributes<HTMLButtonElement>>>;
|
|
2177
2202
|
|
|
2178
2203
|
type Props$6 = {
|
|
2179
2204
|
className?: string;
|
|
@@ -2215,6 +2240,19 @@ type NewSpecialistProps = {
|
|
|
2215
2240
|
|
|
2216
2241
|
declare const NewSpecialist: React__default.FC<NewSpecialistProps>;
|
|
2217
2242
|
|
|
2243
|
+
type SolidInputProps = {
|
|
2244
|
+
placeholder: string;
|
|
2245
|
+
value?: string;
|
|
2246
|
+
name?: string;
|
|
2247
|
+
type?: TextFieldTypes;
|
|
2248
|
+
itemClassName?: string;
|
|
2249
|
+
inputClassName?: string;
|
|
2250
|
+
labelClassName?: string;
|
|
2251
|
+
onChange?: FormEventHandler<HTMLIonInputElement>;
|
|
2252
|
+
};
|
|
2253
|
+
|
|
2254
|
+
declare const SolidInput: React__default.FC<SolidInputProps>;
|
|
2255
|
+
|
|
2218
2256
|
declare enum appThemes {
|
|
2219
2257
|
client = "client",
|
|
2220
2258
|
specialist = "specialist"
|
|
@@ -2775,9 +2813,9 @@ type SlotsGridItemProps = {
|
|
|
2775
2813
|
onSelectionChange: () => void;
|
|
2776
2814
|
};
|
|
2777
2815
|
|
|
2778
|
-
declare const _default$
|
|
2816
|
+
declare const _default$B: React__default.NamedExoticComponent<SlotsGridProps>;
|
|
2779
2817
|
|
|
2780
|
-
declare const _default$
|
|
2818
|
+
declare const _default$A: React$1.NamedExoticComponent<SlotsGridItemProps>;
|
|
2781
2819
|
|
|
2782
2820
|
type PushNotificationsModalProps = {
|
|
2783
2821
|
onApplyPermission: () => void;
|
|
@@ -2891,23 +2929,23 @@ type ShareModalFeatureProps = {
|
|
|
2891
2929
|
};
|
|
2892
2930
|
declare const ShareModalFeature: FC<ShareModalFeatureProps>;
|
|
2893
2931
|
|
|
2894
|
-
declare const _default$
|
|
2932
|
+
declare const _default$z: React__default.NamedExoticComponent<SpecialistPaymentConsultationDetailsType & TranslationType>;
|
|
2895
2933
|
|
|
2896
|
-
declare const _default$
|
|
2934
|
+
declare const _default$y: React__default.NamedExoticComponent<SpecialistPaymentCardProps & TranslationType>;
|
|
2897
2935
|
|
|
2898
2936
|
type SpecialistPaymentCommonCardSkeletonType = {
|
|
2899
2937
|
className?: string;
|
|
2900
2938
|
};
|
|
2901
2939
|
declare const SpecialistPaymentCommonCardSkeleton: (props: SpecialistPaymentCommonCardSkeletonType) => JSX.Element;
|
|
2902
2940
|
|
|
2903
|
-
declare const _default$
|
|
2941
|
+
declare const _default$x: React__default.NamedExoticComponent<SpecialistPaymentConsultationsProps & TranslationType>;
|
|
2904
2942
|
|
|
2905
2943
|
type ConsultationsListProps = {
|
|
2906
2944
|
consultations: SpecialistConsultation[];
|
|
2907
2945
|
locale?: string;
|
|
2908
2946
|
consultationClick?: (consultation: SpecialistConsultation) => void;
|
|
2909
2947
|
};
|
|
2910
|
-
declare const _default$
|
|
2948
|
+
declare const _default$w: React__default.NamedExoticComponent<ConsultationsListProps>;
|
|
2911
2949
|
|
|
2912
2950
|
type ConsultationsListSkeletonType = {
|
|
2913
2951
|
className?: string;
|
|
@@ -2922,9 +2960,9 @@ type CalendarPickerFeatureProps = {
|
|
|
2922
2960
|
dateCallback: (date: Date) => void;
|
|
2923
2961
|
lastDate: Date;
|
|
2924
2962
|
};
|
|
2925
|
-
declare const _default$
|
|
2963
|
+
declare const _default$v: React__default.NamedExoticComponent<CalendarPickerFeatureProps & TranslationType>;
|
|
2926
2964
|
|
|
2927
|
-
declare const _default$
|
|
2965
|
+
declare const _default$u: React__default.NamedExoticComponent<PaymentCalendarFeatureProps & TranslationType>;
|
|
2928
2966
|
|
|
2929
2967
|
type GoogleCalendarModalFeatureProps = {
|
|
2930
2968
|
isOpen: boolean;
|
|
@@ -2939,7 +2977,7 @@ type GoogleCalendarModalFeatureProps = {
|
|
|
2939
2977
|
declare function GoogleCalendarModalFeature({ status, isOpen, onSync, isLoading, presentingElement, imageUrl, onDidDismiss, t, }: GoogleCalendarModalFeatureProps): JSX.Element;
|
|
2940
2978
|
|
|
2941
2979
|
type ReviewCardFeatureVariantType = 'default' | 'outlined' | 'full';
|
|
2942
|
-
declare const _default$
|
|
2980
|
+
declare const _default$t: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
|
|
2943
2981
|
avatarSrc?: string | undefined;
|
|
2944
2982
|
name: string;
|
|
2945
2983
|
date: number;
|
|
@@ -3038,7 +3076,7 @@ type ScreenInputFormFeatureProps = {
|
|
|
3038
3076
|
icon?: ReactNode | string;
|
|
3039
3077
|
isKeyboardShown?: boolean;
|
|
3040
3078
|
};
|
|
3041
|
-
declare const _default$
|
|
3079
|
+
declare const _default$s: React__default.NamedExoticComponent<ScreenInputFormFeatureProps>;
|
|
3042
3080
|
|
|
3043
3081
|
type SelectionType = {
|
|
3044
3082
|
value: any;
|
|
@@ -3056,7 +3094,7 @@ type SpecialistDrumPickerWidgetProps = {
|
|
|
3056
3094
|
onTouchStart?: () => void;
|
|
3057
3095
|
onTouchEnd?: () => void;
|
|
3058
3096
|
};
|
|
3059
|
-
declare const _default$
|
|
3097
|
+
declare const _default$r: React__default.NamedExoticComponent<SpecialistDrumPickerWidgetProps>;
|
|
3060
3098
|
|
|
3061
3099
|
type TextAreaFormFeatureProps = {
|
|
3062
3100
|
title?: string;
|
|
@@ -3072,7 +3110,7 @@ type TextAreaFormFeatureProps = {
|
|
|
3072
3110
|
maxlength?: number;
|
|
3073
3111
|
HeaderComponent?: FC;
|
|
3074
3112
|
};
|
|
3075
|
-
declare const _default$
|
|
3113
|
+
declare const _default$q: React__default.NamedExoticComponent<TextAreaFormFeatureProps>;
|
|
3076
3114
|
|
|
3077
3115
|
type AcceptAgreementFeatureProps = {
|
|
3078
3116
|
isAccepted: boolean;
|
|
@@ -3093,30 +3131,30 @@ type SelectWithSearchFormFeatureProps = {
|
|
|
3093
3131
|
otherText?: string;
|
|
3094
3132
|
buttonLabel?: string;
|
|
3095
3133
|
} & WithTranslation;
|
|
3096
|
-
declare const _default$
|
|
3134
|
+
declare const _default$p: React__default.NamedExoticComponent<SelectWithSearchFormFeatureProps>;
|
|
3097
3135
|
|
|
3098
3136
|
type MarkdownContainerFeatureProps = {
|
|
3099
3137
|
children?: string | null;
|
|
3100
3138
|
options?: MarkdownToJSX.Options;
|
|
3101
3139
|
className?: string;
|
|
3102
3140
|
};
|
|
3103
|
-
declare const _default$
|
|
3141
|
+
declare const _default$o: React__default.NamedExoticComponent<MarkdownContainerFeatureProps>;
|
|
3104
3142
|
|
|
3105
|
-
declare const _default$
|
|
3143
|
+
declare const _default$n: React__default.NamedExoticComponent<OnBoardingStartScreenType>;
|
|
3106
3144
|
|
|
3107
|
-
declare const _default$
|
|
3145
|
+
declare const _default$m: React__default.NamedExoticComponent<OnBoardingInfoScreenType>;
|
|
3108
3146
|
|
|
3109
3147
|
type OnBoardingMultiSelectionScreenPreviewFeatureProps = {
|
|
3110
3148
|
onChange?: (value: string[]) => void;
|
|
3111
3149
|
defaultValues?: string[];
|
|
3112
3150
|
} & OnBoardingMultiSelectScreenType;
|
|
3113
|
-
declare const _default$
|
|
3151
|
+
declare const _default$l: React__default.NamedExoticComponent<OnBoardingMultiSelectionScreenPreviewFeatureProps>;
|
|
3114
3152
|
|
|
3115
3153
|
type OnBoardingSingleSelectionScreenPreviewFeatureProps = {
|
|
3116
3154
|
onChange?: (value: string) => void;
|
|
3117
3155
|
defaultValues?: string[];
|
|
3118
3156
|
} & OnBoardingSingleSelectScreenType;
|
|
3119
|
-
declare const _default$
|
|
3157
|
+
declare const _default$k: React__default.NamedExoticComponent<OnBoardingSingleSelectionScreenPreviewFeatureProps>;
|
|
3120
3158
|
|
|
3121
3159
|
declare const OnBoardingLoaderScreenPreviewFeature: FC<OnBoardingLoaderScreenType & {
|
|
3122
3160
|
t?: WithTranslation['t'];
|
|
@@ -3131,9 +3169,13 @@ type OnBoardingProgressFeatureProps = {
|
|
|
3131
3169
|
contentStyle?: OnBoardingScreenStyleOptions;
|
|
3132
3170
|
startAdornment?: React__default.ReactNode;
|
|
3133
3171
|
};
|
|
3134
|
-
declare const _default$
|
|
3172
|
+
declare const _default$j: React__default.NamedExoticComponent<OnBoardingProgressFeatureProps>;
|
|
3173
|
+
|
|
3174
|
+
declare const _default$i: React__default.NamedExoticComponent<OnBoardingReviewsScreenType>;
|
|
3175
|
+
|
|
3176
|
+
declare const _default$h: React__default.NamedExoticComponent<OnBoardingEmailScreenType>;
|
|
3135
3177
|
|
|
3136
|
-
declare const _default$g: React__default.NamedExoticComponent<
|
|
3178
|
+
declare const _default$g: React__default.NamedExoticComponent<OnBoardingConfirmScreenType>;
|
|
3137
3179
|
|
|
3138
3180
|
type SpecialistAreaByMatch = {
|
|
3139
3181
|
text: string;
|
|
@@ -4010,4 +4052,4 @@ type SessionPaymentsWidgetProps = {
|
|
|
4010
4052
|
|
|
4011
4053
|
declare const SessionPaymentsWidget: React__default.FC<SessionPaymentsWidgetProps>;
|
|
4012
4054
|
|
|
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 };
|
|
4055
|
+
export { AcceptAgreementFeature, Action, _default$U as AlertCard, AllowFilterValueType, AppFooter, _default$T as AppFooter_v2, AppHeader, AppHeaderPage as AppHeaderPageFeature, AppHeader_v2, AppNotSupportedFeature, ArchivedConsultationCard, AutoComplete, Avatar, AvatarProps$1 as AvatarProps, _default$S as Avatar_v2, AvatarProps as Avatar_v2Props, BREAKPOINT_ICON_SIZE, _default$O as Badge, _default$X as BookingScheduleTime, _default$W as BookingSpecialistInfo, BreakPointPositionProps, BreakPointPositionResult, Button, Button_v2, CAN_MANAGE_SESSION_TIME_HOURS, COUNTRIES_MAPPER, Calendar, _default$v as CalendarPickerFeature, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$1g as ChatListItem, _default$1e as ChatListSkeleton, _default$1f 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$17 as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$14 as ConsultationModal, _default$z as ConsultationPricingFeature, _default$12 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$10 as DaySlider, DayToRender, DividerProps, DrumListPicker, DynamicCommissionValue, _default$Y as EducationCard, _default$1d as EmptyChatList, EmptyChatMessages, EmptyChatModalFeature, _default$15 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$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, 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$G as Item, _default$N as ItemCard, LabelArrowRedirect, LanguagesList, _default$1k as LetterAvatar, _default$8 as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListButton, ListItemType, _default$D as ListItemWithColumns, _default$H as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$I as Loading, LocaleCurrencyMapper, LouseConnect, MapStatusContractToUIStatus, _default$o as MarkdownContainerFeature, _default$E as MatchProgress, _default$1h as MediaPlayer, MenuFeature, Modal, ModalCalendar, ModalSheet, NEAR_SESSION_TIME_SECONDS, NavigationBar, NewSpecialist, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, OnBoardingBaseScreenType, _default$g as OnBoardingConfirmScreenPreviewFeature, OnBoardingConfirmScreenType, _default$h as OnBoardingEmailScreenPreviewFeature, OnBoardingEmailScreenType, OnBoardingFlowType, _default$m as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$l as OnBoardingMultiSelectionScreenPreviewFeature, _default$j as OnBoardingProgressFeature, _default$i as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenAlertType, OnBoardingScreenBgType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenEmailType, OnBoardingScreenOptionType, OnBoardingScreenOptions, OnBoardingScreenPasswordType, OnBoardingScreenPrivacyType, OnBoardingScreenSkipButtonType, OnBoardingScreenStyleOptions, OnBoardingScreenTranslationsType, OnBoardingScreensType, OnBoardingSingleSelectScreenType, _default$k as OnBoardingSingleSelectionScreenPreviewFeature, _default$n as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$u as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$w as PaymentSessionsList, _default$1j as PersonDateTimeCard, _default$P as Picture, _default$6 as ProfileInformation, _default$_ as ProfileView, _default$9 as ProgressBar, ProgressBarDashed, _default$J as ProgressBar_v2, ProgressRangeProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$L as Rating, RatingCircleWrapper, _default$11 as ReSchedule, ReScheduleSuccess, Refresher, ResponseFileType, ReviewCard, _default$t as ReviewCardFeature, ReviewListFeature, ReviewStatistics, ReviewSubscriptionSessionFeature, ReviewSubscriptionSessionFeatureProps, ReviewSwiperSection, ReviewTrialSessionFeature, ReviewTrialSessionFeatureProps, ReviewsCardFeatureSkeleton, ReviewsSummary, RoundButton, RowItemType, RowSelect, RowSelectProps, Rule, SIZES, SOON_SESSION_TIME_SECONDS, _default$r as ScreenDrumPickerFormFeature, ScreenInput, _default$s as ScreenInputFormFeature, ScreenInputUpdateFeature, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$1i as SelectImpressionEmoji, SelectItemType, _default$p as SelectWithSearchFormFeature, Session, SessionDetailWidget, SessionPaymentsWidget, SessionPreviewFeature, SessionReview$1 as SessionReview, SessionTime, SessionVariant, SessionsWidget as SessionsListWidget, SessionsWidgetProps, Sex, ShareModalFeature, ShortCurrencySignByLocale, _default$C as ShowMore, _default$16 as SignUpSessionButton, _default$13 as SignUpSessionModal, SizeValues, Skeleton, _default$R as Skeleton_v2, _default$B as SlotsGrid, _default$A as SlotsGridItem, SolidInput, Specialist, _default$Z as SpecialistAbout, SpecialistAreaList as SpecialistAreaListFeature, SpecialistCard, SpecialistCardListWidget, _default$3 as SpecialistCardWidget, SpecialistConsultation, SpecialistConsultationPayment, _default as SpecialistDetailWidget, SpecialistDetailWidgetSkeleton, SpecialistEducation, _default$1b as SpecialistEducationCard, SpecialistEducationsFeature, SpecialistInfoColumnFeature, SpecialistLangs, _default$5 as SpecialistMatch, SpecialistOrderType, SpecialistPaymentCardProps, _default$y as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$x as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default$1 as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$2 as SpecialistPaymentWidget, SpecialistPaymentWidgetType, SpecialistPreviewFeature, SpecialistPreviewListWidget, SpecialistProfileNotFound, _default$1a 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$q as TextAreaFormFeature, _default$e as TextInput, _default$f as TextWithClampFeature, _default$1c as Textarea, _default$M as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$V as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UserType, UsersPsychologistScrollList, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$F as Video, _default$18 as VideoCallInfo, _default$19 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 };
|