@mindly/ui-components 5.99.0 → 5.99.2

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.
Files changed (42) hide show
  1. package/dist/cjs/configs/tailwind/colors.d.ts +5 -0
  2. package/dist/cjs/index.js +6 -6
  3. package/dist/cjs/lib/AppHeader/AppHeader.d.ts +1 -0
  4. package/dist/cjs/lib2/features/OnBoardingFlow/OnBoardingConfirmScreenPreviewFeature/OnBoardingConfirmScreenPreviewFeature.d.ts +4 -0
  5. package/dist/cjs/lib2/features/OnBoardingFlow/OnBoardingConfirmScreenPreviewFeature/index.d.ts +1 -0
  6. package/dist/cjs/lib2/features/OnBoardingFlow/OnBoardingEmailScreenPreviewFeature/OnBoardingEmailScreenPreviewFeature.d.ts +4 -0
  7. package/dist/cjs/lib2/features/OnBoardingFlow/OnBoardingEmailScreenPreviewFeature/index.d.ts +1 -0
  8. package/dist/cjs/lib2/features/OnBoardingFlow/OnBoardingLoaderScreenPreviewFeature/OnBoardingLoaderScreenPreviewFeature.d.ts +7 -3
  9. package/dist/cjs/lib2/features/OnBoardingFlow/index.d.ts +2 -0
  10. package/dist/cjs/lib2/shared/hooks/useCircleRating.d.ts +7 -3
  11. package/dist/cjs/lib2/shared/types/onBoardingFlow.type.d.ts +33 -2
  12. package/dist/cjs/lib2/shared/types/ratingCircleTypes.d.ts +4 -0
  13. package/dist/cjs/lib2/shared/ui/RatingCircle/RatingCircleWrapper.d.ts +1 -1
  14. package/dist/cjs/lib2/shared/ui/RatingCircle/styles.d.ts +49 -0
  15. package/dist/cjs/lib2/shared/ui/SolidInput/SolidInput.d.ts +12 -0
  16. package/dist/cjs/lib2/shared/ui/SolidInput/SolidInput.stories.d.ts +6 -0
  17. package/dist/cjs/lib2/shared/ui/SolidInput/index.d.ts +1 -0
  18. package/dist/cjs/lib2/shared/ui/SolidInput/types.d.ts +12 -0
  19. package/dist/cjs/lib2/shared/ui/index.d.ts +1 -0
  20. package/dist/esm/configs/tailwind/colors.d.ts +5 -0
  21. package/dist/esm/index.js +6 -6
  22. package/dist/esm/lib/AppHeader/AppHeader.d.ts +1 -0
  23. package/dist/esm/lib2/features/OnBoardingFlow/OnBoardingConfirmScreenPreviewFeature/OnBoardingConfirmScreenPreviewFeature.d.ts +4 -0
  24. package/dist/esm/lib2/features/OnBoardingFlow/OnBoardingConfirmScreenPreviewFeature/index.d.ts +1 -0
  25. package/dist/esm/lib2/features/OnBoardingFlow/OnBoardingEmailScreenPreviewFeature/OnBoardingEmailScreenPreviewFeature.d.ts +4 -0
  26. package/dist/esm/lib2/features/OnBoardingFlow/OnBoardingEmailScreenPreviewFeature/index.d.ts +1 -0
  27. package/dist/esm/lib2/features/OnBoardingFlow/OnBoardingLoaderScreenPreviewFeature/OnBoardingLoaderScreenPreviewFeature.d.ts +7 -3
  28. package/dist/esm/lib2/features/OnBoardingFlow/index.d.ts +2 -0
  29. package/dist/esm/lib2/shared/hooks/useCircleRating.d.ts +7 -3
  30. package/dist/esm/lib2/shared/types/onBoardingFlow.type.d.ts +33 -2
  31. package/dist/esm/lib2/shared/types/ratingCircleTypes.d.ts +4 -0
  32. package/dist/esm/lib2/shared/ui/RatingCircle/RatingCircleWrapper.d.ts +1 -1
  33. package/dist/esm/lib2/shared/ui/RatingCircle/styles.d.ts +49 -0
  34. package/dist/esm/lib2/shared/ui/SolidInput/SolidInput.d.ts +12 -0
  35. package/dist/esm/lib2/shared/ui/SolidInput/SolidInput.stories.d.ts +6 -0
  36. package/dist/esm/lib2/shared/ui/SolidInput/index.d.ts +1 -0
  37. package/dist/esm/lib2/shared/ui/SolidInput/types.d.ts +12 -0
  38. package/dist/esm/lib2/shared/ui/index.d.ts +1 -0
  39. package/dist/index.d.ts +136 -77
  40. package/package.json +1 -1
  41. package/src/configs/tailwind/colors.ts +6 -0
  42. package/src/lib2/shared/css/tailwind.css +1 -0
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$1j: React__default.NamedExoticComponent<LetterAvatarProps>;
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$1i: React__default.NamedExoticComponent<PersonDateTimeCardProps>;
241
+ declare const _default$1j: React__default.NamedExoticComponent<PersonDateTimeCardProps>;
242
242
 
243
243
  type PsychologistProfileType = {
244
244
  id: string;
@@ -364,6 +364,7 @@ declare const Avatar: FC<AvatarProps$1>;
364
364
  type AppHeaderProps$1 = {
365
365
  fullwidth?: boolean;
366
366
  className?: string;
367
+ toolbarClassName?: string;
367
368
  };
368
369
  declare const AppHeader: FC<AppHeaderProps$1>;
369
370
 
@@ -404,7 +405,7 @@ type SelectImpressionEmojiProps = {
404
405
  onChange?: (val: ImpressionEmojiEnum) => void;
405
406
  };
406
407
 
407
- declare const _default$1h: React__default.NamedExoticComponent<SelectImpressionEmojiProps>;
408
+ declare const _default$1i: React__default.NamedExoticComponent<SelectImpressionEmojiProps>;
408
409
 
409
410
  interface FooterForBookingProps {
410
411
  eventHandler: (props?: React__default.SyntheticEvent) => void;
@@ -436,7 +437,7 @@ type MediaPlayerProps<TCameraTrack extends Playable | undefined, TAudioTrack ext
436
437
  showControls: boolean;
437
438
  isScreenSharing?: boolean;
438
439
  } & HTMLAttributes<HTMLDivElement>;
439
- declare const _default$1g: <TCameraTrack extends Playable | undefined, TAudioTrack extends Playable | undefined>({ fullwidth, cameraTrack, audioTrack, isVideoTrackMuted, isAudioTrackMuted, networkQuality, fallbackAvatar, fallbackAvatarDimensions, fallbackName, showControls, isScreenSharing, ...props }: MediaPlayerProps<TCameraTrack, TAudioTrack>) => JSX.Element;
440
+ 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;
440
441
 
441
442
  type RoundButtonPropsType = {
442
443
  disabled?: boolean;
@@ -465,7 +466,7 @@ type ChatListItemProps = {
465
466
  isDisabled?: boolean;
466
467
  t?: WithTranslation['t'];
467
468
  };
468
- declare const _default$1f: React__default.NamedExoticComponent<ChatListItemProps>;
469
+ declare const _default$1g: React__default.NamedExoticComponent<ChatListItemProps>;
469
470
 
470
471
  type ChatMessageProps = {
471
472
  message: string | File;
@@ -493,11 +494,11 @@ type ChatMessageProps = {
493
494
  onClickHandler: () => void;
494
495
  }[] | null;
495
496
  };
496
- declare const _default$1e: React__default.NamedExoticComponent<ChatMessageProps>;
497
+ declare const _default$1f: React__default.NamedExoticComponent<ChatMessageProps>;
497
498
 
498
499
  declare const ChatMessageSkeleton: () => JSX.Element;
499
500
 
500
- declare const _default$1d: React__default.MemoExoticComponent<() => JSX.Element>;
501
+ declare const _default$1e: React__default.MemoExoticComponent<() => JSX.Element>;
501
502
 
502
503
  type EmptyChatList = {
503
504
  title?: string;
@@ -507,7 +508,7 @@ type EmptyChatList = {
507
508
  onClick?: () => void;
508
509
  };
509
510
  declare const EmptyChatList: FC<EmptyChatList>;
510
- declare const _default$1c: React__default.NamedExoticComponent<EmptyChatList>;
511
+ declare const _default$1d: React__default.NamedExoticComponent<EmptyChatList>;
511
512
 
512
513
  type EmptyChatMessagesProps = {
513
514
  title?: string;
@@ -532,7 +533,7 @@ type TextareaProps = {
532
533
  onFileSelect?: (file: File | null, type: 'file' | 'image' | 'video', fileInfo: FileInfoType) => void;
533
534
  t?: WithTranslation['t'];
534
535
  };
535
- declare const _default$1b: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TextareaProps & React__default.RefAttributes<HTMLIonFooterElement>>>;
536
+ declare const _default$1c: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TextareaProps & React__default.RefAttributes<HTMLIonFooterElement>>>;
536
537
 
537
538
  type LouseConnectProps = {
538
539
  onClick?: () => void;
@@ -611,7 +612,7 @@ type SpecialistEducationCardProps$1 = {
611
612
  yearEnd?: number | null;
612
613
  showLoader?: boolean;
613
614
  };
614
- declare const _default$1a: React__default.NamedExoticComponent<SpecialistEducationCardProps$1>;
615
+ declare const _default$1b: React__default.NamedExoticComponent<SpecialistEducationCardProps$1>;
615
616
 
616
617
  type SpecialistProfileViewCardProps$1 = {
617
618
  avatarLink?: string | null;
@@ -624,7 +625,7 @@ type SpecialistProfileViewCardProps$1 = {
624
625
  videoLinkUrl?: string | null;
625
626
  showLoader?: boolean;
626
627
  } & React__default.DetailedHTMLProps<React__default.HTMLAttributes<HTMLDivElement>, HTMLDivElement>;
627
- declare const _default$19: React__default.NamedExoticComponent<SpecialistProfileViewCardProps$1>;
628
+ declare const _default$1a: React__default.NamedExoticComponent<SpecialistProfileViewCardProps$1>;
628
629
 
629
630
  type SpecialistStatisticsCardProps$1 = {
630
631
  activeClients?: number;
@@ -660,7 +661,7 @@ type VideoPlayerProps = {
660
661
  closeModalHandler?: () => void;
661
662
  onErrorContent: React__default.ReactElement;
662
663
  } & JSX$1.IonModal;
663
- declare const _default$18: React__default.NamedExoticComponent<VideoPlayerProps>;
664
+ declare const _default$19: React__default.NamedExoticComponent<VideoPlayerProps>;
664
665
 
665
666
  type NotSupportModalProps = {
666
667
  closeModal?: () => void;
@@ -696,7 +697,7 @@ type VideoCallInfoProps = {
696
697
  abbreviatedSeconds: string;
697
698
  };
698
699
  };
699
- declare const _default$17: React__default.NamedExoticComponent<VideoCallInfoProps>;
700
+ declare const _default$18: React__default.NamedExoticComponent<VideoCallInfoProps>;
700
701
 
701
702
  declare enum ConsultationCardType {
702
703
  FEATURE = "feature",
@@ -732,14 +733,14 @@ type ConsultationCardProps = {
732
733
  isBlockedText?: string;
733
734
  };
734
735
 
735
- declare const _default$16: React__default.NamedExoticComponent<ConsultationCardProps>;
736
+ declare const _default$17: React__default.NamedExoticComponent<ConsultationCardProps>;
736
737
 
737
738
  type SignUpSessionButtonProps = {
738
739
  label: string;
739
740
  isLoading?: boolean;
740
741
  onClick?: () => void;
741
742
  };
742
- declare const _default$15: React__default.NamedExoticComponent<SignUpSessionButtonProps>;
743
+ declare const _default$16: React__default.NamedExoticComponent<SignUpSessionButtonProps>;
743
744
 
744
745
  type EmptyConsultationsProps = {
745
746
  title: string;
@@ -747,7 +748,7 @@ type EmptyConsultationsProps = {
747
748
  buttonLabel?: string;
748
749
  onClick?: () => void;
749
750
  };
750
- declare const _default$14: React__default.NamedExoticComponent<EmptyConsultationsProps>;
751
+ declare const _default$15: React__default.NamedExoticComponent<EmptyConsultationsProps>;
751
752
 
752
753
  type ConsultationModalProps = {
753
754
  isOpen: boolean;
@@ -783,7 +784,7 @@ type ConsultationModalProps = {
783
784
  started?: string;
784
785
  };
785
786
  };
786
- declare const _default$13: React__default.NamedExoticComponent<ConsultationModalProps>;
787
+ declare const _default$14: React__default.NamedExoticComponent<ConsultationModalProps>;
787
788
 
788
789
  type SpecialistData = {
789
790
  id: string;
@@ -801,7 +802,7 @@ type SignUpSessionModalProps = {
801
802
  title: string;
802
803
  cancelBtnLabel: string;
803
804
  };
804
- declare const _default$12: React__default.NamedExoticComponent<SignUpSessionModalProps>;
805
+ declare const _default$13: React__default.NamedExoticComponent<SignUpSessionModalProps>;
805
806
 
806
807
  type ConsultationSpecialistCardProps = {
807
808
  id: string;
@@ -813,7 +814,7 @@ type ConsultationSpecialistCardProps = {
813
814
  signInBtnLabel: string;
814
815
  isBlockedText?: string;
815
816
  };
816
- declare const _default$11: React__default.NamedExoticComponent<ConsultationSpecialistCardProps>;
817
+ declare const _default$12: React__default.NamedExoticComponent<ConsultationSpecialistCardProps>;
817
818
 
818
819
  type UserInfoModalProps = {
819
820
  isOpen: boolean;
@@ -884,7 +885,7 @@ type ReScheduleProps = {
884
885
  btnLabel: string;
885
886
  };
886
887
  };
887
- declare const _default$10: React__default.NamedExoticComponent<ReScheduleProps>;
888
+ declare const _default$11: React__default.NamedExoticComponent<ReScheduleProps>;
888
889
 
889
890
  type ReScheduleSuccessProps = {
890
891
  name: string;
@@ -922,7 +923,7 @@ type DaySliderProps = JSX$1.IonSlides & HTMLAttributes<HTMLIonSlidesElement> & R
922
923
  tomorrow?: string;
923
924
  };
924
925
  };
925
- declare const _default$$: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<DaySliderProps, "ref"> & React__default.RefAttributes<HTMLIonSlidesElement>>>;
926
+ declare const _default$10: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<DaySliderProps, "ref"> & React__default.RefAttributes<HTMLIonSlidesElement>>>;
926
927
 
927
928
  type SpecialistWorkDirectionsPropsType = {
928
929
  workDirections?: string[] | [];
@@ -931,7 +932,7 @@ type SpecialistWorkDirectionsPropsType = {
931
932
  moreLabel?: string;
932
933
  hideLabel?: string;
933
934
  };
934
- declare const _default$_: React__default.NamedExoticComponent<SpecialistWorkDirectionsPropsType>;
935
+ declare const _default$$: React__default.NamedExoticComponent<SpecialistWorkDirectionsPropsType>;
935
936
 
936
937
  type SpecialistProfileViewCardProps = {
937
938
  videoLink?: string;
@@ -941,7 +942,7 @@ type SpecialistProfileViewCardProps = {
941
942
  isLoading?: boolean;
942
943
  videoDurationSeconds?: number;
943
944
  };
944
- declare const _default$Z: React__default.NamedExoticComponent<SpecialistProfileViewCardProps>;
945
+ declare const _default$_: React__default.NamedExoticComponent<SpecialistProfileViewCardProps>;
945
946
 
946
947
  type SpecialistAboutProps = {
947
948
  text?: string;
@@ -950,7 +951,7 @@ type SpecialistAboutProps = {
950
951
  moreLabel?: string;
951
952
  hideLabel?: string;
952
953
  };
953
- declare const _default$Y: React__default.NamedExoticComponent<SpecialistAboutProps>;
954
+ declare const _default$Z: React__default.NamedExoticComponent<SpecialistAboutProps>;
954
955
 
955
956
  type SpecialistEducationCardProps = {
956
957
  institutionName?: string;
@@ -961,7 +962,7 @@ type SpecialistEducationCardProps = {
961
962
  yearEnd?: number | null;
962
963
  showLoader?: boolean;
963
964
  };
964
- declare const _default$X: React__default.NamedExoticComponent<SpecialistEducationCardProps>;
965
+ declare const _default$Y: React__default.NamedExoticComponent<SpecialistEducationCardProps>;
965
966
 
966
967
  type SpecialistStatisticsCardProps = {
967
968
  trust?: boolean;
@@ -1007,7 +1008,7 @@ type BookingScheduleTimeProps = {
1007
1008
  onClick?: (index: number, item: string) => void;
1008
1009
  isLoading?: boolean;
1009
1010
  };
1010
- declare const _default$W: React__default.NamedExoticComponent<BookingScheduleTimeProps>;
1011
+ declare const _default$X: React__default.NamedExoticComponent<BookingScheduleTimeProps>;
1011
1012
 
1012
1013
  type BookingSpecialistInfoProps = {
1013
1014
  name: string;
@@ -1016,7 +1017,7 @@ type BookingSpecialistInfoProps = {
1016
1017
  avatar?: string;
1017
1018
  isLoading?: boolean;
1018
1019
  };
1019
- declare const _default$V: React__default.NamedExoticComponent<BookingSpecialistInfoProps>;
1020
+ declare const _default$W: React__default.NamedExoticComponent<BookingSpecialistInfoProps>;
1020
1021
 
1021
1022
  declare enum TypographyVariantsEnum {
1022
1023
  Title48Bold = "Title/48 Bold",
@@ -1064,7 +1065,7 @@ type TypographyProps = {
1064
1065
  isError?: boolean;
1065
1066
  };
1066
1067
 
1067
- declare const _default$U: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TypographyProps & React__default.RefAttributes<HTMLDivElement>>>;
1068
+ declare const _default$V: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TypographyProps & React__default.RefAttributes<HTMLDivElement>>>;
1068
1069
 
1069
1070
  type AlertCardVariants = 'transparent' | 'yellow' | 'blue';
1070
1071
  type AlertCardProps = React$1.ComponentPropsWithoutRef<'div'> & {
@@ -1080,7 +1081,7 @@ type AlertCardProps = React$1.ComponentPropsWithoutRef<'div'> & {
1080
1081
  };
1081
1082
  };
1082
1083
 
1083
- declare const _default$T: React$1.NamedExoticComponent<AlertCardProps>;
1084
+ declare const _default$U: React$1.NamedExoticComponent<AlertCardProps>;
1084
1085
 
1085
1086
  type AppFooterProps = {
1086
1087
  children?: React__default.ReactNode;
@@ -1091,7 +1092,7 @@ type AppFooterProps = {
1091
1092
  toolbarStyle?: CSSProperties;
1092
1093
  className?: string;
1093
1094
  };
1094
- declare const _default$S: React__default.NamedExoticComponent<AppFooterProps>;
1095
+ declare const _default$T: React__default.NamedExoticComponent<AppFooterProps>;
1095
1096
 
1096
1097
  type AvatarRoundVariants = 'circle' | 'drop' | 'small';
1097
1098
 
@@ -1106,14 +1107,14 @@ type AvatarProps = {
1106
1107
  onClick?(): void;
1107
1108
  border?: boolean | string;
1108
1109
  };
1109
- declare const _default$R: React__default.NamedExoticComponent<AvatarProps>;
1110
+ declare const _default$S: React__default.NamedExoticComponent<AvatarProps>;
1110
1111
 
1111
1112
  type SkeletonProps = {
1112
1113
  animated?: boolean;
1113
1114
  className?: string;
1114
1115
  style?: React__default.CSSProperties;
1115
1116
  };
1116
- declare const _default$Q: React__default.NamedExoticComponent<SkeletonProps>;
1117
+ declare const _default$R: React__default.NamedExoticComponent<SkeletonProps>;
1117
1118
 
1118
1119
  type ButtonProps$1 = {
1119
1120
  fill?: 'outline' | 'clear';
@@ -1150,7 +1151,7 @@ type FlagProps$1 = {
1150
1151
  name: string;
1151
1152
  className?: string;
1152
1153
  };
1153
- declare const _default$P: React__default.NamedExoticComponent<FlagProps$1>;
1154
+ declare const _default$Q: React__default.NamedExoticComponent<FlagProps$1>;
1154
1155
 
1155
1156
  type PictureProps = {
1156
1157
  width: number;
@@ -1167,7 +1168,7 @@ type PictureProps = {
1167
1168
  responsive?: boolean;
1168
1169
  containerWidth?: number;
1169
1170
  };
1170
- declare const _default$O: React__default.NamedExoticComponent<PictureProps>;
1171
+ declare const _default$P: React__default.NamedExoticComponent<PictureProps>;
1171
1172
 
1172
1173
  type BadgeType = 'default' | 'accent';
1173
1174
  type BadgeVariants = 'attention' | 'neutral' | 'success' | 'warning' | 'brand' | 'info';
@@ -1178,7 +1179,7 @@ type BadgeProps = React$1.ComponentPropsWithoutRef<'span'> & {
1178
1179
  iconType?: 'check';
1179
1180
  };
1180
1181
 
1181
- declare const _default$N: React$1.NamedExoticComponent<BadgeProps>;
1182
+ declare const _default$O: React$1.NamedExoticComponent<BadgeProps>;
1182
1183
 
1183
1184
  type ItemCardVariants = 'neutral' | 'transparent' | 'transparent20';
1184
1185
  type ItemCardProps = React$1.ComponentPropsWithoutRef<'div'> & {
@@ -1186,7 +1187,7 @@ type ItemCardProps = React$1.ComponentPropsWithoutRef<'div'> & {
1186
1187
  size?: 'M' | 'M4' | 'M45';
1187
1188
  };
1188
1189
 
1189
- declare const _default$M: React$1.NamedExoticComponent<ItemCardProps>;
1190
+ declare const _default$N: React$1.NamedExoticComponent<ItemCardProps>;
1190
1191
 
1191
1192
  type AppHeaderProps = {
1192
1193
  fullwidth?: boolean;
@@ -1250,6 +1251,7 @@ type CircleRatingLegendProps = {
1250
1251
  t: WithTranslation['t'];
1251
1252
  isReverse?: boolean;
1252
1253
  isPercentage?: boolean;
1254
+ isShowLegend?: boolean;
1253
1255
  };
1254
1256
  type CircleRatingComponentProps = {
1255
1257
  size: keyof typeof CircleRatingSize;
@@ -1266,7 +1268,10 @@ type CircleRatingComponentProps = {
1266
1268
  isZeroTransparent?: boolean;
1267
1269
  isWithOverlap?: boolean;
1268
1270
  isWithAnimation?: boolean;
1271
+ isPrimaryColor?: boolean;
1272
+ isProgressWithAnimation?: boolean;
1269
1273
  className?: string;
1274
+ onProgressEnd?: () => void;
1270
1275
  };
1271
1276
  type CircleRatingContextProps = CircleRatingComponentProps & {
1272
1277
  legend?: string[];
@@ -1500,7 +1505,9 @@ declare enum OnBoardingScreenOptions {
1500
1505
  SINGLE_SELECT = "SINGLE_SELECT",
1501
1506
  INFO = "INFO",
1502
1507
  LOADER = "LOADER",
1503
- REVIEWS = "REVIEWS"
1508
+ REVIEWS = "REVIEWS",
1509
+ EMAIL = "EMAIL",
1510
+ CONFIRM = "CONFIRM"
1504
1511
  }
1505
1512
  type OnBoardingScreenOptionType = {
1506
1513
  id: string;
@@ -1526,6 +1533,23 @@ type OnBoardingScreenDescriptionType = {
1526
1533
  title?: string | null;
1527
1534
  description?: string | null;
1528
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
+ };
1529
1553
  type OnBoardingBaseScreenType = {
1530
1554
  id: string;
1531
1555
  type: OnBoardingScreenOptions;
@@ -1563,6 +1587,11 @@ type OnBoardingLoaderScreenType = OnBoardingBaseScreenType & {
1563
1587
  answerScreenId?: string[];
1564
1588
  allScreens?: Record<string, OnBoardingScreensType>;
1565
1589
  selectedAnswers?: Record<string, string[]>;
1590
+ loadingItemDuration?: number;
1591
+ listItems?: {
1592
+ id: string;
1593
+ label: string;
1594
+ }[];
1566
1595
  };
1567
1596
  type OnBoardingReviewsScreenType = OnBoardingBaseScreenType & OnBoardingScreenButtonType & TranslationType & {
1568
1597
  title?: string | null;
@@ -1570,7 +1599,13 @@ type OnBoardingReviewsScreenType = OnBoardingBaseScreenType & OnBoardingScreenBu
1570
1599
  reviews: ISpecialistReview[];
1571
1600
  isLoading?: boolean;
1572
1601
  };
1573
- type OnBoardingScreensType = OnBoardingStartScreenType | OnBoardingMultiSelectScreenType | OnBoardingSingleSelectScreenType | OnBoardingInfoScreenType | OnBoardingLoaderScreenType | OnBoardingReviewsScreenType;
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;
1574
1609
  type OnBoardingFlowType = {
1575
1610
  id: string;
1576
1611
  locale: string;
@@ -1924,7 +1959,7 @@ interface TextareaV2Props extends Omit<JSX$1.IonTextarea, 'color' | 'enterkeyhin
1924
1959
  onKeyPress?: (e: KeyboardEvent<HTMLIonTextareaElement>) => void;
1925
1960
  }
1926
1961
 
1927
- declare const _default$L: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TextareaV2Props & React__default.RefAttributes<HTMLIonTextareaElement>>>;
1962
+ declare const _default$M: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TextareaV2Props & React__default.RefAttributes<HTMLIonTextareaElement>>>;
1928
1963
 
1929
1964
  type RatingProps = {
1930
1965
  initialRating?: number;
@@ -1936,10 +1971,10 @@ type RatingProps = {
1936
1971
  readonly?: boolean;
1937
1972
  };
1938
1973
 
1939
- declare const _default$K: React__default.NamedExoticComponent<RatingProps>;
1974
+ declare const _default$L: React__default.NamedExoticComponent<RatingProps>;
1940
1975
 
1941
1976
  declare const RatingCircleWrapper: FC<CircleRatingComponentProps & {
1942
- t: WithTranslation | any;
1977
+ t: WithTranslation['t'] | any;
1943
1978
  }>;
1944
1979
 
1945
1980
  type IconButtonProps = {
@@ -1950,7 +1985,7 @@ type IconButtonProps = {
1950
1985
  fill?: 'clear' | 'filled';
1951
1986
  type?: 'button' | 'submit' | 'reset';
1952
1987
  };
1953
- declare const _default$J: React__default.NamedExoticComponent<IconButtonProps>;
1988
+ declare const _default$K: React__default.NamedExoticComponent<IconButtonProps>;
1954
1989
 
1955
1990
  type ToastProviderProps = ToastStateProps;
1956
1991
  type MindlyToastProps = {
@@ -1996,17 +2031,17 @@ type ProgressBar_v2Props = {
1996
2031
  animationDuration?: number;
1997
2032
  onProgressEnd?: () => void;
1998
2033
  };
1999
- declare const _default$I: React__default.NamedExoticComponent<ProgressBar_v2Props>;
2034
+ declare const _default$J: React__default.NamedExoticComponent<ProgressBar_v2Props>;
2000
2035
 
2001
2036
  type LoadingProps = {
2002
2037
  isOpen: boolean;
2003
2038
  };
2004
- declare const _default$H: React__default.NamedExoticComponent<LoadingProps>;
2039
+ declare const _default$I: React__default.NamedExoticComponent<LoadingProps>;
2005
2040
 
2006
2041
  type ListItemsProps = React$1.HTMLAttributes<HTMLIonListElement> & {
2007
2042
  withBorders?: boolean;
2008
2043
  };
2009
- declare const _default$G: React$1.NamedExoticComponent<ListItemsProps>;
2044
+ declare const _default$H: React$1.NamedExoticComponent<ListItemsProps>;
2010
2045
 
2011
2046
  type ItemProps = React$1.HTMLAttributes<HTMLIonItemElement> & {
2012
2047
  leftContent?: React$1.ReactNode;
@@ -2018,7 +2053,7 @@ type ItemProps = React$1.HTMLAttributes<HTMLIonItemElement> & {
2018
2053
  isError?: boolean;
2019
2054
  status?: 'error' | 'attention';
2020
2055
  };
2021
- declare const _default$F: React$1.NamedExoticComponent<ItemProps>;
2056
+ declare const _default$G: React$1.NamedExoticComponent<ItemProps>;
2022
2057
 
2023
2058
  type VideoProps = {
2024
2059
  src: string;
@@ -2038,7 +2073,7 @@ type VideoMethods = {
2038
2073
  play(): void;
2039
2074
  };
2040
2075
  type VideoRef = HTMLVideoElement | VideoMethods;
2041
- declare const _default$E: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<VideoProps & {
2076
+ declare const _default$F: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<VideoProps & {
2042
2077
  children?: React__default.ReactNode;
2043
2078
  } & React__default.RefAttributes<VideoRef>>>;
2044
2079
 
@@ -2155,15 +2190,15 @@ type MatchProgressProps = {
2155
2190
  className?: string;
2156
2191
  percentMatch: number;
2157
2192
  };
2158
- declare const _default$D: React__default.NamedExoticComponent<React__default.PropsWithChildren<MatchProgressProps>>;
2193
+ declare const _default$E: React__default.NamedExoticComponent<React__default.PropsWithChildren<MatchProgressProps>>;
2159
2194
 
2160
2195
  interface Props$7 {
2161
2196
  className?: string;
2162
2197
  title: string;
2163
2198
  }
2164
- declare const _default$C: React__default.NamedExoticComponent<React__default.PropsWithChildren<Props$7>>;
2199
+ declare const _default$D: React__default.NamedExoticComponent<React__default.PropsWithChildren<Props$7>>;
2165
2200
 
2166
- declare const _default$B: React__default.NamedExoticComponent<React__default.PropsWithChildren<React__default.HTMLAttributes<HTMLButtonElement>>>;
2201
+ declare const _default$C: React__default.NamedExoticComponent<React__default.PropsWithChildren<React__default.HTMLAttributes<HTMLButtonElement>>>;
2167
2202
 
2168
2203
  type Props$6 = {
2169
2204
  className?: string;
@@ -2205,6 +2240,19 @@ type NewSpecialistProps = {
2205
2240
 
2206
2241
  declare const NewSpecialist: React__default.FC<NewSpecialistProps>;
2207
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
+
2208
2256
  declare enum appThemes {
2209
2257
  client = "client",
2210
2258
  specialist = "specialist"
@@ -2256,7 +2304,7 @@ declare function useToastContext(): ToastState<MindlyToastProps>;
2256
2304
  declare const SIZES: SizeValues;
2257
2305
  declare const BREAKPOINT_ICON_SIZE = 20;
2258
2306
  declare function useCircleRatingRenderData({ progress, size, maxValue, isReverse, isShowBreakPoints, }: CircleRatingDataProps): CircleRatingDataResult;
2259
- declare function useRangeIndex({ progress, maxValue, ranges, isReverse }: ProgressRangeProps): number;
2307
+ declare function useRangeIndex({ progress, maxValue, ranges, isReverse, }: ProgressRangeProps): number;
2260
2308
  declare function getProgressForBreakPoint({ maxValue, breakPoint, }: {
2261
2309
  maxValue: number;
2262
2310
  breakPoint: number;
@@ -2267,11 +2315,15 @@ declare function useBreakPointsPosition({ maxValue, breakPoints, radius, strokeW
2267
2315
  radius?: number;
2268
2316
  strokeWidth?: number;
2269
2317
  }): BreakPointPositionResult[];
2270
- declare function useRatingCircleLegend({ ranges, t, isReverse, isPercentage, }: CircleRatingLegendProps): string[];
2271
- declare function useRatingCircleContentValue({ progress, isPercentage, decimal, }: {
2318
+ declare function useRatingCircleLegend({ ranges, t, isReverse, isPercentage, isShowLegend, }: CircleRatingLegendProps): string[];
2319
+ declare function useRatingCircleContentValue({ progress, isPercentage, decimal, isWithAnimation, animationDuration, targetPercentage, onProgressEnd, }: {
2272
2320
  progress: number;
2273
2321
  isPercentage?: boolean;
2274
2322
  decimal?: number;
2323
+ isWithAnimation?: boolean;
2324
+ animationDuration?: number;
2325
+ targetPercentage?: number;
2326
+ onProgressEnd?: () => void;
2275
2327
  }): string;
2276
2328
  declare function useRatingCircleBreakPoints({ ranges, maxValue, isReverse, }: {
2277
2329
  ranges: CircleRatingRange[];
@@ -2761,9 +2813,9 @@ type SlotsGridItemProps = {
2761
2813
  onSelectionChange: () => void;
2762
2814
  };
2763
2815
 
2764
- declare const _default$A: React__default.NamedExoticComponent<SlotsGridProps>;
2816
+ declare const _default$B: React__default.NamedExoticComponent<SlotsGridProps>;
2765
2817
 
2766
- declare const _default$z: React$1.NamedExoticComponent<SlotsGridItemProps>;
2818
+ declare const _default$A: React$1.NamedExoticComponent<SlotsGridItemProps>;
2767
2819
 
2768
2820
  type PushNotificationsModalProps = {
2769
2821
  onApplyPermission: () => void;
@@ -2877,23 +2929,23 @@ type ShareModalFeatureProps = {
2877
2929
  };
2878
2930
  declare const ShareModalFeature: FC<ShareModalFeatureProps>;
2879
2931
 
2880
- declare const _default$y: React__default.NamedExoticComponent<SpecialistPaymentConsultationDetailsType & TranslationType>;
2932
+ declare const _default$z: React__default.NamedExoticComponent<SpecialistPaymentConsultationDetailsType & TranslationType>;
2881
2933
 
2882
- declare const _default$x: React__default.NamedExoticComponent<SpecialistPaymentCardProps & TranslationType>;
2934
+ declare const _default$y: React__default.NamedExoticComponent<SpecialistPaymentCardProps & TranslationType>;
2883
2935
 
2884
2936
  type SpecialistPaymentCommonCardSkeletonType = {
2885
2937
  className?: string;
2886
2938
  };
2887
2939
  declare const SpecialistPaymentCommonCardSkeleton: (props: SpecialistPaymentCommonCardSkeletonType) => JSX.Element;
2888
2940
 
2889
- declare const _default$w: React__default.NamedExoticComponent<SpecialistPaymentConsultationsProps & TranslationType>;
2941
+ declare const _default$x: React__default.NamedExoticComponent<SpecialistPaymentConsultationsProps & TranslationType>;
2890
2942
 
2891
2943
  type ConsultationsListProps = {
2892
2944
  consultations: SpecialistConsultation[];
2893
2945
  locale?: string;
2894
2946
  consultationClick?: (consultation: SpecialistConsultation) => void;
2895
2947
  };
2896
- declare const _default$v: React__default.NamedExoticComponent<ConsultationsListProps>;
2948
+ declare const _default$w: React__default.NamedExoticComponent<ConsultationsListProps>;
2897
2949
 
2898
2950
  type ConsultationsListSkeletonType = {
2899
2951
  className?: string;
@@ -2908,9 +2960,9 @@ type CalendarPickerFeatureProps = {
2908
2960
  dateCallback: (date: Date) => void;
2909
2961
  lastDate: Date;
2910
2962
  };
2911
- declare const _default$u: React__default.NamedExoticComponent<CalendarPickerFeatureProps & TranslationType>;
2963
+ declare const _default$v: React__default.NamedExoticComponent<CalendarPickerFeatureProps & TranslationType>;
2912
2964
 
2913
- declare const _default$t: React__default.NamedExoticComponent<PaymentCalendarFeatureProps & TranslationType>;
2965
+ declare const _default$u: React__default.NamedExoticComponent<PaymentCalendarFeatureProps & TranslationType>;
2914
2966
 
2915
2967
  type GoogleCalendarModalFeatureProps = {
2916
2968
  isOpen: boolean;
@@ -2925,7 +2977,7 @@ type GoogleCalendarModalFeatureProps = {
2925
2977
  declare function GoogleCalendarModalFeature({ status, isOpen, onSync, isLoading, presentingElement, imageUrl, onDidDismiss, t, }: GoogleCalendarModalFeatureProps): JSX.Element;
2926
2978
 
2927
2979
  type ReviewCardFeatureVariantType = 'default' | 'outlined' | 'full';
2928
- declare const _default$s: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
2980
+ declare const _default$t: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
2929
2981
  avatarSrc?: string | undefined;
2930
2982
  name: string;
2931
2983
  date: number;
@@ -3024,7 +3076,7 @@ type ScreenInputFormFeatureProps = {
3024
3076
  icon?: ReactNode | string;
3025
3077
  isKeyboardShown?: boolean;
3026
3078
  };
3027
- declare const _default$r: React__default.NamedExoticComponent<ScreenInputFormFeatureProps>;
3079
+ declare const _default$s: React__default.NamedExoticComponent<ScreenInputFormFeatureProps>;
3028
3080
 
3029
3081
  type SelectionType = {
3030
3082
  value: any;
@@ -3042,7 +3094,7 @@ type SpecialistDrumPickerWidgetProps = {
3042
3094
  onTouchStart?: () => void;
3043
3095
  onTouchEnd?: () => void;
3044
3096
  };
3045
- declare const _default$q: React__default.NamedExoticComponent<SpecialistDrumPickerWidgetProps>;
3097
+ declare const _default$r: React__default.NamedExoticComponent<SpecialistDrumPickerWidgetProps>;
3046
3098
 
3047
3099
  type TextAreaFormFeatureProps = {
3048
3100
  title?: string;
@@ -3058,7 +3110,7 @@ type TextAreaFormFeatureProps = {
3058
3110
  maxlength?: number;
3059
3111
  HeaderComponent?: FC;
3060
3112
  };
3061
- declare const _default$p: React__default.NamedExoticComponent<TextAreaFormFeatureProps>;
3113
+ declare const _default$q: React__default.NamedExoticComponent<TextAreaFormFeatureProps>;
3062
3114
 
3063
3115
  type AcceptAgreementFeatureProps = {
3064
3116
  isAccepted: boolean;
@@ -3079,32 +3131,35 @@ type SelectWithSearchFormFeatureProps = {
3079
3131
  otherText?: string;
3080
3132
  buttonLabel?: string;
3081
3133
  } & WithTranslation;
3082
- declare const _default$o: React__default.NamedExoticComponent<SelectWithSearchFormFeatureProps>;
3134
+ declare const _default$p: React__default.NamedExoticComponent<SelectWithSearchFormFeatureProps>;
3083
3135
 
3084
3136
  type MarkdownContainerFeatureProps = {
3085
3137
  children?: string | null;
3086
3138
  options?: MarkdownToJSX.Options;
3087
3139
  className?: string;
3088
3140
  };
3089
- declare const _default$n: React__default.NamedExoticComponent<MarkdownContainerFeatureProps>;
3141
+ declare const _default$o: React__default.NamedExoticComponent<MarkdownContainerFeatureProps>;
3090
3142
 
3091
- declare const _default$m: React__default.NamedExoticComponent<OnBoardingStartScreenType>;
3143
+ declare const _default$n: React__default.NamedExoticComponent<OnBoardingStartScreenType>;
3092
3144
 
3093
- declare const _default$l: React__default.NamedExoticComponent<OnBoardingInfoScreenType>;
3145
+ declare const _default$m: React__default.NamedExoticComponent<OnBoardingInfoScreenType>;
3094
3146
 
3095
3147
  type OnBoardingMultiSelectionScreenPreviewFeatureProps = {
3096
3148
  onChange?: (value: string[]) => void;
3097
3149
  defaultValues?: string[];
3098
3150
  } & OnBoardingMultiSelectScreenType;
3099
- declare const _default$k: React__default.NamedExoticComponent<OnBoardingMultiSelectionScreenPreviewFeatureProps>;
3151
+ declare const _default$l: React__default.NamedExoticComponent<OnBoardingMultiSelectionScreenPreviewFeatureProps>;
3100
3152
 
3101
3153
  type OnBoardingSingleSelectionScreenPreviewFeatureProps = {
3102
3154
  onChange?: (value: string) => void;
3103
3155
  defaultValues?: string[];
3104
3156
  } & OnBoardingSingleSelectScreenType;
3105
- declare const _default$j: React__default.NamedExoticComponent<OnBoardingSingleSelectionScreenPreviewFeatureProps>;
3157
+ declare const _default$k: React__default.NamedExoticComponent<OnBoardingSingleSelectionScreenPreviewFeatureProps>;
3106
3158
 
3107
- declare const _default$i: React__default.NamedExoticComponent<OnBoardingLoaderScreenType>;
3159
+ declare const OnBoardingLoaderScreenPreviewFeature: FC<OnBoardingLoaderScreenType & {
3160
+ t?: WithTranslation['t'];
3161
+ onProgressEnd?: () => void;
3162
+ }>;
3108
3163
 
3109
3164
  type OnBoardingProgressFeatureProps = {
3110
3165
  progress: number;
@@ -3114,9 +3169,13 @@ type OnBoardingProgressFeatureProps = {
3114
3169
  contentStyle?: OnBoardingScreenStyleOptions;
3115
3170
  startAdornment?: React__default.ReactNode;
3116
3171
  };
3117
- declare const _default$h: React__default.NamedExoticComponent<OnBoardingProgressFeatureProps>;
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>;
3118
3177
 
3119
- declare const _default$g: React__default.NamedExoticComponent<OnBoardingReviewsScreenType>;
3178
+ declare const _default$g: React__default.NamedExoticComponent<OnBoardingConfirmScreenType>;
3120
3179
 
3121
3180
  type SpecialistAreaByMatch = {
3122
3181
  text: string;
@@ -3993,4 +4052,4 @@ type SessionPaymentsWidgetProps = {
3993
4052
 
3994
4053
  declare const SessionPaymentsWidget: React__default.FC<SessionPaymentsWidgetProps>;
3995
4054
 
3996
- export { AcceptAgreementFeature, Action, _default$T as AlertCard, AllowFilterValueType, AppFooter, _default$S as AppFooter_v2, AppHeader, AppHeaderPage as AppHeaderPageFeature, AppHeader_v2, AppNotSupportedFeature, ArchivedConsultationCard, AutoComplete, Avatar, AvatarProps$1 as AvatarProps, _default$R as Avatar_v2, AvatarProps as Avatar_v2Props, BREAKPOINT_ICON_SIZE, _default$N as Badge, _default$W as BookingScheduleTime, _default$V as BookingSpecialistInfo, BreakPointPositionProps, BreakPointPositionResult, Button, Button_v2, CAN_MANAGE_SESSION_TIME_HOURS, COUNTRIES_MAPPER, Calendar, _default$u as CalendarPickerFeature, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$1f as ChatListItem, _default$1d as ChatListSkeleton, _default$1e as ChatMessage, ChatMessageSkeleton, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$a as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingComponentProps, CircleRatingContent, CircleRatingContext, CircleRatingContextData, CircleRatingContextProps, CircleRatingDataProps, CircleRatingDataResult, CircleRatingLegendProps, CircleRatingProvider, CircleRatingRange, CircleRatingSize, ClientCanAction, ClientCanParams, ClientSpecialistContractStatusEnum, CollapsableText, ConditionRulesType, Consultation, _default$16 as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$13 as ConsultationModal, _default$y as ConsultationPricingFeature, _default$11 as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentCard, ContentRendererProps, ContractDataFeature, ContractStatusEnum, ContentTree as ContractTreeFeature, CountdownTimerFeature, CountryOfOriginModal, CurrencyLocaleMapper, CurrencySignByLocale, CustomButton, _default$b as CustomCheckbox, CustomRadioButton, _default$c as CustomSelect, _default$d as CustomTextarea, DatePicker, _default$$ as DaySlider, DayToRender, DividerProps, DrumListPicker, DynamicCommissionValue, _default$X as EducationCard, _default$1c as EmptyChatList, EmptyChatMessages, EmptyChatModalFeature, _default$14 as EmptyConsultations, EmptyList, EmptySpecialistListFeature, EntryNotFound, EntryNotFoundProps, ErrorCardFeature, FilterFeatureProps, FilterItem, FilterItemBoolean, FilterItemChips, FilterItemRange, FilterItemSelect, FilterOption, FilterOptionValue, FilterValue, FiltersWidget, FiltersWidgetProps, FirstChatMessageModalFeature, _default$7 as Flag, FlagTypes, _default$P as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconAddModerator, IconApple, IconArrowDown, IconArrowLeft, IconArrowRight, IconArrowTopRight, IconAttachMoney, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$J as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCalendarNew, IconCalendarWithDot, IconCancel, IconCancelRounded, IconCapFilled, IconChat, IconChat3d, IconChat3dSmaller, IconChatFilled, IconChatOutline, IconCheck, IconCheckCircle, IconCheckSmall, IconCheckboxChecked, IconCheckboxUnchecked, IconClient, IconClientFilled, IconClose, IconContract, IconCopy, IconCreditCard, IconDelete, IconDocument, IconDot, IconEcgHeart, IconEdit, IconEditCalendar, IconEmptyList, IconEventBusy, IconExperience, IconEye, IconEyeOff, IconFilters, IconGallery, IconGift, IconGiftNew, IconGoogle, IconHeart, IconHome, IconIdCard, IconInvisible, IconInvoice, IconLanguage, IconLeftArrow, IconLetter, IconLink, IconLock, IconLogout, IconManageAccounts, IconMindly, IconMindlyColored, IconMindlyMini, IconMinus, IconMoreVertical, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPause, IconPersonAlert, IconPlay, IconPlus, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconProps$B as IconProps, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconReceipt, IconReceiptLong, IconRenew, IconResume, IconReviewSessionSubscription, IconReviewSessionTrial, IconSchedule, IconSchema, IconSearch, IconSend, IconSettings, IconShare, IconSpecialistsEnded, IconSpinner, IconStar, IconStarFilled, IconStudyHat, IconStylus, IconSuccess, IconText, IconTime, IconTimeAdd, IconUnmute, IconUser, IconUserNotFound, IconVerifiedUser, IconVisible, IconWarning, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, InputSearch, _default$F as Item, _default$M as ItemCard, LabelArrowRedirect, LanguagesList, _default$1j as LetterAvatar, _default$8 as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListButton, ListItemType, _default$C as ListItemWithColumns, _default$G as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$H as Loading, LocaleCurrencyMapper, LouseConnect, MapStatusContractToUIStatus, _default$n as MarkdownContainerFeature, _default$D as MatchProgress, _default$1g as MediaPlayer, MenuFeature, Modal, ModalCalendar, ModalSheet, NEAR_SESSION_TIME_SECONDS, NavigationBar, NewSpecialist, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, OnBoardingBaseScreenType, OnBoardingFlowType, _default$l as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, _default$i as OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$k as OnBoardingMultiSelectionScreenPreviewFeature, _default$h as OnBoardingProgressFeature, _default$g as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenBgType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenOptionType, OnBoardingScreenOptions, OnBoardingScreenSkipButtonType, OnBoardingScreenStyleOptions, OnBoardingScreensType, OnBoardingSingleSelectScreenType, _default$j as OnBoardingSingleSelectionScreenPreviewFeature, _default$m as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$t as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$v as PaymentSessionsList, _default$1i as PersonDateTimeCard, _default$O as Picture, _default$6 as ProfileInformation, _default$Z as ProfileView, _default$9 as ProgressBar, ProgressBarDashed, _default$I as ProgressBar_v2, ProgressRangeProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$K as Rating, RatingCircleWrapper, _default$10 as ReSchedule, ReScheduleSuccess, Refresher, ResponseFileType, ReviewCard, _default$s as ReviewCardFeature, ReviewListFeature, ReviewStatistics, ReviewSubscriptionSessionFeature, ReviewSubscriptionSessionFeatureProps, ReviewSwiperSection, ReviewTrialSessionFeature, ReviewTrialSessionFeatureProps, ReviewsCardFeatureSkeleton, ReviewsSummary, RoundButton, RowItemType, RowSelect, RowSelectProps, Rule, SIZES, SOON_SESSION_TIME_SECONDS, _default$q as ScreenDrumPickerFormFeature, ScreenInput, _default$r as ScreenInputFormFeature, ScreenInputUpdateFeature, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$1h as SelectImpressionEmoji, SelectItemType, _default$o as SelectWithSearchFormFeature, Session, SessionDetailWidget, SessionPaymentsWidget, SessionPreviewFeature, SessionReview$1 as SessionReview, SessionTime, SessionVariant, SessionsWidget as SessionsListWidget, SessionsWidgetProps, Sex, ShareModalFeature, ShortCurrencySignByLocale, _default$B as ShowMore, _default$15 as SignUpSessionButton, _default$12 as SignUpSessionModal, SizeValues, Skeleton, _default$Q as Skeleton_v2, _default$A as SlotsGrid, _default$z as SlotsGridItem, Specialist, _default$Y as SpecialistAbout, SpecialistAreaList as SpecialistAreaListFeature, SpecialistCard, SpecialistCardListWidget, _default$3 as SpecialistCardWidget, SpecialistConsultation, SpecialistConsultationPayment, _default as SpecialistDetailWidget, SpecialistDetailWidgetSkeleton, SpecialistEducation, _default$1a as SpecialistEducationCard, SpecialistEducationsFeature, SpecialistInfoColumnFeature, SpecialistLangs, _default$5 as SpecialistMatch, SpecialistOrderType, SpecialistPaymentCardProps, _default$x as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$w as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default$1 as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$2 as SpecialistPaymentWidget, SpecialistPaymentWidgetType, SpecialistPreviewFeature, SpecialistPreviewListWidget, SpecialistProfileNotFound, _default$19 as SpecialistProfileViewCard, SpecialistReview$1 as SpecialistReview, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default$4 as SpecialistStatistic, SpecialistStatisticsCard, SpecialistWorkDirections, Spinner, Spinner_v2, StarRating, StatisticsScroll, StatusTag, StripeSupportedCurrency, Subscription, SubscriptionStatuses, SuccessScreen, SuperSpecialist, SupportedCurrency, SupportedLangs, SwitchDeviceCard, TabBar, TabItem, Tabs$1 as Tabs, TabsToolbarFeature, Tag, _default$p as TextAreaFormFeature, _default$e as TextInput, _default$f as TextWithClampFeature, _default$1b as Textarea, _default$L as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$U as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UserType, UsersPsychologistScrollList, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$E as Video, _default$17 as VideoCallInfo, _default$18 as VideoPlayer, VideoProvider, _default$_ as WorkDirections, YourLocalTimeBlock, appThemes, canManageSession, decOfNum, formatByDigits, getCountryKeyByName, getDateLocale, getFiltersQuery, getFiltersValues, getGMTOffset, getMappedFilterValue, getProgressForBreakPoint, getSessionTimeLabel, getSessionVariant, getSessionsByDay, getSessionsByMonth, getSessionsByYear, getSignAgreementsTabs, getStartSessionDate, getStartSessionTimestamp, isClientCan, isFilterSet, isNewSpecialist, isSpecialistActive, isSpecialistBlocked, isSpecialistPublic, isSuperSpecialist, mergeRefs, newShade, priceNormalize, replaceMarkdownWithReactElements, roundToPrecision, splitSessions, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDeepCompareEffect, useDeepUpdateEffect, useDomRef, useElementWidth, useEvent, useIsKeyBoardShown, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useToastContext, useUpdateEffect, useVideoContext };
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 };