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