@mindly/ui-components 5.67.2 → 5.68.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.
Files changed (32) hide show
  1. package/dist/cjs/index.js +7 -7
  2. package/dist/cjs/lib/Consultations/UserInfoModal/UserInfoModal.d.ts +5 -0
  3. package/dist/cjs/lib2/features/ContractTreeFeature/ContractTreeFeature.d.ts +9 -0
  4. package/dist/cjs/lib2/features/ContractTreeFeature/index.d.ts +2 -0
  5. package/dist/cjs/lib2/features/ContractTreeFeature/types.d.ts +9 -0
  6. package/dist/cjs/lib2/features/OutdatedPersonalDataFeature/OutdatedPersonalDataFeature.d.ts +2 -0
  7. package/dist/cjs/lib2/features/OutdatedPersonalDataFeature/index.d.ts +1 -0
  8. package/dist/cjs/lib2/features/OutdatedPersonalDataFeature/types.d.ts +9 -0
  9. package/dist/cjs/lib2/features/index.d.ts +2 -0
  10. package/dist/cjs/lib2/shared/types/getCountryKeyByName.d.ts +8 -0
  11. package/dist/cjs/lib2/shared/types/index.d.ts +1 -0
  12. package/dist/cjs/lib2/shared/ui/ListItems/Item.d.ts +2 -0
  13. package/dist/cjs/lib2/shared/utils/getSignAgreementsTabs.d.ts +27 -0
  14. package/dist/cjs/lib2/shared/utils/index.d.ts +2 -0
  15. package/dist/cjs/lib2/shared/utils/replaceAsterisksWithBold.d.ts +1 -0
  16. package/dist/esm/index.js +7 -7
  17. package/dist/esm/lib/Consultations/UserInfoModal/UserInfoModal.d.ts +5 -0
  18. package/dist/esm/lib2/features/ContractTreeFeature/ContractTreeFeature.d.ts +9 -0
  19. package/dist/esm/lib2/features/ContractTreeFeature/index.d.ts +2 -0
  20. package/dist/esm/lib2/features/ContractTreeFeature/types.d.ts +9 -0
  21. package/dist/esm/lib2/features/OutdatedPersonalDataFeature/OutdatedPersonalDataFeature.d.ts +2 -0
  22. package/dist/esm/lib2/features/OutdatedPersonalDataFeature/index.d.ts +1 -0
  23. package/dist/esm/lib2/features/OutdatedPersonalDataFeature/types.d.ts +9 -0
  24. package/dist/esm/lib2/features/index.d.ts +2 -0
  25. package/dist/esm/lib2/shared/types/getCountryKeyByName.d.ts +8 -0
  26. package/dist/esm/lib2/shared/types/index.d.ts +1 -0
  27. package/dist/esm/lib2/shared/ui/ListItems/Item.d.ts +2 -0
  28. package/dist/esm/lib2/shared/utils/getSignAgreementsTabs.d.ts +27 -0
  29. package/dist/esm/lib2/shared/utils/index.d.ts +2 -0
  30. package/dist/esm/lib2/shared/utils/replaceAsterisksWithBold.d.ts +1 -0
  31. package/dist/index.d.ts +70 -3
  32. package/package.json +1 -1
@@ -12,7 +12,12 @@ type UserInfoModalProps = {
12
12
  onSignUp?: (id: string) => void;
13
13
  onClose: () => void;
14
14
  isClient?: boolean;
15
+ isShowContract?: boolean;
16
+ contractStatus?: 'not_signed' | 'pending' | 'active';
17
+ handleOpenContract: () => void;
15
18
  translations?: {
19
+ contractTitle: string;
20
+ contractSubtitle: string;
16
21
  sessions?: string[];
17
22
  writeBtnLabel?: string;
18
23
  buyBtnLabel?: string;
@@ -0,0 +1,9 @@
1
+ import React from 'react';
2
+ import './ContractTreeFeature.css';
3
+ import { TreeNode } from './types';
4
+ interface ContentTreeProps {
5
+ data: TreeNode[];
6
+ className?: string;
7
+ }
8
+ declare const ContentTree: React.MemoExoticComponent<React.ForwardRefExoticComponent<ContentTreeProps & React.RefAttributes<HTMLDivElement>>>;
9
+ export default ContentTree;
@@ -0,0 +1,2 @@
1
+ export * from './types';
2
+ export { default as ContractTreeFeature } from './ContractTreeFeature';
@@ -0,0 +1,9 @@
1
+ export type TreeNode = {
2
+ title: string;
3
+ type: string;
4
+ children?: TreeNode[];
5
+ };
6
+ export interface ContentRendererProps {
7
+ node: TreeNode;
8
+ level: number;
9
+ }
@@ -0,0 +1,2 @@
1
+ import { OutdatedPersonalDataFeatureProps } from './types';
2
+ export declare function OutdatedPersonalDataFeature({ isOpen, presentingElement, onApply, onDismiss, subtitle, title, applyText, }: OutdatedPersonalDataFeatureProps): JSX.Element;
@@ -0,0 +1 @@
1
+ export * from './OutdatedPersonalDataFeature';
@@ -0,0 +1,9 @@
1
+ export type OutdatedPersonalDataFeatureProps = {
2
+ isOpen: boolean;
3
+ presentingElement?: HTMLElement;
4
+ title: string;
5
+ subtitle: string;
6
+ applyText?: string;
7
+ onApply: () => void;
8
+ onDismiss: () => void;
9
+ };
@@ -20,3 +20,5 @@ export * from './ReviewCardFeature';
20
20
  export * from './AppNotSupporedFeature';
21
21
  export * from './ScreenInputUpdateFeature';
22
22
  export * from './ErrorCardFeature';
23
+ export * from './ContractTreeFeature';
24
+ export * from './OutdatedPersonalDataFeature';
@@ -0,0 +1,8 @@
1
+ export declare enum SupportedLangs {
2
+ en = "en",
3
+ uk = "uk",
4
+ pl = "pl",
5
+ es = "es"
6
+ }
7
+ export declare const COUNTRIES_MAPPER: Record<string, SupportedLangs>;
8
+ export declare const getCountryKeyByName: (countryName: string) => SupportedLangs;
@@ -2,3 +2,4 @@ export * from './ratingCircleTypes';
2
2
  export * from './specialistPaymentTypes';
3
3
  export * from './iconProps';
4
4
  export * from './common';
5
+ export * from './getCountryKeyByName';
@@ -2,6 +2,7 @@ import * as React from 'react';
2
2
  type ItemProps = React.HTMLAttributes<HTMLIonItemElement> & {
3
3
  leftContent?: React.ReactNode;
4
4
  rightContent?: React.ReactNode;
5
+ innerItemClassName?: string;
5
6
  withBorders?: boolean;
6
7
  isDisabled?: boolean;
7
8
  isError?: boolean;
@@ -9,6 +10,7 @@ type ItemProps = React.HTMLAttributes<HTMLIonItemElement> & {
9
10
  export declare const Item: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLIonItemElement> & {
10
11
  leftContent?: React.ReactNode;
11
12
  rightContent?: React.ReactNode;
13
+ innerItemClassName?: string | undefined;
12
14
  withBorders?: boolean | undefined;
13
15
  isDisabled?: boolean | undefined;
14
16
  isError?: boolean | undefined;
@@ -0,0 +1,27 @@
1
+ import { SupportedLangs } from '../types';
2
+ import { TreeNode } from '../../features';
3
+ import { WithTranslation } from 'react-i18next';
4
+ type SupportedCountryLocale = string;
5
+ type Tabs = {
6
+ behavior: 'tax-country' | 'profile-lang';
7
+ localeOrCountry: `${SupportedLangs}` | SupportedCountryLocale;
8
+ t: WithTranslation['t'];
9
+ jsonTree: TreeNode[];
10
+ };
11
+ type TabsReturnType = {
12
+ id: `${SupportedLangs}`;
13
+ title: string;
14
+ value: TreeNode;
15
+ };
16
+ /**
17
+ * This function takes json tree and locale and
18
+ * returns tabs for contract modal.
19
+ *
20
+ * @param behavior - 'tax-country' or 'profile-lang'
21
+ * @param localeOrCountry - locale to filter tabs
22
+ * @param jsonTree - json tree with contracts
23
+ * @param t - translation function
24
+ * @returns - array of tabs with id, title and value
25
+ */
26
+ export declare function getSignAgreementsTabs({ behavior, localeOrCountry, jsonTree, t, }: Tabs): TabsReturnType[];
27
+ export {};
@@ -1,3 +1,5 @@
1
1
  export { mergeRefs } from './mergeRefs';
2
2
  export { priceNormalize } from './priceNormalizer';
3
3
  export { newShade } from './newShade';
4
+ export { replaceAsterisksWithBold } from './replaceAsterisksWithBold';
5
+ export { getSignAgreementsTabs } from './getSignAgreementsTabs';
@@ -0,0 +1 @@
1
+ export declare const replaceAsterisksWithBold: (text: string) => JSX.Element[];
package/dist/index.d.ts CHANGED
@@ -822,7 +822,12 @@ type UserInfoModalProps = {
822
822
  onSignUp?: (id: string) => void;
823
823
  onClose: () => void;
824
824
  isClient?: boolean;
825
+ isShowContract?: boolean;
826
+ contractStatus?: 'not_signed' | 'pending' | 'active';
827
+ handleOpenContract: () => void;
825
828
  translations?: {
829
+ contractTitle: string;
830
+ contractSubtitle: string;
826
831
  sessions?: string[];
827
832
  writeBtnLabel?: string;
828
833
  buyBtnLabel?: string;
@@ -1741,6 +1746,13 @@ declare enum SupportedCurrency {
1741
1746
  'USD' = "USD"
1742
1747
  }
1743
1748
 
1749
+ declare enum SupportedLangs {
1750
+ en = "en",
1751
+ uk = "uk",
1752
+ pl = "pl",
1753
+ es = "es"
1754
+ }
1755
+
1744
1756
  declare enum ListBoxSelectionType {
1745
1757
  Checkbox = "checkbox",
1746
1758
  Radio = "radio"
@@ -1905,6 +1917,7 @@ declare const _default$e: React.NamedExoticComponent<ListItemsProps>;
1905
1917
  type ItemProps = React.HTMLAttributes<HTMLIonItemElement> & {
1906
1918
  leftContent?: React.ReactNode;
1907
1919
  rightContent?: React.ReactNode;
1920
+ innerItemClassName?: string;
1908
1921
  withBorders?: boolean;
1909
1922
  isDisabled?: boolean;
1910
1923
  isError?: boolean;
@@ -2005,8 +2018,8 @@ type CollapsableTextProps = {
2005
2018
  declare function CollapsableText({ t, text, size, fontWeight, }: CollapsableTextProps & TranslationType): JSX.Element;
2006
2019
 
2007
2020
  type TabsProps<T> = AriaTabListProps<T>;
2008
- declare function Tabs<T extends Record<string, unknown>>(props: TabsProps<T>): JSX.Element;
2009
- declare namespace Tabs {
2021
+ declare function Tabs$1<T extends Record<string, unknown>>(props: TabsProps<T>): JSX.Element;
2022
+ declare namespace Tabs$1 {
2010
2023
  var displayName: string;
2011
2024
  }
2012
2025
 
@@ -2423,6 +2436,8 @@ declare const priceNormalize: ({ price, locale, currency, side, mode, }: PriceNo
2423
2436
 
2424
2437
  declare const newShade: (hexColor: string, magnitude: number) => string;
2425
2438
 
2439
+ declare const replaceAsterisksWithBold: (text: string) => JSX.Element[];
2440
+
2426
2441
  type CountryOfOriginModalProps = {
2427
2442
  countries: string[];
2428
2443
  onSearchChange: (event: IonSearchbarCustomEvent$1<SearchbarChangeEventDetail>) => void;
@@ -2676,6 +2691,58 @@ type ErrorCardFeatureProps = {
2676
2691
  };
2677
2692
  declare const ErrorCardFeature: FC<ErrorCardFeatureProps>;
2678
2693
 
2694
+ type TreeNode = {
2695
+ title: string;
2696
+ type: string;
2697
+ children?: TreeNode[];
2698
+ };
2699
+ interface ContentRendererProps {
2700
+ node: TreeNode;
2701
+ level: number;
2702
+ }
2703
+
2704
+ interface ContentTreeProps {
2705
+ data: TreeNode[];
2706
+ className?: string;
2707
+ }
2708
+ declare const ContentTree: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<ContentTreeProps & React__default.RefAttributes<HTMLDivElement>>>;
2709
+
2710
+ type OutdatedPersonalDataFeatureProps = {
2711
+ isOpen: boolean;
2712
+ presentingElement?: HTMLElement;
2713
+ title: string;
2714
+ subtitle: string;
2715
+ applyText?: string;
2716
+ onApply: () => void;
2717
+ onDismiss: () => void;
2718
+ };
2719
+
2720
+ declare function OutdatedPersonalDataFeature({ isOpen, presentingElement, onApply, onDismiss, subtitle, title, applyText, }: OutdatedPersonalDataFeatureProps): JSX.Element;
2721
+
2722
+ type SupportedCountryLocale = string;
2723
+ type Tabs = {
2724
+ behavior: 'tax-country' | 'profile-lang';
2725
+ localeOrCountry: `${SupportedLangs}` | SupportedCountryLocale;
2726
+ t: WithTranslation['t'];
2727
+ jsonTree: TreeNode[];
2728
+ };
2729
+ type TabsReturnType = {
2730
+ id: `${SupportedLangs}`;
2731
+ title: string;
2732
+ value: TreeNode;
2733
+ };
2734
+ /**
2735
+ * This function takes json tree and locale and
2736
+ * returns tabs for contract modal.
2737
+ *
2738
+ * @param behavior - 'tax-country' or 'profile-lang'
2739
+ * @param localeOrCountry - locale to filter tabs
2740
+ * @param jsonTree - json tree with contracts
2741
+ * @param t - translation function
2742
+ * @returns - array of tabs with id, title and value
2743
+ */
2744
+ declare function getSignAgreementsTabs({ behavior, localeOrCountry, jsonTree, t, }: Tabs): TabsReturnType[];
2745
+
2679
2746
  type SpecialistCardWidgetProps = {
2680
2747
  t?: WithTranslation['t'];
2681
2748
  loading: boolean;
@@ -2722,4 +2789,4 @@ declare const _default$1: React__default.NamedExoticComponent<SpecialistPaymentC
2722
2789
 
2723
2790
  declare const _default: React__default.NamedExoticComponent<SpecialistPaymentCardProps & SpecialistPaymentConsultationsProps & TranslationType>;
2724
2791
 
2725
- export { AppFooter, _default$q as AppFooter_v2, AppHeader, AppHeader_v2, AppNotSupportedFeature, ArchivedConsultationCard, Avatar, AvatarProps$1 as AvatarProps, _default$p as Avatar_v2, BREAKPOINT_ICON_SIZE, _default$l as Badge, _default$E as BookingScheduleTime, _default$D as BookingSpecialistInfo, Button, Button_v2, Calendar, _default$5 as CalendarPickerFeature, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$Z as ChatListItem, _default$X as ChatListSkeleton, _default$Y as ChatMessage, ChatMessageSkeleton, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$y as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingContext, CircleRatingProvider, CollapsableText, _default$Q as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$N as ConsultationModal, _default$9 as ConsultationPricingFeature, _default$L as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentCard, CountdownTimerFeature, CountryOfOriginModal, CustomButton, _default$z as CustomCheckbox, CustomRadioButton, _default$A as CustomSelect, _default$B as CustomTextarea, DatePicker, _default$J as DaySlider, DayToRender, DrumListPicker, _default$F as EducationCard, _default$W as EmptyChatList, EmptyChatMessages, _default$O as EmptyConsultations, EntryNotFound, EntryNotFoundProps, ErrorCardFeature, _default$v as Flag, FlagTypes, _default$n as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconAddModerator, IconApple, IconArrowDown, IconArrowLeft, IconArrowRight, IconArrowTopRight, IconAttachMoney, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$h as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCancel, IconCancelRounded, IconCapFilled, IconChat3d, IconChatFilled, IconChatOutline, IconCheck, IconCheckCircle, IconCheckSmall, IconCheckboxChecked, IconCheckboxUnchecked, IconClient, IconClientFilled, IconClose, IconCopy, IconCreditCard, IconDelete, IconDocument, IconEcgHeart, IconEdit, IconEditCalendar, IconEventBusy, IconEye, IconEyeOff, IconGallery, IconGift, IconGoogle, IconHome, IconIdCard, IconInvisible, IconLanguage, IconLeftArrow, IconLetter, IconLink, IconLock, IconLogout, IconManageAccounts, IconMinus, IconMoreVertical, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPause, IconPersonAlert, IconPlus, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconResume, IconSchema, IconSearch, IconSend, IconSettings, IconShare, IconSpinner, IconStar, IconStarFilled, IconStylus, IconSuccess, IconText, IconTime, IconTimeAdd, IconUnmute, IconUserNotFound, IconVerifiedUser, IconVisible, IconWarning, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, InputSearch, _default$d as Item, _default$k as ItemCard, LabelArrowRedirect, LanguagesList, _default$11 as LetterAvatar, _default$w as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListButton, ListItemType, _default$e as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$f as Loading, LouseConnect, _default$_ as MediaPlayer, Modal, ModalCalendar, ModalSheet, NavigationBar, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, PasswordInput, _default$4 as PaymentCalendarFeature, _default$6 as PaymentSessionsList, _default$10 as PersonDateTimeCard, _default$m as Picture, _default$u as ProfileInformation, _default$H as ProfileView, _default$x as ProgressBar, ProgressBarDashed, _default$g as ProgressBar_v2, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$i as Rating, RatingCircleWrapper, _default$K as ReSchedule, ReScheduleSuccess, Refresher, ReviewCard, _default$3 as ReviewCardFeature, ReviewStatistics, ReviewSwiperSection, RoundButton, RowItemType, RowSelect, RowSelectProps, SIZES, ScreenInput, ScreenInputUpdateFeature, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$$ as SelectImpressionEmoji, SelectItemType, ShareModalFeature, _default$P as SignUpSessionButton, _default$M as SignUpSessionModal, Skeleton, _default$o as Skeleton_v2, _default$b as SlotsGrid, _default$a as SlotsGridItem, _default$G as SpecialistAbout, SpecialistCard$1 as SpecialistCard, SpecialistCardListWidget, _default$2 as SpecialistCardWidget, _default$U as SpecialistEducationCard, SpecialistInfoColumnFeature as SpecialistInfoColumn, SpecialistLangs, _default$t as SpecialistMatch, _default$8 as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, _default$7 as SpecialistPaymentConsultationsFeature, _default as SpecialistPaymentResumeWidget, _default$1 as SpecialistPaymentWidget, _default$T as SpecialistProfileViewCard, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default$s as SpecialistStatistic, SpecialistStatisticsCard, SpecialistWorkDirections, Spinner, Spinner_v2, StarRating, StatisticsScroll, StatusTag, SuccessScreen, SwitchDeviceCard, TabBar, TabItem, Tabs, Tag, _default$C as TextInput, _default$V as Textarea, _default$j as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, _default$r as Typography, TypographyVariantsEnum, UpdatesCard, UserInfoModal, UsersPsychologistScrollList, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$c as Video, _default$R as VideoCallInfo, _default$S as VideoPlayer, _default$I as WorkDirections, YourLocalTimeBlock, appThemes, decOfNum, getProgressForBreakPoint, mergeRefs, newShade, priceNormalize, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDomRef, useEvent, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useToastContext };
2792
+ export { AppFooter, _default$q as AppFooter_v2, AppHeader, AppHeader_v2, AppNotSupportedFeature, ArchivedConsultationCard, Avatar, AvatarProps$1 as AvatarProps, _default$p as Avatar_v2, BREAKPOINT_ICON_SIZE, _default$l as Badge, _default$E as BookingScheduleTime, _default$D as BookingSpecialistInfo, Button, Button_v2, Calendar, _default$5 as CalendarPickerFeature, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$Z as ChatListItem, _default$X as ChatListSkeleton, _default$Y as ChatMessage, ChatMessageSkeleton, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$y as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingContext, CircleRatingProvider, CollapsableText, _default$Q as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$N as ConsultationModal, _default$9 as ConsultationPricingFeature, _default$L as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentCard, ContentRendererProps, ContentTree as ContractTreeFeature, CountdownTimerFeature, CountryOfOriginModal, CustomButton, _default$z as CustomCheckbox, CustomRadioButton, _default$A as CustomSelect, _default$B as CustomTextarea, DatePicker, _default$J as DaySlider, DayToRender, DrumListPicker, _default$F as EducationCard, _default$W as EmptyChatList, EmptyChatMessages, _default$O as EmptyConsultations, EntryNotFound, EntryNotFoundProps, ErrorCardFeature, _default$v as Flag, FlagTypes, _default$n as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconAddModerator, IconApple, IconArrowDown, IconArrowLeft, IconArrowRight, IconArrowTopRight, IconAttachMoney, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$h as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCancel, IconCancelRounded, IconCapFilled, IconChat3d, IconChatFilled, IconChatOutline, IconCheck, IconCheckCircle, IconCheckSmall, IconCheckboxChecked, IconCheckboxUnchecked, IconClient, IconClientFilled, IconClose, IconCopy, IconCreditCard, IconDelete, IconDocument, IconEcgHeart, IconEdit, IconEditCalendar, IconEventBusy, IconEye, IconEyeOff, IconGallery, IconGift, IconGoogle, IconHome, IconIdCard, IconInvisible, IconLanguage, IconLeftArrow, IconLetter, IconLink, IconLock, IconLogout, IconManageAccounts, IconMinus, IconMoreVertical, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPause, IconPersonAlert, IconPlus, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconResume, IconSchema, IconSearch, IconSend, IconSettings, IconShare, IconSpinner, IconStar, IconStarFilled, IconStylus, IconSuccess, IconText, IconTime, IconTimeAdd, IconUnmute, IconUserNotFound, IconVerifiedUser, IconVisible, IconWarning, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, InputSearch, _default$d as Item, _default$k as ItemCard, LabelArrowRedirect, LanguagesList, _default$11 as LetterAvatar, _default$w as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListButton, ListItemType, _default$e as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$f as Loading, LouseConnect, _default$_ as MediaPlayer, Modal, ModalCalendar, ModalSheet, NavigationBar, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, OutdatedPersonalDataFeature, PasswordInput, _default$4 as PaymentCalendarFeature, _default$6 as PaymentSessionsList, _default$10 as PersonDateTimeCard, _default$m as Picture, _default$u as ProfileInformation, _default$H as ProfileView, _default$x as ProgressBar, ProgressBarDashed, _default$g as ProgressBar_v2, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$i as Rating, RatingCircleWrapper, _default$K as ReSchedule, ReScheduleSuccess, Refresher, ReviewCard, _default$3 as ReviewCardFeature, ReviewStatistics, ReviewSwiperSection, RoundButton, RowItemType, RowSelect, RowSelectProps, SIZES, ScreenInput, ScreenInputUpdateFeature, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$$ as SelectImpressionEmoji, SelectItemType, ShareModalFeature, _default$P as SignUpSessionButton, _default$M as SignUpSessionModal, Skeleton, _default$o as Skeleton_v2, _default$b as SlotsGrid, _default$a as SlotsGridItem, _default$G as SpecialistAbout, SpecialistCard$1 as SpecialistCard, SpecialistCardListWidget, _default$2 as SpecialistCardWidget, _default$U as SpecialistEducationCard, SpecialistInfoColumnFeature as SpecialistInfoColumn, SpecialistLangs, _default$t as SpecialistMatch, _default$8 as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, _default$7 as SpecialistPaymentConsultationsFeature, _default as SpecialistPaymentResumeWidget, _default$1 as SpecialistPaymentWidget, _default$T as SpecialistProfileViewCard, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default$s as SpecialistStatistic, SpecialistStatisticsCard, SpecialistWorkDirections, Spinner, Spinner_v2, StarRating, StatisticsScroll, StatusTag, SuccessScreen, SwitchDeviceCard, TabBar, TabItem, Tabs$1 as Tabs, Tag, _default$C as TextInput, _default$V as Textarea, _default$j as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TreeNode, _default$r as Typography, TypographyVariantsEnum, UpdatesCard, UserInfoModal, UsersPsychologistScrollList, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$c as Video, _default$R as VideoCallInfo, _default$S as VideoPlayer, _default$I as WorkDirections, YourLocalTimeBlock, appThemes, decOfNum, getProgressForBreakPoint, getSignAgreementsTabs, mergeRefs, newShade, priceNormalize, replaceAsterisksWithBold, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDomRef, useEvent, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useToastContext };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindly/ui-components",
3
- "version": "5.67.2",
3
+ "version": "5.68.0",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "clean": "rimraf dist",