@mindly/ui-components 5.105.1 → 5.105.2-dev.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index.js +7 -7
- 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/features/OnBoardingFlow/OnBoardingPaywallScreenPreviewFeature/components/TrustItem.d.ts +2 -2
- package/dist/cjs/lib2/features/OnBoardingFlow/OnBoardingPaywallScreenPreviewFeature/conts.d.ts +4 -3
- package/dist/cjs/lib2/features/SessionReviewsFeature/ReviewSubscriptionSessionFeature/constants.d.ts +5 -4
- package/dist/cjs/lib2/features/SessionReviewsFeature/ReviewTrialSessionFeature/constants.d.ts +5 -4
- package/dist/cjs/lib2/shared/providers/CircleRatingProvider/CircleRatingProvider.d.ts +1 -1
- 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/cjs/lib2/shared/utils/index.d.ts +1 -0
- package/dist/cjs/lib2/shared/utils/matching.d.ts +2 -1
- package/dist/cjs/lib2/shared/utils/mock.d.ts +2 -1
- package/dist/cjs/lib2/shared/utils/session.d.ts +2 -1
- package/dist/esm/index.js +6 -6
- 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/features/OnBoardingFlow/OnBoardingPaywallScreenPreviewFeature/components/TrustItem.d.ts +2 -2
- package/dist/esm/lib2/features/OnBoardingFlow/OnBoardingPaywallScreenPreviewFeature/conts.d.ts +4 -3
- package/dist/esm/lib2/features/SessionReviewsFeature/ReviewSubscriptionSessionFeature/constants.d.ts +5 -4
- package/dist/esm/lib2/features/SessionReviewsFeature/ReviewTrialSessionFeature/constants.d.ts +5 -4
- package/dist/esm/lib2/shared/providers/CircleRatingProvider/CircleRatingProvider.d.ts +1 -1
- 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/esm/lib2/shared/utils/index.d.ts +1 -0
- package/dist/esm/lib2/shared/utils/matching.d.ts +2 -1
- package/dist/esm/lib2/shared/utils/mock.d.ts +2 -1
- package/dist/esm/lib2/shared/utils/session.d.ts +2 -1
- package/dist/index.d.ts +48 -4
- package/package.json +9 -8
|
@@ -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';
|
package/dist/esm/lib2/features/OnBoardingFlow/OnBoardingPaywallScreenPreviewFeature/conts.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
import { WithTranslation } from 'react-i18next';
|
|
1
2
|
export declare const enTranslate: Record<string, string>;
|
|
2
|
-
export declare const mockEnT:
|
|
3
|
+
export declare const mockEnT: import("i18next").TFunction<"translation", undefined>;
|
|
3
4
|
export declare const images: {
|
|
4
5
|
after: string;
|
|
5
6
|
before: string;
|
|
@@ -20,13 +21,13 @@ export declare const images: {
|
|
|
20
21
|
time: string;
|
|
21
22
|
verge: string;
|
|
22
23
|
};
|
|
23
|
-
export declare const
|
|
24
|
+
export declare const getCompareItems: (t?: WithTranslation['t']) => {
|
|
24
25
|
id: string;
|
|
25
26
|
label: string;
|
|
26
27
|
hasInMindly: boolean;
|
|
27
28
|
hasInCompetitors: boolean;
|
|
28
29
|
}[];
|
|
29
|
-
export declare const
|
|
30
|
+
export declare const getHowItWorksItems: (t?: WithTranslation['t']) => {
|
|
30
31
|
id: string;
|
|
31
32
|
title: string;
|
|
32
33
|
description: string;
|
package/dist/esm/lib2/features/SessionReviewsFeature/ReviewSubscriptionSessionFeature/constants.d.ts
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
|
+
import { WithTranslation } from 'react-i18next';
|
|
1
2
|
export type Tag = {
|
|
2
3
|
id: string;
|
|
3
4
|
name: string;
|
|
4
5
|
};
|
|
5
|
-
export declare const TAGS_LIST_1_SUBSCRIPTION: (t?:
|
|
6
|
-
export declare const TAGS_LIST_2_SUBSCRIPTION: (t?:
|
|
7
|
-
export declare const TAGS_LIST_3_SUBSCRIPTION: (t?:
|
|
8
|
-
export declare const TAGS_BY_RATING_SUBSCRIPTION: (t?:
|
|
6
|
+
export declare const TAGS_LIST_1_SUBSCRIPTION: (t?: WithTranslation['t']) => Tag[];
|
|
7
|
+
export declare const TAGS_LIST_2_SUBSCRIPTION: (t?: WithTranslation['t']) => Tag[];
|
|
8
|
+
export declare const TAGS_LIST_3_SUBSCRIPTION: (t?: WithTranslation['t']) => Tag[];
|
|
9
|
+
export declare const TAGS_BY_RATING_SUBSCRIPTION: (t?: WithTranslation['t']) => Record<number, Tag[]>;
|
package/dist/esm/lib2/features/SessionReviewsFeature/ReviewTrialSessionFeature/constants.d.ts
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
|
+
import { WithTranslation } from 'react-i18next';
|
|
1
2
|
export type Tag = {
|
|
2
3
|
id: string;
|
|
3
4
|
name: string;
|
|
4
5
|
};
|
|
5
|
-
export declare const TAGS_LIST_1_TRIAL: (t?:
|
|
6
|
-
export declare const TAGS_LIST_2_TRIAL: (t?:
|
|
7
|
-
export declare const TAGS_LIST_3_TRIAL: (t?:
|
|
8
|
-
export declare const TAGS_BY_RATING_TRIAL: (t?:
|
|
6
|
+
export declare const TAGS_LIST_1_TRIAL: (t?: WithTranslation['t']) => Tag[];
|
|
7
|
+
export declare const TAGS_LIST_2_TRIAL: (t?: WithTranslation['t']) => Tag[];
|
|
8
|
+
export declare const TAGS_LIST_3_TRIAL: (t?: WithTranslation['t']) => Tag[];
|
|
9
|
+
export declare const TAGS_BY_RATING_TRIAL: (t?: WithTranslation['t']) => Record<number, Tag[]>;
|
|
@@ -5,5 +5,5 @@ export declare const CircleRatingContext: React.Context<CircleRatingContextData>
|
|
|
5
5
|
export declare const CircleRatingProvider: ({ children, data, t, }: {
|
|
6
6
|
children: JSX.Element;
|
|
7
7
|
data: CircleRatingContextProps;
|
|
8
|
-
t:
|
|
8
|
+
t: WithTranslation['t'];
|
|
9
9
|
}) => JSX.Element | null;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
import { WithTranslation } from 'react-i18next';
|
|
1
2
|
import { SpecialistAreaByMatch } from '../../features/SpecialistAreaListFeature/types';
|
|
2
3
|
import { Specialist, UserType } from '../types';
|
|
3
|
-
export declare const getMatchingValues: (specialist: Specialist, user?: UserType, join?: boolean, t?:
|
|
4
|
+
export declare const getMatchingValues: (specialist: Specialist, user?: UserType, join?: boolean, t?: WithTranslation['t']) => {
|
|
4
5
|
matchingByAreas: SpecialistAreaByMatch[];
|
|
5
6
|
matchingBySpecialization: SpecialistAreaByMatch[];
|
|
6
7
|
};
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
+
import { WithTranslation } from 'react-i18next';
|
|
1
2
|
import { ClientSpecialistContractStatusEnum } from '../types/contract';
|
|
2
3
|
import { UserType } from '../types/user';
|
|
3
4
|
import { Specialist } from '../types/specialistTypes';
|
|
4
5
|
import { Session, SpecialistReview } from '../types';
|
|
5
|
-
export declare const mockT: (translate?: Record<string, string>) =>
|
|
6
|
+
export declare const mockT: (translate?: Record<string, string>) => WithTranslation['t'];
|
|
6
7
|
export declare const specialist: Specialist;
|
|
7
8
|
export declare const currentUser: UserType;
|
|
8
9
|
export declare const listReviews: SpecialistReview[];
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { WithTranslation } from 'react-i18next';
|
|
1
2
|
import { Session, SessionTime, SessionVariant } from '../types';
|
|
2
3
|
export declare const SOON_SESSION_TIME_SECONDS: number;
|
|
3
4
|
export declare const NEAR_SESSION_TIME_SECONDS: number;
|
|
@@ -9,5 +10,5 @@ export declare const getSessionsByYear: (sessions: Session[]) => Map<number, Ses
|
|
|
9
10
|
export declare const getSessionsByMonth: (sessions: Session[]) => Map<number, Session[]>;
|
|
10
11
|
export declare const getSessionsByDay: (sessions: Session[]) => Map<number, Session[]>;
|
|
11
12
|
export declare const splitSessions: (sessions: Session[]) => Map<string, Session[]>;
|
|
12
|
-
export declare const getSessionTimeLabel: (variant: SessionVariant, startSessionDate: Date, t:
|
|
13
|
+
export declare const getSessionTimeLabel: (variant: SessionVariant, startSessionDate: Date, t: WithTranslation['t'], locale: string) => string;
|
|
13
14
|
export declare const canManageSession: (sessionDate?: Date) => boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
import * as React$1 from 'react';
|
|
3
3
|
import React__default, { ReactNode, CSSProperties, HTMLAttributes, RefAttributes, FC, SVGAttributes, KeyboardEvent, InputHTMLAttributes, KeyboardEventHandler, RefObject, EffectCallback, SVGProps, PropsWithChildren, ReactText, ReactElement, ChangeEvent } from 'react';
|
|
4
4
|
import { JSX as JSX$1 } from '@ionic/core/components';
|
|
5
|
-
import * as react_i18next from 'react-i18next';
|
|
6
5
|
import { WithTranslation } from 'react-i18next';
|
|
7
6
|
import { RatingComponentProps } from 'react-rating';
|
|
8
7
|
import { ScrollDetail, ScrollBaseDetail, RefresherEventDetail } from '@ionic/react';
|
|
@@ -2413,7 +2412,7 @@ declare const CircleRatingContext: React__default.Context<CircleRatingContextDat
|
|
|
2413
2412
|
declare const CircleRatingProvider: ({ children, data, t, }: {
|
|
2414
2413
|
children: JSX.Element;
|
|
2415
2414
|
data: CircleRatingContextProps;
|
|
2416
|
-
t:
|
|
2415
|
+
t: WithTranslation['t'];
|
|
2417
2416
|
}) => JSX.Element | null;
|
|
2418
2417
|
|
|
2419
2418
|
type VideoContextValue = {
|
|
@@ -3860,9 +3859,54 @@ declare const getSessionsByYear: (sessions: Session[]) => Map<number, Session[]>
|
|
|
3860
3859
|
declare const getSessionsByMonth: (sessions: Session[]) => Map<number, Session[]>;
|
|
3861
3860
|
declare const getSessionsByDay: (sessions: Session[]) => Map<number, Session[]>;
|
|
3862
3861
|
declare const splitSessions: (sessions: Session[]) => Map<string, Session[]>;
|
|
3863
|
-
declare const getSessionTimeLabel: (variant: SessionVariant, startSessionDate: Date, t:
|
|
3862
|
+
declare const getSessionTimeLabel: (variant: SessionVariant, startSessionDate: Date, t: WithTranslation['t'], locale: string) => string;
|
|
3864
3863
|
declare const canManageSession: (sessionDate?: Date) => boolean;
|
|
3865
3864
|
|
|
3865
|
+
declare const mockT: (translate?: Record<string, string>) => WithTranslation['t'];
|
|
3866
|
+
declare const specialist: Specialist;
|
|
3867
|
+
declare const currentUser: UserType;
|
|
3868
|
+
declare const listReviews: SpecialistReview$1[];
|
|
3869
|
+
declare const mockSession: Session;
|
|
3870
|
+
declare const mockSessions: {
|
|
3871
|
+
consultation_time: any;
|
|
3872
|
+
id: string;
|
|
3873
|
+
consultation_booking_date?: SessionTime | undefined;
|
|
3874
|
+
consultation_id?: string | undefined;
|
|
3875
|
+
consultation_with: string;
|
|
3876
|
+
duration: number;
|
|
3877
|
+
exchange_rate: string;
|
|
3878
|
+
payment_date?: SessionTime | undefined;
|
|
3879
|
+
payment_type?: string | undefined;
|
|
3880
|
+
price: string | number;
|
|
3881
|
+
price_uah: number;
|
|
3882
|
+
psychologist_avatar: string;
|
|
3883
|
+
psychologist_id: string;
|
|
3884
|
+
psychologist_name: string;
|
|
3885
|
+
psychologist_timezone: string;
|
|
3886
|
+
user_avatar: string;
|
|
3887
|
+
user_id: string;
|
|
3888
|
+
user_name: string;
|
|
3889
|
+
user_timezone: string;
|
|
3890
|
+
videochat_url: string;
|
|
3891
|
+
was_rescheduled: boolean;
|
|
3892
|
+
session_status?: "client_showed" | "client_not_showed" | undefined;
|
|
3893
|
+
consultation_time_before_rescheduling?: SessionTime | undefined;
|
|
3894
|
+
therapist?: Specialist | undefined;
|
|
3895
|
+
user?: UserType | undefined;
|
|
3896
|
+
client?: {
|
|
3897
|
+
specialist_client_contract_id?: string | null | undefined;
|
|
3898
|
+
specialist_client_contract_status?: ClientSpecialistContractStatusEnum | null | undefined;
|
|
3899
|
+
} | undefined;
|
|
3900
|
+
applied_promotional_code?: string | null | undefined;
|
|
3901
|
+
auto_booking_status?: "enable" | "disable" | undefined;
|
|
3902
|
+
subscription_id?: string | null | undefined;
|
|
3903
|
+
price_type?: string | undefined;
|
|
3904
|
+
price_default?: number | undefined;
|
|
3905
|
+
payment_intent_id?: string | undefined;
|
|
3906
|
+
subscription?: Subscription | undefined;
|
|
3907
|
+
session_review?: SessionReview$1 | undefined;
|
|
3908
|
+
}[];
|
|
3909
|
+
|
|
3866
3910
|
declare const ONBOARDING_THEME_DEFAULT_COLORS: Record<OnboardingVariant, {
|
|
3867
3911
|
defaultThemeColor: string;
|
|
3868
3912
|
}>;
|
|
@@ -4382,4 +4426,4 @@ type SpecialistPreviewWidgetProps = {
|
|
|
4382
4426
|
|
|
4383
4427
|
declare const _default: React__default.NamedExoticComponent<SpecialistPreviewWidgetProps>;
|
|
4384
4428
|
|
|
4385
|
-
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$1h as ChatListItem, _default$1f as ChatListSkeleton, _default$1g 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$1e 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, 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, 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$1l 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$1i 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, _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, OnBoardingScreenOptions, OnBoardingScreenPasswordType, OnBoardingScreenPrivacyType, OnBoardingScreenSkipButtonType, OnBoardingScreenStyleOptions, OnBoardingScreenTranslationsType, OnBoardingScreensType, OnBoardingSingleImageSelectScreenType, OnBoardingSingleSelectScreenType, _default$l as OnBoardingSingleSelectionScreenPreviewFeature, _default$o as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OnboardingVariant, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$v as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$x as PaymentSessionsList, _default$1k 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$1j 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, _default$1c as SpecialistEducationCard, 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, _default$1b as SpecialistProfileViewCard, SpecialistReview$1 as SpecialistReview, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default$5 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, Tariff, TariffFeature, _default$r as TextAreaFormFeature, _default$f as TextInput, _default$g as TextWithClampFeature, _default$1d as Textarea, _default$N as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, 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, 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, mergeRefs, newShade, priceNormalize, replaceMarkdownWithReactElements, roundToPrecision, splitSessions, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDeepCompareEffect, useDeepUpdateEffect, useDomRef, useElementWidth, useEvent, useIsKeyBoardShown, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useToastContext, useUpdateEffect, useVideoContext };
|
|
4429
|
+
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$1h as ChatListItem, _default$1f as ChatListSkeleton, _default$1g 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$1e 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, 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, 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$1l 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$1i 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, _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, OnBoardingScreenOptions, OnBoardingScreenPasswordType, OnBoardingScreenPrivacyType, OnBoardingScreenSkipButtonType, OnBoardingScreenStyleOptions, OnBoardingScreenTranslationsType, OnBoardingScreensType, OnBoardingSingleImageSelectScreenType, OnBoardingSingleSelectScreenType, _default$l as OnBoardingSingleSelectionScreenPreviewFeature, _default$o as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OnboardingVariant, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$v as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$x as PaymentSessionsList, _default$1k 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$1j 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, _default$1c as SpecialistEducationCard, 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, _default$1b as SpecialistProfileViewCard, SpecialistReview$1 as SpecialistReview, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default$5 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, Tariff, TariffFeature, _default$r as TextAreaFormFeature, _default$f as TextInput, _default$g as TextWithClampFeature, _default$1d as Textarea, _default$N as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, 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": "5.105.1",
|
|
3
|
+
"version": "5.105.2-dev.1",
|
|
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",
|
|
@@ -27,6 +28,7 @@
|
|
|
27
28
|
"classnames": "2.3.2",
|
|
28
29
|
"date-fns": "2.30.0",
|
|
29
30
|
"html-react-parser": "3.0.16",
|
|
31
|
+
"i18next": "~23.11.5",
|
|
30
32
|
"luxon": "2.5.2",
|
|
31
33
|
"markdown-to-jsx": "7.5.0",
|
|
32
34
|
"react": "17.0.2",
|
|
@@ -50,9 +52,9 @@
|
|
|
50
52
|
},
|
|
51
53
|
"peerDependencies": {
|
|
52
54
|
"@babel/polyfill": "7.12.1",
|
|
53
|
-
"@capacitor/core": "
|
|
54
|
-
"@capacitor/haptics": "
|
|
55
|
-
"@capacitor/keyboard": "
|
|
55
|
+
"@capacitor/core": "7.4.1",
|
|
56
|
+
"@capacitor/haptics": "7.0.1",
|
|
57
|
+
"@capacitor/keyboard": "7.0.1",
|
|
56
58
|
"@fontsource/inter": "5.0.8",
|
|
57
59
|
"@fontsource/inter-tight": "5.0.12",
|
|
58
60
|
"@ionic/react": "6.7.5",
|
|
@@ -99,7 +101,6 @@
|
|
|
99
101
|
"@babel/core": "7.22.20",
|
|
100
102
|
"@babel/plugin-proposal-private-property-in-object": "7.21.11",
|
|
101
103
|
"@babel/preset-typescript": "7.22.15",
|
|
102
|
-
"@capacitor/keyboard": "^6.0.1",
|
|
103
104
|
"@ionic/lab": "3.2.10",
|
|
104
105
|
"@rollup/plugin-commonjs": "20.0.0",
|
|
105
106
|
"@rollup/plugin-image": "2.1.1",
|