@mindly/ui-components 7.0.2 → 7.0.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.
@@ -2,7 +2,8 @@ import React, { ReactElement, ReactText } from 'react';
2
2
  import { CheckboxTypes } from '../CustomCheckbox/CustomCheckbox';
3
3
  export type CheckboxListItem = {
4
4
  id: ReactText;
5
- label: string;
5
+ label?: string;
6
+ name?: string;
6
7
  icon?: ReactElement;
7
8
  isFavorite?: boolean;
8
9
  };
@@ -38,7 +38,9 @@ export declare enum OnBoardingScreenOptions {
38
38
  COMPARE = "COMPARE",
39
39
  CHART = "CHART",
40
40
  GRAPH = "GRAPH",
41
- GOAL = "GOAL"
41
+ GOAL = "GOAL",
42
+ AREAS_OF_WORK = "AREAS_OF_WORK",
43
+ SPECIALIZATION = "SPECIALIZATION"
42
44
  }
43
45
  export type OnBoardingScreenOptionType = {
44
46
  id: string;
@@ -152,6 +154,16 @@ export type OnBoardingGoalSelectScreenType = OnBoardingBaseScreenType & OnBoardi
152
154
  isShowCategoryName?: boolean;
153
155
  maxSelectionCount?: number;
154
156
  };
157
+ export type OnBoardingAreasOfWorkSelectScreenType = OnBoardingBaseScreenType & OnBoardingScreenButtonType & OnBoardingScreenDescriptionType & {
158
+ isOptionView?: boolean;
159
+ options: OnBoardingScreenOptionType[];
160
+ maxSelectionCount?: number;
161
+ };
162
+ export type OnBoardingSpecializationSelectScreenType = OnBoardingBaseScreenType & OnBoardingScreenButtonType & OnBoardingScreenDescriptionType & {
163
+ isOptionView?: boolean;
164
+ options: OnBoardingScreenOptionType[];
165
+ maxSelectionCount?: number;
166
+ };
155
167
  export type OnBoardingSingleSelectScreenType = OnBoardingBaseScreenType & OnBoardingScreenDescriptionType & {
156
168
  isOptionView?: boolean;
157
169
  isIconView?: boolean;
@@ -246,7 +258,7 @@ export type OnBoardingChartScreenType = OnBoardingBaseScreenType & OnBoardingScr
246
258
  disclaimer?: string;
247
259
  chart: ChartData;
248
260
  };
249
- export type OnBoardingScreensType = OnBoardingStartScreenType | OnBoardingMultiSelectScreenType | OnBoardingGoalSelectScreenType | OnBoardingSingleSelectScreenType | OnBoardingSingleImageSelectScreenType | OnBoardingSingleRoundImageSelectScreenType | OnBoardingSingleScaleSelectScreenType | OnBoardingInfoScreenType | OnBoardingLoaderScreenType | OnBoardingReviewsScreenType | OnBoardingEmailScreenType | OnBoardingConfirmScreenType | OnBoardingCompareScreenType | OnBoardingPaywallScreenType | OnBoardingChartScreenType | OnBoardingGraphScreenType;
261
+ export type OnBoardingScreensType = OnBoardingStartScreenType | OnBoardingMultiSelectScreenType | OnBoardingGoalSelectScreenType | OnBoardingAreasOfWorkSelectScreenType | OnBoardingSpecializationSelectScreenType | OnBoardingSingleSelectScreenType | OnBoardingSingleImageSelectScreenType | OnBoardingSingleRoundImageSelectScreenType | OnBoardingSingleScaleSelectScreenType | OnBoardingInfoScreenType | OnBoardingLoaderScreenType | OnBoardingReviewsScreenType | OnBoardingEmailScreenType | OnBoardingConfirmScreenType | OnBoardingCompareScreenType | OnBoardingPaywallScreenType | OnBoardingChartScreenType | OnBoardingGraphScreenType;
250
262
  export type OnBoardingFlowType = {
251
263
  id: string;
252
264
  locale: SupportedLocales;
@@ -16,6 +16,10 @@ export type Specialist = {
16
16
  first_name: string;
17
17
  last_name: string;
18
18
  specialization?: string;
19
+ localized_specialization?: Array<{
20
+ id: string;
21
+ name: string;
22
+ }> | [];
19
23
  session_price_uah: number;
20
24
  session_price: number;
21
25
  session_price_type: SupportedCurrency;
@@ -38,8 +42,15 @@ export type Specialist = {
38
42
  video_calling_photo_link?: string;
39
43
  about?: string;
40
44
  areas_of_work: Array<string> | [];
45
+ localized_areas_of_work?: Array<{
46
+ id: string;
47
+ name: string;
48
+ }> | [];
41
49
  areas_of_work_by_client_problem: Array<string> | [];
42
- localized_areas_of_work_by_client_problem: string[];
50
+ localized_areas_of_work_by_client_problem?: Array<{
51
+ id: string;
52
+ name: string;
53
+ }> | [];
43
54
  therapy_description?: string;
44
55
  avatar_link?: string;
45
56
  time_zone: string;
package/dist/index.d.ts CHANGED
@@ -693,7 +693,9 @@ declare enum OnBoardingScreenOptions {
693
693
  COMPARE = "COMPARE",
694
694
  CHART = "CHART",
695
695
  GRAPH = "GRAPH",
696
- GOAL = "GOAL"
696
+ GOAL = "GOAL",
697
+ AREAS_OF_WORK = "AREAS_OF_WORK",
698
+ SPECIALIZATION = "SPECIALIZATION"
697
699
  }
698
700
  type OnBoardingScreenOptionType = {
699
701
  id: string;
@@ -807,6 +809,16 @@ type OnBoardingGoalSelectScreenType = OnBoardingBaseScreenType & OnBoardingScree
807
809
  isShowCategoryName?: boolean;
808
810
  maxSelectionCount?: number;
809
811
  };
812
+ type OnBoardingAreasOfWorkSelectScreenType = OnBoardingBaseScreenType & OnBoardingScreenButtonType & OnBoardingScreenDescriptionType & {
813
+ isOptionView?: boolean;
814
+ options: OnBoardingScreenOptionType[];
815
+ maxSelectionCount?: number;
816
+ };
817
+ type OnBoardingSpecializationSelectScreenType = OnBoardingBaseScreenType & OnBoardingScreenButtonType & OnBoardingScreenDescriptionType & {
818
+ isOptionView?: boolean;
819
+ options: OnBoardingScreenOptionType[];
820
+ maxSelectionCount?: number;
821
+ };
810
822
  type OnBoardingSingleSelectScreenType = OnBoardingBaseScreenType & OnBoardingScreenDescriptionType & {
811
823
  isOptionView?: boolean;
812
824
  isIconView?: boolean;
@@ -901,7 +913,7 @@ type OnBoardingChartScreenType = OnBoardingBaseScreenType & OnBoardingScreenButt
901
913
  disclaimer?: string;
902
914
  chart: ChartData;
903
915
  };
904
- type OnBoardingScreensType = OnBoardingStartScreenType | OnBoardingMultiSelectScreenType | OnBoardingGoalSelectScreenType | OnBoardingSingleSelectScreenType | OnBoardingSingleImageSelectScreenType | OnBoardingSingleRoundImageSelectScreenType | OnBoardingSingleScaleSelectScreenType | OnBoardingInfoScreenType | OnBoardingLoaderScreenType | OnBoardingReviewsScreenType | OnBoardingEmailScreenType | OnBoardingConfirmScreenType | OnBoardingCompareScreenType | OnBoardingPaywallScreenType | OnBoardingChartScreenType | OnBoardingGraphScreenType;
916
+ type OnBoardingScreensType = OnBoardingStartScreenType | OnBoardingMultiSelectScreenType | OnBoardingGoalSelectScreenType | OnBoardingAreasOfWorkSelectScreenType | OnBoardingSpecializationSelectScreenType | OnBoardingSingleSelectScreenType | OnBoardingSingleImageSelectScreenType | OnBoardingSingleRoundImageSelectScreenType | OnBoardingSingleScaleSelectScreenType | OnBoardingInfoScreenType | OnBoardingLoaderScreenType | OnBoardingReviewsScreenType | OnBoardingEmailScreenType | OnBoardingConfirmScreenType | OnBoardingCompareScreenType | OnBoardingPaywallScreenType | OnBoardingChartScreenType | OnBoardingGraphScreenType;
905
917
  type OnBoardingFlowType = {
906
918
  id: string;
907
919
  locale: SupportedLocales;
@@ -1005,6 +1017,10 @@ type Specialist = {
1005
1017
  first_name: string;
1006
1018
  last_name: string;
1007
1019
  specialization?: string;
1020
+ localized_specialization?: Array<{
1021
+ id: string;
1022
+ name: string;
1023
+ }> | [];
1008
1024
  session_price_uah: number;
1009
1025
  session_price: number;
1010
1026
  session_price_type: SupportedCurrency;
@@ -1027,8 +1043,15 @@ type Specialist = {
1027
1043
  video_calling_photo_link?: string;
1028
1044
  about?: string;
1029
1045
  areas_of_work: Array<string> | [];
1046
+ localized_areas_of_work?: Array<{
1047
+ id: string;
1048
+ name: string;
1049
+ }> | [];
1030
1050
  areas_of_work_by_client_problem: Array<string> | [];
1031
- localized_areas_of_work_by_client_problem: string[];
1051
+ localized_areas_of_work_by_client_problem?: Array<{
1052
+ id: string;
1053
+ name: string;
1054
+ }> | [];
1032
1055
  therapy_description?: string;
1033
1056
  avatar_link?: string;
1034
1057
  time_zone: string;
@@ -4431,7 +4454,8 @@ declare const _default$7: React__default.MemoExoticComponent<React__default.Forw
4431
4454
 
4432
4455
  type CheckboxListItem = {
4433
4456
  id: ReactText;
4434
- label: string;
4457
+ label?: string;
4458
+ name?: string;
4435
4459
  icon?: ReactElement;
4436
4460
  isFavorite?: boolean;
4437
4461
  };
@@ -4678,4 +4702,4 @@ type RowSelectProps = {
4678
4702
 
4679
4703
  declare const RowSelect: FC<RowSelectProps>;
4680
4704
 
4681
- export { AcceptAgreementFeature, Action, _default$1i as AlertCard, AllowFilterValueType, AppFooter, _default$1h as AppFooter_v2, AppHeader, AppHeaderPage as AppHeaderPageFeature, AppHeader_v2, AppNotSupportedFeature, 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$V as CalendarPickerFeature, CancelSession, CardModal, ChangeLanguageModal, _default$v as ChatListItem, _default$t as ChatListSkeleton, _default$u as ChatMessage, ChatMessageSkeleton, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$6 as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingComponentProps, CircleRatingContent, CircleRatingContext, CircleRatingContextData, CircleRatingContextProps, CircleRatingDataProps, CircleRatingDataResult, CircleRatingLegendProps, CircleRatingProvider, CircleRatingRange, CircleRatingSize, ClientCanAction, ClientCanParams, ClientSpecialistContractStatusEnum, CollapsableText, ConditionRulesType, Consultation, _default$o as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$l as ConsultationModal, _default$Z as ConsultationPricingFeature, _default$j as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentRendererProps, ContractDataFeature, ContractStatusEnum, ContentTree as ContractTreeFeature, CountdownTimerFeature, Counter, CounterProps, CountryOfOriginModal, 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, _default$s as EmptyChatList, EmptyChatMessages, EmptyChatModalFeature, _default$m as EmptyConsultations, EmptyList, EmptySpecialistListFeature, ErrorCardFeature, 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, IconAddModerator, IconAlignHorizontalTextCenter, IconAlignHorizontalTextLeft, IconAlignHorizontalTextRight, IconAmEx, IconAppStoreRating, IconApple, IconApplePay, IconArrowDown, IconArrowLeft, IconArrowRange, IconArrowRight, IconArrowTopRight, IconAttachMoney, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _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, 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$H as IconProps, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconRadioPartial, IconReceipt, IconReceiptLong, IconRenew, IconResume, IconReviewSessionSubscription, IconReviewSessionTrial, IconSchedule, IconSchema, IconSearch, IconSecure, IconSend, IconSettings, IconShare, IconSort, IconSpecialistsEnded, IconSpinner, IconStar, IconStarFilled, IconStudyHat, IconStylus, IconSuccess, IconSwitch, IconText, IconTime, IconTimeAdd, IconUnmute, IconUser, IconUserNotFound, IconVerifiedUser, IconVisa, IconVisible, IconWarning, ImageInput, ImageWithFallback, Input, InputSearch, _default$14 as Item, _default$1b as ItemCard, LabelArrowRedirect, _default$1l 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, MapStatusContractToUIStatus, _default$O as MarkdownContainerFeature, _default$12 as MatchProgress, _default$1k as MediaPlayer, MenuFeature, MindlyReview, MindlyReviewFeature, ModalSheet, NEAR_SESSION_TIME_SECONDS, NewSpecialist, NoInternetConnection, NotSupportModal, ONBOARDING_THEME_DEFAULT_COLORS, OnBoardingBaseScreenType, OnBoardingChartScreenPreviewFeature, OnBoardingChartScreenType, OnBoardingCompareScreenPreviewFeature, OnBoardingCompareScreenType, _default$G as OnBoardingConfirmScreenPreviewFeature, OnBoardingConfirmScreenType, _default$H as OnBoardingEmailScreenPreviewFeature, OnBoardingEmailScreenType, OnBoardingFlowType, OnBoardingGoalSelectScreenType, _default$F as OnBoardingGoalSelectionScreenPreviewFeature, OnBoardingGraphScreenPreviewFeature, OnBoardingGraphScreenType, _default$M as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$L as OnBoardingMultiSelectionScreenPreviewFeature, OnBoardingPaywallScreenPreviewFeature, OnBoardingPaywallScreenType, _default$J as OnBoardingProgressFeature, OnBoardingProgressSettingsScreenType, _default$I as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenAlertType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenEmailType, OnBoardingScreenErrorsType, OnBoardingScreenOptionType, OnBoardingScreenOptionWithScaleType, OnBoardingScreenOptions, OnBoardingScreenPasswordType, OnBoardingScreenPrivacyType, OnBoardingScreenProgressType, OnBoardingScreenSkipButtonType, OnBoardingScreenStyleOptions, OnBoardingScreenSubgoalButtonType, OnBoardingScreenTranslationsType, OnBoardingScreensType, OnBoardingSingleImageSelectScreenType, OnBoardingSingleRoundImageSelectScreenType, OnBoardingSingleScaleSelectScreenType, OnBoardingSingleSelectScreenType, _default$K as OnBoardingSingleSelectionScreenPreviewFeature, _default$N as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OnBoardingThemeV2Type, OnboardingProgressTemplate, OnboardingVariant, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$U as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$W 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, ProgressRangeProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$19 as Rating, RatingCircleWrapper, _default$i as ReSchedule, ReScheduleSuccess, Refresher, ResponseFileType, ReviewCard, _default$T 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$R as ScreenDrumPickerFormFeature, ScreenInput, _default$S as ScreenInputFormFeature, ScreenInputUpdateFeature, SectionHeading, Segment, SegmentColor, SegmentType, SelectItemType, _default$P as SelectWithSearchFormFeature, _default$D as SelectionListFeature, Session, SessionDetailWidget, SessionPaymentsWidget, SessionPreviewFeature, SessionReview$1 as SessionReview, SessionTime, SessionVariant, SessionsWidget as SessionsListWidget, SessionsWidgetProps, Sex, ShareModalFeature, ShortCurrencySignByLocale, ShortTranscriptionCurrencySignByLocale, _default$10 as ShowMore, _default$n as SignUpSessionButton, _default$k as SignUpSessionModal, SizeValues, Skeleton, _default$1f as Skeleton_v2, _default$$ as SlotsGrid, _default$_ as SlotsGridItem, SolidInput, Sort, SortDirection, SortKey, SortValue, Specialist, _default$e as SpecialistAbout, SpecialistAreaList as SpecialistAreaListFeature, SpecialistCard, SpecialistCardListWidget, _default$C as SpecialistCardWidget, SpecialistCardSkeleton as SpecialistCardWithScheduleSkeleton, _default$w as SpecialistCardWithScheduleWidget, SpecialistConsultation, SpecialistConsultationPayment, _default$z as SpecialistDetailWidget, SpecialistDetailWidgetSkeleton, SpecialistDetailWithTabsSkeleton, _default$x as SpecialistDetailWithTabsWidget, SpecialistEducation, SpecialistEducationsFeature, SpecialistInfoColumnFeature, SpecialistLangs, _default$1 as SpecialistMatch, SpecialistOrderType, SpecialistPaymentCardProps, _default$Y as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$X as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default$A as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$B as SpecialistPaymentWidget, SpecialistPaymentWidgetType, SpecialistPreviewFeature, SpecialistPreviewListWidget, _default$y as SpecialistPreviewWidget, SpecialistProfileNotFound, SpecialistReview$1 as SpecialistReview, SpecialistScheduleFeature, SpecialistScheduleProvider, SpecialistScheduleProviderRef, ScheduleSkeleton as SpecialistScheduleSkeletonFeature, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default as SpecialistStatistic, Spinner, Spinner_v2, StarRating, StatisticsScroll, StripeSupportedCurrency, Subscription, SubscriptionStatuses, SuccessScreen, SuperSpecialist, SupportedCurrency, SupportedLangs, SupportedLocales, SwitchDeviceCard, TabItem, Tabs$1 as Tabs, TabsFeature, TabsFeatureSkeleton, TabsToolbarFeature, Tag, Tariff, TariffFeature, _default$Q as TextAreaFormFeature, _default$a as TextInput, _default$E as TextWithClampFeature, _default$r as Textarea, _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, VariantType, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$13 as Video, _default$p as VideoCallInfo, _default$q as VideoPlayer, VideoProvider, _default$g as WorkDirections, appThemes, canManageSession, currentUser, decOfNum, formatByDigits, getCountryKeyByName, getDateLocale, getFilterCount, getFiltersQuery, getFiltersValues, getGMTOffset, getMappedFilterValue, getMockSchedule, getMonthNameInGenitive, getProgressForBreakPoint, getSessionTimeLabel, getSessionVariant, getSessionsByDay, getSessionsByMonth, getSessionsByYear, getSignAgreementsTabs, getSortFromKey, getSortKey, getStartSessionDate, getStartSessionTimestamp, globalAuthState, isClientCan, isFilterSet, isNewSpecialist, isSpecialistActive, isSpecialistBlocked, isSpecialistPublic, isSuperSpecialist, listReviews, mergeRefs, mockSession, mockSessions, mockT, newShade, payoutPriceNormalize, priceNormalize, replaceMarkdownWithReactElements, roundToPrecision, specialist, splitSessions, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDeepCompareEffect, useDeepUpdateEffect, useDelayMount, useDomRef, useElementWidth, useEvent, useIsKeyBoardShown, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useSpecialistScheduleContext, useStopPropagationEvent, useToastContext, useUpdateEffect, useVideoContext, withSpecialistScheduleContext };
4705
+ export { AcceptAgreementFeature, Action, _default$1i as AlertCard, AllowFilterValueType, AppFooter, _default$1h as AppFooter_v2, AppHeader, AppHeaderPage as AppHeaderPageFeature, AppHeader_v2, AppNotSupportedFeature, 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$V as CalendarPickerFeature, CancelSession, CardModal, ChangeLanguageModal, _default$v as ChatListItem, _default$t as ChatListSkeleton, _default$u as ChatMessage, ChatMessageSkeleton, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$6 as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingComponentProps, CircleRatingContent, CircleRatingContext, CircleRatingContextData, CircleRatingContextProps, CircleRatingDataProps, CircleRatingDataResult, CircleRatingLegendProps, CircleRatingProvider, CircleRatingRange, CircleRatingSize, ClientCanAction, ClientCanParams, ClientSpecialistContractStatusEnum, CollapsableText, ConditionRulesType, Consultation, _default$o as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$l as ConsultationModal, _default$Z as ConsultationPricingFeature, _default$j as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentRendererProps, ContractDataFeature, ContractStatusEnum, ContentTree as ContractTreeFeature, CountdownTimerFeature, Counter, CounterProps, CountryOfOriginModal, 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, _default$s as EmptyChatList, EmptyChatMessages, EmptyChatModalFeature, _default$m as EmptyConsultations, EmptyList, EmptySpecialistListFeature, ErrorCardFeature, 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, IconAddModerator, IconAlignHorizontalTextCenter, IconAlignHorizontalTextLeft, IconAlignHorizontalTextRight, IconAmEx, IconAppStoreRating, IconApple, IconApplePay, IconArrowDown, IconArrowLeft, IconArrowRange, IconArrowRight, IconArrowTopRight, IconAttachMoney, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _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, 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$H as IconProps, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconRadioPartial, IconReceipt, IconReceiptLong, IconRenew, IconResume, IconReviewSessionSubscription, IconReviewSessionTrial, IconSchedule, IconSchema, IconSearch, IconSecure, IconSend, IconSettings, IconShare, IconSort, IconSpecialistsEnded, IconSpinner, IconStar, IconStarFilled, IconStudyHat, IconStylus, IconSuccess, IconSwitch, IconText, IconTime, IconTimeAdd, IconUnmute, IconUser, IconUserNotFound, IconVerifiedUser, IconVisa, IconVisible, IconWarning, ImageInput, ImageWithFallback, Input, InputSearch, _default$14 as Item, _default$1b as ItemCard, LabelArrowRedirect, _default$1l 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, MapStatusContractToUIStatus, _default$O as MarkdownContainerFeature, _default$12 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$G as OnBoardingConfirmScreenPreviewFeature, OnBoardingConfirmScreenType, _default$H as OnBoardingEmailScreenPreviewFeature, OnBoardingEmailScreenType, OnBoardingFlowType, OnBoardingGoalSelectScreenType, _default$F as OnBoardingGoalSelectionScreenPreviewFeature, OnBoardingGraphScreenPreviewFeature, OnBoardingGraphScreenType, _default$M as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$L as OnBoardingMultiSelectionScreenPreviewFeature, OnBoardingPaywallScreenPreviewFeature, OnBoardingPaywallScreenType, _default$J as OnBoardingProgressFeature, OnBoardingProgressSettingsScreenType, _default$I as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenAlertType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenEmailType, OnBoardingScreenErrorsType, OnBoardingScreenOptionType, OnBoardingScreenOptionWithScaleType, OnBoardingScreenOptions, OnBoardingScreenPasswordType, OnBoardingScreenPrivacyType, OnBoardingScreenProgressType, OnBoardingScreenSkipButtonType, OnBoardingScreenStyleOptions, OnBoardingScreenSubgoalButtonType, OnBoardingScreenTranslationsType, OnBoardingScreensType, OnBoardingSingleImageSelectScreenType, OnBoardingSingleRoundImageSelectScreenType, OnBoardingSingleScaleSelectScreenType, OnBoardingSingleSelectScreenType, _default$K as OnBoardingSingleSelectionScreenPreviewFeature, OnBoardingSpecializationSelectScreenType, _default$N as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OnBoardingThemeV2Type, OnboardingProgressTemplate, OnboardingVariant, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$U as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$W 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, ProgressRangeProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$19 as Rating, RatingCircleWrapper, _default$i as ReSchedule, ReScheduleSuccess, Refresher, ResponseFileType, ReviewCard, _default$T 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$R as ScreenDrumPickerFormFeature, ScreenInput, _default$S as ScreenInputFormFeature, ScreenInputUpdateFeature, SectionHeading, Segment, SegmentColor, SegmentType, SelectItemType, _default$P as SelectWithSearchFormFeature, _default$D as SelectionListFeature, Session, SessionDetailWidget, SessionPaymentsWidget, SessionPreviewFeature, SessionReview$1 as SessionReview, SessionTime, SessionVariant, SessionsWidget as SessionsListWidget, SessionsWidgetProps, Sex, ShareModalFeature, ShortCurrencySignByLocale, ShortTranscriptionCurrencySignByLocale, _default$10 as ShowMore, _default$n as SignUpSessionButton, _default$k as SignUpSessionModal, SizeValues, Skeleton, _default$1f as Skeleton_v2, _default$$ as SlotsGrid, _default$_ as SlotsGridItem, SolidInput, Sort, SortDirection, SortKey, SortValue, Specialist, _default$e as SpecialistAbout, SpecialistAreaList as SpecialistAreaListFeature, SpecialistCard, SpecialistCardListWidget, _default$C as SpecialistCardWidget, SpecialistCardSkeleton as SpecialistCardWithScheduleSkeleton, _default$w as SpecialistCardWithScheduleWidget, SpecialistConsultation, SpecialistConsultationPayment, _default$z as SpecialistDetailWidget, SpecialistDetailWidgetSkeleton, SpecialistDetailWithTabsSkeleton, _default$x as SpecialistDetailWithTabsWidget, SpecialistEducation, SpecialistEducationsFeature, SpecialistInfoColumnFeature, SpecialistLangs, _default$1 as SpecialistMatch, SpecialistOrderType, SpecialistPaymentCardProps, _default$Y as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$X as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default$A as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$B as SpecialistPaymentWidget, SpecialistPaymentWidgetType, SpecialistPreviewFeature, SpecialistPreviewListWidget, _default$y as SpecialistPreviewWidget, SpecialistProfileNotFound, SpecialistReview$1 as SpecialistReview, SpecialistScheduleFeature, SpecialistScheduleProvider, SpecialistScheduleProviderRef, ScheduleSkeleton as SpecialistScheduleSkeletonFeature, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default as SpecialistStatistic, Spinner, Spinner_v2, StarRating, StatisticsScroll, StripeSupportedCurrency, Subscription, SubscriptionStatuses, SuccessScreen, SuperSpecialist, SupportedCurrency, SupportedLangs, SupportedLocales, SwitchDeviceCard, TabItem, Tabs$1 as Tabs, TabsFeature, TabsFeatureSkeleton, TabsToolbarFeature, Tag, Tariff, TariffFeature, _default$Q as TextAreaFormFeature, _default$a as TextInput, _default$E as TextWithClampFeature, _default$r as Textarea, _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, VariantType, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$13 as Video, _default$p as VideoCallInfo, _default$q as VideoPlayer, VideoProvider, _default$g as WorkDirections, appThemes, canManageSession, currentUser, decOfNum, formatByDigits, getCountryKeyByName, getDateLocale, getFilterCount, getFiltersQuery, getFiltersValues, getGMTOffset, getMappedFilterValue, getMockSchedule, getMonthNameInGenitive, getProgressForBreakPoint, getSessionTimeLabel, getSessionVariant, getSessionsByDay, getSessionsByMonth, getSessionsByYear, getSignAgreementsTabs, getSortFromKey, getSortKey, getStartSessionDate, getStartSessionTimestamp, globalAuthState, isClientCan, isFilterSet, isNewSpecialist, isSpecialistActive, isSpecialistBlocked, isSpecialistPublic, isSuperSpecialist, listReviews, mergeRefs, mockSession, mockSessions, mockT, newShade, payoutPriceNormalize, priceNormalize, replaceMarkdownWithReactElements, roundToPrecision, specialist, splitSessions, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDeepCompareEffect, useDeepUpdateEffect, useDelayMount, useDomRef, useElementWidth, useEvent, useIsKeyBoardShown, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useSpecialistScheduleContext, useStopPropagationEvent, useToastContext, useUpdateEffect, useVideoContext, withSpecialistScheduleContext };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindly/ui-components",
3
- "version": "7.0.2",
3
+ "version": "7.0.4",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "clean": "rimraf dist",