@mindly/ui-components 5.74.1 → 5.75.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.
@@ -0,0 +1,16 @@
1
+ import React from 'react';
2
+ import { Selection } from 'react-stately';
3
+ import { WithTranslation } from 'react-i18next';
4
+ type SelectWithSearchFormFeatureProps = {
5
+ title?: string;
6
+ subTitle?: string;
7
+ items: string[];
8
+ defaultItems: string[];
9
+ selectedItems?: Selection;
10
+ onChange?: (value: string) => void;
11
+ isLoading?: boolean;
12
+ otherText?: string;
13
+ buttonLabel?: string;
14
+ } & WithTranslation;
15
+ declare const _default: React.NamedExoticComponent<SelectWithSearchFormFeatureProps>;
16
+ export default _default;
@@ -0,0 +1 @@
1
+ export { default as SelectWithSearchFormFeature } from './SelectWithSearchFormFeature';
@@ -26,3 +26,4 @@ export * from './ScreenInputFormFeature';
26
26
  export * from './ScreenDrumPickerFormFeature';
27
27
  export * from './TextAreaFormFeature';
28
28
  export * from './AcceptAgreementFeature';
29
+ export * from './SelectWithSearchFormFeature';
package/dist/index.d.ts CHANGED
@@ -7,7 +7,7 @@ import { RatingComponentProps } from 'react-rating';
7
7
  import { RefresherEventDetail, ScrollDetail, ScrollBaseDetail } from '@ionic/react';
8
8
  import * as _ionic_core_dist_types_components from '@ionic/core/dist/types/components';
9
9
  import { IonContentCustomEvent, IonSearchbarCustomEvent as IonSearchbarCustomEvent$1 } from '@ionic/core/dist/types/components';
10
- import { Node, ListState, ItemProps as ItemProps$1, SelectionBehavior, SelectionMode } from 'react-stately';
10
+ import { Node, ListState, ItemProps as ItemProps$1, SelectionBehavior, SelectionMode, Selection } from 'react-stately';
11
11
  export { Selection } from 'react-stately';
12
12
  import { AriaListBoxProps, AriaCalendarProps, DateValue, AriaTabListProps } from 'react-aria';
13
13
  import { ToastStateProps, ToastState } from '@react-stately/toast';
@@ -224,7 +224,7 @@ type LetterAvatarProps = {
224
224
  fontSize?: number;
225
225
  onClick?: () => void;
226
226
  };
227
- declare const _default$14: React__default.NamedExoticComponent<LetterAvatarProps>;
227
+ declare const _default$15: React__default.NamedExoticComponent<LetterAvatarProps>;
228
228
 
229
229
  type ImageWithFallbackProps = JSX.IntrinsicElements['img'] & {
230
230
  onErrorContent: React__default.ReactElement;
@@ -236,7 +236,7 @@ type PersonDateTimeCardProps = {
236
236
  name: string;
237
237
  dateTime: Date;
238
238
  };
239
- declare const _default$13: React__default.NamedExoticComponent<PersonDateTimeCardProps>;
239
+ declare const _default$14: React__default.NamedExoticComponent<PersonDateTimeCardProps>;
240
240
 
241
241
  type PsychologistProfileType = {
242
242
  id: string;
@@ -402,7 +402,7 @@ type SelectImpressionEmojiProps = {
402
402
  onChange?: (val: ImpressionEmojiEnum) => void;
403
403
  };
404
404
 
405
- declare const _default$12: React__default.NamedExoticComponent<SelectImpressionEmojiProps>;
405
+ declare const _default$13: React__default.NamedExoticComponent<SelectImpressionEmojiProps>;
406
406
 
407
407
  interface FooterForBookingProps {
408
408
  eventHandler: (props?: React__default.SyntheticEvent) => void;
@@ -434,7 +434,7 @@ type MediaPlayerProps<TCameraTrack extends Playable | undefined, TAudioTrack ext
434
434
  showControls: boolean;
435
435
  isScreenSharing?: boolean;
436
436
  } & HTMLAttributes<HTMLDivElement>;
437
- declare const _default$11: <TCameraTrack extends Playable | undefined, TAudioTrack extends Playable | undefined>({ fullwidth, cameraTrack, audioTrack, isVideoTrackMuted, isAudioTrackMuted, networkQuality, fallbackAvatar, fallbackAvatarDimensions, fallbackName, showControls, isScreenSharing, ...props }: MediaPlayerProps<TCameraTrack, TAudioTrack>) => JSX.Element;
437
+ declare const _default$12: <TCameraTrack extends Playable | undefined, TAudioTrack extends Playable | undefined>({ fullwidth, cameraTrack, audioTrack, isVideoTrackMuted, isAudioTrackMuted, networkQuality, fallbackAvatar, fallbackAvatarDimensions, fallbackName, showControls, isScreenSharing, ...props }: MediaPlayerProps<TCameraTrack, TAudioTrack>) => JSX.Element;
438
438
 
439
439
  type RoundButtonPropsType = {
440
440
  disabled?: boolean;
@@ -463,7 +463,7 @@ type ChatListItemProps = {
463
463
  isDisabled?: boolean;
464
464
  t?: WithTranslation['t'];
465
465
  };
466
- declare const _default$10: React__default.NamedExoticComponent<ChatListItemProps>;
466
+ declare const _default$11: React__default.NamedExoticComponent<ChatListItemProps>;
467
467
 
468
468
  type ChatMessageProps = {
469
469
  message: string | File;
@@ -491,11 +491,11 @@ type ChatMessageProps = {
491
491
  onClickHandler: () => void;
492
492
  }[] | null;
493
493
  };
494
- declare const _default$$: React__default.NamedExoticComponent<ChatMessageProps>;
494
+ declare const _default$10: React__default.NamedExoticComponent<ChatMessageProps>;
495
495
 
496
496
  declare const ChatMessageSkeleton: () => JSX.Element;
497
497
 
498
- declare const _default$_: React__default.MemoExoticComponent<() => JSX.Element>;
498
+ declare const _default$$: React__default.MemoExoticComponent<() => JSX.Element>;
499
499
 
500
500
  type EmptyChatList = {
501
501
  title?: string;
@@ -505,7 +505,7 @@ type EmptyChatList = {
505
505
  onClick?: () => void;
506
506
  };
507
507
  declare const EmptyChatList: FC<EmptyChatList>;
508
- declare const _default$Z: React__default.NamedExoticComponent<EmptyChatList>;
508
+ declare const _default$_: React__default.NamedExoticComponent<EmptyChatList>;
509
509
 
510
510
  type EmptyChatMessagesProps = {
511
511
  title?: string;
@@ -530,7 +530,7 @@ type TextareaProps = {
530
530
  onFileSelect?: (file: File | null, type: 'file' | 'image' | 'video', fileInfo: FileInfoType) => void;
531
531
  t?: WithTranslation['t'];
532
532
  };
533
- declare const _default$Y: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TextareaProps & React__default.RefAttributes<HTMLIonFooterElement>>>;
533
+ declare const _default$Z: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TextareaProps & React__default.RefAttributes<HTMLIonFooterElement>>>;
534
534
 
535
535
  type LouseConnectProps = {
536
536
  onClick?: () => void;
@@ -609,7 +609,7 @@ type SpecialistEducationCardProps$1 = {
609
609
  yearEnd?: number | null;
610
610
  showLoader?: boolean;
611
611
  };
612
- declare const _default$X: React__default.NamedExoticComponent<SpecialistEducationCardProps$1>;
612
+ declare const _default$Y: React__default.NamedExoticComponent<SpecialistEducationCardProps$1>;
613
613
 
614
614
  type SpecialistProfileViewCardProps$1 = {
615
615
  avatarLink?: string | null;
@@ -622,7 +622,7 @@ type SpecialistProfileViewCardProps$1 = {
622
622
  videoLinkUrl?: string | null;
623
623
  showLoader?: boolean;
624
624
  } & React__default.DetailedHTMLProps<React__default.HTMLAttributes<HTMLDivElement>, HTMLDivElement>;
625
- declare const _default$W: React__default.NamedExoticComponent<SpecialistProfileViewCardProps$1>;
625
+ declare const _default$X: React__default.NamedExoticComponent<SpecialistProfileViewCardProps$1>;
626
626
 
627
627
  type SpecialistStatisticsCardProps$1 = {
628
628
  activeClients?: number;
@@ -658,7 +658,7 @@ type VideoPlayerProps = {
658
658
  closeModalHandler?: () => void;
659
659
  onErrorContent: React__default.ReactElement;
660
660
  } & JSX$1.IonModal;
661
- declare const _default$V: React__default.NamedExoticComponent<VideoPlayerProps>;
661
+ declare const _default$W: React__default.NamedExoticComponent<VideoPlayerProps>;
662
662
 
663
663
  type NotSupportModalProps = {
664
664
  closeModal?: () => void;
@@ -694,7 +694,7 @@ type VideoCallInfoProps = {
694
694
  abbreviatedSeconds: string;
695
695
  };
696
696
  };
697
- declare const _default$U: React__default.NamedExoticComponent<VideoCallInfoProps>;
697
+ declare const _default$V: React__default.NamedExoticComponent<VideoCallInfoProps>;
698
698
 
699
699
  declare enum ConsultationCardType {
700
700
  FEATURE = "feature",
@@ -729,14 +729,14 @@ type ConsultationCardProps = {
729
729
  };
730
730
  };
731
731
 
732
- declare const _default$T: React__default.NamedExoticComponent<ConsultationCardProps>;
732
+ declare const _default$U: React__default.NamedExoticComponent<ConsultationCardProps>;
733
733
 
734
734
  type SignUpSessionButtonProps = {
735
735
  label: string;
736
736
  isLoading?: boolean;
737
737
  onClick?: () => void;
738
738
  };
739
- declare const _default$S: React__default.NamedExoticComponent<SignUpSessionButtonProps>;
739
+ declare const _default$T: React__default.NamedExoticComponent<SignUpSessionButtonProps>;
740
740
 
741
741
  type EmptyConsultationsProps = {
742
742
  title: string;
@@ -744,7 +744,7 @@ type EmptyConsultationsProps = {
744
744
  buttonLabel?: string;
745
745
  onClick?: () => void;
746
746
  };
747
- declare const _default$R: React__default.NamedExoticComponent<EmptyConsultationsProps>;
747
+ declare const _default$S: React__default.NamedExoticComponent<EmptyConsultationsProps>;
748
748
 
749
749
  type ConsultationModalProps = {
750
750
  isOpen: boolean;
@@ -779,7 +779,7 @@ type ConsultationModalProps = {
779
779
  started?: string;
780
780
  };
781
781
  };
782
- declare const _default$Q: React__default.NamedExoticComponent<ConsultationModalProps>;
782
+ declare const _default$R: React__default.NamedExoticComponent<ConsultationModalProps>;
783
783
 
784
784
  type SpecialistData = {
785
785
  id: string;
@@ -796,7 +796,7 @@ type SignUpSessionModalProps = {
796
796
  title: string;
797
797
  cancelBtnLabel: string;
798
798
  };
799
- declare const _default$P: React__default.NamedExoticComponent<SignUpSessionModalProps>;
799
+ declare const _default$Q: React__default.NamedExoticComponent<SignUpSessionModalProps>;
800
800
 
801
801
  type ConsultationSpecialistCardProps = {
802
802
  id: string;
@@ -807,7 +807,7 @@ type ConsultationSpecialistCardProps = {
807
807
  onSignUp?: (id: string) => void;
808
808
  signInBtnLabel: string;
809
809
  };
810
- declare const _default$O: React__default.NamedExoticComponent<ConsultationSpecialistCardProps>;
810
+ declare const _default$P: React__default.NamedExoticComponent<ConsultationSpecialistCardProps>;
811
811
 
812
812
  type UserInfoModalProps = {
813
813
  isOpen: boolean;
@@ -878,7 +878,7 @@ type ReScheduleProps = {
878
878
  btnLabel: string;
879
879
  };
880
880
  };
881
- declare const _default$N: React__default.NamedExoticComponent<ReScheduleProps>;
881
+ declare const _default$O: React__default.NamedExoticComponent<ReScheduleProps>;
882
882
 
883
883
  type ReScheduleSuccessProps = {
884
884
  name: string;
@@ -916,7 +916,7 @@ type DaySliderProps = JSX$1.IonSlides & HTMLAttributes<HTMLIonSlidesElement> & R
916
916
  tomorrow?: string;
917
917
  };
918
918
  };
919
- declare const _default$M: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<DaySliderProps, "ref"> & React__default.RefAttributes<HTMLIonSlidesElement>>>;
919
+ declare const _default$N: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<DaySliderProps, "ref"> & React__default.RefAttributes<HTMLIonSlidesElement>>>;
920
920
 
921
921
  type SpecialistWorkDirectionsPropsType = {
922
922
  workDirections?: string[] | [];
@@ -925,7 +925,7 @@ type SpecialistWorkDirectionsPropsType = {
925
925
  moreLabel?: string;
926
926
  hideLabel?: string;
927
927
  };
928
- declare const _default$L: React__default.NamedExoticComponent<SpecialistWorkDirectionsPropsType>;
928
+ declare const _default$M: React__default.NamedExoticComponent<SpecialistWorkDirectionsPropsType>;
929
929
 
930
930
  type SpecialistProfileViewCardProps = {
931
931
  videoLink?: string;
@@ -935,7 +935,7 @@ type SpecialistProfileViewCardProps = {
935
935
  isLoading?: boolean;
936
936
  videoDurationSeconds?: number;
937
937
  };
938
- declare const _default$K: React__default.NamedExoticComponent<SpecialistProfileViewCardProps>;
938
+ declare const _default$L: React__default.NamedExoticComponent<SpecialistProfileViewCardProps>;
939
939
 
940
940
  type SpecialistAboutProps = {
941
941
  text?: string;
@@ -944,7 +944,7 @@ type SpecialistAboutProps = {
944
944
  moreLabel?: string;
945
945
  hideLabel?: string;
946
946
  };
947
- declare const _default$J: React__default.NamedExoticComponent<SpecialistAboutProps>;
947
+ declare const _default$K: React__default.NamedExoticComponent<SpecialistAboutProps>;
948
948
 
949
949
  type SpecialistEducationCardProps = {
950
950
  institutionName?: string;
@@ -955,7 +955,7 @@ type SpecialistEducationCardProps = {
955
955
  yearEnd?: number | null;
956
956
  showLoader?: boolean;
957
957
  };
958
- declare const _default$I: React__default.NamedExoticComponent<SpecialistEducationCardProps>;
958
+ declare const _default$J: React__default.NamedExoticComponent<SpecialistEducationCardProps>;
959
959
 
960
960
  type SpecialistStatisticsCardProps = {
961
961
  trust?: boolean;
@@ -1001,7 +1001,7 @@ type BookingScheduleTimeProps = {
1001
1001
  onClick?: (index: number, item: string) => void;
1002
1002
  isLoading?: boolean;
1003
1003
  };
1004
- declare const _default$H: React__default.NamedExoticComponent<BookingScheduleTimeProps>;
1004
+ declare const _default$I: React__default.NamedExoticComponent<BookingScheduleTimeProps>;
1005
1005
 
1006
1006
  type BookingSpecialistInfoProps = {
1007
1007
  name: string;
@@ -1010,7 +1010,7 @@ type BookingSpecialistInfoProps = {
1010
1010
  avatar?: string;
1011
1011
  isLoading?: boolean;
1012
1012
  };
1013
- declare const _default$G: React__default.NamedExoticComponent<BookingSpecialistInfoProps>;
1013
+ declare const _default$H: React__default.NamedExoticComponent<BookingSpecialistInfoProps>;
1014
1014
 
1015
1015
  type SpecialistCardProps = {
1016
1016
  fullName?: string;
@@ -1059,7 +1059,7 @@ type SpecialistCardProps = {
1059
1059
  };
1060
1060
  declare const SpecialistCard$1: React__default.FC<SpecialistCardProps>;
1061
1061
 
1062
- declare const _default$F: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
1062
+ declare const _default$G: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
1063
1063
  isError?: boolean | undefined;
1064
1064
  errorStyle?: "filled" | "unfilled" | undefined;
1065
1065
  type?: "number" | "text" | "email" | undefined;
@@ -1083,11 +1083,11 @@ declare const PasswordInput: React__default.ForwardRefExoticComponent<{
1083
1083
  error?: string | null | undefined;
1084
1084
  } & Omit<React__default.InputHTMLAttributes<HTMLInputElement>, "type"> & React__default.RefAttributes<HTMLInputElement>>;
1085
1085
 
1086
- declare const _default$E: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
1086
+ declare const _default$F: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
1087
1087
  isError?: boolean | undefined;
1088
1088
  } & React__default.TextareaHTMLAttributes<HTMLTextAreaElement> & React__default.RefAttributes<HTMLTextAreaElement>>>;
1089
1089
 
1090
- declare const _default$D: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
1090
+ declare const _default$E: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
1091
1091
  options: {
1092
1092
  id: string | number;
1093
1093
  label: string | number;
@@ -1119,7 +1119,7 @@ type CustomCheckboxProps = {
1119
1119
  isCheckbox?: boolean;
1120
1120
  onChange?: (e: ChangeEvent<HTMLInputElement>) => void;
1121
1121
  };
1122
- declare const _default$C: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<CustomCheckboxProps & React__default.RefAttributes<HTMLInputElement>>>;
1122
+ declare const _default$D: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<CustomCheckboxProps & React__default.RefAttributes<HTMLInputElement>>>;
1123
1123
 
1124
1124
  type CheckboxListItem = {
1125
1125
  id: ReactText;
@@ -1147,7 +1147,7 @@ type CheckboxListProps = {
1147
1147
  from: string;
1148
1148
  };
1149
1149
  };
1150
- declare const _default$B: React__default.NamedExoticComponent<CheckboxListProps>;
1150
+ declare const _default$C: React__default.NamedExoticComponent<CheckboxListProps>;
1151
1151
 
1152
1152
  type BookingHeaderProps = {
1153
1153
  title?: string;
@@ -1161,9 +1161,9 @@ type ProgressBarProps = {
1161
1161
  progress: number;
1162
1162
  loaderTitle?: string;
1163
1163
  };
1164
- declare const _default$A: React__default.NamedExoticComponent<ProgressBarProps>;
1164
+ declare const _default$B: React__default.NamedExoticComponent<ProgressBarProps>;
1165
1165
 
1166
- declare const _default$z: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
1166
+ declare const _default$A: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
1167
1167
  title: string;
1168
1168
  subTitle?: string | undefined;
1169
1169
  isError?: boolean | undefined;
@@ -1195,7 +1195,7 @@ type FlagProps$1 = {
1195
1195
  dimensions?: number;
1196
1196
  className?: string;
1197
1197
  };
1198
- declare const _default$y: React__default.NamedExoticComponent<FlagProps$1>;
1198
+ declare const _default$z: React__default.NamedExoticComponent<FlagProps$1>;
1199
1199
 
1200
1200
  type SpecialistLangsProps = {
1201
1201
  showLoader?: boolean;
@@ -1235,7 +1235,7 @@ type ProfileInformationProps = {
1235
1235
  reviews: string[];
1236
1236
  };
1237
1237
  } & React__default.HTMLAttributes<HTMLDivElement>;
1238
- declare const _default$x: React__default.NamedExoticComponent<ProfileInformationProps>;
1238
+ declare const _default$y: React__default.NamedExoticComponent<ProfileInformationProps>;
1239
1239
 
1240
1240
  type SpecialistMatchProps = {
1241
1241
  specialistFirstName?: string;
@@ -1247,7 +1247,7 @@ type SpecialistMatchProps = {
1247
1247
  howWeMatchThis: string;
1248
1248
  };
1249
1249
  } & React__default.HTMLAttributes<HTMLDivElement>;
1250
- declare const _default$w: React__default.NamedExoticComponent<SpecialistMatchProps>;
1250
+ declare const _default$x: React__default.NamedExoticComponent<SpecialistMatchProps>;
1251
1251
 
1252
1252
  type SpecialistStatisticProps = {
1253
1253
  learnMoreClick: () => void;
@@ -1267,7 +1267,7 @@ type SpecialistStatisticProps = {
1267
1267
  bookedSession: string;
1268
1268
  };
1269
1269
  } & React__default.HTMLAttributes<HTMLDivElement>;
1270
- declare const _default$v: React__default.NamedExoticComponent<SpecialistStatisticProps>;
1270
+ declare const _default$w: React__default.NamedExoticComponent<SpecialistStatisticProps>;
1271
1271
 
1272
1272
  type RatingWithLabelProps = {
1273
1273
  countOfReviews?: number;
@@ -1458,7 +1458,7 @@ type TypographyProps = {
1458
1458
  onClick?: (args: any) => typeof args;
1459
1459
  isError?: boolean;
1460
1460
  };
1461
- declare const _default$u: React__default.NamedExoticComponent<TypographyProps>;
1461
+ declare const _default$v: React__default.NamedExoticComponent<TypographyProps>;
1462
1462
 
1463
1463
  type AppFooterProps = {
1464
1464
  children?: React__default.ReactNode;
@@ -1468,7 +1468,7 @@ type AppFooterProps = {
1468
1468
  style?: CSSProperties;
1469
1469
  toolbarStyle?: CSSProperties;
1470
1470
  };
1471
- declare const _default$t: React__default.NamedExoticComponent<AppFooterProps>;
1471
+ declare const _default$u: React__default.NamedExoticComponent<AppFooterProps>;
1472
1472
 
1473
1473
  type AvatarRoundVariants = 'circle' | 'drop';
1474
1474
 
@@ -1480,14 +1480,14 @@ type AvatarProps = {
1480
1480
  alt?: string;
1481
1481
  showSkeleton?: boolean;
1482
1482
  };
1483
- declare const _default$s: React__default.NamedExoticComponent<AvatarProps>;
1483
+ declare const _default$t: React__default.NamedExoticComponent<AvatarProps>;
1484
1484
 
1485
1485
  type SkeletonProps = {
1486
1486
  animated?: boolean;
1487
1487
  className?: string;
1488
1488
  style?: React__default.CSSProperties;
1489
1489
  };
1490
- declare const _default$r: React__default.NamedExoticComponent<SkeletonProps>;
1490
+ declare const _default$s: React__default.NamedExoticComponent<SkeletonProps>;
1491
1491
 
1492
1492
  type ButtonProps = {
1493
1493
  fill?: 'outline' | 'clear';
@@ -1522,7 +1522,7 @@ type FlagProps = {
1522
1522
  name: string;
1523
1523
  className?: string;
1524
1524
  };
1525
- declare const _default$q: React__default.NamedExoticComponent<FlagProps>;
1525
+ declare const _default$r: React__default.NamedExoticComponent<FlagProps>;
1526
1526
 
1527
1527
  type PictureProps = {
1528
1528
  width: number;
@@ -1537,7 +1537,7 @@ type PictureProps = {
1537
1537
  alt?: string;
1538
1538
  className?: string;
1539
1539
  };
1540
- declare const _default$p: React__default.NamedExoticComponent<PictureProps>;
1540
+ declare const _default$q: React__default.NamedExoticComponent<PictureProps>;
1541
1541
 
1542
1542
  type BadgeType = 'default' | 'accent';
1543
1543
  type BadgeVariants = 'attention' | 'neutral' | 'success' | 'warning' | 'brand' | 'info';
@@ -1547,7 +1547,7 @@ type BadgeProps = React.ComponentPropsWithoutRef<'span'> & {
1547
1547
  type?: BadgeType;
1548
1548
  };
1549
1549
 
1550
- declare const _default$o: React.NamedExoticComponent<BadgeProps>;
1550
+ declare const _default$p: React.NamedExoticComponent<BadgeProps>;
1551
1551
 
1552
1552
  type ItemCardVariants = 'neutral' | 'transparent' | 'transparent20';
1553
1553
  type ItemCardProps = React.ComponentPropsWithoutRef<'div'> & {
@@ -1555,7 +1555,7 @@ type ItemCardProps = React.ComponentPropsWithoutRef<'div'> & {
1555
1555
  size?: 'M' | 'M4' | 'M45';
1556
1556
  };
1557
1557
 
1558
- declare const _default$n: React.NamedExoticComponent<ItemCardProps>;
1558
+ declare const _default$o: React.NamedExoticComponent<ItemCardProps>;
1559
1559
 
1560
1560
  type AppHeaderProps = {
1561
1561
  fullwidth?: boolean;
@@ -1835,7 +1835,7 @@ interface TextareaV2Props extends Omit<JSX$1.IonTextarea, 'color' | 'enterkeyhin
1835
1835
  onKeyPress?: (e: KeyboardEvent<HTMLIonTextareaElement>) => void;
1836
1836
  }
1837
1837
 
1838
- declare const _default$m: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TextareaV2Props & React__default.RefAttributes<HTMLIonTextareaElement>>>;
1838
+ declare const _default$n: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TextareaV2Props & React__default.RefAttributes<HTMLIonTextareaElement>>>;
1839
1839
 
1840
1840
  type RatingProps = {
1841
1841
  initialRating?: number;
@@ -1847,7 +1847,7 @@ type RatingProps = {
1847
1847
  readonly?: boolean;
1848
1848
  };
1849
1849
 
1850
- declare const _default$l: React__default.NamedExoticComponent<RatingProps>;
1850
+ declare const _default$m: React__default.NamedExoticComponent<RatingProps>;
1851
1851
 
1852
1852
  declare const RatingCircleWrapper: FC<CircleRatingComponentProps & {
1853
1853
  t: WithTranslation | any;
@@ -1861,7 +1861,7 @@ type IconButtonProps = {
1861
1861
  fill?: 'clear' | 'filled';
1862
1862
  type?: 'button' | 'submit' | 'reset';
1863
1863
  };
1864
- declare const _default$k: React__default.NamedExoticComponent<IconButtonProps>;
1864
+ declare const _default$l: React__default.NamedExoticComponent<IconButtonProps>;
1865
1865
 
1866
1866
  type ToastProviderProps = ToastStateProps;
1867
1867
  type MindlyToastProps = {
@@ -1904,17 +1904,17 @@ type ProgressBar_v2Props = {
1904
1904
  className?: string;
1905
1905
  reversed?: boolean;
1906
1906
  };
1907
- declare const _default$j: React__default.NamedExoticComponent<ProgressBar_v2Props>;
1907
+ declare const _default$k: React__default.NamedExoticComponent<ProgressBar_v2Props>;
1908
1908
 
1909
1909
  type LoadingProps = {
1910
1910
  isOpen: boolean;
1911
1911
  };
1912
- declare const _default$i: React__default.NamedExoticComponent<LoadingProps>;
1912
+ declare const _default$j: React__default.NamedExoticComponent<LoadingProps>;
1913
1913
 
1914
1914
  type ListItemsProps = React.HTMLAttributes<HTMLIonListElement> & {
1915
1915
  withBorders?: boolean;
1916
1916
  };
1917
- declare const _default$h: React.NamedExoticComponent<ListItemsProps>;
1917
+ declare const _default$i: React.NamedExoticComponent<ListItemsProps>;
1918
1918
 
1919
1919
  type ItemProps = React.HTMLAttributes<HTMLIonItemElement> & {
1920
1920
  leftContent?: React.ReactNode;
@@ -1924,14 +1924,14 @@ type ItemProps = React.HTMLAttributes<HTMLIonItemElement> & {
1924
1924
  isDisabled?: boolean;
1925
1925
  isError?: boolean;
1926
1926
  };
1927
- declare const _default$g: React.NamedExoticComponent<ItemProps>;
1927
+ declare const _default$h: React.NamedExoticComponent<ItemProps>;
1928
1928
 
1929
1929
  type VideoProps = {
1930
1930
  src: string;
1931
1931
  isMuted: boolean;
1932
1932
  onMuteToggle: () => void;
1933
1933
  };
1934
- declare const _default$f: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<VideoProps & React__default.RefAttributes<HTMLVideoElement>>>;
1934
+ declare const _default$g: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<VideoProps & React__default.RefAttributes<HTMLVideoElement>>>;
1935
1935
 
1936
1936
  type UlLiProps = {
1937
1937
  list: string[];
@@ -2506,9 +2506,9 @@ type SlotsGridItemProps = {
2506
2506
  onSelectionChange: () => void;
2507
2507
  };
2508
2508
 
2509
- declare const _default$e: React__default.NamedExoticComponent<SlotsGridProps>;
2509
+ declare const _default$f: React__default.NamedExoticComponent<SlotsGridProps>;
2510
2510
 
2511
- declare const _default$d: React.NamedExoticComponent<SlotsGridItemProps>;
2511
+ declare const _default$e: React.NamedExoticComponent<SlotsGridItemProps>;
2512
2512
 
2513
2513
  type PushNotificationsModalProps = {
2514
2514
  onApplyPermission: () => void;
@@ -2608,23 +2608,23 @@ type ShareModalFeatureProps = {
2608
2608
  };
2609
2609
  declare const ShareModalFeature: FC<ShareModalFeatureProps>;
2610
2610
 
2611
- declare const _default$c: React__default.NamedExoticComponent<SpecialistPaymentConsultationDetailsType & TranslationType>;
2611
+ declare const _default$d: React__default.NamedExoticComponent<SpecialistPaymentConsultationDetailsType & TranslationType>;
2612
2612
 
2613
- declare const _default$b: React__default.NamedExoticComponent<SpecialistPaymentCardProps & TranslationType>;
2613
+ declare const _default$c: React__default.NamedExoticComponent<SpecialistPaymentCardProps & TranslationType>;
2614
2614
 
2615
2615
  type SpecialistPaymentCommonCardSkeletonType = {
2616
2616
  className?: string;
2617
2617
  };
2618
2618
  declare const SpecialistPaymentCommonCardSkeleton: (props: SpecialistPaymentCommonCardSkeletonType) => JSX.Element;
2619
2619
 
2620
- declare const _default$a: React__default.NamedExoticComponent<SpecialistPaymentConsultationsProps & TranslationType>;
2620
+ declare const _default$b: React__default.NamedExoticComponent<SpecialistPaymentConsultationsProps & TranslationType>;
2621
2621
 
2622
2622
  type ConsultationsListProps = {
2623
2623
  consultations: SpecialistConsultation[];
2624
2624
  locale?: string;
2625
2625
  consultationClick?: (consultation: SpecialistConsultation) => void;
2626
2626
  };
2627
- declare const _default$9: React__default.NamedExoticComponent<ConsultationsListProps>;
2627
+ declare const _default$a: React__default.NamedExoticComponent<ConsultationsListProps>;
2628
2628
 
2629
2629
  type ConsultationsListSkeletonType = {
2630
2630
  className?: string;
@@ -2639,9 +2639,9 @@ type CalendarPickerFeatureProps = {
2639
2639
  monthsMore?: number;
2640
2640
  dateCallback: (date: Date) => void;
2641
2641
  };
2642
- declare const _default$8: React__default.NamedExoticComponent<CalendarPickerFeatureProps & TranslationType>;
2642
+ declare const _default$9: React__default.NamedExoticComponent<CalendarPickerFeatureProps & TranslationType>;
2643
2643
 
2644
- declare const _default$7: React__default.NamedExoticComponent<PaymentCalendarFeatureProps & TranslationType>;
2644
+ declare const _default$8: React__default.NamedExoticComponent<PaymentCalendarFeatureProps & TranslationType>;
2645
2645
 
2646
2646
  type GoogleCalendarModalFeatureProps = {
2647
2647
  isOpen: boolean;
@@ -2663,7 +2663,7 @@ type ReviewCardFeatureProps = {
2663
2663
  review: string;
2664
2664
  size?: 'default' | 'small';
2665
2665
  } & TranslationType;
2666
- declare const _default$6: React__default.NamedExoticComponent<ReviewCardFeatureProps>;
2666
+ declare const _default$7: React__default.NamedExoticComponent<ReviewCardFeatureProps>;
2667
2667
 
2668
2668
  type AppNotSupportedProps = {
2669
2669
  isOpen: boolean;
@@ -2747,7 +2747,7 @@ type ScreenInputFormFeatureProps = {
2747
2747
  icon?: ReactNode | string;
2748
2748
  isKeyboardShown?: boolean;
2749
2749
  };
2750
- declare const _default$5: React__default.NamedExoticComponent<ScreenInputFormFeatureProps>;
2750
+ declare const _default$6: React__default.NamedExoticComponent<ScreenInputFormFeatureProps>;
2751
2751
 
2752
2752
  type SelectionType = {
2753
2753
  value: any;
@@ -2765,7 +2765,7 @@ type SpecialistDrumPickerWidgetProps = {
2765
2765
  onTouchStart?: () => void;
2766
2766
  onTouchEnd?: () => void;
2767
2767
  };
2768
- declare const _default$4: React__default.NamedExoticComponent<SpecialistDrumPickerWidgetProps>;
2768
+ declare const _default$5: React__default.NamedExoticComponent<SpecialistDrumPickerWidgetProps>;
2769
2769
 
2770
2770
  type TextAreaFormFeatureProps = {
2771
2771
  title?: string;
@@ -2779,7 +2779,7 @@ type TextAreaFormFeatureProps = {
2779
2779
  isFocus?: boolean;
2780
2780
  isKeyboardShown?: boolean;
2781
2781
  };
2782
- declare const _default$3: React__default.NamedExoticComponent<TextAreaFormFeatureProps>;
2782
+ declare const _default$4: React__default.NamedExoticComponent<TextAreaFormFeatureProps>;
2783
2783
 
2784
2784
  type AcceptAgreementFeatureProps = {
2785
2785
  isAccepted: boolean;
@@ -2789,6 +2789,19 @@ type AcceptAgreementFeatureProps = {
2789
2789
  };
2790
2790
  declare function AcceptAgreementFeature({ isAccepted, setIsAccepted, handlePressLink, translations }: AcceptAgreementFeatureProps): JSX.Element;
2791
2791
 
2792
+ type SelectWithSearchFormFeatureProps = {
2793
+ title?: string;
2794
+ subTitle?: string;
2795
+ items: string[];
2796
+ defaultItems: string[];
2797
+ selectedItems?: Selection;
2798
+ onChange?: (value: string) => void;
2799
+ isLoading?: boolean;
2800
+ otherText?: string;
2801
+ buttonLabel?: string;
2802
+ } & WithTranslation;
2803
+ declare const _default$3: React__default.NamedExoticComponent<SelectWithSearchFormFeatureProps>;
2804
+
2792
2805
  type SupportedCountryLocale = string;
2793
2806
  type Tabs = {
2794
2807
  behavior: 'tax-country' | 'profile-lang';
@@ -2873,4 +2886,4 @@ type UpdateContractWidgetProps = {
2873
2886
  };
2874
2887
  declare function UpdateContractWidget({ applyText, onApply, heading, image, avatar, agreementText, handlePressLink, isAccepted, setIsAccepted, isLoading, }: UpdateContractWidgetProps): JSX.Element;
2875
2888
 
2876
- export { AcceptAgreementFeature, AppFooter, _default$t as AppFooter_v2, AppHeader, AppHeader_v2, AppNotSupportedFeature, ArchivedConsultationCard, Avatar, AvatarProps$1 as AvatarProps, _default$s as Avatar_v2, BREAKPOINT_ICON_SIZE, _default$o as Badge, _default$H as BookingScheduleTime, _default$G as BookingSpecialistInfo, Button, Button_v2, Calendar, _default$8 as CalendarPickerFeature, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$10 as ChatListItem, _default$_ as ChatListSkeleton, _default$$ as ChatMessage, ChatMessageSkeleton, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$B as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingContext, CircleRatingProvider, CollapsableText, _default$T as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$Q as ConsultationModal, _default$c as ConsultationPricingFeature, _default$O as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentCard, ContentRendererProps, ContentTree as ContractTreeFeature, CountdownTimerFeature, CountryOfOriginModal, CustomButton, _default$C as CustomCheckbox, CustomRadioButton, _default$D as CustomSelect, _default$E as CustomTextarea, DatePicker, _default$M as DaySlider, DayToRender, DrumListPicker, _default$I as EducationCard, _default$Z as EmptyChatList, EmptyChatMessages, _default$R as EmptyConsultations, EntryNotFound, EntryNotFoundProps, ErrorCardFeature, _default$y as Flag, FlagTypes, _default$q as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconAddModerator, IconApple, IconArrowDown, IconArrowLeft, IconArrowRight, IconArrowTopRight, IconAttachMoney, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$k as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCancel, IconCancelRounded, IconCapFilled, IconChat3d, IconChatFilled, IconChatOutline, IconCheck, IconCheckCircle, IconCheckSmall, IconCheckboxChecked, IconCheckboxUnchecked, IconClient, IconClientFilled, IconClose, IconCopy, IconCreditCard, IconDelete, IconDocument, IconEcgHeart, IconEdit, IconEditCalendar, IconEventBusy, IconEye, IconEyeOff, IconGallery, IconGift, IconGoogle, IconHome, IconIdCard, IconInvisible, IconLanguage, IconLeftArrow, IconLetter, IconLink, IconLock, IconLogout, IconManageAccounts, IconMinus, IconMoreVertical, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPause, IconPersonAlert, IconPlus, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconReceiptLong, IconResume, IconSchema, IconSearch, IconSend, IconSettings, IconShare, IconSpinner, IconStar, IconStarFilled, IconStylus, IconSuccess, IconText, IconTime, IconTimeAdd, IconUnmute, IconUserNotFound, IconVerifiedUser, IconVisible, IconWarning, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, InputSearch, _default$g as Item, _default$n as ItemCard, LabelArrowRedirect, LanguagesList, _default$14 as LetterAvatar, _default$z as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListButton, ListItemType, _default$h as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$i as Loading, LouseConnect, _default$11 as MediaPlayer, Modal, ModalCalendar, ModalSheet, NavigationBar, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, OutdatedPersonalDataFeature, PasswordInput, _default$7 as PaymentCalendarFeature, _default$9 as PaymentSessionsList, _default$13 as PersonDateTimeCard, _default$p as Picture, _default$x as ProfileInformation, _default$K as ProfileView, _default$A as ProgressBar, ProgressBarDashed, _default$j as ProgressBar_v2, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$l as Rating, RatingCircleWrapper, _default$N as ReSchedule, ReScheduleSuccess, Refresher, ReviewCard, _default$6 as ReviewCardFeature, ReviewStatistics, ReviewSwiperSection, RoundButton, RowItemType, RowSelect, RowSelectProps, SIZES, _default$4 as ScreenDrumPickerFormFeature, ScreenInput, _default$5 as ScreenInputFormFeature, ScreenInputUpdateFeature, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$12 as SelectImpressionEmoji, SelectItemType, ShareModalFeature, _default$S as SignUpSessionButton, _default$P as SignUpSessionModal, Skeleton, _default$r as Skeleton_v2, _default$e as SlotsGrid, _default$d as SlotsGridItem, _default$J as SpecialistAbout, SpecialistCard$1 as SpecialistCard, SpecialistCardListWidget, _default$2 as SpecialistCardWidget, _default$X as SpecialistEducationCard, SpecialistInfoColumnFeature as SpecialistInfoColumn, SpecialistLangs, _default$w as SpecialistMatch, _default$b as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, _default$a as SpecialistPaymentConsultationsFeature, _default as SpecialistPaymentResumeWidget, _default$1 as SpecialistPaymentWidget, _default$W as SpecialistProfileViewCard, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default$v as SpecialistStatistic, SpecialistStatisticsCard, SpecialistWorkDirections, Spinner, Spinner_v2, StarRating, StatisticsScroll, StatusTag, SuccessScreen, SwitchDeviceCard, TabBar, TabItem, Tabs$1 as Tabs, Tag, _default$3 as TextAreaFormFeature, _default$F as TextInput, _default$Y as Textarea, _default$m as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TreeNode, _default$u as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UsersPsychologistScrollList, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$f as Video, _default$U as VideoCallInfo, _default$V as VideoPlayer, _default$L as WorkDirections, YourLocalTimeBlock, appThemes, decOfNum, getProgressForBreakPoint, getSignAgreementsTabs, mergeRefs, newShade, priceNormalize, replaceMarkdownWithReactElements, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDomRef, useEvent, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useToastContext };
2889
+ export { AcceptAgreementFeature, AppFooter, _default$u as AppFooter_v2, AppHeader, AppHeader_v2, AppNotSupportedFeature, ArchivedConsultationCard, Avatar, AvatarProps$1 as AvatarProps, _default$t as Avatar_v2, BREAKPOINT_ICON_SIZE, _default$p as Badge, _default$I as BookingScheduleTime, _default$H as BookingSpecialistInfo, Button, Button_v2, Calendar, _default$9 as CalendarPickerFeature, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$11 as ChatListItem, _default$$ as ChatListSkeleton, _default$10 as ChatMessage, ChatMessageSkeleton, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$C as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingContext, CircleRatingProvider, CollapsableText, _default$U as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$R as ConsultationModal, _default$d as ConsultationPricingFeature, _default$P as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentCard, ContentRendererProps, ContentTree as ContractTreeFeature, CountdownTimerFeature, CountryOfOriginModal, CustomButton, _default$D as CustomCheckbox, CustomRadioButton, _default$E as CustomSelect, _default$F as CustomTextarea, DatePicker, _default$N as DaySlider, DayToRender, DrumListPicker, _default$J as EducationCard, _default$_ as EmptyChatList, EmptyChatMessages, _default$S as EmptyConsultations, EntryNotFound, EntryNotFoundProps, ErrorCardFeature, _default$z as Flag, FlagTypes, _default$r as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconAddModerator, IconApple, IconArrowDown, IconArrowLeft, IconArrowRight, IconArrowTopRight, IconAttachMoney, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$l as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCancel, IconCancelRounded, IconCapFilled, IconChat3d, IconChatFilled, IconChatOutline, IconCheck, IconCheckCircle, IconCheckSmall, IconCheckboxChecked, IconCheckboxUnchecked, IconClient, IconClientFilled, IconClose, IconCopy, IconCreditCard, IconDelete, IconDocument, IconEcgHeart, IconEdit, IconEditCalendar, IconEventBusy, IconEye, IconEyeOff, IconGallery, IconGift, IconGoogle, IconHome, IconIdCard, IconInvisible, IconLanguage, IconLeftArrow, IconLetter, IconLink, IconLock, IconLogout, IconManageAccounts, IconMinus, IconMoreVertical, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPause, IconPersonAlert, IconPlus, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconReceiptLong, IconResume, IconSchema, IconSearch, IconSend, IconSettings, IconShare, IconSpinner, IconStar, IconStarFilled, IconStylus, IconSuccess, IconText, IconTime, IconTimeAdd, IconUnmute, IconUserNotFound, IconVerifiedUser, IconVisible, IconWarning, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, InputSearch, _default$h as Item, _default$o as ItemCard, LabelArrowRedirect, LanguagesList, _default$15 as LetterAvatar, _default$A as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListButton, ListItemType, _default$i as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$j as Loading, LouseConnect, _default$12 as MediaPlayer, Modal, ModalCalendar, ModalSheet, NavigationBar, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, OutdatedPersonalDataFeature, PasswordInput, _default$8 as PaymentCalendarFeature, _default$a as PaymentSessionsList, _default$14 as PersonDateTimeCard, _default$q as Picture, _default$y as ProfileInformation, _default$L as ProfileView, _default$B as ProgressBar, ProgressBarDashed, _default$k as ProgressBar_v2, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$m as Rating, RatingCircleWrapper, _default$O as ReSchedule, ReScheduleSuccess, Refresher, ReviewCard, _default$7 as ReviewCardFeature, ReviewStatistics, ReviewSwiperSection, RoundButton, RowItemType, RowSelect, RowSelectProps, SIZES, _default$5 as ScreenDrumPickerFormFeature, ScreenInput, _default$6 as ScreenInputFormFeature, ScreenInputUpdateFeature, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$13 as SelectImpressionEmoji, SelectItemType, _default$3 as SelectWithSearchFormFeature, ShareModalFeature, _default$T as SignUpSessionButton, _default$Q as SignUpSessionModal, Skeleton, _default$s as Skeleton_v2, _default$f as SlotsGrid, _default$e as SlotsGridItem, _default$K as SpecialistAbout, SpecialistCard$1 as SpecialistCard, SpecialistCardListWidget, _default$2 as SpecialistCardWidget, _default$Y as SpecialistEducationCard, SpecialistInfoColumnFeature as SpecialistInfoColumn, SpecialistLangs, _default$x as SpecialistMatch, _default$c as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, _default$b as SpecialistPaymentConsultationsFeature, _default as SpecialistPaymentResumeWidget, _default$1 as SpecialistPaymentWidget, _default$X as SpecialistProfileViewCard, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default$w as SpecialistStatistic, SpecialistStatisticsCard, SpecialistWorkDirections, Spinner, Spinner_v2, StarRating, StatisticsScroll, StatusTag, SuccessScreen, SwitchDeviceCard, TabBar, TabItem, Tabs$1 as Tabs, Tag, _default$4 as TextAreaFormFeature, _default$G as TextInput, _default$Z as Textarea, _default$n as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TreeNode, _default$v as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UsersPsychologistScrollList, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$g as Video, _default$V as VideoCallInfo, _default$W as VideoPlayer, _default$M as WorkDirections, YourLocalTimeBlock, appThemes, decOfNum, getProgressForBreakPoint, getSignAgreementsTabs, mergeRefs, newShade, priceNormalize, replaceMarkdownWithReactElements, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDomRef, useEvent, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useToastContext };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindly/ui-components",
3
- "version": "5.74.1",
3
+ "version": "5.75.0",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "clean": "rimraf dist",