@mindly/ui-components 5.103.2 → 5.104.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/configs/tailwind/colors.d.ts +1 -0
- package/dist/cjs/index.js +6 -6
- package/dist/cjs/lib2/features/OnBoardingFlow/OnBoardingSingleSelectionScreenPreviewFeature/OnBoardingSingleSelectionScreenPreviewFeature.d.ts +3 -2
- package/dist/cjs/lib2/features/OnBoardingFlow/components/OnBoardingSelectionHeader.d.ts +8 -0
- package/dist/cjs/lib2/shared/assets/icons/IconRadioPartial.d.ts +3 -0
- package/dist/cjs/lib2/shared/assets/icons/index.d.ts +1 -0
- package/dist/cjs/lib2/shared/types/onBoardingFlow.type.d.ts +9 -0
- package/dist/cjs/lib2/shared/ui/ListBox/ListBox.d.ts +1 -1
- package/dist/cjs/lib2/shared/ui/ListBox/types.d.ts +9 -2
- package/dist/cjs/lib2/shared/ui/ListBoxItem/ListBoxImageItem.d.ts +17 -0
- package/dist/cjs/lib2/shared/ui/ListBoxItem/types.d.ts +13 -1
- package/dist/esm/configs/tailwind/colors.d.ts +1 -0
- package/dist/esm/index.js +7 -7
- package/dist/esm/lib2/features/OnBoardingFlow/OnBoardingSingleSelectionScreenPreviewFeature/OnBoardingSingleSelectionScreenPreviewFeature.d.ts +3 -2
- package/dist/esm/lib2/features/OnBoardingFlow/components/OnBoardingSelectionHeader.d.ts +8 -0
- package/dist/esm/lib2/shared/assets/icons/IconRadioPartial.d.ts +3 -0
- package/dist/esm/lib2/shared/assets/icons/index.d.ts +1 -0
- package/dist/esm/lib2/shared/types/onBoardingFlow.type.d.ts +9 -0
- package/dist/esm/lib2/shared/ui/ListBox/ListBox.d.ts +1 -1
- package/dist/esm/lib2/shared/ui/ListBox/types.d.ts +9 -2
- package/dist/esm/lib2/shared/ui/ListBoxItem/ListBoxImageItem.d.ts +17 -0
- package/dist/esm/lib2/shared/ui/ListBoxItem/types.d.ts +13 -1
- package/dist/index.d.ts +35 -4
- package/package.json +1 -1
- package/src/configs/tailwind/colors.ts +2 -0
- package/src/lib2/shared/css/tailwind.css +1 -0
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { OnBoardingSingleSelectScreenType } from '../../../shared';
|
|
2
|
+
import { OnBoardingSingleSelectScreenType, OnBoardingSingleImageSelectScreenType } from '../../../shared';
|
|
3
3
|
import { OnboardingVariant } from '../../../shared/';
|
|
4
4
|
type OnBoardingSingleSelectionScreenPreviewFeatureProps = {
|
|
5
5
|
onChange?: (value: string) => void;
|
|
6
6
|
defaultValues?: string[];
|
|
7
7
|
variant?: OnboardingVariant;
|
|
8
|
-
|
|
8
|
+
template?: 'radio' | 'image';
|
|
9
|
+
} & OnBoardingSingleSelectScreenType & OnBoardingSingleImageSelectScreenType;
|
|
9
10
|
declare const _default: React.NamedExoticComponent<OnBoardingSingleSelectionScreenPreviewFeatureProps>;
|
|
10
11
|
export default _default;
|
|
@@ -24,6 +24,7 @@ export declare enum OnBoardingScreenOptions {
|
|
|
24
24
|
START = "START",
|
|
25
25
|
MULTI_SELECT = "MULTI_SELECT",
|
|
26
26
|
SINGLE_SELECT = "SINGLE_SELECT",
|
|
27
|
+
SINGLE_IMAGE_SELECT = "SINGLE_IMAGE_SELECT",
|
|
27
28
|
INFO = "INFO",
|
|
28
29
|
LOADER = "LOADER",
|
|
29
30
|
REVIEWS = "REVIEWS",
|
|
@@ -40,6 +41,9 @@ export type OnBoardingScreenOptionType = {
|
|
|
40
41
|
isDefault?: boolean;
|
|
41
42
|
filtrationAnswerId?: string;
|
|
42
43
|
};
|
|
44
|
+
export type OnBoardingScreenOptionWithImageType = OnBoardingScreenOptionType & {
|
|
45
|
+
image?: ResponseFileType | null;
|
|
46
|
+
};
|
|
43
47
|
export type OnBoardingScreenButtonType = {
|
|
44
48
|
buttonText?: string | null;
|
|
45
49
|
buttonColor?: string | null;
|
|
@@ -106,8 +110,13 @@ export type OnBoardingMultiSelectScreenType = OnBoardingBaseScreenType & OnBoard
|
|
|
106
110
|
options: OnBoardingScreenOptionType[];
|
|
107
111
|
};
|
|
108
112
|
export type OnBoardingSingleSelectScreenType = OnBoardingBaseScreenType & OnBoardingScreenDescriptionType & {
|
|
113
|
+
legalText?: string;
|
|
109
114
|
options: OnBoardingScreenOptionType[];
|
|
110
115
|
};
|
|
116
|
+
export type OnBoardingSingleImageSelectScreenType = OnBoardingBaseScreenType & OnBoardingScreenDescriptionType & {
|
|
117
|
+
legalText?: string;
|
|
118
|
+
options: OnBoardingScreenOptionWithImageType[];
|
|
119
|
+
};
|
|
111
120
|
export type OnBoardingLoaderScreenType = OnBoardingBaseScreenType & {
|
|
112
121
|
title?: string | null;
|
|
113
122
|
additionalText?: string;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { ListBoxProps } from './types';
|
|
2
|
-
export default function ListBox<T extends Record<string, unknown>>({ selectedIconProps, type, selectionPosition, enableSelection, className, variant, ...props }: ListBoxProps<T>): JSX.Element;
|
|
2
|
+
export default function ListBox<T extends Record<string, unknown>>({ selectedIconProps, type, selectionPosition, enableSelection, className, selectionImageClassNames, variant, ...props }: ListBoxProps<T>): JSX.Element;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { AriaListBoxProps } from 'react-aria';
|
|
2
|
-
import { IconProps } from '../../types';
|
|
2
|
+
import { IconProps, ResponseFileType } from '../../types';
|
|
3
3
|
export declare enum ListBoxSelectionType {
|
|
4
4
|
Checkbox = "checkbox",
|
|
5
|
-
Radio = "radio"
|
|
5
|
+
Radio = "radio",
|
|
6
|
+
Image = "image"
|
|
6
7
|
}
|
|
7
8
|
export type VariantType = 'default' | 'blue';
|
|
8
9
|
export type ListBoxProps<T> = AriaListBoxProps<T> & {
|
|
@@ -10,6 +11,12 @@ export type ListBoxProps<T> = AriaListBoxProps<T> & {
|
|
|
10
11
|
enableSelection?: boolean;
|
|
11
12
|
selectedIconProps?: IconProps;
|
|
12
13
|
selectionPosition?: 'start' | 'end';
|
|
14
|
+
selectionImageClassNames?: {
|
|
15
|
+
label?: string;
|
|
16
|
+
arrowIcon?: string;
|
|
17
|
+
bottomContainer?: string;
|
|
18
|
+
} | null;
|
|
13
19
|
className?: string;
|
|
14
20
|
variant?: VariantType;
|
|
21
|
+
image?: ResponseFileType;
|
|
15
22
|
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Node } from 'react-stately';
|
|
3
|
+
import { ResponseFileType } from '../../types';
|
|
4
|
+
import { VariantType } from '../ListBox/types';
|
|
5
|
+
type ListBoxImageItemProps = {
|
|
6
|
+
isSelected: boolean;
|
|
7
|
+
item: Node<unknown>;
|
|
8
|
+
image?: ResponseFileType | null;
|
|
9
|
+
variant: VariantType;
|
|
10
|
+
selectionImageClassNames?: {
|
|
11
|
+
label?: string;
|
|
12
|
+
arrowIcon?: string;
|
|
13
|
+
bottomContainer?: string;
|
|
14
|
+
} | null;
|
|
15
|
+
};
|
|
16
|
+
declare const _default: React.MemoExoticComponent<({ isSelected, item, image, variant, selectionImageClassNames, }: ListBoxImageItemProps) => JSX.Element>;
|
|
17
|
+
export default _default;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ListState, Node } from 'react-stately';
|
|
2
2
|
import * as React from 'react';
|
|
3
3
|
import { ListBoxSelectionType, VariantType } from '../ListBox';
|
|
4
|
-
import { IconProps } from '../../types';
|
|
4
|
+
import { IconProps, ResponseFileType } from '../../types';
|
|
5
5
|
export type ListOptionsProps = {
|
|
6
6
|
item: Node<unknown>;
|
|
7
7
|
state: ListState<unknown>;
|
|
@@ -13,6 +13,12 @@ export type ListOptionsProps = {
|
|
|
13
13
|
selectionPosition?: 'start' | 'end';
|
|
14
14
|
enableSelection?: boolean;
|
|
15
15
|
variant?: VariantType;
|
|
16
|
+
image?: ResponseFileType | null;
|
|
17
|
+
selectionImageClassNames?: {
|
|
18
|
+
label?: string;
|
|
19
|
+
arrowIcon?: string;
|
|
20
|
+
bottomContainer?: string;
|
|
21
|
+
} | null;
|
|
16
22
|
};
|
|
17
23
|
export type ListBoxItemProps = {
|
|
18
24
|
icon?: React.ReactNode;
|
|
@@ -22,8 +28,14 @@ export type ListBoxItemProps = {
|
|
|
22
28
|
value?: string;
|
|
23
29
|
children: React.ReactNode;
|
|
24
30
|
className?: string;
|
|
31
|
+
sselectionImageClassNames?: {
|
|
32
|
+
label?: string;
|
|
33
|
+
arrowIcon?: string;
|
|
34
|
+
bottomContainer?: string;
|
|
35
|
+
} | null;
|
|
25
36
|
customContent?: boolean;
|
|
26
37
|
onClick?: HTMLIonItemElement['onclick'];
|
|
27
38
|
variant?: VariantType;
|
|
39
|
+
image?: ResponseFileType | null;
|
|
28
40
|
};
|
|
29
41
|
export type { Selection } from 'react-stately';
|
package/dist/index.d.ts
CHANGED
|
@@ -1543,6 +1543,7 @@ declare enum OnBoardingScreenOptions {
|
|
|
1543
1543
|
START = "START",
|
|
1544
1544
|
MULTI_SELECT = "MULTI_SELECT",
|
|
1545
1545
|
SINGLE_SELECT = "SINGLE_SELECT",
|
|
1546
|
+
SINGLE_IMAGE_SELECT = "SINGLE_IMAGE_SELECT",
|
|
1546
1547
|
INFO = "INFO",
|
|
1547
1548
|
LOADER = "LOADER",
|
|
1548
1549
|
REVIEWS = "REVIEWS",
|
|
@@ -1559,6 +1560,9 @@ type OnBoardingScreenOptionType = {
|
|
|
1559
1560
|
isDefault?: boolean;
|
|
1560
1561
|
filtrationAnswerId?: string;
|
|
1561
1562
|
};
|
|
1563
|
+
type OnBoardingScreenOptionWithImageType = OnBoardingScreenOptionType & {
|
|
1564
|
+
image?: ResponseFileType | null;
|
|
1565
|
+
};
|
|
1562
1566
|
type OnBoardingScreenButtonType = {
|
|
1563
1567
|
buttonText?: string | null;
|
|
1564
1568
|
buttonColor?: string | null;
|
|
@@ -1625,8 +1629,13 @@ type OnBoardingMultiSelectScreenType = OnBoardingBaseScreenType & OnBoardingScre
|
|
|
1625
1629
|
options: OnBoardingScreenOptionType[];
|
|
1626
1630
|
};
|
|
1627
1631
|
type OnBoardingSingleSelectScreenType = OnBoardingBaseScreenType & OnBoardingScreenDescriptionType & {
|
|
1632
|
+
legalText?: string;
|
|
1628
1633
|
options: OnBoardingScreenOptionType[];
|
|
1629
1634
|
};
|
|
1635
|
+
type OnBoardingSingleImageSelectScreenType = OnBoardingBaseScreenType & OnBoardingScreenDescriptionType & {
|
|
1636
|
+
legalText?: string;
|
|
1637
|
+
options: OnBoardingScreenOptionWithImageType[];
|
|
1638
|
+
};
|
|
1630
1639
|
type OnBoardingLoaderScreenType = OnBoardingBaseScreenType & {
|
|
1631
1640
|
title?: string | null;
|
|
1632
1641
|
additionalText?: string;
|
|
@@ -1968,7 +1977,8 @@ type AutoComplete<T extends string> = T | (string & {});
|
|
|
1968
1977
|
|
|
1969
1978
|
declare enum ListBoxSelectionType {
|
|
1970
1979
|
Checkbox = "checkbox",
|
|
1971
|
-
Radio = "radio"
|
|
1980
|
+
Radio = "radio",
|
|
1981
|
+
Image = "image"
|
|
1972
1982
|
}
|
|
1973
1983
|
type VariantType = 'default' | 'blue';
|
|
1974
1984
|
type ListBoxProps<T> = AriaListBoxProps<T> & {
|
|
@@ -1976,11 +1986,17 @@ type ListBoxProps<T> = AriaListBoxProps<T> & {
|
|
|
1976
1986
|
enableSelection?: boolean;
|
|
1977
1987
|
selectedIconProps?: IconProps$D;
|
|
1978
1988
|
selectionPosition?: 'start' | 'end';
|
|
1989
|
+
selectionImageClassNames?: {
|
|
1990
|
+
label?: string;
|
|
1991
|
+
arrowIcon?: string;
|
|
1992
|
+
bottomContainer?: string;
|
|
1993
|
+
} | null;
|
|
1979
1994
|
className?: string;
|
|
1980
1995
|
variant?: VariantType;
|
|
1996
|
+
image?: ResponseFileType;
|
|
1981
1997
|
};
|
|
1982
1998
|
|
|
1983
|
-
declare function ListBox<T extends Record<string, unknown>>({ selectedIconProps, type, selectionPosition, enableSelection, className, variant, ...props }: ListBoxProps<T>): JSX.Element;
|
|
1999
|
+
declare function ListBox<T extends Record<string, unknown>>({ selectedIconProps, type, selectionPosition, enableSelection, className, selectionImageClassNames, variant, ...props }: ListBoxProps<T>): JSX.Element;
|
|
1984
2000
|
|
|
1985
2001
|
type ListOptionsProps = {
|
|
1986
2002
|
item: Node<unknown>;
|
|
@@ -1993,6 +2009,12 @@ type ListOptionsProps = {
|
|
|
1993
2009
|
selectionPosition?: 'start' | 'end';
|
|
1994
2010
|
enableSelection?: boolean;
|
|
1995
2011
|
variant?: VariantType;
|
|
2012
|
+
image?: ResponseFileType | null;
|
|
2013
|
+
selectionImageClassNames?: {
|
|
2014
|
+
label?: string;
|
|
2015
|
+
arrowIcon?: string;
|
|
2016
|
+
bottomContainer?: string;
|
|
2017
|
+
} | null;
|
|
1996
2018
|
};
|
|
1997
2019
|
type ListBoxItemProps = {
|
|
1998
2020
|
icon?: React$1.ReactNode;
|
|
@@ -2002,9 +2024,15 @@ type ListBoxItemProps = {
|
|
|
2002
2024
|
value?: string;
|
|
2003
2025
|
children: React$1.ReactNode;
|
|
2004
2026
|
className?: string;
|
|
2027
|
+
sselectionImageClassNames?: {
|
|
2028
|
+
label?: string;
|
|
2029
|
+
arrowIcon?: string;
|
|
2030
|
+
bottomContainer?: string;
|
|
2031
|
+
} | null;
|
|
2005
2032
|
customContent?: boolean;
|
|
2006
2033
|
onClick?: HTMLIonItemElement['onclick'];
|
|
2007
2034
|
variant?: VariantType;
|
|
2035
|
+
image?: ResponseFileType | null;
|
|
2008
2036
|
};
|
|
2009
2037
|
|
|
2010
2038
|
declare const ListOption: React$1.ForwardRefExoticComponent<ListOptionsProps & React$1.RefAttributes<HTMLIonItemElement>>;
|
|
@@ -2878,6 +2906,8 @@ declare const IconGlobe: React$1.FC<IconProps$D>;
|
|
|
2878
2906
|
|
|
2879
2907
|
declare const IconAppStoreRating: React$1.FC<IconProps$D>;
|
|
2880
2908
|
|
|
2909
|
+
declare const IconRadioPartial: FC<IconProps$D>;
|
|
2910
|
+
|
|
2881
2911
|
declare const formatByDigits: (value: number) => string;
|
|
2882
2912
|
declare const roundToPrecision: (value: number, decimals?: number) => number;
|
|
2883
2913
|
declare const getDateLocale: (locale: string) => Locale;
|
|
@@ -3311,7 +3341,8 @@ type OnBoardingSingleSelectionScreenPreviewFeatureProps = {
|
|
|
3311
3341
|
onChange?: (value: string) => void;
|
|
3312
3342
|
defaultValues?: string[];
|
|
3313
3343
|
variant?: OnboardingVariant;
|
|
3314
|
-
|
|
3344
|
+
template?: 'radio' | 'image';
|
|
3345
|
+
} & OnBoardingSingleSelectScreenType & OnBoardingSingleImageSelectScreenType;
|
|
3315
3346
|
declare const _default$o: React__default.NamedExoticComponent<OnBoardingSingleSelectionScreenPreviewFeatureProps>;
|
|
3316
3347
|
|
|
3317
3348
|
declare const OnBoardingLoaderScreenPreviewFeature: FC<OnBoardingLoaderScreenType & {
|
|
@@ -4306,4 +4337,4 @@ type SpecialistPreviewWidgetProps = {
|
|
|
4306
4337
|
|
|
4307
4338
|
declare const _default: React__default.NamedExoticComponent<SpecialistPreviewWidgetProps>;
|
|
4308
4339
|
|
|
4309
|
-
export { AcceptAgreementFeature, Action, _default$Y as AlertCard, AllowFilterValueType, AppFooter, _default$X as AppFooter_v2, AppHeader, AppHeaderPage as AppHeaderPageFeature, AppHeader_v2, AppNotSupportedFeature, ArchivedConsultationCard, AutoComplete, Avatar, AvatarProps$1 as AvatarProps, _default$W as Avatar_v2, AvatarProps as Avatar_v2Props, BREAKPOINT_ICON_SIZE, _default$S as Badge, _default$$ as BookingScheduleTime, _default$_ as BookingSpecialistInfo, BreakPointPositionProps, BreakPointPositionResult, Button, Button_v2, CAN_MANAGE_SESSION_TIME_HOURS, COUNTRIES_MAPPER, Calendar, _default$z as CalendarPickerFeature, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$1k as ChatListItem, _default$1i as ChatListSkeleton, _default$1j 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$1b as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$18 as ConsultationModal, _default$D as ConsultationPricingFeature, _default$16 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$14 as DaySlider, DayToRender, DividerProps, DropdownFeature, DrumListPicker, DynamicCommissionValue, _default$10 as EducationCard, _default$1h as EmptyChatList, EmptyChatMessages, EmptyChatModalFeature, _default$19 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$U 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$O as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCalendarNew, IconCalendarWithDot, IconCancel, IconCancelBold, IconCancelRounded, IconCapFilled, IconChat, IconChat3d, IconChat3dSmaller, IconChatFilled, IconChatOutline, IconCheck, IconCheckCircle, IconCheckSmall, IconCheckboxChecked, IconCheckboxCheckedBold, IconCheckboxUnchecked, IconClient, IconClientFilled, IconClose, 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, IconPersonAlert, IconPlay, IconPlus, IconPoweredByStripe, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconProps$D as IconProps, IconQueryStats, IconQuestion, IconRadioButtonChecked, 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$K as Item, _default$R as ItemCard, LabelArrowRedirect, LanguagesList, _default$1o as LetterAvatar, _default$9 as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListButton, ListItemType, _default$H as ListItemWithColumns, _default$L as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$M as Loading, LocaleCurrencyMapper, LouseConnect, MapStatusContractToUIStatus, _default$s as MarkdownContainerFeature, _default$I as MatchProgress, _default$1l as MediaPlayer, MenuFeature, MindlyReview, MindlyReviewFeature, Modal, ModalCalendar, ModalSheet, NEAR_SESSION_TIME_SECONDS, NavigationBar, NewSpecialist, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, ONBOARDING_THEME_DEFAULT_COLORS, OnBoardingBaseScreenType, _default$h as OnBoardingChartScreenPreviewFeature, OnBoardingChartScreenType, _default$j as OnBoardingCompareScreenPreviewFeature, OnBoardingCompareScreenType, _default$k as OnBoardingConfirmScreenPreviewFeature, OnBoardingConfirmScreenType, _default$l as OnBoardingEmailScreenPreviewFeature, OnBoardingEmailScreenType, OnBoardingFlowType, _default$q as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$p as OnBoardingMultiSelectionScreenPreviewFeature, _default$i as OnBoardingPaywallScreenPreviewFeature, OnBoardingPaywallScreenType, _default$n as OnBoardingProgressFeature, _default$m as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenAlertType, OnBoardingScreenBgType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenEmailType, OnBoardingScreenErrorsType, OnBoardingScreenOptionType, OnBoardingScreenOptions, OnBoardingScreenPasswordType, OnBoardingScreenPrivacyType, OnBoardingScreenSkipButtonType, OnBoardingScreenStyleOptions, OnBoardingScreenTranslationsType, OnBoardingScreensType, OnBoardingSingleSelectScreenType, _default$o as OnBoardingSingleSelectionScreenPreviewFeature, _default$r as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OnboardingVariant, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$y as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$A as PaymentSessionsList, _default$1n as PersonDateTimeCard, _default$T as Picture, PoweredByStripeFeature, _default$7 as ProfileInformation, _default$12 as ProfileView, _default$a as ProgressBar, ProgressBarDashed, _default$N as ProgressBar_v2, ProgressRangeProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$P as Rating, RatingCircleWrapper, _default$15 as ReSchedule, ReScheduleSuccess, Refresher, ResponseFileType, ReviewCard, _default$x as ReviewCardFeature, ReviewListFeature, ReviewStatistics, ReviewSubscriptionSessionFeature, ReviewSubscriptionSessionFeatureProps, ReviewSwiperSection, ReviewTrialSessionFeature, ReviewTrialSessionFeatureProps, ReviewsCardFeatureSkeleton, ReviewsSummary, RoundButton, RowItemType, RowSelect, RowSelectProps, Rule, SIZES, SOON_SESSION_TIME_SECONDS, _default$v as ScreenDrumPickerFormFeature, ScreenInput, _default$w as ScreenInputFormFeature, ScreenInputUpdateFeature, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$1m as SelectImpressionEmoji, SelectItemType, _default$t as SelectWithSearchFormFeature, Session, SessionDetailWidget, SessionPaymentsWidget, SessionPreviewFeature, SessionReview$1 as SessionReview, SessionTime, SessionVariant, SessionsWidget as SessionsListWidget, SessionsWidgetProps, Sex, ShareModalFeature, ShortCurrencySignByLocale, ShortTranscriptionCurrencySignByLocale, _default$G as ShowMore, _default$1a as SignUpSessionButton, _default$17 as SignUpSessionModal, SizeValues, Skeleton, _default$V as Skeleton_v2, _default$F as SlotsGrid, _default$E as SlotsGridItem, SolidInput, Specialist, _default$11 as SpecialistAbout, SpecialistAreaList as SpecialistAreaListFeature, SpecialistCard, SpecialistCardListWidget, _default$4 as SpecialistCardWidget, SpecialistConsultation, SpecialistConsultationPayment, _default$1 as SpecialistDetailWidget, SpecialistDetailWidgetSkeleton, SpecialistEducation, _default$1f as SpecialistEducationCard, SpecialistEducationsFeature, SpecialistInfoColumnFeature, SpecialistLangs, _default$6 as SpecialistMatch, SpecialistOrderType, SpecialistPaymentCardProps, _default$C as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$B as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default$2 as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$3 as SpecialistPaymentWidget, SpecialistPaymentWidgetType, SpecialistPreviewFeature, SpecialistPreviewListWidget, _default as SpecialistPreviewWidget, SpecialistProfileNotFound, _default$1e 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, TariffFeature, _default$u as TextAreaFormFeature, _default$f as TextInput, _default$g as TextWithClampFeature, _default$1g as Textarea, _default$Q as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$Z as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UserType, UsersPsychologistScrollList, VariantType, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$J as Video, _default$1c as VideoCallInfo, _default$1d as VideoPlayer, VideoProvider, _default$13 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 };
|
|
4340
|
+
export { AcceptAgreementFeature, Action, _default$Y as AlertCard, AllowFilterValueType, AppFooter, _default$X as AppFooter_v2, AppHeader, AppHeaderPage as AppHeaderPageFeature, AppHeader_v2, AppNotSupportedFeature, ArchivedConsultationCard, AutoComplete, Avatar, AvatarProps$1 as AvatarProps, _default$W as Avatar_v2, AvatarProps as Avatar_v2Props, BREAKPOINT_ICON_SIZE, _default$S as Badge, _default$$ as BookingScheduleTime, _default$_ as BookingSpecialistInfo, BreakPointPositionProps, BreakPointPositionResult, Button, Button_v2, CAN_MANAGE_SESSION_TIME_HOURS, COUNTRIES_MAPPER, Calendar, _default$z as CalendarPickerFeature, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$1k as ChatListItem, _default$1i as ChatListSkeleton, _default$1j 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$1b as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$18 as ConsultationModal, _default$D as ConsultationPricingFeature, _default$16 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$14 as DaySlider, DayToRender, DividerProps, DropdownFeature, DrumListPicker, DynamicCommissionValue, _default$10 as EducationCard, _default$1h as EmptyChatList, EmptyChatMessages, EmptyChatModalFeature, _default$19 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$U 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$O as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCalendarNew, IconCalendarWithDot, IconCancel, IconCancelBold, IconCancelRounded, IconCapFilled, IconChat, IconChat3d, IconChat3dSmaller, IconChatFilled, IconChatOutline, IconCheck, IconCheckCircle, IconCheckSmall, IconCheckboxChecked, IconCheckboxCheckedBold, IconCheckboxUnchecked, IconClient, IconClientFilled, IconClose, 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, 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$K as Item, _default$R as ItemCard, LabelArrowRedirect, LanguagesList, _default$1o as LetterAvatar, _default$9 as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListButton, ListItemType, _default$H as ListItemWithColumns, _default$L as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$M as Loading, LocaleCurrencyMapper, LouseConnect, MapStatusContractToUIStatus, _default$s as MarkdownContainerFeature, _default$I as MatchProgress, _default$1l as MediaPlayer, MenuFeature, MindlyReview, MindlyReviewFeature, Modal, ModalCalendar, ModalSheet, NEAR_SESSION_TIME_SECONDS, NavigationBar, NewSpecialist, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, ONBOARDING_THEME_DEFAULT_COLORS, OnBoardingBaseScreenType, _default$h as OnBoardingChartScreenPreviewFeature, OnBoardingChartScreenType, _default$j as OnBoardingCompareScreenPreviewFeature, OnBoardingCompareScreenType, _default$k as OnBoardingConfirmScreenPreviewFeature, OnBoardingConfirmScreenType, _default$l as OnBoardingEmailScreenPreviewFeature, OnBoardingEmailScreenType, OnBoardingFlowType, _default$q as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$p as OnBoardingMultiSelectionScreenPreviewFeature, _default$i as OnBoardingPaywallScreenPreviewFeature, OnBoardingPaywallScreenType, _default$n as OnBoardingProgressFeature, _default$m as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenAlertType, OnBoardingScreenBgType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenEmailType, OnBoardingScreenErrorsType, OnBoardingScreenOptionType, OnBoardingScreenOptionWithImageType, OnBoardingScreenOptions, OnBoardingScreenPasswordType, OnBoardingScreenPrivacyType, OnBoardingScreenSkipButtonType, OnBoardingScreenStyleOptions, OnBoardingScreenTranslationsType, OnBoardingScreensType, OnBoardingSingleImageSelectScreenType, OnBoardingSingleSelectScreenType, _default$o as OnBoardingSingleSelectionScreenPreviewFeature, _default$r as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OnboardingVariant, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$y as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$A as PaymentSessionsList, _default$1n as PersonDateTimeCard, _default$T as Picture, PoweredByStripeFeature, _default$7 as ProfileInformation, _default$12 as ProfileView, _default$a as ProgressBar, ProgressBarDashed, _default$N as ProgressBar_v2, ProgressRangeProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$P as Rating, RatingCircleWrapper, _default$15 as ReSchedule, ReScheduleSuccess, Refresher, ResponseFileType, ReviewCard, _default$x as ReviewCardFeature, ReviewListFeature, ReviewStatistics, ReviewSubscriptionSessionFeature, ReviewSubscriptionSessionFeatureProps, ReviewSwiperSection, ReviewTrialSessionFeature, ReviewTrialSessionFeatureProps, ReviewsCardFeatureSkeleton, ReviewsSummary, RoundButton, RowItemType, RowSelect, RowSelectProps, Rule, SIZES, SOON_SESSION_TIME_SECONDS, _default$v as ScreenDrumPickerFormFeature, ScreenInput, _default$w as ScreenInputFormFeature, ScreenInputUpdateFeature, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$1m as SelectImpressionEmoji, SelectItemType, _default$t as SelectWithSearchFormFeature, Session, SessionDetailWidget, SessionPaymentsWidget, SessionPreviewFeature, SessionReview$1 as SessionReview, SessionTime, SessionVariant, SessionsWidget as SessionsListWidget, SessionsWidgetProps, Sex, ShareModalFeature, ShortCurrencySignByLocale, ShortTranscriptionCurrencySignByLocale, _default$G as ShowMore, _default$1a as SignUpSessionButton, _default$17 as SignUpSessionModal, SizeValues, Skeleton, _default$V as Skeleton_v2, _default$F as SlotsGrid, _default$E as SlotsGridItem, SolidInput, Specialist, _default$11 as SpecialistAbout, SpecialistAreaList as SpecialistAreaListFeature, SpecialistCard, SpecialistCardListWidget, _default$4 as SpecialistCardWidget, SpecialistConsultation, SpecialistConsultationPayment, _default$1 as SpecialistDetailWidget, SpecialistDetailWidgetSkeleton, SpecialistEducation, _default$1f as SpecialistEducationCard, SpecialistEducationsFeature, SpecialistInfoColumnFeature, SpecialistLangs, _default$6 as SpecialistMatch, SpecialistOrderType, SpecialistPaymentCardProps, _default$C as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$B as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default$2 as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$3 as SpecialistPaymentWidget, SpecialistPaymentWidgetType, SpecialistPreviewFeature, SpecialistPreviewListWidget, _default as SpecialistPreviewWidget, SpecialistProfileNotFound, _default$1e 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, TariffFeature, _default$u as TextAreaFormFeature, _default$f as TextInput, _default$g as TextWithClampFeature, _default$1g as Textarea, _default$Q as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$Z as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UserType, UsersPsychologistScrollList, VariantType, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$J as Video, _default$1c as VideoCallInfo, _default$1d as VideoPlayer, VideoProvider, _default$13 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 };
|
package/package.json
CHANGED
|
@@ -41,6 +41,8 @@ export default {
|
|
|
41
41
|
black: '#212121',
|
|
42
42
|
brand: {
|
|
43
43
|
client: {
|
|
44
|
+
celestialBlueSuperLight:
|
|
45
|
+
'rgba(var(--color-brand-client-celestial-blue-super-light) / <alpha-value>)',
|
|
44
46
|
celestialBlue:
|
|
45
47
|
'rgba(var(--color-brand-client-celestial-blue) / <alpha-value>)',
|
|
46
48
|
celestialBlueDarker:
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
--color-info-light-red-not-red: 255 231 224;
|
|
20
20
|
--color-brand-client-celestial-blue: 2 156 238;
|
|
21
21
|
--color-brand-client-celestial-blue-darker: 2 136 209;
|
|
22
|
+
--color-brand-client-celestial-blue-super-light: 234 248 255;
|
|
22
23
|
|
|
23
24
|
/* badge variables start */
|
|
24
25
|
/* badges attentions */
|