@mindly/ui-components 8.5.1 → 8.5.3

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.
Files changed (30) hide show
  1. package/dist/cjs/index.js +3 -3
  2. package/dist/cjs/lib2/features/RecurringSessionPreviewFeature/types.d.ts +1 -0
  3. package/dist/cjs/lib2/features/SessionManageModalFeature/SessionManageModalFeature.d.ts +3 -2
  4. package/dist/cjs/lib2/features/SessionPreviewFeature/types.d.ts +1 -0
  5. package/dist/cjs/lib2/features/SpecialistScheduleFeature/types.d.ts +1 -0
  6. package/dist/cjs/lib2/shared/hooks/useCalendarData.d.ts +12 -8
  7. package/dist/cjs/lib2/shared/hooks/useSpecialistPayments.d.ts +6 -1
  8. package/dist/cjs/lib2/shared/types/session.d.ts +1 -1
  9. package/dist/cjs/lib2/shared/ui/DrumListPicker/DrumListPicker.d.ts +3 -2
  10. package/dist/cjs/lib2/shared/utils/index.d.ts +1 -0
  11. package/dist/cjs/lib2/shared/utils/session.d.ts +4 -2
  12. package/dist/cjs/lib2/shared/utils/timezone.d.ts +1 -0
  13. package/dist/cjs/lib2/widgets/SessionDetailWidget/types.d.ts +1 -0
  14. package/dist/cjs/lib2/widgets/SessionsListWidget/types.d.ts +1 -0
  15. package/dist/esm/index.js +3 -3
  16. package/dist/esm/lib2/features/RecurringSessionPreviewFeature/types.d.ts +1 -0
  17. package/dist/esm/lib2/features/SessionManageModalFeature/SessionManageModalFeature.d.ts +3 -2
  18. package/dist/esm/lib2/features/SessionPreviewFeature/types.d.ts +1 -0
  19. package/dist/esm/lib2/features/SpecialistScheduleFeature/types.d.ts +1 -0
  20. package/dist/esm/lib2/shared/hooks/useCalendarData.d.ts +12 -8
  21. package/dist/esm/lib2/shared/hooks/useSpecialistPayments.d.ts +6 -1
  22. package/dist/esm/lib2/shared/types/session.d.ts +1 -1
  23. package/dist/esm/lib2/shared/ui/DrumListPicker/DrumListPicker.d.ts +3 -2
  24. package/dist/esm/lib2/shared/utils/index.d.ts +1 -0
  25. package/dist/esm/lib2/shared/utils/session.d.ts +4 -2
  26. package/dist/esm/lib2/shared/utils/timezone.d.ts +1 -0
  27. package/dist/esm/lib2/widgets/SessionDetailWidget/types.d.ts +1 -0
  28. package/dist/esm/lib2/widgets/SessionsListWidget/types.d.ts +1 -0
  29. package/dist/index.d.ts +17 -6
  30. package/package.json +1 -1
@@ -7,4 +7,5 @@ export type RecurringSessionPreviewFeatureProps = {
7
7
  t?: WithTranslation['t'];
8
8
  isLoading?: boolean;
9
9
  onClick?(session: RecurringSession): void;
10
+ timeZone?: string;
10
11
  };
@@ -1,6 +1,6 @@
1
1
  import React, { FC } from 'react';
2
2
  import { WithTranslation } from 'react-i18next';
3
- import { RecurringSchedule } from '../../shared';
3
+ import { RecurringSession } from '../../shared';
4
4
  import { ModalSheetProps } from '../../shared/ui/ModalSheet/types';
5
5
  export declare enum SessionManageTypeEnum {
6
6
  ONLY_THIS_SESSION = "only_this_session",
@@ -9,8 +9,9 @@ export declare enum SessionManageTypeEnum {
9
9
  }
10
10
  type SessionManageModalFeatureProps = {
11
11
  action: 'reschedule' | 'cancel';
12
+ timeZone?: string;
12
13
  sessionStartDate: string;
13
- sessionRecurringSchedule?: RecurringSchedule;
14
+ recurringSession?: RecurringSession;
14
15
  isOpen?: boolean;
15
16
  locale?: string;
16
17
  ref?: React.RefObject<HTMLIonModalElement | null>;
@@ -8,6 +8,7 @@ export type SessionPreviewFeatureProps = {
8
8
  locale: SupportedLocales;
9
9
  maxPeriodToReviewPastSessionInHours?: number;
10
10
  daysBeforeCancelationQueueSession?: number;
11
+ timeZone?: string;
11
12
  onSessionClick?(session: Session | SessionQueue): void;
12
13
  onSessionStart?(session: Session | SessionQueue): void;
13
14
  rateSessionCallback?: (session: Session | SessionQueue) => void;
@@ -26,6 +26,7 @@ export type ScheduleFeatureProps = {
26
26
  bookButtonText?: string;
27
27
  footerContent?: React.ReactNode;
28
28
  sessionType?: SessionTypeEnum;
29
+ timeZone?: string;
29
30
  onDateChange?: (date: ScheduleDate, slots: ScheduleSlot[]) => void;
30
31
  onSlotChange?: (slot: ScheduleSlot | null) => void;
31
32
  onShowAll?: () => void;
@@ -1,11 +1,15 @@
1
- import { SupportedLocales } from '../types';
2
- type CalendarListProps = {
3
- locale?: SupportedLocales;
4
- lastDate: Date;
5
- };
6
- type CalendarListItem = {
7
- value: Date;
1
+ type SelectionItem<T extends string | number> = {
8
2
  label: string;
3
+ value: T;
4
+ };
5
+ type CalendarSelections = {
6
+ day: SelectionItem<number>[];
7
+ month: SelectionItem<string>[];
8
+ year: SelectionItem<number>[];
9
+ };
10
+ type CalendarListProps = {
11
+ locale?: string;
12
+ lastDate?: Date;
9
13
  };
10
- export declare function useCalendarListData({ locale, lastDate, }: CalendarListProps): CalendarListItem[];
14
+ export declare function useCalendarListData({ locale, lastDate, }: CalendarListProps): CalendarSelections;
11
15
  export {};
@@ -10,7 +10,12 @@ type DatesResultType = {
10
10
  isFutureMonth: boolean;
11
11
  };
12
12
  export declare function getDatePosition(calendarDate: Date): DatesResultType;
13
- export declare function getSelectedFormattedDate(date: Date, locale?: string): string;
13
+ type CalendarDefaults = {
14
+ day: string;
15
+ month: string;
16
+ year: string;
17
+ };
18
+ export declare function getSelectedFormattedDate(selectedDate: Date | null | undefined, locale?: string): CalendarDefaults;
14
19
  type FormattedDateProps = {
15
20
  date: Date;
16
21
  locale?: SupportedLocales;
@@ -82,9 +82,9 @@ export type RecurringSession = {
82
82
  id: string;
83
83
  specialistId: string;
84
84
  clientId: string;
85
- userTimezone: string;
86
85
  name?: string;
87
86
  avatarLink?: string;
87
+ timezone?: string;
88
88
  recurring: {
89
89
  interval: 'weekly';
90
90
  day: number;
@@ -7,9 +7,10 @@ type Props = {
7
7
  height?: number;
8
8
  selections: Record<string, SelectionType[]>;
9
9
  defaults?: Record<string, string>;
10
- onChange(value: Record<string, SelectionType>): void;
10
+ onChange(value: Record<string, string>): void;
11
11
  className?: string;
12
12
  compareBy?: 'value' | 'label';
13
+ presentation?: 'date' | 'month' | 'month-year';
13
14
  };
14
- declare const DrumListPicker: ({ height, selections, defaults, onChange, className, compareBy, }: Props) => import("react/jsx-runtime").JSX.Element;
15
+ declare const DrumListPicker: ({ height, selections, defaults, onChange, className, compareBy, presentation, }: Props) => import("react/jsx-runtime").JSX.Element;
15
16
  export default DrumListPicker;
@@ -13,3 +13,4 @@ export * from './mock';
13
13
  export { ONBOARDING_THEME_DEFAULT_COLORS } from './onboarding';
14
14
  export * from './globalAuthState';
15
15
  export * from './validation';
16
+ export * from './timezone';
@@ -1,5 +1,6 @@
1
+ import { DateTime } from 'luxon';
1
2
  import { WithTranslation } from 'react-i18next';
2
- import { Session, SessionTime, SessionVariant, SupportedLocales } from '../types';
3
+ import { RecurringSession, Session, SessionTime, SessionVariant, SupportedLocales } from '../types';
3
4
  export declare const SOON_SESSION_TIME_SECONDS: number;
4
5
  export declare const NEAR_SESSION_TIME_SECONDS: number;
5
6
  export declare const CAN_MANAGE_SESSION_TIME_HOURS = 24;
@@ -11,5 +12,6 @@ export declare const getSessionsByYear: (sessions: Session[]) => Map<number, Ses
11
12
  export declare const getSessionsByMonth: (sessions: Session[]) => Map<number, Session[]>;
12
13
  export declare const getSessionsByDay: (sessions: Session[]) => Map<number, Session[]>;
13
14
  export declare const splitSessions: (sessions: Session[]) => Map<string, Session[]>;
14
- export declare const getSessionTimeLabel: (variant: SessionVariant, startSessionDate: Date, t: WithTranslation["t"], locale: SupportedLocales) => string;
15
+ export declare const getSessionTimeLabel: (variant: SessionVariant, startSessionDate: Date, t: WithTranslation["t"], locale: SupportedLocales, timeZone: string) => string;
15
16
  export declare const canManageSession: (sessionDate?: Date) => boolean;
17
+ export declare const getRecurringSessionDate: (recurringSession: RecurringSession, timeZone: string) => DateTime;
@@ -0,0 +1 @@
1
+ export declare const localTimeZone: string;
@@ -7,6 +7,7 @@ export type SessionDetailWidgetProps = {
7
7
  t?: WithTranslation['t'];
8
8
  viewPerson?: 'client' | 'specialist';
9
9
  locale: SupportedLocales;
10
+ timeZone?: string;
10
11
  onSessionStart?(session: Session): void;
11
12
  onRescheduleClick?(session: Session): void;
12
13
  onCancelClick?(session: Session): void;
@@ -21,4 +21,5 @@ export type SessionsWidgetProps = {
21
21
  onScheduleSession?(): void;
22
22
  onUpdateSubscription?(session: Session): void;
23
23
  t?: WithTranslation['t'];
24
+ timeZone?: string;
24
25
  };
package/dist/index.d.ts CHANGED
@@ -17,6 +17,7 @@ import { ToastStateProps, ToastState } from '@react-stately/toast';
17
17
  import { AriaToastRegionProps } from '@react-aria/toast';
18
18
  import { Settings } from 'react-slick';
19
19
  import { User, SignInResult, SignInWithEmailAndPasswordOptions, LinkWithEmailAndPasswordOptions, CreateUserWithEmailAndPasswordOptions, SendPasswordResetEmailOptions } from '@capacitor-firebase/authentication';
20
+ import { DateTime } from 'luxon';
20
21
  import { MarkdownToJSX } from 'markdown-to-jsx';
21
22
 
22
23
  interface ButtonProps$2 {
@@ -1379,9 +1380,9 @@ type RecurringSession = {
1379
1380
  id: string;
1380
1381
  specialistId: string;
1381
1382
  clientId: string;
1382
- userTimezone: string;
1383
1383
  name?: string;
1384
1384
  avatarLink?: string;
1385
+ timezone?: string;
1385
1386
  recurring: {
1386
1387
  interval: 'weekly';
1387
1388
  day: number;
@@ -1798,11 +1799,12 @@ type Props$9 = {
1798
1799
  height?: number;
1799
1800
  selections: Record<string, SelectionType$1[]>;
1800
1801
  defaults?: Record<string, string>;
1801
- onChange(value: Record<string, SelectionType$1>): void;
1802
+ onChange(value: Record<string, string>): void;
1802
1803
  className?: string;
1803
1804
  compareBy?: 'value' | 'label';
1805
+ presentation?: 'date' | 'month' | 'month-year';
1804
1806
  };
1805
- declare const DrumListPicker: ({ height, selections, defaults, onChange, className, compareBy, }: Props$9) => react_jsx_runtime.JSX.Element;
1807
+ declare const DrumListPicker: ({ height, selections, defaults, onChange, className, compareBy, presentation, }: Props$9) => react_jsx_runtime.JSX.Element;
1806
1808
 
1807
1809
  type FontWeight = 'Regular' | 'Semi' | 'Bold';
1808
1810
  type CollapsableTextProps = {
@@ -3412,6 +3414,7 @@ type SessionPreviewFeatureProps = {
3412
3414
  locale: SupportedLocales;
3413
3415
  maxPeriodToReviewPastSessionInHours?: number;
3414
3416
  daysBeforeCancelationQueueSession?: number;
3417
+ timeZone?: string;
3415
3418
  onSessionClick?(session: Session | SessionQueue): void;
3416
3419
  onSessionStart?(session: Session | SessionQueue): void;
3417
3420
  rateSessionCallback?: (session: Session | SessionQueue) => void;
@@ -3648,6 +3651,7 @@ type ScheduleFeatureProps = {
3648
3651
  bookButtonText?: string;
3649
3652
  footerContent?: React.ReactNode;
3650
3653
  sessionType?: SessionTypeEnum;
3654
+ timeZone?: string;
3651
3655
  onDateChange?: (date: ScheduleDate, slots: ScheduleSlot[]) => void;
3652
3656
  onSlotChange?: (slot: ScheduleSlot | null) => void;
3653
3657
  onShowAll?: () => void;
@@ -3836,8 +3840,9 @@ declare enum SessionManageTypeEnum {
3836
3840
  }
3837
3841
  type SessionManageModalFeatureProps = {
3838
3842
  action: 'reschedule' | 'cancel';
3843
+ timeZone?: string;
3839
3844
  sessionStartDate: string;
3840
- sessionRecurringSchedule?: RecurringSchedule;
3845
+ recurringSession?: RecurringSession;
3841
3846
  isOpen?: boolean;
3842
3847
  locale?: string;
3843
3848
  ref?: React__default.RefObject<HTMLIonModalElement | null>;
@@ -3853,6 +3858,7 @@ type RecurringSessionPreviewFeatureProps = {
3853
3858
  t?: WithTranslation['t'];
3854
3859
  isLoading?: boolean;
3855
3860
  onClick?(session: RecurringSession): void;
3861
+ timeZone?: string;
3856
3862
  };
3857
3863
 
3858
3864
  declare const RecurringSessionPreviewFeature: React__default.FC<RecurringSessionPreviewFeatureProps>;
@@ -3921,8 +3927,9 @@ declare const getSessionsByYear: (sessions: Session[]) => Map<number, Session[]>
3921
3927
  declare const getSessionsByMonth: (sessions: Session[]) => Map<number, Session[]>;
3922
3928
  declare const getSessionsByDay: (sessions: Session[]) => Map<number, Session[]>;
3923
3929
  declare const splitSessions: (sessions: Session[]) => Map<string, Session[]>;
3924
- declare const getSessionTimeLabel: (variant: SessionVariant, startSessionDate: Date, t: WithTranslation["t"], locale: SupportedLocales) => string;
3930
+ declare const getSessionTimeLabel: (variant: SessionVariant, startSessionDate: Date, t: WithTranslation["t"], locale: SupportedLocales, timeZone: string) => string;
3925
3931
  declare const canManageSession: (sessionDate?: Date) => boolean;
3932
+ declare const getRecurringSessionDate: (recurringSession: RecurringSession, timeZone: string) => DateTime;
3926
3933
 
3927
3934
  declare const mockT: (translate?: Record<string, string>) => WithTranslation["t"];
3928
3935
  declare const specialist: Specialist;
@@ -4113,6 +4120,8 @@ declare const globalAuthState: GlobalAuthState;
4113
4120
  declare const getVisibleLength: (value: string) => number;
4114
4121
  declare const isCommentValid: (comment: string, minLength?: number) => boolean;
4115
4122
 
4123
+ declare const localTimeZone: string;
4124
+
4116
4125
  declare const MIN_COMMENT_LENGTH = 3;
4117
4126
 
4118
4127
  type SpecialistCardWidgetProps = {
@@ -4232,6 +4241,7 @@ type SessionsWidgetProps = {
4232
4241
  onScheduleSession?(): void;
4233
4242
  onUpdateSubscription?(session: Session): void;
4234
4243
  t?: WithTranslation['t'];
4244
+ timeZone?: string;
4235
4245
  };
4236
4246
 
4237
4247
  declare const SessionsWidget: React__default.FC<SessionsWidgetProps>;
@@ -4243,6 +4253,7 @@ type SessionDetailWidgetProps = {
4243
4253
  t?: WithTranslation['t'];
4244
4254
  viewPerson?: 'client' | 'specialist';
4245
4255
  locale: SupportedLocales;
4256
+ timeZone?: string;
4246
4257
  onSessionStart?(session: Session): void;
4247
4258
  onRescheduleClick?(session: Session): void;
4248
4259
  onCancelClick?(session: Session): void;
@@ -5048,4 +5059,4 @@ type RowSelectProps = {
5048
5059
 
5049
5060
  declare const RowSelect: FC<RowSelectProps>;
5050
5061
 
5051
- export { AcceptAgreementFeature, Action, AdvisorAssistFeature, _default$1g as AlertCard, AllowFilterValueType, AppFooter, _default$1f as AppFooter_v2, AppHeader, AppHeaderPage as AppHeaderPageFeature, AppHeader_v2, AppNotSupportedFeature, AppViewType, AuthContext, AuthProvider, AutoComplete, Avatar, AvatarProps$1 as AvatarProps, _default$1e as Avatar_v2, AvatarProps as Avatar_v2Props, BREAKPOINT_ICON_SIZE, _default$1a 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$Q 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, ClientSpecialistContractStatusEnum, CollapsableText, ConditionRulesType, ConfirmWithCommentFeature, ConfirmWithCommentFeatureRef, Consultation, _default$o as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$l as ConsultationModal, _default$U 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, _default$m as EmptyConsultations, EmptyList, EmptySpecialistListFeature, ErrorCardFeature, _default$Y as ExploreCard, ExploreCardData, ExploreCardProps, ExploreCardSwiperFeature, ExploreCardSwiperFeatureProps, FilterFeatureProps, FilterItem, FilterItemBoolean, FilterItemChips, FilterItemRange, FilterItemSelect, FilterOption, FilterOptionValue, FilterValue, FiltersWidget, FiltersWidgetProps, FirstChatMessageModalFeature, _default$3 as Flag, FlagTypes, _default$1c 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, IconBlock, IconBookmark, IconBookmarkOutlined, _default$16 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, IconFilters, IconGallery, IconGift, IconGiftNew, IconGlobe, IconGoogle, IconGoogleCalendar, IconGooglePay, IconHeart, IconHome, IconIdCard, IconInfo, IconInvisible, IconInvoice, IconKeyboard, IconLanguage, IconLeaderboard, IconLeftArrow, IconLetter, IconLink, IconLock, IconLogout, IconMaestro, IconManageAccounts, IconMastercard, IconMatching, IconMindly, IconMindlyColored, IconMindlyMini, IconMinus, IconMooving, IconMoreVertical, IconMorning, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPaperPencil, IconPause, IconPaywall, IconPersonAlert, IconPhotoCamera, IconPlay, IconPlus, IconPoweredByStripe, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconProps$H as IconProps, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconRadioPartial, IconReceipt, IconReceiptLong, IconRecurring, IconRenew, IconReschedule, IconResume, IconReviewSessionSubscription, IconReviewSessionTrial, 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$12 as Item, _default$19 as ItemCard, LabelArrowRedirect, _default$1k as LetterAvatar, _default$4 as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListItemType, _default$$ as ListItemWithColumns, _default$13 as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$14 as Loading, LocaleCurrencyMapper, MIN_COMMENT_LENGTH, MapStatusContractToUIStatus, _default$J as MarkdownContainerFeature, _default$10 as MatchProgress, _default$1j as MediaPlayer, MenuFeature, MindlyReview, MindlyReviewFeature, ModalSheet, NEAR_SESSION_TIME_SECONDS, NewSpecialist, NoInternetConnection, NotSupportModal, ONBOARDING_THEME_DEFAULT_COLORS, OnBoardingAreasOfWorkSelectScreenType, OnBoardingBaseScreenType, OnBoardingChartScreenPreviewFeature, OnBoardingChartScreenType, OnBoardingCompareScreenPreviewFeature, OnBoardingCompareScreenType, _default$B as OnBoardingConfirmScreenPreviewFeature, OnBoardingConfirmScreenType, _default$C as OnBoardingEmailScreenPreviewFeature, OnBoardingEmailScreenType, OnBoardingFlowType, OnBoardingGoalSelectScreenType, _default$A as OnBoardingGoalSelectionScreenPreviewFeature, OnBoardingGraphScreenPreviewFeature, OnBoardingGraphScreenType, _default$H as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$G as OnBoardingMultiSelectionScreenPreviewFeature, OnBoardingPaywallScreenPreviewFeature, OnBoardingPaywallScreenType, _default$E as OnBoardingProgressFeature, OnBoardingProgressSettingsScreenType, _default$D as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenAlertType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenEmailType, OnBoardingScreenErrorsType, OnBoardingScreenOptionType, OnBoardingScreenOptionWithScaleType, OnBoardingScreenOptions, OnBoardingScreenPasswordType, OnBoardingScreenPrivacyType, OnBoardingScreenProgressType, OnBoardingScreenSkipButtonType, OnBoardingScreenStyleOptions, OnBoardingScreenSubgoalButtonType, OnBoardingScreenTranslationsType, OnBoardingScreensType, OnBoardingSingleImageSelectScreenType, OnBoardingSingleRoundImageSelectScreenType, OnBoardingSingleScaleSelectScreenType, OnBoardingSingleSelectScreenType, _default$F as OnBoardingSingleSelectionScreenPreviewFeature, OnBoardingSpecializationSelectScreenType, _default$I as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OnBoardingThemeV2Type, OnboardingProgressTemplate, OnboardingVariant, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$P as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$R as PaymentSessionsList, PayoutCurrencySignByLocale, PayoutShortCurrencySignByLocale, _default$1b as Picture, PoweredByStripeFeature, _default$2 as ProfileInformation, _default$f as ProfileView, _default$5 as ProgressBar, ProgressBarDashed, _default$15 as ProgressBar_v2, _default$X as ProgressCard, ProgressCardProps, ProgressRangeProps, _default$Z as PromptCard, PromptCardData, PromptCardProps, _default$x as PromptCardsFeature, PromptCardsFeatureProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$17 as Rating, RatingCircleVariant, RatingCircleWrapper, _default$i as ReSchedule, ReScheduleSuccess, RecurringSchedule, RecurringSession, RecurringSessionPreviewFeature, Refresher, ReservedSessionManageModalFeature, ResponseFileType, ReviewCard, _default$O 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$M as ScreenDrumPickerFormFeature, ScreenInput, _default$N as ScreenInputFormFeature, ScreenInputUpdateFeature, SectionHeading, Segment, SegmentColor, SegmentType, SelectItemType, _default$K as SelectWithSearchFormFeature, _default$y 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$1d as Skeleton_v2, Slider, _default$W as SlotsGrid, _default$V 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$T as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$S as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default$u as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$v as SpecialistPaymentWidget, SpecialistPaymentWidgetType, SpecialistPreviewFeature, SpecialistPreviewListWidget, _default$s as SpecialistPreviewWidget, SpecialistProfileNotFound, 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$L as TextAreaFormFeature, _default$a as TextInput, _default$z as TextWithClampFeature, _default$18 as Textarea_v2, ThemeProvider, ThemeProviderProps, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$1h as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UserType, VariantType, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$11 as Video, _default$p as VideoCallInfo, _default$1i as VideoPlayer, VideoProvider, _default$g as WorkDirections, appThemes, canManageSession, capitalizeFirstLetter, currentUser, decOfNum, formatByDigits, getCountryKeyByName, getDateLocale, getFilterCount, getFiltersQuery, getFiltersValues, getGMTOffset, getMappedFilterValue, getMockSchedule, getMonthNameInGenitive, getProgressForBreakPoint, getSessionTimeLabel, getSessionVariant, getSessionsByDay, getSessionsByMonth, getSessionsByYear, getSignAgreementsTabs, getSortFromKey, getSortKey, getStartSessionDate, getStartSessionTimestamp, getVisibleLength, globalAuthState, isClientCan, isCommentValid, isFilterSet, isNewSpecialist, isSpecialistActive, isSpecialistBlocked, isSpecialistPublic, isSuperSpecialist, listReviews, 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 };
5062
+ export { AcceptAgreementFeature, Action, AdvisorAssistFeature, _default$1g as AlertCard, AllowFilterValueType, AppFooter, _default$1f as AppFooter_v2, AppHeader, AppHeaderPage as AppHeaderPageFeature, AppHeader_v2, AppNotSupportedFeature, AppViewType, AuthContext, AuthProvider, AutoComplete, Avatar, AvatarProps$1 as AvatarProps, _default$1e as Avatar_v2, AvatarProps as Avatar_v2Props, BREAKPOINT_ICON_SIZE, _default$1a 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$Q 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, ClientSpecialistContractStatusEnum, CollapsableText, ConditionRulesType, ConfirmWithCommentFeature, ConfirmWithCommentFeatureRef, Consultation, _default$o as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$l as ConsultationModal, _default$U 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, _default$m as EmptyConsultations, EmptyList, EmptySpecialistListFeature, ErrorCardFeature, _default$Y as ExploreCard, ExploreCardData, ExploreCardProps, ExploreCardSwiperFeature, ExploreCardSwiperFeatureProps, FilterFeatureProps, FilterItem, FilterItemBoolean, FilterItemChips, FilterItemRange, FilterItemSelect, FilterOption, FilterOptionValue, FilterValue, FiltersWidget, FiltersWidgetProps, FirstChatMessageModalFeature, _default$3 as Flag, FlagTypes, _default$1c 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, IconBlock, IconBookmark, IconBookmarkOutlined, _default$16 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, IconFilters, IconGallery, IconGift, IconGiftNew, IconGlobe, IconGoogle, IconGoogleCalendar, IconGooglePay, IconHeart, IconHome, IconIdCard, IconInfo, IconInvisible, IconInvoice, IconKeyboard, IconLanguage, IconLeaderboard, IconLeftArrow, IconLetter, IconLink, IconLock, IconLogout, IconMaestro, IconManageAccounts, IconMastercard, IconMatching, IconMindly, IconMindlyColored, IconMindlyMini, IconMinus, IconMooving, IconMoreVertical, IconMorning, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPaperPencil, IconPause, IconPaywall, IconPersonAlert, IconPhotoCamera, IconPlay, IconPlus, IconPoweredByStripe, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconProps$H as IconProps, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconRadioPartial, IconReceipt, IconReceiptLong, IconRecurring, IconRenew, IconReschedule, IconResume, IconReviewSessionSubscription, IconReviewSessionTrial, 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$12 as Item, _default$19 as ItemCard, LabelArrowRedirect, _default$1k as LetterAvatar, _default$4 as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListItemType, _default$$ as ListItemWithColumns, _default$13 as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$14 as Loading, LocaleCurrencyMapper, MIN_COMMENT_LENGTH, MapStatusContractToUIStatus, _default$J as MarkdownContainerFeature, _default$10 as MatchProgress, _default$1j as MediaPlayer, MenuFeature, MindlyReview, MindlyReviewFeature, ModalSheet, NEAR_SESSION_TIME_SECONDS, NewSpecialist, NoInternetConnection, NotSupportModal, ONBOARDING_THEME_DEFAULT_COLORS, OnBoardingAreasOfWorkSelectScreenType, OnBoardingBaseScreenType, OnBoardingChartScreenPreviewFeature, OnBoardingChartScreenType, OnBoardingCompareScreenPreviewFeature, OnBoardingCompareScreenType, _default$B as OnBoardingConfirmScreenPreviewFeature, OnBoardingConfirmScreenType, _default$C as OnBoardingEmailScreenPreviewFeature, OnBoardingEmailScreenType, OnBoardingFlowType, OnBoardingGoalSelectScreenType, _default$A as OnBoardingGoalSelectionScreenPreviewFeature, OnBoardingGraphScreenPreviewFeature, OnBoardingGraphScreenType, _default$H as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$G as OnBoardingMultiSelectionScreenPreviewFeature, OnBoardingPaywallScreenPreviewFeature, OnBoardingPaywallScreenType, _default$E as OnBoardingProgressFeature, OnBoardingProgressSettingsScreenType, _default$D as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenAlertType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenEmailType, OnBoardingScreenErrorsType, OnBoardingScreenOptionType, OnBoardingScreenOptionWithScaleType, OnBoardingScreenOptions, OnBoardingScreenPasswordType, OnBoardingScreenPrivacyType, OnBoardingScreenProgressType, OnBoardingScreenSkipButtonType, OnBoardingScreenStyleOptions, OnBoardingScreenSubgoalButtonType, OnBoardingScreenTranslationsType, OnBoardingScreensType, OnBoardingSingleImageSelectScreenType, OnBoardingSingleRoundImageSelectScreenType, OnBoardingSingleScaleSelectScreenType, OnBoardingSingleSelectScreenType, _default$F as OnBoardingSingleSelectionScreenPreviewFeature, OnBoardingSpecializationSelectScreenType, _default$I as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OnBoardingThemeV2Type, OnboardingProgressTemplate, OnboardingVariant, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$P as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$R as PaymentSessionsList, PayoutCurrencySignByLocale, PayoutShortCurrencySignByLocale, _default$1b as Picture, PoweredByStripeFeature, _default$2 as ProfileInformation, _default$f as ProfileView, _default$5 as ProgressBar, ProgressBarDashed, _default$15 as ProgressBar_v2, _default$X as ProgressCard, ProgressCardProps, ProgressRangeProps, _default$Z as PromptCard, PromptCardData, PromptCardProps, _default$x as PromptCardsFeature, PromptCardsFeatureProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$17 as Rating, RatingCircleVariant, RatingCircleWrapper, _default$i as ReSchedule, ReScheduleSuccess, RecurringSchedule, RecurringSession, RecurringSessionPreviewFeature, Refresher, ReservedSessionManageModalFeature, ResponseFileType, ReviewCard, _default$O 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$M as ScreenDrumPickerFormFeature, ScreenInput, _default$N as ScreenInputFormFeature, ScreenInputUpdateFeature, SectionHeading, Segment, SegmentColor, SegmentType, SelectItemType, _default$K as SelectWithSearchFormFeature, _default$y 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$1d as Skeleton_v2, Slider, _default$W as SlotsGrid, _default$V 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$T as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$S as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default$u as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$v as SpecialistPaymentWidget, SpecialistPaymentWidgetType, SpecialistPreviewFeature, SpecialistPreviewListWidget, _default$s as SpecialistPreviewWidget, SpecialistProfileNotFound, 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$L as TextAreaFormFeature, _default$a as TextInput, _default$z as TextWithClampFeature, _default$18 as Textarea_v2, ThemeProvider, ThemeProviderProps, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$1h as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UserType, VariantType, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$11 as Video, _default$p as VideoCallInfo, _default$1i as VideoPlayer, VideoProvider, _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 };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindly/ui-components",
3
- "version": "8.5.1",
3
+ "version": "8.5.3",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "clean": "rimraf dist",