@mindly/ui-components 5.102.7 → 5.103.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.
- package/dist/cjs/index.js +6 -6
- package/dist/cjs/lib2/features/MindlyReviewFeature/MindlyReviewFeature.d.ts +3 -0
- package/dist/cjs/lib2/features/MobilePickerFeature/MobilePickerFeature.d.ts +7 -0
- package/dist/cjs/lib2/features/MobilePickerFeature/index.d.ts +1 -0
- package/dist/cjs/lib2/shared/assets/icons/IconPaperPencil.d.ts +7 -0
- package/dist/cjs/lib2/shared/assets/icons/index.d.ts +1 -0
- package/dist/cjs/lib2/shared/ui/Flag_v2/flags/Pl.d.ts +2 -0
- package/dist/cjs/lib2/shared/ui/Flag_v2/flags/Uk.d.ts +2 -0
- package/dist/cjs/lib2/shared/ui/Input/Input.d.ts +4 -0
- package/dist/cjs/lib2/shared/ui/Input/types.d.ts +4 -0
- package/dist/esm/index.js +6 -6
- package/dist/esm/lib2/features/MindlyReviewFeature/MindlyReviewFeature.d.ts +3 -0
- package/dist/esm/lib2/features/MobilePickerFeature/MobilePickerFeature.d.ts +7 -0
- package/dist/esm/lib2/features/MobilePickerFeature/index.d.ts +1 -0
- package/dist/esm/lib2/shared/assets/icons/IconPaperPencil.d.ts +7 -0
- package/dist/esm/lib2/shared/assets/icons/index.d.ts +1 -0
- package/dist/esm/lib2/shared/ui/Flag_v2/flags/Pl.d.ts +2 -0
- package/dist/esm/lib2/shared/ui/Flag_v2/flags/Uk.d.ts +2 -0
- package/dist/esm/lib2/shared/ui/Input/Input.d.ts +4 -0
- package/dist/esm/lib2/shared/ui/Input/types.d.ts +4 -0
- package/dist/index.d.ts +11 -1
- package/package.json +8 -8
|
@@ -5,6 +5,8 @@ export type MindlyReviewFeatureProps = {
|
|
|
5
5
|
locale: string;
|
|
6
6
|
linkMapper: Record<string, string>;
|
|
7
7
|
isCommentRequired?: boolean;
|
|
8
|
+
isInterviewEnabled?: boolean;
|
|
9
|
+
isInterviewNewVersion?: boolean;
|
|
8
10
|
onModalAppeared?: () => void;
|
|
9
11
|
onRateSubmited: (rate: number) => void;
|
|
10
12
|
onCommentModalAppeared?: () => void;
|
|
@@ -12,6 +14,7 @@ export type MindlyReviewFeatureProps = {
|
|
|
12
14
|
onTriggerStoreReview?: () => void;
|
|
13
15
|
onPromocodeModalAppeared?: () => void;
|
|
14
16
|
onInterviewSubmited?: () => void;
|
|
17
|
+
onModalClose?: () => void;
|
|
15
18
|
t?: WithTranslation['t'];
|
|
16
19
|
};
|
|
17
20
|
declare const MindlyReviewFeature: React.FC<MindlyReviewFeatureProps>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
type Props = {
|
|
2
|
+
selections: Record<string, string[]>;
|
|
3
|
+
defaults?: Record<string, string>;
|
|
4
|
+
onChange(value: Record<string, string>): void;
|
|
5
|
+
};
|
|
6
|
+
declare const MobilePickerFeature: ({ selections, defaults, onChange, }: Props) => JSX.Element;
|
|
7
|
+
export default MobilePickerFeature;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as MobilePickerFeature } from './MobilePickerFeature';
|
|
@@ -40,6 +40,7 @@ export * from './IconGiftNew';
|
|
|
40
40
|
export * from './IconCreditCard';
|
|
41
41
|
export * from './IconQuestion';
|
|
42
42
|
export * from './IconPaper';
|
|
43
|
+
export * from './IconPaperPencil';
|
|
43
44
|
export * from './IconChat3d';
|
|
44
45
|
export * from './IconChat3dSmaller';
|
|
45
46
|
export * from './IconNotficationMuted';
|
package/dist/index.d.ts
CHANGED
|
@@ -2549,6 +2549,13 @@ declare const IconQuestion: React$1.FC<React$1.SVGAttributes<SVGElement>>;
|
|
|
2549
2549
|
|
|
2550
2550
|
declare const IconPaper: React$1.FC<React$1.SVGAttributes<SVGElement>>;
|
|
2551
2551
|
|
|
2552
|
+
declare const IconPaperPencil: React$1.FC<React$1.SVGAttributes<SVGElement> & {
|
|
2553
|
+
primaryColor?: string;
|
|
2554
|
+
secondaryColor?: string;
|
|
2555
|
+
primaryLightColor?: string;
|
|
2556
|
+
backgroundColor?: string;
|
|
2557
|
+
}>;
|
|
2558
|
+
|
|
2552
2559
|
declare const IconChat3d: (props: SVGProps<SVGSVGElement>) => JSX.Element;
|
|
2553
2560
|
|
|
2554
2561
|
declare const IconChat3dSmaller: (props: SVGProps<SVGSVGElement>) => JSX.Element;
|
|
@@ -3531,6 +3538,8 @@ type MindlyReviewFeatureProps = {
|
|
|
3531
3538
|
locale: string;
|
|
3532
3539
|
linkMapper: Record<string, string>;
|
|
3533
3540
|
isCommentRequired?: boolean;
|
|
3541
|
+
isInterviewEnabled?: boolean;
|
|
3542
|
+
isInterviewNewVersion?: boolean;
|
|
3534
3543
|
onModalAppeared?: () => void;
|
|
3535
3544
|
onRateSubmited: (rate: number) => void;
|
|
3536
3545
|
onCommentModalAppeared?: () => void;
|
|
@@ -3538,6 +3547,7 @@ type MindlyReviewFeatureProps = {
|
|
|
3538
3547
|
onTriggerStoreReview?: () => void;
|
|
3539
3548
|
onPromocodeModalAppeared?: () => void;
|
|
3540
3549
|
onInterviewSubmited?: () => void;
|
|
3550
|
+
onModalClose?: () => void;
|
|
3541
3551
|
t?: WithTranslation['t'];
|
|
3542
3552
|
};
|
|
3543
3553
|
declare const MindlyReviewFeature: React__default.FC<MindlyReviewFeatureProps>;
|
|
@@ -4105,4 +4115,4 @@ type SessionPaymentsWidgetProps = {
|
|
|
4105
4115
|
|
|
4106
4116
|
declare const SessionPaymentsWidget: React__default.FC<SessionPaymentsWidgetProps>;
|
|
4107
4117
|
|
|
4108
|
-
export { AcceptAgreementFeature, Action, _default$U as AlertCard, AllowFilterValueType, AppFooter, _default$T as AppFooter_v2, AppHeader, AppHeaderPage as AppHeaderPageFeature, AppHeader_v2, AppNotSupportedFeature, ArchivedConsultationCard, AutoComplete, Avatar, AvatarProps$1 as AvatarProps, _default$S as Avatar_v2, AvatarProps as Avatar_v2Props, BREAKPOINT_ICON_SIZE, _default$O as Badge, _default$X as BookingScheduleTime, _default$W as BookingSpecialistInfo, BreakPointPositionProps, BreakPointPositionResult, Button, Button_v2, CAN_MANAGE_SESSION_TIME_HOURS, COUNTRIES_MAPPER, Calendar, _default$v as CalendarPickerFeature, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$1g as ChatListItem, _default$1e as ChatListSkeleton, _default$1f as ChatMessage, ChatMessageSkeleton, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$a as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingComponentProps, CircleRatingContent, CircleRatingContext, CircleRatingContextData, CircleRatingContextProps, CircleRatingDataProps, CircleRatingDataResult, CircleRatingLegendProps, CircleRatingProvider, CircleRatingRange, CircleRatingSize, ClientCanAction, ClientCanParams, ClientSpecialistContractStatusEnum, CollapsableText, ConditionRulesType, Consultation, _default$17 as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$14 as ConsultationModal, _default$z as ConsultationPricingFeature, _default$12 as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentCard, ContentRendererProps, ContractDataFeature, ContractStatusEnum, ContentTree as ContractTreeFeature, CountdownTimerFeature, CountryOfOriginModal, CurrencyLocaleMapper, CurrencySignByLocale, CustomButton, _default$b as CustomCheckbox, CustomRadioButton, _default$c as CustomSelect, _default$d as CustomTextarea, DatePicker, _default$10 as DaySlider, DayToRender, DividerProps, DrumListPicker, DynamicCommissionValue, _default$Y as EducationCard, _default$1d as EmptyChatList, EmptyChatMessages, EmptyChatModalFeature, _default$15 as EmptyConsultations, EmptyList, EmptySpecialistListFeature, EntryNotFound, EntryNotFoundProps, ErrorCardFeature, FilterFeatureProps, FilterItem, FilterItemBoolean, FilterItemChips, FilterItemRange, FilterItemSelect, FilterOption, FilterOptionValue, FilterValue, FiltersWidget, FiltersWidgetProps, FirstChatMessageModalFeature, _default$7 as Flag, FlagTypes, _default$Q as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconAddModerator, IconApple, IconArrowDown, IconArrowLeft, IconArrowRight, IconArrowTopRight, IconAttachMoney, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$K as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCalendarNew, IconCalendarWithDot, IconCancel, IconCancelRounded, IconCapFilled, IconChat, IconChat3d, IconChat3dSmaller, IconChatFilled, IconChatOutline, IconCheck, IconCheckCircle, IconCheckSmall, IconCheckboxChecked, IconCheckboxUnchecked, IconClient, IconClientFilled, IconClose, IconContract, IconCopy, IconCreditCard, IconDelete, IconDocument, IconDot, IconEcgHeart, IconEdit, IconEditCalendar, IconEmptyList, IconEventBusy, IconExperience, IconEye, IconEyeOff, IconFilters, IconGallery, IconGift, IconGiftNew, IconGoogle, IconHeart, IconHome, IconIdCard, IconInvisible, IconInvoice, IconLanguage, IconLeftArrow, IconLetter, IconLink, IconLock, IconLogout, IconManageAccounts, IconMindly, IconMindlyColored, IconMindlyMini, IconMinus, IconMoreVertical, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPause, IconPersonAlert, IconPlay, IconPlus, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconProps$C as IconProps, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconReceipt, IconReceiptLong, IconRenew, IconResume, IconReviewSessionSubscription, IconReviewSessionTrial, IconSchedule, IconSchema, IconSearch, IconSend, IconSettings, IconShare, IconSpecialistsEnded, IconSpinner, IconStar, IconStarFilled, IconStudyHat, IconStylus, IconSuccess, IconText, IconTime, IconTimeAdd, IconUnmute, IconUser, IconUserNotFound, IconVerifiedUser, IconVisible, IconWarning, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, InputSearch, _default$G as Item, _default$N as ItemCard, LabelArrowRedirect, LanguagesList, _default$1k as LetterAvatar, _default$8 as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListButton, ListItemType, _default$D as ListItemWithColumns, _default$H as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$I as Loading, LocaleCurrencyMapper, LouseConnect, MapStatusContractToUIStatus, _default$o as MarkdownContainerFeature, _default$E as MatchProgress, _default$1h as MediaPlayer, MenuFeature, MindlyReviewFeature, Modal, ModalCalendar, ModalSheet, NEAR_SESSION_TIME_SECONDS, NavigationBar, NewSpecialist, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, ONBOARDING_THEME_DEFAULT_COLORS, OnBoardingBaseScreenType, _default$g as OnBoardingConfirmScreenPreviewFeature, OnBoardingConfirmScreenType, _default$h as OnBoardingEmailScreenPreviewFeature, OnBoardingEmailScreenType, OnBoardingFlowType, _default$m as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$l as OnBoardingMultiSelectionScreenPreviewFeature, _default$j as OnBoardingProgressFeature, _default$i as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenAlertType, OnBoardingScreenBgType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenEmailType, OnBoardingScreenErrorsType, OnBoardingScreenOptionType, OnBoardingScreenOptions, OnBoardingScreenPasswordType, OnBoardingScreenPrivacyType, OnBoardingScreenSkipButtonType, OnBoardingScreenStyleOptions, OnBoardingScreenTranslationsType, OnBoardingScreensType, OnBoardingSingleSelectScreenType, _default$k as OnBoardingSingleSelectionScreenPreviewFeature, _default$n as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OnboardingVariant, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$u as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$w as PaymentSessionsList, _default$1j as PersonDateTimeCard, _default$P as Picture, _default$6 as ProfileInformation, _default$_ as ProfileView, _default$9 as ProgressBar, ProgressBarDashed, _default$J as ProgressBar_v2, ProgressRangeProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$L as Rating, RatingCircleWrapper, _default$11 as ReSchedule, ReScheduleSuccess, Refresher, ResponseFileType, ReviewCard, _default$t as ReviewCardFeature, ReviewListFeature, ReviewStatistics, ReviewSubscriptionSessionFeature, ReviewSubscriptionSessionFeatureProps, ReviewSwiperSection, ReviewTrialSessionFeature, ReviewTrialSessionFeatureProps, ReviewsCardFeatureSkeleton, ReviewsSummary, RoundButton, RowItemType, RowSelect, RowSelectProps, Rule, SIZES, SOON_SESSION_TIME_SECONDS, _default$r as ScreenDrumPickerFormFeature, ScreenInput, _default$s as ScreenInputFormFeature, ScreenInputUpdateFeature, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$1i as SelectImpressionEmoji, SelectItemType, _default$p as SelectWithSearchFormFeature, Session, SessionDetailWidget, SessionPaymentsWidget, SessionPreviewFeature, SessionReview$1 as SessionReview, SessionTime, SessionVariant, SessionsWidget as SessionsListWidget, SessionsWidgetProps, Sex, ShareModalFeature, ShortCurrencySignByLocale, _default$C as ShowMore, _default$16 as SignUpSessionButton, _default$13 as SignUpSessionModal, SizeValues, Skeleton, _default$R as Skeleton_v2, _default$B as SlotsGrid, _default$A as SlotsGridItem, SolidInput, Specialist, _default$Z as SpecialistAbout, SpecialistAreaList as SpecialistAreaListFeature, SpecialistCard, SpecialistCardListWidget, _default$3 as SpecialistCardWidget, SpecialistConsultation, SpecialistConsultationPayment, _default as SpecialistDetailWidget, SpecialistDetailWidgetSkeleton, SpecialistEducation, _default$1b as SpecialistEducationCard, SpecialistEducationsFeature, SpecialistInfoColumnFeature, SpecialistLangs, _default$5 as SpecialistMatch, SpecialistOrderType, SpecialistPaymentCardProps, _default$y as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$x as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default$1 as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$2 as SpecialistPaymentWidget, SpecialistPaymentWidgetType, SpecialistPreviewFeature, SpecialistPreviewListWidget, SpecialistProfileNotFound, _default$1a as SpecialistProfileViewCard, SpecialistReview$1 as SpecialistReview, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default$4 as SpecialistStatistic, SpecialistStatisticsCard, SpecialistWorkDirections, Spinner, Spinner_v2, StarRating, StatisticsScroll, StatusTag, StripeSupportedCurrency, Subscription, SubscriptionStatuses, SuccessScreen, SuperSpecialist, SupportedCurrency, SupportedLangs, SwitchDeviceCard, TabBar, TabItem, Tabs$1 as Tabs, TabsToolbarFeature, Tag, _default$q as TextAreaFormFeature, _default$e as TextInput, _default$f as TextWithClampFeature, _default$1c as Textarea, _default$M as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$V as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UserType, UsersPsychologistScrollList, VariantType, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$F as Video, _default$18 as VideoCallInfo, _default$19 as VideoPlayer, VideoProvider, _default$$ as WorkDirections, YourLocalTimeBlock, appThemes, canManageSession, decOfNum, formatByDigits, getCountryKeyByName, getDateLocale, getFiltersQuery, getFiltersValues, getGMTOffset, getMappedFilterValue, getProgressForBreakPoint, getSessionTimeLabel, getSessionVariant, getSessionsByDay, getSessionsByMonth, getSessionsByYear, getSignAgreementsTabs, getStartSessionDate, getStartSessionTimestamp, isClientCan, isFilterSet, isNewSpecialist, isSpecialistActive, isSpecialistBlocked, isSpecialistPublic, isSuperSpecialist, mergeRefs, newShade, priceNormalize, replaceMarkdownWithReactElements, roundToPrecision, splitSessions, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDeepCompareEffect, useDeepUpdateEffect, useDomRef, useElementWidth, useEvent, useIsKeyBoardShown, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useToastContext, useUpdateEffect, useVideoContext };
|
|
4118
|
+
export { AcceptAgreementFeature, Action, _default$U as AlertCard, AllowFilterValueType, AppFooter, _default$T as AppFooter_v2, AppHeader, AppHeaderPage as AppHeaderPageFeature, AppHeader_v2, AppNotSupportedFeature, ArchivedConsultationCard, AutoComplete, Avatar, AvatarProps$1 as AvatarProps, _default$S as Avatar_v2, AvatarProps as Avatar_v2Props, BREAKPOINT_ICON_SIZE, _default$O as Badge, _default$X as BookingScheduleTime, _default$W as BookingSpecialistInfo, BreakPointPositionProps, BreakPointPositionResult, Button, Button_v2, CAN_MANAGE_SESSION_TIME_HOURS, COUNTRIES_MAPPER, Calendar, _default$v as CalendarPickerFeature, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$1g as ChatListItem, _default$1e as ChatListSkeleton, _default$1f as ChatMessage, ChatMessageSkeleton, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$a as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingComponentProps, CircleRatingContent, CircleRatingContext, CircleRatingContextData, CircleRatingContextProps, CircleRatingDataProps, CircleRatingDataResult, CircleRatingLegendProps, CircleRatingProvider, CircleRatingRange, CircleRatingSize, ClientCanAction, ClientCanParams, ClientSpecialistContractStatusEnum, CollapsableText, ConditionRulesType, Consultation, _default$17 as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$14 as ConsultationModal, _default$z as ConsultationPricingFeature, _default$12 as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentCard, ContentRendererProps, ContractDataFeature, ContractStatusEnum, ContentTree as ContractTreeFeature, CountdownTimerFeature, CountryOfOriginModal, CurrencyLocaleMapper, CurrencySignByLocale, CustomButton, _default$b as CustomCheckbox, CustomRadioButton, _default$c as CustomSelect, _default$d as CustomTextarea, DatePicker, _default$10 as DaySlider, DayToRender, DividerProps, DrumListPicker, DynamicCommissionValue, _default$Y as EducationCard, _default$1d as EmptyChatList, EmptyChatMessages, EmptyChatModalFeature, _default$15 as EmptyConsultations, EmptyList, EmptySpecialistListFeature, EntryNotFound, EntryNotFoundProps, ErrorCardFeature, FilterFeatureProps, FilterItem, FilterItemBoolean, FilterItemChips, FilterItemRange, FilterItemSelect, FilterOption, FilterOptionValue, FilterValue, FiltersWidget, FiltersWidgetProps, FirstChatMessageModalFeature, _default$7 as Flag, FlagTypes, _default$Q as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconAddModerator, IconApple, IconArrowDown, IconArrowLeft, IconArrowRight, IconArrowTopRight, IconAttachMoney, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$K as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCalendarNew, IconCalendarWithDot, IconCancel, IconCancelRounded, IconCapFilled, IconChat, IconChat3d, IconChat3dSmaller, IconChatFilled, IconChatOutline, IconCheck, IconCheckCircle, IconCheckSmall, IconCheckboxChecked, IconCheckboxUnchecked, IconClient, IconClientFilled, IconClose, IconContract, IconCopy, IconCreditCard, IconDelete, IconDocument, IconDot, IconEcgHeart, IconEdit, IconEditCalendar, IconEmptyList, IconEventBusy, IconExperience, IconEye, IconEyeOff, IconFilters, IconGallery, IconGift, IconGiftNew, IconGoogle, IconHeart, IconHome, IconIdCard, IconInvisible, IconInvoice, IconLanguage, IconLeftArrow, IconLetter, IconLink, IconLock, IconLogout, IconManageAccounts, IconMindly, IconMindlyColored, IconMindlyMini, IconMinus, IconMoreVertical, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPaperPencil, IconPause, IconPersonAlert, IconPlay, IconPlus, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconProps$C as IconProps, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconReceipt, IconReceiptLong, IconRenew, IconResume, IconReviewSessionSubscription, IconReviewSessionTrial, IconSchedule, IconSchema, IconSearch, IconSend, IconSettings, IconShare, IconSpecialistsEnded, IconSpinner, IconStar, IconStarFilled, IconStudyHat, IconStylus, IconSuccess, IconText, IconTime, IconTimeAdd, IconUnmute, IconUser, IconUserNotFound, IconVerifiedUser, IconVisible, IconWarning, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, InputSearch, _default$G as Item, _default$N as ItemCard, LabelArrowRedirect, LanguagesList, _default$1k as LetterAvatar, _default$8 as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListButton, ListItemType, _default$D as ListItemWithColumns, _default$H as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$I as Loading, LocaleCurrencyMapper, LouseConnect, MapStatusContractToUIStatus, _default$o as MarkdownContainerFeature, _default$E as MatchProgress, _default$1h as MediaPlayer, MenuFeature, MindlyReviewFeature, Modal, ModalCalendar, ModalSheet, NEAR_SESSION_TIME_SECONDS, NavigationBar, NewSpecialist, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, ONBOARDING_THEME_DEFAULT_COLORS, OnBoardingBaseScreenType, _default$g as OnBoardingConfirmScreenPreviewFeature, OnBoardingConfirmScreenType, _default$h as OnBoardingEmailScreenPreviewFeature, OnBoardingEmailScreenType, OnBoardingFlowType, _default$m as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$l as OnBoardingMultiSelectionScreenPreviewFeature, _default$j as OnBoardingProgressFeature, _default$i as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenAlertType, OnBoardingScreenBgType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenEmailType, OnBoardingScreenErrorsType, OnBoardingScreenOptionType, OnBoardingScreenOptions, OnBoardingScreenPasswordType, OnBoardingScreenPrivacyType, OnBoardingScreenSkipButtonType, OnBoardingScreenStyleOptions, OnBoardingScreenTranslationsType, OnBoardingScreensType, OnBoardingSingleSelectScreenType, _default$k as OnBoardingSingleSelectionScreenPreviewFeature, _default$n as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OnboardingVariant, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$u as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$w as PaymentSessionsList, _default$1j as PersonDateTimeCard, _default$P as Picture, _default$6 as ProfileInformation, _default$_ as ProfileView, _default$9 as ProgressBar, ProgressBarDashed, _default$J as ProgressBar_v2, ProgressRangeProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$L as Rating, RatingCircleWrapper, _default$11 as ReSchedule, ReScheduleSuccess, Refresher, ResponseFileType, ReviewCard, _default$t as ReviewCardFeature, ReviewListFeature, ReviewStatistics, ReviewSubscriptionSessionFeature, ReviewSubscriptionSessionFeatureProps, ReviewSwiperSection, ReviewTrialSessionFeature, ReviewTrialSessionFeatureProps, ReviewsCardFeatureSkeleton, ReviewsSummary, RoundButton, RowItemType, RowSelect, RowSelectProps, Rule, SIZES, SOON_SESSION_TIME_SECONDS, _default$r as ScreenDrumPickerFormFeature, ScreenInput, _default$s as ScreenInputFormFeature, ScreenInputUpdateFeature, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$1i as SelectImpressionEmoji, SelectItemType, _default$p as SelectWithSearchFormFeature, Session, SessionDetailWidget, SessionPaymentsWidget, SessionPreviewFeature, SessionReview$1 as SessionReview, SessionTime, SessionVariant, SessionsWidget as SessionsListWidget, SessionsWidgetProps, Sex, ShareModalFeature, ShortCurrencySignByLocale, _default$C as ShowMore, _default$16 as SignUpSessionButton, _default$13 as SignUpSessionModal, SizeValues, Skeleton, _default$R as Skeleton_v2, _default$B as SlotsGrid, _default$A as SlotsGridItem, SolidInput, Specialist, _default$Z as SpecialistAbout, SpecialistAreaList as SpecialistAreaListFeature, SpecialistCard, SpecialistCardListWidget, _default$3 as SpecialistCardWidget, SpecialistConsultation, SpecialistConsultationPayment, _default as SpecialistDetailWidget, SpecialistDetailWidgetSkeleton, SpecialistEducation, _default$1b as SpecialistEducationCard, SpecialistEducationsFeature, SpecialistInfoColumnFeature, SpecialistLangs, _default$5 as SpecialistMatch, SpecialistOrderType, SpecialistPaymentCardProps, _default$y as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$x as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default$1 as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$2 as SpecialistPaymentWidget, SpecialistPaymentWidgetType, SpecialistPreviewFeature, SpecialistPreviewListWidget, SpecialistProfileNotFound, _default$1a as SpecialistProfileViewCard, SpecialistReview$1 as SpecialistReview, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default$4 as SpecialistStatistic, SpecialistStatisticsCard, SpecialistWorkDirections, Spinner, Spinner_v2, StarRating, StatisticsScroll, StatusTag, StripeSupportedCurrency, Subscription, SubscriptionStatuses, SuccessScreen, SuperSpecialist, SupportedCurrency, SupportedLangs, SwitchDeviceCard, TabBar, TabItem, Tabs$1 as Tabs, TabsToolbarFeature, Tag, _default$q as TextAreaFormFeature, _default$e as TextInput, _default$f as TextWithClampFeature, _default$1c as Textarea, _default$M as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$V as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UserType, UsersPsychologistScrollList, VariantType, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$F as Video, _default$18 as VideoCallInfo, _default$19 as VideoPlayer, VideoProvider, _default$$ as WorkDirections, YourLocalTimeBlock, appThemes, canManageSession, decOfNum, formatByDigits, getCountryKeyByName, getDateLocale, getFiltersQuery, getFiltersValues, getGMTOffset, getMappedFilterValue, getProgressForBreakPoint, getSessionTimeLabel, getSessionVariant, getSessionsByDay, getSessionsByMonth, getSessionsByYear, getSignAgreementsTabs, getStartSessionDate, getStartSessionTimestamp, isClientCan, isFilterSet, isNewSpecialist, isSpecialistActive, isSpecialistBlocked, isSpecialistPublic, isSuperSpecialist, mergeRefs, newShade, priceNormalize, replaceMarkdownWithReactElements, roundToPrecision, 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": "5.
|
|
3
|
+
"version": "5.103.0-dev.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"scripts": {
|
|
6
6
|
"clean": "rimraf dist",
|
|
@@ -15,9 +15,10 @@
|
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@babel/polyfill": "7.12.1",
|
|
18
|
-
"@capacitor/clipboard": "
|
|
19
|
-
"@capacitor/haptics": "
|
|
20
|
-
"@capacitor/
|
|
18
|
+
"@capacitor/clipboard": "7.0.1",
|
|
19
|
+
"@capacitor/haptics": "7.0.1",
|
|
20
|
+
"@capacitor/keyboard": "7.0.1",
|
|
21
|
+
"@capacitor/share": "7.0.1",
|
|
21
22
|
"@fontsource/inter": "5.0.8",
|
|
22
23
|
"@fontsource/inter-tight": "5.0.12",
|
|
23
24
|
"@ionic/react": "6.7.5",
|
|
@@ -47,9 +48,9 @@
|
|
|
47
48
|
},
|
|
48
49
|
"peerDependencies": {
|
|
49
50
|
"@babel/polyfill": "7.12.1",
|
|
50
|
-
"@capacitor/core": "
|
|
51
|
-
"@capacitor/haptics": "
|
|
52
|
-
"@capacitor/keyboard": "
|
|
51
|
+
"@capacitor/core": "7.4.1",
|
|
52
|
+
"@capacitor/haptics": "7.0.1",
|
|
53
|
+
"@capacitor/keyboard": "7.0.1",
|
|
53
54
|
"@fontsource/inter": "5.0.8",
|
|
54
55
|
"@fontsource/inter-tight": "5.0.12",
|
|
55
56
|
"@ionic/react": "6.7.5",
|
|
@@ -96,7 +97,6 @@
|
|
|
96
97
|
"@babel/core": "7.22.20",
|
|
97
98
|
"@babel/plugin-proposal-private-property-in-object": "7.21.11",
|
|
98
99
|
"@babel/preset-typescript": "7.22.15",
|
|
99
|
-
"@capacitor/keyboard": "^6.0.1",
|
|
100
100
|
"@ionic/lab": "3.2.10",
|
|
101
101
|
"@rollup/plugin-commonjs": "20.0.0",
|
|
102
102
|
"@rollup/plugin-image": "2.1.1",
|