@mindly/ui-components 8.11.0 → 8.11.2

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 (32) hide show
  1. package/dist/cjs/index.js +6 -6
  2. package/dist/cjs/lib2/features/EmptySpecialistListFeature/EmptySpecialistListFeature.stories.d.ts +1 -0
  3. package/dist/cjs/lib2/features/EmptySpecialistListFeature/types.d.ts +2 -1
  4. package/dist/cjs/lib2/features/ScheduleFeature/types.d.ts +7 -2
  5. package/dist/cjs/lib2/features/ScheduleSectionsFeature/ScheduleSectionsFeature.d.ts +13 -0
  6. package/dist/cjs/lib2/features/ScheduleSectionsFeature/components/ScheduleSection.d.ts +15 -0
  7. package/dist/cjs/lib2/features/ScheduleSectionsFeature/components/ScheduleSectionV1.d.ts +7 -0
  8. package/dist/cjs/lib2/features/ScheduleSectionsFeature/components/Slot.d.ts +10 -0
  9. package/dist/cjs/lib2/features/ScheduleSectionsFeature/hooks/useSelectAllSectionSlots/index.d.ts +10 -0
  10. package/dist/cjs/lib2/features/ScheduleSectionsFeature/index.d.ts +1 -0
  11. package/dist/cjs/lib2/features/ScheduleSectionsFeature/mocks/slots.d.ts +9 -0
  12. package/dist/cjs/lib2/features/ScheduleSectionsFeature/types.d.ts +18 -0
  13. package/dist/cjs/lib2/features/ScheduleSectionsFeature/utils/toSections/index.d.ts +15 -0
  14. package/dist/cjs/lib2/features/index.d.ts +1 -0
  15. package/dist/cjs/lib2/shared/hooks/index.d.ts +1 -0
  16. package/dist/esm/index.js +4 -4
  17. package/dist/esm/lib2/features/EmptySpecialistListFeature/EmptySpecialistListFeature.stories.d.ts +1 -0
  18. package/dist/esm/lib2/features/EmptySpecialistListFeature/types.d.ts +2 -1
  19. package/dist/esm/lib2/features/ScheduleFeature/types.d.ts +7 -2
  20. package/dist/esm/lib2/features/ScheduleSectionsFeature/ScheduleSectionsFeature.d.ts +13 -0
  21. package/dist/esm/lib2/features/ScheduleSectionsFeature/components/ScheduleSection.d.ts +15 -0
  22. package/dist/esm/lib2/features/ScheduleSectionsFeature/components/ScheduleSectionV1.d.ts +7 -0
  23. package/dist/esm/lib2/features/ScheduleSectionsFeature/components/Slot.d.ts +10 -0
  24. package/dist/esm/lib2/features/ScheduleSectionsFeature/hooks/useSelectAllSectionSlots/index.d.ts +10 -0
  25. package/dist/esm/lib2/features/ScheduleSectionsFeature/index.d.ts +1 -0
  26. package/dist/esm/lib2/features/ScheduleSectionsFeature/mocks/slots.d.ts +9 -0
  27. package/dist/esm/lib2/features/ScheduleSectionsFeature/types.d.ts +18 -0
  28. package/dist/esm/lib2/features/ScheduleSectionsFeature/utils/toSections/index.d.ts +15 -0
  29. package/dist/esm/lib2/features/index.d.ts +1 -0
  30. package/dist/esm/lib2/shared/hooks/index.d.ts +1 -0
  31. package/dist/index.d.ts +40 -4
  32. package/package.json +2 -2
@@ -5,3 +5,4 @@ export default meta;
5
5
  type Story = StoryObj<typeof EmptySpecialistListFeature>;
6
6
  export declare const Default: Story;
7
7
  export declare const End: Story;
8
+ export declare const AvailableToday: Story;
@@ -2,6 +2,7 @@ import { WithTranslation } from 'react-i18next';
2
2
  export type EmptySpecialistListFeatureProps = {
3
3
  t?: WithTranslation['t'];
4
4
  className?: string;
5
- type?: 'empty' | 'end';
5
+ type?: 'empty' | 'end' | 'empty_available_today';
6
+ showIcon?: boolean;
6
7
  onChangeFiltersClick?: () => void;
7
8
  };
@@ -1,4 +1,5 @@
1
1
  import React from 'react';
2
+ import { WithTranslation } from 'react-i18next';
2
3
  export type SlotViewModel = {
3
4
  title: string;
4
5
  active: boolean;
@@ -7,8 +8,10 @@ export type DaySectionKey = 'morning' | 'day' | 'evening';
7
8
  export type DaySection = {
8
9
  key: DaySectionKey;
9
10
  label: string;
11
+ selectAllLabel?: string;
10
12
  items: SlotViewModel[];
11
13
  icon: React.ReactNode;
14
+ isExpanded?: boolean;
12
15
  };
13
16
  export type DayTabItem = {
14
17
  title: string;
@@ -16,7 +19,8 @@ export type DayTabItem = {
16
19
  };
17
20
  export type ScheduleProps = {
18
21
  items: DayTabItem[];
19
- sections: DaySection[];
22
+ slots: SlotViewModel[];
23
+ setSlots: (slots: SlotViewModel[]) => void;
20
24
  isLoading?: boolean;
21
25
  isButtonLoading?: boolean;
22
26
  isButtonDisabled?: boolean;
@@ -24,6 +28,7 @@ export type ScheduleProps = {
24
28
  buttonText?: string;
25
29
  skeletonCount?: number;
26
30
  onDayChange?: (dayIndex: number) => void;
27
- onSlotClick?: (time: string) => void;
28
31
  onSave?: () => void;
32
+ isSectionsCollapsable?: boolean;
33
+ t: WithTranslation['t'];
29
34
  };
@@ -0,0 +1,13 @@
1
+ import { FC } from 'react';
2
+ import { WithTranslation } from 'react-i18next';
3
+ import { Slot } from './types';
4
+ type ScheduleSectionsFeatureProps = {
5
+ t: WithTranslation['t'];
6
+ slots: Slot[];
7
+ setSlots: (slots: Slot[]) => void;
8
+ isSectionsCollapsable?: boolean;
9
+ openSectionIfSlotSelected?: boolean;
10
+ showSlotStatus?: boolean;
11
+ };
12
+ declare const ScheduleSectionsFeature: FC<ScheduleSectionsFeatureProps>;
13
+ export default ScheduleSectionsFeature;
@@ -0,0 +1,15 @@
1
+ import { FC } from 'react';
2
+ import { DaySectionKey, Section, Slot } from '../types';
3
+ import { WithTranslation } from 'react-i18next';
4
+ type ScheduleSectionProps = {
5
+ section: Section;
6
+ selectAllLabel?: string;
7
+ isSectionsCollapsable: boolean;
8
+ onSelectAll: (sectionKey: DaySectionKey) => void;
9
+ onSlotClick: (slot: Slot) => void;
10
+ t: WithTranslation['t'];
11
+ className?: string;
12
+ showSlotStatus?: boolean;
13
+ };
14
+ declare const ScheduleSection: FC<ScheduleSectionProps>;
15
+ export default ScheduleSection;
@@ -0,0 +1,7 @@
1
+ import { Section, Slot } from '../types';
2
+ type ScheduleSectionV1Props = {
3
+ section: Section;
4
+ onSlotClick?: (slot: Slot) => void;
5
+ };
6
+ export declare const ScheduleSectionV1: ({ section, onSlotClick }: ScheduleSectionV1Props) => import("react/jsx-runtime").JSX.Element;
7
+ export {};
@@ -0,0 +1,10 @@
1
+ import { Slot as SlotType } from '../types';
2
+ import { WithTranslation } from 'react-i18next';
3
+ type SlotProps = {
4
+ slot: SlotType;
5
+ onClick: (slot: SlotType) => void;
6
+ t: WithTranslation['t'];
7
+ showSlotStatus?: boolean;
8
+ };
9
+ declare const Slot: ({ slot, onClick, t, showSlotStatus }: SlotProps) => import("react/jsx-runtime").JSX.Element;
10
+ export default Slot;
@@ -0,0 +1,10 @@
1
+ import { DaySectionKey, Section } from '../../types';
2
+ import { Slot } from '../../types';
3
+ export declare const useSelectAllSectionSlots: ({ sections, selectedDay, setSlots, }: {
4
+ sections: Section[];
5
+ selectedDay: number;
6
+ setSlots: (slots: Slot[]) => void;
7
+ }) => {
8
+ handleSelectAllSlots: (rawSectionKey: DaySectionKey) => void;
9
+ handleSlotClick: (slot: Slot) => Promise<void>;
10
+ };
@@ -0,0 +1 @@
1
+ export { default as ScheduleSectionsFeature } from './ScheduleSectionsFeature';
@@ -0,0 +1,9 @@
1
+ export declare const slots: ({
2
+ title: string;
3
+ active: boolean;
4
+ disabled: boolean;
5
+ } | {
6
+ title: string;
7
+ active: boolean;
8
+ disabled?: undefined;
9
+ })[];
@@ -0,0 +1,18 @@
1
+ export declare enum DaySectionKey {
2
+ Morning = "morning",
3
+ Day = "day",
4
+ Evening = "evening"
5
+ }
6
+ export { type DaySection } from '../ScheduleFeature/types';
7
+ export type Slot = {
8
+ title: string;
9
+ active: boolean;
10
+ disabled?: boolean;
11
+ };
12
+ export type Section = {
13
+ key: DaySectionKey;
14
+ label: string;
15
+ items: Slot[];
16
+ icon: React.ReactNode;
17
+ isExpanded?: boolean;
18
+ };
@@ -0,0 +1,15 @@
1
+ import { Section } from '../../types';
2
+ type Slot = {
3
+ title: string;
4
+ active: boolean;
5
+ };
6
+ type Labels = {
7
+ morning: string;
8
+ day: string;
9
+ evening: string;
10
+ };
11
+ export declare const toSections: (slots: Slot[], { labels, openIfSelected }: {
12
+ labels: Labels;
13
+ openIfSelected?: boolean;
14
+ }) => Section[];
15
+ export {};
@@ -67,6 +67,7 @@ export * from './ReservedSessionManageModalFeature';
67
67
  export * from './ViewedClientsListFeature';
68
68
  export * from './RevampSubscriptionStepperFeature';
69
69
  export * from './ScheduleFeature';
70
+ export * from './ScheduleSectionsFeature';
70
71
  export * from './SubscriptionCard';
71
72
  export * from './CancelSubscriptionFeature';
72
73
  export type { RecurringSessionsTimeSlots } from './RevampSubscriptionStepperFeature';
@@ -11,3 +11,4 @@ export * from './useIsKeyboardShown';
11
11
  export * from './useDelayMount';
12
12
  export * from './useStopPropagationEvent';
13
13
  export * from './useScrollToElement';
14
+ export * from './useSwipe';
package/dist/index.d.ts CHANGED
@@ -2277,6 +2277,21 @@ declare const useScrollToElement: ({ ref, isFocused, delay: initialDelay, forceD
2277
2277
  forceDelay?: boolean;
2278
2278
  }) => void;
2279
2279
 
2280
+ type UseSwipeOptions = {
2281
+ onSwipeLeft?: () => void;
2282
+ onSwipeRight?: () => void;
2283
+ onSwipeUp?: () => void;
2284
+ onSwipeDown?: () => void;
2285
+ minDistance?: number;
2286
+ maxOffAxis?: number;
2287
+ maxDuration?: number;
2288
+ enabled?: boolean;
2289
+ direction?: 'horizontal' | 'vertical';
2290
+ };
2291
+ declare const useSwipe: (options?: UseSwipeOptions, deps?: DependencyList) => {
2292
+ ref: React$1.RefObject<HTMLDivElement | null>;
2293
+ };
2294
+
2280
2295
  interface IconProps$J extends React$1.SVGAttributes<SVGElement> {
2281
2296
  size?: number | string;
2282
2297
  color?: string;
@@ -3643,7 +3658,8 @@ declare const MenuFeature: React__default.FC<MenuFeatureProps>;
3643
3658
  type EmptySpecialistListFeatureProps = {
3644
3659
  t?: WithTranslation['t'];
3645
3660
  className?: string;
3646
- type?: 'empty' | 'end';
3661
+ type?: 'empty' | 'end' | 'empty_available_today';
3662
+ showIcon?: boolean;
3647
3663
  onChangeFiltersClick?: () => void;
3648
3664
  };
3649
3665
 
@@ -4157,8 +4173,10 @@ type DaySectionKey = 'morning' | 'day' | 'evening';
4157
4173
  type DaySection = {
4158
4174
  key: DaySectionKey;
4159
4175
  label: string;
4176
+ selectAllLabel?: string;
4160
4177
  items: SlotViewModel[];
4161
4178
  icon: React__default.ReactNode;
4179
+ isExpanded?: boolean;
4162
4180
  };
4163
4181
  type DayTabItem = {
4164
4182
  title: string;
@@ -4166,7 +4184,8 @@ type DayTabItem = {
4166
4184
  };
4167
4185
  type ScheduleProps = {
4168
4186
  items: DayTabItem[];
4169
- sections: DaySection[];
4187
+ slots: SlotViewModel[];
4188
+ setSlots: (slots: SlotViewModel[]) => void;
4170
4189
  isLoading?: boolean;
4171
4190
  isButtonLoading?: boolean;
4172
4191
  isButtonDisabled?: boolean;
@@ -4174,12 +4193,29 @@ type ScheduleProps = {
4174
4193
  buttonText?: string;
4175
4194
  skeletonCount?: number;
4176
4195
  onDayChange?: (dayIndex: number) => void;
4177
- onSlotClick?: (time: string) => void;
4178
4196
  onSave?: () => void;
4197
+ isSectionsCollapsable?: boolean;
4198
+ t: WithTranslation['t'];
4179
4199
  };
4180
4200
 
4181
4201
  declare const Schedule: FC<ScheduleProps>;
4182
4202
 
4203
+ type Slot = {
4204
+ title: string;
4205
+ active: boolean;
4206
+ disabled?: boolean;
4207
+ };
4208
+
4209
+ type ScheduleSectionsFeatureProps = {
4210
+ t: WithTranslation['t'];
4211
+ slots: Slot[];
4212
+ setSlots: (slots: Slot[]) => void;
4213
+ isSectionsCollapsable?: boolean;
4214
+ openSectionIfSlotSelected?: boolean;
4215
+ showSlotStatus?: boolean;
4216
+ };
4217
+ declare const ScheduleSectionsFeature: FC<ScheduleSectionsFeatureProps>;
4218
+
4183
4219
  type RedesignedSubscriptionСardProps = {
4184
4220
  subscription: Subscription;
4185
4221
  onMoveToPostponeFlow?: (subscriptionId: string, specialistId: string) => void;
@@ -5475,4 +5511,4 @@ type RowSelectProps = {
5475
5511
 
5476
5512
  declare const RowSelect: FC<RowSelectProps>;
5477
5513
 
5478
- export { AcceptAgreementFeature, Action, ActiveClientsCapacityOnboardingModal, AdvisorAssistFeature, AiCompanionMessageRole, AiCompanionSessionItem, AiCompanionSessionMessage, AiCompanionSessionReview, AiCompanionSessionWeek, AiCompanionSessionsHistoryResponse, _default$1i as AlertCard, AllowFilterValueType, AppFooter, _default$1h as AppFooter_v2, AppHeader, AppHeaderPage as AppHeaderPageFeature, AppHeader_v2, AppNotSupportedFeature, AppViewType, AuthContext, AuthProvider, AutoComplete, Avatar, AvatarProps$1 as AvatarProps, _default$1g as Avatar_v2, AvatarProps as Avatar_v2Props, BREAKPOINT_ICON_SIZE, _default$1c 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$S as CalendarPickerFeature, CancelSession, _default$x as CancelSubscriptionFeature, 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, CompanionSessionMessagesFeature, CompanionSessionsHistoryFeature, ConditionRulesType, ConfirmWithCommentFeature, ConfirmWithCommentFeatureRef, Consultation, _default$o as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$l as ConsultationModal, _default$W 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, DaySection, DaySectionKey, _default$h as DaySlider, DayTabItem, Divider, DividerProps, DropdownFeature, DrumListPicker, DynamicCommissionValue, _default$d as EducationCard, EmptyChatModalFeature, EmptyClientsList, _default$m as EmptyConsultations, EmptyList, EmptySpecialistListFeature, ErrorCardFeature, _default$_ as ExploreCard, ExploreCardData, ExploreCardProps, ExploreCardSwiperFeature, ExploreCardSwiperFeatureProps, FilterFeatureProps, FilterItem, FilterItemBoolean, FilterItemChips, FilterItemRange, FilterItemSelect, FilterOption, FilterOptionValue, FilterValue, FiltersWidget, FiltersWidgetProps, FirstChatMessageModalFeature, _default$3 as Flag, FlagTypes, _default$1e as Flag_v2, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, ISpecialistReview, IconAI, IconAccountBalance, IconAddCalendar, IconAddModerator, IconAdvisorAssistance, IconAlignHorizontalTextCenter, IconAlignHorizontalTextLeft, IconAlignHorizontalTextRight, IconAmEx, IconAppStoreRating, IconApple, IconApplePay, IconArrowDown, IconArrowLeft, IconArrowRange, IconArrowRight, IconArrowTopRight, IconArrowUp, IconArticlePerson, IconAttachMoney, IconBeachAccess, IconBinoculars, IconBlock, IconBookmark, IconBookmarkOutlined, IconBusiness, _default$18 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, IconInfoCard, IconInfoCardProps, 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, IconParallelArrows, IconPause, IconPaywall, IconPeople, IconPersonAlert, IconPhotoCamera, IconPlay, IconPlus, IconPoweredByStripe, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconProps$K as IconProps, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconRadioPartial, IconReceipt, IconReceiptLong, IconRecurring, IconRenew, IconReschedule, IconResume, IconReviewSessionSubscription, IconReviewSessionTrial, IconRoundInfo, 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$14 as Item, _default$1b as ItemCard, LabelArrowRedirect, _default$1m as LetterAvatar, _default$4 as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListItemType, _default$11 as ListItemWithColumns, _default$15 as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$16 as Loading, LocaleCurrencyMapper, MIN_COMMENT_LENGTH, MapStatusContractToUIStatus, _default$L as MarkdownContainerFeature, _default$12 as MatchProgress, _default$1l 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$D as OnBoardingConfirmScreenPreviewFeature, OnBoardingConfirmScreenType, _default$E as OnBoardingEmailScreenPreviewFeature, OnBoardingEmailScreenType, OnBoardingFlowType, OnBoardingGoalSelectScreenType, _default$C as OnBoardingGoalSelectionScreenPreviewFeature, OnBoardingGraphScreenPreviewFeature, OnBoardingGraphScreenType, _default$J as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$I as OnBoardingMultiSelectionScreenPreviewFeature, OnBoardingPaywallScreenPreviewFeature, OnBoardingPaywallScreenType, _default$G as OnBoardingProgressFeature, OnBoardingProgressSettingsScreenType, _default$F as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenAlertType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenEmailType, OnBoardingScreenErrorsType, OnBoardingScreenOptionType, OnBoardingScreenOptionWithScaleType, OnBoardingScreenOptions, OnBoardingScreenPasswordType, OnBoardingScreenPrivacyType, OnBoardingScreenProgressType, OnBoardingScreenSkipButtonType, OnBoardingScreenStyleOptions, OnBoardingScreenSubgoalButtonType, OnBoardingScreenTranslationsType, OnBoardingScreensType, OnBoardingSingleImageSelectScreenType, OnBoardingSingleRoundImageSelectScreenType, OnBoardingSingleScaleSelectScreenType, OnBoardingSingleSelectScreenType, _default$H as OnBoardingSingleSelectionScreenPreviewFeature, OnBoardingSpecializationSelectScreenType, _default$K as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OnBoardingThemeV2Type, OnboardingAnswersContent, OnboardingAnswersContentProps, OnboardingProgressTemplate, OnboardingVariant, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$R as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$T as PaymentSessionsList, PayoutCurrencySignByLocale, PayoutShortCurrencySignByLocale, _default$1d as Picture, PoweredByStripeFeature, _default$2 as ProfileInformation, _default$f as ProfileView, _default$5 as ProgressBar, ProgressBarDashed, _default$17 as ProgressBar_v2, _default$Z as ProgressCard, ProgressCardProps, ProgressRangeProps, _default$$ as PromptCard, PromptCardData, PromptCardProps, _default$z as PromptCardsFeature, PromptCardsFeatureProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, QuestionnaireAnswer, Range, _default$19 as Rating, RatingCircleVariant, RatingCircleWrapper, _default$i as ReSchedule, ReScheduleSuccess, RecurringSchedule, RecurringSession, RecurringSessionPreviewFeature, RecurringSessionsTimeSlots$1 as RecurringSessionsTimeSlots, Refresher, ReservedSessionManageModalFeature, ResponseFileType, _default$y as RevampSubscriptionStepperFeature, ReviewAiSessionFeature, ReviewAiSessionFeatureProps, ReviewCard, _default$Q as ReviewCardFeature, ReviewListFeature, ReviewStatistics, ReviewSubscriptionSessionFeature, ReviewSubscriptionSessionFeatureProps, ReviewSwiperSection, ReviewTrialSessionFeature, ReviewTrialSessionFeatureProps, ReviewsCardFeatureSkeleton, ReviewsSummary, RoundButton, RowItemType, RowSelect, RowSelectProps, Rule, SESSION_DURATION, SIZES, SOON_SESSION_TIME_SECONDS, Schedule$1 as Schedule, ScheduleDate, Schedule as ScheduleFeature, ScheduleProps, ScheduleSlot, _default$O as ScreenDrumPickerFormFeature, ScreenInput, _default$P as ScreenInputFormFeature, ScreenInputUpdateFeature, SectionHeading, Segment, SegmentColor, SegmentType, SelectItemType, _default$M as SelectWithSearchFormFeature, _default$A 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$10 as ShowMore, _default$n as SignUpSessionButton, _default$k as SignUpSessionModal, SimpleTabs, SimpleTabsProps, SizeValues, Skeleton, _default$1f as Skeleton_v2, Slider, SlotViewModel, _default$Y as SlotsGrid, _default$X as SlotsGridItem, SolidInput, Sort, SortDirection, SortKey, SortValue, Specialist$1 as 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$V as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$U 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, StepList, StripeSupportedCurrency, Subscription, RedesignedSubscriptionСard as SubscriptionCard, SubscriptionStatuses, SuccessModalFeature, SuccessModalFeatureAction, SuccessScreen, SuperSpecialist, SupportedCurrency, SupportedLangs, SupportedLocales, SwitchDeviceCard, TabItem, Tabs$1 as Tabs, TabsFeature, TabsFeatureSkeleton, TabsToolbarFeature, Tag, Tariff, TariffFeature, _default$N as TextAreaFormFeature, _default$a as TextInput, _default$B as TextWithClampFeature, _default$1a as Textarea_v2, ThemeProvider, ThemeProviderProps, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$1j as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UserType, UserTypeEnum, VariantType, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$13 as Video, _default$p as VideoCallInfo, _default$1k as VideoPlayer, VideoProvider, ViewedClientsListFeature, ViewedClientsWidget, _default$g as WorkDirections, appThemes, canManageSession, capitalizeFirstLetter, currentUser, decOfNum, formatByDigits, formatMessageTimestamp, formatSessionDate, formatWeekLabel, 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, roleLabel, 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 };
5514
+ export { AcceptAgreementFeature, Action, ActiveClientsCapacityOnboardingModal, AdvisorAssistFeature, AiCompanionMessageRole, AiCompanionSessionItem, AiCompanionSessionMessage, AiCompanionSessionReview, AiCompanionSessionWeek, AiCompanionSessionsHistoryResponse, _default$1i as AlertCard, AllowFilterValueType, AppFooter, _default$1h as AppFooter_v2, AppHeader, AppHeaderPage as AppHeaderPageFeature, AppHeader_v2, AppNotSupportedFeature, AppViewType, AuthContext, AuthProvider, AutoComplete, Avatar, AvatarProps$1 as AvatarProps, _default$1g as Avatar_v2, AvatarProps as Avatar_v2Props, BREAKPOINT_ICON_SIZE, _default$1c 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$S as CalendarPickerFeature, CancelSession, _default$x as CancelSubscriptionFeature, 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, CompanionSessionMessagesFeature, CompanionSessionsHistoryFeature, ConditionRulesType, ConfirmWithCommentFeature, ConfirmWithCommentFeatureRef, Consultation, _default$o as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$l as ConsultationModal, _default$W 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, DaySection, DaySectionKey, _default$h as DaySlider, DayTabItem, Divider, DividerProps, DropdownFeature, DrumListPicker, DynamicCommissionValue, _default$d as EducationCard, EmptyChatModalFeature, EmptyClientsList, _default$m as EmptyConsultations, EmptyList, EmptySpecialistListFeature, ErrorCardFeature, _default$_ as ExploreCard, ExploreCardData, ExploreCardProps, ExploreCardSwiperFeature, ExploreCardSwiperFeatureProps, FilterFeatureProps, FilterItem, FilterItemBoolean, FilterItemChips, FilterItemRange, FilterItemSelect, FilterOption, FilterOptionValue, FilterValue, FiltersWidget, FiltersWidgetProps, FirstChatMessageModalFeature, _default$3 as Flag, FlagTypes, _default$1e as Flag_v2, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, ISpecialistReview, IconAI, IconAccountBalance, IconAddCalendar, IconAddModerator, IconAdvisorAssistance, IconAlignHorizontalTextCenter, IconAlignHorizontalTextLeft, IconAlignHorizontalTextRight, IconAmEx, IconAppStoreRating, IconApple, IconApplePay, IconArrowDown, IconArrowLeft, IconArrowRange, IconArrowRight, IconArrowTopRight, IconArrowUp, IconArticlePerson, IconAttachMoney, IconBeachAccess, IconBinoculars, IconBlock, IconBookmark, IconBookmarkOutlined, IconBusiness, _default$18 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, IconInfoCard, IconInfoCardProps, 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, IconParallelArrows, IconPause, IconPaywall, IconPeople, IconPersonAlert, IconPhotoCamera, IconPlay, IconPlus, IconPoweredByStripe, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconProps$K as IconProps, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconRadioPartial, IconReceipt, IconReceiptLong, IconRecurring, IconRenew, IconReschedule, IconResume, IconReviewSessionSubscription, IconReviewSessionTrial, IconRoundInfo, 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$14 as Item, _default$1b as ItemCard, LabelArrowRedirect, _default$1m as LetterAvatar, _default$4 as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListItemType, _default$11 as ListItemWithColumns, _default$15 as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$16 as Loading, LocaleCurrencyMapper, MIN_COMMENT_LENGTH, MapStatusContractToUIStatus, _default$L as MarkdownContainerFeature, _default$12 as MatchProgress, _default$1l 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$D as OnBoardingConfirmScreenPreviewFeature, OnBoardingConfirmScreenType, _default$E as OnBoardingEmailScreenPreviewFeature, OnBoardingEmailScreenType, OnBoardingFlowType, OnBoardingGoalSelectScreenType, _default$C as OnBoardingGoalSelectionScreenPreviewFeature, OnBoardingGraphScreenPreviewFeature, OnBoardingGraphScreenType, _default$J as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$I as OnBoardingMultiSelectionScreenPreviewFeature, OnBoardingPaywallScreenPreviewFeature, OnBoardingPaywallScreenType, _default$G as OnBoardingProgressFeature, OnBoardingProgressSettingsScreenType, _default$F as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenAlertType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenEmailType, OnBoardingScreenErrorsType, OnBoardingScreenOptionType, OnBoardingScreenOptionWithScaleType, OnBoardingScreenOptions, OnBoardingScreenPasswordType, OnBoardingScreenPrivacyType, OnBoardingScreenProgressType, OnBoardingScreenSkipButtonType, OnBoardingScreenStyleOptions, OnBoardingScreenSubgoalButtonType, OnBoardingScreenTranslationsType, OnBoardingScreensType, OnBoardingSingleImageSelectScreenType, OnBoardingSingleRoundImageSelectScreenType, OnBoardingSingleScaleSelectScreenType, OnBoardingSingleSelectScreenType, _default$H as OnBoardingSingleSelectionScreenPreviewFeature, OnBoardingSpecializationSelectScreenType, _default$K as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OnBoardingThemeV2Type, OnboardingAnswersContent, OnboardingAnswersContentProps, OnboardingProgressTemplate, OnboardingVariant, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$R as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$T as PaymentSessionsList, PayoutCurrencySignByLocale, PayoutShortCurrencySignByLocale, _default$1d as Picture, PoweredByStripeFeature, _default$2 as ProfileInformation, _default$f as ProfileView, _default$5 as ProgressBar, ProgressBarDashed, _default$17 as ProgressBar_v2, _default$Z as ProgressCard, ProgressCardProps, ProgressRangeProps, _default$$ as PromptCard, PromptCardData, PromptCardProps, _default$z as PromptCardsFeature, PromptCardsFeatureProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, QuestionnaireAnswer, Range, _default$19 as Rating, RatingCircleVariant, RatingCircleWrapper, _default$i as ReSchedule, ReScheduleSuccess, RecurringSchedule, RecurringSession, RecurringSessionPreviewFeature, RecurringSessionsTimeSlots$1 as RecurringSessionsTimeSlots, Refresher, ReservedSessionManageModalFeature, ResponseFileType, _default$y as RevampSubscriptionStepperFeature, ReviewAiSessionFeature, ReviewAiSessionFeatureProps, ReviewCard, _default$Q as ReviewCardFeature, ReviewListFeature, ReviewStatistics, ReviewSubscriptionSessionFeature, ReviewSubscriptionSessionFeatureProps, ReviewSwiperSection, ReviewTrialSessionFeature, ReviewTrialSessionFeatureProps, ReviewsCardFeatureSkeleton, ReviewsSummary, RoundButton, RowItemType, RowSelect, RowSelectProps, Rule, SESSION_DURATION, SIZES, SOON_SESSION_TIME_SECONDS, Schedule$1 as Schedule, ScheduleDate, Schedule as ScheduleFeature, ScheduleProps, ScheduleSectionsFeature, ScheduleSlot, _default$O as ScreenDrumPickerFormFeature, ScreenInput, _default$P as ScreenInputFormFeature, ScreenInputUpdateFeature, SectionHeading, Segment, SegmentColor, SegmentType, SelectItemType, _default$M as SelectWithSearchFormFeature, _default$A 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$10 as ShowMore, _default$n as SignUpSessionButton, _default$k as SignUpSessionModal, SimpleTabs, SimpleTabsProps, SizeValues, Skeleton, _default$1f as Skeleton_v2, Slider, SlotViewModel, _default$Y as SlotsGrid, _default$X as SlotsGridItem, SolidInput, Sort, SortDirection, SortKey, SortValue, Specialist$1 as 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$V as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$U 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, StepList, StripeSupportedCurrency, Subscription, RedesignedSubscriptionСard as SubscriptionCard, SubscriptionStatuses, SuccessModalFeature, SuccessModalFeatureAction, SuccessScreen, SuperSpecialist, SupportedCurrency, SupportedLangs, SupportedLocales, SwitchDeviceCard, TabItem, Tabs$1 as Tabs, TabsFeature, TabsFeatureSkeleton, TabsToolbarFeature, Tag, Tariff, TariffFeature, _default$N as TextAreaFormFeature, _default$a as TextInput, _default$B as TextWithClampFeature, _default$1a as Textarea_v2, ThemeProvider, ThemeProviderProps, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$1j as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UserType, UserTypeEnum, VariantType, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$13 as Video, _default$p as VideoCallInfo, _default$1k as VideoPlayer, VideoProvider, ViewedClientsListFeature, ViewedClientsWidget, _default$g as WorkDirections, appThemes, canManageSession, capitalizeFirstLetter, currentUser, decOfNum, formatByDigits, formatMessageTimestamp, formatSessionDate, formatWeekLabel, 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, roleLabel, roundToPrecision, specialist, splitSessions, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDeepCompareEffect, useDeepUpdateEffect, useDelayMount, useDomRef, useElementWidth, useEvent, useIsKeyBoardShown, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useScrollToElement, useSpecialistScheduleContext, useStopPropagationEvent, useSwipe, useToastContext, useUpdateEffect, useVideoContext, withSpecialistScheduleContext };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindly/ui-components",
3
- "version": "8.11.0",
3
+ "version": "8.11.2",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "clean": "rimraf dist",
@@ -198,4 +198,4 @@
198
198
  "eslint --fix"
199
199
  ]
200
200
  }
201
- }
201
+ }