@mindly/ui-components 7.5.2 → 7.5.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/dist/cjs/configs/tailwind/colors.d.ts +1 -0
  2. package/dist/cjs/index.js +7 -7
  3. package/dist/cjs/lib2/features/Charts/ChartAreaFeature/components/YouAreHereCustomizedLabel.d.ts +3 -0
  4. package/dist/cjs/lib2/features/Charts/ChartAreaFeature/components/assets/YouAreHereEnIcon.d.ts +1 -0
  5. package/dist/cjs/lib2/features/Charts/ChartAreaFeature/components/assets/YouAreHereEsIcon.d.ts +1 -0
  6. package/dist/cjs/lib2/features/Charts/ChartAreaFeature/components/assets/YouAreHerePlIcon.d.ts +1 -0
  7. package/dist/cjs/lib2/features/Charts/ChartAreaFeature/components/assets/YouAreHereUkIcon.d.ts +1 -0
  8. package/dist/cjs/lib2/features/Charts/ChartAreaFeature/constants.d.ts +1 -0
  9. package/dist/cjs/lib2/features/Charts/components/DotLabel.d.ts +4 -0
  10. package/dist/cjs/lib2/features/Charts/types.d.ts +18 -1
  11. package/dist/cjs/lib2/features/index.d.ts +1 -0
  12. package/dist/cjs/lib2/shared/assets/icons/IconAddCalendar.d.ts +3 -0
  13. package/dist/cjs/lib2/shared/assets/icons/IconBlock.d.ts +3 -0
  14. package/dist/cjs/lib2/shared/assets/icons/IconCreditScore.d.ts +3 -0
  15. package/dist/cjs/lib2/shared/assets/icons/index.d.ts +3 -0
  16. package/dist/cjs/lib2/shared/ui/Slider/Slider.d.ts +3 -0
  17. package/dist/cjs/lib2/shared/ui/Slider/index.d.ts +1 -0
  18. package/dist/cjs/lib2/shared/ui/Slider/types.d.ts +6 -0
  19. package/dist/cjs/lib2/shared/ui/index.d.ts +1 -0
  20. package/dist/esm/configs/tailwind/colors.d.ts +1 -0
  21. package/dist/esm/index.js +8 -8
  22. package/dist/esm/lib2/features/Charts/ChartAreaFeature/components/YouAreHereCustomizedLabel.d.ts +3 -0
  23. package/dist/esm/lib2/features/Charts/ChartAreaFeature/components/assets/YouAreHereEnIcon.d.ts +1 -0
  24. package/dist/esm/lib2/features/Charts/ChartAreaFeature/components/assets/YouAreHereEsIcon.d.ts +1 -0
  25. package/dist/esm/lib2/features/Charts/ChartAreaFeature/components/assets/YouAreHerePlIcon.d.ts +1 -0
  26. package/dist/esm/lib2/features/Charts/ChartAreaFeature/components/assets/YouAreHereUkIcon.d.ts +1 -0
  27. package/dist/esm/lib2/features/Charts/ChartAreaFeature/constants.d.ts +1 -0
  28. package/dist/esm/lib2/features/Charts/components/DotLabel.d.ts +4 -0
  29. package/dist/esm/lib2/features/Charts/types.d.ts +18 -1
  30. package/dist/esm/lib2/features/index.d.ts +1 -0
  31. package/dist/esm/lib2/shared/assets/icons/IconAddCalendar.d.ts +3 -0
  32. package/dist/esm/lib2/shared/assets/icons/IconBlock.d.ts +3 -0
  33. package/dist/esm/lib2/shared/assets/icons/IconCreditScore.d.ts +3 -0
  34. package/dist/esm/lib2/shared/assets/icons/index.d.ts +3 -0
  35. package/dist/esm/lib2/shared/ui/Slider/Slider.d.ts +3 -0
  36. package/dist/esm/lib2/shared/ui/Slider/index.d.ts +1 -0
  37. package/dist/esm/lib2/shared/ui/Slider/types.d.ts +6 -0
  38. package/dist/esm/lib2/shared/ui/index.d.ts +1 -0
  39. package/dist/index.d.ts +42 -3
  40. package/package.json +1 -1
  41. package/src/configs/tailwind/colors.ts +2 -0
  42. package/src/lib2/shared/css/tailwind.css +1 -0
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ declare const _default: React.MemoExoticComponent<(props: any) => import("react/jsx-runtime").JSX.Element | null>;
3
+ export default _default;
@@ -0,0 +1 @@
1
+ export declare const YouAreHereEnIcon: () => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1 @@
1
+ export declare const YouAreHereEsIcon: () => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1 @@
1
+ export declare const YouAreHerePlIcon: () => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1 @@
1
+ export declare const YouAreHereUkIcon: () => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1 @@
1
+ export declare const X_AXIS_BAR_HEIGHT = 40;
@@ -1,5 +1,6 @@
1
1
  import { FC } from 'react';
2
2
  import { OnBoardingThemeV2Type, OnboardingVariant } from '../../../shared';
3
+ import { TypographyVariantsEnum } from '../../../shared/ui/Typography/types';
3
4
  type DotLabelProps = {
4
5
  label: string;
5
6
  x: number;
@@ -14,6 +15,9 @@ type DotLabelProps = {
14
15
  fillColor?: string;
15
16
  placement?: 'top' | 'inner';
16
17
  chartLabelsId: string;
18
+ labelTypographyVariant?: TypographyVariantsEnum;
19
+ labelClassName?: string;
20
+ isOnlyTopPlacement?: boolean;
17
21
  };
18
22
  declare const DotLabel: FC<DotLabelProps>;
19
23
  export default DotLabel;
@@ -1,3 +1,5 @@
1
+ import { SupportedLocales } from '../../shared';
2
+ import { TypographyVariantsEnum } from '../../shared/ui/Typography/types';
1
3
  export type ChartType = 'area' | 'lines';
2
4
  export type ChartData<T = ChartType> = T extends 'area' ? {
3
5
  chartType: 'area';
@@ -11,11 +13,26 @@ export type ChartData<T = ChartType> = T extends 'area' ? {
11
13
  strokeColor?: string;
12
14
  fillColor?: string;
13
15
  data: {
14
- label: string;
16
+ label?: string;
15
17
  tooltip?: string;
16
18
  dotBorderColor?: string;
19
+ dotBorderRadius?: number;
17
20
  value: number;
21
+ template?: 'dashed';
18
22
  }[];
23
+ lineType?: 'bump' | 'monotone';
24
+ strokeDasharray?: string;
25
+ strokeLinecap?: 'square' | 'inherit' | 'round' | 'butt';
26
+ showHorizontalGrid?: boolean;
27
+ labelFillColor?: string;
28
+ labelTypographyVariant?: TypographyVariantsEnum;
29
+ xAxisLabelClassName?: string;
30
+ labelClassName?: string;
31
+ yAxisDomain?: string[];
32
+ isOnlyTopPlacement?: boolean;
33
+ showCustomizedLabel?: boolean;
34
+ isAnimationActive?: boolean;
35
+ locale?: SupportedLocales;
19
36
  } : {
20
37
  chartType: 'lines';
21
38
  strokeWidth?: number;
@@ -54,3 +54,4 @@ export * from './SelectionListFeature';
54
54
  export * from './CoupleTherapySheetModalFeature';
55
55
  export * from './PromptCardsFeature';
56
56
  export * from './ExploreCardSwiperFeature';
57
+ export * from './Charts';
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ import { IconProps } from '../../types/iconProps';
3
+ export declare const IconAddCalendar: React.FC<IconProps>;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ import { IconProps } from '../../types';
3
+ export declare const IconBlock: React.FC<IconProps>;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ import { IconProps } from '../../types/iconProps';
3
+ export declare const IconCreditScore: React.FC<IconProps>;
@@ -147,3 +147,6 @@ export * from './IconDivercity';
147
147
  export * from './IconCouple';
148
148
  export * from './IconReschedule';
149
149
  export * from './IconSparklingStars';
150
+ export * from './IconCreditScore';
151
+ export * from './IconAddCalendar';
152
+ export * from './IconBlock';
@@ -0,0 +1,3 @@
1
+ import { SliderProps } from './types';
2
+ declare const Slider: ({ children, ...props }: SliderProps) => import("react/jsx-runtime").JSX.Element;
3
+ export default Slider;
@@ -0,0 +1 @@
1
+ export { default as Slider } from './Slider';
@@ -0,0 +1,6 @@
1
+ /// <reference types="react" />
2
+ import { Settings as SliderSettings } from 'react-slick';
3
+ export type SliderProps = {
4
+ children: React.ReactNode;
5
+ settings?: SliderSettings;
6
+ };
@@ -50,3 +50,4 @@ export * from './Counter';
50
50
  export * from './PromptCard';
51
51
  export * from './ExploreCard';
52
52
  export * from './ProgressCard';
53
+ export * from './Slider';
package/dist/index.d.ts CHANGED
@@ -14,9 +14,9 @@ import { AriaListBoxProps, AriaCalendarProps, DateValue, AriaTabListProps } from
14
14
  import { ToastStateProps, ToastState } from '@react-stately/toast';
15
15
  import { AriaToastRegionProps } from '@react-aria/toast';
16
16
  import { IonSearchbarCustomEvent, SearchbarChangeEventDetail, TextFieldTypes, IonInputCustomEvent, InputChangeEventDetail } from '@ionic/core';
17
+ import { Settings } from 'react-slick';
17
18
  import { User, SignInResult, SignInWithEmailAndPasswordOptions, LinkWithEmailAndPasswordOptions, CreateUserWithEmailAndPasswordOptions, SendPasswordResetEmailOptions } from '@capacitor-firebase/authentication';
18
19
  import { MarkdownToJSX } from 'markdown-to-jsx';
19
- import { Settings } from 'react-slick';
20
20
  import { SwiperRef, SwiperProps } from 'swiper/react';
21
21
 
22
22
  interface ButtonProps$2 {
@@ -730,11 +730,26 @@ type ChartData<T = ChartType> = T extends 'area' ? {
730
730
  strokeColor?: string;
731
731
  fillColor?: string;
732
732
  data: {
733
- label: string;
733
+ label?: string;
734
734
  tooltip?: string;
735
735
  dotBorderColor?: string;
736
+ dotBorderRadius?: number;
736
737
  value: number;
738
+ template?: 'dashed';
737
739
  }[];
740
+ lineType?: 'bump' | 'monotone';
741
+ strokeDasharray?: string;
742
+ strokeLinecap?: 'square' | 'inherit' | 'round' | 'butt';
743
+ showHorizontalGrid?: boolean;
744
+ labelFillColor?: string;
745
+ labelTypographyVariant?: TypographyVariantsEnum;
746
+ xAxisLabelClassName?: string;
747
+ labelClassName?: string;
748
+ yAxisDomain?: string[];
749
+ isOnlyTopPlacement?: boolean;
750
+ showCustomizedLabel?: boolean;
751
+ isAnimationActive?: boolean;
752
+ locale?: SupportedLocales;
738
753
  } : {
739
754
  chartType: 'lines';
740
755
  strokeWidth?: number;
@@ -1914,6 +1929,13 @@ interface ProgressCardProps {
1914
1929
 
1915
1930
  declare const _default$X: React$1.NamedExoticComponent<ProgressCardProps>;
1916
1931
 
1932
+ type SliderProps = {
1933
+ children: React.ReactNode;
1934
+ settings?: Settings;
1935
+ };
1936
+
1937
+ declare const Slider: ({ children, ...props }: SliderProps) => react_jsx_runtime.JSX.Element;
1938
+
1917
1939
  declare enum appThemes {
1918
1940
  client = "client",
1919
1941
  specialist = "specialist"
@@ -2543,6 +2565,12 @@ declare const IconReschedule: React$1.FC<IconProps$H>;
2543
2565
 
2544
2566
  declare const IconSparklingStars: React$1.FC<IconProps$H>;
2545
2567
 
2568
+ declare const IconCreditScore: React$1.FC<IconProps$H>;
2569
+
2570
+ declare const IconAddCalendar: React$1.FC<IconProps$H>;
2571
+
2572
+ declare const IconBlock: React$1.FC<IconProps$H>;
2573
+
2546
2574
  declare const formatByDigits: (value: number) => string;
2547
2575
  declare const roundToPrecision: (value: number, decimals?: number) => number;
2548
2576
  declare const getDateLocale: (locale: SupportedLocales) => Locale;
@@ -3600,6 +3628,17 @@ type ExploreCardSwiperFeatureProps = React.RefAttributes<SwiperRef> & SwiperProp
3600
3628
 
3601
3629
  declare const ExploreCardSwiperFeature: React$1.ForwardRefExoticComponent<Omit<ExploreCardSwiperFeatureProps, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
3602
3630
 
3631
+ type ChartAreaProps = Omit<ChartData<'area'>, 'chartType'> & {
3632
+ variant?: OnboardingVariant;
3633
+ onboardingTheme?: OnBoardingThemeV2Type;
3634
+ };
3635
+ declare const ChartAreaFeature: FC<ChartAreaProps>;
3636
+
3637
+ type ChartLinesProps = Omit<ChartData<'lines'>, 'chartType'> & {
3638
+ locale: SupportedLocales;
3639
+ };
3640
+ declare const ChartLines: FC<ChartLinesProps>;
3641
+
3603
3642
  type SupportedCountryLocale = string;
3604
3643
  type Tabs = {
3605
3644
  behavior: 'tax-country' | 'profile-lang';
@@ -4757,4 +4796,4 @@ type RowSelectProps = {
4757
4796
 
4758
4797
  declare const RowSelect: FC<RowSelectProps>;
4759
4798
 
4760
- export { AcceptAgreementFeature, Action, _default$1g as AlertCard, AllowFilterValueType, AppFooter, _default$1f as AppFooter_v2, AppHeader, AppHeaderPage as AppHeaderPageFeature, AppHeader_v2, AppNotSupportedFeature, AuthContext, AuthProvider, AutoComplete, Avatar, AvatarProps$1 as AvatarProps, _default$1e as Avatar_v2, AvatarProps as Avatar_v2Props, BREAKPOINT_ICON_SIZE, _default$1a as Badge, _default$c as BookingScheduleTime, _default$b as BookingSpecialistInfo, BreakPointPositionProps, BreakPointPositionResult, Button, Button_v2, CAN_MANAGE_SESSION_TIME_HOURS, COUNTRIES_MAPPER, CSSVarStyles, Calendar, _default$Q as CalendarPickerFeature, CancelSession, CardModal, ChangeLanguageModal, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$6 as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingComponentProps, CircleRatingContent, CircleRatingContext, CircleRatingContextData, CircleRatingContextProps, CircleRatingDataProps, CircleRatingDataResult, CircleRatingLegendProps, CircleRatingProvider, CircleRatingRange, CircleRatingSize, ClientCanAction, ClientCanParams, ClientSpecialistContractStatusEnum, CollapsableText, ConditionRulesType, Consultation, _default$o as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$l as ConsultationModal, _default$U as ConsultationPricingFeature, _default$j as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentRendererProps, ContractDataFeature, ContractStatusEnum, ContentTree as ContractTreeFeature, CountdownTimerFeature, Counter, CounterProps, CountryOfOriginModal, CoupleTherapySheetModalFeature, CoupleTherapySheetModalFeatureProps, CurrencyLocaleMapper, CurrencySignByLocale, CustomButton, _default$7 as CustomCheckbox, CustomRadioButton, _default$8 as CustomSelect, _default$9 as CustomTextarea, DatePicker, _default$h as DaySlider, Divider, DividerProps, DropdownFeature, DrumListPicker, DynamicCommissionValue, _default$d as EducationCard, EmptyChatModalFeature, _default$m as EmptyConsultations, EmptyList, EmptySpecialistListFeature, ErrorCardFeature, _default$Y as ExploreCard, ExploreCardData, ExploreCardProps, ExploreCardSwiperFeature, ExploreCardSwiperFeatureProps, FilterFeatureProps, FilterItem, FilterItemBoolean, FilterItemChips, FilterItemRange, FilterItemSelect, FilterOption, FilterOptionValue, FilterValue, FiltersWidget, FiltersWidgetProps, FirstChatMessageModalFeature, _default$3 as Flag, FlagTypes, _default$1c as Flag_v2, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, ISpecialistReview, IconAddModerator, IconAlignHorizontalTextCenter, IconAlignHorizontalTextLeft, IconAlignHorizontalTextRight, IconAmEx, IconAppStoreRating, IconApple, IconApplePay, IconArrowDown, IconArrowLeft, IconArrowRange, IconArrowRight, IconArrowTopRight, IconArrowUp, IconAttachMoney, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$16 as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCalendarNew, IconCalendarWithDot, IconCancel, IconCancelBold, IconCancelRounded, IconCapFilled, IconChart, IconChat, IconChat3d, IconChat3dSmaller, IconChatFilled, IconChatOutline, IconCheck, IconCheckCircle, IconCheckSmall, IconCheckboxChecked, IconCheckboxCheckedBold, IconCheckboxThinUnchecked, IconCheckboxUnchecked, IconClient, IconClientFilled, IconClose, IconCompare, IconContract, IconCopy, IconCouple, IconCreditCard, IconDelete, IconDivercity, IconDivider, IconDocument, IconDot, IconDoubleArrow, IconEcgHeart, IconEdit, IconEditCalendar, IconEmptyList, IconEventBusy, IconExperience, IconEye, IconEyeOff, IconFilters, IconGallery, IconGift, IconGiftNew, IconGlobe, IconGoogle, IconGooglePay, IconHeart, IconHome, IconIdCard, IconInfo, IconInvisible, IconInvoice, IconLanguage, IconLeaderboard, IconLeftArrow, IconLetter, IconLink, IconLock, IconLogout, IconMaestro, IconManageAccounts, IconMastercard, IconMatching, IconMindly, IconMindlyColored, IconMindlyMini, IconMinus, IconMooving, IconMoreVertical, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPaperPencil, IconPause, IconPaywall, IconPersonAlert, IconPlay, IconPlus, IconPoweredByStripe, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconProps$H as IconProps, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconRadioPartial, IconReceipt, IconReceiptLong, IconRenew, IconReschedule, IconResume, IconReviewSessionSubscription, IconReviewSessionTrial, IconSchedule, IconSchema, IconSearch, IconSecure, IconSend, IconSettings, IconShare, IconSort, IconSparklingStars, IconSpecialistsEnded, IconSpinner, IconStar, IconStarFilled, IconStudyHat, IconStylus, IconSuccess, IconSwitch, IconText, IconTime, IconTimeAdd, IconUnmute, IconUser, IconUserNotFound, IconVerifiedUser, IconVisa, IconVisible, IconWarning, ImageInput, ImageWithFallback, Input, InputSearch, _default$12 as Item, _default$19 as ItemCard, LabelArrowRedirect, _default$1k as LetterAvatar, _default$4 as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListItemType, _default$$ as ListItemWithColumns, _default$13 as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$14 as Loading, LocaleCurrencyMapper, MapStatusContractToUIStatus, _default$J as MarkdownContainerFeature, _default$10 as MatchProgress, _default$1j as MediaPlayer, MenuFeature, MindlyReview, MindlyReviewFeature, ModalSheet, NEAR_SESSION_TIME_SECONDS, NewSpecialist, NoInternetConnection, NotSupportModal, ONBOARDING_THEME_DEFAULT_COLORS, OnBoardingAreasOfWorkSelectScreenType, OnBoardingBaseScreenType, OnBoardingChartScreenPreviewFeature, OnBoardingChartScreenType, OnBoardingCompareScreenPreviewFeature, OnBoardingCompareScreenType, _default$B as OnBoardingConfirmScreenPreviewFeature, OnBoardingConfirmScreenType, _default$C as OnBoardingEmailScreenPreviewFeature, OnBoardingEmailScreenType, OnBoardingFlowType, OnBoardingGoalSelectScreenType, _default$A as OnBoardingGoalSelectionScreenPreviewFeature, OnBoardingGraphScreenPreviewFeature, OnBoardingGraphScreenType, _default$H as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$G as OnBoardingMultiSelectionScreenPreviewFeature, OnBoardingPaywallScreenPreviewFeature, OnBoardingPaywallScreenType, _default$E as OnBoardingProgressFeature, OnBoardingProgressSettingsScreenType, _default$D as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenAlertType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenEmailType, OnBoardingScreenErrorsType, OnBoardingScreenOptionType, OnBoardingScreenOptionWithScaleType, OnBoardingScreenOptions, OnBoardingScreenPasswordType, OnBoardingScreenPrivacyType, OnBoardingScreenProgressType, OnBoardingScreenSkipButtonType, OnBoardingScreenStyleOptions, OnBoardingScreenSubgoalButtonType, OnBoardingScreenTranslationsType, OnBoardingScreensType, OnBoardingSingleImageSelectScreenType, OnBoardingSingleRoundImageSelectScreenType, OnBoardingSingleScaleSelectScreenType, OnBoardingSingleSelectScreenType, _default$F as OnBoardingSingleSelectionScreenPreviewFeature, OnBoardingSpecializationSelectScreenType, _default$I as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OnBoardingThemeV2Type, OnboardingProgressTemplate, OnboardingVariant, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$P as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$R as PaymentSessionsList, PayoutCurrencySignByLocale, PayoutShortCurrencySignByLocale, _default$1b as Picture, PoweredByStripeFeature, _default$2 as ProfileInformation, _default$f as ProfileView, _default$5 as ProgressBar, ProgressBarDashed, _default$15 as ProgressBar_v2, _default$X as ProgressCard, ProgressCardProps, ProgressRangeProps, _default$Z as PromptCard, PromptCardData, PromptCardProps, _default$x as PromptCardsFeature, PromptCardsFeatureProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$17 as Rating, RatingCircleVariant, RatingCircleWrapper, _default$i as ReSchedule, ReScheduleSuccess, Refresher, ResponseFileType, ReviewCard, _default$O as ReviewCardFeature, ReviewListFeature, ReviewStatistics, ReviewSubscriptionSessionFeature, ReviewSubscriptionSessionFeatureProps, ReviewSwiperSection, ReviewTrialSessionFeature, ReviewTrialSessionFeatureProps, ReviewsCardFeatureSkeleton, ReviewsSummary, RoundButton, RowItemType, RowSelect, RowSelectProps, Rule, SIZES, SOON_SESSION_TIME_SECONDS, Schedule, ScheduleDate, ScheduleSlot, _default$M as ScreenDrumPickerFormFeature, ScreenInput, _default$N as ScreenInputFormFeature, ScreenInputUpdateFeature, SectionHeading, Segment, SegmentColor, SegmentType, SelectItemType, _default$K as SelectWithSearchFormFeature, _default$y as SelectionListFeature, Session, SessionDetailWidget, SessionPaymentsWidget, SessionPreviewFeature, SessionReview$1 as SessionReview, SessionTime, SessionVariant, SessionsWidget as SessionsListWidget, SessionsWidgetProps, Sex, ShareModalFeature, ShortCurrencySignByLocale, ShortTranscriptionCurrencySignByLocale, _default$_ as ShowMore, _default$n as SignUpSessionButton, _default$k as SignUpSessionModal, SimpleTabs, SimpleTabsProps, SizeValues, Skeleton, _default$1d as Skeleton_v2, _default$W as SlotsGrid, _default$V as SlotsGridItem, SolidInput, Sort, SortDirection, SortKey, SortValue, Specialist, _default$e as SpecialistAbout, SpecialistAreaList as SpecialistAreaListFeature, SpecialistCard, SpecialistCardListWidget, _default$w as SpecialistCardWidget, SpecialistCardSkeleton as SpecialistCardWithScheduleSkeleton, _default$q as SpecialistCardWithScheduleWidget, SpecialistConsultation, SpecialistConsultationPayment, _default$t as SpecialistDetailWidget, SpecialistDetailWidgetSkeleton, SpecialistDetailWithTabsSkeleton, _default$r as SpecialistDetailWithTabsWidget, SpecialistEducation, SpecialistEducationsFeature, SpecialistInfoColumnFeature, SpecialistLangs, _default$1 as SpecialistMatch, SpecialistOrderType, SpecialistPaymentCardProps, _default$T as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$S as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default$u as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$v as SpecialistPaymentWidget, SpecialistPaymentWidgetType, SpecialistPreviewFeature, SpecialistPreviewListWidget, _default$s as SpecialistPreviewWidget, SpecialistProfileNotFound, SpecialistReview$1 as SpecialistReview, SpecialistScheduleFeature, SpecialistScheduleProvider, SpecialistScheduleProviderRef, ScheduleSkeleton as SpecialistScheduleSkeletonFeature, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default as SpecialistStatistic, Spinner, Spinner_v2, StarRating, StatisticsScroll, StripeSupportedCurrency, Subscription, SubscriptionStatuses, SuccessScreen, SuperSpecialist, SupportedCurrency, SupportedLangs, SupportedLocales, SwitchDeviceCard, TabItem, Tabs$1 as Tabs, TabsFeature, TabsFeatureSkeleton, TabsToolbarFeature, Tag, Tariff, TariffFeature, _default$L as TextAreaFormFeature, _default$a as TextInput, _default$z as TextWithClampFeature, _default$18 as Textarea_v2, ThemeProvider, ThemeProviderProps, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$1h as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UserType, VariantType, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$11 as Video, _default$p as VideoCallInfo, _default$1i as VideoPlayer, VideoProvider, _default$g as WorkDirections, appThemes, canManageSession, currentUser, decOfNum, formatByDigits, getCountryKeyByName, getDateLocale, getFilterCount, getFiltersQuery, getFiltersValues, getGMTOffset, getMappedFilterValue, getMockSchedule, getMonthNameInGenitive, getProgressForBreakPoint, getSessionTimeLabel, getSessionVariant, getSessionsByDay, getSessionsByMonth, getSessionsByYear, getSignAgreementsTabs, getSortFromKey, getSortKey, getStartSessionDate, getStartSessionTimestamp, globalAuthState, isClientCan, isFilterSet, isNewSpecialist, isSpecialistActive, isSpecialistBlocked, isSpecialistPublic, isSuperSpecialist, listReviews, mergeRefs, mockSession, mockSessions, mockT, newShade, payoutPriceNormalize, priceNormalize, replaceMarkdownWithReactElements, roundToPrecision, specialist, splitSessions, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDeepCompareEffect, useDeepUpdateEffect, useDelayMount, useDomRef, useElementWidth, useEvent, useIsKeyBoardShown, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useSpecialistScheduleContext, useStopPropagationEvent, useToastContext, useUpdateEffect, useVideoContext, withSpecialistScheduleContext };
4799
+ export { AcceptAgreementFeature, Action, _default$1g as AlertCard, AllowFilterValueType, AppFooter, _default$1f as AppFooter_v2, AppHeader, AppHeaderPage as AppHeaderPageFeature, AppHeader_v2, AppNotSupportedFeature, AuthContext, AuthProvider, AutoComplete, Avatar, AvatarProps$1 as AvatarProps, _default$1e as Avatar_v2, AvatarProps as Avatar_v2Props, BREAKPOINT_ICON_SIZE, _default$1a as Badge, _default$c as BookingScheduleTime, _default$b as BookingSpecialistInfo, BreakPointPositionProps, BreakPointPositionResult, Button, Button_v2, CAN_MANAGE_SESSION_TIME_HOURS, COUNTRIES_MAPPER, CSSVarStyles, Calendar, _default$Q as CalendarPickerFeature, CancelSession, CardModal, ChangeLanguageModal, ChartAreaFeature, ChartLines as ChartLinesFeature, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$6 as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingComponentProps, CircleRatingContent, CircleRatingContext, CircleRatingContextData, CircleRatingContextProps, CircleRatingDataProps, CircleRatingDataResult, CircleRatingLegendProps, CircleRatingProvider, CircleRatingRange, CircleRatingSize, ClientCanAction, ClientCanParams, ClientSpecialistContractStatusEnum, CollapsableText, ConditionRulesType, Consultation, _default$o as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$l as ConsultationModal, _default$U as ConsultationPricingFeature, _default$j as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentRendererProps, ContractDataFeature, ContractStatusEnum, ContentTree as ContractTreeFeature, CountdownTimerFeature, Counter, CounterProps, CountryOfOriginModal, CoupleTherapySheetModalFeature, CoupleTherapySheetModalFeatureProps, CurrencyLocaleMapper, CurrencySignByLocale, CustomButton, _default$7 as CustomCheckbox, CustomRadioButton, _default$8 as CustomSelect, _default$9 as CustomTextarea, DatePicker, _default$h as DaySlider, Divider, DividerProps, DropdownFeature, DrumListPicker, DynamicCommissionValue, _default$d as EducationCard, EmptyChatModalFeature, _default$m as EmptyConsultations, EmptyList, EmptySpecialistListFeature, ErrorCardFeature, _default$Y as ExploreCard, ExploreCardData, ExploreCardProps, ExploreCardSwiperFeature, ExploreCardSwiperFeatureProps, FilterFeatureProps, FilterItem, FilterItemBoolean, FilterItemChips, FilterItemRange, FilterItemSelect, FilterOption, FilterOptionValue, FilterValue, FiltersWidget, FiltersWidgetProps, FirstChatMessageModalFeature, _default$3 as Flag, FlagTypes, _default$1c as Flag_v2, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, ISpecialistReview, IconAddCalendar, IconAddModerator, IconAlignHorizontalTextCenter, IconAlignHorizontalTextLeft, IconAlignHorizontalTextRight, IconAmEx, IconAppStoreRating, IconApple, IconApplePay, IconArrowDown, IconArrowLeft, IconArrowRange, IconArrowRight, IconArrowTopRight, IconArrowUp, IconAttachMoney, IconBeachAccess, IconBlock, IconBookmark, IconBookmarkOutlined, _default$16 as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCalendarNew, IconCalendarWithDot, IconCancel, IconCancelBold, IconCancelRounded, IconCapFilled, IconChart, IconChat, IconChat3d, IconChat3dSmaller, IconChatFilled, IconChatOutline, IconCheck, IconCheckCircle, IconCheckSmall, IconCheckboxChecked, IconCheckboxCheckedBold, IconCheckboxThinUnchecked, IconCheckboxUnchecked, IconClient, IconClientFilled, IconClose, IconCompare, IconContract, IconCopy, IconCouple, IconCreditCard, IconCreditScore, IconDelete, IconDivercity, IconDivider, IconDocument, IconDot, IconDoubleArrow, IconEcgHeart, IconEdit, IconEditCalendar, IconEmptyList, IconEventBusy, IconExperience, IconEye, IconEyeOff, IconFilters, IconGallery, IconGift, IconGiftNew, IconGlobe, IconGoogle, IconGooglePay, IconHeart, IconHome, IconIdCard, IconInfo, IconInvisible, IconInvoice, IconLanguage, IconLeaderboard, IconLeftArrow, IconLetter, IconLink, IconLock, IconLogout, IconMaestro, IconManageAccounts, IconMastercard, IconMatching, IconMindly, IconMindlyColored, IconMindlyMini, IconMinus, IconMooving, IconMoreVertical, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPaperPencil, IconPause, IconPaywall, IconPersonAlert, IconPlay, IconPlus, IconPoweredByStripe, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconProps$H as IconProps, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconRadioPartial, IconReceipt, IconReceiptLong, IconRenew, IconReschedule, IconResume, IconReviewSessionSubscription, IconReviewSessionTrial, IconSchedule, IconSchema, IconSearch, IconSecure, IconSend, IconSettings, IconShare, IconSort, IconSparklingStars, IconSpecialistsEnded, IconSpinner, IconStar, IconStarFilled, IconStudyHat, IconStylus, IconSuccess, IconSwitch, IconText, IconTime, IconTimeAdd, IconUnmute, IconUser, IconUserNotFound, IconVerifiedUser, IconVisa, IconVisible, IconWarning, ImageInput, ImageWithFallback, Input, InputSearch, _default$12 as Item, _default$19 as ItemCard, LabelArrowRedirect, _default$1k as LetterAvatar, _default$4 as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListItemType, _default$$ as ListItemWithColumns, _default$13 as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$14 as Loading, LocaleCurrencyMapper, MapStatusContractToUIStatus, _default$J as MarkdownContainerFeature, _default$10 as MatchProgress, _default$1j as MediaPlayer, MenuFeature, MindlyReview, MindlyReviewFeature, ModalSheet, NEAR_SESSION_TIME_SECONDS, NewSpecialist, NoInternetConnection, NotSupportModal, ONBOARDING_THEME_DEFAULT_COLORS, OnBoardingAreasOfWorkSelectScreenType, OnBoardingBaseScreenType, OnBoardingChartScreenPreviewFeature, OnBoardingChartScreenType, OnBoardingCompareScreenPreviewFeature, OnBoardingCompareScreenType, _default$B as OnBoardingConfirmScreenPreviewFeature, OnBoardingConfirmScreenType, _default$C as OnBoardingEmailScreenPreviewFeature, OnBoardingEmailScreenType, OnBoardingFlowType, OnBoardingGoalSelectScreenType, _default$A as OnBoardingGoalSelectionScreenPreviewFeature, OnBoardingGraphScreenPreviewFeature, OnBoardingGraphScreenType, _default$H as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$G as OnBoardingMultiSelectionScreenPreviewFeature, OnBoardingPaywallScreenPreviewFeature, OnBoardingPaywallScreenType, _default$E as OnBoardingProgressFeature, OnBoardingProgressSettingsScreenType, _default$D as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenAlertType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenEmailType, OnBoardingScreenErrorsType, OnBoardingScreenOptionType, OnBoardingScreenOptionWithScaleType, OnBoardingScreenOptions, OnBoardingScreenPasswordType, OnBoardingScreenPrivacyType, OnBoardingScreenProgressType, OnBoardingScreenSkipButtonType, OnBoardingScreenStyleOptions, OnBoardingScreenSubgoalButtonType, OnBoardingScreenTranslationsType, OnBoardingScreensType, OnBoardingSingleImageSelectScreenType, OnBoardingSingleRoundImageSelectScreenType, OnBoardingSingleScaleSelectScreenType, OnBoardingSingleSelectScreenType, _default$F as OnBoardingSingleSelectionScreenPreviewFeature, OnBoardingSpecializationSelectScreenType, _default$I as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OnBoardingThemeV2Type, OnboardingProgressTemplate, OnboardingVariant, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$P as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$R as PaymentSessionsList, PayoutCurrencySignByLocale, PayoutShortCurrencySignByLocale, _default$1b as Picture, PoweredByStripeFeature, _default$2 as ProfileInformation, _default$f as ProfileView, _default$5 as ProgressBar, ProgressBarDashed, _default$15 as ProgressBar_v2, _default$X as ProgressCard, ProgressCardProps, ProgressRangeProps, _default$Z as PromptCard, PromptCardData, PromptCardProps, _default$x as PromptCardsFeature, PromptCardsFeatureProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$17 as Rating, RatingCircleVariant, RatingCircleWrapper, _default$i as ReSchedule, ReScheduleSuccess, Refresher, ResponseFileType, ReviewCard, _default$O as ReviewCardFeature, ReviewListFeature, ReviewStatistics, ReviewSubscriptionSessionFeature, ReviewSubscriptionSessionFeatureProps, ReviewSwiperSection, ReviewTrialSessionFeature, ReviewTrialSessionFeatureProps, ReviewsCardFeatureSkeleton, ReviewsSummary, RoundButton, RowItemType, RowSelect, RowSelectProps, Rule, SIZES, SOON_SESSION_TIME_SECONDS, Schedule, ScheduleDate, ScheduleSlot, _default$M as ScreenDrumPickerFormFeature, ScreenInput, _default$N as ScreenInputFormFeature, ScreenInputUpdateFeature, SectionHeading, Segment, SegmentColor, SegmentType, SelectItemType, _default$K as SelectWithSearchFormFeature, _default$y as SelectionListFeature, Session, SessionDetailWidget, SessionPaymentsWidget, SessionPreviewFeature, SessionReview$1 as SessionReview, SessionTime, SessionVariant, SessionsWidget as SessionsListWidget, SessionsWidgetProps, Sex, ShareModalFeature, ShortCurrencySignByLocale, ShortTranscriptionCurrencySignByLocale, _default$_ as ShowMore, _default$n as SignUpSessionButton, _default$k as SignUpSessionModal, SimpleTabs, SimpleTabsProps, SizeValues, Skeleton, _default$1d as Skeleton_v2, Slider, _default$W as SlotsGrid, _default$V as SlotsGridItem, SolidInput, Sort, SortDirection, SortKey, SortValue, Specialist, _default$e as SpecialistAbout, SpecialistAreaList as SpecialistAreaListFeature, SpecialistCard, SpecialistCardListWidget, _default$w as SpecialistCardWidget, SpecialistCardSkeleton as SpecialistCardWithScheduleSkeleton, _default$q as SpecialistCardWithScheduleWidget, SpecialistConsultation, SpecialistConsultationPayment, _default$t as SpecialistDetailWidget, SpecialistDetailWidgetSkeleton, SpecialistDetailWithTabsSkeleton, _default$r as SpecialistDetailWithTabsWidget, SpecialistEducation, SpecialistEducationsFeature, SpecialistInfoColumnFeature, SpecialistLangs, _default$1 as SpecialistMatch, SpecialistOrderType, SpecialistPaymentCardProps, _default$T as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$S as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default$u as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$v as SpecialistPaymentWidget, SpecialistPaymentWidgetType, SpecialistPreviewFeature, SpecialistPreviewListWidget, _default$s as SpecialistPreviewWidget, SpecialistProfileNotFound, SpecialistReview$1 as SpecialistReview, SpecialistScheduleFeature, SpecialistScheduleProvider, SpecialistScheduleProviderRef, ScheduleSkeleton as SpecialistScheduleSkeletonFeature, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default as SpecialistStatistic, Spinner, Spinner_v2, StarRating, StatisticsScroll, StripeSupportedCurrency, Subscription, SubscriptionStatuses, SuccessScreen, SuperSpecialist, SupportedCurrency, SupportedLangs, SupportedLocales, SwitchDeviceCard, TabItem, Tabs$1 as Tabs, TabsFeature, TabsFeatureSkeleton, TabsToolbarFeature, Tag, Tariff, TariffFeature, _default$L as TextAreaFormFeature, _default$a as TextInput, _default$z as TextWithClampFeature, _default$18 as Textarea_v2, ThemeProvider, ThemeProviderProps, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$1h as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UserType, VariantType, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$11 as Video, _default$p as VideoCallInfo, _default$1i as VideoPlayer, VideoProvider, _default$g as WorkDirections, appThemes, canManageSession, currentUser, decOfNum, formatByDigits, getCountryKeyByName, getDateLocale, getFilterCount, getFiltersQuery, getFiltersValues, getGMTOffset, getMappedFilterValue, getMockSchedule, getMonthNameInGenitive, getProgressForBreakPoint, getSessionTimeLabel, getSessionVariant, getSessionsByDay, getSessionsByMonth, getSessionsByYear, getSignAgreementsTabs, getSortFromKey, getSortKey, getStartSessionDate, getStartSessionTimestamp, globalAuthState, isClientCan, isFilterSet, isNewSpecialist, isSpecialistActive, isSpecialistBlocked, isSpecialistPublic, isSuperSpecialist, listReviews, mergeRefs, mockSession, mockSessions, mockT, newShade, payoutPriceNormalize, priceNormalize, replaceMarkdownWithReactElements, roundToPrecision, specialist, splitSessions, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDeepCompareEffect, useDeepUpdateEffect, useDelayMount, useDomRef, useElementWidth, useEvent, useIsKeyBoardShown, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useSpecialistScheduleContext, useStopPropagationEvent, useToastContext, useUpdateEffect, useVideoContext, withSpecialistScheduleContext };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindly/ui-components",
3
- "version": "7.5.2",
3
+ "version": "7.5.3",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "clean": "rimraf dist",
@@ -42,6 +42,8 @@ export default {
42
42
  black: '#212121',
43
43
  brand: {
44
44
  client: {
45
+ celestialBlueLight:
46
+ 'rgba(var(--color-brand-client-celestial-blue-light) / <alpha-value>)',
45
47
  celestialBlueSuperLight:
46
48
  'rgba(var(--color-brand-client-celestial-blue-super-light) / <alpha-value>)',
47
49
  celestialBlue:
@@ -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-light: 214 240 255;
22
23
  --color-brand-client-celestial-blue-super-light: 234 248 255;
23
24
 
24
25
  /* badge variables start */