@mindly/ui-components 8.8.11 → 8.9.0

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 (26) hide show
  1. package/dist/cjs/index.js +4 -4
  2. package/dist/cjs/lib2/features/CompanionSessionMessagesFeature/CompanionSessionMessagesFeature.d.ts +13 -0
  3. package/dist/cjs/lib2/features/CompanionSessionMessagesFeature/CompanionSessionMessagesSkeletonFeature.d.ts +2 -0
  4. package/dist/cjs/lib2/features/CompanionSessionMessagesFeature/index.d.ts +1 -0
  5. package/dist/cjs/lib2/features/CompanionSessionsHistoryFeature/CompanionSessionsHistoryFeature.d.ts +13 -0
  6. package/dist/cjs/lib2/features/CompanionSessionsHistoryFeature/CompanionSessionsHistorySkeletonFeature.d.ts +2 -0
  7. package/dist/cjs/lib2/features/CompanionSessionsHistoryFeature/index.d.ts +1 -0
  8. package/dist/cjs/lib2/features/index.d.ts +2 -0
  9. package/dist/cjs/lib2/shared/types/aiCompanion.d.ts +36 -0
  10. package/dist/cjs/lib2/shared/types/index.d.ts +1 -0
  11. package/dist/cjs/lib2/shared/utils/aiCompanion.d.ts +5 -0
  12. package/dist/cjs/lib2/shared/utils/index.d.ts +1 -0
  13. package/dist/esm/index.js +4 -4
  14. package/dist/esm/lib2/features/CompanionSessionMessagesFeature/CompanionSessionMessagesFeature.d.ts +13 -0
  15. package/dist/esm/lib2/features/CompanionSessionMessagesFeature/CompanionSessionMessagesSkeletonFeature.d.ts +2 -0
  16. package/dist/esm/lib2/features/CompanionSessionMessagesFeature/index.d.ts +1 -0
  17. package/dist/esm/lib2/features/CompanionSessionsHistoryFeature/CompanionSessionsHistoryFeature.d.ts +13 -0
  18. package/dist/esm/lib2/features/CompanionSessionsHistoryFeature/CompanionSessionsHistorySkeletonFeature.d.ts +2 -0
  19. package/dist/esm/lib2/features/CompanionSessionsHistoryFeature/index.d.ts +1 -0
  20. package/dist/esm/lib2/features/index.d.ts +2 -0
  21. package/dist/esm/lib2/shared/types/aiCompanion.d.ts +36 -0
  22. package/dist/esm/lib2/shared/types/index.d.ts +1 -0
  23. package/dist/esm/lib2/shared/utils/aiCompanion.d.ts +5 -0
  24. package/dist/esm/lib2/shared/utils/index.d.ts +1 -0
  25. package/dist/index.d.ts +67 -1
  26. package/package.json +1 -1
@@ -0,0 +1,13 @@
1
+ import { AiCompanionSessionMessage, SupportedLocales } from '../../shared';
2
+ type CompanionSessionMessagesFeatureProps = {
3
+ messages: AiCompanionSessionMessage[];
4
+ status: 'idle' | 'loading' | 'succeeded' | 'failed';
5
+ userAvatar: string;
6
+ psychologistAvatar: string;
7
+ userLabel: string;
8
+ assistantLabel: string;
9
+ language: SupportedLocales;
10
+ scrollTopLabel: string;
11
+ };
12
+ declare const CompanionSessionMessagesFeature: ({ messages, status, userAvatar, psychologistAvatar, userLabel, assistantLabel, language, scrollTopLabel, }: CompanionSessionMessagesFeatureProps) => import("react/jsx-runtime").JSX.Element;
13
+ export default CompanionSessionMessagesFeature;
@@ -0,0 +1,2 @@
1
+ declare const CompanionSessionMessagesSkeletonFeature: () => import("react/jsx-runtime").JSX.Element;
2
+ export default CompanionSessionMessagesSkeletonFeature;
@@ -0,0 +1 @@
1
+ export { default as CompanionSessionMessagesFeature } from './CompanionSessionMessagesFeature';
@@ -0,0 +1,13 @@
1
+ import { AiCompanionSessionWeek, SupportedLocales } from '../../shared';
2
+ type CompanionSessionsHistoryFeatureProps = {
3
+ weeks: AiCompanionSessionWeek[];
4
+ hasNext: boolean;
5
+ status: 'idle' | 'loading' | 'succeeded' | 'failed';
6
+ weekLabels: Record<string, string>;
7
+ language: SupportedLocales;
8
+ loadMoreLabel: string;
9
+ handleSessionClick: (sessionId: string) => void;
10
+ handleLoadMore: () => void;
11
+ };
12
+ declare const CompanionSessionsHistoryFeature: ({ weeks, hasNext, status, weekLabels, language, loadMoreLabel, handleSessionClick, handleLoadMore, }: CompanionSessionsHistoryFeatureProps) => import("react/jsx-runtime").JSX.Element;
13
+ export default CompanionSessionsHistoryFeature;
@@ -0,0 +1,2 @@
1
+ declare const CompanionSessionsHistorySkeletonFeature: () => import("react/jsx-runtime").JSX.Element;
2
+ export default CompanionSessionsHistorySkeletonFeature;
@@ -0,0 +1 @@
1
+ export { default as CompanionSessionsHistoryFeature } from './CompanionSessionsHistoryFeature';
@@ -70,3 +70,5 @@ export * from './ScheduleFeature';
70
70
  export * from './SubscriptionCard';
71
71
  export * from './CancelSubscriptionFeature';
72
72
  export type { RecurringSessionsTimeSlots } from './RevampSubscriptionStepperFeature';
73
+ export * from './CompanionSessionMessagesFeature';
74
+ export * from './CompanionSessionsHistoryFeature';
@@ -0,0 +1,36 @@
1
+ export interface AiCompanionSessionItem {
2
+ id: string;
3
+ started_at: string;
4
+ session_summary: string;
5
+ session_title?: string;
6
+ session_review?: AiCompanionSessionReview;
7
+ }
8
+ export interface AiCompanionSessionReview {
9
+ created_at: string;
10
+ custom_message: string | null;
11
+ prepared_messages: string[] | null;
12
+ rate: number;
13
+ session_id: string;
14
+ user_id: string;
15
+ }
16
+ export interface AiCompanionSessionMessage {
17
+ id: string;
18
+ session_id: string;
19
+ role: string;
20
+ content: string;
21
+ timestamp: string;
22
+ }
23
+ export interface AiCompanionSessionWeek {
24
+ week_label: string;
25
+ sessions: AiCompanionSessionItem[];
26
+ }
27
+ export interface AiCompanionSessionsHistoryResponse {
28
+ firestore_user_id: string;
29
+ total_count: number;
30
+ total_weeks: number;
31
+ page: number;
32
+ page_size: number;
33
+ has_next: boolean;
34
+ weeks: AiCompanionSessionWeek[];
35
+ }
36
+ export type AiCompanionMessageRole = 'user' | 'assistant' | string;
@@ -15,3 +15,4 @@ export * from './subscription';
15
15
  export * from './session';
16
16
  export * from './tariff';
17
17
  export * from './schedule';
18
+ export * from './aiCompanion';
@@ -0,0 +1,5 @@
1
+ import { AiCompanionMessageRole, SupportedLocales } from '../../shared';
2
+ export declare const formatSessionDate: (startedAt: string, language: SupportedLocales) => string;
3
+ export declare const formatWeekLabel: (weekLabel: string, weekLabels: Record<string, string>, language: SupportedLocales) => string;
4
+ export declare const formatMessageTimestamp: (timestamp: string, language: SupportedLocales) => string;
5
+ export declare const roleLabel: (role: AiCompanionMessageRole, userLabel: string, assistantLabel: string) => string;
@@ -14,3 +14,4 @@ export { ONBOARDING_THEME_DEFAULT_COLORS } from './onboarding';
14
14
  export * from './globalAuthState';
15
15
  export * from './validation';
16
16
  export * from './timezone';
17
+ export * from './aiCompanion';
package/dist/index.d.ts CHANGED
@@ -1401,6 +1401,43 @@ type RecurringSession = {
1401
1401
  };
1402
1402
  };
1403
1403
 
1404
+ interface AiCompanionSessionItem {
1405
+ id: string;
1406
+ started_at: string;
1407
+ session_summary: string;
1408
+ session_title?: string;
1409
+ session_review?: AiCompanionSessionReview;
1410
+ }
1411
+ interface AiCompanionSessionReview {
1412
+ created_at: string;
1413
+ custom_message: string | null;
1414
+ prepared_messages: string[] | null;
1415
+ rate: number;
1416
+ session_id: string;
1417
+ user_id: string;
1418
+ }
1419
+ interface AiCompanionSessionMessage {
1420
+ id: string;
1421
+ session_id: string;
1422
+ role: string;
1423
+ content: string;
1424
+ timestamp: string;
1425
+ }
1426
+ interface AiCompanionSessionWeek {
1427
+ week_label: string;
1428
+ sessions: AiCompanionSessionItem[];
1429
+ }
1430
+ interface AiCompanionSessionsHistoryResponse {
1431
+ firestore_user_id: string;
1432
+ total_count: number;
1433
+ total_weeks: number;
1434
+ page: number;
1435
+ page_size: number;
1436
+ has_next: boolean;
1437
+ weeks: AiCompanionSessionWeek[];
1438
+ }
1439
+ type AiCompanionMessageRole = 'user' | 'assistant' | string;
1440
+
1404
1441
  type AutoComplete<T extends string> = T | (string & {});
1405
1442
 
1406
1443
  type ButtonProps$1 = {
@@ -4157,6 +4194,30 @@ type StepperBaseProps = {
4157
4194
 
4158
4195
  declare const _default$x: React__default.NamedExoticComponent<StepperBaseProps>;
4159
4196
 
4197
+ type CompanionSessionMessagesFeatureProps = {
4198
+ messages: AiCompanionSessionMessage[];
4199
+ status: 'idle' | 'loading' | 'succeeded' | 'failed';
4200
+ userAvatar: string;
4201
+ psychologistAvatar: string;
4202
+ userLabel: string;
4203
+ assistantLabel: string;
4204
+ language: SupportedLocales;
4205
+ scrollTopLabel: string;
4206
+ };
4207
+ declare const CompanionSessionMessagesFeature: ({ messages, status, userAvatar, psychologistAvatar, userLabel, assistantLabel, language, scrollTopLabel, }: CompanionSessionMessagesFeatureProps) => react_jsx_runtime.JSX.Element;
4208
+
4209
+ type CompanionSessionsHistoryFeatureProps = {
4210
+ weeks: AiCompanionSessionWeek[];
4211
+ hasNext: boolean;
4212
+ status: 'idle' | 'loading' | 'succeeded' | 'failed';
4213
+ weekLabels: Record<string, string>;
4214
+ language: SupportedLocales;
4215
+ loadMoreLabel: string;
4216
+ handleSessionClick: (sessionId: string) => void;
4217
+ handleLoadMore: () => void;
4218
+ };
4219
+ declare const CompanionSessionsHistoryFeature: ({ weeks, hasNext, status, weekLabels, language, loadMoreLabel, handleSessionClick, handleLoadMore, }: CompanionSessionsHistoryFeatureProps) => react_jsx_runtime.JSX.Element;
4220
+
4160
4221
  type SupportedCountryLocale = string;
4161
4222
  type Tabs = {
4162
4223
  behavior: 'tax-country' | 'profile-lang';
@@ -4404,6 +4465,11 @@ declare const isCommentValid: (comment: string, minLength?: number) => boolean;
4404
4465
 
4405
4466
  declare const localTimeZone: string;
4406
4467
 
4468
+ declare const formatSessionDate: (startedAt: string, language: SupportedLocales) => string;
4469
+ declare const formatWeekLabel: (weekLabel: string, weekLabels: Record<string, string>, language: SupportedLocales) => string;
4470
+ declare const formatMessageTimestamp: (timestamp: string, language: SupportedLocales) => string;
4471
+ declare const roleLabel: (role: AiCompanionMessageRole, userLabel: string, assistantLabel: string) => string;
4472
+
4407
4473
  declare const MIN_COMMENT_LENGTH = 3;
4408
4474
 
4409
4475
  type SpecialistCardWidgetProps = {
@@ -5356,4 +5422,4 @@ type RowSelectProps = {
5356
5422
 
5357
5423
  declare const RowSelect: FC<RowSelectProps>;
5358
5424
 
5359
- export { AcceptAgreementFeature, Action, ActiveClientsCapacityOnboardingModal, AdvisorAssistFeature, _default$1i as AlertCard, AllowFilterValueType, AppFooter, _default$1h as AppFooter_v2, AppHeader, AppHeaderPage as AppHeaderPageFeature, AppHeader_v2, AppNotSupportedFeature, AppViewType, AuthContext, AuthProvider, AutoComplete, Avatar, AvatarProps$1 as AvatarProps, _default$1g as Avatar_v2, AvatarProps as Avatar_v2Props, BREAKPOINT_ICON_SIZE, _default$1c as Badge, _default$c as BookingScheduleTime, _default$b as BookingSpecialistInfo, BreakPointPositionProps, BreakPointPositionResult, Button, Button_v2, CAN_MANAGE_SESSION_TIME_HOURS, COUNTRIES_MAPPER, CSSVarStyles, Calendar, _default$S as CalendarPickerFeature, CancelSession, _default$x as CancelSubscriptionFeature, CardModal, ChangeLanguageModal, ChartAreaFeature, ChartLines as ChartLinesFeature, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$6 as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingComponentProps, CircleRatingContent, CircleRatingContext, CircleRatingContextData, CircleRatingContextProps, CircleRatingDataProps, CircleRatingDataResult, CircleRatingLegendProps, CircleRatingProvider, CircleRatingRange, CircleRatingSize, ClientCanAction, ClientCanParams, ClientCard, ClientCardProps, ClientSpecialistContractStatusEnum, CollapsableText, ConditionRulesType, ConfirmWithCommentFeature, ConfirmWithCommentFeatureRef, Consultation, _default$o as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$l as ConsultationModal, _default$W as ConsultationPricingFeature, ConsultationQueueTypeEnum, _default$j as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentRendererProps, ContractDataFeature, ContractStatusEnum, ContentTree as ContractTreeFeature, CountdownTimerFeature, Counter, CounterProps, CountryOfOriginModal, CoupleTherapySheetModalFeature, CoupleTherapySheetModalFeatureProps, CurrencyLocaleMapper, CurrencySignByLocale, CustomButton, _default$7 as CustomCheckbox, CustomRadioButton, _default$8 as CustomSelect, _default$9 as CustomTextarea, DatePicker, DaySection, DaySectionKey, _default$h as DaySlider, DayTabItem, Divider, DividerProps, DropdownFeature, DrumListPicker, DynamicCommissionValue, _default$d as EducationCard, EmptyChatModalFeature, EmptyClientsList, _default$m as EmptyConsultations, EmptyList, EmptySpecialistListFeature, ErrorCardFeature, _default$_ as ExploreCard, ExploreCardData, ExploreCardProps, ExploreCardSwiperFeature, ExploreCardSwiperFeatureProps, FilterFeatureProps, FilterItem, FilterItemBoolean, FilterItemChips, FilterItemRange, FilterItemSelect, FilterOption, FilterOptionValue, FilterValue, FiltersWidget, FiltersWidgetProps, FirstChatMessageModalFeature, _default$3 as Flag, FlagTypes, _default$1e as Flag_v2, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, ISpecialistReview, IconAI, IconAccountBalance, IconAddCalendar, IconAddModerator, IconAdvisorAssistance, IconAlignHorizontalTextCenter, IconAlignHorizontalTextLeft, IconAlignHorizontalTextRight, IconAmEx, IconAppStoreRating, IconApple, IconApplePay, IconArrowDown, IconArrowLeft, IconArrowRange, IconArrowRight, IconArrowTopRight, IconArrowUp, IconAttachMoney, IconBeachAccess, IconBinoculars, IconBlock, IconBookmark, IconBookmarkOutlined, IconBusiness, _default$18 as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCalendarNew, IconCalendarWithDot, IconCancel, IconCancelBold, IconCancelRounded, IconCapFilled, IconChart, IconChat, IconChat3d, IconChat3dSmaller, IconChatFilled, IconChatOutline, IconCheck, IconCheckCircle, IconCheckSmall, IconCheckboxChecked, IconCheckboxCheckedBold, IconCheckboxThinUnchecked, IconCheckboxUnchecked, IconClient, IconClientFilled, IconClose, IconCompare, IconContract, IconCopy, IconCouple, IconCreditCard, IconCreditScore, IconDelete, IconDivercity, IconDivider, IconDocument, IconDot, IconDoubleArrow, IconEcgHeart, IconEdit, IconEditCalendar, IconEmptyList, IconEvening, IconEventBusy, IconExperience, IconEye, IconEyeOff, IconFilledHeart, IconFilters, IconGallery, IconGift, IconGiftNew, IconGlobe, IconGoogle, IconGoogleCalendar, IconGooglePay, IconHeart, IconHome, IconIdCard, IconInfo, IconInvisible, IconInvoice, IconKeyboard, IconLanguage, IconLeaderboard, IconLeftArrow, IconLetter, IconLightBubble, IconLink, IconLock, IconLogout, IconLoyalty, IconMaestro, IconManageAccounts, IconMastercard, IconMatching, IconMindly, IconMindlyColored, IconMindlyMini, IconMinus, IconMooving, IconMoreVertical, IconMorning, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPaperPencil, IconParallelArrows, IconPause, IconPaywall, IconPeople, IconPersonAlert, IconPhotoCamera, IconPlay, IconPlus, IconPoweredByStripe, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconProps$J as IconProps, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconRadioPartial, IconReceipt, IconReceiptLong, IconRecurring, IconRenew, IconReschedule, IconResume, IconReviewSessionSubscription, IconReviewSessionTrial, IconRoundInfo, IconRoundWarning, IconSchedule, IconSchema, IconSearch, IconSecure, IconSend, IconSettings, IconShare, IconSort, IconSparklingStars, IconSpecialistsEnded, IconSpinner, IconStar, IconStarFilled, IconStudyHat, IconStylus, IconSuccess, IconSun, IconSwitch, IconText, IconTime, IconTimeAdd, IconUnmute, IconUser, IconUserNotFound, IconVerifiedUser, IconVisa, IconVisible, IconVoiceMode, IconWarning, ImageInput, ImageWithFallback, Input, InputSearch, _default$14 as Item, _default$1b as ItemCard, LabelArrowRedirect, _default$1m as LetterAvatar, _default$4 as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListItemType, _default$11 as ListItemWithColumns, _default$15 as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$16 as Loading, LocaleCurrencyMapper, MIN_COMMENT_LENGTH, MapStatusContractToUIStatus, _default$L as MarkdownContainerFeature, _default$12 as MatchProgress, _default$1l as MediaPlayer, MenuFeature, MindlyReview, MindlyReviewFeature, ModalSheet, NEAR_SESSION_TIME_SECONDS, NewSpecialist, NoInternetConnection, NotSupportModal, NoticeCard, ONBOARDING_THEME_DEFAULT_COLORS, OnBoardingAreasOfWorkSelectScreenType, OnBoardingBaseScreenType, OnBoardingChartScreenPreviewFeature, OnBoardingChartScreenType, OnBoardingCompareScreenPreviewFeature, OnBoardingCompareScreenType, _default$D as OnBoardingConfirmScreenPreviewFeature, OnBoardingConfirmScreenType, _default$E as OnBoardingEmailScreenPreviewFeature, OnBoardingEmailScreenType, OnBoardingFlowType, OnBoardingGoalSelectScreenType, _default$C as OnBoardingGoalSelectionScreenPreviewFeature, OnBoardingGraphScreenPreviewFeature, OnBoardingGraphScreenType, _default$J as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$I as OnBoardingMultiSelectionScreenPreviewFeature, OnBoardingPaywallScreenPreviewFeature, OnBoardingPaywallScreenType, _default$G as OnBoardingProgressFeature, OnBoardingProgressSettingsScreenType, _default$F as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenAlertType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenEmailType, OnBoardingScreenErrorsType, OnBoardingScreenOptionType, OnBoardingScreenOptionWithScaleType, OnBoardingScreenOptions, OnBoardingScreenPasswordType, OnBoardingScreenPrivacyType, OnBoardingScreenProgressType, OnBoardingScreenSkipButtonType, OnBoardingScreenStyleOptions, OnBoardingScreenSubgoalButtonType, OnBoardingScreenTranslationsType, OnBoardingScreensType, OnBoardingSingleImageSelectScreenType, OnBoardingSingleRoundImageSelectScreenType, OnBoardingSingleScaleSelectScreenType, OnBoardingSingleSelectScreenType, _default$H as OnBoardingSingleSelectionScreenPreviewFeature, OnBoardingSpecializationSelectScreenType, _default$K as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OnBoardingThemeV2Type, OnboardingProgressTemplate, OnboardingVariant, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$R as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$T as PaymentSessionsList, PayoutCurrencySignByLocale, PayoutShortCurrencySignByLocale, _default$1d as Picture, PoweredByStripeFeature, _default$2 as ProfileInformation, _default$f as ProfileView, _default$5 as ProgressBar, ProgressBarDashed, _default$17 as ProgressBar_v2, _default$Z as ProgressCard, ProgressCardProps, ProgressRangeProps, _default$$ as PromptCard, PromptCardData, PromptCardProps, _default$z as PromptCardsFeature, PromptCardsFeatureProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$19 as Rating, RatingCircleVariant, RatingCircleWrapper, _default$i as ReSchedule, ReScheduleSuccess, RecurringSchedule, RecurringSession, RecurringSessionPreviewFeature, RecurringSessionsTimeSlots$1 as RecurringSessionsTimeSlots, Refresher, ReservedSessionManageModalFeature, ResponseFileType, _default$y as RevampSubscriptionStepperFeature, ReviewAiSessionFeature, ReviewAiSessionFeatureProps, ReviewCard, _default$Q as ReviewCardFeature, ReviewListFeature, ReviewStatistics, ReviewSubscriptionSessionFeature, ReviewSubscriptionSessionFeatureProps, ReviewSwiperSection, ReviewTrialSessionFeature, ReviewTrialSessionFeatureProps, ReviewsCardFeatureSkeleton, ReviewsSummary, RoundButton, RowItemType, RowSelect, RowSelectProps, Rule, SESSION_DURATION, SIZES, SOON_SESSION_TIME_SECONDS, Schedule$1 as Schedule, ScheduleDate, Schedule as ScheduleFeature, ScheduleProps, ScheduleSlot, _default$O as ScreenDrumPickerFormFeature, ScreenInput, _default$P as ScreenInputFormFeature, ScreenInputUpdateFeature, SectionHeading, Segment, SegmentColor, SegmentType, SelectItemType, _default$M as SelectWithSearchFormFeature, _default$A as SelectionListFeature, Session, SessionDetailWidget, SessionDetailWidgetSkeleton, SessionManageModalFeature, SessionManageTypeEnum, SessionPaymentsWidget, SessionPreviewFeature, SessionQueue, SessionReview$1 as SessionReview, SessionTime, SessionTypeEnum, SessionManageModalFeature$1 as SessionTypeSelectorModalFeature, SessionVariant, SessionsWidget as SessionsListWidget, SessionsWidgetProps, Sex, ShareModalFeature, ShortCurrencySignByLocale, ShortTranscriptionCurrencySignByLocale, _default$10 as ShowMore, _default$n as SignUpSessionButton, _default$k as SignUpSessionModal, SimpleTabs, SimpleTabsProps, SizeValues, Skeleton, _default$1f as Skeleton_v2, Slider, SlotViewModel, _default$Y as SlotsGrid, _default$X as SlotsGridItem, SolidInput, Sort, SortDirection, SortKey, SortValue, Specialist$1 as Specialist, _default$e as SpecialistAbout, SpecialistAreaList as SpecialistAreaListFeature, SpecialistCard, SpecialistCardListWidget, _default$w as SpecialistCardWidget, SpecialistCardSkeleton as SpecialistCardWithScheduleSkeleton, _default$q as SpecialistCardWithScheduleWidget, SpecialistConsultation, SpecialistConsultationPayment, _default$t as SpecialistDetailWidget, SpecialistDetailWidgetSkeleton, SpecialistDetailWithTabsSkeleton, _default$r as SpecialistDetailWithTabsWidget, SpecialistEducation, SpecialistEducationsFeature, SpecialistInfoColumnFeature, SpecialistLangs, _default$1 as SpecialistMatch, SpecialistOrderType, SpecialistPaymentCardProps, _default$V as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$U as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default$u as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$v as SpecialistPaymentWidget, SpecialistPaymentWidgetType, SpecialistPreviewFeature, SpecialistPreviewListWidget, _default$s as SpecialistPreviewWidget, SpecialistProfileNotFound, SpecialistProfileViewCounter, SpecialistRescheduleFeature, SpecialistReview$1 as SpecialistReview, SpecialistScheduleFeature, SpecialistScheduleProvider, SpecialistScheduleProviderRef, ScheduleSkeleton as SpecialistScheduleSkeletonFeature, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default as SpecialistStatistic, Spinner, Spinner_v2, StarRating, StatisticsScroll, StripeSupportedCurrency, Subscription, RedesignedSubscriptionСard as SubscriptionCard, SubscriptionStatuses, SuccessModalFeature, SuccessModalFeatureAction, SuccessScreen, SuperSpecialist, SupportedCurrency, SupportedLangs, SupportedLocales, SwitchDeviceCard, TabItem, Tabs$1 as Tabs, TabsFeature, TabsFeatureSkeleton, TabsToolbarFeature, Tag, Tariff, TariffFeature, _default$N as TextAreaFormFeature, _default$a as TextInput, _default$B as TextWithClampFeature, _default$1a as Textarea_v2, ThemeProvider, ThemeProviderProps, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$1j as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UserType, UserTypeEnum, VariantType, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$13 as Video, _default$p as VideoCallInfo, _default$1k as VideoPlayer, VideoProvider, ViewedClientsListFeature, ViewedClientsWidget, _default$g as WorkDirections, appThemes, canManageSession, capitalizeFirstLetter, currentUser, decOfNum, formatByDigits, getCountryKeyByName, getDateLocale, getFilterCount, getFiltersQuery, getFiltersValues, getGMTOffset, getMappedFilterValue, getMockSchedule, getMonthNameInGenitive, getProgressForBreakPoint, getRecurringSessionDate, getSessionTimeLabel, getSessionVariant, getSessionsByDay, getSessionsByMonth, getSessionsByYear, getSignAgreementsTabs, getSortFromKey, getSortKey, getStartSessionDate, getStartSessionTimestamp, getVisibleLength, globalAuthState, isClientCan, isCommentValid, isFilterSet, isNewSpecialist, isSpecialistActive, isSpecialistBlocked, isSpecialistPublic, isSuperSpecialist, listReviews, localTimeZone, mergeRefs, mockRecurringSession, mockSession, mockSessions, mockSubscriptionInFuture, mockSubscriptionInNearFuture, mockSubscriptions, mockT, newShade, payoutPriceNormalize, priceNormalize, replaceMarkdownWithReactElements, roundToPrecision, specialist, splitSessions, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDeepCompareEffect, useDeepUpdateEffect, useDelayMount, useDomRef, useElementWidth, useEvent, useIsKeyBoardShown, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useScrollToElement, useSpecialistScheduleContext, useStopPropagationEvent, useToastContext, useUpdateEffect, useVideoContext, withSpecialistScheduleContext };
5425
+ export { AcceptAgreementFeature, Action, ActiveClientsCapacityOnboardingModal, AdvisorAssistFeature, AiCompanionMessageRole, AiCompanionSessionItem, AiCompanionSessionMessage, AiCompanionSessionReview, AiCompanionSessionWeek, AiCompanionSessionsHistoryResponse, _default$1i as AlertCard, AllowFilterValueType, AppFooter, _default$1h as AppFooter_v2, AppHeader, AppHeaderPage as AppHeaderPageFeature, AppHeader_v2, AppNotSupportedFeature, AppViewType, AuthContext, AuthProvider, AutoComplete, Avatar, AvatarProps$1 as AvatarProps, _default$1g as Avatar_v2, AvatarProps as Avatar_v2Props, BREAKPOINT_ICON_SIZE, _default$1c as Badge, _default$c as BookingScheduleTime, _default$b as BookingSpecialistInfo, BreakPointPositionProps, BreakPointPositionResult, Button, Button_v2, CAN_MANAGE_SESSION_TIME_HOURS, COUNTRIES_MAPPER, CSSVarStyles, Calendar, _default$S as CalendarPickerFeature, CancelSession, _default$x as CancelSubscriptionFeature, CardModal, ChangeLanguageModal, ChartAreaFeature, ChartLines as ChartLinesFeature, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$6 as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingComponentProps, CircleRatingContent, CircleRatingContext, CircleRatingContextData, CircleRatingContextProps, CircleRatingDataProps, CircleRatingDataResult, CircleRatingLegendProps, CircleRatingProvider, CircleRatingRange, CircleRatingSize, ClientCanAction, ClientCanParams, ClientCard, ClientCardProps, ClientSpecialistContractStatusEnum, CollapsableText, CompanionSessionMessagesFeature, CompanionSessionsHistoryFeature, ConditionRulesType, ConfirmWithCommentFeature, ConfirmWithCommentFeatureRef, Consultation, _default$o as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$l as ConsultationModal, _default$W as ConsultationPricingFeature, ConsultationQueueTypeEnum, _default$j as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentRendererProps, ContractDataFeature, ContractStatusEnum, ContentTree as ContractTreeFeature, CountdownTimerFeature, Counter, CounterProps, CountryOfOriginModal, CoupleTherapySheetModalFeature, CoupleTherapySheetModalFeatureProps, CurrencyLocaleMapper, CurrencySignByLocale, CustomButton, _default$7 as CustomCheckbox, CustomRadioButton, _default$8 as CustomSelect, _default$9 as CustomTextarea, DatePicker, DaySection, DaySectionKey, _default$h as DaySlider, DayTabItem, Divider, DividerProps, DropdownFeature, DrumListPicker, DynamicCommissionValue, _default$d as EducationCard, EmptyChatModalFeature, EmptyClientsList, _default$m as EmptyConsultations, EmptyList, EmptySpecialistListFeature, ErrorCardFeature, _default$_ as ExploreCard, ExploreCardData, ExploreCardProps, ExploreCardSwiperFeature, ExploreCardSwiperFeatureProps, FilterFeatureProps, FilterItem, FilterItemBoolean, FilterItemChips, FilterItemRange, FilterItemSelect, FilterOption, FilterOptionValue, FilterValue, FiltersWidget, FiltersWidgetProps, FirstChatMessageModalFeature, _default$3 as Flag, FlagTypes, _default$1e as Flag_v2, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, ISpecialistReview, IconAI, IconAccountBalance, IconAddCalendar, IconAddModerator, IconAdvisorAssistance, IconAlignHorizontalTextCenter, IconAlignHorizontalTextLeft, IconAlignHorizontalTextRight, IconAmEx, IconAppStoreRating, IconApple, IconApplePay, IconArrowDown, IconArrowLeft, IconArrowRange, IconArrowRight, IconArrowTopRight, IconArrowUp, IconAttachMoney, IconBeachAccess, IconBinoculars, IconBlock, IconBookmark, IconBookmarkOutlined, IconBusiness, _default$18 as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCalendarNew, IconCalendarWithDot, IconCancel, IconCancelBold, IconCancelRounded, IconCapFilled, IconChart, IconChat, IconChat3d, IconChat3dSmaller, IconChatFilled, IconChatOutline, IconCheck, IconCheckCircle, IconCheckSmall, IconCheckboxChecked, IconCheckboxCheckedBold, IconCheckboxThinUnchecked, IconCheckboxUnchecked, IconClient, IconClientFilled, IconClose, IconCompare, IconContract, IconCopy, IconCouple, IconCreditCard, IconCreditScore, IconDelete, IconDivercity, IconDivider, IconDocument, IconDot, IconDoubleArrow, IconEcgHeart, IconEdit, IconEditCalendar, IconEmptyList, IconEvening, IconEventBusy, IconExperience, IconEye, IconEyeOff, IconFilledHeart, IconFilters, IconGallery, IconGift, IconGiftNew, IconGlobe, IconGoogle, IconGoogleCalendar, IconGooglePay, IconHeart, IconHome, IconIdCard, IconInfo, IconInvisible, IconInvoice, IconKeyboard, IconLanguage, IconLeaderboard, IconLeftArrow, IconLetter, IconLightBubble, IconLink, IconLock, IconLogout, IconLoyalty, IconMaestro, IconManageAccounts, IconMastercard, IconMatching, IconMindly, IconMindlyColored, IconMindlyMini, IconMinus, IconMooving, IconMoreVertical, IconMorning, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPaperPencil, IconParallelArrows, IconPause, IconPaywall, IconPeople, IconPersonAlert, IconPhotoCamera, IconPlay, IconPlus, IconPoweredByStripe, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconProps$J as IconProps, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconRadioPartial, IconReceipt, IconReceiptLong, IconRecurring, IconRenew, IconReschedule, IconResume, IconReviewSessionSubscription, IconReviewSessionTrial, IconRoundInfo, IconRoundWarning, IconSchedule, IconSchema, IconSearch, IconSecure, IconSend, IconSettings, IconShare, IconSort, IconSparklingStars, IconSpecialistsEnded, IconSpinner, IconStar, IconStarFilled, IconStudyHat, IconStylus, IconSuccess, IconSun, IconSwitch, IconText, IconTime, IconTimeAdd, IconUnmute, IconUser, IconUserNotFound, IconVerifiedUser, IconVisa, IconVisible, IconVoiceMode, IconWarning, ImageInput, ImageWithFallback, Input, InputSearch, _default$14 as Item, _default$1b as ItemCard, LabelArrowRedirect, _default$1m as LetterAvatar, _default$4 as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListItemType, _default$11 as ListItemWithColumns, _default$15 as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$16 as Loading, LocaleCurrencyMapper, MIN_COMMENT_LENGTH, MapStatusContractToUIStatus, _default$L as MarkdownContainerFeature, _default$12 as MatchProgress, _default$1l as MediaPlayer, MenuFeature, MindlyReview, MindlyReviewFeature, ModalSheet, NEAR_SESSION_TIME_SECONDS, NewSpecialist, NoInternetConnection, NotSupportModal, NoticeCard, ONBOARDING_THEME_DEFAULT_COLORS, OnBoardingAreasOfWorkSelectScreenType, OnBoardingBaseScreenType, OnBoardingChartScreenPreviewFeature, OnBoardingChartScreenType, OnBoardingCompareScreenPreviewFeature, OnBoardingCompareScreenType, _default$D as OnBoardingConfirmScreenPreviewFeature, OnBoardingConfirmScreenType, _default$E as OnBoardingEmailScreenPreviewFeature, OnBoardingEmailScreenType, OnBoardingFlowType, OnBoardingGoalSelectScreenType, _default$C as OnBoardingGoalSelectionScreenPreviewFeature, OnBoardingGraphScreenPreviewFeature, OnBoardingGraphScreenType, _default$J as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$I as OnBoardingMultiSelectionScreenPreviewFeature, OnBoardingPaywallScreenPreviewFeature, OnBoardingPaywallScreenType, _default$G as OnBoardingProgressFeature, OnBoardingProgressSettingsScreenType, _default$F as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenAlertType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenEmailType, OnBoardingScreenErrorsType, OnBoardingScreenOptionType, OnBoardingScreenOptionWithScaleType, OnBoardingScreenOptions, OnBoardingScreenPasswordType, OnBoardingScreenPrivacyType, OnBoardingScreenProgressType, OnBoardingScreenSkipButtonType, OnBoardingScreenStyleOptions, OnBoardingScreenSubgoalButtonType, OnBoardingScreenTranslationsType, OnBoardingScreensType, OnBoardingSingleImageSelectScreenType, OnBoardingSingleRoundImageSelectScreenType, OnBoardingSingleScaleSelectScreenType, OnBoardingSingleSelectScreenType, _default$H as OnBoardingSingleSelectionScreenPreviewFeature, OnBoardingSpecializationSelectScreenType, _default$K as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OnBoardingThemeV2Type, OnboardingProgressTemplate, OnboardingVariant, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$R as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$T as PaymentSessionsList, PayoutCurrencySignByLocale, PayoutShortCurrencySignByLocale, _default$1d as Picture, PoweredByStripeFeature, _default$2 as ProfileInformation, _default$f as ProfileView, _default$5 as ProgressBar, ProgressBarDashed, _default$17 as ProgressBar_v2, _default$Z as ProgressCard, ProgressCardProps, ProgressRangeProps, _default$$ as PromptCard, PromptCardData, PromptCardProps, _default$z as PromptCardsFeature, PromptCardsFeatureProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$19 as Rating, RatingCircleVariant, RatingCircleWrapper, _default$i as ReSchedule, ReScheduleSuccess, RecurringSchedule, RecurringSession, RecurringSessionPreviewFeature, RecurringSessionsTimeSlots$1 as RecurringSessionsTimeSlots, Refresher, ReservedSessionManageModalFeature, ResponseFileType, _default$y as RevampSubscriptionStepperFeature, ReviewAiSessionFeature, ReviewAiSessionFeatureProps, ReviewCard, _default$Q as ReviewCardFeature, ReviewListFeature, ReviewStatistics, ReviewSubscriptionSessionFeature, ReviewSubscriptionSessionFeatureProps, ReviewSwiperSection, ReviewTrialSessionFeature, ReviewTrialSessionFeatureProps, ReviewsCardFeatureSkeleton, ReviewsSummary, RoundButton, RowItemType, RowSelect, RowSelectProps, Rule, SESSION_DURATION, SIZES, SOON_SESSION_TIME_SECONDS, Schedule$1 as Schedule, ScheduleDate, Schedule as ScheduleFeature, ScheduleProps, ScheduleSlot, _default$O as ScreenDrumPickerFormFeature, ScreenInput, _default$P as ScreenInputFormFeature, ScreenInputUpdateFeature, SectionHeading, Segment, SegmentColor, SegmentType, SelectItemType, _default$M as SelectWithSearchFormFeature, _default$A as SelectionListFeature, Session, SessionDetailWidget, SessionDetailWidgetSkeleton, SessionManageModalFeature, SessionManageTypeEnum, SessionPaymentsWidget, SessionPreviewFeature, SessionQueue, SessionReview$1 as SessionReview, SessionTime, SessionTypeEnum, SessionManageModalFeature$1 as SessionTypeSelectorModalFeature, SessionVariant, SessionsWidget as SessionsListWidget, SessionsWidgetProps, Sex, ShareModalFeature, ShortCurrencySignByLocale, ShortTranscriptionCurrencySignByLocale, _default$10 as ShowMore, _default$n as SignUpSessionButton, _default$k as SignUpSessionModal, SimpleTabs, SimpleTabsProps, SizeValues, Skeleton, _default$1f as Skeleton_v2, Slider, SlotViewModel, _default$Y as SlotsGrid, _default$X as SlotsGridItem, SolidInput, Sort, SortDirection, SortKey, SortValue, Specialist$1 as Specialist, _default$e as SpecialistAbout, SpecialistAreaList as SpecialistAreaListFeature, SpecialistCard, SpecialistCardListWidget, _default$w as SpecialistCardWidget, SpecialistCardSkeleton as SpecialistCardWithScheduleSkeleton, _default$q as SpecialistCardWithScheduleWidget, SpecialistConsultation, SpecialistConsultationPayment, _default$t as SpecialistDetailWidget, SpecialistDetailWidgetSkeleton, SpecialistDetailWithTabsSkeleton, _default$r as SpecialistDetailWithTabsWidget, SpecialistEducation, SpecialistEducationsFeature, SpecialistInfoColumnFeature, SpecialistLangs, _default$1 as SpecialistMatch, SpecialistOrderType, SpecialistPaymentCardProps, _default$V as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$U as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default$u as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$v as SpecialistPaymentWidget, SpecialistPaymentWidgetType, SpecialistPreviewFeature, SpecialistPreviewListWidget, _default$s as SpecialistPreviewWidget, SpecialistProfileNotFound, SpecialistProfileViewCounter, SpecialistRescheduleFeature, SpecialistReview$1 as SpecialistReview, SpecialistScheduleFeature, SpecialistScheduleProvider, SpecialistScheduleProviderRef, ScheduleSkeleton as SpecialistScheduleSkeletonFeature, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default as SpecialistStatistic, Spinner, Spinner_v2, StarRating, StatisticsScroll, StripeSupportedCurrency, Subscription, RedesignedSubscriptionСard as SubscriptionCard, SubscriptionStatuses, SuccessModalFeature, SuccessModalFeatureAction, SuccessScreen, SuperSpecialist, SupportedCurrency, SupportedLangs, SupportedLocales, SwitchDeviceCard, TabItem, Tabs$1 as Tabs, TabsFeature, TabsFeatureSkeleton, TabsToolbarFeature, Tag, Tariff, TariffFeature, _default$N as TextAreaFormFeature, _default$a as TextInput, _default$B as TextWithClampFeature, _default$1a as Textarea_v2, ThemeProvider, ThemeProviderProps, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$1j as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UserType, UserTypeEnum, VariantType, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$13 as Video, _default$p as VideoCallInfo, _default$1k as VideoPlayer, VideoProvider, ViewedClientsListFeature, ViewedClientsWidget, _default$g as WorkDirections, appThemes, canManageSession, capitalizeFirstLetter, currentUser, decOfNum, formatByDigits, formatMessageTimestamp, formatSessionDate, formatWeekLabel, getCountryKeyByName, getDateLocale, getFilterCount, getFiltersQuery, getFiltersValues, getGMTOffset, getMappedFilterValue, getMockSchedule, getMonthNameInGenitive, getProgressForBreakPoint, getRecurringSessionDate, getSessionTimeLabel, getSessionVariant, getSessionsByDay, getSessionsByMonth, getSessionsByYear, getSignAgreementsTabs, getSortFromKey, getSortKey, getStartSessionDate, getStartSessionTimestamp, getVisibleLength, globalAuthState, isClientCan, isCommentValid, isFilterSet, isNewSpecialist, isSpecialistActive, isSpecialistBlocked, isSpecialistPublic, isSuperSpecialist, listReviews, localTimeZone, mergeRefs, mockRecurringSession, mockSession, mockSessions, mockSubscriptionInFuture, mockSubscriptionInNearFuture, mockSubscriptions, mockT, newShade, payoutPriceNormalize, priceNormalize, replaceMarkdownWithReactElements, roleLabel, roundToPrecision, specialist, splitSessions, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDeepCompareEffect, useDeepUpdateEffect, useDelayMount, useDomRef, useElementWidth, useEvent, useIsKeyBoardShown, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useScrollToElement, useSpecialistScheduleContext, useStopPropagationEvent, useToastContext, useUpdateEffect, useVideoContext, withSpecialistScheduleContext };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindly/ui-components",
3
- "version": "8.8.11",
3
+ "version": "8.9.0",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "clean": "rimraf dist",