@mindly/ui-components 5.92.0 → 5.92.1

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 (34) hide show
  1. package/dist/cjs/index.js +5 -5
  2. package/dist/cjs/lib/Consultations/ConsultationCard/types.d.ts +1 -0
  3. package/dist/cjs/lib/Consultations/ConsultationSpecialistCard/ConsultationSpecialistCard.d.ts +1 -0
  4. package/dist/cjs/lib/Consultations/SignUpSessionModal/SignUpSessionModal.d.ts +1 -0
  5. package/dist/cjs/lib2/shared/types/consultation.d.ts +45 -0
  6. package/dist/cjs/lib2/shared/types/index.d.ts +3 -0
  7. package/dist/cjs/lib2/shared/types/specialistTypes.d.ts +1 -0
  8. package/dist/cjs/lib2/shared/types/subscription.d.ts +44 -0
  9. package/dist/cjs/lib2/shared/ui/SpecialistProfileNotFound/SpecialistProfileNotFound.d.ts +4 -0
  10. package/dist/cjs/lib2/shared/ui/SpecialistProfileNotFound/SpecialistProfileNotFound.stories.d.ts +7 -0
  11. package/dist/cjs/lib2/shared/ui/SpecialistProfileNotFound/index.d.ts +1 -0
  12. package/dist/cjs/lib2/shared/ui/SpecialistProfileNotFound/types.d.ts +6 -0
  13. package/dist/cjs/lib2/shared/ui/index.d.ts +1 -0
  14. package/dist/cjs/lib2/shared/utils/index.d.ts +2 -0
  15. package/dist/cjs/lib2/shared/utils/specialistStatus.d.ts +4 -0
  16. package/dist/cjs/lib2/shared/utils/userCan.d.ts +13 -0
  17. package/dist/esm/index.js +5 -5
  18. package/dist/esm/lib/Consultations/ConsultationCard/types.d.ts +1 -0
  19. package/dist/esm/lib/Consultations/ConsultationSpecialistCard/ConsultationSpecialistCard.d.ts +1 -0
  20. package/dist/esm/lib/Consultations/SignUpSessionModal/SignUpSessionModal.d.ts +1 -0
  21. package/dist/esm/lib2/shared/types/consultation.d.ts +45 -0
  22. package/dist/esm/lib2/shared/types/index.d.ts +3 -0
  23. package/dist/esm/lib2/shared/types/specialistTypes.d.ts +1 -0
  24. package/dist/esm/lib2/shared/types/subscription.d.ts +44 -0
  25. package/dist/esm/lib2/shared/ui/SpecialistProfileNotFound/SpecialistProfileNotFound.d.ts +4 -0
  26. package/dist/esm/lib2/shared/ui/SpecialistProfileNotFound/SpecialistProfileNotFound.stories.d.ts +7 -0
  27. package/dist/esm/lib2/shared/ui/SpecialistProfileNotFound/index.d.ts +1 -0
  28. package/dist/esm/lib2/shared/ui/SpecialistProfileNotFound/types.d.ts +6 -0
  29. package/dist/esm/lib2/shared/ui/index.d.ts +1 -0
  30. package/dist/esm/lib2/shared/utils/index.d.ts +2 -0
  31. package/dist/esm/lib2/shared/utils/specialistStatus.d.ts +4 -0
  32. package/dist/esm/lib2/shared/utils/userCan.d.ts +13 -0
  33. package/dist/index.d.ts +115 -1
  34. package/package.json +1 -1
@@ -29,4 +29,5 @@ export type ConsultationCardProps = {
29
29
  choose_day_and_time?: string;
30
30
  sign_up?: string;
31
31
  };
32
+ isBlockedText?: string;
32
33
  };
@@ -7,6 +7,7 @@ type ConsultationSpecialistCardProps = {
7
7
  onClick?: (id: string) => void;
8
8
  onSignUp?: (id: string) => void;
9
9
  signInBtnLabel: string;
10
+ isBlockedText?: string;
10
11
  };
11
12
  declare const _default: React.NamedExoticComponent<ConsultationSpecialistCardProps>;
12
13
  export default _default;
@@ -3,6 +3,7 @@ type SpecialistData = {
3
3
  id: string;
4
4
  name: string;
5
5
  avatar?: string;
6
+ isBlockedText?: string;
6
7
  sessions: string;
7
8
  };
8
9
  type SignUpSessionModalProps = {
@@ -0,0 +1,45 @@
1
+ import { ClientSpecialistContractStatusEnum } from './contract';
2
+ import { Specialist } from './specialistTypes';
3
+ export type Consultation = {
4
+ id: string;
5
+ consultation_time: {
6
+ _seconds: number;
7
+ nanoseconds: number;
8
+ } | string;
9
+ consultation_with: string;
10
+ duration: number;
11
+ exchange_rate: string;
12
+ payment_date: {
13
+ _seconds: number;
14
+ nanoseconds: number;
15
+ };
16
+ payment_type?: string;
17
+ price: number;
18
+ price_uah: number;
19
+ psychologist_avatar: string;
20
+ psychologist_id: string;
21
+ psychologist_name: string;
22
+ psychologist_timezone: string;
23
+ user_avatar: string;
24
+ user_id: string;
25
+ user_name: string;
26
+ user_timezone: string;
27
+ videochat_url: string;
28
+ was_rescheduled: boolean;
29
+ session_status?: 'client_showed' | 'client_not_showed';
30
+ consultation_time_before_rescheduling?: {
31
+ _seconds: number;
32
+ nanoseconds: number;
33
+ };
34
+ therapist?: Specialist;
35
+ client?: {
36
+ specialist_client_contract_id?: string | null;
37
+ specialist_client_contract_status?: ClientSpecialistContractStatusEnum | null;
38
+ };
39
+ applied_promotional_code?: string | null;
40
+ auto_booking_status?: 'enable' | 'disable';
41
+ subscription_id?: string | null;
42
+ price_type?: string;
43
+ price_default?: number;
44
+ payment_intent_id?: string;
45
+ };
@@ -1,3 +1,4 @@
1
+ export type AutoComplete<T extends string> = T | (string & {});
1
2
  export * from './ratingCircleTypes';
2
3
  export * from './specialistPaymentTypes';
3
4
  export * from './iconProps';
@@ -9,3 +10,5 @@ export * from './specialistTypes';
9
10
  export * from './review';
10
11
  export * from './contract';
11
12
  export * from './user';
13
+ export * from './subscription';
14
+ export * from './consultation';
@@ -62,4 +62,5 @@ export type Specialist = {
62
62
  app_lang?: string;
63
63
  isFavourite?: boolean;
64
64
  subscription_discounts?: Record<string, number>;
65
+ is_blocked?: boolean;
65
66
  };
@@ -0,0 +1,44 @@
1
+ import { SupportedCurrency } from './common';
2
+ import { Specialist } from './specialistTypes';
3
+ import { UserType } from './user';
4
+ export type SubscriptionStatuses = 'incomplete' | 'incomplete_expired' | 'trialing' | 'active' | 'past_due' | 'canceled' | 'unpaid';
5
+ export type Subscription = {
6
+ id: string;
7
+ last_charge: number;
8
+ period_start: number;
9
+ period_end: number;
10
+ therapist_id: string;
11
+ user_id: string;
12
+ session_count: number;
13
+ subscription_interval_in_month: number;
14
+ subscription_status: SubscriptionStatuses;
15
+ stripe_subscription_id: string;
16
+ session_price: number;
17
+ session_price_default: number;
18
+ session_price_type: SupportedCurrency;
19
+ session_price_uah?: number;
20
+ /**
21
+ * @deprecated
22
+ */
23
+ session_price_by_session_in_eur?: number;
24
+ /**
25
+ * @deprecated
26
+ */
27
+ session_price_by_session_in_uah?: number;
28
+ created_at: number;
29
+ product_id: string;
30
+ subscription_item_id: string;
31
+ discount: number;
32
+ cancel_at_period_end: boolean | null;
33
+ canceled_at?: number;
34
+ pause_collection?: boolean;
35
+ pause_used_at?: number | null;
36
+ number_of_sessions_per_week: number;
37
+ used_balance: number;
38
+ therapist: Specialist;
39
+ user: UserType;
40
+ next_payment_default_in_cents: number;
41
+ next_payment_original_in_cents: number;
42
+ exchange_rate_in_basis_points: number;
43
+ charge_currency: SupportedCurrency;
44
+ };
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { SpecialistProfileNotFoundProps } from './types';
3
+ declare const SpecialistProfileNotFound: React.FC<SpecialistProfileNotFoundProps>;
4
+ export default SpecialistProfileNotFound;
@@ -0,0 +1,7 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import SpecialistProfileNotFound from './SpecialistProfileNotFound';
3
+ declare const meta: Meta<typeof SpecialistProfileNotFound>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof SpecialistProfileNotFound>;
6
+ export declare const Default: Story;
7
+ export declare const WithAuth: Story;
@@ -0,0 +1 @@
1
+ export { default as SpecialistProfileNotFound } from './SpecialistProfileNotFound';
@@ -0,0 +1,6 @@
1
+ import { WithTranslation } from 'react-i18next';
2
+ export type SpecialistProfileNotFoundProps = {
3
+ className?: string;
4
+ t?: WithTranslation['t'];
5
+ isAuth?: boolean;
6
+ };
@@ -42,3 +42,4 @@ export * from './ShowMore';
42
42
  export * from './ReviewsSummary';
43
43
  export * from './Divider';
44
44
  export * from './EmptyList';
45
+ export * from './SpecialistProfileNotFound';
@@ -4,3 +4,5 @@ export { priceNormalize } from './priceNormalizer';
4
4
  export { newShade } from './newShade';
5
5
  export { replaceMarkdownWithReactElements } from './replaceMarkdownWithReactElements';
6
6
  export { getSignAgreementsTabs } from './getSignAgreementsTabs';
7
+ export * from './specialistStatus';
8
+ export * from './userCan';
@@ -0,0 +1,4 @@
1
+ import { Specialist } from '../types/specialistTypes';
2
+ export declare const isSpecialistActive: (specialist: Specialist) => boolean;
3
+ export declare const isSpecialistPublic: (specialist: Specialist) => boolean;
4
+ export declare const isSpecialistBlocked: (specialist: Specialist) => boolean;
@@ -0,0 +1,13 @@
1
+ import { AutoComplete } from '../types';
2
+ import { Consultation } from '../types/consultation';
3
+ import { Specialist } from '../types/specialistTypes';
4
+ import { Subscription } from '../types/subscription';
5
+ export type ClientCanAction = AutoComplete<'book_session'>;
6
+ export type ClientCanParams = {
7
+ action: ClientCanAction;
8
+ specialist: Specialist;
9
+ activeSubscription?: Subscription | null;
10
+ subscriptionAvailableBalance?: number;
11
+ consultations?: Consultation[];
12
+ };
13
+ export declare const isClientCan: ({ action, ...params }: ClientCanParams) => boolean;
package/dist/index.d.ts CHANGED
@@ -729,6 +729,7 @@ type ConsultationCardProps = {
729
729
  choose_day_and_time?: string;
730
730
  sign_up?: string;
731
731
  };
732
+ isBlockedText?: string;
732
733
  };
733
734
 
734
735
  declare const _default$16: React__default.NamedExoticComponent<ConsultationCardProps>;
@@ -788,6 +789,7 @@ type SpecialistData = {
788
789
  id: string;
789
790
  name: string;
790
791
  avatar?: string;
792
+ isBlockedText?: string;
791
793
  sessions: string;
792
794
  };
793
795
  type SignUpSessionModalProps = {
@@ -809,6 +811,7 @@ type ConsultationSpecialistCardProps = {
809
811
  onClick?: (id: string) => void;
810
812
  onSignUp?: (id: string) => void;
811
813
  signInBtnLabel: string;
814
+ isBlockedText?: string;
812
815
  };
813
816
  declare const _default$11: React__default.NamedExoticComponent<ConsultationSpecialistCardProps>;
814
817
 
@@ -2038,6 +2041,7 @@ type Specialist = {
2038
2041
  app_lang?: string;
2039
2042
  isFavourite?: boolean;
2040
2043
  subscription_discounts?: Record<string, number>;
2044
+ is_blocked?: boolean;
2041
2045
  };
2042
2046
 
2043
2047
  type SpecialistReview = {
@@ -2060,6 +2064,94 @@ type SpecialistReview = {
2060
2064
  review_status: 'on_review' | 'approved' | 'rejected';
2061
2065
  };
2062
2066
 
2067
+ type SubscriptionStatuses = 'incomplete' | 'incomplete_expired' | 'trialing' | 'active' | 'past_due' | 'canceled' | 'unpaid';
2068
+ type Subscription = {
2069
+ id: string;
2070
+ last_charge: number;
2071
+ period_start: number;
2072
+ period_end: number;
2073
+ therapist_id: string;
2074
+ user_id: string;
2075
+ session_count: number;
2076
+ subscription_interval_in_month: number;
2077
+ subscription_status: SubscriptionStatuses;
2078
+ stripe_subscription_id: string;
2079
+ session_price: number;
2080
+ session_price_default: number;
2081
+ session_price_type: SupportedCurrency;
2082
+ session_price_uah?: number;
2083
+ /**
2084
+ * @deprecated
2085
+ */
2086
+ session_price_by_session_in_eur?: number;
2087
+ /**
2088
+ * @deprecated
2089
+ */
2090
+ session_price_by_session_in_uah?: number;
2091
+ created_at: number;
2092
+ product_id: string;
2093
+ subscription_item_id: string;
2094
+ discount: number;
2095
+ cancel_at_period_end: boolean | null;
2096
+ canceled_at?: number;
2097
+ pause_collection?: boolean;
2098
+ pause_used_at?: number | null;
2099
+ number_of_sessions_per_week: number;
2100
+ used_balance: number;
2101
+ therapist: Specialist;
2102
+ user: UserType;
2103
+ next_payment_default_in_cents: number;
2104
+ next_payment_original_in_cents: number;
2105
+ exchange_rate_in_basis_points: number;
2106
+ charge_currency: SupportedCurrency;
2107
+ };
2108
+
2109
+ type Consultation = {
2110
+ id: string;
2111
+ consultation_time: {
2112
+ _seconds: number;
2113
+ nanoseconds: number;
2114
+ } | string;
2115
+ consultation_with: string;
2116
+ duration: number;
2117
+ exchange_rate: string;
2118
+ payment_date: {
2119
+ _seconds: number;
2120
+ nanoseconds: number;
2121
+ };
2122
+ payment_type?: string;
2123
+ price: number;
2124
+ price_uah: number;
2125
+ psychologist_avatar: string;
2126
+ psychologist_id: string;
2127
+ psychologist_name: string;
2128
+ psychologist_timezone: string;
2129
+ user_avatar: string;
2130
+ user_id: string;
2131
+ user_name: string;
2132
+ user_timezone: string;
2133
+ videochat_url: string;
2134
+ was_rescheduled: boolean;
2135
+ session_status?: 'client_showed' | 'client_not_showed';
2136
+ consultation_time_before_rescheduling?: {
2137
+ _seconds: number;
2138
+ nanoseconds: number;
2139
+ };
2140
+ therapist?: Specialist;
2141
+ client?: {
2142
+ specialist_client_contract_id?: string | null;
2143
+ specialist_client_contract_status?: ClientSpecialistContractStatusEnum | null;
2144
+ };
2145
+ applied_promotional_code?: string | null;
2146
+ auto_booking_status?: 'enable' | 'disable';
2147
+ subscription_id?: string | null;
2148
+ price_type?: string;
2149
+ price_default?: number;
2150
+ payment_intent_id?: string;
2151
+ };
2152
+
2153
+ type AutoComplete<T extends string> = T | (string & {});
2154
+
2063
2155
  declare enum ListBoxSelectionType {
2064
2156
  Checkbox = "checkbox",
2065
2157
  Radio = "radio"
@@ -2403,6 +2495,14 @@ type EmptyListProps = {
2403
2495
 
2404
2496
  declare const EmptyList: React__default.FC<EmptyListProps>;
2405
2497
 
2498
+ type SpecialistProfileNotFoundProps = {
2499
+ className?: string;
2500
+ t?: WithTranslation['t'];
2501
+ isAuth?: boolean;
2502
+ };
2503
+
2504
+ declare const SpecialistProfileNotFound: React__default.FC<SpecialistProfileNotFoundProps>;
2505
+
2406
2506
  declare enum appThemes {
2407
2507
  client = "client",
2408
2508
  specialist = "specialist"
@@ -3373,6 +3473,20 @@ type TabsReturnType = {
3373
3473
  */
3374
3474
  declare function getSignAgreementsTabs({ behavior, localeOrCountry, jsonTree, t, }: Tabs): TabsReturnType[];
3375
3475
 
3476
+ declare const isSpecialistActive: (specialist: Specialist) => boolean;
3477
+ declare const isSpecialistPublic: (specialist: Specialist) => boolean;
3478
+ declare const isSpecialistBlocked: (specialist: Specialist) => boolean;
3479
+
3480
+ type ClientCanAction = AutoComplete<'book_session'>;
3481
+ type ClientCanParams = {
3482
+ action: ClientCanAction;
3483
+ specialist: Specialist;
3484
+ activeSubscription?: Subscription | null;
3485
+ subscriptionAvailableBalance?: number;
3486
+ consultations?: Consultation[];
3487
+ };
3488
+ declare const isClientCan: ({ action, ...params }: ClientCanParams) => boolean;
3489
+
3376
3490
  type SpecialistCardWidgetProps = {
3377
3491
  t?: WithTranslation['t'];
3378
3492
  loading?: boolean;
@@ -3451,4 +3565,4 @@ type SpecialistPreviewListWidgetProps = {
3451
3565
 
3452
3566
  declare const SpecialistPreviewListWidget: React__default.FC<SpecialistPreviewListWidgetProps>;
3453
3567
 
3454
- export { AcceptAgreementFeature, Action, _default$I as AlertCard, AppFooter, _default$H as AppFooter_v2, AppHeader, AppHeaderPage as AppHeaderPageFeature, AppHeader_v2, AppNotSupportedFeature, ArchivedConsultationCard, Avatar, AvatarProps$1 as AvatarProps, _default$G as Avatar_v2, AvatarProps as Avatar_v2Props, BREAKPOINT_ICON_SIZE, _default$C as Badge, _default$W as BookingScheduleTime, _default$V as BookingSpecialistInfo, BreakPointPositionProps, BreakPointPositionResult, Button, Button_v2, COUNTRIES_MAPPER, Calendar, _default$j as CalendarPickerFeature, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$1f as ChatListItem, _default$1d as ChatListSkeleton, _default$1e as ChatMessage, ChatMessageSkeleton, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$Q as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingComponentProps, CircleRatingContent, CircleRatingContext, CircleRatingContextData, CircleRatingContextProps, CircleRatingDataProps, CircleRatingDataResult, CircleRatingLegendProps, CircleRatingProvider, CircleRatingRange, CircleRatingSize, ClientSpecialistContractStatusEnum, CollapsableText, ConditionRulesType, _default$16 as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$13 as ConsultationModal, _default$n as ConsultationPricingFeature, _default$11 as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentCard, ContentRendererProps, ContractStatusEnum, ContentTree as ContractTreeFeature, CountdownTimerFeature, CountryOfOriginModal, CurrencyLocaleMapper, CurrencySignByLocale, CustomButton, _default$R as CustomCheckbox, CustomRadioButton, _default$S as CustomSelect, _default$T as CustomTextarea, DatePicker, _default$$ as DaySlider, DayToRender, DividerProps, DrumListPicker, DynamicCommissionValue, _default$X as EducationCard, _default$1c as EmptyChatList, EmptyChatMessages, _default$14 as EmptyConsultations, EmptyList, EntryNotFound, EntryNotFoundProps, ErrorCardFeature, _default$N as Flag, FlagTypes, _default$E as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconAddModerator, IconApple, IconArrowDown, IconArrowLeft, IconArrowRight, IconArrowTopRight, IconAttachMoney, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$y as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCancel, IconCancelRounded, IconCapFilled, IconChat3d, IconChatFilled, IconChatOutline, IconCheck, IconCheckCircle, IconCheckSmall, IconCheckboxChecked, IconCheckboxUnchecked, IconClient, IconClientFilled, IconClose, IconCopy, IconCreditCard, IconDelete, IconDocument, IconDot, IconEcgHeart, IconEdit, IconEditCalendar, IconEmptyList, IconEventBusy, IconEye, IconEyeOff, IconGallery, IconGift, IconGoogle, IconHeart, IconHome, IconIdCard, IconInvisible, IconInvoice, IconLanguage, IconLeftArrow, IconLetter, IconLink, IconLock, IconLogout, IconManageAccounts, IconMindly, IconMindlyColored, IconMinus, IconMoreVertical, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPause, IconPersonAlert, IconPlay, IconPlus, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconProps$B as IconProps, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconReceiptLong, IconRenew, IconResume, IconSchema, IconSearch, IconSend, IconSettings, IconShare, IconSpinner, IconStar, IconStarFilled, IconStudyHat, IconStylus, IconSuccess, IconText, IconTime, IconTimeAdd, IconUnmute, IconUser, IconUserNotFound, IconVerifiedUser, IconVisible, IconWarning, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, InputSearch, _default$u as Item, _default$B as ItemCard, LabelArrowRedirect, LanguagesList, _default$1j as LetterAvatar, _default$O as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListButton, ListItemType, _default$r as ListItemWithColumns, _default$v as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$w as Loading, LouseConnect, _default$c as MarkdownContainerFeature, _default$s as MatchProgress, _default$1g as MediaPlayer, Modal, ModalCalendar, ModalSheet, NavigationBar, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, OnBoardingBaseScreenType, OnBoardingFlowType, _default$a as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, _default$7 as OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$9 as OnBoardingMultiSelectionScreenPreviewFeature, _default$6 as OnBoardingProgressFeature, _default$5 as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenBgType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenOptionType, OnBoardingScreenOptions, OnBoardingScreenStyleOptions, OnBoardingScreensType, OnBoardingSingleSelectScreenType, _default$8 as OnBoardingSingleSelectionScreenPreviewFeature, _default$b as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$i as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$k as PaymentSessionsList, _default$1i as PersonDateTimeCard, _default$D as Picture, _default$M as ProfileInformation, _default$Z as ProfileView, _default$P as ProgressBar, ProgressBarDashed, _default$x as ProgressBar_v2, ProgressRangeProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$z as Rating, RatingCircleWrapper, _default$10 as ReSchedule, ReScheduleSuccess, Refresher, ResponseFileType, ReviewCard, _default$h as ReviewCardFeature, ReviewListFeature, ReviewStatistics, ReviewSwiperSection, ReviewsCardFeatureSkeleton, ReviewsSummary, RoundButton, RowItemType, RowSelect, RowSelectProps, Rule, SIZES, _default$f as ScreenDrumPickerFormFeature, ScreenInput, _default$g as ScreenInputFormFeature, ScreenInputUpdateFeature, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$1h as SelectImpressionEmoji, SelectItemType, _default$d as SelectWithSearchFormFeature, Sex, ShareModalFeature, ShortCurrencySignByLocale, _default$q as ShowMore, _default$15 as SignUpSessionButton, _default$12 as SignUpSessionModal, SizeValues, Skeleton, _default$F as Skeleton_v2, _default$p as SlotsGrid, _default$o as SlotsGridItem, Specialist, _default$Y as SpecialistAbout, SpecialistAreaList as SpecialistAreaListFeature, SpecialistCard, SpecialistCardListWidget, _default$3 as SpecialistCardWidget, SpecialistConsultation, SpecialistConsultationPayment, _default as SpecialistDetailWidget, SpecialistEducation, _default$1a as SpecialistEducationCard, SpecialistEducationsFeature, SpecialistInfoColumnFeature, SpecialistLangs, _default$L as SpecialistMatch, SpecialistOrderType, SpecialistPaymentCardProps, _default$m as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$l as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default$1 as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$2 as SpecialistPaymentWidget, SpecialistPaymentWidgetType, SpecialistPreviewFeature, SpecialistPreviewListWidget, _default$19 as SpecialistProfileViewCard, SpecialistReview, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default$K as SpecialistStatistic, SpecialistStatisticsCard, SpecialistWorkDirections, Spinner, Spinner_v2, StarRating, StatisticsScroll, StatusTag, StripeSupportedCurrency, SuccessScreen, SuperSpecialist, SupportedCurrency, SupportedLangs, SwitchDeviceCard, TabBar, TabItem, Tabs$1 as Tabs, Tag, _default$e as TextAreaFormFeature, _default$U as TextInput, _default$4 as TextWithClampFeature, _default$1b as Textarea, _default$A as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$J as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UserType, UsersPsychologistScrollList, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$t as Video, _default$17 as VideoCallInfo, _default$18 as VideoPlayer, VideoProvider, _default$_ as WorkDirections, YourLocalTimeBlock, appThemes, decOfNum, formatByDigits, getCountryKeyByName, getProgressForBreakPoint, getSignAgreementsTabs, mergeRefs, newShade, priceNormalize, replaceMarkdownWithReactElements, roundToPrecision, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDomRef, useElementWidth, useEvent, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useToastContext, useVideoContext };
3568
+ export { AcceptAgreementFeature, Action, _default$I as AlertCard, AppFooter, _default$H as AppFooter_v2, AppHeader, AppHeaderPage as AppHeaderPageFeature, AppHeader_v2, AppNotSupportedFeature, ArchivedConsultationCard, AutoComplete, Avatar, AvatarProps$1 as AvatarProps, _default$G as Avatar_v2, AvatarProps as Avatar_v2Props, BREAKPOINT_ICON_SIZE, _default$C as Badge, _default$W as BookingScheduleTime, _default$V as BookingSpecialistInfo, BreakPointPositionProps, BreakPointPositionResult, Button, Button_v2, COUNTRIES_MAPPER, Calendar, _default$j as CalendarPickerFeature, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$1f as ChatListItem, _default$1d as ChatListSkeleton, _default$1e as ChatMessage, ChatMessageSkeleton, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$Q as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingComponentProps, CircleRatingContent, CircleRatingContext, CircleRatingContextData, CircleRatingContextProps, CircleRatingDataProps, CircleRatingDataResult, CircleRatingLegendProps, CircleRatingProvider, CircleRatingRange, CircleRatingSize, ClientCanAction, ClientCanParams, ClientSpecialistContractStatusEnum, CollapsableText, ConditionRulesType, Consultation, _default$16 as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$13 as ConsultationModal, _default$n as ConsultationPricingFeature, _default$11 as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentCard, ContentRendererProps, ContractStatusEnum, ContentTree as ContractTreeFeature, CountdownTimerFeature, CountryOfOriginModal, CurrencyLocaleMapper, CurrencySignByLocale, CustomButton, _default$R as CustomCheckbox, CustomRadioButton, _default$S as CustomSelect, _default$T as CustomTextarea, DatePicker, _default$$ as DaySlider, DayToRender, DividerProps, DrumListPicker, DynamicCommissionValue, _default$X as EducationCard, _default$1c as EmptyChatList, EmptyChatMessages, _default$14 as EmptyConsultations, EmptyList, EntryNotFound, EntryNotFoundProps, ErrorCardFeature, _default$N as Flag, FlagTypes, _default$E as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconAddModerator, IconApple, IconArrowDown, IconArrowLeft, IconArrowRight, IconArrowTopRight, IconAttachMoney, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$y as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCancel, IconCancelRounded, IconCapFilled, IconChat3d, IconChatFilled, IconChatOutline, IconCheck, IconCheckCircle, IconCheckSmall, IconCheckboxChecked, IconCheckboxUnchecked, IconClient, IconClientFilled, IconClose, IconCopy, IconCreditCard, IconDelete, IconDocument, IconDot, IconEcgHeart, IconEdit, IconEditCalendar, IconEmptyList, IconEventBusy, IconEye, IconEyeOff, IconGallery, IconGift, IconGoogle, IconHeart, IconHome, IconIdCard, IconInvisible, IconInvoice, IconLanguage, IconLeftArrow, IconLetter, IconLink, IconLock, IconLogout, IconManageAccounts, IconMindly, IconMindlyColored, IconMinus, IconMoreVertical, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPause, IconPersonAlert, IconPlay, IconPlus, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconProps$B as IconProps, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconReceiptLong, IconRenew, IconResume, IconSchema, IconSearch, IconSend, IconSettings, IconShare, IconSpinner, IconStar, IconStarFilled, IconStudyHat, IconStylus, IconSuccess, IconText, IconTime, IconTimeAdd, IconUnmute, IconUser, IconUserNotFound, IconVerifiedUser, IconVisible, IconWarning, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, InputSearch, _default$u as Item, _default$B as ItemCard, LabelArrowRedirect, LanguagesList, _default$1j as LetterAvatar, _default$O as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListButton, ListItemType, _default$r as ListItemWithColumns, _default$v as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$w as Loading, LouseConnect, _default$c as MarkdownContainerFeature, _default$s as MatchProgress, _default$1g as MediaPlayer, Modal, ModalCalendar, ModalSheet, NavigationBar, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, OnBoardingBaseScreenType, OnBoardingFlowType, _default$a as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, _default$7 as OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$9 as OnBoardingMultiSelectionScreenPreviewFeature, _default$6 as OnBoardingProgressFeature, _default$5 as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenBgType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenOptionType, OnBoardingScreenOptions, OnBoardingScreenStyleOptions, OnBoardingScreensType, OnBoardingSingleSelectScreenType, _default$8 as OnBoardingSingleSelectionScreenPreviewFeature, _default$b as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$i as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$k as PaymentSessionsList, _default$1i as PersonDateTimeCard, _default$D as Picture, _default$M as ProfileInformation, _default$Z as ProfileView, _default$P as ProgressBar, ProgressBarDashed, _default$x as ProgressBar_v2, ProgressRangeProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$z as Rating, RatingCircleWrapper, _default$10 as ReSchedule, ReScheduleSuccess, Refresher, ResponseFileType, ReviewCard, _default$h as ReviewCardFeature, ReviewListFeature, ReviewStatistics, ReviewSwiperSection, ReviewsCardFeatureSkeleton, ReviewsSummary, RoundButton, RowItemType, RowSelect, RowSelectProps, Rule, SIZES, _default$f as ScreenDrumPickerFormFeature, ScreenInput, _default$g as ScreenInputFormFeature, ScreenInputUpdateFeature, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$1h as SelectImpressionEmoji, SelectItemType, _default$d as SelectWithSearchFormFeature, Sex, ShareModalFeature, ShortCurrencySignByLocale, _default$q as ShowMore, _default$15 as SignUpSessionButton, _default$12 as SignUpSessionModal, SizeValues, Skeleton, _default$F as Skeleton_v2, _default$p as SlotsGrid, _default$o as SlotsGridItem, Specialist, _default$Y as SpecialistAbout, SpecialistAreaList as SpecialistAreaListFeature, SpecialistCard, SpecialistCardListWidget, _default$3 as SpecialistCardWidget, SpecialistConsultation, SpecialistConsultationPayment, _default as SpecialistDetailWidget, SpecialistEducation, _default$1a as SpecialistEducationCard, SpecialistEducationsFeature, SpecialistInfoColumnFeature, SpecialistLangs, _default$L as SpecialistMatch, SpecialistOrderType, SpecialistPaymentCardProps, _default$m as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$l as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default$1 as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$2 as SpecialistPaymentWidget, SpecialistPaymentWidgetType, SpecialistPreviewFeature, SpecialistPreviewListWidget, SpecialistProfileNotFound, _default$19 as SpecialistProfileViewCard, SpecialistReview, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default$K as SpecialistStatistic, SpecialistStatisticsCard, SpecialistWorkDirections, Spinner, Spinner_v2, StarRating, StatisticsScroll, StatusTag, StripeSupportedCurrency, Subscription, SubscriptionStatuses, SuccessScreen, SuperSpecialist, SupportedCurrency, SupportedLangs, SwitchDeviceCard, TabBar, TabItem, Tabs$1 as Tabs, Tag, _default$e as TextAreaFormFeature, _default$U as TextInput, _default$4 as TextWithClampFeature, _default$1b as Textarea, _default$A as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$J as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UserType, UsersPsychologistScrollList, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$t as Video, _default$17 as VideoCallInfo, _default$18 as VideoPlayer, VideoProvider, _default$_ as WorkDirections, YourLocalTimeBlock, appThemes, decOfNum, formatByDigits, getCountryKeyByName, getProgressForBreakPoint, getSignAgreementsTabs, isClientCan, isSpecialistActive, isSpecialistBlocked, isSpecialistPublic, mergeRefs, newShade, priceNormalize, replaceMarkdownWithReactElements, roundToPrecision, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDomRef, useElementWidth, useEvent, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useToastContext, useVideoContext };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindly/ui-components",
3
- "version": "5.92.0",
3
+ "version": "5.92.1",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "clean": "rimraf dist",