@mindly/ui-components 5.98.4 → 5.98.6
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 +6 -6
- package/dist/cjs/lib2/features/SessionReviewsFeature/ReviewSubscriptionSessionFeature/ReviewSubscriptionSessionFeature.d.ts +2 -0
- package/dist/cjs/lib2/features/SessionReviewsFeature/ReviewSubscriptionSessionFeature/SessionReview.d.ts +4 -5
- package/dist/cjs/lib2/features/SessionReviewsFeature/ReviewTrialSessionFeature/ReviewTrialSessionFeature.d.ts +4 -5
- package/dist/cjs/lib2/features/SessionReviewsFeature/components/TagsList.d.ts +1 -1
- package/dist/cjs/lib2/shared/assets/icons/IconCalendarNew.d.ts +3 -3
- package/dist/cjs/lib2/shared/assets/icons/IconGiftNew.d.ts +3 -0
- package/dist/cjs/lib2/shared/assets/icons/index.d.ts +3 -0
- package/dist/cjs/lib2/shared/types/iconProps.d.ts +2 -0
- package/dist/esm/index.js +6 -6
- package/dist/esm/lib2/features/SessionReviewsFeature/ReviewSubscriptionSessionFeature/ReviewSubscriptionSessionFeature.d.ts +2 -0
- package/dist/esm/lib2/features/SessionReviewsFeature/ReviewSubscriptionSessionFeature/SessionReview.d.ts +4 -5
- package/dist/esm/lib2/features/SessionReviewsFeature/ReviewTrialSessionFeature/ReviewTrialSessionFeature.d.ts +4 -5
- package/dist/esm/lib2/features/SessionReviewsFeature/components/TagsList.d.ts +1 -1
- package/dist/esm/lib2/shared/assets/icons/IconCalendarNew.d.ts +3 -3
- package/dist/esm/lib2/shared/assets/icons/IconGiftNew.d.ts +3 -0
- package/dist/esm/lib2/shared/assets/icons/index.d.ts +3 -0
- package/dist/esm/lib2/shared/types/iconProps.d.ts +2 -0
- package/dist/index.d.ts +19 -12
- package/package.json +1 -1
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
+
import { WithTranslation } from 'react-i18next';
|
|
2
3
|
import { SessionReview } from './SessionReview';
|
|
3
4
|
import { SpecialistReview } from './SpecialistReview';
|
|
4
5
|
export type ReviewSubscriptionSessionFeatureProps = {
|
|
@@ -13,6 +14,7 @@ export type ReviewSubscriptionSessionFeatureProps = {
|
|
|
13
14
|
onModalAppeared?: () => void;
|
|
14
15
|
};
|
|
15
16
|
onClose: () => void;
|
|
17
|
+
t?: WithTranslation['t'];
|
|
16
18
|
};
|
|
17
19
|
declare const ReviewSubscriptionSessionFeature: React.FC<ReviewSubscriptionSessionFeatureProps>;
|
|
18
20
|
export default ReviewSubscriptionSessionFeature;
|
|
@@ -4,16 +4,15 @@ type SessionReviewProps = {
|
|
|
4
4
|
specialistName: string;
|
|
5
5
|
onSubmit: (data: {
|
|
6
6
|
rate: number;
|
|
7
|
-
|
|
8
|
-
is_custom_reason: boolean;
|
|
7
|
+
reasons: string[];
|
|
9
8
|
comment?: string;
|
|
10
9
|
}) => Promise<void>;
|
|
11
10
|
specialistReviewNeeded?: boolean;
|
|
12
11
|
onModalAppeared?: () => void;
|
|
13
12
|
onStarsClick?: (rate: number) => void;
|
|
14
|
-
onReasonClick?: (rate: number,
|
|
15
|
-
onCommentBlur?: (rate: number,
|
|
16
|
-
onContinueClick?: (rate: number,
|
|
13
|
+
onReasonClick?: (rate: number, reasons: string[]) => void;
|
|
14
|
+
onCommentBlur?: (rate: number, reasons: string[], comment: string) => void;
|
|
15
|
+
onContinueClick?: (rate: number, reasons: string[], comment: string) => void;
|
|
17
16
|
t?: WithTranslation['t'];
|
|
18
17
|
};
|
|
19
18
|
export declare const SessionReview: React.FC<SessionReviewProps>;
|
|
@@ -6,17 +6,16 @@ export type ReviewTrialSessionFeatureProps = {
|
|
|
6
6
|
isOpen: boolean;
|
|
7
7
|
onSubmit: (data: {
|
|
8
8
|
rate: number;
|
|
9
|
-
|
|
10
|
-
is_custom_reason: boolean;
|
|
9
|
+
reasons: string[];
|
|
11
10
|
comment?: string;
|
|
12
11
|
}) => void;
|
|
13
12
|
showMotivation?: () => void;
|
|
14
13
|
continueTherapy?: () => void;
|
|
15
14
|
onModalAppeared?: () => void;
|
|
16
15
|
onStarsClick?: (rate: number) => void;
|
|
17
|
-
onReasonClick?: (rate: number,
|
|
18
|
-
onCommentBlur?: (rate: number,
|
|
19
|
-
onContinueClick?: (rate: number,
|
|
16
|
+
onReasonClick?: (rate: number, reasons: string[]) => void;
|
|
17
|
+
onCommentBlur?: (rate: number, reasons: string[], comment: string) => void;
|
|
18
|
+
onContinueClick?: (rate: number, reasons: string[], comment: string) => void;
|
|
20
19
|
onClose?: () => void;
|
|
21
20
|
t?: WithTranslation['t'];
|
|
22
21
|
};
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import
|
|
2
|
-
import { IconProps } from '../../types
|
|
3
|
-
export declare const IconCalendarNew:
|
|
1
|
+
import { FC } from 'react';
|
|
2
|
+
import { IconProps } from '../../types';
|
|
3
|
+
export declare const IconCalendarNew: FC<IconProps>;
|
|
@@ -36,6 +36,7 @@ export * from './IconEye';
|
|
|
36
36
|
export * from './IconEyeOff';
|
|
37
37
|
export * from './IconWarning';
|
|
38
38
|
export * from './IconGift';
|
|
39
|
+
export * from './IconGiftNew';
|
|
39
40
|
export * from './IconCreditCard';
|
|
40
41
|
export * from './IconQuestion';
|
|
41
42
|
export * from './IconPaper';
|
|
@@ -108,3 +109,5 @@ export * from './IconReceipt';
|
|
|
108
109
|
export * from './IconCalendarWithDot';
|
|
109
110
|
export * from './IconExperience';
|
|
110
111
|
export * from './IconSpecialistsEnded';
|
|
112
|
+
export * from './IconReviewSessionSubscription';
|
|
113
|
+
export * from './IconReviewSessionTrial';
|
package/dist/index.d.ts
CHANGED
|
@@ -1379,6 +1379,8 @@ type SpecialistPaymentConsultationDetailsType = {
|
|
|
1379
1379
|
|
|
1380
1380
|
interface IconProps$B extends SVGAttributes<SVGElement> {
|
|
1381
1381
|
size?: number | string;
|
|
1382
|
+
width?: number | string;
|
|
1383
|
+
height?: number | string;
|
|
1382
1384
|
color?: string;
|
|
1383
1385
|
className?: string;
|
|
1384
1386
|
filled?: boolean;
|
|
@@ -2311,7 +2313,7 @@ interface IconProps$x extends React$1.SVGAttributes<SVGElement> {
|
|
|
2311
2313
|
}
|
|
2312
2314
|
declare function IconCalendar({ color, size, ...other }: IconProps$x): JSX.Element;
|
|
2313
2315
|
|
|
2314
|
-
declare const IconCalendarNew:
|
|
2316
|
+
declare const IconCalendarNew: FC<IconProps$B>;
|
|
2315
2317
|
|
|
2316
2318
|
interface IconProps$w extends React$1.SVGAttributes<SVGElement> {
|
|
2317
2319
|
size?: number | string;
|
|
@@ -2456,6 +2458,8 @@ declare function IconWarning({ color, size, ...other }: IconProps$e): JSX.Elemen
|
|
|
2456
2458
|
|
|
2457
2459
|
declare const IconGift: React$1.FC<React$1.SVGAttributes<SVGElement>>;
|
|
2458
2460
|
|
|
2461
|
+
declare const IconGiftNew: FC<IconProps$B>;
|
|
2462
|
+
|
|
2459
2463
|
declare const IconCreditCard: React$1.FC<React$1.SVGAttributes<SVGElement>>;
|
|
2460
2464
|
|
|
2461
2465
|
declare const IconQuestion: React$1.FC<React$1.SVGAttributes<SVGElement>>;
|
|
@@ -2662,6 +2666,10 @@ declare const IconExperience: React$1.FC<IconProps$B>;
|
|
|
2662
2666
|
|
|
2663
2667
|
declare const IconSpecialistsEnded: React$1.FC<IconProps$B>;
|
|
2664
2668
|
|
|
2669
|
+
declare const IconReviewSessionSubscription: React$1.FC<IconProps$B>;
|
|
2670
|
+
|
|
2671
|
+
declare const IconReviewSessionTrial: React$1.FC<IconProps$B>;
|
|
2672
|
+
|
|
2665
2673
|
declare const formatByDigits: (value: number) => string;
|
|
2666
2674
|
declare const roundToPrecision: (value: number, decimals?: number) => number;
|
|
2667
2675
|
declare const getDateLocale: (locale: string) => Locale;
|
|
@@ -3354,17 +3362,16 @@ type ReviewTrialSessionFeatureProps = {
|
|
|
3354
3362
|
isOpen: boolean;
|
|
3355
3363
|
onSubmit: (data: {
|
|
3356
3364
|
rate: number;
|
|
3357
|
-
|
|
3358
|
-
is_custom_reason: boolean;
|
|
3365
|
+
reasons: string[];
|
|
3359
3366
|
comment?: string;
|
|
3360
3367
|
}) => void;
|
|
3361
3368
|
showMotivation?: () => void;
|
|
3362
3369
|
continueTherapy?: () => void;
|
|
3363
3370
|
onModalAppeared?: () => void;
|
|
3364
3371
|
onStarsClick?: (rate: number) => void;
|
|
3365
|
-
onReasonClick?: (rate: number,
|
|
3366
|
-
onCommentBlur?: (rate: number,
|
|
3367
|
-
onContinueClick?: (rate: number,
|
|
3372
|
+
onReasonClick?: (rate: number, reasons: string[]) => void;
|
|
3373
|
+
onCommentBlur?: (rate: number, reasons: string[], comment: string) => void;
|
|
3374
|
+
onContinueClick?: (rate: number, reasons: string[], comment: string) => void;
|
|
3368
3375
|
onClose?: () => void;
|
|
3369
3376
|
t?: WithTranslation['t'];
|
|
3370
3377
|
};
|
|
@@ -3374,16 +3381,15 @@ type SessionReviewProps = {
|
|
|
3374
3381
|
specialistName: string;
|
|
3375
3382
|
onSubmit: (data: {
|
|
3376
3383
|
rate: number;
|
|
3377
|
-
|
|
3378
|
-
is_custom_reason: boolean;
|
|
3384
|
+
reasons: string[];
|
|
3379
3385
|
comment?: string;
|
|
3380
3386
|
}) => Promise<void>;
|
|
3381
3387
|
specialistReviewNeeded?: boolean;
|
|
3382
3388
|
onModalAppeared?: () => void;
|
|
3383
3389
|
onStarsClick?: (rate: number) => void;
|
|
3384
|
-
onReasonClick?: (rate: number,
|
|
3385
|
-
onCommentBlur?: (rate: number,
|
|
3386
|
-
onContinueClick?: (rate: number,
|
|
3390
|
+
onReasonClick?: (rate: number, reasons: string[]) => void;
|
|
3391
|
+
onCommentBlur?: (rate: number, reasons: string[], comment: string) => void;
|
|
3392
|
+
onContinueClick?: (rate: number, reasons: string[], comment: string) => void;
|
|
3387
3393
|
t?: WithTranslation['t'];
|
|
3388
3394
|
};
|
|
3389
3395
|
declare const SessionReview: React__default.FC<SessionReviewProps>;
|
|
@@ -3416,6 +3422,7 @@ type ReviewSubscriptionSessionFeatureProps = {
|
|
|
3416
3422
|
onModalAppeared?: () => void;
|
|
3417
3423
|
};
|
|
3418
3424
|
onClose: () => void;
|
|
3425
|
+
t?: WithTranslation['t'];
|
|
3419
3426
|
};
|
|
3420
3427
|
declare const ReviewSubscriptionSessionFeature: React__default.FC<ReviewSubscriptionSessionFeatureProps>;
|
|
3421
3428
|
|
|
@@ -3975,4 +3982,4 @@ type SessionPaymentsWidgetProps = {
|
|
|
3975
3982
|
|
|
3976
3983
|
declare const SessionPaymentsWidget: React__default.FC<SessionPaymentsWidgetProps>;
|
|
3977
3984
|
|
|
3978
|
-
export { AcceptAgreementFeature, Action, _default$T as AlertCard, AllowFilterValueType, AppFooter, _default$S as AppFooter_v2, AppHeader, AppHeaderPage as AppHeaderPageFeature, AppHeader_v2, AppNotSupportedFeature, ArchivedConsultationCard, AutoComplete, Avatar, AvatarProps$1 as AvatarProps, _default$R as Avatar_v2, AvatarProps as Avatar_v2Props, BREAKPOINT_ICON_SIZE, _default$N as Badge, _default$W as BookingScheduleTime, _default$V as BookingSpecialistInfo, BreakPointPositionProps, BreakPointPositionResult, Button, Button_v2, CAN_MANAGE_SESSION_TIME_HOURS, COUNTRIES_MAPPER, Calendar, _default$u as CalendarPickerFeature, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$1f as ChatListItem, _default$1d as ChatListSkeleton, _default$1e as ChatMessage, ChatMessageSkeleton, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$a as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingComponentProps, CircleRatingContent, CircleRatingContext, CircleRatingContextData, CircleRatingContextProps, CircleRatingDataProps, CircleRatingDataResult, CircleRatingLegendProps, CircleRatingProvider, CircleRatingRange, CircleRatingSize, ClientCanAction, ClientCanParams, ClientSpecialistContractStatusEnum, CollapsableText, ConditionRulesType, Consultation, _default$16 as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$13 as ConsultationModal, _default$y as ConsultationPricingFeature, _default$11 as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentCard, ContentRendererProps, ContractDataFeature, ContractStatusEnum, ContentTree as ContractTreeFeature, CountdownTimerFeature, CountryOfOriginModal, CurrencyLocaleMapper, CurrencySignByLocale, CustomButton, _default$b as CustomCheckbox, CustomRadioButton, _default$c as CustomSelect, _default$d as CustomTextarea, DatePicker, _default$$ as DaySlider, DayToRender, DividerProps, DrumListPicker, DynamicCommissionValue, _default$X as EducationCard, _default$1c as EmptyChatList, EmptyChatMessages, EmptyChatModalFeature, _default$14 as EmptyConsultations, EmptyList, EmptySpecialistListFeature, EntryNotFound, EntryNotFoundProps, ErrorCardFeature, FilterFeatureProps, FilterItem, FilterItemBoolean, FilterItemChips, FilterItemRange, FilterItemSelect, FilterOption, FilterOptionValue, FilterValue, FiltersWidget, FiltersWidgetProps, FirstChatMessageModalFeature, _default$7 as Flag, FlagTypes, _default$P as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconAddModerator, IconApple, IconArrowDown, IconArrowLeft, IconArrowRight, IconArrowTopRight, IconAttachMoney, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$J as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCalendarNew, IconCalendarWithDot, IconCancel, IconCancelRounded, IconCapFilled, IconChat, IconChat3d, IconChat3dSmaller, IconChatFilled, IconChatOutline, IconCheck, IconCheckCircle, IconCheckSmall, IconCheckboxChecked, IconCheckboxUnchecked, IconClient, IconClientFilled, IconClose, IconContract, IconCopy, IconCreditCard, IconDelete, IconDocument, IconDot, IconEcgHeart, IconEdit, IconEditCalendar, IconEmptyList, IconEventBusy, IconExperience, IconEye, IconEyeOff, IconFilters, IconGallery, IconGift, IconGoogle, IconHeart, IconHome, IconIdCard, IconInvisible, IconInvoice, IconLanguage, IconLeftArrow, IconLetter, IconLink, IconLock, IconLogout, IconManageAccounts, IconMindly, IconMindlyColored, IconMindlyMini, IconMinus, IconMoreVertical, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPause, IconPersonAlert, IconPlay, IconPlus, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconProps$B as IconProps, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconReceipt, IconReceiptLong, IconRenew, IconResume, IconSchedule, IconSchema, IconSearch, IconSend, IconSettings, IconShare, IconSpecialistsEnded, IconSpinner, IconStar, IconStarFilled, IconStudyHat, IconStylus, IconSuccess, IconText, IconTime, IconTimeAdd, IconUnmute, IconUser, IconUserNotFound, IconVerifiedUser, IconVisible, IconWarning, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, InputSearch, _default$F as Item, _default$M as ItemCard, LabelArrowRedirect, LanguagesList, _default$1j as LetterAvatar, _default$8 as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListButton, ListItemType, _default$C as ListItemWithColumns, _default$G as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$H as Loading, LocaleCurrencyMapper, LouseConnect, MapStatusContractToUIStatus, _default$n as MarkdownContainerFeature, _default$D as MatchProgress, _default$1g as MediaPlayer, MenuFeature, Modal, ModalCalendar, ModalSheet, NEAR_SESSION_TIME_SECONDS, NavigationBar, NewSpecialist, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, OnBoardingBaseScreenType, OnBoardingFlowType, _default$l as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, _default$i as OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$k as OnBoardingMultiSelectionScreenPreviewFeature, _default$h as OnBoardingProgressFeature, _default$g as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenBgType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenOptionType, OnBoardingScreenOptions, OnBoardingScreenSkipButtonType, OnBoardingScreenStyleOptions, OnBoardingScreensType, OnBoardingSingleSelectScreenType, _default$j as OnBoardingSingleSelectionScreenPreviewFeature, _default$m as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$t as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$v as PaymentSessionsList, _default$1i as PersonDateTimeCard, _default$O as Picture, _default$6 as ProfileInformation, _default$Z as ProfileView, _default$9 as ProgressBar, ProgressBarDashed, _default$I as ProgressBar_v2, ProgressRangeProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$K as Rating, RatingCircleWrapper, _default$10 as ReSchedule, ReScheduleSuccess, Refresher, ResponseFileType, ReviewCard, _default$s as ReviewCardFeature, ReviewListFeature, ReviewStatistics, ReviewSubscriptionSessionFeature, ReviewSubscriptionSessionFeatureProps, ReviewSwiperSection, ReviewTrialSessionFeature, ReviewTrialSessionFeatureProps, ReviewsCardFeatureSkeleton, ReviewsSummary, RoundButton, RowItemType, RowSelect, RowSelectProps, Rule, SIZES, SOON_SESSION_TIME_SECONDS, _default$q as ScreenDrumPickerFormFeature, ScreenInput, _default$r as ScreenInputFormFeature, ScreenInputUpdateFeature, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$1h as SelectImpressionEmoji, SelectItemType, _default$o as SelectWithSearchFormFeature, Session, SessionDetailWidget, SessionPaymentsWidget, SessionPreviewFeature, SessionReview$1 as SessionReview, SessionTime, SessionVariant, SessionsWidget as SessionsListWidget, SessionsWidgetProps, Sex, ShareModalFeature, ShortCurrencySignByLocale, _default$B as ShowMore, _default$15 as SignUpSessionButton, _default$12 as SignUpSessionModal, SizeValues, Skeleton, _default$Q as Skeleton_v2, _default$A as SlotsGrid, _default$z as SlotsGridItem, Specialist, _default$Y as SpecialistAbout, SpecialistAreaList as SpecialistAreaListFeature, SpecialistCard, SpecialistCardListWidget, _default$3 as SpecialistCardWidget, SpecialistConsultation, SpecialistConsultationPayment, _default as SpecialistDetailWidget, SpecialistEducation, _default$1a as SpecialistEducationCard, SpecialistEducationsFeature, SpecialistInfoColumnFeature, SpecialistLangs, _default$5 as SpecialistMatch, SpecialistOrderType, SpecialistPaymentCardProps, _default$x as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$w as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default$1 as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$2 as SpecialistPaymentWidget, SpecialistPaymentWidgetType, SpecialistPreviewFeature, SpecialistPreviewListWidget, SpecialistProfileNotFound, _default$19 as SpecialistProfileViewCard, SpecialistReview$1 as SpecialistReview, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default$4 as SpecialistStatistic, SpecialistStatisticsCard, SpecialistWorkDirections, Spinner, Spinner_v2, StarRating, StatisticsScroll, StatusTag, StripeSupportedCurrency, Subscription, SubscriptionStatuses, SuccessScreen, SuperSpecialist, SupportedCurrency, SupportedLangs, SwitchDeviceCard, TabBar, TabItem, Tabs$1 as Tabs, TabsToolbarFeature, Tag, _default$p as TextAreaFormFeature, _default$e as TextInput, _default$f as TextWithClampFeature, _default$1b as Textarea, _default$L as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$U as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UserType, UsersPsychologistScrollList, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$E as Video, _default$17 as VideoCallInfo, _default$18 as VideoPlayer, VideoProvider, _default$_ as WorkDirections, YourLocalTimeBlock, appThemes, canManageSession, decOfNum, formatByDigits, getCountryKeyByName, getDateLocale, getFiltersQuery, getFiltersValues, getGMTOffset, getMappedFilterValue, getProgressForBreakPoint, getSessionTimeLabel, getSessionVariant, getSessionsByDay, getSessionsByMonth, getSessionsByYear, getSignAgreementsTabs, getStartSessionDate, getStartSessionTimestamp, isClientCan, isFilterSet, isNewSpecialist, isSpecialistActive, isSpecialistBlocked, isSpecialistPublic, isSuperSpecialist, mergeRefs, newShade, priceNormalize, replaceMarkdownWithReactElements, roundToPrecision, splitSessions, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDeepCompareEffect, useDeepUpdateEffect, useDomRef, useElementWidth, useEvent, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useToastContext, useUpdateEffect, useVideoContext };
|
|
3985
|
+
export { AcceptAgreementFeature, Action, _default$T as AlertCard, AllowFilterValueType, AppFooter, _default$S as AppFooter_v2, AppHeader, AppHeaderPage as AppHeaderPageFeature, AppHeader_v2, AppNotSupportedFeature, ArchivedConsultationCard, AutoComplete, Avatar, AvatarProps$1 as AvatarProps, _default$R as Avatar_v2, AvatarProps as Avatar_v2Props, BREAKPOINT_ICON_SIZE, _default$N as Badge, _default$W as BookingScheduleTime, _default$V as BookingSpecialistInfo, BreakPointPositionProps, BreakPointPositionResult, Button, Button_v2, CAN_MANAGE_SESSION_TIME_HOURS, COUNTRIES_MAPPER, Calendar, _default$u as CalendarPickerFeature, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$1f as ChatListItem, _default$1d as ChatListSkeleton, _default$1e as ChatMessage, ChatMessageSkeleton, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$a as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingComponentProps, CircleRatingContent, CircleRatingContext, CircleRatingContextData, CircleRatingContextProps, CircleRatingDataProps, CircleRatingDataResult, CircleRatingLegendProps, CircleRatingProvider, CircleRatingRange, CircleRatingSize, ClientCanAction, ClientCanParams, ClientSpecialistContractStatusEnum, CollapsableText, ConditionRulesType, Consultation, _default$16 as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$13 as ConsultationModal, _default$y as ConsultationPricingFeature, _default$11 as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentCard, ContentRendererProps, ContractDataFeature, ContractStatusEnum, ContentTree as ContractTreeFeature, CountdownTimerFeature, CountryOfOriginModal, CurrencyLocaleMapper, CurrencySignByLocale, CustomButton, _default$b as CustomCheckbox, CustomRadioButton, _default$c as CustomSelect, _default$d as CustomTextarea, DatePicker, _default$$ as DaySlider, DayToRender, DividerProps, DrumListPicker, DynamicCommissionValue, _default$X as EducationCard, _default$1c as EmptyChatList, EmptyChatMessages, EmptyChatModalFeature, _default$14 as EmptyConsultations, EmptyList, EmptySpecialistListFeature, EntryNotFound, EntryNotFoundProps, ErrorCardFeature, FilterFeatureProps, FilterItem, FilterItemBoolean, FilterItemChips, FilterItemRange, FilterItemSelect, FilterOption, FilterOptionValue, FilterValue, FiltersWidget, FiltersWidgetProps, FirstChatMessageModalFeature, _default$7 as Flag, FlagTypes, _default$P as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconAddModerator, IconApple, IconArrowDown, IconArrowLeft, IconArrowRight, IconArrowTopRight, IconAttachMoney, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$J as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCalendarNew, IconCalendarWithDot, IconCancel, IconCancelRounded, IconCapFilled, IconChat, IconChat3d, IconChat3dSmaller, IconChatFilled, IconChatOutline, IconCheck, IconCheckCircle, IconCheckSmall, IconCheckboxChecked, IconCheckboxUnchecked, IconClient, IconClientFilled, IconClose, IconContract, IconCopy, IconCreditCard, IconDelete, IconDocument, IconDot, IconEcgHeart, IconEdit, IconEditCalendar, IconEmptyList, IconEventBusy, IconExperience, IconEye, IconEyeOff, IconFilters, IconGallery, IconGift, IconGiftNew, IconGoogle, IconHeart, IconHome, IconIdCard, IconInvisible, IconInvoice, IconLanguage, IconLeftArrow, IconLetter, IconLink, IconLock, IconLogout, IconManageAccounts, IconMindly, IconMindlyColored, IconMindlyMini, IconMinus, IconMoreVertical, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPause, IconPersonAlert, IconPlay, IconPlus, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconProps$B as IconProps, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconReceipt, IconReceiptLong, IconRenew, IconResume, IconReviewSessionSubscription, IconReviewSessionTrial, IconSchedule, IconSchema, IconSearch, IconSend, IconSettings, IconShare, IconSpecialistsEnded, IconSpinner, IconStar, IconStarFilled, IconStudyHat, IconStylus, IconSuccess, IconText, IconTime, IconTimeAdd, IconUnmute, IconUser, IconUserNotFound, IconVerifiedUser, IconVisible, IconWarning, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, InputSearch, _default$F as Item, _default$M as ItemCard, LabelArrowRedirect, LanguagesList, _default$1j as LetterAvatar, _default$8 as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListButton, ListItemType, _default$C as ListItemWithColumns, _default$G as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$H as Loading, LocaleCurrencyMapper, LouseConnect, MapStatusContractToUIStatus, _default$n as MarkdownContainerFeature, _default$D as MatchProgress, _default$1g as MediaPlayer, MenuFeature, Modal, ModalCalendar, ModalSheet, NEAR_SESSION_TIME_SECONDS, NavigationBar, NewSpecialist, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, OnBoardingBaseScreenType, OnBoardingFlowType, _default$l as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, _default$i as OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$k as OnBoardingMultiSelectionScreenPreviewFeature, _default$h as OnBoardingProgressFeature, _default$g as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenBgType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenOptionType, OnBoardingScreenOptions, OnBoardingScreenSkipButtonType, OnBoardingScreenStyleOptions, OnBoardingScreensType, OnBoardingSingleSelectScreenType, _default$j as OnBoardingSingleSelectionScreenPreviewFeature, _default$m as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$t as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$v as PaymentSessionsList, _default$1i as PersonDateTimeCard, _default$O as Picture, _default$6 as ProfileInformation, _default$Z as ProfileView, _default$9 as ProgressBar, ProgressBarDashed, _default$I as ProgressBar_v2, ProgressRangeProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$K as Rating, RatingCircleWrapper, _default$10 as ReSchedule, ReScheduleSuccess, Refresher, ResponseFileType, ReviewCard, _default$s as ReviewCardFeature, ReviewListFeature, ReviewStatistics, ReviewSubscriptionSessionFeature, ReviewSubscriptionSessionFeatureProps, ReviewSwiperSection, ReviewTrialSessionFeature, ReviewTrialSessionFeatureProps, ReviewsCardFeatureSkeleton, ReviewsSummary, RoundButton, RowItemType, RowSelect, RowSelectProps, Rule, SIZES, SOON_SESSION_TIME_SECONDS, _default$q as ScreenDrumPickerFormFeature, ScreenInput, _default$r as ScreenInputFormFeature, ScreenInputUpdateFeature, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$1h as SelectImpressionEmoji, SelectItemType, _default$o as SelectWithSearchFormFeature, Session, SessionDetailWidget, SessionPaymentsWidget, SessionPreviewFeature, SessionReview$1 as SessionReview, SessionTime, SessionVariant, SessionsWidget as SessionsListWidget, SessionsWidgetProps, Sex, ShareModalFeature, ShortCurrencySignByLocale, _default$B as ShowMore, _default$15 as SignUpSessionButton, _default$12 as SignUpSessionModal, SizeValues, Skeleton, _default$Q as Skeleton_v2, _default$A as SlotsGrid, _default$z as SlotsGridItem, Specialist, _default$Y as SpecialistAbout, SpecialistAreaList as SpecialistAreaListFeature, SpecialistCard, SpecialistCardListWidget, _default$3 as SpecialistCardWidget, SpecialistConsultation, SpecialistConsultationPayment, _default as SpecialistDetailWidget, SpecialistEducation, _default$1a as SpecialistEducationCard, SpecialistEducationsFeature, SpecialistInfoColumnFeature, SpecialistLangs, _default$5 as SpecialistMatch, SpecialistOrderType, SpecialistPaymentCardProps, _default$x as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$w as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default$1 as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$2 as SpecialistPaymentWidget, SpecialistPaymentWidgetType, SpecialistPreviewFeature, SpecialistPreviewListWidget, SpecialistProfileNotFound, _default$19 as SpecialistProfileViewCard, SpecialistReview$1 as SpecialistReview, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default$4 as SpecialistStatistic, SpecialistStatisticsCard, SpecialistWorkDirections, Spinner, Spinner_v2, StarRating, StatisticsScroll, StatusTag, StripeSupportedCurrency, Subscription, SubscriptionStatuses, SuccessScreen, SuperSpecialist, SupportedCurrency, SupportedLangs, SwitchDeviceCard, TabBar, TabItem, Tabs$1 as Tabs, TabsToolbarFeature, Tag, _default$p as TextAreaFormFeature, _default$e as TextInput, _default$f as TextWithClampFeature, _default$1b as Textarea, _default$L as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$U as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UserType, UsersPsychologistScrollList, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$E as Video, _default$17 as VideoCallInfo, _default$18 as VideoPlayer, VideoProvider, _default$_ as WorkDirections, YourLocalTimeBlock, appThemes, canManageSession, decOfNum, formatByDigits, getCountryKeyByName, getDateLocale, getFiltersQuery, getFiltersValues, getGMTOffset, getMappedFilterValue, getProgressForBreakPoint, getSessionTimeLabel, getSessionVariant, getSessionsByDay, getSessionsByMonth, getSessionsByYear, getSignAgreementsTabs, getStartSessionDate, getStartSessionTimestamp, isClientCan, isFilterSet, isNewSpecialist, isSpecialistActive, isSpecialistBlocked, isSpecialistPublic, isSuperSpecialist, mergeRefs, newShade, priceNormalize, replaceMarkdownWithReactElements, roundToPrecision, splitSessions, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDeepCompareEffect, useDeepUpdateEffect, useDomRef, useElementWidth, useEvent, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useToastContext, useUpdateEffect, useVideoContext };
|