@mindly/ui-components 6.0.0-dev.1 → 6.0.0-dev.2

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.
@@ -4,5 +4,8 @@ type AppHeaderProps = {
4
4
  className?: string;
5
5
  toolbarClassName?: string;
6
6
  };
7
+ /**
8
+ * @deprecated
9
+ */
7
10
  declare const AppHeader: FC<AppHeaderProps>;
8
11
  export default AppHeader;
@@ -18,4 +18,7 @@ export type AvatarProps = {
18
18
  withBorder?: boolean;
19
19
  onClick?: () => void;
20
20
  };
21
+ /**
22
+ * @deprecated
23
+ */
21
24
  export declare const Avatar: FC<AvatarProps>;
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- export declare const ButtonStyled: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<Pick<import("@ionic/core/dist/types/components").JSX.IonButton, "form" | "strong" | "type" | "disabled" | "rel" | "color" | "buttonType" | "download" | "href" | "target" | "mode" | "size" | "fill" | "onIonBlur" | "onIonFocus" | "expand" | "routerAnimation" | "shape"> & {
2
+ export declare const ButtonStyled: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<Pick<import("@ionic/core/dist/types/components").JSX.IonButton, "form" | "strong" | "type" | "disabled" | "rel" | "color" | "buttonType" | "download" | "href" | "target" | "mode" | "onIonBlur" | "onIonFocus" | "size" | "fill" | "expand" | "routerAnimation" | "shape"> & {
3
3
  routerLink?: string | undefined;
4
4
  routerDirection?: "root" | "none" | "forward" | "back" | undefined;
5
5
  routerOptions?: import("@ionic/react").RouterOptions | undefined;
package/dist/index.d.ts CHANGED
@@ -68,19 +68,6 @@ declare const ContentCard: React__default.FC<ContentCardProps>;
68
68
  */
69
69
  declare const toast: (message: string, duration?: number) => Promise<void>;
70
70
 
71
- interface ArchivedConsultationCardProps {
72
- nameAndSurname: string;
73
- date: string;
74
- avatar: string;
75
- isFree?: boolean;
76
- /**
77
- * Consultation price
78
- */
79
- price: string;
80
- ['data-testid']?: string;
81
- }
82
- declare const ArchivedConsultationCard: React__default.FC<ArchivedConsultationCardProps>;
83
-
84
71
  interface DatePickerProps {
85
72
  type: 'date' | 'weekday';
86
73
  weekday?: string;
@@ -209,7 +196,7 @@ type LetterAvatarProps = {
209
196
  fontSize?: number;
210
197
  onClick?: () => void;
211
198
  };
212
- declare const _default$1j: React__default.NamedExoticComponent<LetterAvatarProps>;
199
+ declare const _default$1d: React__default.NamedExoticComponent<LetterAvatarProps>;
213
200
 
214
201
  type ImageWithFallbackProps = JSX.IntrinsicElements['img'] & {
215
202
  onErrorContent: React__default.ReactElement;
@@ -221,7 +208,7 @@ type PersonDateTimeCardProps = {
221
208
  name: string;
222
209
  dateTime: Date;
223
210
  };
224
- declare const _default$1i: React__default.NamedExoticComponent<PersonDateTimeCardProps>;
211
+ declare const _default$1c: React__default.NamedExoticComponent<PersonDateTimeCardProps>;
225
212
 
226
213
  type PsychologistProfileType = {
227
214
  id: string;
@@ -342,6 +329,9 @@ type AvatarProps$1 = {
342
329
  withBorder?: boolean;
343
330
  onClick?: () => void;
344
331
  };
332
+ /**
333
+ * @deprecated
334
+ */
345
335
  declare const Avatar: FC<AvatarProps$1>;
346
336
 
347
337
  type AppHeaderProps$1 = {
@@ -349,6 +339,9 @@ type AppHeaderProps$1 = {
349
339
  className?: string;
350
340
  toolbarClassName?: string;
351
341
  };
342
+ /**
343
+ * @deprecated
344
+ */
352
345
  declare const AppHeader: FC<AppHeaderProps$1>;
353
346
 
354
347
  type ContainerProps$1 = {
@@ -388,7 +381,7 @@ type SelectImpressionEmojiProps = {
388
381
  onChange?: (val: ImpressionEmojiEnum) => void;
389
382
  };
390
383
 
391
- declare const _default$1h: React__default.NamedExoticComponent<SelectImpressionEmojiProps>;
384
+ declare const _default$1b: React__default.NamedExoticComponent<SelectImpressionEmojiProps>;
392
385
 
393
386
  interface FooterForBookingProps {
394
387
  eventHandler: (props?: React__default.SyntheticEvent) => void;
@@ -404,24 +397,6 @@ type StatusTagPropsType = {
404
397
  } & HTMLAttributes<HTMLDivElement>;
405
398
  declare const StatusTag: React__default.FC<StatusTagPropsType>;
406
399
 
407
- interface Playable {
408
- play: (...args: any[]) => any;
409
- }
410
- type MediaPlayerProps<TCameraTrack extends Playable | undefined, TAudioTrack extends Playable | undefined> = {
411
- fullwidth?: boolean;
412
- cameraTrack?: TCameraTrack;
413
- audioTrack?: TAudioTrack;
414
- isVideoTrackMuted?: boolean;
415
- isAudioTrackMuted?: boolean;
416
- networkQuality?: number;
417
- fallbackAvatar?: string;
418
- fallbackAvatarDimensions?: number;
419
- fallbackName?: string;
420
- showControls: boolean;
421
- isScreenSharing?: boolean;
422
- } & HTMLAttributes<HTMLDivElement>;
423
- declare const _default$1g: <TCameraTrack extends Playable | undefined, TAudioTrack extends Playable | undefined>({ fullwidth, cameraTrack, audioTrack, isVideoTrackMuted, isAudioTrackMuted, networkQuality, fallbackAvatar, fallbackAvatarDimensions, fallbackName, showControls, isScreenSharing, ...props }: MediaPlayerProps<TCameraTrack, TAudioTrack>) => JSX.Element;
424
-
425
400
  type RoundButtonPropsType = {
426
401
  disabled?: boolean;
427
402
  onClickHandler?: () => void;
@@ -434,95 +409,6 @@ type RoundButtonPropsType = {
434
409
  };
435
410
  declare const RoundButton: React__default.FC<RoundButtonPropsType>;
436
411
 
437
- type ChatListItemProps = {
438
- name: string;
439
- message?: string;
440
- avatar?: string;
441
- avatarReplacer?: JSX.Element;
442
- newMessagesCount?: number;
443
- onClick?: () => void;
444
- status?: 'sent' | 'viewed';
445
- time?: number;
446
- timeZone?: string;
447
- lastMessageType?: 'text' | 'file' | 'image' | 'video' | 'system' | 'broadcast';
448
- locale?: string;
449
- isDisabled?: boolean;
450
- t?: WithTranslation['t'];
451
- };
452
- declare const _default$1f: React__default.NamedExoticComponent<ChatListItemProps>;
453
-
454
- type ChatMessageProps = {
455
- message: string | File;
456
- /**
457
- * This property is specifically for broadcast messages.
458
- * It allows a separate file (e.g., an image URL) to be associated with the broadcast message,
459
- * while the 'message' property contains the text content.
460
- */
461
- fileUrl?: string;
462
- position: 'left' | 'right';
463
- time: number;
464
- timeZone?: string;
465
- status?: 'loading' | 'sent' | 'viewed';
466
- messageType?: 'text' | 'file' | 'image' | 'video' | 'system' | 'broadcast';
467
- onFileClick?: (type: 'file' | 'image', link: string) => void;
468
- fileInfo?: {
469
- originalName: string;
470
- size: number;
471
- width?: number;
472
- height?: number;
473
- };
474
- locale?: string;
475
- buttons?: {
476
- text: string;
477
- onClickHandler: () => void;
478
- }[] | null;
479
- };
480
- declare const _default$1e: React__default.NamedExoticComponent<ChatMessageProps>;
481
-
482
- declare const ChatMessageSkeleton: () => JSX.Element;
483
-
484
- declare const _default$1d: React__default.MemoExoticComponent<() => JSX.Element>;
485
-
486
- type EmptyChatList = {
487
- title?: string;
488
- text?: string;
489
- withButton?: boolean;
490
- buttonTitle?: string;
491
- onClick?: () => void;
492
- };
493
- declare const EmptyChatList: FC<EmptyChatList>;
494
- declare const _default$1c: React__default.NamedExoticComponent<EmptyChatList>;
495
-
496
- type EmptyChatMessagesProps = {
497
- title?: string;
498
- text: string;
499
- };
500
- declare const EmptyChatMessages: FC<EmptyChatMessagesProps>;
501
-
502
- type FileInfoType = {
503
- originalName: string;
504
- size: number;
505
- width?: number;
506
- height?: number;
507
- };
508
- type TextareaProps = {
509
- onSend: (value: string) => void;
510
- defaultValue?: string;
511
- onFocus?: () => void;
512
- onBlur?: () => void;
513
- isOpen: boolean;
514
- maxLength: number;
515
- onError?: (message: string) => void;
516
- onFileSelect?: (file: File | null, type: 'file' | 'image' | 'video', fileInfo: FileInfoType) => void;
517
- t?: WithTranslation['t'];
518
- };
519
- declare const _default$1b: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TextareaProps & React__default.RefAttributes<HTMLIonFooterElement>>>;
520
-
521
- type LouseConnectProps = {
522
- onClick?: () => void;
523
- };
524
- declare const LouseConnect: FC<LouseConnectProps>;
525
-
526
412
  type UpdatesPopupPropsType = {
527
413
  text?: string;
528
414
  closeHandler?: () => void;
@@ -4073,20 +3959,6 @@ type SpecialistLangsProps = {
4073
3959
  };
4074
3960
  declare const SpecialistLangs: FC<SpecialistLangsProps>;
4075
3961
 
4076
- type ChangeLangModalProps = {
4077
- title: string;
4078
- selected: string;
4079
- isOpen: boolean;
4080
- onSelect: (lang: string) => void;
4081
- onModalClose?: () => void;
4082
- };
4083
- type LanguagesListProps = {
4084
- selected: string;
4085
- onSelect: (lang: string) => void;
4086
- };
4087
- declare const LanguagesList: FC<LanguagesListProps>;
4088
- declare const ChangeLangModal: FC<ChangeLangModalProps>;
4089
-
4090
3962
  type ProfileInformationProps = {
4091
3963
  specialistAvatar?: string;
4092
3964
  specialistFirstName?: string;
@@ -4391,4 +4263,4 @@ type SpecialistPreviewWidgetProps = {
4391
4263
 
4392
4264
  declare const _default: React__default.NamedExoticComponent<SpecialistPreviewWidgetProps>;
4393
4265
 
4394
- export { AcceptAgreementFeature, Action, _default$V as AlertCard, AllowFilterValueType, AppFooter, _default$U as AppFooter_v2, AppHeader, AppHeaderPage as AppHeaderPageFeature, AppHeader_v2, AppNotSupportedFeature, ArchivedConsultationCard, AutoComplete, Avatar, AvatarProps$1 as AvatarProps, _default$T as Avatar_v2, AvatarProps as Avatar_v2Props, BREAKPOINT_ICON_SIZE, _default$P as Badge, _default$Y as BookingScheduleTime, _default$X as BookingSpecialistInfo, BreakPointPositionProps, BreakPointPositionResult, Button, Button_v2, CAN_MANAGE_SESSION_TIME_HOURS, COUNTRIES_MAPPER, Calendar, _default$w as CalendarPickerFeature, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$1f as ChatListItem, _default$1d as ChatListSkeleton, _default$1e as ChatMessage, ChatMessageSkeleton, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$b as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingComponentProps, CircleRatingContent, CircleRatingContext, CircleRatingContextData, CircleRatingContextProps, CircleRatingDataProps, CircleRatingDataResult, CircleRatingLegendProps, CircleRatingProvider, CircleRatingRange, CircleRatingSize, ClientCanAction, ClientCanParams, ClientSpecialistContractStatusEnum, CollapsableText, ConditionRulesType, Consultation, _default$18 as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$15 as ConsultationModal, _default$A as ConsultationPricingFeature, _default$13 as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentCard, ContentRendererProps, ContractDataFeature, ContractStatusEnum, ContentTree as ContractTreeFeature, CountdownTimerFeature, CountryOfOriginModal, CurrencyLocaleMapper, CurrencySignByLocale, CustomButton, _default$c as CustomCheckbox, CustomRadioButton, _default$d as CustomSelect, _default$e as CustomTextarea, DatePicker, _default$11 as DaySlider, DayToRender, DividerProps, DropdownFeature, DrumListPicker, DynamicCommissionValue, _default$Z as EducationCard, _default$1c as EmptyChatList, EmptyChatMessages, EmptyChatModalFeature, _default$16 as EmptyConsultations, EmptyList, EmptySpecialistListFeature, EntryNotFound, EntryNotFoundProps, ErrorCardFeature, FilterFeatureProps, FilterItem, FilterItemBoolean, FilterItemChips, FilterItemRange, FilterItemSelect, FilterOption, FilterOptionValue, FilterValue, FiltersWidget, FiltersWidgetProps, FirstChatMessageModalFeature, _default$8 as Flag, FlagTypes, _default$R as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconAddModerator, IconAmEx, IconAppStoreRating, IconApple, IconApplePay, IconArrowDown, IconArrowLeft, IconArrowRange, IconArrowRight, IconArrowTopRight, IconAttachMoney, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$L as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCalendarNew, IconCalendarWithDot, IconCancel, IconCancelBold, IconCancelRounded, IconCapFilled, IconChart, IconChat, IconChat3d, IconChat3dSmaller, IconChatFilled, IconChatOutline, IconCheck, IconCheckCircle, IconCheckSmall, IconCheckboxChecked, IconCheckboxCheckedBold, 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, IconMoreVertical, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPaperPencil, IconPause, IconPaywall, IconPersonAlert, IconPlay, IconPlus, IconPoweredByStripe, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconProps$D as IconProps, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconRadioPartial, IconReceipt, IconReceiptLong, IconRenew, IconResume, IconReviewSessionSubscription, IconReviewSessionTrial, IconSchedule, IconSchema, IconSearch, IconSecure, IconSend, IconSettings, IconShare, IconSpecialistsEnded, IconSpinner, IconStar, IconStarFilled, IconStudyHat, IconStylus, IconSuccess, IconSwitch, IconText, IconTime, IconTimeAdd, IconUnmute, IconUser, IconUserNotFound, IconVerifiedUser, IconVisa, IconVisible, IconWarning, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, InputSearch, _default$H as Item, _default$O as ItemCard, LabelArrowRedirect, LanguagesList, _default$1j as LetterAvatar, _default$9 as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListButton, ListItemType, _default$E as ListItemWithColumns, _default$I as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$J as Loading, LocaleCurrencyMapper, LouseConnect, MapStatusContractToUIStatus, _default$p as MarkdownContainerFeature, _default$F as MatchProgress, _default$1g as MediaPlayer, MenuFeature, MindlyReview, MindlyReviewFeature, Modal, ModalCalendar, ModalSheet, NEAR_SESSION_TIME_SECONDS, NavigationBar, NewSpecialist, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, ONBOARDING_THEME_DEFAULT_COLORS, OnBoardingBaseScreenType, OnBoardingChartScreenPreviewFeature, OnBoardingChartScreenType, OnBoardingCompareScreenPreviewFeature, OnBoardingCompareScreenType, _default$h as OnBoardingConfirmScreenPreviewFeature, OnBoardingConfirmScreenType, _default$i as OnBoardingEmailScreenPreviewFeature, OnBoardingEmailScreenType, OnBoardingFlowType, OnBoardingGraphScreenPreviewFeature, OnBoardingGraphScreenType, _default$n as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$m as OnBoardingMultiSelectionScreenPreviewFeature, OnBoardingPaywallScreenPreviewFeature, OnBoardingPaywallScreenType, _default$k as OnBoardingProgressFeature, _default$j as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenAlertType, OnBoardingScreenBgType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenEmailType, OnBoardingScreenErrorsType, OnBoardingScreenOptionType, OnBoardingScreenOptionWithImageType, OnBoardingScreenOptionWithScaleType, OnBoardingScreenOptions, OnBoardingScreenPasswordType, OnBoardingScreenPrivacyType, OnBoardingScreenSkipButtonType, OnBoardingScreenStyleOptions, OnBoardingScreenTranslationsType, OnBoardingScreensType, OnBoardingSingleImageSelectScreenType, OnBoardingSingleScaleSelectScreenType, OnBoardingSingleSelectScreenType, _default$l as OnBoardingSingleSelectionScreenPreviewFeature, _default$o as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OnboardingVariant, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$v as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$x as PaymentSessionsList, _default$1i as PersonDateTimeCard, _default$Q as Picture, PoweredByStripeFeature, _default$7 as ProfileInformation, _default$$ as ProfileView, _default$a as ProgressBar, ProgressBarDashed, _default$K as ProgressBar_v2, ProgressRangeProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$M as Rating, RatingCircleWrapper, _default$12 as ReSchedule, ReScheduleSuccess, Refresher, ResponseFileType, ReviewCard, _default$u as ReviewCardFeature, ReviewListFeature, ReviewStatistics, ReviewSubscriptionSessionFeature, ReviewSubscriptionSessionFeatureProps, ReviewSwiperSection, ReviewTrialSessionFeature, ReviewTrialSessionFeatureProps, ReviewsCardFeatureSkeleton, ReviewsSummary, RoundButton, RowItemType, RowSelect, RowSelectProps, Rule, SIZES, SOON_SESSION_TIME_SECONDS, _default$s as ScreenDrumPickerFormFeature, ScreenInput, _default$t as ScreenInputFormFeature, ScreenInputUpdateFeature, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$1h as SelectImpressionEmoji, SelectItemType, _default$q as SelectWithSearchFormFeature, Session, SessionDetailWidget, SessionPaymentsWidget, SessionPreviewFeature, SessionReview$1 as SessionReview, SessionTime, SessionVariant, SessionsWidget as SessionsListWidget, SessionsWidgetProps, Sex, ShareModalFeature, ShortCurrencySignByLocale, ShortTranscriptionCurrencySignByLocale, _default$D as ShowMore, _default$17 as SignUpSessionButton, _default$14 as SignUpSessionModal, SizeValues, Skeleton, _default$S as Skeleton_v2, _default$C as SlotsGrid, _default$B as SlotsGridItem, SolidInput, Specialist, _default$_ as SpecialistAbout, SpecialistAreaList as SpecialistAreaListFeature, SpecialistCard, SpecialistCardListWidget, _default$4 as SpecialistCardWidget, SpecialistConsultation, SpecialistConsultationPayment, _default$1 as SpecialistDetailWidget, SpecialistDetailWidgetSkeleton, SpecialistEducation, SpecialistEducationsFeature, SpecialistInfoColumnFeature, SpecialistLangs, _default$6 as SpecialistMatch, SpecialistOrderType, SpecialistPaymentCardProps, _default$z as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$y as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default$2 as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$3 as SpecialistPaymentWidget, SpecialistPaymentWidgetType, SpecialistPreviewFeature, SpecialistPreviewListWidget, _default as SpecialistPreviewWidget, SpecialistProfileNotFound, SpecialistReview$1 as SpecialistReview, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default$5 as SpecialistStatistic, Spinner, Spinner_v2, StarRating, StatisticsScroll, StatusTag, StripeSupportedCurrency, Subscription, SubscriptionStatuses, SuccessScreen, SuperSpecialist, SupportedCurrency, SupportedLangs, SwitchDeviceCard, TabBar, TabItem, Tabs$1 as Tabs, TabsToolbarFeature, Tag, Tariff, TariffFeature, _default$r as TextAreaFormFeature, _default$f as TextInput, _default$g as TextWithClampFeature, _default$1b as Textarea, _default$N as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$W as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UserType, UsersPsychologistScrollList, VariantType, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$G as Video, _default$19 as VideoCallInfo, _default$1a as VideoPlayer, VideoProvider, _default$10 as WorkDirections, YourLocalTimeBlock, appThemes, canManageSession, currentUser, decOfNum, formatByDigits, getCountryKeyByName, getDateLocale, getFiltersQuery, getFiltersValues, getGMTOffset, getMappedFilterValue, getMonthNameInGenitive, getProgressForBreakPoint, getSessionTimeLabel, getSessionVariant, getSessionsByDay, getSessionsByMonth, getSessionsByYear, getSignAgreementsTabs, getStartSessionDate, getStartSessionTimestamp, isClientCan, isFilterSet, isNewSpecialist, isSpecialistActive, isSpecialistBlocked, isSpecialistPublic, isSuperSpecialist, listReviews, mergeRefs, mockSession, mockSessions, mockT, newShade, priceNormalize, replaceMarkdownWithReactElements, roundToPrecision, specialist, splitSessions, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDeepCompareEffect, useDeepUpdateEffect, useDomRef, useElementWidth, useEvent, useIsKeyBoardShown, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useToastContext, useUpdateEffect, useVideoContext };
4266
+ export { AcceptAgreementFeature, Action, _default$V as AlertCard, AllowFilterValueType, AppFooter, _default$U as AppFooter_v2, AppHeader, AppHeaderPage as AppHeaderPageFeature, AppHeader_v2, AppNotSupportedFeature, AutoComplete, Avatar, AvatarProps$1 as AvatarProps, _default$T as Avatar_v2, AvatarProps as Avatar_v2Props, BREAKPOINT_ICON_SIZE, _default$P as Badge, _default$Y as BookingScheduleTime, _default$X as BookingSpecialistInfo, BreakPointPositionProps, BreakPointPositionResult, Button, Button_v2, CAN_MANAGE_SESSION_TIME_HOURS, COUNTRIES_MAPPER, Calendar, _default$w as CalendarPickerFeature, CancelSession, CardModal, ChangeLanguageModal, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$b as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingComponentProps, CircleRatingContent, CircleRatingContext, CircleRatingContextData, CircleRatingContextProps, CircleRatingDataProps, CircleRatingDataResult, CircleRatingLegendProps, CircleRatingProvider, CircleRatingRange, CircleRatingSize, ClientCanAction, ClientCanParams, ClientSpecialistContractStatusEnum, CollapsableText, ConditionRulesType, Consultation, _default$18 as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$15 as ConsultationModal, _default$A as ConsultationPricingFeature, _default$13 as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentCard, ContentRendererProps, ContractDataFeature, ContractStatusEnum, ContentTree as ContractTreeFeature, CountdownTimerFeature, CountryOfOriginModal, CurrencyLocaleMapper, CurrencySignByLocale, CustomButton, _default$c as CustomCheckbox, CustomRadioButton, _default$d as CustomSelect, _default$e as CustomTextarea, DatePicker, _default$11 as DaySlider, DayToRender, DividerProps, DropdownFeature, DrumListPicker, DynamicCommissionValue, _default$Z as EducationCard, EmptyChatModalFeature, _default$16 as EmptyConsultations, EmptyList, EmptySpecialistListFeature, EntryNotFound, EntryNotFoundProps, ErrorCardFeature, FilterFeatureProps, FilterItem, FilterItemBoolean, FilterItemChips, FilterItemRange, FilterItemSelect, FilterOption, FilterOptionValue, FilterValue, FiltersWidget, FiltersWidgetProps, FirstChatMessageModalFeature, _default$8 as Flag, FlagTypes, _default$R as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconAddModerator, IconAmEx, IconAppStoreRating, IconApple, IconApplePay, IconArrowDown, IconArrowLeft, IconArrowRange, IconArrowRight, IconArrowTopRight, IconAttachMoney, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$L as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCalendarNew, IconCalendarWithDot, IconCancel, IconCancelBold, IconCancelRounded, IconCapFilled, IconChart, IconChat, IconChat3d, IconChat3dSmaller, IconChatFilled, IconChatOutline, IconCheck, IconCheckCircle, IconCheckSmall, IconCheckboxChecked, IconCheckboxCheckedBold, 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, IconMoreVertical, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPaperPencil, IconPause, IconPaywall, IconPersonAlert, IconPlay, IconPlus, IconPoweredByStripe, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconProps$D as IconProps, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconRadioPartial, IconReceipt, IconReceiptLong, IconRenew, IconResume, IconReviewSessionSubscription, IconReviewSessionTrial, IconSchedule, IconSchema, IconSearch, IconSecure, IconSend, IconSettings, IconShare, IconSpecialistsEnded, IconSpinner, IconStar, IconStarFilled, IconStudyHat, IconStylus, IconSuccess, IconSwitch, IconText, IconTime, IconTimeAdd, IconUnmute, IconUser, IconUserNotFound, IconVerifiedUser, IconVisa, IconVisible, IconWarning, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, InputSearch, _default$H as Item, _default$O as ItemCard, LabelArrowRedirect, _default$1d as LetterAvatar, _default$9 as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListButton, ListItemType, _default$E as ListItemWithColumns, _default$I as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$J as Loading, LocaleCurrencyMapper, MapStatusContractToUIStatus, _default$p as MarkdownContainerFeature, _default$F as MatchProgress, MenuFeature, MindlyReview, MindlyReviewFeature, Modal, ModalCalendar, ModalSheet, NEAR_SESSION_TIME_SECONDS, NavigationBar, NewSpecialist, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, ONBOARDING_THEME_DEFAULT_COLORS, OnBoardingBaseScreenType, OnBoardingChartScreenPreviewFeature, OnBoardingChartScreenType, OnBoardingCompareScreenPreviewFeature, OnBoardingCompareScreenType, _default$h as OnBoardingConfirmScreenPreviewFeature, OnBoardingConfirmScreenType, _default$i as OnBoardingEmailScreenPreviewFeature, OnBoardingEmailScreenType, OnBoardingFlowType, OnBoardingGraphScreenPreviewFeature, OnBoardingGraphScreenType, _default$n as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$m as OnBoardingMultiSelectionScreenPreviewFeature, OnBoardingPaywallScreenPreviewFeature, OnBoardingPaywallScreenType, _default$k as OnBoardingProgressFeature, _default$j as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenAlertType, OnBoardingScreenBgType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenEmailType, OnBoardingScreenErrorsType, OnBoardingScreenOptionType, OnBoardingScreenOptionWithImageType, OnBoardingScreenOptionWithScaleType, OnBoardingScreenOptions, OnBoardingScreenPasswordType, OnBoardingScreenPrivacyType, OnBoardingScreenSkipButtonType, OnBoardingScreenStyleOptions, OnBoardingScreenTranslationsType, OnBoardingScreensType, OnBoardingSingleImageSelectScreenType, OnBoardingSingleScaleSelectScreenType, OnBoardingSingleSelectScreenType, _default$l as OnBoardingSingleSelectionScreenPreviewFeature, _default$o as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OnboardingVariant, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$v as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$x as PaymentSessionsList, _default$1c as PersonDateTimeCard, _default$Q as Picture, PoweredByStripeFeature, _default$7 as ProfileInformation, _default$$ as ProfileView, _default$a as ProgressBar, ProgressBarDashed, _default$K as ProgressBar_v2, ProgressRangeProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$M as Rating, RatingCircleWrapper, _default$12 as ReSchedule, ReScheduleSuccess, Refresher, ResponseFileType, ReviewCard, _default$u as ReviewCardFeature, ReviewListFeature, ReviewStatistics, ReviewSubscriptionSessionFeature, ReviewSubscriptionSessionFeatureProps, ReviewSwiperSection, ReviewTrialSessionFeature, ReviewTrialSessionFeatureProps, ReviewsCardFeatureSkeleton, ReviewsSummary, RoundButton, RowItemType, RowSelect, RowSelectProps, Rule, SIZES, SOON_SESSION_TIME_SECONDS, _default$s as ScreenDrumPickerFormFeature, ScreenInput, _default$t as ScreenInputFormFeature, ScreenInputUpdateFeature, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$1b as SelectImpressionEmoji, SelectItemType, _default$q as SelectWithSearchFormFeature, Session, SessionDetailWidget, SessionPaymentsWidget, SessionPreviewFeature, SessionReview$1 as SessionReview, SessionTime, SessionVariant, SessionsWidget as SessionsListWidget, SessionsWidgetProps, Sex, ShareModalFeature, ShortCurrencySignByLocale, ShortTranscriptionCurrencySignByLocale, _default$D as ShowMore, _default$17 as SignUpSessionButton, _default$14 as SignUpSessionModal, SizeValues, Skeleton, _default$S as Skeleton_v2, _default$C as SlotsGrid, _default$B as SlotsGridItem, SolidInput, Specialist, _default$_ as SpecialistAbout, SpecialistAreaList as SpecialistAreaListFeature, SpecialistCard, SpecialistCardListWidget, _default$4 as SpecialistCardWidget, SpecialistConsultation, SpecialistConsultationPayment, _default$1 as SpecialistDetailWidget, SpecialistDetailWidgetSkeleton, SpecialistEducation, SpecialistEducationsFeature, SpecialistInfoColumnFeature, SpecialistLangs, _default$6 as SpecialistMatch, SpecialistOrderType, SpecialistPaymentCardProps, _default$z as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$y as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default$2 as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$3 as SpecialistPaymentWidget, SpecialistPaymentWidgetType, SpecialistPreviewFeature, SpecialistPreviewListWidget, _default as SpecialistPreviewWidget, SpecialistProfileNotFound, SpecialistReview$1 as SpecialistReview, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default$5 as SpecialistStatistic, Spinner, Spinner_v2, StarRating, StatisticsScroll, StatusTag, StripeSupportedCurrency, Subscription, SubscriptionStatuses, SuccessScreen, SuperSpecialist, SupportedCurrency, SupportedLangs, SwitchDeviceCard, TabBar, TabItem, Tabs$1 as Tabs, TabsToolbarFeature, Tag, Tariff, TariffFeature, _default$r as TextAreaFormFeature, _default$f as TextInput, _default$g as TextWithClampFeature, _default$N as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$W as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UserType, UsersPsychologistScrollList, VariantType, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$G as Video, _default$19 as VideoCallInfo, _default$1a as VideoPlayer, VideoProvider, _default$10 as WorkDirections, YourLocalTimeBlock, appThemes, canManageSession, currentUser, decOfNum, formatByDigits, getCountryKeyByName, getDateLocale, getFiltersQuery, getFiltersValues, getGMTOffset, getMappedFilterValue, getMonthNameInGenitive, getProgressForBreakPoint, getSessionTimeLabel, getSessionVariant, getSessionsByDay, getSessionsByMonth, getSessionsByYear, getSignAgreementsTabs, getStartSessionDate, getStartSessionTimestamp, isClientCan, isFilterSet, isNewSpecialist, isSpecialistActive, isSpecialistBlocked, isSpecialistPublic, isSuperSpecialist, listReviews, mergeRefs, mockSession, mockSessions, mockT, newShade, priceNormalize, replaceMarkdownWithReactElements, roundToPrecision, specialist, splitSessions, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDeepCompareEffect, useDeepUpdateEffect, useDomRef, useElementWidth, useEvent, useIsKeyBoardShown, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useToastContext, useUpdateEffect, useVideoContext };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindly/ui-components",
3
- "version": "6.0.0-dev.1",
3
+ "version": "6.0.0-dev.2",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "clean": "rimraf dist",