@mindly/ui-components 5.19.0 → 5.21.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. package/dist/cjs/configs/tailwind/colors.d.ts +2 -0
  2. package/dist/cjs/index.js +14 -5
  3. package/dist/cjs/lib2/shared/assets/icons/IconCancelRounded.d.ts +10 -0
  4. package/dist/cjs/lib2/shared/assets/icons/IconCapFilled.d.ts +10 -0
  5. package/dist/cjs/lib2/shared/assets/icons/IconCheck.d.ts +9 -0
  6. package/dist/cjs/lib2/shared/assets/icons/IconWarning.d.ts +7 -0
  7. package/dist/cjs/lib2/shared/assets/icons/index.d.ts +4 -0
  8. package/dist/cjs/lib2/shared/hooks/index.d.ts +1 -0
  9. package/dist/cjs/lib2/shared/hooks/useCircleRating.d.ts +26 -0
  10. package/dist/cjs/lib2/shared/providers/CircleRatingProvider/CircleRatingProvider.d.ts +9 -0
  11. package/dist/cjs/lib2/shared/providers/CircleRatingProvider/index.d.ts +1 -0
  12. package/dist/cjs/lib2/shared/providers/index.d.ts +1 -0
  13. package/dist/cjs/lib2/shared/types/index.d.ts +1 -0
  14. package/dist/cjs/lib2/shared/types/ratingCircleTypes.d.ts +73 -0
  15. package/dist/cjs/lib2/shared/ui/ItemCard/ItemCard.d.ts +4 -0
  16. package/dist/cjs/lib2/shared/ui/ItemCard/index.d.ts +1 -0
  17. package/dist/cjs/lib2/shared/ui/ItemCard/styles.d.ts +50 -0
  18. package/dist/cjs/lib2/shared/ui/ItemCard/types.d.ts +6 -0
  19. package/dist/cjs/lib2/shared/ui/RatingCircle/RatingCircle.d.ts +3 -0
  20. package/dist/cjs/lib2/shared/ui/RatingCircle/RatingCircle.stories.d.ts +6 -0
  21. package/dist/cjs/lib2/shared/ui/RatingCircle/RatingCircleBreakpoints.d.ts +3 -0
  22. package/dist/cjs/lib2/shared/ui/RatingCircle/RatingCircleContent.d.ts +3 -0
  23. package/dist/cjs/lib2/shared/ui/RatingCircle/RatingCircleIcons.d.ts +10 -0
  24. package/dist/cjs/lib2/shared/ui/RatingCircle/RatingCircleLegend.d.ts +3 -0
  25. package/dist/cjs/lib2/shared/ui/RatingCircle/RatingCircleWrapper.d.ts +7 -0
  26. package/dist/cjs/lib2/shared/ui/RatingCircle/index.d.ts +1 -0
  27. package/dist/cjs/lib2/shared/ui/RatingCircle/styles.d.ts +235 -0
  28. package/dist/cjs/lib2/shared/ui/index.d.ts +2 -0
  29. package/dist/esm/configs/tailwind/colors.d.ts +2 -0
  30. package/dist/esm/index.js +14 -5
  31. package/dist/esm/lib2/shared/assets/icons/IconCancelRounded.d.ts +10 -0
  32. package/dist/esm/lib2/shared/assets/icons/IconCapFilled.d.ts +10 -0
  33. package/dist/esm/lib2/shared/assets/icons/IconCheck.d.ts +9 -0
  34. package/dist/esm/lib2/shared/assets/icons/IconWarning.d.ts +7 -0
  35. package/dist/esm/lib2/shared/assets/icons/index.d.ts +4 -0
  36. package/dist/esm/lib2/shared/hooks/index.d.ts +1 -0
  37. package/dist/esm/lib2/shared/hooks/useCircleRating.d.ts +26 -0
  38. package/dist/esm/lib2/shared/providers/CircleRatingProvider/CircleRatingProvider.d.ts +9 -0
  39. package/dist/esm/lib2/shared/providers/CircleRatingProvider/index.d.ts +1 -0
  40. package/dist/esm/lib2/shared/providers/index.d.ts +1 -0
  41. package/dist/esm/lib2/shared/types/index.d.ts +1 -0
  42. package/dist/esm/lib2/shared/types/ratingCircleTypes.d.ts +73 -0
  43. package/dist/esm/lib2/shared/ui/ItemCard/ItemCard.d.ts +4 -0
  44. package/dist/esm/lib2/shared/ui/ItemCard/index.d.ts +1 -0
  45. package/dist/esm/lib2/shared/ui/ItemCard/styles.d.ts +50 -0
  46. package/dist/esm/lib2/shared/ui/ItemCard/types.d.ts +6 -0
  47. package/dist/esm/lib2/shared/ui/RatingCircle/RatingCircle.d.ts +3 -0
  48. package/dist/esm/lib2/shared/ui/RatingCircle/RatingCircle.stories.d.ts +6 -0
  49. package/dist/esm/lib2/shared/ui/RatingCircle/RatingCircleBreakpoints.d.ts +3 -0
  50. package/dist/esm/lib2/shared/ui/RatingCircle/RatingCircleContent.d.ts +3 -0
  51. package/dist/esm/lib2/shared/ui/RatingCircle/RatingCircleIcons.d.ts +10 -0
  52. package/dist/esm/lib2/shared/ui/RatingCircle/RatingCircleLegend.d.ts +3 -0
  53. package/dist/esm/lib2/shared/ui/RatingCircle/RatingCircleWrapper.d.ts +7 -0
  54. package/dist/esm/lib2/shared/ui/RatingCircle/index.d.ts +1 -0
  55. package/dist/esm/lib2/shared/ui/RatingCircle/styles.d.ts +235 -0
  56. package/dist/esm/lib2/shared/ui/index.d.ts +2 -0
  57. package/dist/index.d.ts +232 -91
  58. package/package.json +1 -1
  59. package/src/configs/tailwind/colors.ts +2 -0
  60. package/src/lib2/shared/css/tailwind.css +2 -0
package/dist/index.d.ts CHANGED
@@ -7,10 +7,11 @@ import * as _ionic_core_dist_types_components from '@ionic/core/dist/types/compo
7
7
  import { IonContentCustomEvent, IonSearchbarCustomEvent } from '@ionic/core/dist/types/components';
8
8
  import { Node, ListState, ItemProps, SelectionBehavior, SelectionMode } from 'react-stately';
9
9
  import { AriaListBoxProps, AriaCalendarProps, DateValue } from 'react-aria';
10
+ import * as react_i18next from 'react-i18next';
11
+ import { WithTranslation } from 'react-i18next';
10
12
  import { ToastStateProps, ToastState } from '@react-stately/toast';
11
13
  import { AriaToastRegionProps } from '@react-aria/toast';
12
14
  import { SearchbarChangeEventDetail } from '@ionic/core';
13
- import { WithTranslation } from 'react-i18next';
14
15
 
15
16
  interface ButtonProps$2 {
16
17
  buttonType: 'primary' | 'secondary' | 'actionButton' | 'actionButtonDisabled' | 'secondaryWithStroke' | 'secondaryCancel' | 'actionButtonActive' | 'actionButtonGreen';
@@ -222,7 +223,7 @@ type LetterAvatarProps = {
222
223
  fontSize?: number;
223
224
  onClick?: () => void;
224
225
  };
225
- declare const _default$Q: React__default.NamedExoticComponent<LetterAvatarProps>;
226
+ declare const _default$R: React__default.NamedExoticComponent<LetterAvatarProps>;
226
227
 
227
228
  type ImageWithFallbackProps = JSX.IntrinsicElements['img'] & {
228
229
  onErrorContent: React__default.ReactElement;
@@ -234,7 +235,7 @@ type PersonDateTimeCardProps = {
234
235
  name: string;
235
236
  dateTime: Date;
236
237
  };
237
- declare const _default$P: React__default.NamedExoticComponent<PersonDateTimeCardProps>;
238
+ declare const _default$Q: React__default.NamedExoticComponent<PersonDateTimeCardProps>;
238
239
 
239
240
  type PsychologistProfileType = {
240
241
  id: string;
@@ -400,7 +401,7 @@ type SelectImpressionEmojiProps = {
400
401
  onChange?: (val: ImpressionEmojiEnum) => void;
401
402
  };
402
403
 
403
- declare const _default$O: React__default.NamedExoticComponent<SelectImpressionEmojiProps>;
404
+ declare const _default$P: React__default.NamedExoticComponent<SelectImpressionEmojiProps>;
404
405
 
405
406
  interface FooterForBookingProps {
406
407
  eventHandler: (props?: React__default.SyntheticEvent) => void;
@@ -432,7 +433,7 @@ type MediaPlayerProps<TCameraTrack extends Playable | undefined, TAudioTrack ext
432
433
  showControls: boolean;
433
434
  isScreenSharing?: boolean;
434
435
  } & HTMLAttributes<HTMLDivElement>;
435
- declare const _default$N: <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;
436
+ declare const _default$O: <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;
436
437
 
437
438
  type RoundButtonPropsType = {
438
439
  disabled?: boolean;
@@ -458,7 +459,7 @@ type ChatListItemProps = {
458
459
  lastMessageType?: 'text' | 'file' | 'image' | 'video' | 'system';
459
460
  locale?: string;
460
461
  };
461
- declare const _default$M: React__default.NamedExoticComponent<ChatListItemProps>;
462
+ declare const _default$N: React__default.NamedExoticComponent<ChatListItemProps>;
462
463
 
463
464
  type ChatMessageProps = {
464
465
  message: string | File;
@@ -476,11 +477,11 @@ type ChatMessageProps = {
476
477
  };
477
478
  locale?: string;
478
479
  };
479
- declare const _default$L: React__default.NamedExoticComponent<ChatMessageProps>;
480
+ declare const _default$M: React__default.NamedExoticComponent<ChatMessageProps>;
480
481
 
481
482
  declare const ChatMessageSkeleton: () => JSX.Element;
482
483
 
483
- declare const _default$K: React__default.MemoExoticComponent<() => JSX.Element>;
484
+ declare const _default$L: React__default.MemoExoticComponent<() => JSX.Element>;
484
485
 
485
486
  type EmptyChatList = {
486
487
  title?: string;
@@ -490,7 +491,7 @@ type EmptyChatList = {
490
491
  onClick?: () => void;
491
492
  };
492
493
  declare const EmptyChatList: FC<EmptyChatList>;
493
- declare const _default$J: React__default.NamedExoticComponent<EmptyChatList>;
494
+ declare const _default$K: React__default.NamedExoticComponent<EmptyChatList>;
494
495
 
495
496
  type EmptyChatMessagesProps = {
496
497
  title?: string;
@@ -514,7 +515,7 @@ type TextareaProps = {
514
515
  onError?: (message: string) => void;
515
516
  onFileSelect?: (file: File | null, type: 'file' | 'image' | 'video', fileInfo: FileInfoType) => void;
516
517
  };
517
- declare const _default$I: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TextareaProps & React__default.RefAttributes<HTMLIonFooterElement>>>;
518
+ declare const _default$J: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TextareaProps & React__default.RefAttributes<HTMLIonFooterElement>>>;
518
519
 
519
520
  type LouseConnectProps = {
520
521
  onClick?: () => void;
@@ -593,7 +594,7 @@ type SpecialistEducationCardProps$1 = {
593
594
  yearEnd?: number | null;
594
595
  showLoader?: boolean;
595
596
  };
596
- declare const _default$H: React__default.NamedExoticComponent<SpecialistEducationCardProps$1>;
597
+ declare const _default$I: React__default.NamedExoticComponent<SpecialistEducationCardProps$1>;
597
598
 
598
599
  type SpecialistProfileViewCardProps$1 = {
599
600
  avatarLink?: string | null;
@@ -606,7 +607,7 @@ type SpecialistProfileViewCardProps$1 = {
606
607
  videoLinkUrl?: string | null;
607
608
  showLoader?: boolean;
608
609
  } & React__default.DetailedHTMLProps<React__default.HTMLAttributes<HTMLDivElement>, HTMLDivElement>;
609
- declare const _default$G: React__default.NamedExoticComponent<SpecialistProfileViewCardProps$1>;
610
+ declare const _default$H: React__default.NamedExoticComponent<SpecialistProfileViewCardProps$1>;
610
611
 
611
612
  type SpecialistStatisticsCardProps$1 = {
612
613
  activeClients?: number;
@@ -642,7 +643,7 @@ type VideoPlayerProps = {
642
643
  closeModalHandler?: () => void;
643
644
  onErrorContent: React__default.ReactElement;
644
645
  } & JSX$1.IonModal;
645
- declare const _default$F: React__default.NamedExoticComponent<VideoPlayerProps>;
646
+ declare const _default$G: React__default.NamedExoticComponent<VideoPlayerProps>;
646
647
 
647
648
  type NotSupportModalProps = {
648
649
  closeModal?: () => void;
@@ -678,7 +679,7 @@ type VideoCallInfoProps = {
678
679
  abbreviatedSeconds: string;
679
680
  };
680
681
  };
681
- declare const _default$E: React__default.NamedExoticComponent<VideoCallInfoProps>;
682
+ declare const _default$F: React__default.NamedExoticComponent<VideoCallInfoProps>;
682
683
 
683
684
  declare enum ConsultationCardType {
684
685
  FEATURE = "feature",
@@ -713,14 +714,14 @@ type ConsultationCardProps = {
713
714
  };
714
715
  };
715
716
 
716
- declare const _default$D: React__default.NamedExoticComponent<ConsultationCardProps>;
717
+ declare const _default$E: React__default.NamedExoticComponent<ConsultationCardProps>;
717
718
 
718
719
  type SignUpSessionButtonProps = {
719
720
  label: string;
720
721
  isLoading?: boolean;
721
722
  onClick?: () => void;
722
723
  };
723
- declare const _default$C: React__default.NamedExoticComponent<SignUpSessionButtonProps>;
724
+ declare const _default$D: React__default.NamedExoticComponent<SignUpSessionButtonProps>;
724
725
 
725
726
  type EmptyConsultationsProps = {
726
727
  title: string;
@@ -728,7 +729,7 @@ type EmptyConsultationsProps = {
728
729
  buttonLabel?: string;
729
730
  onClick?: () => void;
730
731
  };
731
- declare const _default$B: React__default.NamedExoticComponent<EmptyConsultationsProps>;
732
+ declare const _default$C: React__default.NamedExoticComponent<EmptyConsultationsProps>;
732
733
 
733
734
  type ConsultationModalProps = {
734
735
  isOpen: boolean;
@@ -763,7 +764,7 @@ type ConsultationModalProps = {
763
764
  started?: string;
764
765
  };
765
766
  };
766
- declare const _default$A: React__default.NamedExoticComponent<ConsultationModalProps>;
767
+ declare const _default$B: React__default.NamedExoticComponent<ConsultationModalProps>;
767
768
 
768
769
  type SpecialistData = {
769
770
  id: string;
@@ -780,7 +781,7 @@ type SignUpSessionModalProps = {
780
781
  title: string;
781
782
  cancelBtnLabel: string;
782
783
  };
783
- declare const _default$z: React__default.NamedExoticComponent<SignUpSessionModalProps>;
784
+ declare const _default$A: React__default.NamedExoticComponent<SignUpSessionModalProps>;
784
785
 
785
786
  type ConsultationSpecialistCardProps = {
786
787
  id: string;
@@ -791,7 +792,7 @@ type ConsultationSpecialistCardProps = {
791
792
  onSignUp?: (id: string) => void;
792
793
  signInBtnLabel: string;
793
794
  };
794
- declare const _default$y: React__default.NamedExoticComponent<ConsultationSpecialistCardProps>;
795
+ declare const _default$z: React__default.NamedExoticComponent<ConsultationSpecialistCardProps>;
795
796
 
796
797
  type UserInfoModalProps = {
797
798
  isOpen: boolean;
@@ -856,7 +857,7 @@ type ReScheduleProps = {
856
857
  btnLabel: string;
857
858
  };
858
859
  };
859
- declare const _default$x: React__default.NamedExoticComponent<ReScheduleProps>;
860
+ declare const _default$y: React__default.NamedExoticComponent<ReScheduleProps>;
860
861
 
861
862
  type ReScheduleSuccessProps = {
862
863
  name: string;
@@ -894,7 +895,7 @@ type DaySliderProps = JSX$1.IonSlides & HTMLAttributes<HTMLIonSlidesElement> & R
894
895
  tomorrow?: string;
895
896
  };
896
897
  };
897
- declare const _default$w: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<DaySliderProps, "ref"> & React__default.RefAttributes<HTMLIonSlidesElement>>>;
898
+ declare const _default$x: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<DaySliderProps, "ref"> & React__default.RefAttributes<HTMLIonSlidesElement>>>;
898
899
 
899
900
  type SpecialistWorkDirectionsPropsType = {
900
901
  workDirections?: string[] | [];
@@ -903,7 +904,7 @@ type SpecialistWorkDirectionsPropsType = {
903
904
  moreLabel?: string;
904
905
  hideLabel?: string;
905
906
  };
906
- declare const _default$v: React__default.NamedExoticComponent<SpecialistWorkDirectionsPropsType>;
907
+ declare const _default$w: React__default.NamedExoticComponent<SpecialistWorkDirectionsPropsType>;
907
908
 
908
909
  type SpecialistProfileViewCardProps = {
909
910
  videoLink?: string;
@@ -913,7 +914,7 @@ type SpecialistProfileViewCardProps = {
913
914
  isLoading?: boolean;
914
915
  videoDurationSeconds?: number;
915
916
  };
916
- declare const _default$u: React__default.NamedExoticComponent<SpecialistProfileViewCardProps>;
917
+ declare const _default$v: React__default.NamedExoticComponent<SpecialistProfileViewCardProps>;
917
918
 
918
919
  type SpecialistAboutProps = {
919
920
  text?: string;
@@ -922,7 +923,7 @@ type SpecialistAboutProps = {
922
923
  moreLabel?: string;
923
924
  hideLabel?: string;
924
925
  };
925
- declare const _default$t: React__default.NamedExoticComponent<SpecialistAboutProps>;
926
+ declare const _default$u: React__default.NamedExoticComponent<SpecialistAboutProps>;
926
927
 
927
928
  type SpecialistEducationCardProps = {
928
929
  institutionName?: string;
@@ -933,7 +934,7 @@ type SpecialistEducationCardProps = {
933
934
  yearEnd?: number | null;
934
935
  showLoader?: boolean;
935
936
  };
936
- declare const _default$s: React__default.NamedExoticComponent<SpecialistEducationCardProps>;
937
+ declare const _default$t: React__default.NamedExoticComponent<SpecialistEducationCardProps>;
937
938
 
938
939
  type SpecialistStatisticsCardProps = {
939
940
  trust?: boolean;
@@ -979,7 +980,7 @@ type BookingScheduleTimeProps = {
979
980
  onClick?: (index: number, item: string) => void;
980
981
  isLoading?: boolean;
981
982
  };
982
- declare const _default$r: React__default.NamedExoticComponent<BookingScheduleTimeProps>;
983
+ declare const _default$s: React__default.NamedExoticComponent<BookingScheduleTimeProps>;
983
984
 
984
985
  type BookingSpecialistInfoProps = {
985
986
  name: string;
@@ -988,7 +989,7 @@ type BookingSpecialistInfoProps = {
988
989
  avatar?: string;
989
990
  isLoading?: boolean;
990
991
  };
991
- declare const _default$q: React__default.NamedExoticComponent<BookingSpecialistInfoProps>;
992
+ declare const _default$r: React__default.NamedExoticComponent<BookingSpecialistInfoProps>;
992
993
 
993
994
  type SpecialistCardProps = {
994
995
  fullName?: string;
@@ -1037,7 +1038,7 @@ type SpecialistCardProps = {
1037
1038
  };
1038
1039
  declare const SpecialistCard: React__default.FC<SpecialistCardProps>;
1039
1040
 
1040
- declare const _default$p: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
1041
+ declare const _default$q: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
1041
1042
  isError?: boolean | undefined;
1042
1043
  errorStyle?: "filled" | "unfilled" | undefined;
1043
1044
  type?: "number" | "text" | "email" | undefined;
@@ -1061,11 +1062,11 @@ declare const PasswordInput: React__default.ForwardRefExoticComponent<{
1061
1062
  error?: string | null | undefined;
1062
1063
  } & Omit<React__default.InputHTMLAttributes<HTMLInputElement>, "type"> & React__default.RefAttributes<HTMLInputElement>>;
1063
1064
 
1064
- declare const _default$o: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
1065
+ declare const _default$p: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
1065
1066
  isError?: boolean | undefined;
1066
1067
  } & React__default.TextareaHTMLAttributes<HTMLTextAreaElement> & React__default.RefAttributes<HTMLTextAreaElement>>>;
1067
1068
 
1068
- declare const _default$n: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
1069
+ declare const _default$o: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
1069
1070
  options: {
1070
1071
  id: string | number;
1071
1072
  label: string | number;
@@ -1097,7 +1098,7 @@ type CustomCheckboxProps = {
1097
1098
  isCheckbox?: boolean;
1098
1099
  onChange?: (e: ChangeEvent<HTMLInputElement>) => void;
1099
1100
  };
1100
- declare const _default$m: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<CustomCheckboxProps & React__default.RefAttributes<HTMLInputElement>>>;
1101
+ declare const _default$n: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<CustomCheckboxProps & React__default.RefAttributes<HTMLInputElement>>>;
1101
1102
 
1102
1103
  type CheckboxListItem = {
1103
1104
  id: ReactText;
@@ -1125,7 +1126,7 @@ type CheckboxListProps = {
1125
1126
  from: string;
1126
1127
  };
1127
1128
  };
1128
- declare const _default$l: React__default.NamedExoticComponent<CheckboxListProps>;
1129
+ declare const _default$m: React__default.NamedExoticComponent<CheckboxListProps>;
1129
1130
 
1130
1131
  type BookingHeaderProps = {
1131
1132
  title?: string;
@@ -1139,9 +1140,9 @@ type ProgressBarProps = {
1139
1140
  progress: number;
1140
1141
  loaderTitle?: string;
1141
1142
  };
1142
- declare const _default$k: React__default.NamedExoticComponent<ProgressBarProps>;
1143
+ declare const _default$l: React__default.NamedExoticComponent<ProgressBarProps>;
1143
1144
 
1144
- declare const _default$j: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
1145
+ declare const _default$k: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
1145
1146
  title: string;
1146
1147
  subTitle?: string | undefined;
1147
1148
  isError?: boolean | undefined;
@@ -1172,7 +1173,7 @@ type FlagProps$1 = {
1172
1173
  dimensions?: number;
1173
1174
  className?: string;
1174
1175
  };
1175
- declare const _default$i: React__default.NamedExoticComponent<FlagProps$1>;
1176
+ declare const _default$j: React__default.NamedExoticComponent<FlagProps$1>;
1176
1177
 
1177
1178
  type SpecialistLangsProps = {
1178
1179
  showLoader?: boolean;
@@ -1212,7 +1213,7 @@ type ProfileInformationProps = {
1212
1213
  reviews: string[];
1213
1214
  };
1214
1215
  } & React__default.HTMLAttributes<HTMLDivElement>;
1215
- declare const _default$h: React__default.NamedExoticComponent<ProfileInformationProps>;
1216
+ declare const _default$i: React__default.NamedExoticComponent<ProfileInformationProps>;
1216
1217
 
1217
1218
  type SpecialistMatchProps = {
1218
1219
  specialistFirstName?: string;
@@ -1224,7 +1225,7 @@ type SpecialistMatchProps = {
1224
1225
  howWeMatchThis: string;
1225
1226
  };
1226
1227
  } & React__default.HTMLAttributes<HTMLDivElement>;
1227
- declare const _default$g: React__default.NamedExoticComponent<SpecialistMatchProps>;
1228
+ declare const _default$h: React__default.NamedExoticComponent<SpecialistMatchProps>;
1228
1229
 
1229
1230
  type SpecialistStatisticProps = {
1230
1231
  learnMoreClick: () => void;
@@ -1244,7 +1245,7 @@ type SpecialistStatisticProps = {
1244
1245
  bookedSession: string;
1245
1246
  };
1246
1247
  } & React__default.HTMLAttributes<HTMLDivElement>;
1247
- declare const _default$f: React__default.NamedExoticComponent<SpecialistStatisticProps>;
1248
+ declare const _default$g: React__default.NamedExoticComponent<SpecialistStatisticProps>;
1248
1249
 
1249
1250
  type RatingWithLabelProps = {
1250
1251
  countOfReviews?: number;
@@ -1425,14 +1426,14 @@ type TypographyProps = {
1425
1426
  className?: string;
1426
1427
  children: React__default.ReactNode;
1427
1428
  };
1428
- declare const _default$e: React__default.NamedExoticComponent<TypographyProps>;
1429
+ declare const _default$f: React__default.NamedExoticComponent<TypographyProps>;
1429
1430
 
1430
1431
  type AppFooterProps = {
1431
1432
  children?: React__default.ReactNode;
1432
1433
  transparent?: boolean;
1433
1434
  bottomSaveArea?: boolean;
1434
1435
  };
1435
- declare const _default$d: React__default.NamedExoticComponent<AppFooterProps>;
1436
+ declare const _default$e: React__default.NamedExoticComponent<AppFooterProps>;
1436
1437
 
1437
1438
  type AvatarRoundVariants = 'circle' | 'drop';
1438
1439
 
@@ -1444,14 +1445,14 @@ type AvatarProps = {
1444
1445
  alt?: string;
1445
1446
  showSkeleton?: boolean;
1446
1447
  };
1447
- declare const _default$c: React__default.NamedExoticComponent<AvatarProps>;
1448
+ declare const _default$d: React__default.NamedExoticComponent<AvatarProps>;
1448
1449
 
1449
1450
  type SkeletonProps = {
1450
1451
  animated?: boolean;
1451
1452
  className?: string;
1452
1453
  style?: React__default.CSSProperties;
1453
1454
  };
1454
- declare const _default$b: React__default.NamedExoticComponent<SkeletonProps>;
1455
+ declare const _default$c: React__default.NamedExoticComponent<SkeletonProps>;
1455
1456
 
1456
1457
  type ButtonProps = {
1457
1458
  fill?: 'outline' | 'clear';
@@ -1484,7 +1485,7 @@ type FlagProps = {
1484
1485
  name: string;
1485
1486
  className?: string;
1486
1487
  };
1487
- declare const _default$a: React__default.NamedExoticComponent<FlagProps>;
1488
+ declare const _default$b: React__default.NamedExoticComponent<FlagProps>;
1488
1489
 
1489
1490
  type PictureProps = {
1490
1491
  width: number;
@@ -1499,7 +1500,7 @@ type PictureProps = {
1499
1500
  alt?: string;
1500
1501
  className?: string;
1501
1502
  };
1502
- declare const _default$9: React__default.NamedExoticComponent<PictureProps>;
1503
+ declare const _default$a: React__default.NamedExoticComponent<PictureProps>;
1503
1504
 
1504
1505
  type BadgeType = 'default' | 'accent';
1505
1506
  type BadgeVariants = 'attention' | 'neutral' | 'success' | 'warning' | 'brand' | 'info';
@@ -1509,7 +1510,15 @@ type BadgeProps = React.ComponentPropsWithoutRef<'span'> & {
1509
1510
  type?: BadgeType;
1510
1511
  };
1511
1512
 
1512
- declare const _default$8: React.NamedExoticComponent<BadgeProps>;
1513
+ declare const _default$9: React.NamedExoticComponent<BadgeProps>;
1514
+
1515
+ type ItemCardVariants = 'neutral';
1516
+ type ItemCardProps = React.ComponentPropsWithoutRef<'div'> & {
1517
+ variant: ItemCardVariants;
1518
+ size?: 'M';
1519
+ };
1520
+
1521
+ declare const _default$8: React.NamedExoticComponent<ItemCardProps>;
1513
1522
 
1514
1523
  type AppHeaderProps = {
1515
1524
  fullwidth?: boolean;
@@ -1590,6 +1599,76 @@ type RatingProps = {
1590
1599
 
1591
1600
  declare const _default$6: React__default.NamedExoticComponent<RatingProps>;
1592
1601
 
1602
+ declare enum CircleRatingSize {
1603
+ 'S' = "S",
1604
+ 'M' = "M",
1605
+ 'L' = "L"
1606
+ }
1607
+ type CircleRatingContent = {
1608
+ text?: string;
1609
+ isPercentage?: boolean;
1610
+ showIcon?: boolean;
1611
+ };
1612
+ type CircleRatingDataProps = {
1613
+ progress: number;
1614
+ size: keyof typeof CircleRatingSize;
1615
+ maxValue: number;
1616
+ isReverse?: boolean;
1617
+ };
1618
+ type CircleRatingDataResult = {
1619
+ circleSize: number;
1620
+ radius: number;
1621
+ circumference: number;
1622
+ dash: number;
1623
+ viewBox: string;
1624
+ strokeWidth: number;
1625
+ };
1626
+ type CircleRatingRange = {
1627
+ min: number | null;
1628
+ max: number | null;
1629
+ };
1630
+ type ProgressRangeProps = {
1631
+ progress: number;
1632
+ maxValue: number;
1633
+ ranges: CircleRatingRange[];
1634
+ isReverse?: boolean;
1635
+ };
1636
+ type BreakPointPositionResult = {
1637
+ top: number;
1638
+ left: number;
1639
+ };
1640
+ type CircleRatingComponentProps = {
1641
+ size: keyof typeof CircleRatingSize;
1642
+ content?: CircleRatingContent | null;
1643
+ progress: number;
1644
+ ranges: CircleRatingRange[];
1645
+ isColorless?: boolean;
1646
+ isRatingDisabled?: boolean;
1647
+ isShowLegend?: boolean;
1648
+ isShowBreakPoints?: boolean;
1649
+ isReverse?: boolean;
1650
+ isZeroTransparent?: boolean;
1651
+ };
1652
+ type CircleRatingContextProps = CircleRatingComponentProps & {
1653
+ legend?: string[];
1654
+ breakPoints?: number[];
1655
+ };
1656
+ type CircleRatingContextData = CircleRatingContextProps & {
1657
+ circleSize: number;
1658
+ radius: number;
1659
+ strokeWidth: number;
1660
+ circumference: number;
1661
+ dash: number;
1662
+ viewBox: string;
1663
+ maxValue: number;
1664
+ percentage: number;
1665
+ styles: any;
1666
+ };
1667
+
1668
+ declare const RatingCircleWrapper: FC<CircleRatingComponentProps & {
1669
+ t: WithTranslation | any;
1670
+ }>;
1671
+
1593
1672
  type IconButtonProps = {
1594
1673
  icon: JSX.Element;
1595
1674
  className?: string;
@@ -1667,6 +1746,13 @@ declare const ThemeProvider: FC<ThemeProviderProps>;
1667
1746
  declare const ToastContext: React.Context<ToastState<MindlyToastProps> | undefined>;
1668
1747
  declare function ToastProvider({ children, ...props }: React.PropsWithChildren<ToastProviderProps>): JSX.Element;
1669
1748
 
1749
+ declare const CircleRatingContext: React__default.Context<CircleRatingContextData>;
1750
+ declare const CircleRatingProvider: ({ children, data, t, }: {
1751
+ children: JSX.Element;
1752
+ data: CircleRatingContextProps;
1753
+ t: TFunction<react_i18next.FallbackNs<Ns>, KPrefix>;
1754
+ }) => JSX.Element | null;
1755
+
1670
1756
  declare function useDomRef<T extends HTMLElement = HTMLElement>(ref: React.RefObject<T | null> | React.ForwardedRef<T | null>): React.RefObject<T>;
1671
1757
 
1672
1758
  type AnyFunction = (...args: any[]) => any;
@@ -1683,126 +1769,151 @@ declare function useAutoFocus<T extends InputRefType>(): React.RefObject<T>;
1683
1769
 
1684
1770
  declare function useToastContext(): ToastState<MindlyToastProps>;
1685
1771
 
1686
- interface IconProps$l extends React.SVGAttributes<SVGElement> {
1772
+ declare const BREAKPOINT_ICON_SIZE = 20;
1773
+ declare function useCircleRatingRenderData({ progress, size, maxValue, isReverse, }: CircleRatingDataProps): CircleRatingDataResult;
1774
+ declare function useRangeIndex({ progress, maxValue, ranges, isReverse }: ProgressRangeProps): number;
1775
+ declare function getProgressForBreakPoint({ maxValue, breakPoint, }: {
1776
+ maxValue: number;
1777
+ breakPoint: number;
1778
+ }): number;
1779
+ declare function useBreakPointsPosition({ maxValue, breakPoints, radius, strokeWidth, }: {
1780
+ maxValue?: number;
1781
+ breakPoints?: number[];
1782
+ radius?: number;
1783
+ strokeWidth?: number;
1784
+ }): BreakPointPositionResult[];
1785
+ declare function useRatingCircleLegend({ ranges, t, isReverse }: {
1786
+ ranges: CircleRatingRange[];
1787
+ t: WithTranslation['t'];
1788
+ isReverse?: boolean;
1789
+ }): string[];
1790
+ declare function useRatingCircleBreakPoints({ ranges, maxValue, isReverse, }: {
1791
+ ranges: CircleRatingRange[];
1792
+ maxValue: number;
1793
+ isReverse?: boolean;
1794
+ }): number[];
1795
+ declare function useRatingContext(): CircleRatingContextData;
1796
+
1797
+ interface IconProps$p extends React.SVGAttributes<SVGElement> {
1687
1798
  size?: number | string;
1688
1799
  color?: string;
1689
1800
  }
1690
- declare function IconArrowLeft({ color, size, ...other }: IconProps$l): JSX.Element;
1801
+ declare function IconArrowLeft({ color, size, ...other }: IconProps$p): JSX.Element;
1691
1802
 
1692
- interface IconProps$k extends React.SVGAttributes<SVGElement> {
1803
+ interface IconProps$o extends React.SVGAttributes<SVGElement> {
1693
1804
  size?: number | string;
1694
1805
  color?: string;
1695
1806
  }
1696
- declare function IconArrowRight({ color, size, ...other }: IconProps$k): JSX.Element;
1807
+ declare function IconArrowRight({ color, size, ...other }: IconProps$o): JSX.Element;
1697
1808
 
1698
- interface IconProps$j extends React.SVGAttributes<SVGElement> {
1809
+ interface IconProps$n extends React.SVGAttributes<SVGElement> {
1699
1810
  size?: number | string;
1700
1811
  color?: string;
1701
1812
  }
1702
- declare function IconBeachAccess({ color, size, ...other }: IconProps$j): JSX.Element;
1813
+ declare function IconBeachAccess({ color, size, ...other }: IconProps$n): JSX.Element;
1703
1814
 
1704
- interface IconProps$i extends React.SVGAttributes<SVGElement> {
1815
+ interface IconProps$m extends React.SVGAttributes<SVGElement> {
1705
1816
  size?: number | string;
1706
1817
  color?: string;
1707
1818
  }
1708
- declare function IconCalendar({ color, size, ...other }: IconProps$i): JSX.Element;
1819
+ declare function IconCalendar({ color, size, ...other }: IconProps$m): JSX.Element;
1709
1820
 
1710
- interface IconProps$h extends React.SVGAttributes<SVGElement> {
1821
+ interface IconProps$l extends React.SVGAttributes<SVGElement> {
1711
1822
  size?: number | string;
1712
1823
  color?: string;
1713
1824
  }
1714
- declare function IconCalendarMonth({ color, size, ...other }: IconProps$h): JSX.Element;
1825
+ declare function IconCalendarMonth({ color, size, ...other }: IconProps$l): JSX.Element;
1715
1826
 
1716
- interface IconProps$g extends React.SVGAttributes<SVGElement> {
1827
+ interface IconProps$k extends React.SVGAttributes<SVGElement> {
1717
1828
  size?: number | string;
1718
1829
  color?: string;
1719
1830
  }
1720
- declare function IconChatOutline({ color, size, ...other }: IconProps$g): JSX.Element;
1831
+ declare function IconChatOutline({ color, size, ...other }: IconProps$k): JSX.Element;
1721
1832
 
1722
- interface IconProps$f extends React.SVGAttributes<SVGElement> {
1833
+ interface IconProps$j extends React.SVGAttributes<SVGElement> {
1723
1834
  size?: number | string;
1724
1835
  color?: string;
1725
1836
  }
1726
- declare function IconCheckboxChecked({ color, size, ...other }: IconProps$f): JSX.Element;
1837
+ declare function IconCheckboxChecked({ color, size, ...other }: IconProps$j): JSX.Element;
1727
1838
 
1728
- interface IconProps$e extends React.SVGAttributes<SVGElement> {
1839
+ interface IconProps$i extends React.SVGAttributes<SVGElement> {
1729
1840
  size?: number | string;
1730
1841
  color?: string;
1731
1842
  }
1732
- declare function IconCheckboxUnchecked({ color, size, ...other }: IconProps$e): JSX.Element;
1843
+ declare function IconCheckboxUnchecked({ color, size, ...other }: IconProps$i): JSX.Element;
1733
1844
 
1734
1845
  declare const IconClose: FC<React.SVGAttributes<SVGElement>>;
1735
1846
 
1736
- interface IconProps$d extends React.SVGAttributes<SVGElement> {
1847
+ interface IconProps$h extends React.SVGAttributes<SVGElement> {
1737
1848
  size?: number | string;
1738
1849
  color?: string;
1739
1850
  }
1740
- declare function IconEditCalendar({ color, size, ...props }: IconProps$d): JSX.Element;
1851
+ declare function IconEditCalendar({ color, size, ...props }: IconProps$h): JSX.Element;
1741
1852
 
1742
- interface IconProps$c extends React.SVGAttributes<SVGElement> {
1853
+ interface IconProps$g extends React.SVGAttributes<SVGElement> {
1743
1854
  size?: number | string;
1744
1855
  color?: string;
1745
1856
  }
1746
- declare function IconInvisible({ color, size, ...other }: IconProps$c): JSX.Element;
1857
+ declare function IconInvisible({ color, size, ...other }: IconProps$g): JSX.Element;
1747
1858
 
1748
- interface IconProps$b extends React.SVGAttributes<SVGElement> {
1859
+ interface IconProps$f extends React.SVGAttributes<SVGElement> {
1749
1860
  size?: number | string;
1750
1861
  color?: string;
1751
1862
  }
1752
- declare function IconLanguage({ color, size, ...other }: IconProps$b): JSX.Element;
1863
+ declare function IconLanguage({ color, size, ...other }: IconProps$f): JSX.Element;
1753
1864
 
1754
1865
  declare const IconLeftArrow: FC<React.SVGAttributes<SVGElement>>;
1755
1866
 
1756
- interface IconProps$a extends React.SVGAttributes<SVGElement> {
1867
+ interface IconProps$e extends React.SVGAttributes<SVGElement> {
1757
1868
  size?: number | string;
1758
1869
  color?: string;
1759
1870
  }
1760
- declare function IconLogout({ color, size, ...other }: IconProps$a): JSX.Element;
1871
+ declare function IconLogout({ color, size, ...other }: IconProps$e): JSX.Element;
1761
1872
 
1762
- interface IconProps$9 extends React.SVGAttributes<SVGElement> {
1873
+ interface IconProps$d extends React.SVGAttributes<SVGElement> {
1763
1874
  size?: number | string;
1764
1875
  color?: string;
1765
1876
  }
1766
- declare function IconPause({ color, size, ...other }: IconProps$9): JSX.Element;
1877
+ declare function IconPause({ color, size, ...other }: IconProps$d): JSX.Element;
1767
1878
 
1768
1879
  type IconPlusProps = React.SVGProps<any>;
1769
1880
  declare function IconPlus({ color, ...props }: IconPlusProps): JSX.Element;
1770
1881
 
1771
- interface IconProps$8 extends React.SVGAttributes<SVGElement> {
1882
+ interface IconProps$c extends React.SVGAttributes<SVGElement> {
1772
1883
  size?: number | string;
1773
1884
  color?: string;
1774
1885
  }
1775
- declare function IconProfileChecked({ color, size, ...other }: IconProps$8): JSX.Element;
1886
+ declare function IconProfileChecked({ color, size, ...other }: IconProps$c): JSX.Element;
1776
1887
 
1777
- interface IconProps$7 extends React.SVGAttributes<SVGElement> {
1888
+ interface IconProps$b extends React.SVGAttributes<SVGElement> {
1778
1889
  size?: number | string;
1779
1890
  color?: string;
1780
1891
  }
1781
- declare function IconProfileCircle({ color, size, ...other }: IconProps$7): JSX.Element;
1892
+ declare function IconProfileCircle({ color, size, ...other }: IconProps$b): JSX.Element;
1782
1893
 
1783
- interface IconProps$6 extends React.SVGAttributes<SVGElement> {
1894
+ interface IconProps$a extends React.SVGAttributes<SVGElement> {
1784
1895
  size?: number | string;
1785
1896
  color?: string;
1786
1897
  }
1787
- declare function IconProfileSetting({ color, size, ...other }: IconProps$6): JSX.Element;
1898
+ declare function IconProfileSetting({ color, size, ...other }: IconProps$a): JSX.Element;
1788
1899
 
1789
- interface IconProps$5 extends React.SVGAttributes<SVGElement> {
1900
+ interface IconProps$9 extends React.SVGAttributes<SVGElement> {
1790
1901
  size?: number | string;
1791
1902
  color?: string;
1792
1903
  }
1793
- declare function IconProfileUnderReview({ color, size, ...other }: IconProps$5): JSX.Element;
1904
+ declare function IconProfileUnderReview({ color, size, ...other }: IconProps$9): JSX.Element;
1794
1905
 
1795
- interface IconProps$4 extends React.SVGAttributes<SVGElement> {
1906
+ interface IconProps$8 extends React.SVGAttributes<SVGElement> {
1796
1907
  size?: number | string;
1797
1908
  color?: string;
1798
1909
  }
1799
- declare function IconResume({ color, size, ...other }: IconProps$4): JSX.Element;
1910
+ declare function IconResume({ color, size, ...other }: IconProps$8): JSX.Element;
1800
1911
 
1801
- interface IconProps$3 extends React.SVGAttributes<SVGElement> {
1912
+ interface IconProps$7 extends React.SVGAttributes<SVGElement> {
1802
1913
  size?: number | string;
1803
1914
  color?: string;
1804
1915
  }
1805
- declare function IconSettings({ color, size, ...other }: IconProps$3): JSX.Element;
1916
+ declare function IconSettings({ color, size, ...other }: IconProps$7): JSX.Element;
1806
1917
 
1807
1918
  declare const IconStar: FC<React.SVGAttributes<SVGElement>>;
1808
1919
 
@@ -1810,23 +1921,23 @@ declare const IconStarFilled: FC<React.SVGAttributes<SVGElement>>;
1810
1921
 
1811
1922
  declare const IconSuccess: FC<React.SVGAttributes<SVGElement>>;
1812
1923
 
1813
- interface IconProps$2 extends React.SVGAttributes<SVGElement> {
1924
+ interface IconProps$6 extends React.SVGAttributes<SVGElement> {
1814
1925
  size?: number | string;
1815
1926
  color?: string;
1816
1927
  }
1817
- declare function IconTime({ color, size, ...other }: IconProps$2): JSX.Element;
1928
+ declare function IconTime({ color, size, ...other }: IconProps$6): JSX.Element;
1818
1929
 
1819
- interface IconProps$1 extends React.SVGAttributes<SVGElement> {
1930
+ interface IconProps$5 extends React.SVGAttributes<SVGElement> {
1820
1931
  size?: number | string;
1821
1932
  color?: string;
1822
1933
  }
1823
- declare function IconVerifiedUser({ color, size, ...other }: IconProps$1): JSX.Element;
1934
+ declare function IconVerifiedUser({ color, size, ...other }: IconProps$5): JSX.Element;
1824
1935
 
1825
- interface IconProps extends React.SVGAttributes<SVGElement> {
1936
+ interface IconProps$4 extends React.SVGAttributes<SVGElement> {
1826
1937
  size?: number | string;
1827
1938
  color?: string;
1828
1939
  }
1829
- declare function IconVisible({ color, size, ...other }: IconProps): JSX.Element;
1940
+ declare function IconVisible({ color, size, ...other }: IconProps$4): JSX.Element;
1830
1941
 
1831
1942
  declare const IconApple: FC<React.SVGAttributes<SVGElement>>;
1832
1943
 
@@ -1840,6 +1951,12 @@ declare const IconEye: FC<React.SVGAttributes<SVGElement>>;
1840
1951
 
1841
1952
  declare const IconEyeOff: FC<React.SVGAttributes<SVGElement>>;
1842
1953
 
1954
+ interface IconProps$3 extends React.SVGAttributes<SVGElement> {
1955
+ size?: number | string;
1956
+ color?: string;
1957
+ }
1958
+ declare function IconWarning({ color, size, ...other }: IconProps$3): JSX.Element;
1959
+
1843
1960
  declare const IconGift: React.FC<React.SVGAttributes<SVGElement>>;
1844
1961
 
1845
1962
  declare const IconCreditCard: React.FC<React.SVGAttributes<SVGElement>>;
@@ -1854,6 +1971,30 @@ declare const IconNotificationMuted: (props: SVGProps<SVGSVGElement>) => JSX.Ele
1854
1971
 
1855
1972
  declare const IconCheckSmall: React.FC<React.SVGAttributes<SVGElement>>;
1856
1973
 
1974
+ interface IconProps$2 extends React.SVGAttributes<SVGElement> {
1975
+ size?: number | string;
1976
+ color?: string;
1977
+ className?: string;
1978
+ style?: React.CSSProperties;
1979
+ }
1980
+ declare function IconCheck({ color, size, ...other }: IconProps$2): JSX.Element;
1981
+
1982
+ interface IconProps$1 extends React.SVGAttributes<SVGElement> {
1983
+ size?: number | string;
1984
+ color?: string;
1985
+ className?: string;
1986
+ style?: React.CSSProperties;
1987
+ }
1988
+ declare const IconCapFilled: FC<IconProps$1>;
1989
+
1990
+ interface IconProps extends React.SVGAttributes<SVGElement> {
1991
+ size?: number | string;
1992
+ color?: string;
1993
+ className?: string;
1994
+ style?: React.CSSProperties;
1995
+ }
1996
+ declare const IconCancelRounded: FC<IconProps>;
1997
+
1857
1998
  type AnyRef = React__default.Ref<any>;
1858
1999
  declare const mergeRefs: <T extends unknown>(...refs: AnyRef[]) => React__default.Ref<T>;
1859
2000
 
@@ -1939,4 +2080,4 @@ type PushNotificationsIsDisabledBannerProps = {
1939
2080
 
1940
2081
  declare function PushNotificationsIsDisabledBanner({ onOpenNativeSettings, className, title, description, buttonText, }: PushNotificationsIsDisabledBannerProps): JSX.Element;
1941
2082
 
1942
- export { AppFooter, _default$d as AppFooter_v2, AppHeader, AppHeader_v2, ArchivedConsultationCard, Avatar, AvatarProps$1 as AvatarProps, _default$c as Avatar_v2, _default$8 as Badge, _default$r as BookingScheduleTime, _default$q as BookingSpecialistInfo, Button, Button_v2, Calendar, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$M as ChatListItem, _default$K as ChatListSkeleton, _default$L as ChatMessage, ChatMessageSkeleton, _default$l as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, _default$D as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$A as ConsultationModal, _default$y as ConsultationSpecialistCard, Container, Container_v2, ContentCard, CountryOfOriginModal, CustomButton, _default$m as CustomCheckbox, CustomRadioButton, _default$n as CustomSelect, _default$o as CustomTextarea, DatePicker, _default$w as DaySlider, DayToRender, _default$s as EducationCard, _default$J as EmptyChatList, EmptyChatMessages, _default$B as EmptyConsultations, EntryNotFound, EntryNotFoundProps, _default$i as Flag, FlagTypes, _default$a as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconApple, IconArrowLeft, IconArrowRight, IconBeachAccess, _default$5 as IconButton, IconCalendar, IconCalendarMonth, IconChat3d, IconChatOutline, IconCheckSmall, IconCheckboxChecked, IconCheckboxUnchecked, IconClose, IconCreditCard, IconEditCalendar, IconEye, IconEyeOff, IconGift, IconGoogle, IconInvisible, IconLanguage, IconLeftArrow, IconLetter, IconLogout, IconNotificationMuted, IconPaper, IconPause, IconPlus, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconQuestion, IconResume, IconSettings, IconSpinner, IconStar, IconStarFilled, IconSuccess, IconTime, IconVerifiedUser, IconVisible, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, LanguagesList, _default$Q as LetterAvatar, _default$j as LineFileInput, ListBox, ListBoxItem, ListButton, _default$1 as ListItem, ListItemType, _default$2 as ListItems, ListOption, ListSelect, ListSelectProps, _default$3 as Loading, LouseConnect, _default$N as MediaPlayer, Modal, ModalCalendar, ModalSheet, NavigationBar, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, PasswordInput, _default$P as PersonDateTimeCard, _default$9 as Picture, _default$h as ProfileInformation, _default$u as ProfileView, _default$k as ProgressBar, _default$4 as ProgressBar_v2, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$6 as Rating, _default$x as ReSchedule, ReScheduleSuccess, Refresher, ReviewCard, ReviewStatistics, ReviewSwiperSection, RoundButton, RowItemType, RowSelect, RowSelectProps, ScreenInput, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$O as SelectImpressionEmoji, _default$C as SignUpSessionButton, _default$z as SignUpSessionModal, Skeleton, _default$b as Skeleton_v2, _default as SlotsGrid, _default$t as SpecialistAbout, SpecialistCard, _default$H as SpecialistEducationCard, SpecialistLangs, _default$g as SpecialistMatch, _default$G as SpecialistProfileViewCard, _default$f as SpecialistStatistic, SpecialistStatisticsCard, SpecialistWorkDirections, Spinner, Spinner_v2, StarRating, StatisticsScroll, StatusTag, SuccessScreen, SwitchDeviceCard, TabBar, Tag, _default$p as TextInput, _default$I as Textarea, _default$7 as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, _default$e as Typography, TypographyVariantsEnum, UpdatesCard, UserInfoModal, UsersPsychologistScrollList, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$E as VideoCallInfo, _default$F as VideoPlayer, _default$v as WorkDirections, YourLocalTimeBlock, appThemes, decOfNum, mergeRefs, toast, useAutoFocus, useDomRef, useEvent, useToastContext };
2083
+ export { AppFooter, _default$e as AppFooter_v2, AppHeader, AppHeader_v2, ArchivedConsultationCard, Avatar, AvatarProps$1 as AvatarProps, _default$d as Avatar_v2, BREAKPOINT_ICON_SIZE, _default$9 as Badge, _default$s as BookingScheduleTime, _default$r as BookingSpecialistInfo, Button, Button_v2, Calendar, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$N as ChatListItem, _default$L as ChatListSkeleton, _default$M as ChatMessage, ChatMessageSkeleton, _default$m as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingContext, CircleRatingProvider, _default$E as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$B as ConsultationModal, _default$z as ConsultationSpecialistCard, Container, Container_v2, ContentCard, CountryOfOriginModal, CustomButton, _default$n as CustomCheckbox, CustomRadioButton, _default$o as CustomSelect, _default$p as CustomTextarea, DatePicker, _default$x as DaySlider, DayToRender, _default$t as EducationCard, _default$K as EmptyChatList, EmptyChatMessages, _default$C as EmptyConsultations, EntryNotFound, EntryNotFoundProps, _default$j as Flag, FlagTypes, _default$b as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconApple, IconArrowLeft, IconArrowRight, IconBeachAccess, _default$5 as IconButton, IconCalendar, IconCalendarMonth, IconCancelRounded, IconCapFilled, IconChat3d, IconChatOutline, IconCheck, IconCheckSmall, IconCheckboxChecked, IconCheckboxUnchecked, IconClose, IconCreditCard, IconEditCalendar, IconEye, IconEyeOff, IconGift, IconGoogle, IconInvisible, IconLanguage, IconLeftArrow, IconLetter, IconLogout, IconNotificationMuted, IconPaper, IconPause, IconPlus, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconQuestion, IconResume, IconSettings, IconSpinner, IconStar, IconStarFilled, IconSuccess, IconTime, IconVerifiedUser, IconVisible, IconWarning, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, _default$8 as ItemCard, LanguagesList, _default$R as LetterAvatar, _default$k as LineFileInput, ListBox, ListBoxItem, ListButton, _default$1 as ListItem, ListItemType, _default$2 as ListItems, ListOption, ListSelect, ListSelectProps, _default$3 as Loading, LouseConnect, _default$O as MediaPlayer, Modal, ModalCalendar, ModalSheet, NavigationBar, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, PasswordInput, _default$Q as PersonDateTimeCard, _default$a as Picture, _default$i as ProfileInformation, _default$v as ProfileView, _default$l as ProgressBar, _default$4 as ProgressBar_v2, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$6 as Rating, RatingCircleWrapper, _default$y as ReSchedule, ReScheduleSuccess, Refresher, ReviewCard, ReviewStatistics, ReviewSwiperSection, RoundButton, RowItemType, RowSelect, RowSelectProps, ScreenInput, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$P as SelectImpressionEmoji, _default$D as SignUpSessionButton, _default$A as SignUpSessionModal, Skeleton, _default$c as Skeleton_v2, _default as SlotsGrid, _default$u as SpecialistAbout, SpecialistCard, _default$I as SpecialistEducationCard, SpecialistLangs, _default$h as SpecialistMatch, _default$H as SpecialistProfileViewCard, _default$g as SpecialistStatistic, SpecialistStatisticsCard, SpecialistWorkDirections, Spinner, Spinner_v2, StarRating, StatisticsScroll, StatusTag, SuccessScreen, SwitchDeviceCard, TabBar, Tag, _default$q as TextInput, _default$J as Textarea, _default$7 as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, _default$f as Typography, TypographyVariantsEnum, UpdatesCard, UserInfoModal, UsersPsychologistScrollList, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$F as VideoCallInfo, _default$G as VideoPlayer, _default$w as WorkDirections, YourLocalTimeBlock, appThemes, decOfNum, getProgressForBreakPoint, mergeRefs, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDomRef, useEvent, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleLegend, useRatingContext, useToastContext };