@mindly/ui-components 5.11.2 → 5.13.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.
- package/dist/cjs/index.js +5 -5
- package/dist/cjs/lib2/shared/hooks/index.d.ts +0 -1
- package/dist/cjs/lib2/shared/ui/Loading/Loading.d.ts +6 -0
- package/dist/cjs/lib2/shared/ui/Loading/index.d.ts +1 -0
- package/dist/cjs/lib2/shared/ui/index.d.ts +1 -0
- package/dist/esm/index.js +4 -4
- package/dist/esm/lib2/shared/hooks/index.d.ts +0 -1
- package/dist/esm/lib2/shared/ui/Loading/Loading.d.ts +6 -0
- package/dist/esm/lib2/shared/ui/Loading/index.d.ts +1 -0
- package/dist/esm/lib2/shared/ui/index.d.ts +1 -0
- package/dist/index.d.ts +55 -52
- package/package.json +1 -3
- package/dist/cjs/lib2/shared/hooks/useIsKeyboardShown.d.ts +0 -1
- package/dist/esm/lib2/shared/hooks/useIsKeyboardShown.d.ts +0 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as Loading } from './Loading';
|
package/dist/index.d.ts
CHANGED
|
@@ -222,7 +222,7 @@ type LetterAvatarProps = {
|
|
|
222
222
|
fontSize?: number;
|
|
223
223
|
onClick?: () => void;
|
|
224
224
|
};
|
|
225
|
-
declare const _default$
|
|
225
|
+
declare const _default$O: React__default.NamedExoticComponent<LetterAvatarProps>;
|
|
226
226
|
|
|
227
227
|
type ImageWithFallbackProps = JSX.IntrinsicElements['img'] & {
|
|
228
228
|
onErrorContent: React__default.ReactElement;
|
|
@@ -234,7 +234,7 @@ type PersonDateTimeCardProps = {
|
|
|
234
234
|
name: string;
|
|
235
235
|
dateTime: Date;
|
|
236
236
|
};
|
|
237
|
-
declare const _default$
|
|
237
|
+
declare const _default$N: React__default.NamedExoticComponent<PersonDateTimeCardProps>;
|
|
238
238
|
|
|
239
239
|
type PsychologistProfileType = {
|
|
240
240
|
id: string;
|
|
@@ -400,7 +400,7 @@ type SelectImpressionEmojiProps = {
|
|
|
400
400
|
onChange?: (val: ImpressionEmojiEnum) => void;
|
|
401
401
|
};
|
|
402
402
|
|
|
403
|
-
declare const _default$
|
|
403
|
+
declare const _default$M: React__default.NamedExoticComponent<SelectImpressionEmojiProps>;
|
|
404
404
|
|
|
405
405
|
interface FooterForBookingProps {
|
|
406
406
|
eventHandler: (props?: React__default.SyntheticEvent) => void;
|
|
@@ -432,7 +432,7 @@ type MediaPlayerProps<TCameraTrack extends Playable | undefined, TAudioTrack ext
|
|
|
432
432
|
showControls: boolean;
|
|
433
433
|
isScreenSharing?: boolean;
|
|
434
434
|
} & HTMLAttributes<HTMLDivElement>;
|
|
435
|
-
declare const _default$
|
|
435
|
+
declare const _default$L: <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
436
|
|
|
437
437
|
type RoundButtonPropsType = {
|
|
438
438
|
disabled?: boolean;
|
|
@@ -458,7 +458,7 @@ type ChatListItemProps = {
|
|
|
458
458
|
lastMessageType?: 'text' | 'file' | 'image' | 'video' | 'system';
|
|
459
459
|
locale?: string;
|
|
460
460
|
};
|
|
461
|
-
declare const _default$
|
|
461
|
+
declare const _default$K: React__default.NamedExoticComponent<ChatListItemProps>;
|
|
462
462
|
|
|
463
463
|
type ChatMessageProps = {
|
|
464
464
|
message: string | File;
|
|
@@ -476,11 +476,11 @@ type ChatMessageProps = {
|
|
|
476
476
|
};
|
|
477
477
|
locale?: string;
|
|
478
478
|
};
|
|
479
|
-
declare const _default$
|
|
479
|
+
declare const _default$J: React__default.NamedExoticComponent<ChatMessageProps>;
|
|
480
480
|
|
|
481
481
|
declare const ChatMessageSkeleton: () => JSX.Element;
|
|
482
482
|
|
|
483
|
-
declare const _default$
|
|
483
|
+
declare const _default$I: React__default.MemoExoticComponent<() => JSX.Element>;
|
|
484
484
|
|
|
485
485
|
type EmptyChatList = {
|
|
486
486
|
title?: string;
|
|
@@ -490,7 +490,7 @@ type EmptyChatList = {
|
|
|
490
490
|
onClick?: () => void;
|
|
491
491
|
};
|
|
492
492
|
declare const EmptyChatList: FC<EmptyChatList>;
|
|
493
|
-
declare const _default$
|
|
493
|
+
declare const _default$H: React__default.NamedExoticComponent<EmptyChatList>;
|
|
494
494
|
|
|
495
495
|
type EmptyChatMessagesProps = {
|
|
496
496
|
title?: string;
|
|
@@ -514,7 +514,7 @@ type TextareaProps = {
|
|
|
514
514
|
onError?: (message: string) => void;
|
|
515
515
|
onFileSelect?: (file: File | null, type: 'file' | 'image' | 'video', fileInfo: FileInfoType) => void;
|
|
516
516
|
};
|
|
517
|
-
declare const _default$
|
|
517
|
+
declare const _default$G: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TextareaProps & React__default.RefAttributes<HTMLIonFooterElement>>>;
|
|
518
518
|
|
|
519
519
|
type LouseConnectProps = {
|
|
520
520
|
onClick?: () => void;
|
|
@@ -593,7 +593,7 @@ type SpecialistEducationCardProps$1 = {
|
|
|
593
593
|
yearEnd?: number | null;
|
|
594
594
|
showLoader?: boolean;
|
|
595
595
|
};
|
|
596
|
-
declare const _default$
|
|
596
|
+
declare const _default$F: React__default.NamedExoticComponent<SpecialistEducationCardProps$1>;
|
|
597
597
|
|
|
598
598
|
type SpecialistProfileViewCardProps$1 = {
|
|
599
599
|
avatarLink?: string | null;
|
|
@@ -606,7 +606,7 @@ type SpecialistProfileViewCardProps$1 = {
|
|
|
606
606
|
videoLinkUrl?: string | null;
|
|
607
607
|
showLoader?: boolean;
|
|
608
608
|
} & React__default.DetailedHTMLProps<React__default.HTMLAttributes<HTMLDivElement>, HTMLDivElement>;
|
|
609
|
-
declare const _default$
|
|
609
|
+
declare const _default$E: React__default.NamedExoticComponent<SpecialistProfileViewCardProps$1>;
|
|
610
610
|
|
|
611
611
|
type SpecialistStatisticsCardProps$1 = {
|
|
612
612
|
activeClients?: number;
|
|
@@ -642,7 +642,7 @@ type VideoPlayerProps = {
|
|
|
642
642
|
closeModalHandler?: () => void;
|
|
643
643
|
onErrorContent: React__default.ReactElement;
|
|
644
644
|
} & JSX$1.IonModal;
|
|
645
|
-
declare const _default$
|
|
645
|
+
declare const _default$D: React__default.NamedExoticComponent<VideoPlayerProps>;
|
|
646
646
|
|
|
647
647
|
type NotSupportModalProps = {
|
|
648
648
|
closeModal?: () => void;
|
|
@@ -678,7 +678,7 @@ type VideoCallInfoProps = {
|
|
|
678
678
|
abbreviatedSeconds: string;
|
|
679
679
|
};
|
|
680
680
|
};
|
|
681
|
-
declare const _default$
|
|
681
|
+
declare const _default$C: React__default.NamedExoticComponent<VideoCallInfoProps>;
|
|
682
682
|
|
|
683
683
|
declare enum ConsultationCardType {
|
|
684
684
|
FEATURE = "feature",
|
|
@@ -713,14 +713,14 @@ type ConsultationCardProps = {
|
|
|
713
713
|
};
|
|
714
714
|
};
|
|
715
715
|
|
|
716
|
-
declare const _default$
|
|
716
|
+
declare const _default$B: React__default.NamedExoticComponent<ConsultationCardProps>;
|
|
717
717
|
|
|
718
718
|
type SignUpSessionButtonProps = {
|
|
719
719
|
label: string;
|
|
720
720
|
isLoading?: boolean;
|
|
721
721
|
onClick?: () => void;
|
|
722
722
|
};
|
|
723
|
-
declare const _default$
|
|
723
|
+
declare const _default$A: React__default.NamedExoticComponent<SignUpSessionButtonProps>;
|
|
724
724
|
|
|
725
725
|
type EmptyConsultationsProps = {
|
|
726
726
|
title: string;
|
|
@@ -728,7 +728,7 @@ type EmptyConsultationsProps = {
|
|
|
728
728
|
buttonLabel?: string;
|
|
729
729
|
onClick?: () => void;
|
|
730
730
|
};
|
|
731
|
-
declare const _default$
|
|
731
|
+
declare const _default$z: React__default.NamedExoticComponent<EmptyConsultationsProps>;
|
|
732
732
|
|
|
733
733
|
type ConsultationModalProps = {
|
|
734
734
|
isOpen: boolean;
|
|
@@ -763,7 +763,7 @@ type ConsultationModalProps = {
|
|
|
763
763
|
started?: string;
|
|
764
764
|
};
|
|
765
765
|
};
|
|
766
|
-
declare const _default$
|
|
766
|
+
declare const _default$y: React__default.NamedExoticComponent<ConsultationModalProps>;
|
|
767
767
|
|
|
768
768
|
type SpecialistData = {
|
|
769
769
|
id: string;
|
|
@@ -780,7 +780,7 @@ type SignUpSessionModalProps = {
|
|
|
780
780
|
title: string;
|
|
781
781
|
cancelBtnLabel: string;
|
|
782
782
|
};
|
|
783
|
-
declare const _default$
|
|
783
|
+
declare const _default$x: React__default.NamedExoticComponent<SignUpSessionModalProps>;
|
|
784
784
|
|
|
785
785
|
type ConsultationSpecialistCardProps = {
|
|
786
786
|
id: string;
|
|
@@ -791,7 +791,7 @@ type ConsultationSpecialistCardProps = {
|
|
|
791
791
|
onSignUp?: (id: string) => void;
|
|
792
792
|
signInBtnLabel: string;
|
|
793
793
|
};
|
|
794
|
-
declare const _default$
|
|
794
|
+
declare const _default$w: React__default.NamedExoticComponent<ConsultationSpecialistCardProps>;
|
|
795
795
|
|
|
796
796
|
type UserInfoModalProps = {
|
|
797
797
|
isOpen: boolean;
|
|
@@ -856,7 +856,7 @@ type ReScheduleProps = {
|
|
|
856
856
|
btnLabel: string;
|
|
857
857
|
};
|
|
858
858
|
};
|
|
859
|
-
declare const _default$
|
|
859
|
+
declare const _default$v: React__default.NamedExoticComponent<ReScheduleProps>;
|
|
860
860
|
|
|
861
861
|
type ReScheduleSuccessProps = {
|
|
862
862
|
name: string;
|
|
@@ -894,7 +894,7 @@ type DaySliderProps = JSX$1.IonSlides & HTMLAttributes<HTMLIonSlidesElement> & R
|
|
|
894
894
|
tomorrow?: string;
|
|
895
895
|
};
|
|
896
896
|
};
|
|
897
|
-
declare const _default$
|
|
897
|
+
declare const _default$u: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<DaySliderProps, "ref"> & React__default.RefAttributes<HTMLIonSlidesElement>>>;
|
|
898
898
|
|
|
899
899
|
type SpecialistWorkDirectionsPropsType = {
|
|
900
900
|
workDirections?: string[] | [];
|
|
@@ -903,7 +903,7 @@ type SpecialistWorkDirectionsPropsType = {
|
|
|
903
903
|
moreLabel?: string;
|
|
904
904
|
hideLabel?: string;
|
|
905
905
|
};
|
|
906
|
-
declare const _default$
|
|
906
|
+
declare const _default$t: React__default.NamedExoticComponent<SpecialistWorkDirectionsPropsType>;
|
|
907
907
|
|
|
908
908
|
type SpecialistProfileViewCardProps = {
|
|
909
909
|
videoLink?: string;
|
|
@@ -913,7 +913,7 @@ type SpecialistProfileViewCardProps = {
|
|
|
913
913
|
isLoading?: boolean;
|
|
914
914
|
videoDurationSeconds?: number;
|
|
915
915
|
};
|
|
916
|
-
declare const _default$
|
|
916
|
+
declare const _default$s: React__default.NamedExoticComponent<SpecialistProfileViewCardProps>;
|
|
917
917
|
|
|
918
918
|
type SpecialistAboutProps = {
|
|
919
919
|
text?: string;
|
|
@@ -922,7 +922,7 @@ type SpecialistAboutProps = {
|
|
|
922
922
|
moreLabel?: string;
|
|
923
923
|
hideLabel?: string;
|
|
924
924
|
};
|
|
925
|
-
declare const _default$
|
|
925
|
+
declare const _default$r: React__default.NamedExoticComponent<SpecialistAboutProps>;
|
|
926
926
|
|
|
927
927
|
type SpecialistEducationCardProps = {
|
|
928
928
|
institutionName?: string;
|
|
@@ -933,7 +933,7 @@ type SpecialistEducationCardProps = {
|
|
|
933
933
|
yearEnd?: number | null;
|
|
934
934
|
showLoader?: boolean;
|
|
935
935
|
};
|
|
936
|
-
declare const _default$
|
|
936
|
+
declare const _default$q: React__default.NamedExoticComponent<SpecialistEducationCardProps>;
|
|
937
937
|
|
|
938
938
|
type SpecialistStatisticsCardProps = {
|
|
939
939
|
trust?: boolean;
|
|
@@ -979,7 +979,7 @@ type BookingScheduleTimeProps = {
|
|
|
979
979
|
onClick?: (index: number, item: string) => void;
|
|
980
980
|
isLoading?: boolean;
|
|
981
981
|
};
|
|
982
|
-
declare const _default$
|
|
982
|
+
declare const _default$p: React__default.NamedExoticComponent<BookingScheduleTimeProps>;
|
|
983
983
|
|
|
984
984
|
type BookingSpecialistInfoProps = {
|
|
985
985
|
name: string;
|
|
@@ -988,7 +988,7 @@ type BookingSpecialistInfoProps = {
|
|
|
988
988
|
avatar?: string;
|
|
989
989
|
isLoading?: boolean;
|
|
990
990
|
};
|
|
991
|
-
declare const _default$
|
|
991
|
+
declare const _default$o: React__default.NamedExoticComponent<BookingSpecialistInfoProps>;
|
|
992
992
|
|
|
993
993
|
type SpecialistCardProps = {
|
|
994
994
|
fullName?: string;
|
|
@@ -1037,7 +1037,7 @@ type SpecialistCardProps = {
|
|
|
1037
1037
|
};
|
|
1038
1038
|
declare const SpecialistCard: React__default.FC<SpecialistCardProps>;
|
|
1039
1039
|
|
|
1040
|
-
declare const _default$
|
|
1040
|
+
declare const _default$n: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
|
|
1041
1041
|
isError?: boolean | undefined;
|
|
1042
1042
|
errorStyle?: "filled" | "unfilled" | undefined;
|
|
1043
1043
|
type?: "number" | "text" | "email" | undefined;
|
|
@@ -1061,11 +1061,11 @@ declare const PasswordInput: React__default.ForwardRefExoticComponent<{
|
|
|
1061
1061
|
error?: string | null | undefined;
|
|
1062
1062
|
} & Omit<React__default.InputHTMLAttributes<HTMLInputElement>, "type"> & React__default.RefAttributes<HTMLInputElement>>;
|
|
1063
1063
|
|
|
1064
|
-
declare const _default$
|
|
1064
|
+
declare const _default$m: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
|
|
1065
1065
|
isError?: boolean | undefined;
|
|
1066
1066
|
} & React__default.TextareaHTMLAttributes<HTMLTextAreaElement> & React__default.RefAttributes<HTMLTextAreaElement>>>;
|
|
1067
1067
|
|
|
1068
|
-
declare const _default$
|
|
1068
|
+
declare const _default$l: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
|
|
1069
1069
|
options: {
|
|
1070
1070
|
id: string | number;
|
|
1071
1071
|
label: string | number;
|
|
@@ -1097,7 +1097,7 @@ type CustomCheckboxProps = {
|
|
|
1097
1097
|
isCheckbox?: boolean;
|
|
1098
1098
|
onChange?: (e: ChangeEvent<HTMLInputElement>) => void;
|
|
1099
1099
|
};
|
|
1100
|
-
declare const _default$
|
|
1100
|
+
declare const _default$k: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<CustomCheckboxProps & React__default.RefAttributes<HTMLInputElement>>>;
|
|
1101
1101
|
|
|
1102
1102
|
type CheckboxListItem = {
|
|
1103
1103
|
id: ReactText;
|
|
@@ -1125,7 +1125,7 @@ type CheckboxListProps = {
|
|
|
1125
1125
|
from: string;
|
|
1126
1126
|
};
|
|
1127
1127
|
};
|
|
1128
|
-
declare const _default$
|
|
1128
|
+
declare const _default$j: React__default.NamedExoticComponent<CheckboxListProps>;
|
|
1129
1129
|
|
|
1130
1130
|
type BookingHeaderProps = {
|
|
1131
1131
|
title?: string;
|
|
@@ -1139,9 +1139,9 @@ type ProgressBarProps = {
|
|
|
1139
1139
|
progress: number;
|
|
1140
1140
|
loaderTitle?: string;
|
|
1141
1141
|
};
|
|
1142
|
-
declare const _default$
|
|
1142
|
+
declare const _default$i: React__default.NamedExoticComponent<ProgressBarProps>;
|
|
1143
1143
|
|
|
1144
|
-
declare const _default$
|
|
1144
|
+
declare const _default$h: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
|
|
1145
1145
|
title: string;
|
|
1146
1146
|
subTitle?: string | undefined;
|
|
1147
1147
|
isError?: boolean | undefined;
|
|
@@ -1172,7 +1172,7 @@ type FlagProps$1 = {
|
|
|
1172
1172
|
dimensions?: number;
|
|
1173
1173
|
className?: string;
|
|
1174
1174
|
};
|
|
1175
|
-
declare const _default$
|
|
1175
|
+
declare const _default$g: React__default.NamedExoticComponent<FlagProps$1>;
|
|
1176
1176
|
|
|
1177
1177
|
type SpecialistLangsProps = {
|
|
1178
1178
|
showLoader?: boolean;
|
|
@@ -1212,7 +1212,7 @@ type ProfileInformationProps = {
|
|
|
1212
1212
|
reviews: string[];
|
|
1213
1213
|
};
|
|
1214
1214
|
} & React__default.HTMLAttributes<HTMLDivElement>;
|
|
1215
|
-
declare const _default$
|
|
1215
|
+
declare const _default$f: React__default.NamedExoticComponent<ProfileInformationProps>;
|
|
1216
1216
|
|
|
1217
1217
|
type SpecialistMatchProps = {
|
|
1218
1218
|
specialistFirstName?: string;
|
|
@@ -1224,7 +1224,7 @@ type SpecialistMatchProps = {
|
|
|
1224
1224
|
howWeMatchThis: string;
|
|
1225
1225
|
};
|
|
1226
1226
|
} & React__default.HTMLAttributes<HTMLDivElement>;
|
|
1227
|
-
declare const _default$
|
|
1227
|
+
declare const _default$e: React__default.NamedExoticComponent<SpecialistMatchProps>;
|
|
1228
1228
|
|
|
1229
1229
|
type SpecialistStatisticProps = {
|
|
1230
1230
|
learnMoreClick: () => void;
|
|
@@ -1244,7 +1244,7 @@ type SpecialistStatisticProps = {
|
|
|
1244
1244
|
bookedSession: string;
|
|
1245
1245
|
};
|
|
1246
1246
|
} & React__default.HTMLAttributes<HTMLDivElement>;
|
|
1247
|
-
declare const _default$
|
|
1247
|
+
declare const _default$d: React__default.NamedExoticComponent<SpecialistStatisticProps>;
|
|
1248
1248
|
|
|
1249
1249
|
type RatingWithLabelProps = {
|
|
1250
1250
|
countOfReviews?: number;
|
|
@@ -1424,14 +1424,14 @@ type TypographyProps = {
|
|
|
1424
1424
|
className?: string;
|
|
1425
1425
|
children: React__default.ReactNode;
|
|
1426
1426
|
};
|
|
1427
|
-
declare const _default$
|
|
1427
|
+
declare const _default$c: React__default.NamedExoticComponent<TypographyProps>;
|
|
1428
1428
|
|
|
1429
1429
|
type AppFooterProps = {
|
|
1430
1430
|
children?: React__default.ReactNode;
|
|
1431
1431
|
transparent?: boolean;
|
|
1432
1432
|
bottomSaveArea?: boolean;
|
|
1433
1433
|
};
|
|
1434
|
-
declare const _default$
|
|
1434
|
+
declare const _default$b: React__default.NamedExoticComponent<AppFooterProps>;
|
|
1435
1435
|
|
|
1436
1436
|
type AvatarRoundVariants = 'circle' | 'drop';
|
|
1437
1437
|
|
|
@@ -1443,14 +1443,14 @@ type AvatarProps = {
|
|
|
1443
1443
|
alt?: string;
|
|
1444
1444
|
showSkeleton?: boolean;
|
|
1445
1445
|
};
|
|
1446
|
-
declare const _default$
|
|
1446
|
+
declare const _default$a: React__default.NamedExoticComponent<AvatarProps>;
|
|
1447
1447
|
|
|
1448
1448
|
type SkeletonProps = {
|
|
1449
1449
|
animated?: boolean;
|
|
1450
1450
|
className?: string;
|
|
1451
1451
|
style?: React__default.CSSProperties;
|
|
1452
1452
|
};
|
|
1453
|
-
declare const _default$
|
|
1453
|
+
declare const _default$9: React__default.NamedExoticComponent<SkeletonProps>;
|
|
1454
1454
|
|
|
1455
1455
|
type ButtonProps = {
|
|
1456
1456
|
fill?: 'outline' | 'clear';
|
|
@@ -1483,7 +1483,7 @@ type FlagProps = {
|
|
|
1483
1483
|
name: string;
|
|
1484
1484
|
className?: string;
|
|
1485
1485
|
};
|
|
1486
|
-
declare const _default$
|
|
1486
|
+
declare const _default$8: React__default.NamedExoticComponent<FlagProps>;
|
|
1487
1487
|
|
|
1488
1488
|
type PictureProps = {
|
|
1489
1489
|
width: number;
|
|
@@ -1498,7 +1498,7 @@ type PictureProps = {
|
|
|
1498
1498
|
alt?: string;
|
|
1499
1499
|
className?: string;
|
|
1500
1500
|
};
|
|
1501
|
-
declare const _default$
|
|
1501
|
+
declare const _default$7: React__default.NamedExoticComponent<PictureProps>;
|
|
1502
1502
|
|
|
1503
1503
|
type BadgeType = 'default' | 'accent';
|
|
1504
1504
|
type BadgeVariants = 'attention' | 'neutral' | 'success' | 'warning' | 'brand' | 'info';
|
|
@@ -1508,7 +1508,7 @@ type BadgeProps = React.ComponentPropsWithoutRef<'span'> & {
|
|
|
1508
1508
|
type?: BadgeType;
|
|
1509
1509
|
};
|
|
1510
1510
|
|
|
1511
|
-
declare const _default$
|
|
1511
|
+
declare const _default$6: React.NamedExoticComponent<BadgeProps>;
|
|
1512
1512
|
|
|
1513
1513
|
type AppHeaderProps = {
|
|
1514
1514
|
fullwidth?: boolean;
|
|
@@ -1578,7 +1578,7 @@ interface TextareaV2Props extends Omit<JSX$1.IonTextarea, 'color' | 'enterkeyhin
|
|
|
1578
1578
|
className?: string;
|
|
1579
1579
|
}
|
|
1580
1580
|
|
|
1581
|
-
declare const _default$
|
|
1581
|
+
declare const _default$5: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TextareaV2Props & React__default.RefAttributes<HTMLIonTextareaElement>>>;
|
|
1582
1582
|
|
|
1583
1583
|
type RatingProps = {
|
|
1584
1584
|
initialRating?: number;
|
|
@@ -1587,7 +1587,7 @@ type RatingProps = {
|
|
|
1587
1587
|
onHover?: (value: number) => void;
|
|
1588
1588
|
};
|
|
1589
1589
|
|
|
1590
|
-
declare const _default$
|
|
1590
|
+
declare const _default$4: React__default.NamedExoticComponent<RatingProps>;
|
|
1591
1591
|
|
|
1592
1592
|
type IconButtonProps = {
|
|
1593
1593
|
icon: JSX.Element;
|
|
@@ -1595,7 +1595,7 @@ type IconButtonProps = {
|
|
|
1595
1595
|
routerLink?: string;
|
|
1596
1596
|
onClick?: (e: React__default.MouseEvent<HTMLIonButtonElement>) => void;
|
|
1597
1597
|
};
|
|
1598
|
-
declare const _default$
|
|
1598
|
+
declare const _default$3: React__default.NamedExoticComponent<IconButtonProps>;
|
|
1599
1599
|
|
|
1600
1600
|
type ToastProviderProps = ToastStateProps;
|
|
1601
1601
|
type MindlyToastProps = {
|
|
@@ -1633,7 +1633,12 @@ type ProgressBar_v2Props = {
|
|
|
1633
1633
|
progress: number;
|
|
1634
1634
|
className?: string;
|
|
1635
1635
|
};
|
|
1636
|
-
declare const _default$
|
|
1636
|
+
declare const _default$2: React__default.NamedExoticComponent<ProgressBar_v2Props>;
|
|
1637
|
+
|
|
1638
|
+
type LoadingProps = {
|
|
1639
|
+
isOpen: boolean;
|
|
1640
|
+
};
|
|
1641
|
+
declare const _default$1: React__default.NamedExoticComponent<LoadingProps>;
|
|
1637
1642
|
|
|
1638
1643
|
declare enum appThemes {
|
|
1639
1644
|
client = "client",
|
|
@@ -1662,8 +1667,6 @@ declare function useEvent<TCallback extends AnyFunction>(callback: TCallback): T
|
|
|
1662
1667
|
type InputRefType = HTMLIonInputElement | HTMLIonTextareaElement;
|
|
1663
1668
|
declare function useAutoFocus<T extends InputRefType>(): React.RefObject<T>;
|
|
1664
1669
|
|
|
1665
|
-
declare function useIsKeyBoardShown(): boolean;
|
|
1666
|
-
|
|
1667
1670
|
declare function useToastContext(): ToastState<MindlyToastProps>;
|
|
1668
1671
|
|
|
1669
1672
|
interface IconProps$l extends React.SVGAttributes<SVGElement> {
|
|
@@ -1912,4 +1915,4 @@ type PushNotificationsIsDisabledBannerProps = {
|
|
|
1912
1915
|
|
|
1913
1916
|
declare function PushNotificationsIsDisabledBanner({ onOpenNativeSettings, className, title, description, buttonText, }: PushNotificationsIsDisabledBannerProps): JSX.Element;
|
|
1914
1917
|
|
|
1915
|
-
export { AppFooter, _default$
|
|
1918
|
+
export { AppFooter, _default$b as AppFooter_v2, AppHeader, AppHeader_v2, ArchivedConsultationCard, Avatar, AvatarProps$1 as AvatarProps, _default$a as Avatar_v2, _default$6 as Badge, _default$p as BookingScheduleTime, _default$o as BookingSpecialistInfo, Button, Button_v2, Calendar, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$K as ChatListItem, _default$I as ChatListSkeleton, _default$J as ChatMessage, ChatMessageSkeleton, _default$j as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, _default$B as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$y as ConsultationModal, _default$w as ConsultationSpecialistCard, Container, Container_v2, ContentCard, CountryOfOriginModal, CustomButton, _default$k as CustomCheckbox, CustomRadioButton, _default$l as CustomSelect, _default$m as CustomTextarea, DatePicker, _default$u as DaySlider, DayToRender, _default$q as EducationCard, _default$H as EmptyChatList, EmptyChatMessages, _default$z as EmptyConsultations, EntryNotFound, EntryNotFoundProps, _default$g as Flag, FlagTypes, _default$8 as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconApple, IconArrowLeft, IconArrowRight, IconBeachAccess, _default$3 as IconButton, IconCalendar, IconCalendarMonth, IconChat3d, IconChatOutline, IconCheckboxChecked, IconCheckboxUnchecked, IconClose, IconEditCalendar, IconEye, IconEyeOff, IconGoogle, IconInvisible, IconLanguage, IconLeftArrow, IconLetter, IconLogout, IconNotificationMuted, IconPause, IconPlus, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconResume, IconSettings, IconSpinner, IconStar, IconStarFilled, IconSuccess, IconTime, IconVerifiedUser, IconVisible, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, LanguagesList, _default$O as LetterAvatar, _default$h as LineFileInput, ListBox, ListBoxItem, ListButton, ListItemType, ListOption, ListSelect, ListSelectProps, _default$1 as Loading, LouseConnect, _default$L as MediaPlayer, Modal, ModalCalendar, ModalSheet, NavigationBar, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, PasswordInput, _default$N as PersonDateTimeCard, _default$7 as Picture, _default$f as ProfileInformation, _default$s as ProfileView, _default$i as ProgressBar, _default$2 as ProgressBar_v2, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$4 as Rating, _default$v as ReSchedule, ReScheduleSuccess, Refresher, ReviewCard, ReviewStatistics, ReviewSwiperSection, RoundButton, RowItemType, RowSelect, RowSelectProps, ScreenInput, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$M as SelectImpressionEmoji, _default$A as SignUpSessionButton, _default$x as SignUpSessionModal, Skeleton, _default$9 as Skeleton_v2, _default as SlotsGrid, _default$r as SpecialistAbout, SpecialistCard, _default$F as SpecialistEducationCard, SpecialistLangs, _default$e as SpecialistMatch, _default$E as SpecialistProfileViewCard, _default$d as SpecialistStatistic, SpecialistStatisticsCard, SpecialistWorkDirections, Spinner, Spinner_v2, StarRating, StatisticsScroll, StatusTag, SuccessScreen, SwitchDeviceCard, TabBar, Tag, _default$n as TextInput, _default$G as Textarea, _default$5 as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, _default$c as Typography, TypographyVariantsEnum, UpdatesCard, UserInfoModal, UsersPsychologistScrollList, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$C as VideoCallInfo, _default$D as VideoPlayer, _default$t as WorkDirections, YourLocalTimeBlock, appThemes, decOfNum, mergeRefs, toast, useAutoFocus, useDomRef, useEvent, useToastContext };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mindly/ui-components",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.13.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"scripts": {
|
|
6
6
|
"clean": "rimraf dist",
|
|
@@ -15,7 +15,6 @@
|
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@babel/polyfill": "^7.12.1",
|
|
18
|
-
"@capacitor/keyboard": "4.1.0",
|
|
19
18
|
"@fontsource/inter": "^5.0.8",
|
|
20
19
|
"@fontsource/inter-tight": "^5.0.12",
|
|
21
20
|
"@ionic/react": "^6.1.11",
|
|
@@ -41,7 +40,6 @@
|
|
|
41
40
|
},
|
|
42
41
|
"peerDependencies": {
|
|
43
42
|
"@babel/polyfill": "^7.12.1",
|
|
44
|
-
"@capacitor/core": "4.6.1",
|
|
45
43
|
"@fontsource/inter": "^5.0.8",
|
|
46
44
|
"@fontsource/inter-tight": "^5.0.12",
|
|
47
45
|
"@ionic/react": "^6.1.11",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare function useIsKeyBoardShown(): boolean;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare function useIsKeyBoardShown(): boolean;
|