@mindly/ui-components 5.43.0 → 5.44.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 (26) hide show
  1. package/dist/cjs/index.js +5 -5
  2. package/dist/cjs/lib2/features/CalendarPickerFeature/CalendarPickerFeature.d.ts +1 -0
  3. package/dist/cjs/lib2/features/SpecialistPaymentConsultationsFeature/Consultations/ConsultationCard.d.ts +0 -1
  4. package/dist/cjs/lib2/features/SpecialistPaymentConsultationsFeature/Consultations/ConsultationsList.d.ts +0 -2
  5. package/dist/cjs/lib2/features/SpecialistPaymentConsultationsFeature/Consultations/ConsultationsListSkeleton.d.ts +4 -4
  6. package/dist/cjs/lib2/features/SpecialistPaymentConsultationsFeature/index.d.ts +1 -0
  7. package/dist/cjs/lib2/shared/hooks/useCalendarData.d.ts +2 -1
  8. package/dist/cjs/lib2/shared/hooks/useSpecialistPayments.d.ts +5 -7
  9. package/dist/cjs/lib2/shared/translators/specialistPayments.d.ts +2 -0
  10. package/dist/cjs/lib2/shared/types/common.d.ts +7 -0
  11. package/dist/cjs/lib2/shared/types/specialistPaymentTypes.d.ts +4 -9
  12. package/dist/cjs/lib2/shared/ui/Rating/types.d.ts +3 -0
  13. package/dist/esm/index.js +5 -5
  14. package/dist/esm/lib2/features/CalendarPickerFeature/CalendarPickerFeature.d.ts +1 -0
  15. package/dist/esm/lib2/features/SpecialistPaymentConsultationsFeature/Consultations/ConsultationCard.d.ts +0 -1
  16. package/dist/esm/lib2/features/SpecialistPaymentConsultationsFeature/Consultations/ConsultationsList.d.ts +0 -2
  17. package/dist/esm/lib2/features/SpecialistPaymentConsultationsFeature/Consultations/ConsultationsListSkeleton.d.ts +4 -4
  18. package/dist/esm/lib2/features/SpecialistPaymentConsultationsFeature/index.d.ts +1 -0
  19. package/dist/esm/lib2/shared/hooks/useCalendarData.d.ts +2 -1
  20. package/dist/esm/lib2/shared/hooks/useSpecialistPayments.d.ts +5 -7
  21. package/dist/esm/lib2/shared/translators/specialistPayments.d.ts +2 -0
  22. package/dist/esm/lib2/shared/types/common.d.ts +7 -0
  23. package/dist/esm/lib2/shared/types/specialistPaymentTypes.d.ts +4 -9
  24. package/dist/esm/lib2/shared/ui/Rating/types.d.ts +3 -0
  25. package/dist/index.d.ts +20 -8
  26. package/package.json +1 -1
@@ -5,6 +5,7 @@ type CalendarPickerFeatureProps = {
5
5
  locale?: string;
6
6
  mode: 'button' | 'auto' | undefined;
7
7
  opened?: boolean;
8
+ monthsMore?: number;
8
9
  dateCallback: (date: Date) => void;
9
10
  };
10
11
  declare const _default: React.NamedExoticComponent<CalendarPickerFeatureProps & TranslationType>;
@@ -4,7 +4,6 @@ type ConsultationCardProps = {
4
4
  consultation: SpecialistConsultation;
5
5
  consultationClick?: (consultation: SpecialistConsultation) => void;
6
6
  locale?: string;
7
- timezone?: string;
8
7
  };
9
8
  declare const _default: React.NamedExoticComponent<ConsultationCardProps>;
10
9
  export default _default;
@@ -3,8 +3,6 @@ import { SpecialistConsultation } from '../../../shared/types';
3
3
  type ConsultationsListProps = {
4
4
  consultations: SpecialistConsultation[];
5
5
  locale?: string;
6
- isLoading?: boolean;
7
- timezone?: string;
8
6
  consultationClick?: (consultation: SpecialistConsultation) => void;
9
7
  };
10
8
  declare const _default: React.NamedExoticComponent<ConsultationsListProps>;
@@ -1,6 +1,6 @@
1
- type SpecialistPaymentCommonCardSkeletonType = {
1
+ import { FC } from 'react';
2
+ type ConsultationsListSkeletonType = {
2
3
  className?: string;
3
- list: any[];
4
4
  };
5
- declare const SpecialistPaymentCommonCardSkeleton: (props: SpecialistPaymentCommonCardSkeletonType) => JSX.Element;
6
- export default SpecialistPaymentCommonCardSkeleton;
5
+ export declare const ConsultationsListSkeleton: FC<ConsultationsListSkeletonType>;
6
+ export {};
@@ -1 +1,2 @@
1
1
  export { default as SpecialistPaymentConsultationsFeature } from './SpecialistPaymentConsultationsFeature';
2
+ export { ConsultationsListSkeleton } from './Consultations/ConsultationsListSkeleton';
@@ -1,9 +1,10 @@
1
1
  type CalendarListProps = {
2
2
  locale?: string;
3
+ monthsMore?: number;
3
4
  };
4
5
  type CalendarListItem = {
5
6
  value: Date;
6
7
  label: string;
7
8
  };
8
- export declare function useCalendarListData({ locale, }: CalendarListProps): CalendarListItem[];
9
+ export declare function useCalendarListData({ locale, monthsMore, }: CalendarListProps): CalendarListItem[];
9
10
  export {};
@@ -12,17 +12,15 @@ export declare function getDatePosition(calendarDate: Date): DatesResultType;
12
12
  export declare function getSelectedFormattedDate(date: Date, locale?: string): string;
13
13
  type FormattedDateProps = {
14
14
  date: Date;
15
- timezone?: string;
16
15
  locale?: string;
17
- year?: boolean;
18
- month?: boolean;
19
- day?: boolean;
20
- baseCase?: boolean;
21
16
  };
22
- export declare function useFormattedDate({ date, timezone, locale, year, month, day, baseCase, }: FormattedDateProps): string;
17
+ export declare function useFormattedDate({ date, locale }: FormattedDateProps): string;
23
18
  type PaymentsConsultationsTabsProps = {
24
19
  t: (args: any) => string;
20
+ defaultTab?: string;
25
21
  date: Date;
22
+ futureCount?: number;
23
+ previousCount?: number;
26
24
  };
27
25
  type SpecialistPaymentTabs = {
28
26
  value: string;
@@ -32,5 +30,5 @@ type PaymentsConsultationsTabsResult = {
32
30
  activeTab: string;
33
31
  tabs: SpecialistPaymentTabs[];
34
32
  };
35
- export declare function usePaymentsConsultationsTabs({ t, date, }: PaymentsConsultationsTabsProps): PaymentsConsultationsTabsResult;
33
+ export declare function usePaymentsConsultationsTabs({ t, date, defaultTab, futureCount, previousCount, }: PaymentsConsultationsTabsProps): PaymentsConsultationsTabsResult;
36
34
  export {};
@@ -0,0 +1,2 @@
1
+ import { TranslationType } from '../types';
2
+ export declare const translationFunction: TranslationType['t'];
@@ -1,3 +1,10 @@
1
+ import { WithTranslation } from 'react-i18next';
2
+ export type TranslationMock = {
3
+ t: (v1: any, v2?: any) => string;
4
+ };
5
+ export type TranslationType = {
6
+ t: WithTranslation['t'] | TranslationMock['t'];
7
+ };
1
8
  export declare enum SupportedCurrency {
2
9
  'UAH' = "UAH",
3
10
  'EUR' = "EUR",
@@ -1,9 +1,4 @@
1
- import { WithTranslation } from 'react-i18next';
2
1
  import { SupportedCurrency } from '../types';
3
- export type TranslationMock = {
4
- t: (v1: any, v2?: any) => string;
5
- };
6
- export type TranslationType = WithTranslation | TranslationMock;
7
2
  export type DynamicCommissionValue = {
8
3
  1: number;
9
4
  999: number;
@@ -41,11 +36,12 @@ export type SpecialistConsultation = {
41
36
  payment?: Partial<SpecialistConsultationPayment>;
42
37
  };
43
38
  export type SpecialistPaymentConsultationsProps = {
44
- isConsultationsLoading: boolean;
45
39
  consultations: SpecialistConsultation[];
46
40
  calendarDate: Date;
47
- timezone?: string;
41
+ futureCount?: number;
42
+ previousCount?: number;
48
43
  locale?: string;
44
+ defaultTab?: string;
49
45
  consultationsModeTrigger: (data: {
50
46
  startDate?: Date;
51
47
  endDate?: Date;
@@ -59,7 +55,6 @@ export type SpecialistPaymentCurrencyProps = {
59
55
  export type SpecialistPaymentCardProps = {
60
56
  isLoading?: boolean;
61
57
  calendarDate: Date;
62
- timezone?: string;
63
58
  locale?: string;
64
59
  revenue?: number;
65
60
  currency?: SupportedCurrency | undefined;
@@ -79,7 +74,6 @@ export type SpecialistPaymentResumeWidgetType = SpecialistPaymentCardProps & Spe
79
74
  export type PaymentBadgeType = {
80
75
  date: Date;
81
76
  locale?: string;
82
- timezone?: string;
83
77
  className?: string;
84
78
  };
85
79
  export type PaymentCalendarFeatureProps = {
@@ -87,6 +81,7 @@ export type PaymentCalendarFeatureProps = {
87
81
  locale?: string;
88
82
  dateCallback: (date: Date) => void;
89
83
  className?: string;
84
+ monthsMore?: number;
90
85
  };
91
86
  export type SpecialistPaymentConsultationDetailsType = {
92
87
  consultation: SpecialistConsultation;
@@ -3,4 +3,7 @@ export type RatingProps = {
3
3
  onChange?: (value: number) => void;
4
4
  onClick?: (value: number) => void;
5
5
  onHover?: (value: number) => void;
6
+ size?: number;
7
+ className?: string;
8
+ readonly?: boolean;
6
9
  };
package/dist/index.d.ts CHANGED
@@ -1603,6 +1603,9 @@ type RatingProps = {
1603
1603
  onChange?: (value: number) => void;
1604
1604
  onClick?: (value: number) => void;
1605
1605
  onHover?: (value: number) => void;
1606
+ size?: number;
1607
+ className?: string;
1608
+ readonly?: boolean;
1606
1609
  };
1607
1610
 
1608
1611
  declare const _default$f: React__default.NamedExoticComponent<RatingProps>;
@@ -1690,10 +1693,6 @@ type CircleRatingContextData = CircleRatingContextProps & {
1690
1693
  styles: any;
1691
1694
  };
1692
1695
 
1693
- type TranslationMock = {
1694
- t: (v1: any, v2?: any) => string;
1695
- };
1696
- type TranslationType = WithTranslation | TranslationMock;
1697
1696
  type DynamicCommissionValue = {
1698
1697
  1: number;
1699
1698
  999: number;
@@ -1727,11 +1726,12 @@ type SpecialistConsultation = {
1727
1726
  payment?: Partial<SpecialistConsultationPayment>;
1728
1727
  };
1729
1728
  type SpecialistPaymentConsultationsProps = {
1730
- isConsultationsLoading: boolean;
1731
1729
  consultations: SpecialistConsultation[];
1732
1730
  calendarDate: Date;
1733
- timezone?: string;
1731
+ futureCount?: number;
1732
+ previousCount?: number;
1734
1733
  locale?: string;
1734
+ defaultTab?: string;
1735
1735
  consultationsModeTrigger: (data: {
1736
1736
  startDate?: Date;
1737
1737
  endDate?: Date;
@@ -1745,7 +1745,6 @@ type SpecialistPaymentCurrencyProps = {
1745
1745
  type SpecialistPaymentCardProps = {
1746
1746
  isLoading?: boolean;
1747
1747
  calendarDate: Date;
1748
- timezone?: string;
1749
1748
  locale?: string;
1750
1749
  revenue?: number;
1751
1750
  currency?: SupportedCurrency | undefined;
@@ -1763,6 +1762,7 @@ type PaymentCalendarFeatureProps = {
1763
1762
  locale?: string;
1764
1763
  dateCallback: (date: Date) => void;
1765
1764
  className?: string;
1765
+ monthsMore?: number;
1766
1766
  };
1767
1767
  type SpecialistPaymentConsultationDetailsType = {
1768
1768
  consultation: SpecialistConsultation;
@@ -1777,6 +1777,12 @@ interface IconProps$w extends SVGAttributes<SVGElement> {
1777
1777
  className?: string;
1778
1778
  }
1779
1779
 
1780
+ type TranslationMock = {
1781
+ t: (v1: any, v2?: any) => string;
1782
+ };
1783
+ type TranslationType = {
1784
+ t: WithTranslation['t'] | TranslationMock['t'];
1785
+ };
1780
1786
  declare enum SupportedCurrency {
1781
1787
  'UAH' = "UAH",
1782
1788
  'EUR' = "EUR",
@@ -2463,11 +2469,17 @@ declare const SpecialistPaymentCommonCardSkeleton: (props: SpecialistPaymentComm
2463
2469
 
2464
2470
  declare const _default$5: React__default.NamedExoticComponent<SpecialistPaymentConsultationsProps & TranslationType>;
2465
2471
 
2472
+ type ConsultationsListSkeletonType = {
2473
+ className?: string;
2474
+ };
2475
+ declare const ConsultationsListSkeleton: FC<ConsultationsListSkeletonType>;
2476
+
2466
2477
  type CalendarPickerFeatureProps = {
2467
2478
  date: Date;
2468
2479
  locale?: string;
2469
2480
  mode: 'button' | 'auto' | undefined;
2470
2481
  opened?: boolean;
2482
+ monthsMore?: number;
2471
2483
  dateCallback: (date: Date) => void;
2472
2484
  };
2473
2485
  declare const _default$4: React__default.NamedExoticComponent<CalendarPickerFeatureProps & TranslationType>;
@@ -2532,4 +2544,4 @@ declare const _default$1: React__default.NamedExoticComponent<SpecialistPaymentC
2532
2544
 
2533
2545
  declare const _default: React__default.NamedExoticComponent<SpecialistPaymentCardProps & SpecialistPaymentConsultationsProps & TranslationType>;
2534
2546
 
2535
- export { AppFooter, _default$n as AppFooter_v2, AppHeader, AppHeader_v2, ArchivedConsultationCard, Avatar, AvatarProps$1 as AvatarProps, _default$m as Avatar_v2, BREAKPOINT_ICON_SIZE, _default$i as Badge, _default$B as BookingScheduleTime, _default$A as BookingSpecialistInfo, Button, Button_v2, Calendar, _default$4 as CalendarPickerFeature, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$W as ChatListItem, _default$U as ChatListSkeleton, _default$V as ChatMessage, ChatMessageSkeleton, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$v as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingContext, CircleRatingProvider, CollapsableText, _default$N as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$K as ConsultationModal, _default$7 as ConsultationPricingFeature, _default$I as ConsultationSpecialistCard, Container, Container_v2, ContentCard, CountdownTimerFeature, CountryOfOriginModal, CustomButton, _default$w as CustomCheckbox, CustomRadioButton, _default$x as CustomSelect, _default$y as CustomTextarea, DatePicker, _default$G as DaySlider, DayToRender, DrumListPicker, _default$C as EducationCard, _default$T as EmptyChatList, EmptyChatMessages, _default$L as EmptyConsultations, EntryNotFound, EntryNotFoundProps, _default$s as Flag, FlagTypes, _default$k as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconAddModerator, IconApple, IconArrowDown, IconArrowLeft, IconArrowRight, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$e as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCancel, IconCancelRounded, IconCapFilled, IconChat3d, IconChatFilled, IconChatOutline, IconCheck, IconCheckSmall, IconCheckboxChecked, IconCheckboxUnchecked, IconClient, IconClientFilled, IconClose, IconCopy, IconCreditCard, IconDelete, IconEcgHeart, IconEdit, IconEditCalendar, IconEventBusy, IconEye, IconEyeOff, IconGift, IconGoogle, IconHome, IconInvisible, IconLanguage, IconLeftArrow, IconLetter, IconLink, IconLogout, IconManageAccounts, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPause, IconPlus, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconResume, IconSchema, IconSearch, IconSettings, IconShare, IconSpinner, IconStar, IconStarFilled, IconSuccess, IconTime, IconTimeAdd, IconUnmute, IconUserNotFound, IconVerifiedUser, IconVisible, IconWarning, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, InputSearch, _default$a as Item, _default$h as ItemCard, LabelArrowRedirect, LanguagesList, _default$_ as LetterAvatar, _default$t as LineFileInput, ListBox, ListBoxItem, ListButton, ListItemType, _default$b as ListItems, ListOption, ListSelect, ListSelectProps, ListSimple, _default$c as Loading, LouseConnect, _default$X as MediaPlayer, Modal, ModalCalendar, ModalSheet, NavigationBar, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, PasswordInput, _default$3 as PaymentCalendarFeature, _default$Z as PersonDateTimeCard, _default$j as Picture, _default$r as ProfileInformation, _default$E as ProfileView, _default$u as ProgressBar, ProgressBarDashed, _default$d as ProgressBar_v2, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$f as Rating, RatingCircleWrapper, _default$H as ReSchedule, ReScheduleSuccess, Refresher, ReviewCard, ReviewStatistics, ReviewSwiperSection, RoundButton, RowItemType, RowSelect, RowSelectProps, SIZES, ScreenInput, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$Y as SelectImpressionEmoji, SelectItemType, ShareModalFeature, _default$M as SignUpSessionButton, _default$J as SignUpSessionModal, Skeleton, _default$l as Skeleton_v2, _default$8 as SlotsGrid, _default$D as SpecialistAbout, SpecialistCard$1 as SpecialistCard, SpecialistCardListWidget, _default$2 as SpecialistCardWidget, _default$R as SpecialistEducationCard, SpecialistInfoColumnFeature as SpecialistInfoColumn, SpecialistLangs, _default$q as SpecialistMatch, _default$6 as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, _default$5 as SpecialistPaymentConsultationsFeature, _default as SpecialistPaymentResumeWidget, _default$1 as SpecialistPaymentWidget, _default$Q as SpecialistProfileViewCard, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default$p as SpecialistStatistic, SpecialistStatisticsCard, SpecialistWorkDirections, Spinner, Spinner_v2, StarRating, StatisticsScroll, StatusTag, SuccessScreen, SwitchDeviceCard, TabBar, Tag, _default$z as TextInput, _default$S as Textarea, _default$g as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, _default$o as Typography, TypographyVariantsEnum, UpdatesCard, UserInfoModal, UsersPsychologistScrollList, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$9 as Video, _default$O as VideoCallInfo, _default$P as VideoPlayer, _default$F as WorkDirections, YourLocalTimeBlock, appThemes, decOfNum, getProgressForBreakPoint, mergeRefs, priceNormalize, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDomRef, useEvent, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useToastContext };
2547
+ export { AppFooter, _default$n as AppFooter_v2, AppHeader, AppHeader_v2, ArchivedConsultationCard, Avatar, AvatarProps$1 as AvatarProps, _default$m as Avatar_v2, BREAKPOINT_ICON_SIZE, _default$i as Badge, _default$B as BookingScheduleTime, _default$A as BookingSpecialistInfo, Button, Button_v2, Calendar, _default$4 as CalendarPickerFeature, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$W as ChatListItem, _default$U as ChatListSkeleton, _default$V as ChatMessage, ChatMessageSkeleton, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$v as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingContext, CircleRatingProvider, CollapsableText, _default$N as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$K as ConsultationModal, _default$7 as ConsultationPricingFeature, _default$I as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentCard, CountdownTimerFeature, CountryOfOriginModal, CustomButton, _default$w as CustomCheckbox, CustomRadioButton, _default$x as CustomSelect, _default$y as CustomTextarea, DatePicker, _default$G as DaySlider, DayToRender, DrumListPicker, _default$C as EducationCard, _default$T as EmptyChatList, EmptyChatMessages, _default$L as EmptyConsultations, EntryNotFound, EntryNotFoundProps, _default$s as Flag, FlagTypes, _default$k as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconAddModerator, IconApple, IconArrowDown, IconArrowLeft, IconArrowRight, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$e as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCancel, IconCancelRounded, IconCapFilled, IconChat3d, IconChatFilled, IconChatOutline, IconCheck, IconCheckSmall, IconCheckboxChecked, IconCheckboxUnchecked, IconClient, IconClientFilled, IconClose, IconCopy, IconCreditCard, IconDelete, IconEcgHeart, IconEdit, IconEditCalendar, IconEventBusy, IconEye, IconEyeOff, IconGift, IconGoogle, IconHome, IconInvisible, IconLanguage, IconLeftArrow, IconLetter, IconLink, IconLogout, IconManageAccounts, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPause, IconPlus, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconResume, IconSchema, IconSearch, IconSettings, IconShare, IconSpinner, IconStar, IconStarFilled, IconSuccess, IconTime, IconTimeAdd, IconUnmute, IconUserNotFound, IconVerifiedUser, IconVisible, IconWarning, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, InputSearch, _default$a as Item, _default$h as ItemCard, LabelArrowRedirect, LanguagesList, _default$_ as LetterAvatar, _default$t as LineFileInput, ListBox, ListBoxItem, ListButton, ListItemType, _default$b as ListItems, ListOption, ListSelect, ListSelectProps, ListSimple, _default$c as Loading, LouseConnect, _default$X as MediaPlayer, Modal, ModalCalendar, ModalSheet, NavigationBar, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, PasswordInput, _default$3 as PaymentCalendarFeature, _default$Z as PersonDateTimeCard, _default$j as Picture, _default$r as ProfileInformation, _default$E as ProfileView, _default$u as ProgressBar, ProgressBarDashed, _default$d as ProgressBar_v2, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$f as Rating, RatingCircleWrapper, _default$H as ReSchedule, ReScheduleSuccess, Refresher, ReviewCard, ReviewStatistics, ReviewSwiperSection, RoundButton, RowItemType, RowSelect, RowSelectProps, SIZES, ScreenInput, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$Y as SelectImpressionEmoji, SelectItemType, ShareModalFeature, _default$M as SignUpSessionButton, _default$J as SignUpSessionModal, Skeleton, _default$l as Skeleton_v2, _default$8 as SlotsGrid, _default$D as SpecialistAbout, SpecialistCard$1 as SpecialistCard, SpecialistCardListWidget, _default$2 as SpecialistCardWidget, _default$R as SpecialistEducationCard, SpecialistInfoColumnFeature as SpecialistInfoColumn, SpecialistLangs, _default$q as SpecialistMatch, _default$6 as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, _default$5 as SpecialistPaymentConsultationsFeature, _default as SpecialistPaymentResumeWidget, _default$1 as SpecialistPaymentWidget, _default$Q as SpecialistProfileViewCard, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default$p as SpecialistStatistic, SpecialistStatisticsCard, SpecialistWorkDirections, Spinner, Spinner_v2, StarRating, StatisticsScroll, StatusTag, SuccessScreen, SwitchDeviceCard, TabBar, Tag, _default$z as TextInput, _default$S as Textarea, _default$g as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, _default$o as Typography, TypographyVariantsEnum, UpdatesCard, UserInfoModal, UsersPsychologistScrollList, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$9 as Video, _default$O as VideoCallInfo, _default$P as VideoPlayer, _default$F as WorkDirections, YourLocalTimeBlock, appThemes, decOfNum, getProgressForBreakPoint, mergeRefs, priceNormalize, 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.43.0",
3
+ "version": "5.44.0",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "clean": "rimraf dist",