@mindly/ui-components 6.2.2 → 6.2.4

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.
@@ -1 +1,2 @@
1
1
  export { default as SpecialistScheduleFeature } from './SpecialistScheduleFeature';
2
+ export { default as SpecialistScheduleSkeletonFeature } from './SpecialistScheduleSkeletonFeature';
@@ -1,11 +1,11 @@
1
1
  import { WithTranslation } from 'react-i18next';
2
- import { Schedule, ScheduleDate, ScheduleSlot } from '../../shared/types';
2
+ import { ScheduleSlot } from '../../shared';
3
+ import { ScheduleDate } from '../../shared';
3
4
  export type ScheduleFeatureProps = {
4
- isLoading?: boolean;
5
5
  className?: string;
6
6
  t?: WithTranslation['t'];
7
- schedule?: Schedule;
8
7
  locale?: string;
8
+ forceLoading?: boolean;
9
9
  onDateChange?: (date: ScheduleDate, slots: ScheduleSlot[]) => void;
10
10
  onSlotChange?: (slot: ScheduleSlot | null) => void;
11
11
  };
@@ -0,0 +1,27 @@
1
+ import React from 'react';
2
+ import { Schedule, ScheduleDate, ScheduleSlot } from '../../types';
3
+ type SpecialistScheduleContextValue = {
4
+ selectedDate: ScheduleDate | undefined;
5
+ selectedSlot: ScheduleSlot | undefined;
6
+ setSelectedDate: (date: ScheduleDate | undefined) => void;
7
+ setSelectedSlot: (slot: ScheduleSlot | undefined) => void;
8
+ resetSelectedScheduleData: () => void;
9
+ schedule: Schedule | undefined;
10
+ isLoading: boolean;
11
+ setSchedule: (schedule: Schedule | undefined) => void;
12
+ setIsLoading: (isLoading: boolean) => void;
13
+ };
14
+ type Props = {
15
+ children?: React.ReactNode;
16
+ initialSchedule?: Schedule;
17
+ };
18
+ export declare const useSpecialistScheduleContext: () => SpecialistScheduleContextValue;
19
+ export declare const withSpecialistScheduleContext: <T extends React.ComponentType<any>>(Component: T) => {
20
+ (props: React.ComponentProps<T>): import("react/jsx-runtime").JSX.Element;
21
+ displayName: string;
22
+ };
23
+ export type SpecialistScheduleProviderRef = {
24
+ onDateChange: (cb: (date: ScheduleDate | undefined, slots?: any) => void) => void;
25
+ };
26
+ export declare const SpecialistScheduleProvider: React.FC<Props>;
27
+ export {};
@@ -0,0 +1 @@
1
+ export * from './SpecialistScheduleProvider';
@@ -2,3 +2,4 @@ export * from './ThemeProvider';
2
2
  export * from './ToastProvider';
3
3
  export * from './CircleRatingProvider';
4
4
  export * from './VideoProvider';
5
+ export * from './SpecialistScheduleProvider';
@@ -3,5 +3,6 @@ export type SuperSpecialistProps = {
3
3
  t?: WithTranslation['t'];
4
4
  variant?: 'default' | 'full' | 'badge';
5
5
  percent?: number;
6
+ className?: string;
6
7
  onOpenArticle?(): void;
7
8
  };
@@ -4,7 +4,6 @@ import { ScheduleDate, ScheduleSlot, SpecialistReview, UserType } from '../../sh
4
4
  export type SpecialistDetailWithTabsWidgetProps = {
5
5
  t?: WithTranslation['t'];
6
6
  isLoading?: boolean;
7
- isLoadingSchedule?: boolean;
8
7
  specialist: Specialist;
9
8
  reviews?: SpecialistReview[];
10
9
  country: string;
package/dist/index.d.ts CHANGED
@@ -1960,7 +1960,7 @@ declare enum SelectItemType {
1960
1960
  Checkbox = "checkbox",
1961
1961
  Radio = "radio"
1962
1962
  }
1963
- type Props$9 = {
1963
+ type Props$a = {
1964
1964
  type: SelectItemType;
1965
1965
  id: string;
1966
1966
  label: string;
@@ -1969,7 +1969,7 @@ type Props$9 = {
1969
1969
  checked: boolean;
1970
1970
  onChange?: (value: string) => void;
1971
1971
  };
1972
- declare const CheckBoxItem: React__default.ForwardRefExoticComponent<Props$9 & React__default.RefAttributes<HTMLInputElement>>;
1972
+ declare const CheckBoxItem: React__default.ForwardRefExoticComponent<Props$a & React__default.RefAttributes<HTMLInputElement>>;
1973
1973
 
1974
1974
  type FieldSearchType = {
1975
1975
  className?: string;
@@ -2019,7 +2019,7 @@ type SelectionType$1 = {
2019
2019
  value: any;
2020
2020
  label: string;
2021
2021
  };
2022
- type Props$8 = {
2022
+ type Props$9 = {
2023
2023
  height?: number | undefined;
2024
2024
  selections: Record<string, SelectionType$1[]>;
2025
2025
  defaults?: Record<string, string>;
@@ -2027,7 +2027,7 @@ type Props$8 = {
2027
2027
  className?: string;
2028
2028
  compareBy?: 'value' | 'label';
2029
2029
  };
2030
- declare const DrumListPicker: ({ height, selections, defaults, onChange, className, compareBy, }: Props$8) => react_jsx_runtime.JSX.Element;
2030
+ declare const DrumListPicker: ({ height, selections, defaults, onChange, className, compareBy, }: Props$9) => react_jsx_runtime.JSX.Element;
2031
2031
 
2032
2032
  type FontWeight = 'Regular' | 'Semi' | 'Bold';
2033
2033
  type CollapsableTextProps = {
@@ -2055,6 +2055,7 @@ type SuperSpecialistProps = {
2055
2055
  t?: WithTranslation['t'];
2056
2056
  variant?: 'default' | 'full' | 'badge';
2057
2057
  percent?: number;
2058
+ className?: string;
2058
2059
  onOpenArticle?(): void;
2059
2060
  };
2060
2061
 
@@ -2066,15 +2067,15 @@ type MatchProgressProps = {
2066
2067
  };
2067
2068
  declare const _default$G: React__default.NamedExoticComponent<React__default.PropsWithChildren<MatchProgressProps>>;
2068
2069
 
2069
- interface Props$7 {
2070
+ interface Props$8 {
2070
2071
  className?: string;
2071
2072
  title: string;
2072
2073
  }
2073
- declare const _default$F: React__default.NamedExoticComponent<React__default.PropsWithChildren<Props$7>>;
2074
+ declare const _default$F: React__default.NamedExoticComponent<React__default.PropsWithChildren<Props$8>>;
2074
2075
 
2075
2076
  declare const _default$E: React__default.NamedExoticComponent<React__default.PropsWithChildren<React__default.HTMLAttributes<HTMLButtonElement>>>;
2076
2077
 
2077
- type Props$6 = {
2078
+ type Props$7 = {
2078
2079
  className?: string;
2079
2080
  rating: number;
2080
2081
  reviews: number;
@@ -2083,7 +2084,7 @@ type Props$6 = {
2083
2084
  endAdornment?: React__default.ReactNode;
2084
2085
  onClick?(): void;
2085
2086
  };
2086
- declare const ReviewsSummary: FC<Props$6>;
2087
+ declare const ReviewsSummary: FC<Props$7>;
2087
2088
 
2088
2089
  type DividerProps = {
2089
2090
  className?: string;
@@ -2157,11 +2158,36 @@ type VideoContextValue = {
2157
2158
  isLoading: boolean | undefined;
2158
2159
  playVideo(src: string): void;
2159
2160
  };
2160
- type Props$5 = {
2161
+ type Props$6 = {
2161
2162
  children?: React__default.ReactNode;
2162
2163
  };
2163
2164
  declare const useVideoContext: () => VideoContextValue;
2164
- declare const VideoProvider: React__default.FC<Props$5>;
2165
+ declare const VideoProvider: React__default.FC<Props$6>;
2166
+
2167
+ type SpecialistScheduleContextValue = {
2168
+ selectedDate: ScheduleDate | undefined;
2169
+ selectedSlot: ScheduleSlot | undefined;
2170
+ setSelectedDate: (date: ScheduleDate | undefined) => void;
2171
+ setSelectedSlot: (slot: ScheduleSlot | undefined) => void;
2172
+ resetSelectedScheduleData: () => void;
2173
+ schedule: Schedule | undefined;
2174
+ isLoading: boolean;
2175
+ setSchedule: (schedule: Schedule | undefined) => void;
2176
+ setIsLoading: (isLoading: boolean) => void;
2177
+ };
2178
+ type Props$5 = {
2179
+ children?: React__default.ReactNode;
2180
+ initialSchedule?: Schedule;
2181
+ };
2182
+ declare const useSpecialistScheduleContext: () => SpecialistScheduleContextValue;
2183
+ declare const withSpecialistScheduleContext: <T extends React__default.ComponentType<any>>(Component: T) => {
2184
+ (props: React__default.ComponentProps<T>): react_jsx_runtime.JSX.Element;
2185
+ displayName: string;
2186
+ };
2187
+ type SpecialistScheduleProviderRef = {
2188
+ onDateChange: (cb: (date: ScheduleDate | undefined, slots?: any) => void) => void;
2189
+ };
2190
+ declare const SpecialistScheduleProvider: React__default.FC<Props$5>;
2165
2191
 
2166
2192
  declare function useDomRef<T extends HTMLElement = HTMLElement>(ref: React$1.RefObject<T | null> | React$1.ForwardedRef<T | null>): React$1.RefObject<T>;
2167
2193
 
@@ -3588,17 +3614,18 @@ declare const TabsFeature: React__default.FC<TabsFeatureProps>;
3588
3614
  declare const TabsFeatureSkeleton: React__default.FC<Partial<TabsFeatureProps>>;
3589
3615
 
3590
3616
  type ScheduleFeatureProps = {
3591
- isLoading?: boolean;
3592
3617
  className?: string;
3593
3618
  t?: WithTranslation['t'];
3594
- schedule?: Schedule;
3595
3619
  locale?: string;
3620
+ forceLoading?: boolean;
3596
3621
  onDateChange?: (date: ScheduleDate, slots: ScheduleSlot[]) => void;
3597
3622
  onSlotChange?: (slot: ScheduleSlot | null) => void;
3598
3623
  };
3599
3624
 
3600
3625
  declare const SpecialistScheduleFeature: React__default.FC<ScheduleFeatureProps>;
3601
3626
 
3627
+ declare const ScheduleSkeleton: React__default.FC<ScheduleFeatureProps>;
3628
+
3602
3629
  type SupportedCountryLocale = string;
3603
3630
  type Tabs = {
3604
3631
  behavior: 'tax-country' | 'profile-lang';
@@ -4213,7 +4240,6 @@ declare const _default$1: React__default.NamedExoticComponent<SpecialistPreviewW
4213
4240
  type SpecialistDetailWithTabsWidgetProps = {
4214
4241
  t?: WithTranslation['t'];
4215
4242
  isLoading?: boolean;
4216
- isLoadingSchedule?: boolean;
4217
4243
  specialist: Specialist;
4218
4244
  reviews?: SpecialistReview$1[];
4219
4245
  country: string;
@@ -4233,4 +4259,4 @@ declare const _default: React__default.NamedExoticComponent<SpecialistDetailWith
4233
4259
 
4234
4260
  declare const SpecialistDetailWithTabsSkeleton: React__default.FC;
4235
4261
 
4236
- export { AcceptAgreementFeature, Action, _default$W as AlertCard, AllowFilterValueType, AppFooter, _default$V as AppFooter_v2, AppHeader, AppHeaderPage as AppHeaderPageFeature, AppHeader_v2, AppNotSupportedFeature, AutoComplete, Avatar, AvatarProps$1 as AvatarProps, _default$U as Avatar_v2, AvatarProps as Avatar_v2Props, BREAKPOINT_ICON_SIZE, _default$Q as Badge, _default$Z as BookingScheduleTime, _default$Y as BookingSpecialistInfo, BreakPointPositionProps, BreakPointPositionResult, Button, Button_v2, CAN_MANAGE_SESSION_TIME_HOURS, COUNTRIES_MAPPER, Calendar, _default$x as CalendarPickerFeature, CancelSession, CardModal, ChangeLanguageModal, _default$1g as ChatListItem, _default$1e as ChatListSkeleton, _default$1f as ChatMessage, ChatMessageSkeleton, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$c as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingComponentProps, CircleRatingContent, CircleRatingContext, CircleRatingContextData, CircleRatingContextProps, CircleRatingDataProps, CircleRatingDataResult, CircleRatingLegendProps, CircleRatingProvider, CircleRatingRange, CircleRatingSize, ClientCanAction, ClientCanParams, ClientSpecialistContractStatusEnum, CollapsableText, ConditionRulesType, Consultation, _default$19 as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$16 as ConsultationModal, _default$B as ConsultationPricingFeature, _default$14 as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentRendererProps, ContractDataFeature, ContractStatusEnum, ContentTree as ContractTreeFeature, CountdownTimerFeature, CountryOfOriginModal, CurrencyLocaleMapper, CurrencySignByLocale, CustomButton, _default$d as CustomCheckbox, CustomRadioButton, _default$e as CustomSelect, _default$f as CustomTextarea, DatePicker, _default$12 as DaySlider, DividerProps, DropdownFeature, DrumListPicker, DynamicCommissionValue, _default$_ as EducationCard, _default$1d as EmptyChatList, EmptyChatMessages, EmptyChatModalFeature, _default$17 as EmptyConsultations, EmptyList, EmptySpecialistListFeature, ErrorCardFeature, FilterFeatureProps, FilterItem, FilterItemBoolean, FilterItemChips, FilterItemRange, FilterItemSelect, FilterOption, FilterOptionValue, FilterValue, FiltersWidget, FiltersWidgetProps, FirstChatMessageModalFeature, _default$9 as Flag, FlagTypes, _default$S as Flag_v2, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, ISpecialistReview, IconAddModerator, IconAmEx, IconAppStoreRating, IconApple, IconApplePay, IconArrowDown, IconArrowLeft, IconArrowRange, IconArrowRight, IconArrowTopRight, IconAttachMoney, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$M 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, IconCreditCard, IconDelete, IconDivider, IconDocument, IconDot, IconDoubleArrow, IconEcgHeart, IconEdit, IconEditCalendar, IconEmptyList, IconEventBusy, IconExperience, IconEye, IconEyeOff, IconFilters, IconGallery, IconGift, IconGiftNew, IconGlobe, IconGoogle, IconGooglePay, IconHeart, IconHome, IconIdCard, IconInfo, IconInvisible, IconInvoice, IconLanguage, IconLeaderboard, IconLeftArrow, IconLetter, IconLink, IconLock, IconLogout, IconMaestro, IconManageAccounts, IconMastercard, IconMatching, IconMindly, IconMindlyColored, IconMindlyMini, IconMinus, IconMooving, IconMoreVertical, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPaperPencil, IconPause, IconPaywall, IconPersonAlert, IconPlay, IconPlus, IconPoweredByStripe, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconProps$E as IconProps, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconRadioPartial, IconReceipt, IconReceiptLong, IconRenew, IconResume, IconReviewSessionSubscription, IconReviewSessionTrial, IconSchedule, IconSchema, IconSearch, IconSecure, IconSend, IconSettings, IconShare, IconSpecialistsEnded, IconSpinner, IconStar, IconStarFilled, IconStudyHat, IconStylus, IconSuccess, IconSwitch, IconText, IconTime, IconTimeAdd, IconUnmute, IconUser, IconUserNotFound, IconVerifiedUser, IconVisa, IconVisible, IconWarning, ImageInput, ImageWithFallback, Input, InputSearch, _default$I as Item, _default$P as ItemCard, LabelArrowRedirect, _default$1i as LetterAvatar, _default$a as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListItemType, _default$F as ListItemWithColumns, _default$J as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$K as Loading, LocaleCurrencyMapper, MapStatusContractToUIStatus, _default$q as MarkdownContainerFeature, _default$G as MatchProgress, _default$1h as MediaPlayer, MenuFeature, MindlyReview, MindlyReviewFeature, ModalSheet, NEAR_SESSION_TIME_SECONDS, NewSpecialist, NoInternetConnection, NotSupportModal, ONBOARDING_THEME_DEFAULT_COLORS, OnBoardingBaseScreenType, OnBoardingChartScreenPreviewFeature, OnBoardingChartScreenType, OnBoardingCompareScreenPreviewFeature, OnBoardingCompareScreenType, _default$i as OnBoardingConfirmScreenPreviewFeature, OnBoardingConfirmScreenType, _default$j as OnBoardingEmailScreenPreviewFeature, OnBoardingEmailScreenType, OnBoardingFlowType, OnBoardingGraphScreenPreviewFeature, OnBoardingGraphScreenType, _default$o as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$n as OnBoardingMultiSelectionScreenPreviewFeature, OnBoardingPaywallScreenPreviewFeature, OnBoardingPaywallScreenType, _default$l as OnBoardingProgressFeature, _default$k as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenAlertType, OnBoardingScreenBgType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenEmailType, OnBoardingScreenErrorsType, OnBoardingScreenOptionType, OnBoardingScreenOptionWithScaleType, OnBoardingScreenOptions, OnBoardingScreenPasswordType, OnBoardingScreenPrivacyType, OnBoardingScreenSkipButtonType, OnBoardingScreenStyleOptions, OnBoardingScreenTranslationsType, OnBoardingScreensType, OnBoardingSingleImageSelectScreenType, OnBoardingSingleScaleSelectScreenType, OnBoardingSingleSelectScreenType, _default$m as OnBoardingSingleSelectionScreenPreviewFeature, _default$p as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OnboardingVariant, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$w as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$y as PaymentSessionsList, _default$R as Picture, PoweredByStripeFeature, _default$8 as ProfileInformation, _default$10 as ProfileView, _default$b as ProgressBar, ProgressBarDashed, _default$L as ProgressBar_v2, ProgressRangeProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$N as Rating, RatingCircleWrapper, _default$13 as ReSchedule, ReScheduleSuccess, Refresher, ResponseFileType, ReviewCard, _default$v as ReviewCardFeature, ReviewListFeature, ReviewStatistics, ReviewSubscriptionSessionFeature, ReviewSubscriptionSessionFeatureProps, ReviewSwiperSection, ReviewTrialSessionFeature, ReviewTrialSessionFeatureProps, ReviewsCardFeatureSkeleton, ReviewsSummary, RoundButton, RowItemType, RowSelect, RowSelectProps, Rule, SIZES, SOON_SESSION_TIME_SECONDS, Schedule, ScheduleDate, ScheduleSlot, _default$t as ScreenDrumPickerFormFeature, ScreenInput, _default$u as ScreenInputFormFeature, ScreenInputUpdateFeature, SectionHeading, Segment, SegmentColor, SegmentType, SelectItemType, _default$r as SelectWithSearchFormFeature, Session, SessionDetailWidget, SessionPaymentsWidget, SessionPreviewFeature, SessionReview$1 as SessionReview, SessionTime, SessionVariant, SessionsWidget as SessionsListWidget, SessionsWidgetProps, Sex, ShareModalFeature, ShortCurrencySignByLocale, ShortTranscriptionCurrencySignByLocale, _default$E as ShowMore, _default$18 as SignUpSessionButton, _default$15 as SignUpSessionModal, SizeValues, Skeleton, _default$T as Skeleton_v2, _default$D as SlotsGrid, _default$C as SlotsGridItem, SolidInput, Specialist, _default$$ as SpecialistAbout, SpecialistAreaList as SpecialistAreaListFeature, SpecialistCard, SpecialistCardListWidget, _default$5 as SpecialistCardWidget, SpecialistConsultation, SpecialistConsultationPayment, _default$2 as SpecialistDetailWidget, SpecialistDetailWidgetSkeleton, SpecialistDetailWithTabsSkeleton, _default as SpecialistDetailWithTabsWidget, SpecialistEducation, SpecialistEducationsFeature, SpecialistInfoColumnFeature, SpecialistLangs, _default$7 as SpecialistMatch, SpecialistOrderType, SpecialistPaymentCardProps, _default$A as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$z as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default$3 as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$4 as SpecialistPaymentWidget, SpecialistPaymentWidgetType, SpecialistPreviewFeature, SpecialistPreviewListWidget, _default$1 as SpecialistPreviewWidget, SpecialistProfileNotFound, SpecialistReview$1 as SpecialistReview, SpecialistScheduleFeature, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default$6 as SpecialistStatistic, Spinner, Spinner_v2, StarRating, StatisticsScroll, StripeSupportedCurrency, Subscription, SubscriptionStatuses, SuccessScreen, SuperSpecialist, SupportedCurrency, SupportedLangs, SwitchDeviceCard, TabItem, Tabs$1 as Tabs, TabsFeature, TabsFeatureSkeleton, TabsToolbarFeature, Tag, Tariff, TariffFeature, _default$s as TextAreaFormFeature, _default$g as TextInput, _default$h as TextWithClampFeature, _default$1c as Textarea, _default$O as Textarea_v2, ThemeProvider, ThemeProviderProps, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$X as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UserType, VariantType, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$H as Video, _default$1a as VideoCallInfo, _default$1b as VideoPlayer, VideoProvider, _default$11 as WorkDirections, appThemes, canManageSession, currentUser, decOfNum, formatByDigits, getCountryKeyByName, getDateLocale, getFiltersQuery, getFiltersValues, getGMTOffset, getMappedFilterValue, getMockSchedule, getMonthNameInGenitive, getProgressForBreakPoint, getSessionTimeLabel, getSessionVariant, getSessionsByDay, getSessionsByMonth, getSessionsByYear, getSignAgreementsTabs, getStartSessionDate, getStartSessionTimestamp, isClientCan, isFilterSet, isNewSpecialist, isSpecialistActive, isSpecialistBlocked, isSpecialistPublic, isSuperSpecialist, listReviews, mergeRefs, mockSession, mockSessions, mockT, newShade, priceNormalize, replaceMarkdownWithReactElements, roundToPrecision, specialist, splitSessions, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDeepCompareEffect, useDeepUpdateEffect, useDelayMount, useDomRef, useElementWidth, useEvent, useIsKeyBoardShown, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useToastContext, useUpdateEffect, useVideoContext };
4262
+ export { AcceptAgreementFeature, Action, _default$W as AlertCard, AllowFilterValueType, AppFooter, _default$V as AppFooter_v2, AppHeader, AppHeaderPage as AppHeaderPageFeature, AppHeader_v2, AppNotSupportedFeature, AutoComplete, Avatar, AvatarProps$1 as AvatarProps, _default$U as Avatar_v2, AvatarProps as Avatar_v2Props, BREAKPOINT_ICON_SIZE, _default$Q as Badge, _default$Z as BookingScheduleTime, _default$Y as BookingSpecialistInfo, BreakPointPositionProps, BreakPointPositionResult, Button, Button_v2, CAN_MANAGE_SESSION_TIME_HOURS, COUNTRIES_MAPPER, Calendar, _default$x as CalendarPickerFeature, CancelSession, CardModal, ChangeLanguageModal, _default$1g as ChatListItem, _default$1e as ChatListSkeleton, _default$1f as ChatMessage, ChatMessageSkeleton, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$c as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingComponentProps, CircleRatingContent, CircleRatingContext, CircleRatingContextData, CircleRatingContextProps, CircleRatingDataProps, CircleRatingDataResult, CircleRatingLegendProps, CircleRatingProvider, CircleRatingRange, CircleRatingSize, ClientCanAction, ClientCanParams, ClientSpecialistContractStatusEnum, CollapsableText, ConditionRulesType, Consultation, _default$19 as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$16 as ConsultationModal, _default$B as ConsultationPricingFeature, _default$14 as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentRendererProps, ContractDataFeature, ContractStatusEnum, ContentTree as ContractTreeFeature, CountdownTimerFeature, CountryOfOriginModal, CurrencyLocaleMapper, CurrencySignByLocale, CustomButton, _default$d as CustomCheckbox, CustomRadioButton, _default$e as CustomSelect, _default$f as CustomTextarea, DatePicker, _default$12 as DaySlider, DividerProps, DropdownFeature, DrumListPicker, DynamicCommissionValue, _default$_ as EducationCard, _default$1d as EmptyChatList, EmptyChatMessages, EmptyChatModalFeature, _default$17 as EmptyConsultations, EmptyList, EmptySpecialistListFeature, ErrorCardFeature, FilterFeatureProps, FilterItem, FilterItemBoolean, FilterItemChips, FilterItemRange, FilterItemSelect, FilterOption, FilterOptionValue, FilterValue, FiltersWidget, FiltersWidgetProps, FirstChatMessageModalFeature, _default$9 as Flag, FlagTypes, _default$S as Flag_v2, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, ISpecialistReview, IconAddModerator, IconAmEx, IconAppStoreRating, IconApple, IconApplePay, IconArrowDown, IconArrowLeft, IconArrowRange, IconArrowRight, IconArrowTopRight, IconAttachMoney, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$M 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, IconCreditCard, IconDelete, IconDivider, IconDocument, IconDot, IconDoubleArrow, IconEcgHeart, IconEdit, IconEditCalendar, IconEmptyList, IconEventBusy, IconExperience, IconEye, IconEyeOff, IconFilters, IconGallery, IconGift, IconGiftNew, IconGlobe, IconGoogle, IconGooglePay, IconHeart, IconHome, IconIdCard, IconInfo, IconInvisible, IconInvoice, IconLanguage, IconLeaderboard, IconLeftArrow, IconLetter, IconLink, IconLock, IconLogout, IconMaestro, IconManageAccounts, IconMastercard, IconMatching, IconMindly, IconMindlyColored, IconMindlyMini, IconMinus, IconMooving, IconMoreVertical, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPaperPencil, IconPause, IconPaywall, IconPersonAlert, IconPlay, IconPlus, IconPoweredByStripe, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconProps$E as IconProps, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconRadioPartial, IconReceipt, IconReceiptLong, IconRenew, IconResume, IconReviewSessionSubscription, IconReviewSessionTrial, IconSchedule, IconSchema, IconSearch, IconSecure, IconSend, IconSettings, IconShare, IconSpecialistsEnded, IconSpinner, IconStar, IconStarFilled, IconStudyHat, IconStylus, IconSuccess, IconSwitch, IconText, IconTime, IconTimeAdd, IconUnmute, IconUser, IconUserNotFound, IconVerifiedUser, IconVisa, IconVisible, IconWarning, ImageInput, ImageWithFallback, Input, InputSearch, _default$I as Item, _default$P as ItemCard, LabelArrowRedirect, _default$1i as LetterAvatar, _default$a as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListItemType, _default$F as ListItemWithColumns, _default$J as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$K as Loading, LocaleCurrencyMapper, MapStatusContractToUIStatus, _default$q as MarkdownContainerFeature, _default$G as MatchProgress, _default$1h as MediaPlayer, MenuFeature, MindlyReview, MindlyReviewFeature, ModalSheet, NEAR_SESSION_TIME_SECONDS, NewSpecialist, NoInternetConnection, NotSupportModal, ONBOARDING_THEME_DEFAULT_COLORS, OnBoardingBaseScreenType, OnBoardingChartScreenPreviewFeature, OnBoardingChartScreenType, OnBoardingCompareScreenPreviewFeature, OnBoardingCompareScreenType, _default$i as OnBoardingConfirmScreenPreviewFeature, OnBoardingConfirmScreenType, _default$j as OnBoardingEmailScreenPreviewFeature, OnBoardingEmailScreenType, OnBoardingFlowType, OnBoardingGraphScreenPreviewFeature, OnBoardingGraphScreenType, _default$o as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$n as OnBoardingMultiSelectionScreenPreviewFeature, OnBoardingPaywallScreenPreviewFeature, OnBoardingPaywallScreenType, _default$l as OnBoardingProgressFeature, _default$k as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenAlertType, OnBoardingScreenBgType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenEmailType, OnBoardingScreenErrorsType, OnBoardingScreenOptionType, OnBoardingScreenOptionWithScaleType, OnBoardingScreenOptions, OnBoardingScreenPasswordType, OnBoardingScreenPrivacyType, OnBoardingScreenSkipButtonType, OnBoardingScreenStyleOptions, OnBoardingScreenTranslationsType, OnBoardingScreensType, OnBoardingSingleImageSelectScreenType, OnBoardingSingleScaleSelectScreenType, OnBoardingSingleSelectScreenType, _default$m as OnBoardingSingleSelectionScreenPreviewFeature, _default$p as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OnboardingVariant, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$w as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$y as PaymentSessionsList, _default$R as Picture, PoweredByStripeFeature, _default$8 as ProfileInformation, _default$10 as ProfileView, _default$b as ProgressBar, ProgressBarDashed, _default$L as ProgressBar_v2, ProgressRangeProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$N as Rating, RatingCircleWrapper, _default$13 as ReSchedule, ReScheduleSuccess, Refresher, ResponseFileType, ReviewCard, _default$v as ReviewCardFeature, ReviewListFeature, ReviewStatistics, ReviewSubscriptionSessionFeature, ReviewSubscriptionSessionFeatureProps, ReviewSwiperSection, ReviewTrialSessionFeature, ReviewTrialSessionFeatureProps, ReviewsCardFeatureSkeleton, ReviewsSummary, RoundButton, RowItemType, RowSelect, RowSelectProps, Rule, SIZES, SOON_SESSION_TIME_SECONDS, Schedule, ScheduleDate, ScheduleSlot, _default$t as ScreenDrumPickerFormFeature, ScreenInput, _default$u as ScreenInputFormFeature, ScreenInputUpdateFeature, SectionHeading, Segment, SegmentColor, SegmentType, SelectItemType, _default$r as SelectWithSearchFormFeature, Session, SessionDetailWidget, SessionPaymentsWidget, SessionPreviewFeature, SessionReview$1 as SessionReview, SessionTime, SessionVariant, SessionsWidget as SessionsListWidget, SessionsWidgetProps, Sex, ShareModalFeature, ShortCurrencySignByLocale, ShortTranscriptionCurrencySignByLocale, _default$E as ShowMore, _default$18 as SignUpSessionButton, _default$15 as SignUpSessionModal, SizeValues, Skeleton, _default$T as Skeleton_v2, _default$D as SlotsGrid, _default$C as SlotsGridItem, SolidInput, Specialist, _default$$ as SpecialistAbout, SpecialistAreaList as SpecialistAreaListFeature, SpecialistCard, SpecialistCardListWidget, _default$5 as SpecialistCardWidget, SpecialistConsultation, SpecialistConsultationPayment, _default$2 as SpecialistDetailWidget, SpecialistDetailWidgetSkeleton, SpecialistDetailWithTabsSkeleton, _default as SpecialistDetailWithTabsWidget, SpecialistEducation, SpecialistEducationsFeature, SpecialistInfoColumnFeature, SpecialistLangs, _default$7 as SpecialistMatch, SpecialistOrderType, SpecialistPaymentCardProps, _default$A as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$z as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default$3 as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$4 as SpecialistPaymentWidget, SpecialistPaymentWidgetType, SpecialistPreviewFeature, SpecialistPreviewListWidget, _default$1 as SpecialistPreviewWidget, SpecialistProfileNotFound, SpecialistReview$1 as SpecialistReview, SpecialistScheduleFeature, SpecialistScheduleProvider, SpecialistScheduleProviderRef, ScheduleSkeleton as SpecialistScheduleSkeletonFeature, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default$6 as SpecialistStatistic, Spinner, Spinner_v2, StarRating, StatisticsScroll, StripeSupportedCurrency, Subscription, SubscriptionStatuses, SuccessScreen, SuperSpecialist, SupportedCurrency, SupportedLangs, SwitchDeviceCard, TabItem, Tabs$1 as Tabs, TabsFeature, TabsFeatureSkeleton, TabsToolbarFeature, Tag, Tariff, TariffFeature, _default$s as TextAreaFormFeature, _default$g as TextInput, _default$h as TextWithClampFeature, _default$1c as Textarea, _default$O as Textarea_v2, ThemeProvider, ThemeProviderProps, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$X as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UserType, VariantType, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$H as Video, _default$1a as VideoCallInfo, _default$1b as VideoPlayer, VideoProvider, _default$11 as WorkDirections, appThemes, canManageSession, currentUser, decOfNum, formatByDigits, getCountryKeyByName, getDateLocale, getFiltersQuery, getFiltersValues, getGMTOffset, getMappedFilterValue, getMockSchedule, getMonthNameInGenitive, getProgressForBreakPoint, getSessionTimeLabel, getSessionVariant, getSessionsByDay, getSessionsByMonth, getSessionsByYear, getSignAgreementsTabs, getStartSessionDate, getStartSessionTimestamp, isClientCan, isFilterSet, isNewSpecialist, isSpecialistActive, isSpecialistBlocked, isSpecialistPublic, isSuperSpecialist, listReviews, mergeRefs, mockSession, mockSessions, mockT, newShade, priceNormalize, replaceMarkdownWithReactElements, roundToPrecision, specialist, splitSessions, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDeepCompareEffect, useDeepUpdateEffect, useDelayMount, useDomRef, useElementWidth, useEvent, useIsKeyBoardShown, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useSpecialistScheduleContext, useToastContext, useUpdateEffect, useVideoContext, withSpecialistScheduleContext };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindly/ui-components",
3
- "version": "6.2.2",
3
+ "version": "6.2.4",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "clean": "rimraf dist",