@mindly/ui-components 8.6.9 → 8.6.10

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 +4 -4
  2. package/dist/cjs/lib2/features/ActiveClientsCapacityOnboardingModal/ActiveClientsCapacityOnboardingModal.d.ts +11 -0
  3. package/dist/cjs/lib2/features/ActiveClientsCapacityOnboardingModal/index.d.ts +1 -0
  4. package/dist/cjs/lib2/features/index.d.ts +1 -0
  5. package/dist/cjs/lib2/shared/assets/icons/IconLightBubble.d.ts +3 -0
  6. package/dist/cjs/lib2/shared/assets/icons/IconPeople.d.ts +3 -0
  7. package/dist/cjs/lib2/shared/assets/icons/index.d.ts +2 -0
  8. package/dist/cjs/lib2/shared/ui/DrumListPicker/DrumListPicker.d.ts +4 -2
  9. package/dist/cjs/lib2/shared/ui/ListItems/Item.d.ts +2 -0
  10. package/dist/cjs/lib2/shared/ui/NoticeCard/NoticeCard.d.ts +4 -0
  11. package/dist/cjs/lib2/shared/ui/NoticeCard/index.d.ts +1 -0
  12. package/dist/cjs/lib2/shared/ui/NoticeCard/styles.d.ts +125 -0
  13. package/dist/cjs/lib2/shared/ui/NoticeCard/types.d.ts +14 -0
  14. package/dist/cjs/lib2/shared/ui/index.d.ts +1 -0
  15. package/dist/esm/index.js +7 -7
  16. package/dist/esm/lib2/features/ActiveClientsCapacityOnboardingModal/ActiveClientsCapacityOnboardingModal.d.ts +11 -0
  17. package/dist/esm/lib2/features/ActiveClientsCapacityOnboardingModal/index.d.ts +1 -0
  18. package/dist/esm/lib2/features/index.d.ts +1 -0
  19. package/dist/esm/lib2/shared/assets/icons/IconLightBubble.d.ts +3 -0
  20. package/dist/esm/lib2/shared/assets/icons/IconPeople.d.ts +3 -0
  21. package/dist/esm/lib2/shared/assets/icons/index.d.ts +2 -0
  22. package/dist/esm/lib2/shared/ui/DrumListPicker/DrumListPicker.d.ts +4 -2
  23. package/dist/esm/lib2/shared/ui/ListItems/Item.d.ts +2 -0
  24. package/dist/esm/lib2/shared/ui/NoticeCard/NoticeCard.d.ts +4 -0
  25. package/dist/esm/lib2/shared/ui/NoticeCard/index.d.ts +1 -0
  26. package/dist/esm/lib2/shared/ui/NoticeCard/styles.d.ts +125 -0
  27. package/dist/esm/lib2/shared/ui/NoticeCard/types.d.ts +14 -0
  28. package/dist/esm/lib2/shared/ui/index.d.ts +1 -0
  29. package/dist/index.d.ts +35 -4
  30. package/package.json +1 -1
@@ -0,0 +1,11 @@
1
+ import { FC } from 'react';
2
+ import { WithTranslation } from 'react-i18next';
3
+ interface ActiveClientsCapacityOnboardingModalProps {
4
+ isOpen: boolean;
5
+ onDidDismiss: () => void;
6
+ onGoToSettings: () => void;
7
+ t: WithTranslation['t'];
8
+ imageUrl: string;
9
+ }
10
+ export declare const ActiveClientsCapacityOnboardingModal: FC<ActiveClientsCapacityOnboardingModalProps>;
11
+ export {};
@@ -0,0 +1 @@
1
+ export * from './ActiveClientsCapacityOnboardingModal';
@@ -1,3 +1,4 @@
1
+ export * from './ActiveClientsCapacityOnboardingModal';
1
2
  export * from './CountryOfOriginModal';
2
3
  export * from './ChangeLanguageModal';
3
4
  export * from './CardModal';
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ import { FC } from 'react';
3
+ export declare const IconLightBubble: FC<React.SVGAttributes<SVGElement>>;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ import { FC } from 'react';
3
+ export declare const IconPeople: FC<React.SVGAttributes<SVGElement>>;
@@ -164,4 +164,6 @@ export * from './IconBusiness';
164
164
  export * from './IconFilledHeart';
165
165
  export * from './IconBinoculars';
166
166
  export * from './IconLoyalty';
167
+ export * from './IconLightBubble';
168
+ export * from './IconPeople';
167
169
  export * from './IconRoundWarning';
@@ -6,11 +6,13 @@ type SelectionType = {
6
6
  type Props = {
7
7
  height?: number;
8
8
  selections: Record<string, SelectionType[]>;
9
- defaults?: Record<string, string>;
9
+ defaults?: Record<string, any>;
10
10
  onChange(value: Record<string, string>): void;
11
11
  className?: string;
12
12
  compareBy?: 'value' | 'label';
13
13
  presentation?: 'date' | 'month' | 'month-year';
14
+ mode?: 'date' | 'list';
15
+ columns?: Record<string, SelectionType[]>;
14
16
  };
15
- declare const DrumListPicker: ({ height, selections, defaults, onChange, className, compareBy, presentation, }: Props) => import("react/jsx-runtime").JSX.Element;
17
+ declare const DrumListPicker: ({ height, selections, defaults, onChange, className, compareBy, presentation, mode, columns, }: Props) => import("react/jsx-runtime").JSX.Element;
16
18
  export default DrumListPicker;
@@ -2,6 +2,7 @@ import * as React from 'react';
2
2
  type ItemProps = React.HTMLAttributes<HTMLIonItemElement> & {
3
3
  leftContent?: React.ReactNode;
4
4
  rightContent?: React.ReactNode;
5
+ badge?: React.ReactNode;
5
6
  innerItemClassName?: string;
6
7
  withBorders?: boolean;
7
8
  isHighlight?: boolean;
@@ -13,6 +14,7 @@ type ItemProps = React.HTMLAttributes<HTMLIonItemElement> & {
13
14
  export declare const Item: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLIonItemElement> & {
14
15
  leftContent?: React.ReactNode;
15
16
  rightContent?: React.ReactNode;
17
+ badge?: React.ReactNode;
16
18
  innerItemClassName?: string;
17
19
  withBorders?: boolean;
18
20
  isHighlight?: boolean;
@@ -0,0 +1,4 @@
1
+ import { FC } from 'react';
2
+ import { NoticeCardProps } from './types';
3
+ declare const NoticeCard: FC<NoticeCardProps>;
4
+ export default NoticeCard;
@@ -0,0 +1 @@
1
+ export { default as NoticeCard } from './NoticeCard';
@@ -0,0 +1,125 @@
1
+ import { TypographyVariantsEnum } from '../Typography';
2
+ export declare const noticeCardStyle: import("tailwind-variants").TVReturnType<{
3
+ tone: {
4
+ info: {
5
+ root: string;
6
+ titleVariant: TypographyVariantsEnum;
7
+ descriptionVariant: TypographyVariantsEnum;
8
+ closeBtn: string;
9
+ };
10
+ neutral: {
11
+ root: string;
12
+ titleVariant: TypographyVariantsEnum;
13
+ descriptionVariant: TypographyVariantsEnum;
14
+ closeBtn: string;
15
+ };
16
+ success: {
17
+ root: string;
18
+ titleVariant: TypographyVariantsEnum;
19
+ descriptionVariant: TypographyVariantsEnum;
20
+ closeBtn: string;
21
+ };
22
+ warning: {
23
+ root: string;
24
+ titleVariant: TypographyVariantsEnum;
25
+ descriptionVariant: TypographyVariantsEnum;
26
+ closeBtn: string;
27
+ };
28
+ danger: {
29
+ root: string;
30
+ titleVariant: TypographyVariantsEnum;
31
+ descriptionVariant: TypographyVariantsEnum;
32
+ closeBtn: string;
33
+ };
34
+ };
35
+ }, {
36
+ root: string;
37
+ textWrap: string;
38
+ titleVariant: string;
39
+ descriptionVariant: string;
40
+ actions: string;
41
+ closeBtn: string;
42
+ ctaBtn: string;
43
+ }, undefined, {
44
+ tone: {
45
+ info: {
46
+ root: string;
47
+ titleVariant: TypographyVariantsEnum;
48
+ descriptionVariant: TypographyVariantsEnum;
49
+ closeBtn: string;
50
+ };
51
+ neutral: {
52
+ root: string;
53
+ titleVariant: TypographyVariantsEnum;
54
+ descriptionVariant: TypographyVariantsEnum;
55
+ closeBtn: string;
56
+ };
57
+ success: {
58
+ root: string;
59
+ titleVariant: TypographyVariantsEnum;
60
+ descriptionVariant: TypographyVariantsEnum;
61
+ closeBtn: string;
62
+ };
63
+ warning: {
64
+ root: string;
65
+ titleVariant: TypographyVariantsEnum;
66
+ descriptionVariant: TypographyVariantsEnum;
67
+ closeBtn: string;
68
+ };
69
+ danger: {
70
+ root: string;
71
+ titleVariant: TypographyVariantsEnum;
72
+ descriptionVariant: TypographyVariantsEnum;
73
+ closeBtn: string;
74
+ };
75
+ };
76
+ }, {
77
+ root: string;
78
+ textWrap: string;
79
+ titleVariant: string;
80
+ descriptionVariant: string;
81
+ actions: string;
82
+ closeBtn: string;
83
+ ctaBtn: string;
84
+ }, import("tailwind-variants").TVReturnType<{
85
+ tone: {
86
+ info: {
87
+ root: string;
88
+ titleVariant: TypographyVariantsEnum;
89
+ descriptionVariant: TypographyVariantsEnum;
90
+ closeBtn: string;
91
+ };
92
+ neutral: {
93
+ root: string;
94
+ titleVariant: TypographyVariantsEnum;
95
+ descriptionVariant: TypographyVariantsEnum;
96
+ closeBtn: string;
97
+ };
98
+ success: {
99
+ root: string;
100
+ titleVariant: TypographyVariantsEnum;
101
+ descriptionVariant: TypographyVariantsEnum;
102
+ closeBtn: string;
103
+ };
104
+ warning: {
105
+ root: string;
106
+ titleVariant: TypographyVariantsEnum;
107
+ descriptionVariant: TypographyVariantsEnum;
108
+ closeBtn: string;
109
+ };
110
+ danger: {
111
+ root: string;
112
+ titleVariant: TypographyVariantsEnum;
113
+ descriptionVariant: TypographyVariantsEnum;
114
+ closeBtn: string;
115
+ };
116
+ };
117
+ }, {
118
+ root: string;
119
+ textWrap: string;
120
+ titleVariant: string;
121
+ descriptionVariant: string;
122
+ actions: string;
123
+ closeBtn: string;
124
+ ctaBtn: string;
125
+ }, undefined, unknown, unknown, undefined>>;
@@ -0,0 +1,14 @@
1
+ import { ReactNode } from 'react';
2
+ import { WithTranslation } from 'react-i18next';
3
+ export type NoticeCardTone = 'info' | 'neutral' | 'success' | 'warning' | 'danger';
4
+ export type NoticeCardProps = {
5
+ className?: string;
6
+ title?: string;
7
+ description?: string;
8
+ icon?: ReactNode;
9
+ ctaLabel?: string;
10
+ onCtaClick?: () => void;
11
+ onClose?: () => void;
12
+ tone?: NoticeCardTone;
13
+ t?: WithTranslation['t'];
14
+ };
@@ -54,3 +54,4 @@ export * from './Slider';
54
54
  export * from './EmptyClientsList';
55
55
  export * from './ClientCard';
56
56
  export * from './SpecialistProfileViewCounter';
57
+ export * from './NoticeCard';
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import * as React$1 from 'react';
2
- import React__default, { CSSProperties, FC, HTMLAttributes, SVGAttributes, PropsWithChildren, KeyboardEvent, InputHTMLAttributes, RefObject, EffectCallback, DependencyList, SVGProps, ReactNode, ReactElement, ChangeEvent } from 'react';
2
+ import React__default, { CSSProperties, FC, HTMLAttributes, SVGAttributes, PropsWithChildren, KeyboardEvent, InputHTMLAttributes, ReactNode, RefObject, EffectCallback, DependencyList, SVGProps, ReactElement, ChangeEvent } from 'react';
3
3
  import * as _ionic_core from '@ionic/core';
4
4
  import { RangeValue, IonSearchbarCustomEvent, SearchbarChangeEventDetail, TextFieldTypes } from '@ionic/core';
5
5
  import { JSX } from '@ionic/core/components';
@@ -1693,6 +1693,7 @@ declare const _default$14: React$1.NamedExoticComponent<ListItemsProps>;
1693
1693
  type ItemProps = React$1.HTMLAttributes<HTMLIonItemElement> & {
1694
1694
  leftContent?: React$1.ReactNode;
1695
1695
  rightContent?: React$1.ReactNode;
1696
+ badge?: React$1.ReactNode;
1696
1697
  innerItemClassName?: string;
1697
1698
  withBorders?: boolean;
1698
1699
  isHighlight?: boolean;
@@ -1804,13 +1805,15 @@ type SelectionType$1 = {
1804
1805
  type Props$9 = {
1805
1806
  height?: number;
1806
1807
  selections: Record<string, SelectionType$1[]>;
1807
- defaults?: Record<string, string>;
1808
+ defaults?: Record<string, any>;
1808
1809
  onChange(value: Record<string, string>): void;
1809
1810
  className?: string;
1810
1811
  compareBy?: 'value' | 'label';
1811
1812
  presentation?: 'date' | 'month' | 'month-year';
1813
+ mode?: 'date' | 'list';
1814
+ columns?: Record<string, SelectionType$1[]>;
1812
1815
  };
1813
- declare const DrumListPicker: ({ height, selections, defaults, onChange, className, compareBy, presentation, }: Props$9) => react_jsx_runtime.JSX.Element;
1816
+ declare const DrumListPicker: ({ height, selections, defaults, onChange, className, compareBy, presentation, mode, columns, }: Props$9) => react_jsx_runtime.JSX.Element;
1814
1817
 
1815
1818
  type FontWeight = 'Regular' | 'Semi' | 'Bold';
1816
1819
  type CollapsableTextProps = {
@@ -2026,6 +2029,21 @@ type SpecialistProfileViewCounterProps = {
2026
2029
  };
2027
2030
  declare const SpecialistProfileViewCounter: React__default.FC<SpecialistProfileViewCounterProps>;
2028
2031
 
2032
+ type NoticeCardTone = 'info' | 'neutral' | 'success' | 'warning' | 'danger';
2033
+ type NoticeCardProps = {
2034
+ className?: string;
2035
+ title?: string;
2036
+ description?: string;
2037
+ icon?: ReactNode;
2038
+ ctaLabel?: string;
2039
+ onCtaClick?: () => void;
2040
+ onClose?: () => void;
2041
+ tone?: NoticeCardTone;
2042
+ t?: WithTranslation['t'];
2043
+ };
2044
+
2045
+ declare const NoticeCard: FC<NoticeCardProps>;
2046
+
2029
2047
  declare enum appThemes {
2030
2048
  client = "client",
2031
2049
  specialist = "specialist"
@@ -2701,6 +2719,10 @@ declare const IconBinoculars: React$1.FC<IconProps$I>;
2701
2719
 
2702
2720
  declare const IconLoyalty: FC<IconProps$I>;
2703
2721
 
2722
+ declare const IconLightBubble: FC<React$1.SVGAttributes<SVGElement>>;
2723
+
2724
+ declare const IconPeople: FC<React$1.SVGAttributes<SVGElement>>;
2725
+
2704
2726
  declare const IconRoundWarning: React$1.FC<IconProps$I>;
2705
2727
 
2706
2728
  declare const formatByDigits: (value: number) => string;
@@ -2741,6 +2763,15 @@ declare const newShade: (hexColor: string, magnitude: number) => string;
2741
2763
 
2742
2764
  declare const replaceMarkdownWithReactElements: (text: string) => react_jsx_runtime.JSX.Element[];
2743
2765
 
2766
+ interface ActiveClientsCapacityOnboardingModalProps {
2767
+ isOpen: boolean;
2768
+ onDidDismiss: () => void;
2769
+ onGoToSettings: () => void;
2770
+ t: WithTranslation['t'];
2771
+ imageUrl: string;
2772
+ }
2773
+ declare const ActiveClientsCapacityOnboardingModal: FC<ActiveClientsCapacityOnboardingModalProps>;
2774
+
2744
2775
  type CountryOfOriginModalProps = {
2745
2776
  countries: string[];
2746
2777
  onSearchChange: (event: IonSearchbarCustomEvent$1<SearchbarChangeEventDetail>) => void;
@@ -5182,4 +5213,4 @@ type RowSelectProps = {
5182
5213
 
5183
5214
  declare const RowSelect: FC<RowSelectProps>;
5184
5215
 
5185
- export { AcceptAgreementFeature, Action, 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, IconLink, IconLock, IconLogout, IconLoyalty, 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$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, 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 };
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 };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindly/ui-components",
3
- "version": "8.6.9",
3
+ "version": "8.6.10",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "clean": "rimraf dist",