@mindly/ui-components 5.16.1 → 5.18.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/assets/icons/IconCreditCard.d.ts +2 -0
- package/dist/cjs/lib2/shared/assets/icons/IconGift.d.ts +2 -0
- package/dist/cjs/lib2/shared/assets/icons/IconPaper.d.ts +2 -0
- package/dist/cjs/lib2/shared/assets/icons/IconQuestion.d.ts +2 -0
- package/dist/cjs/lib2/shared/assets/icons/index.d.ts +4 -0
- package/dist/cjs/lib2/shared/ui/ListItems/ListItem.d.ts +15 -0
- package/dist/cjs/lib2/shared/ui/ListItems/ListItems.d.ts +11 -0
- package/dist/cjs/lib2/shared/ui/ListItems/index.d.ts +2 -0
- package/dist/cjs/lib2/shared/ui/ListItems/styles.d.ts +68 -0
- package/dist/cjs/lib2/shared/ui/Toast/styles.d.ts +9 -9
- package/dist/cjs/lib2/shared/ui/index.d.ts +1 -0
- package/dist/esm/index.js +5 -5
- package/dist/esm/lib2/shared/assets/icons/IconCreditCard.d.ts +2 -0
- package/dist/esm/lib2/shared/assets/icons/IconGift.d.ts +2 -0
- package/dist/esm/lib2/shared/assets/icons/IconPaper.d.ts +2 -0
- package/dist/esm/lib2/shared/assets/icons/IconQuestion.d.ts +2 -0
- package/dist/esm/lib2/shared/assets/icons/index.d.ts +4 -0
- package/dist/esm/lib2/shared/ui/ListItems/ListItem.d.ts +15 -0
- package/dist/esm/lib2/shared/ui/ListItems/ListItems.d.ts +11 -0
- package/dist/esm/lib2/shared/ui/ListItems/index.d.ts +2 -0
- package/dist/esm/lib2/shared/ui/ListItems/styles.d.ts +68 -0
- package/dist/esm/lib2/shared/ui/Toast/styles.d.ts +9 -9
- package/dist/esm/lib2/shared/ui/index.d.ts +1 -0
- package/dist/index.d.ts +72 -51
- package/package.json +1 -1
|
@@ -32,6 +32,10 @@ export * from './IconLetter';
|
|
|
32
32
|
export * from './IconSpinner';
|
|
33
33
|
export * from './IconEye';
|
|
34
34
|
export * from './IconEyeOff';
|
|
35
|
+
export * from './IconGift';
|
|
36
|
+
export * from './IconCreditCard';
|
|
37
|
+
export * from './IconQuestion';
|
|
38
|
+
export * from './IconPaper';
|
|
35
39
|
export * from './IconChat3d';
|
|
36
40
|
export * from './IconNotficationMuted';
|
|
37
41
|
export * from './IconCheckSmall';
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
type ListItemProps = React.HTMLAttributes<HTMLIonItemElement> & {
|
|
3
|
+
leftContent?: React.ReactNode;
|
|
4
|
+
rightContent?: React.ReactNode;
|
|
5
|
+
withBorders?: boolean;
|
|
6
|
+
isDisabled?: boolean;
|
|
7
|
+
};
|
|
8
|
+
export declare const ListItem: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLIonItemElement> & {
|
|
9
|
+
leftContent?: React.ReactNode;
|
|
10
|
+
rightContent?: React.ReactNode;
|
|
11
|
+
withBorders?: boolean | undefined;
|
|
12
|
+
isDisabled?: boolean | undefined;
|
|
13
|
+
} & React.RefAttributes<HTMLIonItemElement>>;
|
|
14
|
+
declare const _default: React.NamedExoticComponent<ListItemProps>;
|
|
15
|
+
export default _default;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
type ListItemsProps = React.HTMLAttributes<HTMLIonListElement> & {
|
|
3
|
+
withBorders?: boolean;
|
|
4
|
+
};
|
|
5
|
+
export declare const ListItems: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLIonListElement> & {
|
|
6
|
+
withBorders?: boolean | undefined;
|
|
7
|
+
} & {
|
|
8
|
+
children?: React.ReactNode;
|
|
9
|
+
} & React.RefAttributes<HTMLIonListElement>>;
|
|
10
|
+
declare const _default: React.NamedExoticComponent<ListItemsProps>;
|
|
11
|
+
export default _default;
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
export declare const listItemsStyles: import("tailwind-variants").TVReturnType<{
|
|
2
|
+
withBorders: {
|
|
3
|
+
true: "";
|
|
4
|
+
};
|
|
5
|
+
isDisabled: {
|
|
6
|
+
true: "";
|
|
7
|
+
};
|
|
8
|
+
}, {
|
|
9
|
+
items: string;
|
|
10
|
+
item: string;
|
|
11
|
+
itemInnerContainer: string;
|
|
12
|
+
itemInnerContentWrapper: string;
|
|
13
|
+
itemInnerContent: string;
|
|
14
|
+
}, "", import("tailwind-variants/dist/config").TVConfig<{
|
|
15
|
+
withBorders: {
|
|
16
|
+
true: "";
|
|
17
|
+
};
|
|
18
|
+
isDisabled: {
|
|
19
|
+
true: "";
|
|
20
|
+
};
|
|
21
|
+
}, {
|
|
22
|
+
withBorders: {
|
|
23
|
+
true: "";
|
|
24
|
+
};
|
|
25
|
+
isDisabled: {
|
|
26
|
+
true: "";
|
|
27
|
+
};
|
|
28
|
+
}>, {
|
|
29
|
+
withBorders: {
|
|
30
|
+
true: "";
|
|
31
|
+
};
|
|
32
|
+
isDisabled: {
|
|
33
|
+
true: "";
|
|
34
|
+
};
|
|
35
|
+
}, {
|
|
36
|
+
items: string;
|
|
37
|
+
item: string;
|
|
38
|
+
itemInnerContainer: string;
|
|
39
|
+
itemInnerContentWrapper: string;
|
|
40
|
+
itemInnerContent: string;
|
|
41
|
+
}, import("tailwind-variants").TVReturnType<{
|
|
42
|
+
withBorders: {
|
|
43
|
+
true: "";
|
|
44
|
+
};
|
|
45
|
+
isDisabled: {
|
|
46
|
+
true: "";
|
|
47
|
+
};
|
|
48
|
+
}, {
|
|
49
|
+
items: string;
|
|
50
|
+
item: string;
|
|
51
|
+
itemInnerContainer: string;
|
|
52
|
+
itemInnerContentWrapper: string;
|
|
53
|
+
itemInnerContent: string;
|
|
54
|
+
}, "", import("tailwind-variants/dist/config").TVConfig<{
|
|
55
|
+
withBorders: {
|
|
56
|
+
true: "";
|
|
57
|
+
};
|
|
58
|
+
isDisabled: {
|
|
59
|
+
true: "";
|
|
60
|
+
};
|
|
61
|
+
}, {
|
|
62
|
+
withBorders: {
|
|
63
|
+
true: "";
|
|
64
|
+
};
|
|
65
|
+
isDisabled: {
|
|
66
|
+
true: "";
|
|
67
|
+
};
|
|
68
|
+
}>, unknown, unknown, undefined>>;
|
|
@@ -1,48 +1,48 @@
|
|
|
1
1
|
export declare const toastStyles: import("tailwind-variants").TVReturnType<{
|
|
2
2
|
type: {
|
|
3
|
-
success: "bg-badges-success-main";
|
|
3
|
+
success: " bg-badges-success-main";
|
|
4
4
|
error: "bg-color-info-red-not-red";
|
|
5
5
|
attention: "bg-badges-attention-main";
|
|
6
6
|
info: "bg-color-info-blue";
|
|
7
7
|
};
|
|
8
|
-
}, undefined, "toast fixed left-0 right-0 w-full h-[80px]", import("tailwind-variants/dist/config").TVConfig<{
|
|
8
|
+
}, undefined, "toast fixed top-0 left-0 right-0 w-full h-[80px]", import("tailwind-variants/dist/config").TVConfig<{
|
|
9
9
|
type: {
|
|
10
|
-
success: "bg-badges-success-main";
|
|
10
|
+
success: " bg-badges-success-main";
|
|
11
11
|
error: "bg-color-info-red-not-red";
|
|
12
12
|
attention: "bg-badges-attention-main";
|
|
13
13
|
info: "bg-color-info-blue";
|
|
14
14
|
};
|
|
15
15
|
}, {
|
|
16
16
|
type: {
|
|
17
|
-
success: "bg-badges-success-main";
|
|
17
|
+
success: " bg-badges-success-main";
|
|
18
18
|
error: "bg-color-info-red-not-red";
|
|
19
19
|
attention: "bg-badges-attention-main";
|
|
20
20
|
info: "bg-color-info-blue";
|
|
21
21
|
};
|
|
22
22
|
}>, {
|
|
23
23
|
type: {
|
|
24
|
-
success: "bg-badges-success-main";
|
|
24
|
+
success: " bg-badges-success-main";
|
|
25
25
|
error: "bg-color-info-red-not-red";
|
|
26
26
|
attention: "bg-badges-attention-main";
|
|
27
27
|
info: "bg-color-info-blue";
|
|
28
28
|
};
|
|
29
29
|
}, undefined, import("tailwind-variants").TVReturnType<{
|
|
30
30
|
type: {
|
|
31
|
-
success: "bg-badges-success-main";
|
|
31
|
+
success: " bg-badges-success-main";
|
|
32
32
|
error: "bg-color-info-red-not-red";
|
|
33
33
|
attention: "bg-badges-attention-main";
|
|
34
34
|
info: "bg-color-info-blue";
|
|
35
35
|
};
|
|
36
|
-
}, undefined, "toast fixed left-0 right-0 w-full h-[80px]", import("tailwind-variants/dist/config").TVConfig<{
|
|
36
|
+
}, undefined, "toast fixed top-0 left-0 right-0 w-full h-[80px]", import("tailwind-variants/dist/config").TVConfig<{
|
|
37
37
|
type: {
|
|
38
|
-
success: "bg-badges-success-main";
|
|
38
|
+
success: " bg-badges-success-main";
|
|
39
39
|
error: "bg-color-info-red-not-red";
|
|
40
40
|
attention: "bg-badges-attention-main";
|
|
41
41
|
info: "bg-color-info-blue";
|
|
42
42
|
};
|
|
43
43
|
}, {
|
|
44
44
|
type: {
|
|
45
|
-
success: "bg-badges-success-main";
|
|
45
|
+
success: " bg-badges-success-main";
|
|
46
46
|
error: "bg-color-info-red-not-red";
|
|
47
47
|
attention: "bg-badges-attention-main";
|
|
48
48
|
info: "bg-color-info-blue";
|
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$Q: 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$P: 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$O: 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$N: <TCameraTrack extends Playable | undefined, TAudioTrack extends Playable | undefined>({ fullwidth, cameraTrack, audioTrack, isVideoTrackMuted, isAudioTrackMuted, networkQuality, fallbackAvatar, fallbackAvatarDimensions, fallbackName, showControls, isScreenSharing, ...props }: MediaPlayerProps<TCameraTrack, TAudioTrack>) => JSX.Element;
|
|
436
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$M: 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$L: React__default.NamedExoticComponent<ChatMessageProps>;
|
|
480
480
|
|
|
481
481
|
declare const ChatMessageSkeleton: () => JSX.Element;
|
|
482
482
|
|
|
483
|
-
declare const _default$
|
|
483
|
+
declare const _default$K: 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$J: 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$I: 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$H: 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$G: 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$F: 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$E: 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$D: 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$C: 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$B: 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$A: 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$z: 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$y: 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$x: 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$w: 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$v: 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$u: 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$t: 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$s: 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$r: 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$q: 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$p: 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$o: 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$n: 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$m: 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$l: 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$k: React__default.NamedExoticComponent<ProgressBarProps>;
|
|
1143
1143
|
|
|
1144
|
-
declare const _default$
|
|
1144
|
+
declare const _default$j: 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$i: 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$h: 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$g: 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$f: React__default.NamedExoticComponent<SpecialistStatisticProps>;
|
|
1248
1248
|
|
|
1249
1249
|
type RatingWithLabelProps = {
|
|
1250
1250
|
countOfReviews?: number;
|
|
@@ -1425,14 +1425,14 @@ type TypographyProps = {
|
|
|
1425
1425
|
className?: string;
|
|
1426
1426
|
children: React__default.ReactNode;
|
|
1427
1427
|
};
|
|
1428
|
-
declare const _default$
|
|
1428
|
+
declare const _default$e: React__default.NamedExoticComponent<TypographyProps>;
|
|
1429
1429
|
|
|
1430
1430
|
type AppFooterProps = {
|
|
1431
1431
|
children?: React__default.ReactNode;
|
|
1432
1432
|
transparent?: boolean;
|
|
1433
1433
|
bottomSaveArea?: boolean;
|
|
1434
1434
|
};
|
|
1435
|
-
declare const _default$
|
|
1435
|
+
declare const _default$d: React__default.NamedExoticComponent<AppFooterProps>;
|
|
1436
1436
|
|
|
1437
1437
|
type AvatarRoundVariants = 'circle' | 'drop';
|
|
1438
1438
|
|
|
@@ -1444,14 +1444,14 @@ type AvatarProps = {
|
|
|
1444
1444
|
alt?: string;
|
|
1445
1445
|
showSkeleton?: boolean;
|
|
1446
1446
|
};
|
|
1447
|
-
declare const _default$
|
|
1447
|
+
declare const _default$c: React__default.NamedExoticComponent<AvatarProps>;
|
|
1448
1448
|
|
|
1449
1449
|
type SkeletonProps = {
|
|
1450
1450
|
animated?: boolean;
|
|
1451
1451
|
className?: string;
|
|
1452
1452
|
style?: React__default.CSSProperties;
|
|
1453
1453
|
};
|
|
1454
|
-
declare const _default$
|
|
1454
|
+
declare const _default$b: React__default.NamedExoticComponent<SkeletonProps>;
|
|
1455
1455
|
|
|
1456
1456
|
type ButtonProps = {
|
|
1457
1457
|
fill?: 'outline' | 'clear';
|
|
@@ -1484,7 +1484,7 @@ type FlagProps = {
|
|
|
1484
1484
|
name: string;
|
|
1485
1485
|
className?: string;
|
|
1486
1486
|
};
|
|
1487
|
-
declare const _default$
|
|
1487
|
+
declare const _default$a: React__default.NamedExoticComponent<FlagProps>;
|
|
1488
1488
|
|
|
1489
1489
|
type PictureProps = {
|
|
1490
1490
|
width: number;
|
|
@@ -1499,7 +1499,7 @@ type PictureProps = {
|
|
|
1499
1499
|
alt?: string;
|
|
1500
1500
|
className?: string;
|
|
1501
1501
|
};
|
|
1502
|
-
declare const _default$
|
|
1502
|
+
declare const _default$9: React__default.NamedExoticComponent<PictureProps>;
|
|
1503
1503
|
|
|
1504
1504
|
type BadgeType = 'default' | 'accent';
|
|
1505
1505
|
type BadgeVariants = 'attention' | 'neutral' | 'success' | 'warning' | 'brand' | 'info';
|
|
@@ -1509,7 +1509,7 @@ type BadgeProps = React.ComponentPropsWithoutRef<'span'> & {
|
|
|
1509
1509
|
type?: BadgeType;
|
|
1510
1510
|
};
|
|
1511
1511
|
|
|
1512
|
-
declare const _default$
|
|
1512
|
+
declare const _default$8: React.NamedExoticComponent<BadgeProps>;
|
|
1513
1513
|
|
|
1514
1514
|
type AppHeaderProps = {
|
|
1515
1515
|
fullwidth?: boolean;
|
|
@@ -1579,7 +1579,7 @@ interface TextareaV2Props extends Omit<JSX$1.IonTextarea, 'color' | 'enterkeyhin
|
|
|
1579
1579
|
className?: string;
|
|
1580
1580
|
}
|
|
1581
1581
|
|
|
1582
|
-
declare const _default$
|
|
1582
|
+
declare const _default$7: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TextareaV2Props & React__default.RefAttributes<HTMLIonTextareaElement>>>;
|
|
1583
1583
|
|
|
1584
1584
|
type RatingProps = {
|
|
1585
1585
|
initialRating?: number;
|
|
@@ -1588,7 +1588,7 @@ type RatingProps = {
|
|
|
1588
1588
|
onHover?: (value: number) => void;
|
|
1589
1589
|
};
|
|
1590
1590
|
|
|
1591
|
-
declare const _default$
|
|
1591
|
+
declare const _default$6: React__default.NamedExoticComponent<RatingProps>;
|
|
1592
1592
|
|
|
1593
1593
|
type IconButtonProps = {
|
|
1594
1594
|
icon: JSX.Element;
|
|
@@ -1596,7 +1596,7 @@ type IconButtonProps = {
|
|
|
1596
1596
|
routerLink?: string;
|
|
1597
1597
|
onClick?: (e: React__default.MouseEvent<HTMLIonButtonElement>) => void;
|
|
1598
1598
|
};
|
|
1599
|
-
declare const _default$
|
|
1599
|
+
declare const _default$5: React__default.NamedExoticComponent<IconButtonProps>;
|
|
1600
1600
|
|
|
1601
1601
|
type ToastProviderProps = ToastStateProps;
|
|
1602
1602
|
type MindlyToastProps = {
|
|
@@ -1634,12 +1634,25 @@ type ProgressBar_v2Props = {
|
|
|
1634
1634
|
progress: number;
|
|
1635
1635
|
className?: string;
|
|
1636
1636
|
};
|
|
1637
|
-
declare const _default$
|
|
1637
|
+
declare const _default$4: React__default.NamedExoticComponent<ProgressBar_v2Props>;
|
|
1638
1638
|
|
|
1639
1639
|
type LoadingProps = {
|
|
1640
1640
|
isOpen: boolean;
|
|
1641
1641
|
};
|
|
1642
|
-
declare const _default$
|
|
1642
|
+
declare const _default$3: React__default.NamedExoticComponent<LoadingProps>;
|
|
1643
|
+
|
|
1644
|
+
type ListItemsProps = React.HTMLAttributes<HTMLIonListElement> & {
|
|
1645
|
+
withBorders?: boolean;
|
|
1646
|
+
};
|
|
1647
|
+
declare const _default$2: React.NamedExoticComponent<ListItemsProps>;
|
|
1648
|
+
|
|
1649
|
+
type ListItemProps = React.HTMLAttributes<HTMLIonItemElement> & {
|
|
1650
|
+
leftContent?: React.ReactNode;
|
|
1651
|
+
rightContent?: React.ReactNode;
|
|
1652
|
+
withBorders?: boolean;
|
|
1653
|
+
isDisabled?: boolean;
|
|
1654
|
+
};
|
|
1655
|
+
declare const _default$1: React.NamedExoticComponent<ListItemProps>;
|
|
1643
1656
|
|
|
1644
1657
|
declare enum appThemes {
|
|
1645
1658
|
client = "client",
|
|
@@ -1827,6 +1840,14 @@ declare const IconEye: FC<React.SVGAttributes<SVGElement>>;
|
|
|
1827
1840
|
|
|
1828
1841
|
declare const IconEyeOff: FC<React.SVGAttributes<SVGElement>>;
|
|
1829
1842
|
|
|
1843
|
+
declare const IconGift: React.FC<React.SVGAttributes<SVGElement>>;
|
|
1844
|
+
|
|
1845
|
+
declare const IconCreditCard: React.FC<React.SVGAttributes<SVGElement>>;
|
|
1846
|
+
|
|
1847
|
+
declare const IconQuestion: React.FC<React.SVGAttributes<SVGElement>>;
|
|
1848
|
+
|
|
1849
|
+
declare const IconPaper: React.FC<React.SVGAttributes<SVGElement>>;
|
|
1850
|
+
|
|
1830
1851
|
declare const IconChat3d: (props: SVGProps<SVGSVGElement>) => JSX.Element;
|
|
1831
1852
|
|
|
1832
1853
|
declare const IconNotificationMuted: (props: SVGProps<SVGSVGElement>) => JSX.Element;
|
|
@@ -1918,4 +1939,4 @@ type PushNotificationsIsDisabledBannerProps = {
|
|
|
1918
1939
|
|
|
1919
1940
|
declare function PushNotificationsIsDisabledBanner({ onOpenNativeSettings, className, title, description, buttonText, }: PushNotificationsIsDisabledBannerProps): JSX.Element;
|
|
1920
1941
|
|
|
1921
|
-
export { AppFooter, _default$
|
|
1942
|
+
export { AppFooter, _default$d as AppFooter_v2, AppHeader, AppHeader_v2, ArchivedConsultationCard, Avatar, AvatarProps$1 as AvatarProps, _default$c as Avatar_v2, _default$8 as Badge, _default$r as BookingScheduleTime, _default$q as BookingSpecialistInfo, Button, Button_v2, Calendar, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$M as ChatListItem, _default$K as ChatListSkeleton, _default$L as ChatMessage, ChatMessageSkeleton, _default$l as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, _default$D as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$A as ConsultationModal, _default$y as ConsultationSpecialistCard, Container, Container_v2, ContentCard, CountryOfOriginModal, CustomButton, _default$m as CustomCheckbox, CustomRadioButton, _default$n as CustomSelect, _default$o as CustomTextarea, DatePicker, _default$w as DaySlider, DayToRender, _default$s as EducationCard, _default$J as EmptyChatList, EmptyChatMessages, _default$B as EmptyConsultations, EntryNotFound, EntryNotFoundProps, _default$i as Flag, FlagTypes, _default$a as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconApple, IconArrowLeft, IconArrowRight, IconBeachAccess, _default$5 as IconButton, IconCalendar, IconCalendarMonth, IconChat3d, IconChatOutline, IconCheckSmall, IconCheckboxChecked, IconCheckboxUnchecked, IconClose, IconCreditCard, IconEditCalendar, IconEye, IconEyeOff, IconGift, IconGoogle, IconInvisible, IconLanguage, IconLeftArrow, IconLetter, IconLogout, IconNotificationMuted, IconPaper, IconPause, IconPlus, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconQuestion, IconResume, IconSettings, IconSpinner, IconStar, IconStarFilled, IconSuccess, IconTime, IconVerifiedUser, IconVisible, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, LanguagesList, _default$Q as LetterAvatar, _default$j as LineFileInput, ListBox, ListBoxItem, ListButton, _default$1 as ListItem, ListItemType, _default$2 as ListItems, ListOption, ListSelect, ListSelectProps, _default$3 as Loading, LouseConnect, _default$N as MediaPlayer, Modal, ModalCalendar, ModalSheet, NavigationBar, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, PasswordInput, _default$P as PersonDateTimeCard, _default$9 as Picture, _default$h as ProfileInformation, _default$u as ProfileView, _default$k as ProgressBar, _default$4 as ProgressBar_v2, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$6 as Rating, _default$x as ReSchedule, ReScheduleSuccess, Refresher, ReviewCard, ReviewStatistics, ReviewSwiperSection, RoundButton, RowItemType, RowSelect, RowSelectProps, ScreenInput, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$O as SelectImpressionEmoji, _default$C as SignUpSessionButton, _default$z as SignUpSessionModal, Skeleton, _default$b as Skeleton_v2, _default as SlotsGrid, _default$t as SpecialistAbout, SpecialistCard, _default$H as SpecialistEducationCard, SpecialistLangs, _default$g as SpecialistMatch, _default$G as SpecialistProfileViewCard, _default$f as SpecialistStatistic, SpecialistStatisticsCard, SpecialistWorkDirections, Spinner, Spinner_v2, StarRating, StatisticsScroll, StatusTag, SuccessScreen, SwitchDeviceCard, TabBar, Tag, _default$p as TextInput, _default$I as Textarea, _default$7 as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, _default$e as Typography, TypographyVariantsEnum, UpdatesCard, UserInfoModal, UsersPsychologistScrollList, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$E as VideoCallInfo, _default$F as VideoPlayer, _default$v as WorkDirections, YourLocalTimeBlock, appThemes, decOfNum, mergeRefs, toast, useAutoFocus, useDomRef, useEvent, useToastContext };
|