@mindly/ui-components 6.3.1 → 6.4.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/features/OnBoardingFlow/OnBoardingGoalSelectionScreenPreviewFeature/OnBoardingGoalSelectionScreenPreviewFeature.d.ts +16 -0
- package/dist/cjs/lib2/features/OnBoardingFlow/OnBoardingGoalSelectionScreenPreviewFeature/constants.d.ts +7 -0
- package/dist/cjs/lib2/features/OnBoardingFlow/OnBoardingGoalSelectionScreenPreviewFeature/index.d.ts +1 -0
- package/dist/cjs/lib2/features/OnBoardingFlow/index.d.ts +1 -0
- package/dist/cjs/lib2/shared/types/onBoardingFlow.type.d.ts +17 -2
- package/dist/cjs/lib2/shared/ui/ListBox/ListBox.d.ts +1 -1
- package/dist/cjs/lib2/shared/ui/ListBox/types.d.ts +4 -0
- package/dist/cjs/lib2/shared/ui/ListBoxItem/ListBoxItem.d.ts +3 -1
- package/dist/cjs/lib2/shared/ui/ListBoxItem/types.d.ts +1 -0
- package/dist/esm/index.js +5 -5
- package/dist/esm/lib2/features/OnBoardingFlow/OnBoardingGoalSelectionScreenPreviewFeature/OnBoardingGoalSelectionScreenPreviewFeature.d.ts +16 -0
- package/dist/esm/lib2/features/OnBoardingFlow/OnBoardingGoalSelectionScreenPreviewFeature/constants.d.ts +7 -0
- package/dist/esm/lib2/features/OnBoardingFlow/OnBoardingGoalSelectionScreenPreviewFeature/index.d.ts +1 -0
- package/dist/esm/lib2/features/OnBoardingFlow/index.d.ts +1 -0
- package/dist/esm/lib2/shared/types/onBoardingFlow.type.d.ts +17 -2
- package/dist/esm/lib2/shared/ui/ListBox/ListBox.d.ts +1 -1
- package/dist/esm/lib2/shared/ui/ListBox/types.d.ts +4 -0
- package/dist/esm/lib2/shared/ui/ListBoxItem/ListBoxItem.d.ts +3 -1
- package/dist/esm/lib2/shared/ui/ListBoxItem/types.d.ts +1 -0
- package/dist/index.d.ts +103 -70
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -79,7 +79,7 @@ type LetterAvatarProps = {
|
|
|
79
79
|
fontSize?: number;
|
|
80
80
|
onClick?: () => void;
|
|
81
81
|
};
|
|
82
|
-
declare const _default$
|
|
82
|
+
declare const _default$1k: React__default.NamedExoticComponent<LetterAvatarProps>;
|
|
83
83
|
|
|
84
84
|
type ImageWithFallbackProps = JSX.IntrinsicElements['img'] & {
|
|
85
85
|
onErrorContent: React__default.ReactElement;
|
|
@@ -178,7 +178,7 @@ type MediaPlayerProps<TCameraTrack extends Playable | undefined, TAudioTrack ext
|
|
|
178
178
|
showControls: boolean;
|
|
179
179
|
isScreenSharing?: boolean;
|
|
180
180
|
} & HTMLAttributes<HTMLDivElement>;
|
|
181
|
-
declare const _default$
|
|
181
|
+
declare const _default$1j: <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;
|
|
182
182
|
|
|
183
183
|
type RoundButtonPropsType = {
|
|
184
184
|
disabled?: boolean;
|
|
@@ -207,7 +207,7 @@ type ChatListItemProps = {
|
|
|
207
207
|
isDisabled?: boolean;
|
|
208
208
|
t?: WithTranslation['t'];
|
|
209
209
|
};
|
|
210
|
-
declare const _default$
|
|
210
|
+
declare const _default$1i: React__default.NamedExoticComponent<ChatListItemProps>;
|
|
211
211
|
|
|
212
212
|
type ChatMessageProps = {
|
|
213
213
|
message: string | File;
|
|
@@ -235,11 +235,11 @@ type ChatMessageProps = {
|
|
|
235
235
|
onClickHandler: () => void;
|
|
236
236
|
}[] | null;
|
|
237
237
|
};
|
|
238
|
-
declare const _default$
|
|
238
|
+
declare const _default$1h: React__default.NamedExoticComponent<ChatMessageProps>;
|
|
239
239
|
|
|
240
240
|
declare const ChatMessageSkeleton: () => react_jsx_runtime.JSX.Element;
|
|
241
241
|
|
|
242
|
-
declare const _default$
|
|
242
|
+
declare const _default$1g: React__default.MemoExoticComponent<() => react_jsx_runtime.JSX.Element>;
|
|
243
243
|
|
|
244
244
|
type EmptyChatList = {
|
|
245
245
|
title?: string;
|
|
@@ -249,7 +249,7 @@ type EmptyChatList = {
|
|
|
249
249
|
onClick?: () => void;
|
|
250
250
|
};
|
|
251
251
|
declare const EmptyChatList: FC<EmptyChatList>;
|
|
252
|
-
declare const _default$
|
|
252
|
+
declare const _default$1f: React__default.NamedExoticComponent<EmptyChatList>;
|
|
253
253
|
|
|
254
254
|
type EmptyChatMessagesProps = {
|
|
255
255
|
title?: string;
|
|
@@ -274,7 +274,7 @@ type TextareaProps = {
|
|
|
274
274
|
onFileSelect?: (file: File | null, type: 'file' | 'image' | 'video', fileInfo: FileInfoType) => void;
|
|
275
275
|
t?: WithTranslation['t'];
|
|
276
276
|
};
|
|
277
|
-
declare const _default$
|
|
277
|
+
declare const _default$1e: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TextareaProps & React__default.RefAttributes<HTMLIonFooterElement>>>;
|
|
278
278
|
|
|
279
279
|
type UpdatesPopupPropsType = {
|
|
280
280
|
text?: string;
|
|
@@ -356,7 +356,7 @@ type VideoPlayerProps = {
|
|
|
356
356
|
closeModalHandler?: () => void;
|
|
357
357
|
onErrorContent: React__default.ReactElement;
|
|
358
358
|
} & JSX$1.IonModal;
|
|
359
|
-
declare const _default$
|
|
359
|
+
declare const _default$1d: React__default.NamedExoticComponent<VideoPlayerProps>;
|
|
360
360
|
|
|
361
361
|
type NotSupportModalProps = {
|
|
362
362
|
closeModal?: () => void;
|
|
@@ -392,7 +392,7 @@ type VideoCallInfoProps = {
|
|
|
392
392
|
abbreviatedSeconds: string;
|
|
393
393
|
};
|
|
394
394
|
};
|
|
395
|
-
declare const _default$
|
|
395
|
+
declare const _default$1c: React__default.NamedExoticComponent<VideoCallInfoProps>;
|
|
396
396
|
|
|
397
397
|
declare enum ConsultationCardType {
|
|
398
398
|
FEATURE = "feature",
|
|
@@ -428,14 +428,14 @@ type ConsultationCardProps = {
|
|
|
428
428
|
isBlockedText?: string;
|
|
429
429
|
};
|
|
430
430
|
|
|
431
|
-
declare const _default$
|
|
431
|
+
declare const _default$1b: React__default.NamedExoticComponent<ConsultationCardProps>;
|
|
432
432
|
|
|
433
433
|
type SignUpSessionButtonProps = {
|
|
434
434
|
label: string;
|
|
435
435
|
isLoading?: boolean;
|
|
436
436
|
onClick?: () => void;
|
|
437
437
|
};
|
|
438
|
-
declare const _default$
|
|
438
|
+
declare const _default$1a: React__default.NamedExoticComponent<SignUpSessionButtonProps>;
|
|
439
439
|
|
|
440
440
|
type EmptyConsultationsProps = {
|
|
441
441
|
title: string;
|
|
@@ -443,7 +443,7 @@ type EmptyConsultationsProps = {
|
|
|
443
443
|
buttonLabel?: string;
|
|
444
444
|
onClick?: () => void;
|
|
445
445
|
};
|
|
446
|
-
declare const _default$
|
|
446
|
+
declare const _default$19: React__default.NamedExoticComponent<EmptyConsultationsProps>;
|
|
447
447
|
|
|
448
448
|
type ConsultationModalProps = {
|
|
449
449
|
isOpen: boolean;
|
|
@@ -479,7 +479,7 @@ type ConsultationModalProps = {
|
|
|
479
479
|
started?: string;
|
|
480
480
|
};
|
|
481
481
|
};
|
|
482
|
-
declare const _default$
|
|
482
|
+
declare const _default$18: React__default.NamedExoticComponent<ConsultationModalProps>;
|
|
483
483
|
|
|
484
484
|
type SpecialistData = {
|
|
485
485
|
id: string;
|
|
@@ -497,7 +497,7 @@ type SignUpSessionModalProps = {
|
|
|
497
497
|
title: string;
|
|
498
498
|
cancelBtnLabel: string;
|
|
499
499
|
};
|
|
500
|
-
declare const _default$
|
|
500
|
+
declare const _default$17: React__default.NamedExoticComponent<SignUpSessionModalProps>;
|
|
501
501
|
|
|
502
502
|
type ConsultationSpecialistCardProps = {
|
|
503
503
|
id: string;
|
|
@@ -509,7 +509,7 @@ type ConsultationSpecialistCardProps = {
|
|
|
509
509
|
signInBtnLabel: string;
|
|
510
510
|
isBlockedText?: string;
|
|
511
511
|
};
|
|
512
|
-
declare const _default$
|
|
512
|
+
declare const _default$16: React__default.NamedExoticComponent<ConsultationSpecialistCardProps>;
|
|
513
513
|
|
|
514
514
|
type UserInfoModalProps = {
|
|
515
515
|
isOpen: boolean;
|
|
@@ -580,7 +580,7 @@ type ReScheduleProps = {
|
|
|
580
580
|
btnLabel: string;
|
|
581
581
|
};
|
|
582
582
|
};
|
|
583
|
-
declare const _default$
|
|
583
|
+
declare const _default$15: React__default.NamedExoticComponent<ReScheduleProps>;
|
|
584
584
|
|
|
585
585
|
type ReScheduleSuccessProps = {
|
|
586
586
|
name: string;
|
|
@@ -618,7 +618,7 @@ type DaySliderProps = JSX$1.IonSlides & HTMLAttributes<HTMLIonSlidesElement> & R
|
|
|
618
618
|
tomorrow?: string;
|
|
619
619
|
};
|
|
620
620
|
};
|
|
621
|
-
declare const _default$
|
|
621
|
+
declare const _default$14: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<DaySliderProps, "ref"> & React__default.RefAttributes<HTMLIonSlidesElement>>>;
|
|
622
622
|
|
|
623
623
|
type SpecialistWorkDirectionsPropsType = {
|
|
624
624
|
workDirections?: string[] | [];
|
|
@@ -627,7 +627,7 @@ type SpecialistWorkDirectionsPropsType = {
|
|
|
627
627
|
moreLabel?: string;
|
|
628
628
|
hideLabel?: string;
|
|
629
629
|
};
|
|
630
|
-
declare const _default$
|
|
630
|
+
declare const _default$13: React__default.NamedExoticComponent<SpecialistWorkDirectionsPropsType>;
|
|
631
631
|
|
|
632
632
|
type SpecialistProfileViewCardProps = {
|
|
633
633
|
videoLink?: string;
|
|
@@ -637,7 +637,7 @@ type SpecialistProfileViewCardProps = {
|
|
|
637
637
|
isLoading?: boolean;
|
|
638
638
|
videoDurationSeconds?: number;
|
|
639
639
|
};
|
|
640
|
-
declare const _default$
|
|
640
|
+
declare const _default$12: React__default.NamedExoticComponent<SpecialistProfileViewCardProps>;
|
|
641
641
|
|
|
642
642
|
type SpecialistAboutProps = {
|
|
643
643
|
text?: string;
|
|
@@ -646,7 +646,7 @@ type SpecialistAboutProps = {
|
|
|
646
646
|
moreLabel?: string;
|
|
647
647
|
hideLabel?: string;
|
|
648
648
|
};
|
|
649
|
-
declare const _default$
|
|
649
|
+
declare const _default$11: React__default.NamedExoticComponent<SpecialistAboutProps>;
|
|
650
650
|
|
|
651
651
|
type SpecialistEducationCardProps = {
|
|
652
652
|
institutionName?: string;
|
|
@@ -657,7 +657,7 @@ type SpecialistEducationCardProps = {
|
|
|
657
657
|
yearEnd?: number | null;
|
|
658
658
|
showLoader?: boolean;
|
|
659
659
|
};
|
|
660
|
-
declare const _default
|
|
660
|
+
declare const _default$10: React__default.NamedExoticComponent<SpecialistEducationCardProps>;
|
|
661
661
|
|
|
662
662
|
type SpecialistStatisticsCardProps = {
|
|
663
663
|
trust?: boolean;
|
|
@@ -703,7 +703,7 @@ type BookingScheduleTimeProps = {
|
|
|
703
703
|
onClick?: (index: number, item: string) => void;
|
|
704
704
|
isLoading?: boolean;
|
|
705
705
|
};
|
|
706
|
-
declare const _default
|
|
706
|
+
declare const _default$$: React__default.NamedExoticComponent<BookingScheduleTimeProps>;
|
|
707
707
|
|
|
708
708
|
type BookingSpecialistInfoProps = {
|
|
709
709
|
name: string;
|
|
@@ -712,7 +712,7 @@ type BookingSpecialistInfoProps = {
|
|
|
712
712
|
avatar?: string;
|
|
713
713
|
isLoading?: boolean;
|
|
714
714
|
};
|
|
715
|
-
declare const _default$
|
|
715
|
+
declare const _default$_: React__default.NamedExoticComponent<BookingSpecialistInfoProps>;
|
|
716
716
|
|
|
717
717
|
declare enum TypographyVariantsEnum {
|
|
718
718
|
Title48Bold = "Title/48 Bold",
|
|
@@ -762,7 +762,7 @@ type TypographyProps = {
|
|
|
762
762
|
id?: string;
|
|
763
763
|
};
|
|
764
764
|
|
|
765
|
-
declare const _default$
|
|
765
|
+
declare const _default$Z: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TypographyProps & React__default.RefAttributes<HTMLDivElement>>>;
|
|
766
766
|
|
|
767
767
|
type AlertCardVariants = 'transparent' | 'yellow' | 'blue';
|
|
768
768
|
type AlertCardProps = React$1.ComponentPropsWithoutRef<'div'> & {
|
|
@@ -778,7 +778,7 @@ type AlertCardProps = React$1.ComponentPropsWithoutRef<'div'> & {
|
|
|
778
778
|
};
|
|
779
779
|
};
|
|
780
780
|
|
|
781
|
-
declare const _default$
|
|
781
|
+
declare const _default$Y: React$1.NamedExoticComponent<AlertCardProps>;
|
|
782
782
|
|
|
783
783
|
type AppFooterProps = {
|
|
784
784
|
children?: React__default.ReactNode;
|
|
@@ -789,7 +789,7 @@ type AppFooterProps = {
|
|
|
789
789
|
toolbarStyle?: CSSProperties;
|
|
790
790
|
className?: string;
|
|
791
791
|
};
|
|
792
|
-
declare const _default$
|
|
792
|
+
declare const _default$X: React__default.NamedExoticComponent<AppFooterProps>;
|
|
793
793
|
|
|
794
794
|
type AvatarRoundVariants = 'circle' | 'drop' | 'small';
|
|
795
795
|
|
|
@@ -804,14 +804,14 @@ type AvatarProps = {
|
|
|
804
804
|
onClick?(e: React__default.MouseEvent<HTMLDivElement>): void;
|
|
805
805
|
border?: boolean | string;
|
|
806
806
|
};
|
|
807
|
-
declare const _default$
|
|
807
|
+
declare const _default$W: React__default.NamedExoticComponent<AvatarProps>;
|
|
808
808
|
|
|
809
809
|
type SkeletonProps = {
|
|
810
810
|
animated?: boolean;
|
|
811
811
|
className?: string;
|
|
812
812
|
style?: React__default.CSSProperties;
|
|
813
813
|
};
|
|
814
|
-
declare const _default$
|
|
814
|
+
declare const _default$V: React__default.NamedExoticComponent<SkeletonProps>;
|
|
815
815
|
|
|
816
816
|
type ButtonProps$1 = {
|
|
817
817
|
fill?: 'outline' | 'clear';
|
|
@@ -850,7 +850,7 @@ type FlagProps$1 = {
|
|
|
850
850
|
name: string;
|
|
851
851
|
className?: string;
|
|
852
852
|
};
|
|
853
|
-
declare const _default$
|
|
853
|
+
declare const _default$U: React__default.NamedExoticComponent<FlagProps$1>;
|
|
854
854
|
|
|
855
855
|
type PictureProps = {
|
|
856
856
|
width: number;
|
|
@@ -868,7 +868,7 @@ type PictureProps = {
|
|
|
868
868
|
containerWidth?: number;
|
|
869
869
|
imageClassName?: string;
|
|
870
870
|
};
|
|
871
|
-
declare const _default$
|
|
871
|
+
declare const _default$T: React__default.NamedExoticComponent<PictureProps>;
|
|
872
872
|
|
|
873
873
|
type BadgeType = 'default' | 'accent';
|
|
874
874
|
type BadgeVariants = 'attention' | 'neutral' | 'success' | 'warning' | 'brand' | 'info';
|
|
@@ -879,7 +879,7 @@ type BadgeProps = React$1.ComponentPropsWithoutRef<'span'> & {
|
|
|
879
879
|
iconType?: 'check' | React$1.ReactNode;
|
|
880
880
|
};
|
|
881
881
|
|
|
882
|
-
declare const _default$
|
|
882
|
+
declare const _default$S: React$1.NamedExoticComponent<BadgeProps>;
|
|
883
883
|
|
|
884
884
|
type ItemCardVariants = 'neutral' | 'transparent' | 'transparent20';
|
|
885
885
|
type ItemCardProps = React$1.ComponentPropsWithoutRef<'div'> & {
|
|
@@ -887,7 +887,7 @@ type ItemCardProps = React$1.ComponentPropsWithoutRef<'div'> & {
|
|
|
887
887
|
size?: 'M' | 'M4' | 'M45';
|
|
888
888
|
};
|
|
889
889
|
|
|
890
|
-
declare const _default$
|
|
890
|
+
declare const _default$R: React$1.NamedExoticComponent<ItemCardProps>;
|
|
891
891
|
|
|
892
892
|
type AppHeaderProps = {
|
|
893
893
|
fullwidth?: boolean;
|
|
@@ -1267,7 +1267,8 @@ declare enum OnBoardingScreenOptions {
|
|
|
1267
1267
|
PAYWALL = "PAYWALL",
|
|
1268
1268
|
COMPARE = "COMPARE",
|
|
1269
1269
|
CHART = "CHART",
|
|
1270
|
-
GRAPH = "GRAPH"
|
|
1270
|
+
GRAPH = "GRAPH",
|
|
1271
|
+
GOAL = "GOAL"
|
|
1271
1272
|
}
|
|
1272
1273
|
type OnBoardingScreenOptionType = {
|
|
1273
1274
|
id: string;
|
|
@@ -1286,6 +1287,11 @@ type OnBoardingScreenButtonType = {
|
|
|
1286
1287
|
buttonColor?: string | null;
|
|
1287
1288
|
buttonTextColor?: string | null;
|
|
1288
1289
|
};
|
|
1290
|
+
type OnBoardingScreenSubgoalButtonType = {
|
|
1291
|
+
subgoalButtonText?: string | null;
|
|
1292
|
+
subgoalButtonColor?: string | null;
|
|
1293
|
+
subgoalButtonTextColor?: string | null;
|
|
1294
|
+
};
|
|
1289
1295
|
type OnBoardingScreenSkipButtonType = {
|
|
1290
1296
|
skipButtonText?: string | null;
|
|
1291
1297
|
showSkipButton?: boolean;
|
|
@@ -1346,6 +1352,15 @@ type OnBoardingMultiSelectScreenType = OnBoardingBaseScreenType & OnBoardingScre
|
|
|
1346
1352
|
isIconView?: boolean;
|
|
1347
1353
|
options: OnBoardingScreenOptionType[];
|
|
1348
1354
|
};
|
|
1355
|
+
type OnBoardingGoalSelectScreenType = OnBoardingBaseScreenType & OnBoardingScreenButtonType & OnBoardingScreenSubgoalButtonType & OnBoardingScreenDescriptionType & {
|
|
1356
|
+
isOptionView?: boolean;
|
|
1357
|
+
subgoalIsOptionView?: boolean;
|
|
1358
|
+
options: OnBoardingScreenOptionType[];
|
|
1359
|
+
subgoalTitle?: string;
|
|
1360
|
+
subgoalDescription?: string;
|
|
1361
|
+
isShowCategoryName?: boolean;
|
|
1362
|
+
maxSelectionCount?: number;
|
|
1363
|
+
};
|
|
1349
1364
|
type OnBoardingSingleSelectScreenType = OnBoardingBaseScreenType & OnBoardingScreenDescriptionType & {
|
|
1350
1365
|
isOptionView?: boolean;
|
|
1351
1366
|
isIconView?: boolean;
|
|
@@ -1440,7 +1455,7 @@ type OnBoardingChartScreenType = OnBoardingBaseScreenType & OnBoardingScreenButt
|
|
|
1440
1455
|
disclaimer?: string;
|
|
1441
1456
|
chart: ChartData;
|
|
1442
1457
|
};
|
|
1443
|
-
type OnBoardingScreensType = OnBoardingStartScreenType | OnBoardingMultiSelectScreenType | OnBoardingSingleSelectScreenType | OnBoardingSingleImageSelectScreenType | OnBoardingSingleRoundImageSelectScreenType | OnBoardingSingleScaleSelectScreenType | OnBoardingInfoScreenType | OnBoardingLoaderScreenType | OnBoardingReviewsScreenType | OnBoardingEmailScreenType | OnBoardingConfirmScreenType | OnBoardingCompareScreenType | OnBoardingPaywallScreenType | OnBoardingChartScreenType | OnBoardingGraphScreenType;
|
|
1458
|
+
type OnBoardingScreensType = OnBoardingStartScreenType | OnBoardingMultiSelectScreenType | OnBoardingGoalSelectScreenType | OnBoardingSingleSelectScreenType | OnBoardingSingleImageSelectScreenType | OnBoardingSingleRoundImageSelectScreenType | OnBoardingSingleScaleSelectScreenType | OnBoardingInfoScreenType | OnBoardingLoaderScreenType | OnBoardingReviewsScreenType | OnBoardingEmailScreenType | OnBoardingConfirmScreenType | OnBoardingCompareScreenType | OnBoardingPaywallScreenType | OnBoardingChartScreenType | OnBoardingGraphScreenType;
|
|
1444
1459
|
type OnBoardingFlowType = {
|
|
1445
1460
|
id: string;
|
|
1446
1461
|
locale: string;
|
|
@@ -1756,9 +1771,12 @@ type ListBoxProps<T> = AriaListBoxProps<T> & {
|
|
|
1756
1771
|
selectionMode?: 'single' | 'multiple' | 'none';
|
|
1757
1772
|
isTransparent?: boolean;
|
|
1758
1773
|
isRoundCorners?: boolean;
|
|
1774
|
+
maxSelectionCount?: number;
|
|
1775
|
+
initialVisibleCount?: number;
|
|
1776
|
+
t?: WithTranslation['t'];
|
|
1759
1777
|
};
|
|
1760
1778
|
|
|
1761
|
-
declare function ListBox<T extends Record<string, unknown>>({ selectedIconProps, type, selectionPosition, enableSelection, className, variant, isOnboardingPreview, isTransparent, isRoundCorners, ...props }: ListBoxProps<T>): JSX.Element;
|
|
1779
|
+
declare function ListBox<T extends Record<string, unknown>>({ selectedIconProps, type, selectionPosition, enableSelection, className, variant, isOnboardingPreview, isTransparent, isRoundCorners, maxSelectionCount, initialVisibleCount, t, ...props }: ListBoxProps<T>): JSX.Element;
|
|
1762
1780
|
|
|
1763
1781
|
type ListOptionsProps = {
|
|
1764
1782
|
item: Node<unknown>;
|
|
@@ -1789,9 +1807,12 @@ type ListBoxItemProps = {
|
|
|
1789
1807
|
onClick?: HTMLIonItemElement['onclick'];
|
|
1790
1808
|
variant?: VariantType;
|
|
1791
1809
|
image?: ResponseFileType | null;
|
|
1810
|
+
maxSelectionCount?: number;
|
|
1792
1811
|
};
|
|
1793
1812
|
|
|
1794
|
-
declare const ListOption: React$1.ForwardRefExoticComponent<ListOptionsProps &
|
|
1813
|
+
declare const ListOption: React$1.ForwardRefExoticComponent<ListOptionsProps & {
|
|
1814
|
+
maxSelectionCount?: number | undefined;
|
|
1815
|
+
} & React$1.RefAttributes<HTMLIonItemElement>>;
|
|
1795
1816
|
declare const ListBoxItem: (props: ItemProps$1<unknown> & ListBoxItemProps) => JSX.Element;
|
|
1796
1817
|
|
|
1797
1818
|
type BaseTypeProps = {
|
|
@@ -1837,7 +1858,7 @@ interface TextareaV2Props extends Omit<JSX$1.IonTextarea, 'color' | 'enterkeyhin
|
|
|
1837
1858
|
onKeyPress?: (e: KeyboardEvent<HTMLIonTextareaElement>) => void;
|
|
1838
1859
|
}
|
|
1839
1860
|
|
|
1840
|
-
declare const _default$
|
|
1861
|
+
declare const _default$Q: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TextareaV2Props & React__default.RefAttributes<HTMLIonTextareaElement>>>;
|
|
1841
1862
|
|
|
1842
1863
|
type RatingProps = {
|
|
1843
1864
|
initialRating?: number;
|
|
@@ -1850,7 +1871,7 @@ type RatingProps = {
|
|
|
1850
1871
|
readonly?: boolean;
|
|
1851
1872
|
} & RatingComponentProps;
|
|
1852
1873
|
|
|
1853
|
-
declare const _default$
|
|
1874
|
+
declare const _default$P: React__default.NamedExoticComponent<RatingProps>;
|
|
1854
1875
|
|
|
1855
1876
|
declare const RatingCircleWrapper: FC<CircleRatingComponentProps & {
|
|
1856
1877
|
t: WithTranslation['t'] | any;
|
|
@@ -1864,7 +1885,7 @@ type IconButtonProps = {
|
|
|
1864
1885
|
fill?: 'clear' | 'filled';
|
|
1865
1886
|
type?: 'button' | 'submit' | 'reset';
|
|
1866
1887
|
};
|
|
1867
|
-
declare const _default$
|
|
1888
|
+
declare const _default$O: React__default.NamedExoticComponent<IconButtonProps>;
|
|
1868
1889
|
|
|
1869
1890
|
type ToastProviderProps = ToastStateProps;
|
|
1870
1891
|
type MindlyToastProps = {
|
|
@@ -1910,17 +1931,17 @@ type ProgressBar_v2Props = {
|
|
|
1910
1931
|
animationDuration?: number;
|
|
1911
1932
|
onProgressEnd?: () => void;
|
|
1912
1933
|
};
|
|
1913
|
-
declare const _default$
|
|
1934
|
+
declare const _default$N: React__default.NamedExoticComponent<ProgressBar_v2Props>;
|
|
1914
1935
|
|
|
1915
1936
|
type LoadingProps = {
|
|
1916
1937
|
isOpen: boolean;
|
|
1917
1938
|
};
|
|
1918
|
-
declare const _default$
|
|
1939
|
+
declare const _default$M: React__default.NamedExoticComponent<LoadingProps>;
|
|
1919
1940
|
|
|
1920
1941
|
type ListItemsProps = React$1.HTMLAttributes<HTMLIonListElement> & {
|
|
1921
1942
|
withBorders?: boolean;
|
|
1922
1943
|
};
|
|
1923
|
-
declare const _default$
|
|
1944
|
+
declare const _default$L: React$1.NamedExoticComponent<ListItemsProps>;
|
|
1924
1945
|
|
|
1925
1946
|
type ItemProps = React$1.HTMLAttributes<HTMLIonItemElement> & {
|
|
1926
1947
|
leftContent?: React$1.ReactNode;
|
|
@@ -1932,7 +1953,7 @@ type ItemProps = React$1.HTMLAttributes<HTMLIonItemElement> & {
|
|
|
1932
1953
|
isError?: boolean;
|
|
1933
1954
|
status?: 'error' | 'attention';
|
|
1934
1955
|
};
|
|
1935
|
-
declare const _default$
|
|
1956
|
+
declare const _default$K: React$1.NamedExoticComponent<ItemProps>;
|
|
1936
1957
|
|
|
1937
1958
|
declare enum VariantEnum {
|
|
1938
1959
|
default = "default",
|
|
@@ -1961,7 +1982,7 @@ type VideoMethods = {
|
|
|
1961
1982
|
play(): void;
|
|
1962
1983
|
};
|
|
1963
1984
|
type VideoRef = HTMLVideoElement | VideoMethods;
|
|
1964
|
-
declare const _default$
|
|
1985
|
+
declare const _default$J: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<VideoProps & {
|
|
1965
1986
|
children?: React__default.ReactNode;
|
|
1966
1987
|
} & React__default.RefAttributes<VideoRef>>>;
|
|
1967
1988
|
|
|
@@ -2079,15 +2100,15 @@ type MatchProgressProps = {
|
|
|
2079
2100
|
className?: string;
|
|
2080
2101
|
percentMatch: number;
|
|
2081
2102
|
};
|
|
2082
|
-
declare const _default$
|
|
2103
|
+
declare const _default$I: React__default.NamedExoticComponent<React__default.PropsWithChildren<MatchProgressProps>>;
|
|
2083
2104
|
|
|
2084
2105
|
interface Props$8 {
|
|
2085
2106
|
className?: string;
|
|
2086
2107
|
title: string;
|
|
2087
2108
|
}
|
|
2088
|
-
declare const _default$
|
|
2109
|
+
declare const _default$H: React__default.NamedExoticComponent<React__default.PropsWithChildren<Props$8>>;
|
|
2089
2110
|
|
|
2090
|
-
declare const _default$
|
|
2111
|
+
declare const _default$G: React__default.NamedExoticComponent<React__default.PropsWithChildren<React__default.HTMLAttributes<HTMLButtonElement>>>;
|
|
2091
2112
|
|
|
2092
2113
|
type Props$7 = {
|
|
2093
2114
|
className?: string;
|
|
@@ -2822,9 +2843,9 @@ type SlotsGridItemProps = {
|
|
|
2822
2843
|
onSelectionChange: () => void;
|
|
2823
2844
|
};
|
|
2824
2845
|
|
|
2825
|
-
declare const _default$
|
|
2846
|
+
declare const _default$F: React__default.NamedExoticComponent<SlotsGridProps>;
|
|
2826
2847
|
|
|
2827
|
-
declare const _default$
|
|
2848
|
+
declare const _default$E: React$1.NamedExoticComponent<SlotsGridItemProps>;
|
|
2828
2849
|
|
|
2829
2850
|
type PushNotificationsModalProps = {
|
|
2830
2851
|
onApplyPermission: () => void;
|
|
@@ -2940,23 +2961,23 @@ type ShareModalFeatureProps = {
|
|
|
2940
2961
|
};
|
|
2941
2962
|
declare const ShareModalFeature: FC<ShareModalFeatureProps>;
|
|
2942
2963
|
|
|
2943
|
-
declare const _default$
|
|
2964
|
+
declare const _default$D: React__default.NamedExoticComponent<SpecialistPaymentConsultationDetailsType & TranslationType>;
|
|
2944
2965
|
|
|
2945
|
-
declare const _default$
|
|
2966
|
+
declare const _default$C: React__default.NamedExoticComponent<SpecialistPaymentCardProps & TranslationType>;
|
|
2946
2967
|
|
|
2947
2968
|
type SpecialistPaymentCommonCardSkeletonType = {
|
|
2948
2969
|
className?: string;
|
|
2949
2970
|
};
|
|
2950
2971
|
declare const SpecialistPaymentCommonCardSkeleton: (props: SpecialistPaymentCommonCardSkeletonType) => react_jsx_runtime.JSX.Element;
|
|
2951
2972
|
|
|
2952
|
-
declare const _default$
|
|
2973
|
+
declare const _default$B: React__default.NamedExoticComponent<SpecialistPaymentConsultationsProps & TranslationType>;
|
|
2953
2974
|
|
|
2954
2975
|
type ConsultationsListProps = {
|
|
2955
2976
|
consultations: SpecialistConsultation[];
|
|
2956
2977
|
locale?: string;
|
|
2957
2978
|
consultationClick?: (consultation: SpecialistConsultation) => void;
|
|
2958
2979
|
};
|
|
2959
|
-
declare const _default$
|
|
2980
|
+
declare const _default$A: React__default.NamedExoticComponent<ConsultationsListProps>;
|
|
2960
2981
|
|
|
2961
2982
|
type ConsultationsListSkeletonType = {
|
|
2962
2983
|
className?: string;
|
|
@@ -2971,9 +2992,9 @@ type CalendarPickerFeatureProps = {
|
|
|
2971
2992
|
dateCallback: (date: Date) => void;
|
|
2972
2993
|
lastDate: Date;
|
|
2973
2994
|
};
|
|
2974
|
-
declare const _default$
|
|
2995
|
+
declare const _default$z: React__default.NamedExoticComponent<CalendarPickerFeatureProps & TranslationType>;
|
|
2975
2996
|
|
|
2976
|
-
declare const _default$
|
|
2997
|
+
declare const _default$y: React__default.NamedExoticComponent<PaymentCalendarFeatureProps & TranslationType>;
|
|
2977
2998
|
|
|
2978
2999
|
type GoogleCalendarModalFeatureProps = {
|
|
2979
3000
|
isOpen: boolean;
|
|
@@ -2988,7 +3009,7 @@ type GoogleCalendarModalFeatureProps = {
|
|
|
2988
3009
|
declare function GoogleCalendarModalFeature({ status, isOpen, onSync, isLoading, presentingElement, imageUrl, onDidDismiss, t, }: GoogleCalendarModalFeatureProps): JSX.Element;
|
|
2989
3010
|
|
|
2990
3011
|
type ReviewCardFeatureVariantType = 'default' | 'outlined' | 'full' | 'store' | 'starFirst';
|
|
2991
|
-
declare const _default$
|
|
3012
|
+
declare const _default$x: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
|
|
2992
3013
|
id?: string | undefined;
|
|
2993
3014
|
avatarSrc?: string | undefined;
|
|
2994
3015
|
name: string;
|
|
@@ -3092,7 +3113,7 @@ type ScreenInputFormFeatureProps = {
|
|
|
3092
3113
|
icon?: ReactNode | string;
|
|
3093
3114
|
isKeyboardShown?: boolean;
|
|
3094
3115
|
};
|
|
3095
|
-
declare const _default$
|
|
3116
|
+
declare const _default$w: React__default.NamedExoticComponent<ScreenInputFormFeatureProps>;
|
|
3096
3117
|
|
|
3097
3118
|
type SelectionType = {
|
|
3098
3119
|
value: any;
|
|
@@ -3110,7 +3131,7 @@ type SpecialistDrumPickerWidgetProps = {
|
|
|
3110
3131
|
onTouchStart?: () => void;
|
|
3111
3132
|
onTouchEnd?: () => void;
|
|
3112
3133
|
};
|
|
3113
|
-
declare const _default$
|
|
3134
|
+
declare const _default$v: React__default.NamedExoticComponent<SpecialistDrumPickerWidgetProps>;
|
|
3114
3135
|
|
|
3115
3136
|
type TextAreaFormFeatureProps = {
|
|
3116
3137
|
title?: string;
|
|
@@ -3126,7 +3147,7 @@ type TextAreaFormFeatureProps = {
|
|
|
3126
3147
|
maxlength?: number;
|
|
3127
3148
|
HeaderComponent?: FC;
|
|
3128
3149
|
};
|
|
3129
|
-
declare const _default$
|
|
3150
|
+
declare const _default$u: React__default.NamedExoticComponent<TextAreaFormFeatureProps>;
|
|
3130
3151
|
|
|
3131
3152
|
type AcceptAgreementFeatureProps = {
|
|
3132
3153
|
isAccepted: boolean;
|
|
@@ -3147,7 +3168,7 @@ type SelectWithSearchFormFeatureProps = {
|
|
|
3147
3168
|
otherText?: string;
|
|
3148
3169
|
buttonLabel?: string;
|
|
3149
3170
|
} & WithTranslation;
|
|
3150
|
-
declare const _default$
|
|
3171
|
+
declare const _default$t: React__default.NamedExoticComponent<SelectWithSearchFormFeatureProps>;
|
|
3151
3172
|
|
|
3152
3173
|
type MarkdownContainerFeatureProps = {
|
|
3153
3174
|
children?: string | null;
|
|
@@ -3155,11 +3176,11 @@ type MarkdownContainerFeatureProps = {
|
|
|
3155
3176
|
className?: string;
|
|
3156
3177
|
forceBlock?: boolean;
|
|
3157
3178
|
};
|
|
3158
|
-
declare const _default$
|
|
3179
|
+
declare const _default$s: React__default.NamedExoticComponent<MarkdownContainerFeatureProps>;
|
|
3159
3180
|
|
|
3160
|
-
declare const _default$
|
|
3181
|
+
declare const _default$r: React__default.NamedExoticComponent<OnBoardingStartScreenType>;
|
|
3161
3182
|
|
|
3162
|
-
declare const _default$
|
|
3183
|
+
declare const _default$q: React__default.NamedExoticComponent<OnBoardingInfoScreenType>;
|
|
3163
3184
|
|
|
3164
3185
|
type OnBoardingMultiSelectionScreenPreviewFeatureProps = {
|
|
3165
3186
|
onChange?: (value: string[]) => void;
|
|
@@ -3167,7 +3188,7 @@ type OnBoardingMultiSelectionScreenPreviewFeatureProps = {
|
|
|
3167
3188
|
variant?: OnboardingVariant;
|
|
3168
3189
|
template?: 'checkbox' | 'icon';
|
|
3169
3190
|
} & OnBoardingMultiSelectScreenType;
|
|
3170
|
-
declare const _default$
|
|
3191
|
+
declare const _default$p: React__default.NamedExoticComponent<OnBoardingMultiSelectionScreenPreviewFeatureProps>;
|
|
3171
3192
|
|
|
3172
3193
|
type OnBoardingSingleSelectionScreenPreviewFeatureProps = {
|
|
3173
3194
|
onChange?: (value: string) => void;
|
|
@@ -3175,7 +3196,7 @@ type OnBoardingSingleSelectionScreenPreviewFeatureProps = {
|
|
|
3175
3196
|
variant?: OnboardingVariant;
|
|
3176
3197
|
template?: 'radio' | 'image' | 'roundImage' | 'emoji' | 'icon';
|
|
3177
3198
|
} & OnBoardingSingleSelectScreenType & OnBoardingSingleImageSelectScreenType & OnBoardingSingleRoundImageSelectScreenType & OnBoardingSingleScaleSelectScreenType;
|
|
3178
|
-
declare const _default$
|
|
3199
|
+
declare const _default$o: React__default.NamedExoticComponent<OnBoardingSingleSelectionScreenPreviewFeatureProps>;
|
|
3179
3200
|
|
|
3180
3201
|
declare const OnBoardingLoaderScreenPreviewFeature: FC<OnBoardingLoaderScreenType & {
|
|
3181
3202
|
t?: WithTranslation['t'];
|
|
@@ -3195,9 +3216,9 @@ type OnBoardingProgressFeatureProps = {
|
|
|
3195
3216
|
variant?: OnboardingVariant;
|
|
3196
3217
|
empty?: boolean;
|
|
3197
3218
|
};
|
|
3198
|
-
declare const _default$
|
|
3219
|
+
declare const _default$n: React__default.NamedExoticComponent<OnBoardingProgressFeatureProps>;
|
|
3199
3220
|
|
|
3200
|
-
declare const _default$
|
|
3221
|
+
declare const _default$m: React__default.NamedExoticComponent<OnBoardingReviewsScreenType>;
|
|
3201
3222
|
|
|
3202
3223
|
type OnBoardingEmailScreenPreviewFeatureProps = OnBoardingEmailScreenType & {
|
|
3203
3224
|
email: string | null;
|
|
@@ -3205,7 +3226,7 @@ type OnBoardingEmailScreenPreviewFeatureProps = OnBoardingEmailScreenType & {
|
|
|
3205
3226
|
onChangeEmail?: (email: string) => void;
|
|
3206
3227
|
onSubmit?: () => void;
|
|
3207
3228
|
};
|
|
3208
|
-
declare const _default$
|
|
3229
|
+
declare const _default$l: React__default.NamedExoticComponent<OnBoardingEmailScreenPreviewFeatureProps>;
|
|
3209
3230
|
|
|
3210
3231
|
type OnBoardingConfirmScreenPreviewFeatureProps = OnBoardingConfirmScreenType & {
|
|
3211
3232
|
email: string | null;
|
|
@@ -3216,7 +3237,7 @@ type OnBoardingConfirmScreenPreviewFeatureProps = OnBoardingConfirmScreenType &
|
|
|
3216
3237
|
onChangePassword?: (password: string) => void;
|
|
3217
3238
|
onSubmit?: () => void;
|
|
3218
3239
|
};
|
|
3219
|
-
declare const _default$
|
|
3240
|
+
declare const _default$k: React__default.NamedExoticComponent<OnBoardingConfirmScreenPreviewFeatureProps>;
|
|
3220
3241
|
|
|
3221
3242
|
type OnBoardingPaywallScreenPreviewFeatureProps$2 = {
|
|
3222
3243
|
variant?: OnboardingVariant;
|
|
@@ -3249,6 +3270,18 @@ declare const OnBoardingChartScreenPreviewFeature: FC<OnBoardingChartScreenPrevi
|
|
|
3249
3270
|
type OnBoardingPaywallScreenPreviewFeatureProps = OnBoardingGraphScreenType;
|
|
3250
3271
|
declare const OnBoardingGraphScreenPreviewFeature: FC<OnBoardingPaywallScreenPreviewFeatureProps>;
|
|
3251
3272
|
|
|
3273
|
+
type OnBoardingGoalSelectionScreenPreviewFeatureProps = {
|
|
3274
|
+
onChange?: (value: string[]) => void;
|
|
3275
|
+
defaultValues?: string[];
|
|
3276
|
+
variant?: OnboardingVariant;
|
|
3277
|
+
template?: 'checkbox' | 'icon';
|
|
3278
|
+
currentSelectionScreenCount?: number;
|
|
3279
|
+
categoryLabel?: string;
|
|
3280
|
+
initialVisibleCount?: number;
|
|
3281
|
+
t?: WithTranslation['t'];
|
|
3282
|
+
} & OnBoardingGoalSelectScreenType;
|
|
3283
|
+
declare const _default$j: React__default.NamedExoticComponent<OnBoardingGoalSelectionScreenPreviewFeatureProps>;
|
|
3284
|
+
|
|
3252
3285
|
type SpecialistAreaByMatch = {
|
|
3253
3286
|
text: string;
|
|
3254
3287
|
hasMatch: boolean;
|
|
@@ -4345,4 +4378,4 @@ declare const _default: React__default.NamedExoticComponent<SpecialistCardWithSc
|
|
|
4345
4378
|
|
|
4346
4379
|
declare const SpecialistCardSkeleton: React__default.FC;
|
|
4347
4380
|
|
|
4348
|
-
export { AcceptAgreementFeature, Action, _default$X as AlertCard, AllowFilterValueType, AppFooter, _default$W as AppFooter_v2, AppHeader, AppHeaderPage as AppHeaderPageFeature, AppHeader_v2, AppNotSupportedFeature, AutoComplete, Avatar, AvatarProps$1 as AvatarProps, _default$V as Avatar_v2, AvatarProps as Avatar_v2Props, BREAKPOINT_ICON_SIZE, _default$R as Badge, _default$_ as BookingScheduleTime, _default$Z as BookingSpecialistInfo, BreakPointPositionProps, BreakPointPositionResult, Button, Button_v2, CAN_MANAGE_SESSION_TIME_HOURS, COUNTRIES_MAPPER, Calendar, _default$y as CalendarPickerFeature, CancelSession, CardModal, ChangeLanguageModal, _default$1h as ChatListItem, _default$1f as ChatListSkeleton, _default$1g as ChatMessage, ChatMessageSkeleton, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$d as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingComponentProps, CircleRatingContent, CircleRatingContext, CircleRatingContextData, CircleRatingContextProps, CircleRatingDataProps, CircleRatingDataResult, CircleRatingLegendProps, CircleRatingProvider, CircleRatingRange, CircleRatingSize, ClientCanAction, ClientCanParams, ClientSpecialistContractStatusEnum, CollapsableText, ConditionRulesType, Consultation, _default$1a as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$17 as ConsultationModal, _default$C as ConsultationPricingFeature, _default$15 as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentRendererProps, ContractDataFeature, ContractStatusEnum, ContentTree as ContractTreeFeature, CountdownTimerFeature, CountryOfOriginModal, CurrencyLocaleMapper, CurrencySignByLocale, CustomButton, _default$e as CustomCheckbox, CustomRadioButton, _default$f as CustomSelect, _default$g as CustomTextarea, DatePicker, _default$13 as DaySlider, DividerProps, DropdownFeature, DrumListPicker, DynamicCommissionValue, _default$$ as EducationCard, _default$1e as EmptyChatList, EmptyChatMessages, EmptyChatModalFeature, _default$18 as EmptyConsultations, EmptyList, EmptySpecialistListFeature, ErrorCardFeature, FilterFeatureProps, FilterItem, FilterItemBoolean, FilterItemChips, FilterItemRange, FilterItemSelect, FilterOption, FilterOptionValue, FilterValue, FiltersWidget, FiltersWidgetProps, FirstChatMessageModalFeature, _default$a as Flag, FlagTypes, _default$T as Flag_v2, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, ISpecialistReview, IconAddModerator, IconAlignHorizontalTextCenter, IconAlignHorizontalTextLeft, IconAlignHorizontalTextRight, IconAmEx, IconAppStoreRating, IconApple, IconApplePay, IconArrowDown, IconArrowLeft, IconArrowRange, IconArrowRight, IconArrowTopRight, IconAttachMoney, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$N as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCalendarNew, IconCalendarWithDot, IconCancel, IconCancelBold, IconCancelRounded, IconCapFilled, IconChart, IconChat, IconChat3d, IconChat3dSmaller, IconChatFilled, IconChatOutline, IconCheck, IconCheckCircle, IconCheckSmall, IconCheckboxChecked, IconCheckboxCheckedBold, IconCheckboxThinUnchecked, IconCheckboxUnchecked, IconClient, IconClientFilled, IconClose, IconCompare, IconContract, IconCopy, IconCreditCard, IconDelete, IconDivider, IconDocument, IconDot, IconDoubleArrow, IconEcgHeart, IconEdit, IconEditCalendar, IconEmptyList, IconEventBusy, IconExperience, IconEye, IconEyeOff, IconFilters, IconGallery, IconGift, IconGiftNew, IconGlobe, IconGoogle, IconGooglePay, IconHeart, IconHome, IconIdCard, IconInfo, IconInvisible, IconInvoice, IconLanguage, IconLeaderboard, IconLeftArrow, IconLetter, IconLink, IconLock, IconLogout, IconMaestro, IconManageAccounts, IconMastercard, IconMatching, IconMindly, IconMindlyColored, IconMindlyMini, IconMinus, IconMooving, IconMoreVertical, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPaperPencil, IconPause, IconPaywall, IconPersonAlert, IconPlay, IconPlus, IconPoweredByStripe, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconProps$H as IconProps, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconRadioPartial, IconReceipt, IconReceiptLong, IconRenew, IconResume, IconReviewSessionSubscription, IconReviewSessionTrial, IconSchedule, IconSchema, IconSearch, IconSecure, IconSend, IconSettings, IconShare, IconSpecialistsEnded, IconSpinner, IconStar, IconStarFilled, IconStudyHat, IconStylus, IconSuccess, IconSwitch, IconText, IconTime, IconTimeAdd, IconUnmute, IconUser, IconUserNotFound, IconVerifiedUser, IconVisa, IconVisible, IconWarning, ImageInput, ImageWithFallback, Input, InputSearch, _default$J as Item, _default$Q as ItemCard, LabelArrowRedirect, _default$1j as LetterAvatar, _default$b as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListItemType, _default$G as ListItemWithColumns, _default$K as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$L as Loading, LocaleCurrencyMapper, MapStatusContractToUIStatus, _default$r as MarkdownContainerFeature, _default$H as MatchProgress, _default$1i as MediaPlayer, MenuFeature, MindlyReview, MindlyReviewFeature, ModalSheet, NEAR_SESSION_TIME_SECONDS, NewSpecialist, NoInternetConnection, NotSupportModal, ONBOARDING_THEME_DEFAULT_COLORS, OnBoardingBaseScreenType, OnBoardingChartScreenPreviewFeature, OnBoardingChartScreenType, OnBoardingCompareScreenPreviewFeature, OnBoardingCompareScreenType, _default$j as OnBoardingConfirmScreenPreviewFeature, OnBoardingConfirmScreenType, _default$k as OnBoardingEmailScreenPreviewFeature, OnBoardingEmailScreenType, OnBoardingFlowType, OnBoardingGraphScreenPreviewFeature, OnBoardingGraphScreenType, _default$p as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$o as OnBoardingMultiSelectionScreenPreviewFeature, OnBoardingPaywallScreenPreviewFeature, OnBoardingPaywallScreenType, _default$m as OnBoardingProgressFeature, _default$l as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenAlertType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenEmailType, OnBoardingScreenErrorsType, OnBoardingScreenOptionType, OnBoardingScreenOptionWithScaleType, OnBoardingScreenOptions, OnBoardingScreenPasswordType, OnBoardingScreenPrivacyType, OnBoardingScreenSkipButtonType, OnBoardingScreenStyleOptions, OnBoardingScreenTranslationsType, OnBoardingScreensType, OnBoardingSingleImageSelectScreenType, OnBoardingSingleRoundImageSelectScreenType, OnBoardingSingleScaleSelectScreenType, OnBoardingSingleSelectScreenType, _default$n as OnBoardingSingleSelectionScreenPreviewFeature, _default$q as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OnboardingVariant, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$x as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$z as PaymentSessionsList, _default$S as Picture, PoweredByStripeFeature, _default$9 as ProfileInformation, _default$11 as ProfileView, _default$c as ProgressBar, ProgressBarDashed, _default$M as ProgressBar_v2, ProgressRangeProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$O as Rating, RatingCircleWrapper, _default$14 as ReSchedule, ReScheduleSuccess, Refresher, ResponseFileType, ReviewCard, _default$w as ReviewCardFeature, ReviewListFeature, ReviewStatistics, ReviewSubscriptionSessionFeature, ReviewSubscriptionSessionFeatureProps, ReviewSwiperSection, ReviewTrialSessionFeature, ReviewTrialSessionFeatureProps, ReviewsCardFeatureSkeleton, ReviewsSummary, RoundButton, RowItemType, RowSelect, RowSelectProps, Rule, SIZES, SOON_SESSION_TIME_SECONDS, Schedule, ScheduleDate, ScheduleSlot, _default$u as ScreenDrumPickerFormFeature, ScreenInput, _default$v as ScreenInputFormFeature, ScreenInputUpdateFeature, SectionHeading, Segment, SegmentColor, SegmentType, SelectItemType, _default$s as SelectWithSearchFormFeature, Session, SessionDetailWidget, SessionPaymentsWidget, SessionPreviewFeature, SessionReview$1 as SessionReview, SessionTime, SessionVariant, SessionsWidget as SessionsListWidget, SessionsWidgetProps, Sex, ShareModalFeature, ShortCurrencySignByLocale, ShortTranscriptionCurrencySignByLocale, _default$F as ShowMore, _default$19 as SignUpSessionButton, _default$16 as SignUpSessionModal, SizeValues, Skeleton, _default$U as Skeleton_v2, _default$E as SlotsGrid, _default$D as SlotsGridItem, SolidInput, Specialist, _default$10 as SpecialistAbout, SpecialistAreaList as SpecialistAreaListFeature, SpecialistCard, SpecialistCardListWidget, _default$6 as SpecialistCardWidget, SpecialistCardSkeleton as SpecialistCardWithScheduleSkeleton, _default as SpecialistCardWithScheduleWidget, SpecialistConsultation, SpecialistConsultationPayment, _default$3 as SpecialistDetailWidget, SpecialistDetailWidgetSkeleton, SpecialistDetailWithTabsSkeleton, _default$1 as SpecialistDetailWithTabsWidget, SpecialistEducation, SpecialistEducationsFeature, SpecialistInfoColumnFeature, SpecialistLangs, _default$8 as SpecialistMatch, SpecialistOrderType, SpecialistPaymentCardProps, _default$B as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$A as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default$4 as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$5 as SpecialistPaymentWidget, SpecialistPaymentWidgetType, SpecialistPreviewFeature, SpecialistPreviewListWidget, _default$2 as SpecialistPreviewWidget, SpecialistProfileNotFound, SpecialistReview$1 as SpecialistReview, SpecialistScheduleFeature, SpecialistScheduleProvider, SpecialistScheduleProviderRef, ScheduleSkeleton as SpecialistScheduleSkeletonFeature, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default$7 as SpecialistStatistic, Spinner, Spinner_v2, StarRating, StatisticsScroll, StripeSupportedCurrency, Subscription, SubscriptionStatuses, SuccessScreen, SuperSpecialist, SupportedCurrency, SupportedLangs, SwitchDeviceCard, TabItem, Tabs$1 as Tabs, TabsFeature, TabsFeatureSkeleton, TabsToolbarFeature, Tag, Tariff, TariffFeature, _default$t as TextAreaFormFeature, _default$h as TextInput, _default$i as TextWithClampFeature, _default$1d as Textarea, _default$P as Textarea_v2, ThemeProvider, ThemeProviderProps, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$Y as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UserType, VariantType, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$I as Video, _default$1b as VideoCallInfo, _default$1c as VideoPlayer, VideoProvider, _default$12 as WorkDirections, appThemes, canManageSession, currentUser, decOfNum, formatByDigits, getCountryKeyByName, getDateLocale, getFiltersQuery, getFiltersValues, getGMTOffset, getMappedFilterValue, getMockSchedule, getMonthNameInGenitive, getProgressForBreakPoint, getSessionTimeLabel, getSessionVariant, getSessionsByDay, getSessionsByMonth, getSessionsByYear, getSignAgreementsTabs, getStartSessionDate, getStartSessionTimestamp, isClientCan, isFilterSet, isNewSpecialist, isSpecialistActive, isSpecialistBlocked, isSpecialistPublic, isSuperSpecialist, listReviews, mergeRefs, mockSession, mockSessions, mockT, newShade, priceNormalize, replaceMarkdownWithReactElements, roundToPrecision, specialist, splitSessions, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDeepCompareEffect, useDeepUpdateEffect, useDelayMount, useDomRef, useElementWidth, useEvent, useIsKeyBoardShown, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useSpecialistScheduleContext, useStopPropagationEvent, useToastContext, useUpdateEffect, useVideoContext, withSpecialistScheduleContext };
|
|
4381
|
+
export { AcceptAgreementFeature, Action, _default$Y as AlertCard, AllowFilterValueType, AppFooter, _default$X as AppFooter_v2, AppHeader, AppHeaderPage as AppHeaderPageFeature, AppHeader_v2, AppNotSupportedFeature, AutoComplete, Avatar, AvatarProps$1 as AvatarProps, _default$W as Avatar_v2, AvatarProps as Avatar_v2Props, BREAKPOINT_ICON_SIZE, _default$S as Badge, _default$$ as BookingScheduleTime, _default$_ as BookingSpecialistInfo, BreakPointPositionProps, BreakPointPositionResult, Button, Button_v2, CAN_MANAGE_SESSION_TIME_HOURS, COUNTRIES_MAPPER, Calendar, _default$z as CalendarPickerFeature, CancelSession, CardModal, ChangeLanguageModal, _default$1i as ChatListItem, _default$1g as ChatListSkeleton, _default$1h as ChatMessage, ChatMessageSkeleton, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$d as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingComponentProps, CircleRatingContent, CircleRatingContext, CircleRatingContextData, CircleRatingContextProps, CircleRatingDataProps, CircleRatingDataResult, CircleRatingLegendProps, CircleRatingProvider, CircleRatingRange, CircleRatingSize, ClientCanAction, ClientCanParams, ClientSpecialistContractStatusEnum, CollapsableText, ConditionRulesType, Consultation, _default$1b as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$18 as ConsultationModal, _default$D as ConsultationPricingFeature, _default$16 as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentRendererProps, ContractDataFeature, ContractStatusEnum, ContentTree as ContractTreeFeature, CountdownTimerFeature, CountryOfOriginModal, CurrencyLocaleMapper, CurrencySignByLocale, CustomButton, _default$e as CustomCheckbox, CustomRadioButton, _default$f as CustomSelect, _default$g as CustomTextarea, DatePicker, _default$14 as DaySlider, DividerProps, DropdownFeature, DrumListPicker, DynamicCommissionValue, _default$10 as EducationCard, _default$1f as EmptyChatList, EmptyChatMessages, EmptyChatModalFeature, _default$19 as EmptyConsultations, EmptyList, EmptySpecialistListFeature, ErrorCardFeature, FilterFeatureProps, FilterItem, FilterItemBoolean, FilterItemChips, FilterItemRange, FilterItemSelect, FilterOption, FilterOptionValue, FilterValue, FiltersWidget, FiltersWidgetProps, FirstChatMessageModalFeature, _default$a as Flag, FlagTypes, _default$U as Flag_v2, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, ISpecialistReview, IconAddModerator, IconAlignHorizontalTextCenter, IconAlignHorizontalTextLeft, IconAlignHorizontalTextRight, IconAmEx, IconAppStoreRating, IconApple, IconApplePay, IconArrowDown, IconArrowLeft, IconArrowRange, IconArrowRight, IconArrowTopRight, IconAttachMoney, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$O as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCalendarNew, IconCalendarWithDot, IconCancel, IconCancelBold, IconCancelRounded, IconCapFilled, IconChart, IconChat, IconChat3d, IconChat3dSmaller, IconChatFilled, IconChatOutline, IconCheck, IconCheckCircle, IconCheckSmall, IconCheckboxChecked, IconCheckboxCheckedBold, IconCheckboxThinUnchecked, IconCheckboxUnchecked, IconClient, IconClientFilled, IconClose, IconCompare, IconContract, IconCopy, IconCreditCard, IconDelete, IconDivider, IconDocument, IconDot, IconDoubleArrow, IconEcgHeart, IconEdit, IconEditCalendar, IconEmptyList, IconEventBusy, IconExperience, IconEye, IconEyeOff, IconFilters, IconGallery, IconGift, IconGiftNew, IconGlobe, IconGoogle, IconGooglePay, IconHeart, IconHome, IconIdCard, IconInfo, IconInvisible, IconInvoice, IconLanguage, IconLeaderboard, IconLeftArrow, IconLetter, IconLink, IconLock, IconLogout, IconMaestro, IconManageAccounts, IconMastercard, IconMatching, IconMindly, IconMindlyColored, IconMindlyMini, IconMinus, IconMooving, IconMoreVertical, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPaperPencil, IconPause, IconPaywall, IconPersonAlert, IconPlay, IconPlus, IconPoweredByStripe, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconProps$H as IconProps, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconRadioPartial, IconReceipt, IconReceiptLong, IconRenew, IconResume, IconReviewSessionSubscription, IconReviewSessionTrial, IconSchedule, IconSchema, IconSearch, IconSecure, IconSend, IconSettings, IconShare, IconSpecialistsEnded, IconSpinner, IconStar, IconStarFilled, IconStudyHat, IconStylus, IconSuccess, IconSwitch, IconText, IconTime, IconTimeAdd, IconUnmute, IconUser, IconUserNotFound, IconVerifiedUser, IconVisa, IconVisible, IconWarning, ImageInput, ImageWithFallback, Input, InputSearch, _default$K as Item, _default$R as ItemCard, LabelArrowRedirect, _default$1k as LetterAvatar, _default$b as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListItemType, _default$H as ListItemWithColumns, _default$L as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$M as Loading, LocaleCurrencyMapper, MapStatusContractToUIStatus, _default$s as MarkdownContainerFeature, _default$I as MatchProgress, _default$1j as MediaPlayer, MenuFeature, MindlyReview, MindlyReviewFeature, ModalSheet, NEAR_SESSION_TIME_SECONDS, NewSpecialist, NoInternetConnection, NotSupportModal, ONBOARDING_THEME_DEFAULT_COLORS, OnBoardingBaseScreenType, OnBoardingChartScreenPreviewFeature, OnBoardingChartScreenType, OnBoardingCompareScreenPreviewFeature, OnBoardingCompareScreenType, _default$k as OnBoardingConfirmScreenPreviewFeature, OnBoardingConfirmScreenType, _default$l as OnBoardingEmailScreenPreviewFeature, OnBoardingEmailScreenType, OnBoardingFlowType, OnBoardingGoalSelectScreenType, _default$j as OnBoardingGoalSelectionScreenPreviewFeature, OnBoardingGraphScreenPreviewFeature, OnBoardingGraphScreenType, _default$q as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$p as OnBoardingMultiSelectionScreenPreviewFeature, OnBoardingPaywallScreenPreviewFeature, OnBoardingPaywallScreenType, _default$n as OnBoardingProgressFeature, _default$m as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenAlertType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenEmailType, OnBoardingScreenErrorsType, OnBoardingScreenOptionType, OnBoardingScreenOptionWithScaleType, OnBoardingScreenOptions, OnBoardingScreenPasswordType, OnBoardingScreenPrivacyType, OnBoardingScreenSkipButtonType, OnBoardingScreenStyleOptions, OnBoardingScreenSubgoalButtonType, OnBoardingScreenTranslationsType, OnBoardingScreensType, OnBoardingSingleImageSelectScreenType, OnBoardingSingleRoundImageSelectScreenType, OnBoardingSingleScaleSelectScreenType, OnBoardingSingleSelectScreenType, _default$o as OnBoardingSingleSelectionScreenPreviewFeature, _default$r as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OnboardingVariant, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$y as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$A as PaymentSessionsList, _default$T as Picture, PoweredByStripeFeature, _default$9 as ProfileInformation, _default$12 as ProfileView, _default$c as ProgressBar, ProgressBarDashed, _default$N as ProgressBar_v2, ProgressRangeProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$P as Rating, RatingCircleWrapper, _default$15 as ReSchedule, ReScheduleSuccess, Refresher, ResponseFileType, ReviewCard, _default$x as ReviewCardFeature, ReviewListFeature, ReviewStatistics, ReviewSubscriptionSessionFeature, ReviewSubscriptionSessionFeatureProps, ReviewSwiperSection, ReviewTrialSessionFeature, ReviewTrialSessionFeatureProps, ReviewsCardFeatureSkeleton, ReviewsSummary, RoundButton, RowItemType, RowSelect, RowSelectProps, Rule, SIZES, SOON_SESSION_TIME_SECONDS, Schedule, ScheduleDate, ScheduleSlot, _default$v as ScreenDrumPickerFormFeature, ScreenInput, _default$w as ScreenInputFormFeature, ScreenInputUpdateFeature, SectionHeading, Segment, SegmentColor, SegmentType, SelectItemType, _default$t as SelectWithSearchFormFeature, Session, SessionDetailWidget, SessionPaymentsWidget, SessionPreviewFeature, SessionReview$1 as SessionReview, SessionTime, SessionVariant, SessionsWidget as SessionsListWidget, SessionsWidgetProps, Sex, ShareModalFeature, ShortCurrencySignByLocale, ShortTranscriptionCurrencySignByLocale, _default$G as ShowMore, _default$1a as SignUpSessionButton, _default$17 as SignUpSessionModal, SizeValues, Skeleton, _default$V as Skeleton_v2, _default$F as SlotsGrid, _default$E as SlotsGridItem, SolidInput, Specialist, _default$11 as SpecialistAbout, SpecialistAreaList as SpecialistAreaListFeature, SpecialistCard, SpecialistCardListWidget, _default$6 as SpecialistCardWidget, SpecialistCardSkeleton as SpecialistCardWithScheduleSkeleton, _default as SpecialistCardWithScheduleWidget, SpecialistConsultation, SpecialistConsultationPayment, _default$3 as SpecialistDetailWidget, SpecialistDetailWidgetSkeleton, SpecialistDetailWithTabsSkeleton, _default$1 as SpecialistDetailWithTabsWidget, SpecialistEducation, SpecialistEducationsFeature, SpecialistInfoColumnFeature, SpecialistLangs, _default$8 as SpecialistMatch, SpecialistOrderType, SpecialistPaymentCardProps, _default$C as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$B as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default$4 as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$5 as SpecialistPaymentWidget, SpecialistPaymentWidgetType, SpecialistPreviewFeature, SpecialistPreviewListWidget, _default$2 as SpecialistPreviewWidget, SpecialistProfileNotFound, SpecialistReview$1 as SpecialistReview, SpecialistScheduleFeature, SpecialistScheduleProvider, SpecialistScheduleProviderRef, ScheduleSkeleton as SpecialistScheduleSkeletonFeature, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default$7 as SpecialistStatistic, Spinner, Spinner_v2, StarRating, StatisticsScroll, StripeSupportedCurrency, Subscription, SubscriptionStatuses, SuccessScreen, SuperSpecialist, SupportedCurrency, SupportedLangs, SwitchDeviceCard, TabItem, Tabs$1 as Tabs, TabsFeature, TabsFeatureSkeleton, TabsToolbarFeature, Tag, Tariff, TariffFeature, _default$u as TextAreaFormFeature, _default$h as TextInput, _default$i as TextWithClampFeature, _default$1e as Textarea, _default$Q as Textarea_v2, ThemeProvider, ThemeProviderProps, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$Z as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UserType, VariantType, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$J as Video, _default$1c as VideoCallInfo, _default$1d as VideoPlayer, VideoProvider, _default$13 as WorkDirections, appThemes, canManageSession, currentUser, decOfNum, formatByDigits, getCountryKeyByName, getDateLocale, getFiltersQuery, getFiltersValues, getGMTOffset, getMappedFilterValue, getMockSchedule, getMonthNameInGenitive, getProgressForBreakPoint, getSessionTimeLabel, getSessionVariant, getSessionsByDay, getSessionsByMonth, getSessionsByYear, getSignAgreementsTabs, getStartSessionDate, getStartSessionTimestamp, isClientCan, isFilterSet, isNewSpecialist, isSpecialistActive, isSpecialistBlocked, isSpecialistPublic, isSuperSpecialist, listReviews, mergeRefs, mockSession, mockSessions, mockT, newShade, priceNormalize, replaceMarkdownWithReactElements, roundToPrecision, specialist, splitSessions, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDeepCompareEffect, useDeepUpdateEffect, useDelayMount, useDomRef, useElementWidth, useEvent, useIsKeyBoardShown, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useSpecialistScheduleContext, useStopPropagationEvent, useToastContext, useUpdateEffect, useVideoContext, withSpecialistScheduleContext };
|