@mindly/ui-components 8.6.14 → 8.6.16
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 +3 -3
- package/dist/cjs/lib2/features/RevampSubscriptionStepperFeature/Stepper/Step1.d.ts +1 -1
- package/dist/cjs/lib2/features/RevampSubscriptionStepperFeature/Stepper/Step2.d.ts +2 -3
- package/dist/cjs/lib2/features/RevampSubscriptionStepperFeature/Stepper/Step3.d.ts +3 -2
- package/dist/cjs/lib2/features/RevampSubscriptionStepperFeature/Stepper/Step4.d.ts +1 -1
- package/dist/cjs/lib2/features/RevampSubscriptionStepperFeature/constants.d.ts +9 -0
- package/dist/cjs/lib2/features/RevampSubscriptionStepperFeature/hooks/useStepChanger.d.ts +1 -1
- package/dist/cjs/lib2/features/RevampSubscriptionStepperFeature/index.d.ts +1 -0
- package/dist/cjs/lib2/features/RevampSubscriptionStepperFeature/types.d.ts +6 -2
- package/dist/cjs/lib2/features/index.d.ts +1 -0
- package/dist/esm/index.js +7 -7
- package/dist/esm/lib2/features/RevampSubscriptionStepperFeature/Stepper/Step1.d.ts +1 -1
- package/dist/esm/lib2/features/RevampSubscriptionStepperFeature/Stepper/Step2.d.ts +2 -3
- package/dist/esm/lib2/features/RevampSubscriptionStepperFeature/Stepper/Step3.d.ts +3 -2
- package/dist/esm/lib2/features/RevampSubscriptionStepperFeature/Stepper/Step4.d.ts +1 -1
- package/dist/esm/lib2/features/RevampSubscriptionStepperFeature/constants.d.ts +9 -0
- package/dist/esm/lib2/features/RevampSubscriptionStepperFeature/hooks/useStepChanger.d.ts +1 -1
- package/dist/esm/lib2/features/RevampSubscriptionStepperFeature/index.d.ts +1 -0
- package/dist/esm/lib2/features/RevampSubscriptionStepperFeature/types.d.ts +6 -2
- package/dist/esm/lib2/features/index.d.ts +1 -0
- package/dist/index.d.ts +7 -3
- package/package.json +1 -1
|
@@ -4,7 +4,7 @@ export type Step2Props = {
|
|
|
4
4
|
t: WithTranslation['t'];
|
|
5
5
|
dateText: string;
|
|
6
6
|
onGoNext: () => void;
|
|
7
|
-
onCancel: () => void;
|
|
7
|
+
onCancel: (step?: number) => void;
|
|
8
8
|
onBack: () => void;
|
|
9
9
|
onInfoClick: () => void;
|
|
10
10
|
screenImage: {
|
|
@@ -13,6 +13,5 @@ export type Step2Props = {
|
|
|
13
13
|
height: number;
|
|
14
14
|
};
|
|
15
15
|
};
|
|
16
|
-
|
|
17
|
-
declare const Step2: FC<CombinedProps>;
|
|
16
|
+
declare const Step2: FC<Step2Props>;
|
|
18
17
|
export default Step2;
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import { FC } from 'react';
|
|
2
|
+
import { RecurringSessionsTimeSlots } from '../types';
|
|
2
3
|
import { WithTranslation } from 'react-i18next';
|
|
3
4
|
export type Step3Props = {
|
|
4
5
|
t: WithTranslation['t'];
|
|
5
|
-
|
|
6
|
+
date?: RecurringSessionsTimeSlots;
|
|
6
7
|
recurrentSessionsItems: string | undefined;
|
|
7
8
|
onGoNext: () => void;
|
|
8
|
-
onCancel: () => void;
|
|
9
|
+
onCancel: (step?: number) => void;
|
|
9
10
|
onBack: () => void;
|
|
10
11
|
onInfoClick: () => void;
|
|
11
12
|
screenImage: {
|
|
@@ -35,6 +35,15 @@ export declare const TRANSLATION_KEYS: {
|
|
|
35
35
|
DESCRIPTION: string;
|
|
36
36
|
CONTINUE: string;
|
|
37
37
|
};
|
|
38
|
+
EVERY_DAY: {
|
|
39
|
+
monday: string;
|
|
40
|
+
tuesday: string;
|
|
41
|
+
wednesday: string;
|
|
42
|
+
thursday: string;
|
|
43
|
+
friday: string;
|
|
44
|
+
saturday: string;
|
|
45
|
+
sunday: string;
|
|
46
|
+
};
|
|
38
47
|
};
|
|
39
48
|
export declare const STEP_1_INDEX = 1;
|
|
40
49
|
export declare const STEP_2_INDEX = 2;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
type UseStepChangerProps = {
|
|
2
2
|
onSendAnalytics: (step: number) => void;
|
|
3
|
-
onCancel: () => void;
|
|
3
|
+
onCancel: (step?: number) => void;
|
|
4
4
|
isScreen3Visible: boolean;
|
|
5
5
|
};
|
|
6
6
|
export declare const useStepChanger: ({ onSendAnalytics, onCancel, isScreen3Visible, }: UseStepChangerProps) => {
|
|
@@ -7,15 +7,19 @@ export type OnSubmitArgs = {
|
|
|
7
7
|
selection: string[];
|
|
8
8
|
step: number;
|
|
9
9
|
};
|
|
10
|
+
export type RecurringSessionsTimeSlots = {
|
|
11
|
+
day: 'monday' | 'tuesday' | 'wednesday' | 'thursday' | 'friday' | 'saturday' | 'sunday';
|
|
12
|
+
time: string;
|
|
13
|
+
};
|
|
10
14
|
export type StepperBaseProps = {
|
|
11
15
|
t: WithTranslation['t'];
|
|
12
16
|
notificationDateTime: string;
|
|
13
|
-
reccurentSessionsTimeSlots?:
|
|
17
|
+
reccurentSessionsTimeSlots?: RecurringSessionsTimeSlots;
|
|
14
18
|
recurrentSessionsItems?: string;
|
|
15
19
|
onComplete: () => void;
|
|
16
20
|
onSendAnalytics: (step: number) => void;
|
|
17
21
|
onSubmit: ({ selection, step }: OnSubmitArgs) => void;
|
|
18
|
-
onCancel: () => void;
|
|
22
|
+
onCancel: (step?: number) => void;
|
|
19
23
|
onInfoClick: () => void;
|
|
20
24
|
avatarUrl?: string;
|
|
21
25
|
isRequestCompleted: boolean;
|
|
@@ -66,3 +66,4 @@ export * from './RecurringSessionPreviewFeature';
|
|
|
66
66
|
export * from './ReservedSessionManageModalFeature';
|
|
67
67
|
export * from './ViewedClientsListFeature';
|
|
68
68
|
export * from './RevampSubscriptionStepperFeature';
|
|
69
|
+
export type { RecurringSessionsTimeSlots } from './RevampSubscriptionStepperFeature';
|
package/dist/index.d.ts
CHANGED
|
@@ -3979,15 +3979,19 @@ type OnSubmitArgs = {
|
|
|
3979
3979
|
selection: string[];
|
|
3980
3980
|
step: number;
|
|
3981
3981
|
};
|
|
3982
|
+
type RecurringSessionsTimeSlots = {
|
|
3983
|
+
day: 'monday' | 'tuesday' | 'wednesday' | 'thursday' | 'friday' | 'saturday' | 'sunday';
|
|
3984
|
+
time: string;
|
|
3985
|
+
};
|
|
3982
3986
|
type StepperBaseProps = {
|
|
3983
3987
|
t: WithTranslation['t'];
|
|
3984
3988
|
notificationDateTime: string;
|
|
3985
|
-
reccurentSessionsTimeSlots?:
|
|
3989
|
+
reccurentSessionsTimeSlots?: RecurringSessionsTimeSlots;
|
|
3986
3990
|
recurrentSessionsItems?: string;
|
|
3987
3991
|
onComplete: () => void;
|
|
3988
3992
|
onSendAnalytics: (step: number) => void;
|
|
3989
3993
|
onSubmit: ({ selection, step }: OnSubmitArgs) => void;
|
|
3990
|
-
onCancel: () => void;
|
|
3994
|
+
onCancel: (step?: number) => void;
|
|
3991
3995
|
onInfoClick: () => void;
|
|
3992
3996
|
avatarUrl?: string;
|
|
3993
3997
|
isRequestCompleted: boolean;
|
|
@@ -5213,4 +5217,4 @@ type RowSelectProps = {
|
|
|
5213
5217
|
|
|
5214
5218
|
declare const RowSelect: FC<RowSelectProps>;
|
|
5215
5219
|
|
|
5216
|
-
export { AcceptAgreementFeature, Action, ActiveClientsCapacityOnboardingModal, AdvisorAssistFeature, _default$1h as AlertCard, AllowFilterValueType, AppFooter, _default$1g as AppFooter_v2, AppHeader, AppHeaderPage as AppHeaderPageFeature, AppHeader_v2, AppNotSupportedFeature, AppViewType, AuthContext, AuthProvider, AutoComplete, Avatar, AvatarProps$1 as AvatarProps, _default$1f as Avatar_v2, AvatarProps as Avatar_v2Props, BREAKPOINT_ICON_SIZE, _default$1b as Badge, _default$c as BookingScheduleTime, _default$b as BookingSpecialistInfo, BreakPointPositionProps, BreakPointPositionResult, Button, Button_v2, CAN_MANAGE_SESSION_TIME_HOURS, COUNTRIES_MAPPER, CSSVarStyles, Calendar, _default$R as CalendarPickerFeature, CancelSession, CardModal, ChangeLanguageModal, ChartAreaFeature, ChartLines as ChartLinesFeature, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$6 as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingComponentProps, CircleRatingContent, CircleRatingContext, CircleRatingContextData, CircleRatingContextProps, CircleRatingDataProps, CircleRatingDataResult, CircleRatingLegendProps, CircleRatingProvider, CircleRatingRange, CircleRatingSize, ClientCanAction, ClientCanParams, ClientCard, ClientCardProps, ClientSpecialistContractStatusEnum, CollapsableText, ConditionRulesType, ConfirmWithCommentFeature, ConfirmWithCommentFeatureRef, Consultation, _default$o as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$l as ConsultationModal, _default$V as ConsultationPricingFeature, ConsultationQueueTypeEnum, _default$j as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentRendererProps, ContractDataFeature, ContractStatusEnum, ContentTree as ContractTreeFeature, CountdownTimerFeature, Counter, CounterProps, CountryOfOriginModal, CoupleTherapySheetModalFeature, CoupleTherapySheetModalFeatureProps, CurrencyLocaleMapper, CurrencySignByLocale, CustomButton, _default$7 as CustomCheckbox, CustomRadioButton, _default$8 as CustomSelect, _default$9 as CustomTextarea, DatePicker, _default$h as DaySlider, Divider, DividerProps, DropdownFeature, DrumListPicker, DynamicCommissionValue, _default$d as EducationCard, EmptyChatModalFeature, EmptyClientsList, _default$m as EmptyConsultations, EmptyList, EmptySpecialistListFeature, ErrorCardFeature, _default$Z as ExploreCard, ExploreCardData, ExploreCardProps, ExploreCardSwiperFeature, ExploreCardSwiperFeatureProps, FilterFeatureProps, FilterItem, FilterItemBoolean, FilterItemChips, FilterItemRange, FilterItemSelect, FilterOption, FilterOptionValue, FilterValue, FiltersWidget, FiltersWidgetProps, FirstChatMessageModalFeature, _default$3 as Flag, FlagTypes, _default$1d as Flag_v2, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, ISpecialistReview, IconAccountBalance, IconAddCalendar, IconAddModerator, IconAdvisorAssistance, IconAlignHorizontalTextCenter, IconAlignHorizontalTextLeft, IconAlignHorizontalTextRight, IconAmEx, IconAppStoreRating, IconApple, IconApplePay, IconArrowDown, IconArrowLeft, IconArrowRange, IconArrowRight, IconArrowTopRight, IconArrowUp, IconAttachMoney, IconBeachAccess, IconBinoculars, IconBlock, IconBookmark, IconBookmarkOutlined, IconBusiness, _default$17 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, IconCouple, IconCreditCard, IconCreditScore, IconDelete, IconDivercity, IconDivider, IconDocument, IconDot, IconDoubleArrow, IconEcgHeart, IconEdit, IconEditCalendar, IconEmptyList, IconEvening, IconEventBusy, IconExperience, IconEye, IconEyeOff, IconFilledHeart, IconFilters, IconGallery, IconGift, IconGiftNew, IconGlobe, IconGoogle, IconGoogleCalendar, IconGooglePay, IconHeart, IconHome, IconIdCard, IconInfo, IconInvisible, IconInvoice, IconKeyboard, IconLanguage, IconLeaderboard, IconLeftArrow, IconLetter, IconLightBubble, IconLink, IconLock, IconLogout, IconLoyalty, IconMaestro, IconManageAccounts, IconMastercard, IconMatching, IconMindly, IconMindlyColored, IconMindlyMini, IconMinus, IconMooving, IconMoreVertical, IconMorning, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPaperPencil, IconPause, IconPaywall, IconPeople, IconPersonAlert, IconPhotoCamera, IconPlay, IconPlus, IconPoweredByStripe, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconProps$I as IconProps, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconRadioPartial, IconReceipt, IconReceiptLong, IconRecurring, IconRenew, IconReschedule, IconResume, IconReviewSessionSubscription, IconReviewSessionTrial, IconRoundWarning, IconSchedule, IconSchema, IconSearch, IconSecure, IconSend, IconSettings, IconShare, IconSort, IconSparklingStars, IconSpecialistsEnded, IconSpinner, IconStar, IconStarFilled, IconStudyHat, IconStylus, IconSuccess, IconSun, IconSwitch, IconText, IconTime, IconTimeAdd, IconUnmute, IconUser, IconUserNotFound, IconVerifiedUser, IconVisa, IconVisible, IconVoiceMode, IconWarning, ImageInput, ImageWithFallback, Input, InputSearch, _default$13 as Item, _default$1a as ItemCard, LabelArrowRedirect, _default$1l as LetterAvatar, _default$4 as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListItemType, _default$10 as ListItemWithColumns, _default$14 as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$15 as Loading, LocaleCurrencyMapper, MIN_COMMENT_LENGTH, MapStatusContractToUIStatus, _default$K as MarkdownContainerFeature, _default$11 as MatchProgress, _default$1k as MediaPlayer, MenuFeature, MindlyReview, MindlyReviewFeature, ModalSheet, NEAR_SESSION_TIME_SECONDS, NewSpecialist, NoInternetConnection, NotSupportModal, NoticeCard, ONBOARDING_THEME_DEFAULT_COLORS, OnBoardingAreasOfWorkSelectScreenType, OnBoardingBaseScreenType, OnBoardingChartScreenPreviewFeature, OnBoardingChartScreenType, OnBoardingCompareScreenPreviewFeature, OnBoardingCompareScreenType, _default$C as OnBoardingConfirmScreenPreviewFeature, OnBoardingConfirmScreenType, _default$D as OnBoardingEmailScreenPreviewFeature, OnBoardingEmailScreenType, OnBoardingFlowType, OnBoardingGoalSelectScreenType, _default$B as OnBoardingGoalSelectionScreenPreviewFeature, OnBoardingGraphScreenPreviewFeature, OnBoardingGraphScreenType, _default$I as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$H as OnBoardingMultiSelectionScreenPreviewFeature, OnBoardingPaywallScreenPreviewFeature, OnBoardingPaywallScreenType, _default$F as OnBoardingProgressFeature, OnBoardingProgressSettingsScreenType, _default$E as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenAlertType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenEmailType, OnBoardingScreenErrorsType, OnBoardingScreenOptionType, OnBoardingScreenOptionWithScaleType, OnBoardingScreenOptions, OnBoardingScreenPasswordType, OnBoardingScreenPrivacyType, OnBoardingScreenProgressType, OnBoardingScreenSkipButtonType, OnBoardingScreenStyleOptions, OnBoardingScreenSubgoalButtonType, OnBoardingScreenTranslationsType, OnBoardingScreensType, OnBoardingSingleImageSelectScreenType, OnBoardingSingleRoundImageSelectScreenType, OnBoardingSingleScaleSelectScreenType, OnBoardingSingleSelectScreenType, _default$G as OnBoardingSingleSelectionScreenPreviewFeature, OnBoardingSpecializationSelectScreenType, _default$J as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OnBoardingThemeV2Type, OnboardingProgressTemplate, OnboardingVariant, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$Q as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$S as PaymentSessionsList, PayoutCurrencySignByLocale, PayoutShortCurrencySignByLocale, _default$1c as Picture, PoweredByStripeFeature, _default$2 as ProfileInformation, _default$f as ProfileView, _default$5 as ProgressBar, ProgressBarDashed, _default$16 as ProgressBar_v2, _default$Y as ProgressCard, ProgressCardProps, ProgressRangeProps, _default$_ as PromptCard, PromptCardData, PromptCardProps, _default$y as PromptCardsFeature, PromptCardsFeatureProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$18 as Rating, RatingCircleVariant, RatingCircleWrapper, _default$i as ReSchedule, ReScheduleSuccess, RecurringSchedule, RecurringSession, RecurringSessionPreviewFeature, Refresher, ReservedSessionManageModalFeature, ResponseFileType, _default$x as RevampSubscriptionStepperFeature, ReviewCard, _default$P as ReviewCardFeature, ReviewListFeature, ReviewStatistics, ReviewSubscriptionSessionFeature, ReviewSubscriptionSessionFeatureProps, ReviewSwiperSection, ReviewTrialSessionFeature, ReviewTrialSessionFeatureProps, ReviewsCardFeatureSkeleton, ReviewsSummary, RoundButton, RowItemType, RowSelect, RowSelectProps, Rule, SESSION_DURATION, SIZES, SOON_SESSION_TIME_SECONDS, Schedule, ScheduleDate, ScheduleSlot, _default$N as ScreenDrumPickerFormFeature, ScreenInput, _default$O as ScreenInputFormFeature, ScreenInputUpdateFeature, SectionHeading, Segment, SegmentColor, SegmentType, SelectItemType, _default$L as SelectWithSearchFormFeature, _default$z as SelectionListFeature, Session, SessionDetailWidget, SessionDetailWidgetSkeleton, SessionManageModalFeature, SessionManageTypeEnum, SessionPaymentsWidget, SessionPreviewFeature, SessionQueue, SessionReview$1 as SessionReview, SessionTime, SessionTypeEnum, SessionManageModalFeature$1 as SessionTypeSelectorModalFeature, SessionVariant, SessionsWidget as SessionsListWidget, SessionsWidgetProps, Sex, ShareModalFeature, ShortCurrencySignByLocale, ShortTranscriptionCurrencySignByLocale, _default$$ as ShowMore, _default$n as SignUpSessionButton, _default$k as SignUpSessionModal, SimpleTabs, SimpleTabsProps, SizeValues, Skeleton, _default$1e as Skeleton_v2, Slider, _default$X as SlotsGrid, _default$W as SlotsGridItem, SolidInput, Sort, SortDirection, SortKey, SortValue, Specialist, _default$e as SpecialistAbout, SpecialistAreaList as SpecialistAreaListFeature, SpecialistCard, SpecialistCardListWidget, _default$w as SpecialistCardWidget, SpecialistCardSkeleton as SpecialistCardWithScheduleSkeleton, _default$q as SpecialistCardWithScheduleWidget, SpecialistConsultation, SpecialistConsultationPayment, _default$t as SpecialistDetailWidget, SpecialistDetailWidgetSkeleton, SpecialistDetailWithTabsSkeleton, _default$r as SpecialistDetailWithTabsWidget, SpecialistEducation, SpecialistEducationsFeature, SpecialistInfoColumnFeature, SpecialistLangs, _default$1 as SpecialistMatch, SpecialistOrderType, SpecialistPaymentCardProps, _default$U as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$T as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default$u as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$v as SpecialistPaymentWidget, SpecialistPaymentWidgetType, SpecialistPreviewFeature, SpecialistPreviewListWidget, _default$s as SpecialistPreviewWidget, SpecialistProfileNotFound, SpecialistProfileViewCounter, SpecialistRescheduleFeature, SpecialistReview$1 as SpecialistReview, SpecialistScheduleFeature, SpecialistScheduleProvider, SpecialistScheduleProviderRef, ScheduleSkeleton as SpecialistScheduleSkeletonFeature, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default as SpecialistStatistic, Spinner, Spinner_v2, StarRating, StatisticsScroll, StripeSupportedCurrency, Subscription, SubscriptionStatuses, SuccessModalFeature, SuccessModalFeatureAction, SuccessScreen, SuperSpecialist, SupportedCurrency, SupportedLangs, SupportedLocales, SwitchDeviceCard, TabItem, Tabs$1 as Tabs, TabsFeature, TabsFeatureSkeleton, TabsToolbarFeature, Tag, Tariff, TariffFeature, _default$M as TextAreaFormFeature, _default$a as TextInput, _default$A as TextWithClampFeature, _default$19 as Textarea_v2, ThemeProvider, ThemeProviderProps, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$1i as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UserType, UserTypeEnum, VariantType, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$12 as Video, _default$p as VideoCallInfo, _default$1j as VideoPlayer, VideoProvider, ViewedClientsListFeature, ViewedClientsWidget, _default$g as WorkDirections, appThemes, canManageSession, capitalizeFirstLetter, currentUser, decOfNum, formatByDigits, getCountryKeyByName, getDateLocale, getFilterCount, getFiltersQuery, getFiltersValues, getGMTOffset, getMappedFilterValue, getMockSchedule, getMonthNameInGenitive, getProgressForBreakPoint, getRecurringSessionDate, getSessionTimeLabel, getSessionVariant, getSessionsByDay, getSessionsByMonth, getSessionsByYear, getSignAgreementsTabs, getSortFromKey, getSortKey, getStartSessionDate, getStartSessionTimestamp, getVisibleLength, globalAuthState, isClientCan, isCommentValid, isFilterSet, isNewSpecialist, isSpecialistActive, isSpecialistBlocked, isSpecialistPublic, isSuperSpecialist, listReviews, localTimeZone, mergeRefs, mockRecurringSession, mockSession, mockSessions, mockSubscriptionInFuture, mockSubscriptionInNearFuture, mockSubscriptions, mockT, newShade, payoutPriceNormalize, priceNormalize, replaceMarkdownWithReactElements, roundToPrecision, specialist, splitSessions, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDeepCompareEffect, useDeepUpdateEffect, useDelayMount, useDomRef, useElementWidth, useEvent, useIsKeyBoardShown, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useScrollToElement, useSpecialistScheduleContext, useStopPropagationEvent, useToastContext, useUpdateEffect, useVideoContext, withSpecialistScheduleContext };
|
|
5220
|
+
export { AcceptAgreementFeature, Action, ActiveClientsCapacityOnboardingModal, AdvisorAssistFeature, _default$1h as AlertCard, AllowFilterValueType, AppFooter, _default$1g as AppFooter_v2, AppHeader, AppHeaderPage as AppHeaderPageFeature, AppHeader_v2, AppNotSupportedFeature, AppViewType, AuthContext, AuthProvider, AutoComplete, Avatar, AvatarProps$1 as AvatarProps, _default$1f as Avatar_v2, AvatarProps as Avatar_v2Props, BREAKPOINT_ICON_SIZE, _default$1b as Badge, _default$c as BookingScheduleTime, _default$b as BookingSpecialistInfo, BreakPointPositionProps, BreakPointPositionResult, Button, Button_v2, CAN_MANAGE_SESSION_TIME_HOURS, COUNTRIES_MAPPER, CSSVarStyles, Calendar, _default$R as CalendarPickerFeature, CancelSession, CardModal, ChangeLanguageModal, ChartAreaFeature, ChartLines as ChartLinesFeature, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$6 as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingComponentProps, CircleRatingContent, CircleRatingContext, CircleRatingContextData, CircleRatingContextProps, CircleRatingDataProps, CircleRatingDataResult, CircleRatingLegendProps, CircleRatingProvider, CircleRatingRange, CircleRatingSize, ClientCanAction, ClientCanParams, ClientCard, ClientCardProps, ClientSpecialistContractStatusEnum, CollapsableText, ConditionRulesType, ConfirmWithCommentFeature, ConfirmWithCommentFeatureRef, Consultation, _default$o as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$l as ConsultationModal, _default$V as ConsultationPricingFeature, ConsultationQueueTypeEnum, _default$j as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentRendererProps, ContractDataFeature, ContractStatusEnum, ContentTree as ContractTreeFeature, CountdownTimerFeature, Counter, CounterProps, CountryOfOriginModal, CoupleTherapySheetModalFeature, CoupleTherapySheetModalFeatureProps, CurrencyLocaleMapper, CurrencySignByLocale, CustomButton, _default$7 as CustomCheckbox, CustomRadioButton, _default$8 as CustomSelect, _default$9 as CustomTextarea, DatePicker, _default$h as DaySlider, Divider, DividerProps, DropdownFeature, DrumListPicker, DynamicCommissionValue, _default$d as EducationCard, EmptyChatModalFeature, EmptyClientsList, _default$m as EmptyConsultations, EmptyList, EmptySpecialistListFeature, ErrorCardFeature, _default$Z as ExploreCard, ExploreCardData, ExploreCardProps, ExploreCardSwiperFeature, ExploreCardSwiperFeatureProps, FilterFeatureProps, FilterItem, FilterItemBoolean, FilterItemChips, FilterItemRange, FilterItemSelect, FilterOption, FilterOptionValue, FilterValue, FiltersWidget, FiltersWidgetProps, FirstChatMessageModalFeature, _default$3 as Flag, FlagTypes, _default$1d as Flag_v2, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, ISpecialistReview, IconAccountBalance, IconAddCalendar, IconAddModerator, IconAdvisorAssistance, IconAlignHorizontalTextCenter, IconAlignHorizontalTextLeft, IconAlignHorizontalTextRight, IconAmEx, IconAppStoreRating, IconApple, IconApplePay, IconArrowDown, IconArrowLeft, IconArrowRange, IconArrowRight, IconArrowTopRight, IconArrowUp, IconAttachMoney, IconBeachAccess, IconBinoculars, IconBlock, IconBookmark, IconBookmarkOutlined, IconBusiness, _default$17 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, IconCouple, IconCreditCard, IconCreditScore, IconDelete, IconDivercity, IconDivider, IconDocument, IconDot, IconDoubleArrow, IconEcgHeart, IconEdit, IconEditCalendar, IconEmptyList, IconEvening, IconEventBusy, IconExperience, IconEye, IconEyeOff, IconFilledHeart, IconFilters, IconGallery, IconGift, IconGiftNew, IconGlobe, IconGoogle, IconGoogleCalendar, IconGooglePay, IconHeart, IconHome, IconIdCard, IconInfo, IconInvisible, IconInvoice, IconKeyboard, IconLanguage, IconLeaderboard, IconLeftArrow, IconLetter, IconLightBubble, IconLink, IconLock, IconLogout, IconLoyalty, IconMaestro, IconManageAccounts, IconMastercard, IconMatching, IconMindly, IconMindlyColored, IconMindlyMini, IconMinus, IconMooving, IconMoreVertical, IconMorning, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPaperPencil, IconPause, IconPaywall, IconPeople, IconPersonAlert, IconPhotoCamera, IconPlay, IconPlus, IconPoweredByStripe, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconProps$I as IconProps, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconRadioPartial, IconReceipt, IconReceiptLong, IconRecurring, IconRenew, IconReschedule, IconResume, IconReviewSessionSubscription, IconReviewSessionTrial, IconRoundWarning, IconSchedule, IconSchema, IconSearch, IconSecure, IconSend, IconSettings, IconShare, IconSort, IconSparklingStars, IconSpecialistsEnded, IconSpinner, IconStar, IconStarFilled, IconStudyHat, IconStylus, IconSuccess, IconSun, IconSwitch, IconText, IconTime, IconTimeAdd, IconUnmute, IconUser, IconUserNotFound, IconVerifiedUser, IconVisa, IconVisible, IconVoiceMode, IconWarning, ImageInput, ImageWithFallback, Input, InputSearch, _default$13 as Item, _default$1a as ItemCard, LabelArrowRedirect, _default$1l as LetterAvatar, _default$4 as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListItemType, _default$10 as ListItemWithColumns, _default$14 as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$15 as Loading, LocaleCurrencyMapper, MIN_COMMENT_LENGTH, MapStatusContractToUIStatus, _default$K as MarkdownContainerFeature, _default$11 as MatchProgress, _default$1k as MediaPlayer, MenuFeature, MindlyReview, MindlyReviewFeature, ModalSheet, NEAR_SESSION_TIME_SECONDS, NewSpecialist, NoInternetConnection, NotSupportModal, NoticeCard, ONBOARDING_THEME_DEFAULT_COLORS, OnBoardingAreasOfWorkSelectScreenType, OnBoardingBaseScreenType, OnBoardingChartScreenPreviewFeature, OnBoardingChartScreenType, OnBoardingCompareScreenPreviewFeature, OnBoardingCompareScreenType, _default$C as OnBoardingConfirmScreenPreviewFeature, OnBoardingConfirmScreenType, _default$D as OnBoardingEmailScreenPreviewFeature, OnBoardingEmailScreenType, OnBoardingFlowType, OnBoardingGoalSelectScreenType, _default$B as OnBoardingGoalSelectionScreenPreviewFeature, OnBoardingGraphScreenPreviewFeature, OnBoardingGraphScreenType, _default$I as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$H as OnBoardingMultiSelectionScreenPreviewFeature, OnBoardingPaywallScreenPreviewFeature, OnBoardingPaywallScreenType, _default$F as OnBoardingProgressFeature, OnBoardingProgressSettingsScreenType, _default$E as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenAlertType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenEmailType, OnBoardingScreenErrorsType, OnBoardingScreenOptionType, OnBoardingScreenOptionWithScaleType, OnBoardingScreenOptions, OnBoardingScreenPasswordType, OnBoardingScreenPrivacyType, OnBoardingScreenProgressType, OnBoardingScreenSkipButtonType, OnBoardingScreenStyleOptions, OnBoardingScreenSubgoalButtonType, OnBoardingScreenTranslationsType, OnBoardingScreensType, OnBoardingSingleImageSelectScreenType, OnBoardingSingleRoundImageSelectScreenType, OnBoardingSingleScaleSelectScreenType, OnBoardingSingleSelectScreenType, _default$G as OnBoardingSingleSelectionScreenPreviewFeature, OnBoardingSpecializationSelectScreenType, _default$J as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OnBoardingThemeV2Type, OnboardingProgressTemplate, OnboardingVariant, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$Q as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$S as PaymentSessionsList, PayoutCurrencySignByLocale, PayoutShortCurrencySignByLocale, _default$1c as Picture, PoweredByStripeFeature, _default$2 as ProfileInformation, _default$f as ProfileView, _default$5 as ProgressBar, ProgressBarDashed, _default$16 as ProgressBar_v2, _default$Y as ProgressCard, ProgressCardProps, ProgressRangeProps, _default$_ as PromptCard, PromptCardData, PromptCardProps, _default$y as PromptCardsFeature, PromptCardsFeatureProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$18 as Rating, RatingCircleVariant, RatingCircleWrapper, _default$i as ReSchedule, ReScheduleSuccess, RecurringSchedule, RecurringSession, RecurringSessionPreviewFeature, RecurringSessionsTimeSlots, Refresher, ReservedSessionManageModalFeature, ResponseFileType, _default$x as RevampSubscriptionStepperFeature, ReviewCard, _default$P as ReviewCardFeature, ReviewListFeature, ReviewStatistics, ReviewSubscriptionSessionFeature, ReviewSubscriptionSessionFeatureProps, ReviewSwiperSection, ReviewTrialSessionFeature, ReviewTrialSessionFeatureProps, ReviewsCardFeatureSkeleton, ReviewsSummary, RoundButton, RowItemType, RowSelect, RowSelectProps, Rule, SESSION_DURATION, SIZES, SOON_SESSION_TIME_SECONDS, Schedule, ScheduleDate, ScheduleSlot, _default$N as ScreenDrumPickerFormFeature, ScreenInput, _default$O as ScreenInputFormFeature, ScreenInputUpdateFeature, SectionHeading, Segment, SegmentColor, SegmentType, SelectItemType, _default$L as SelectWithSearchFormFeature, _default$z as SelectionListFeature, Session, SessionDetailWidget, SessionDetailWidgetSkeleton, SessionManageModalFeature, SessionManageTypeEnum, SessionPaymentsWidget, SessionPreviewFeature, SessionQueue, SessionReview$1 as SessionReview, SessionTime, SessionTypeEnum, SessionManageModalFeature$1 as SessionTypeSelectorModalFeature, SessionVariant, SessionsWidget as SessionsListWidget, SessionsWidgetProps, Sex, ShareModalFeature, ShortCurrencySignByLocale, ShortTranscriptionCurrencySignByLocale, _default$$ as ShowMore, _default$n as SignUpSessionButton, _default$k as SignUpSessionModal, SimpleTabs, SimpleTabsProps, SizeValues, Skeleton, _default$1e as Skeleton_v2, Slider, _default$X as SlotsGrid, _default$W as SlotsGridItem, SolidInput, Sort, SortDirection, SortKey, SortValue, Specialist, _default$e as SpecialistAbout, SpecialistAreaList as SpecialistAreaListFeature, SpecialistCard, SpecialistCardListWidget, _default$w as SpecialistCardWidget, SpecialistCardSkeleton as SpecialistCardWithScheduleSkeleton, _default$q as SpecialistCardWithScheduleWidget, SpecialistConsultation, SpecialistConsultationPayment, _default$t as SpecialistDetailWidget, SpecialistDetailWidgetSkeleton, SpecialistDetailWithTabsSkeleton, _default$r as SpecialistDetailWithTabsWidget, SpecialistEducation, SpecialistEducationsFeature, SpecialistInfoColumnFeature, SpecialistLangs, _default$1 as SpecialistMatch, SpecialistOrderType, SpecialistPaymentCardProps, _default$U as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$T as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default$u as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$v as SpecialistPaymentWidget, SpecialistPaymentWidgetType, SpecialistPreviewFeature, SpecialistPreviewListWidget, _default$s as SpecialistPreviewWidget, SpecialistProfileNotFound, SpecialistProfileViewCounter, SpecialistRescheduleFeature, SpecialistReview$1 as SpecialistReview, SpecialistScheduleFeature, SpecialistScheduleProvider, SpecialistScheduleProviderRef, ScheduleSkeleton as SpecialistScheduleSkeletonFeature, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default as SpecialistStatistic, Spinner, Spinner_v2, StarRating, StatisticsScroll, StripeSupportedCurrency, Subscription, SubscriptionStatuses, SuccessModalFeature, SuccessModalFeatureAction, SuccessScreen, SuperSpecialist, SupportedCurrency, SupportedLangs, SupportedLocales, SwitchDeviceCard, TabItem, Tabs$1 as Tabs, TabsFeature, TabsFeatureSkeleton, TabsToolbarFeature, Tag, Tariff, TariffFeature, _default$M as TextAreaFormFeature, _default$a as TextInput, _default$A as TextWithClampFeature, _default$19 as Textarea_v2, ThemeProvider, ThemeProviderProps, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$1i as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UserType, UserTypeEnum, VariantType, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$12 as Video, _default$p as VideoCallInfo, _default$1j as VideoPlayer, VideoProvider, ViewedClientsListFeature, ViewedClientsWidget, _default$g as WorkDirections, appThemes, canManageSession, capitalizeFirstLetter, currentUser, decOfNum, formatByDigits, getCountryKeyByName, getDateLocale, getFilterCount, getFiltersQuery, getFiltersValues, getGMTOffset, getMappedFilterValue, getMockSchedule, getMonthNameInGenitive, getProgressForBreakPoint, getRecurringSessionDate, getSessionTimeLabel, getSessionVariant, getSessionsByDay, getSessionsByMonth, getSessionsByYear, getSignAgreementsTabs, getSortFromKey, getSortKey, getStartSessionDate, getStartSessionTimestamp, getVisibleLength, globalAuthState, isClientCan, isCommentValid, isFilterSet, isNewSpecialist, isSpecialistActive, isSpecialistBlocked, isSpecialistPublic, isSuperSpecialist, listReviews, localTimeZone, mergeRefs, mockRecurringSession, mockSession, mockSessions, mockSubscriptionInFuture, mockSubscriptionInNearFuture, mockSubscriptions, mockT, newShade, payoutPriceNormalize, priceNormalize, replaceMarkdownWithReactElements, roundToPrecision, specialist, splitSessions, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDeepCompareEffect, useDeepUpdateEffect, useDelayMount, useDomRef, useElementWidth, useEvent, useIsKeyBoardShown, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useScrollToElement, useSpecialistScheduleContext, useStopPropagationEvent, useToastContext, useUpdateEffect, useVideoContext, withSpecialistScheduleContext };
|