@mindly/ui-components 5.89.0 → 5.90.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,4 @@
1
+ import * as React from 'react';
2
+ import { AlertCardProps } from './types';
3
+ declare const _default: React.NamedExoticComponent<AlertCardProps>;
4
+ export default _default;
@@ -0,0 +1 @@
1
+ export { default as AlertCard } from './AlertCard';
@@ -0,0 +1,78 @@
1
+ export declare const alertCardStyles: import("tailwind-variants").TVReturnType<{
2
+ variant: {
3
+ yellow: "bg-color-info-light-orange";
4
+ blue: "bg-color-info-light-blue";
5
+ transparent: "bg-transparent border border-color-black !border-opacity-35";
6
+ };
7
+ size: {
8
+ XY4: "p-4";
9
+ X5Y4: "px-5 py-4";
10
+ XY5: "p-5";
11
+ };
12
+ }, undefined, "rounded-[30px]", import("tailwind-variants/dist/config").TVConfig<{
13
+ variant: {
14
+ yellow: "bg-color-info-light-orange";
15
+ blue: "bg-color-info-light-blue";
16
+ transparent: "bg-transparent border border-color-black !border-opacity-35";
17
+ };
18
+ size: {
19
+ XY4: "p-4";
20
+ X5Y4: "px-5 py-4";
21
+ XY5: "p-5";
22
+ };
23
+ }, {
24
+ variant: {
25
+ yellow: "bg-color-info-light-orange";
26
+ blue: "bg-color-info-light-blue";
27
+ transparent: "bg-transparent border border-color-black !border-opacity-35";
28
+ };
29
+ size: {
30
+ XY4: "p-4";
31
+ X5Y4: "px-5 py-4";
32
+ XY5: "p-5";
33
+ };
34
+ }>, {
35
+ variant: {
36
+ yellow: "bg-color-info-light-orange";
37
+ blue: "bg-color-info-light-blue";
38
+ transparent: "bg-transparent border border-color-black !border-opacity-35";
39
+ };
40
+ size: {
41
+ XY4: "p-4";
42
+ X5Y4: "px-5 py-4";
43
+ XY5: "p-5";
44
+ };
45
+ }, undefined, import("tailwind-variants").TVReturnType<{
46
+ variant: {
47
+ yellow: "bg-color-info-light-orange";
48
+ blue: "bg-color-info-light-blue";
49
+ transparent: "bg-transparent border border-color-black !border-opacity-35";
50
+ };
51
+ size: {
52
+ XY4: "p-4";
53
+ X5Y4: "px-5 py-4";
54
+ XY5: "p-5";
55
+ };
56
+ }, undefined, "rounded-[30px]", import("tailwind-variants/dist/config").TVConfig<{
57
+ variant: {
58
+ yellow: "bg-color-info-light-orange";
59
+ blue: "bg-color-info-light-blue";
60
+ transparent: "bg-transparent border border-color-black !border-opacity-35";
61
+ };
62
+ size: {
63
+ XY4: "p-4";
64
+ X5Y4: "px-5 py-4";
65
+ XY5: "p-5";
66
+ };
67
+ }, {
68
+ variant: {
69
+ yellow: "bg-color-info-light-orange";
70
+ blue: "bg-color-info-light-blue";
71
+ transparent: "bg-transparent border border-color-black !border-opacity-35";
72
+ };
73
+ size: {
74
+ XY4: "p-4";
75
+ X5Y4: "px-5 py-4";
76
+ XY5: "p-5";
77
+ };
78
+ }>, unknown, unknown, undefined>>;
@@ -0,0 +1,14 @@
1
+ import * as React from 'react';
2
+ export type AlertCardVariants = 'transparent' | 'yellow' | 'blue';
3
+ export type AlertCardProps = React.ComponentPropsWithoutRef<'div'> & {
4
+ variant: AlertCardVariants;
5
+ size?: 'XY4' | 'X5Y4' | 'XY5';
6
+ title?: string;
7
+ text?: string;
8
+ icon?: any;
9
+ button?: {
10
+ text: string;
11
+ onClick: () => void;
12
+ className?: string;
13
+ };
14
+ };
@@ -1,4 +1,5 @@
1
1
  export * from './Typography';
2
+ export * from './AlertCard';
2
3
  export * from './AppFooter_v2';
3
4
  export * from './Avatar_v2';
4
5
  export * from './Skeleton_v2';
package/dist/index.d.ts CHANGED
@@ -225,7 +225,7 @@ type LetterAvatarProps = {
225
225
  fontSize?: number;
226
226
  onClick?: () => void;
227
227
  };
228
- declare const _default$1d: React__default.NamedExoticComponent<LetterAvatarProps>;
228
+ declare const _default$1e: React__default.NamedExoticComponent<LetterAvatarProps>;
229
229
 
230
230
  type ImageWithFallbackProps = JSX.IntrinsicElements['img'] & {
231
231
  onErrorContent: React__default.ReactElement;
@@ -237,7 +237,7 @@ type PersonDateTimeCardProps = {
237
237
  name: string;
238
238
  dateTime: Date;
239
239
  };
240
- declare const _default$1c: React__default.NamedExoticComponent<PersonDateTimeCardProps>;
240
+ declare const _default$1d: React__default.NamedExoticComponent<PersonDateTimeCardProps>;
241
241
 
242
242
  type PsychologistProfileType = {
243
243
  id: string;
@@ -403,7 +403,7 @@ type SelectImpressionEmojiProps = {
403
403
  onChange?: (val: ImpressionEmojiEnum) => void;
404
404
  };
405
405
 
406
- declare const _default$1b: React__default.NamedExoticComponent<SelectImpressionEmojiProps>;
406
+ declare const _default$1c: React__default.NamedExoticComponent<SelectImpressionEmojiProps>;
407
407
 
408
408
  interface FooterForBookingProps {
409
409
  eventHandler: (props?: React__default.SyntheticEvent) => void;
@@ -435,7 +435,7 @@ type MediaPlayerProps<TCameraTrack extends Playable | undefined, TAudioTrack ext
435
435
  showControls: boolean;
436
436
  isScreenSharing?: boolean;
437
437
  } & HTMLAttributes<HTMLDivElement>;
438
- declare const _default$1a: <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
+ declare const _default$1b: <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;
439
439
 
440
440
  type RoundButtonPropsType = {
441
441
  disabled?: boolean;
@@ -464,7 +464,7 @@ type ChatListItemProps = {
464
464
  isDisabled?: boolean;
465
465
  t?: WithTranslation['t'];
466
466
  };
467
- declare const _default$19: React__default.NamedExoticComponent<ChatListItemProps>;
467
+ declare const _default$1a: React__default.NamedExoticComponent<ChatListItemProps>;
468
468
 
469
469
  type ChatMessageProps = {
470
470
  message: string | File;
@@ -492,11 +492,11 @@ type ChatMessageProps = {
492
492
  onClickHandler: () => void;
493
493
  }[] | null;
494
494
  };
495
- declare const _default$18: React__default.NamedExoticComponent<ChatMessageProps>;
495
+ declare const _default$19: React__default.NamedExoticComponent<ChatMessageProps>;
496
496
 
497
497
  declare const ChatMessageSkeleton: () => JSX.Element;
498
498
 
499
- declare const _default$17: React__default.MemoExoticComponent<() => JSX.Element>;
499
+ declare const _default$18: React__default.MemoExoticComponent<() => JSX.Element>;
500
500
 
501
501
  type EmptyChatList = {
502
502
  title?: string;
@@ -506,7 +506,7 @@ type EmptyChatList = {
506
506
  onClick?: () => void;
507
507
  };
508
508
  declare const EmptyChatList: FC<EmptyChatList>;
509
- declare const _default$16: React__default.NamedExoticComponent<EmptyChatList>;
509
+ declare const _default$17: React__default.NamedExoticComponent<EmptyChatList>;
510
510
 
511
511
  type EmptyChatMessagesProps = {
512
512
  title?: string;
@@ -531,7 +531,7 @@ type TextareaProps = {
531
531
  onFileSelect?: (file: File | null, type: 'file' | 'image' | 'video', fileInfo: FileInfoType) => void;
532
532
  t?: WithTranslation['t'];
533
533
  };
534
- declare const _default$15: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TextareaProps & React__default.RefAttributes<HTMLIonFooterElement>>>;
534
+ declare const _default$16: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TextareaProps & React__default.RefAttributes<HTMLIonFooterElement>>>;
535
535
 
536
536
  type LouseConnectProps = {
537
537
  onClick?: () => void;
@@ -610,7 +610,7 @@ type SpecialistEducationCardProps$1 = {
610
610
  yearEnd?: number | null;
611
611
  showLoader?: boolean;
612
612
  };
613
- declare const _default$14: React__default.NamedExoticComponent<SpecialistEducationCardProps$1>;
613
+ declare const _default$15: React__default.NamedExoticComponent<SpecialistEducationCardProps$1>;
614
614
 
615
615
  type SpecialistProfileViewCardProps$1 = {
616
616
  avatarLink?: string | null;
@@ -623,7 +623,7 @@ type SpecialistProfileViewCardProps$1 = {
623
623
  videoLinkUrl?: string | null;
624
624
  showLoader?: boolean;
625
625
  } & React__default.DetailedHTMLProps<React__default.HTMLAttributes<HTMLDivElement>, HTMLDivElement>;
626
- declare const _default$13: React__default.NamedExoticComponent<SpecialistProfileViewCardProps$1>;
626
+ declare const _default$14: React__default.NamedExoticComponent<SpecialistProfileViewCardProps$1>;
627
627
 
628
628
  type SpecialistStatisticsCardProps$1 = {
629
629
  activeClients?: number;
@@ -659,7 +659,7 @@ type VideoPlayerProps = {
659
659
  closeModalHandler?: () => void;
660
660
  onErrorContent: React__default.ReactElement;
661
661
  } & JSX$1.IonModal;
662
- declare const _default$12: React__default.NamedExoticComponent<VideoPlayerProps>;
662
+ declare const _default$13: React__default.NamedExoticComponent<VideoPlayerProps>;
663
663
 
664
664
  type NotSupportModalProps = {
665
665
  closeModal?: () => void;
@@ -695,7 +695,7 @@ type VideoCallInfoProps = {
695
695
  abbreviatedSeconds: string;
696
696
  };
697
697
  };
698
- declare const _default$11: React__default.NamedExoticComponent<VideoCallInfoProps>;
698
+ declare const _default$12: React__default.NamedExoticComponent<VideoCallInfoProps>;
699
699
 
700
700
  declare enum ConsultationCardType {
701
701
  FEATURE = "feature",
@@ -730,14 +730,14 @@ type ConsultationCardProps = {
730
730
  };
731
731
  };
732
732
 
733
- declare const _default$10: React__default.NamedExoticComponent<ConsultationCardProps>;
733
+ declare const _default$11: React__default.NamedExoticComponent<ConsultationCardProps>;
734
734
 
735
735
  type SignUpSessionButtonProps = {
736
736
  label: string;
737
737
  isLoading?: boolean;
738
738
  onClick?: () => void;
739
739
  };
740
- declare const _default$$: React__default.NamedExoticComponent<SignUpSessionButtonProps>;
740
+ declare const _default$10: React__default.NamedExoticComponent<SignUpSessionButtonProps>;
741
741
 
742
742
  type EmptyConsultationsProps = {
743
743
  title: string;
@@ -745,7 +745,7 @@ type EmptyConsultationsProps = {
745
745
  buttonLabel?: string;
746
746
  onClick?: () => void;
747
747
  };
748
- declare const _default$_: React__default.NamedExoticComponent<EmptyConsultationsProps>;
748
+ declare const _default$$: React__default.NamedExoticComponent<EmptyConsultationsProps>;
749
749
 
750
750
  type ConsultationModalProps = {
751
751
  isOpen: boolean;
@@ -781,7 +781,7 @@ type ConsultationModalProps = {
781
781
  started?: string;
782
782
  };
783
783
  };
784
- declare const _default$Z: React__default.NamedExoticComponent<ConsultationModalProps>;
784
+ declare const _default$_: React__default.NamedExoticComponent<ConsultationModalProps>;
785
785
 
786
786
  type SpecialistData = {
787
787
  id: string;
@@ -798,7 +798,7 @@ type SignUpSessionModalProps = {
798
798
  title: string;
799
799
  cancelBtnLabel: string;
800
800
  };
801
- declare const _default$Y: React__default.NamedExoticComponent<SignUpSessionModalProps>;
801
+ declare const _default$Z: React__default.NamedExoticComponent<SignUpSessionModalProps>;
802
802
 
803
803
  type ConsultationSpecialistCardProps = {
804
804
  id: string;
@@ -809,7 +809,7 @@ type ConsultationSpecialistCardProps = {
809
809
  onSignUp?: (id: string) => void;
810
810
  signInBtnLabel: string;
811
811
  };
812
- declare const _default$X: React__default.NamedExoticComponent<ConsultationSpecialistCardProps>;
812
+ declare const _default$Y: React__default.NamedExoticComponent<ConsultationSpecialistCardProps>;
813
813
 
814
814
  type UserInfoModalProps = {
815
815
  isOpen: boolean;
@@ -880,7 +880,7 @@ type ReScheduleProps = {
880
880
  btnLabel: string;
881
881
  };
882
882
  };
883
- declare const _default$W: React__default.NamedExoticComponent<ReScheduleProps>;
883
+ declare const _default$X: React__default.NamedExoticComponent<ReScheduleProps>;
884
884
 
885
885
  type ReScheduleSuccessProps = {
886
886
  name: string;
@@ -918,7 +918,7 @@ type DaySliderProps = JSX$1.IonSlides & HTMLAttributes<HTMLIonSlidesElement> & R
918
918
  tomorrow?: string;
919
919
  };
920
920
  };
921
- declare const _default$V: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<DaySliderProps, "ref"> & React__default.RefAttributes<HTMLIonSlidesElement>>>;
921
+ declare const _default$W: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<DaySliderProps, "ref"> & React__default.RefAttributes<HTMLIonSlidesElement>>>;
922
922
 
923
923
  type SpecialistWorkDirectionsPropsType = {
924
924
  workDirections?: string[] | [];
@@ -927,7 +927,7 @@ type SpecialistWorkDirectionsPropsType = {
927
927
  moreLabel?: string;
928
928
  hideLabel?: string;
929
929
  };
930
- declare const _default$U: React__default.NamedExoticComponent<SpecialistWorkDirectionsPropsType>;
930
+ declare const _default$V: React__default.NamedExoticComponent<SpecialistWorkDirectionsPropsType>;
931
931
 
932
932
  type SpecialistProfileViewCardProps = {
933
933
  videoLink?: string;
@@ -937,7 +937,7 @@ type SpecialistProfileViewCardProps = {
937
937
  isLoading?: boolean;
938
938
  videoDurationSeconds?: number;
939
939
  };
940
- declare const _default$T: React__default.NamedExoticComponent<SpecialistProfileViewCardProps>;
940
+ declare const _default$U: React__default.NamedExoticComponent<SpecialistProfileViewCardProps>;
941
941
 
942
942
  type SpecialistAboutProps = {
943
943
  text?: string;
@@ -946,7 +946,7 @@ type SpecialistAboutProps = {
946
946
  moreLabel?: string;
947
947
  hideLabel?: string;
948
948
  };
949
- declare const _default$S: React__default.NamedExoticComponent<SpecialistAboutProps>;
949
+ declare const _default$T: React__default.NamedExoticComponent<SpecialistAboutProps>;
950
950
 
951
951
  type SpecialistEducationCardProps = {
952
952
  institutionName?: string;
@@ -957,7 +957,7 @@ type SpecialistEducationCardProps = {
957
957
  yearEnd?: number | null;
958
958
  showLoader?: boolean;
959
959
  };
960
- declare const _default$R: React__default.NamedExoticComponent<SpecialistEducationCardProps>;
960
+ declare const _default$S: React__default.NamedExoticComponent<SpecialistEducationCardProps>;
961
961
 
962
962
  type SpecialistStatisticsCardProps = {
963
963
  trust?: boolean;
@@ -1003,7 +1003,7 @@ type BookingScheduleTimeProps = {
1003
1003
  onClick?: (index: number, item: string) => void;
1004
1004
  isLoading?: boolean;
1005
1005
  };
1006
- declare const _default$Q: React__default.NamedExoticComponent<BookingScheduleTimeProps>;
1006
+ declare const _default$R: React__default.NamedExoticComponent<BookingScheduleTimeProps>;
1007
1007
 
1008
1008
  type BookingSpecialistInfoProps = {
1009
1009
  name: string;
@@ -1012,7 +1012,7 @@ type BookingSpecialistInfoProps = {
1012
1012
  avatar?: string;
1013
1013
  isLoading?: boolean;
1014
1014
  };
1015
- declare const _default$P: React__default.NamedExoticComponent<BookingSpecialistInfoProps>;
1015
+ declare const _default$Q: React__default.NamedExoticComponent<BookingSpecialistInfoProps>;
1016
1016
 
1017
1017
  type SpecialistCardProps = {
1018
1018
  fullName?: string;
@@ -1061,7 +1061,7 @@ type SpecialistCardProps = {
1061
1061
  };
1062
1062
  declare const SpecialistCard$1: React__default.FC<SpecialistCardProps>;
1063
1063
 
1064
- declare const _default$O: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
1064
+ declare const _default$P: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
1065
1065
  isError?: boolean | undefined;
1066
1066
  errorStyle?: "filled" | "unfilled" | undefined;
1067
1067
  type?: "number" | "text" | "email" | undefined;
@@ -1085,11 +1085,11 @@ declare const PasswordInput: React__default.ForwardRefExoticComponent<{
1085
1085
  error?: string | null | undefined;
1086
1086
  } & Omit<React__default.InputHTMLAttributes<HTMLInputElement>, "type"> & React__default.RefAttributes<HTMLInputElement>>;
1087
1087
 
1088
- declare const _default$N: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
1088
+ declare const _default$O: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
1089
1089
  isError?: boolean | undefined;
1090
1090
  } & React__default.TextareaHTMLAttributes<HTMLTextAreaElement> & React__default.RefAttributes<HTMLTextAreaElement>>>;
1091
1091
 
1092
- declare const _default$M: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
1092
+ declare const _default$N: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
1093
1093
  options: {
1094
1094
  id: string | number;
1095
1095
  label: string | number;
@@ -1121,7 +1121,7 @@ type CustomCheckboxProps = {
1121
1121
  isCheckbox?: boolean;
1122
1122
  onChange?: (e: ChangeEvent<HTMLInputElement>) => void;
1123
1123
  };
1124
- declare const _default$L: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<CustomCheckboxProps & React__default.RefAttributes<HTMLInputElement>>>;
1124
+ declare const _default$M: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<CustomCheckboxProps & React__default.RefAttributes<HTMLInputElement>>>;
1125
1125
 
1126
1126
  type CheckboxListItem = {
1127
1127
  id: ReactText;
@@ -1149,7 +1149,7 @@ type CheckboxListProps = {
1149
1149
  from: string;
1150
1150
  };
1151
1151
  };
1152
- declare const _default$K: React__default.NamedExoticComponent<CheckboxListProps>;
1152
+ declare const _default$L: React__default.NamedExoticComponent<CheckboxListProps>;
1153
1153
 
1154
1154
  type BookingHeaderProps = {
1155
1155
  title?: string;
@@ -1163,9 +1163,9 @@ type ProgressBarProps = {
1163
1163
  progress: number;
1164
1164
  loaderTitle?: string;
1165
1165
  };
1166
- declare const _default$J: React__default.NamedExoticComponent<ProgressBarProps>;
1166
+ declare const _default$K: React__default.NamedExoticComponent<ProgressBarProps>;
1167
1167
 
1168
- declare const _default$I: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
1168
+ declare const _default$J: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
1169
1169
  title: string;
1170
1170
  subTitle?: string | undefined;
1171
1171
  isError?: boolean | undefined;
@@ -1197,7 +1197,7 @@ type FlagProps$1 = {
1197
1197
  dimensions?: number;
1198
1198
  className?: string;
1199
1199
  };
1200
- declare const _default$H: React__default.NamedExoticComponent<FlagProps$1>;
1200
+ declare const _default$I: React__default.NamedExoticComponent<FlagProps$1>;
1201
1201
 
1202
1202
  type SpecialistLangsProps = {
1203
1203
  showLoader?: boolean;
@@ -1237,7 +1237,7 @@ type ProfileInformationProps = {
1237
1237
  reviews: string[];
1238
1238
  };
1239
1239
  } & React__default.HTMLAttributes<HTMLDivElement>;
1240
- declare const _default$G: React__default.NamedExoticComponent<ProfileInformationProps>;
1240
+ declare const _default$H: React__default.NamedExoticComponent<ProfileInformationProps>;
1241
1241
 
1242
1242
  type SpecialistMatchProps = {
1243
1243
  specialistFirstName?: string;
@@ -1249,7 +1249,7 @@ type SpecialistMatchProps = {
1249
1249
  howWeMatchThis: string;
1250
1250
  };
1251
1251
  } & React__default.HTMLAttributes<HTMLDivElement>;
1252
- declare const _default$F: React__default.NamedExoticComponent<SpecialistMatchProps>;
1252
+ declare const _default$G: React__default.NamedExoticComponent<SpecialistMatchProps>;
1253
1253
 
1254
1254
  type SpecialistStatisticProps = {
1255
1255
  learnMoreClick: () => void;
@@ -1269,7 +1269,7 @@ type SpecialistStatisticProps = {
1269
1269
  bookedSession: string;
1270
1270
  };
1271
1271
  } & React__default.HTMLAttributes<HTMLDivElement>;
1272
- declare const _default$E: React__default.NamedExoticComponent<SpecialistStatisticProps>;
1272
+ declare const _default$F: React__default.NamedExoticComponent<SpecialistStatisticProps>;
1273
1273
 
1274
1274
  type RatingWithLabelProps = {
1275
1275
  countOfReviews?: number;
@@ -1460,7 +1460,23 @@ type TypographyProps = {
1460
1460
  onClick?: (args: any) => typeof args;
1461
1461
  isError?: boolean;
1462
1462
  };
1463
- declare const _default$D: React__default.NamedExoticComponent<TypographyProps>;
1463
+ declare const _default$E: React__default.NamedExoticComponent<TypographyProps>;
1464
+
1465
+ type AlertCardVariants = 'transparent' | 'yellow' | 'blue';
1466
+ type AlertCardProps = React.ComponentPropsWithoutRef<'div'> & {
1467
+ variant: AlertCardVariants;
1468
+ size?: 'XY4' | 'X5Y4' | 'XY5';
1469
+ title?: string;
1470
+ text?: string;
1471
+ icon?: any;
1472
+ button?: {
1473
+ text: string;
1474
+ onClick: () => void;
1475
+ className?: string;
1476
+ };
1477
+ };
1478
+
1479
+ declare const _default$D: React.NamedExoticComponent<AlertCardProps>;
1464
1480
 
1465
1481
  type AppFooterProps = {
1466
1482
  children?: React__default.ReactNode;
@@ -3085,4 +3101,4 @@ type UpdateContractWidgetProps = {
3085
3101
  };
3086
3102
  declare function UpdateContractWidget({ applyText, onApply, heading, image, avatar, agreementText, handlePressLink, isAccepted, setIsAccepted, isLoading, }: UpdateContractWidgetProps): JSX.Element;
3087
3103
 
3088
- export { AcceptAgreementFeature, Action, AppFooter, _default$C as AppFooter_v2, AppHeader, AppHeader_v2, AppNotSupportedFeature, ArchivedConsultationCard, Avatar, AvatarProps$1 as AvatarProps, _default$B as Avatar_v2, BREAKPOINT_ICON_SIZE, _default$x as Badge, _default$Q as BookingScheduleTime, _default$P as BookingSpecialistInfo, BreakPointPositionProps, BreakPointPositionResult, Button, Button_v2, COUNTRIES_MAPPER, Calendar, _default$h as CalendarPickerFeature, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$19 as ChatListItem, _default$17 as ChatListSkeleton, _default$18 as ChatMessage, ChatMessageSkeleton, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$K as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingComponentProps, CircleRatingContent, CircleRatingContext, CircleRatingContextData, CircleRatingContextProps, CircleRatingDataProps, CircleRatingDataResult, CircleRatingLegendProps, CircleRatingProvider, CircleRatingRange, CircleRatingSize, CollapsableText, ConditionRulesType, _default$10 as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$Z as ConsultationModal, _default$l as ConsultationPricingFeature, _default$X as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentCard, ContentRendererProps, ContentTree as ContractTreeFeature, CountdownTimerFeature, CountryOfOriginModal, CurrencyLocaleMapper, CurrencySignByLocale, CustomButton, _default$L as CustomCheckbox, CustomRadioButton, _default$M as CustomSelect, _default$N as CustomTextarea, DatePicker, _default$V as DaySlider, DayToRender, DrumListPicker, DynamicCommissionValue, _default$R as EducationCard, _default$16 as EmptyChatList, EmptyChatMessages, _default$_ as EmptyConsultations, EntryNotFound, EntryNotFoundProps, ErrorCardFeature, _default$H as Flag, FlagTypes, _default$z as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconAddModerator, IconApple, IconArrowDown, IconArrowLeft, IconArrowRight, IconArrowTopRight, IconAttachMoney, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$t 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, IconInvoice, IconLanguage, IconLeftArrow, IconLetter, IconLink, IconLock, IconLogout, IconManageAccounts, IconMinus, IconMoreVertical, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPause, IconPersonAlert, IconPlus, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconProps$B as IconProps, 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$p as Item, _default$w as ItemCard, LabelArrowRedirect, LanguagesList, _default$1d as LetterAvatar, _default$I as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListButton, ListItemType, _default$q as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$r as Loading, LouseConnect, _default$a as MarkdownContainerFeature, _default$1a as MediaPlayer, Modal, ModalCalendar, ModalSheet, NavigationBar, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, OnBoardingBaseScreenType, OnBoardingFlowType, _default$8 as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, _default$5 as OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$7 as OnBoardingMultiSelectionScreenPreviewFeature, _default$4 as OnBoardingProgressFeature, _default$3 as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenBgType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenOptionType, OnBoardingScreenOptions, OnBoardingScreenStyleOptions, OnBoardingScreensType, OnBoardingSingleSelectScreenType, _default$6 as OnBoardingSingleSelectionScreenPreviewFeature, _default$9 as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$g as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$i as PaymentSessionsList, _default$1c as PersonDateTimeCard, _default$y as Picture, _default$G as ProfileInformation, _default$T as ProfileView, _default$J as ProgressBar, ProgressBarDashed, _default$s as ProgressBar_v2, ProgressRangeProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$u as Rating, RatingCircleWrapper, _default$W as ReSchedule, ReScheduleSuccess, Refresher, ResponseFileType, ReviewCard, _default$f as ReviewCardFeature, ReviewStatistics, ReviewSwiperSection, ReviewsCardFeatureSkeleton, RoundButton, RowItemType, RowSelect, RowSelectProps, Rule, SIZES, _default$d as ScreenDrumPickerFormFeature, ScreenInput, _default$e as ScreenInputFormFeature, ScreenInputUpdateFeature, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$1b as SelectImpressionEmoji, SelectItemType, _default$b as SelectWithSearchFormFeature, ShareModalFeature, ShortCurrencySignByLocale, _default$$ as SignUpSessionButton, _default$Y as SignUpSessionModal, SizeValues, Skeleton, _default$A as Skeleton_v2, _default$n as SlotsGrid, _default$m as SlotsGridItem, _default$S as SpecialistAbout, SpecialistCard$1 as SpecialistCard, SpecialistCardListWidget, _default$2 as SpecialistCardWidget, SpecialistConsultation, SpecialistConsultationPayment, _default$14 as SpecialistEducationCard, SpecialistInfoColumnFeature as SpecialistInfoColumn, SpecialistLangs, _default$F as SpecialistMatch, SpecialistPaymentCardProps, _default$k as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$j as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$1 as SpecialistPaymentWidget, SpecialistPaymentWidgetType, _default$13 as SpecialistProfileViewCard, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default$E as SpecialistStatistic, SpecialistStatisticsCard, SpecialistWorkDirections, Spinner, Spinner_v2, StarRating, StatisticsScroll, StatusTag, SuccessScreen, SupportedCurrency, SupportedLangs, SwitchDeviceCard, TabBar, TabItem, Tabs$1 as Tabs, Tag, _default$c as TextAreaFormFeature, _default$O as TextInput, _default$15 as Textarea, _default$v as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$D as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UsersPsychologistScrollList, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$o as Video, _default$11 as VideoCallInfo, _default$12 as VideoPlayer, _default$U as WorkDirections, YourLocalTimeBlock, appThemes, decOfNum, getCountryKeyByName, getProgressForBreakPoint, getSignAgreementsTabs, mergeRefs, newShade, priceNormalize, replaceMarkdownWithReactElements, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDomRef, useElementWidth, useEvent, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useToastContext };
3104
+ export { AcceptAgreementFeature, Action, _default$D as AlertCard, AppFooter, _default$C as AppFooter_v2, AppHeader, AppHeader_v2, AppNotSupportedFeature, ArchivedConsultationCard, Avatar, AvatarProps$1 as AvatarProps, _default$B as Avatar_v2, BREAKPOINT_ICON_SIZE, _default$x as Badge, _default$R as BookingScheduleTime, _default$Q as BookingSpecialistInfo, BreakPointPositionProps, BreakPointPositionResult, Button, Button_v2, COUNTRIES_MAPPER, Calendar, _default$h as CalendarPickerFeature, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$1a as ChatListItem, _default$18 as ChatListSkeleton, _default$19 as ChatMessage, ChatMessageSkeleton, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$L as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingComponentProps, CircleRatingContent, CircleRatingContext, CircleRatingContextData, CircleRatingContextProps, CircleRatingDataProps, CircleRatingDataResult, CircleRatingLegendProps, CircleRatingProvider, CircleRatingRange, CircleRatingSize, CollapsableText, ConditionRulesType, _default$11 as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$_ as ConsultationModal, _default$l as ConsultationPricingFeature, _default$Y as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentCard, ContentRendererProps, ContentTree as ContractTreeFeature, CountdownTimerFeature, CountryOfOriginModal, CurrencyLocaleMapper, CurrencySignByLocale, CustomButton, _default$M as CustomCheckbox, CustomRadioButton, _default$N as CustomSelect, _default$O as CustomTextarea, DatePicker, _default$W as DaySlider, DayToRender, DrumListPicker, DynamicCommissionValue, _default$S as EducationCard, _default$17 as EmptyChatList, EmptyChatMessages, _default$$ as EmptyConsultations, EntryNotFound, EntryNotFoundProps, ErrorCardFeature, _default$I as Flag, FlagTypes, _default$z as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconAddModerator, IconApple, IconArrowDown, IconArrowLeft, IconArrowRight, IconArrowTopRight, IconAttachMoney, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$t 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, IconInvoice, IconLanguage, IconLeftArrow, IconLetter, IconLink, IconLock, IconLogout, IconManageAccounts, IconMinus, IconMoreVertical, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPause, IconPersonAlert, IconPlus, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconProps$B as IconProps, 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$p as Item, _default$w as ItemCard, LabelArrowRedirect, LanguagesList, _default$1e as LetterAvatar, _default$J as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListButton, ListItemType, _default$q as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$r as Loading, LouseConnect, _default$a as MarkdownContainerFeature, _default$1b as MediaPlayer, Modal, ModalCalendar, ModalSheet, NavigationBar, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, OnBoardingBaseScreenType, OnBoardingFlowType, _default$8 as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, _default$5 as OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$7 as OnBoardingMultiSelectionScreenPreviewFeature, _default$4 as OnBoardingProgressFeature, _default$3 as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenBgType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenOptionType, OnBoardingScreenOptions, OnBoardingScreenStyleOptions, OnBoardingScreensType, OnBoardingSingleSelectScreenType, _default$6 as OnBoardingSingleSelectionScreenPreviewFeature, _default$9 as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$g as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$i as PaymentSessionsList, _default$1d as PersonDateTimeCard, _default$y as Picture, _default$H as ProfileInformation, _default$U as ProfileView, _default$K as ProgressBar, ProgressBarDashed, _default$s as ProgressBar_v2, ProgressRangeProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$u as Rating, RatingCircleWrapper, _default$X as ReSchedule, ReScheduleSuccess, Refresher, ResponseFileType, ReviewCard, _default$f as ReviewCardFeature, ReviewStatistics, ReviewSwiperSection, ReviewsCardFeatureSkeleton, RoundButton, RowItemType, RowSelect, RowSelectProps, Rule, SIZES, _default$d as ScreenDrumPickerFormFeature, ScreenInput, _default$e as ScreenInputFormFeature, ScreenInputUpdateFeature, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$1c as SelectImpressionEmoji, SelectItemType, _default$b as SelectWithSearchFormFeature, ShareModalFeature, ShortCurrencySignByLocale, _default$10 as SignUpSessionButton, _default$Z as SignUpSessionModal, SizeValues, Skeleton, _default$A as Skeleton_v2, _default$n as SlotsGrid, _default$m as SlotsGridItem, _default$T as SpecialistAbout, SpecialistCard$1 as SpecialistCard, SpecialistCardListWidget, _default$2 as SpecialistCardWidget, SpecialistConsultation, SpecialistConsultationPayment, _default$15 as SpecialistEducationCard, SpecialistInfoColumnFeature as SpecialistInfoColumn, SpecialistLangs, _default$G as SpecialistMatch, SpecialistPaymentCardProps, _default$k as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$j as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$1 as SpecialistPaymentWidget, SpecialistPaymentWidgetType, _default$14 as SpecialistProfileViewCard, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default$F as SpecialistStatistic, SpecialistStatisticsCard, SpecialistWorkDirections, Spinner, Spinner_v2, StarRating, StatisticsScroll, StatusTag, SuccessScreen, SupportedCurrency, SupportedLangs, SwitchDeviceCard, TabBar, TabItem, Tabs$1 as Tabs, Tag, _default$c as TextAreaFormFeature, _default$P as TextInput, _default$16 as Textarea, _default$v as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$E as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UsersPsychologistScrollList, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$o as Video, _default$12 as VideoCallInfo, _default$13 as VideoPlayer, _default$V as WorkDirections, YourLocalTimeBlock, appThemes, decOfNum, getCountryKeyByName, getProgressForBreakPoint, getSignAgreementsTabs, mergeRefs, newShade, priceNormalize, replaceMarkdownWithReactElements, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDomRef, useElementWidth, 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.89.0",
3
+ "version": "5.90.0",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "clean": "rimraf dist",