@mindly/ui-components 5.20.0 → 5.22.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 (38) hide show
  1. package/dist/cjs/index.js +6 -6
  2. package/dist/cjs/lib2/shared/assets/icons/IconArrowDown.d.ts +2 -0
  3. package/dist/cjs/lib2/shared/assets/icons/IconBookmark.d.ts +2 -0
  4. package/dist/cjs/lib2/shared/assets/icons/IconCalendarFilled.d.ts +3 -0
  5. package/dist/cjs/lib2/shared/assets/icons/IconCancel.d.ts +2 -0
  6. package/dist/cjs/lib2/shared/assets/icons/IconChatFilled.d.ts +3 -0
  7. package/dist/cjs/lib2/shared/assets/icons/IconClient.d.ts +2 -0
  8. package/dist/cjs/lib2/shared/assets/icons/IconClientFilled.d.ts +2 -0
  9. package/dist/cjs/lib2/shared/assets/icons/IconPaid.d.ts +2 -0
  10. package/dist/cjs/lib2/shared/assets/icons/IconSearch.d.ts +2 -0
  11. package/dist/cjs/lib2/shared/assets/icons/IconUserNotFound.d.ts +3 -0
  12. package/dist/cjs/lib2/shared/assets/icons/index.d.ts +10 -0
  13. package/dist/cjs/lib2/shared/hooks/useCircleRating.d.ts +7 -4
  14. package/dist/cjs/lib2/shared/types/ratingCircleTypes.d.ts +6 -2
  15. package/dist/cjs/lib2/shared/ui/ListItems/{ListItem.d.ts → Item.d.ts} +3 -3
  16. package/dist/cjs/lib2/shared/ui/ListItems/index.d.ts +1 -1
  17. package/dist/cjs/lib2/shared/ui/RatingCircle/RatingCircleWrapper.d.ts +3 -1
  18. package/dist/cjs/lib2/shared/ui/RatingCircle/styles.d.ts +35 -0
  19. package/dist/esm/index.js +6 -6
  20. package/dist/esm/lib2/shared/assets/icons/IconArrowDown.d.ts +2 -0
  21. package/dist/esm/lib2/shared/assets/icons/IconBookmark.d.ts +2 -0
  22. package/dist/esm/lib2/shared/assets/icons/IconCalendarFilled.d.ts +3 -0
  23. package/dist/esm/lib2/shared/assets/icons/IconCancel.d.ts +2 -0
  24. package/dist/esm/lib2/shared/assets/icons/IconChatFilled.d.ts +3 -0
  25. package/dist/esm/lib2/shared/assets/icons/IconClient.d.ts +2 -0
  26. package/dist/esm/lib2/shared/assets/icons/IconClientFilled.d.ts +2 -0
  27. package/dist/esm/lib2/shared/assets/icons/IconPaid.d.ts +2 -0
  28. package/dist/esm/lib2/shared/assets/icons/IconSearch.d.ts +2 -0
  29. package/dist/esm/lib2/shared/assets/icons/IconUserNotFound.d.ts +3 -0
  30. package/dist/esm/lib2/shared/assets/icons/index.d.ts +10 -0
  31. package/dist/esm/lib2/shared/hooks/useCircleRating.d.ts +7 -4
  32. package/dist/esm/lib2/shared/types/ratingCircleTypes.d.ts +6 -2
  33. package/dist/esm/lib2/shared/ui/ListItems/{ListItem.d.ts → Item.d.ts} +3 -3
  34. package/dist/esm/lib2/shared/ui/ListItems/index.d.ts +1 -1
  35. package/dist/esm/lib2/shared/ui/RatingCircle/RatingCircleWrapper.d.ts +3 -1
  36. package/dist/esm/lib2/shared/ui/RatingCircle/styles.d.ts +35 -0
  37. package/dist/index.d.ts +41 -11
  38. package/package.json +1 -1
@@ -0,0 +1,2 @@
1
+ import { SVGProps } from 'react';
2
+ export declare const IconArrowDown: ({ width, height, color, ...other }: SVGProps<SVGSVGElement>) => JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { SVGProps } from 'react';
2
+ export declare const IconBookmark: ({ width, height, color, ...other }: SVGProps<SVGSVGElement>) => JSX.Element;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ export declare const IconCalendarFilled: ({ width, height, color, ...props }: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default IconCalendarFilled;
@@ -0,0 +1,2 @@
1
+ import { SVGProps } from 'react';
2
+ export declare const IconCancel: ({ width, height, color, ...other }: SVGProps<SVGSVGElement>) => JSX.Element;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ export declare const IconChatFilled: ({ width, height, color, ...props }: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default IconChatFilled;
@@ -0,0 +1,2 @@
1
+ import { SVGProps } from 'react';
2
+ export declare const IconClient: ({ width, height, color, ...other }: SVGProps<SVGSVGElement>) => JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { SVGProps } from 'react';
2
+ export declare const IconClientFilled: ({ width, height, color, ...other }: SVGProps<SVGSVGElement>) => JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { SVGProps } from 'react';
2
+ export declare const IconPaid: ({ width, height, color, ...other }: SVGProps<SVGSVGElement>) => JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { SVGProps } from 'react';
2
+ export declare const IconSearch: ({ width, height, color, ...other }: SVGProps<SVGSVGElement>) => JSX.Element;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ export declare const IconUserNotFound: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default IconUserNotFound;
@@ -43,3 +43,13 @@ export * from './IconCheckSmall';
43
43
  export * from './IconCheck';
44
44
  export * from './IconCapFilled';
45
45
  export * from './IconCancelRounded';
46
+ export * from './IconUserNotFound';
47
+ export * from './IconSearch';
48
+ export * from './IconPaid';
49
+ export * from './IconClient';
50
+ export * from './IconClientFilled';
51
+ export * from './IconChatFilled';
52
+ export * from './IconCancel';
53
+ export * from './IconCalendarFilled';
54
+ export * from './IconBookmark';
55
+ export * from './IconArrowDown';
@@ -1,8 +1,8 @@
1
1
  import { WithTranslation } from 'react-i18next';
2
2
  import { CircleRatingRange, CircleRatingDataProps, CircleRatingDataResult, ProgressRangeProps, BreakPointPositionResult, CircleRatingContextData } from '../types/ratingCircleTypes';
3
3
  export declare const BREAKPOINT_ICON_SIZE = 20;
4
- export declare function useCircleRatingRenderData({ progress, size }: CircleRatingDataProps): CircleRatingDataResult;
5
- export declare function useRangeIndex({ progress, ranges }: ProgressRangeProps): number;
4
+ export declare function useCircleRatingRenderData({ progress, size, maxValue, isReverse, }: CircleRatingDataProps): CircleRatingDataResult;
5
+ export declare function useRangeIndex({ progress, maxValue, ranges, isReverse }: ProgressRangeProps): number;
6
6
  export declare function getProgressForBreakPoint({ maxValue, breakPoint, }: {
7
7
  maxValue: number;
8
8
  breakPoint: number;
@@ -13,11 +13,14 @@ export declare function useBreakPointsPosition({ maxValue, breakPoints, radius,
13
13
  radius?: number;
14
14
  strokeWidth?: number;
15
15
  }): BreakPointPositionResult[];
16
- export declare function useRatingCircleLegend({ ranges, t }: {
16
+ export declare function useRatingCircleLegend({ ranges, t, isReverse }: {
17
17
  ranges: CircleRatingRange[];
18
18
  t: WithTranslation['t'];
19
+ isReverse?: boolean;
19
20
  }): string[];
20
- export declare function useRatingCircleBreakPoints({ ranges }: {
21
+ export declare function useRatingCircleBreakPoints({ ranges, maxValue, isReverse, }: {
21
22
  ranges: CircleRatingRange[];
23
+ maxValue: number;
24
+ isReverse?: boolean;
22
25
  }): number[];
23
26
  export declare function useRatingContext(): CircleRatingContextData;
@@ -14,6 +14,8 @@ export type CircleRatingContent = {
14
14
  export type CircleRatingDataProps = {
15
15
  progress: number;
16
16
  size: keyof typeof CircleRatingSize;
17
+ maxValue: number;
18
+ isReverse?: boolean;
17
19
  };
18
20
  export type CircleRatingDataResult = {
19
21
  circleSize: number;
@@ -27,11 +29,11 @@ export type CircleRatingRange = {
27
29
  min: number | null;
28
30
  max: number | null;
29
31
  };
30
- export type CircleRatingCommonProps = {};
31
32
  export type ProgressRangeProps = {
32
33
  progress: number;
34
+ maxValue: number;
33
35
  ranges: CircleRatingRange[];
34
- isColorless?: boolean;
36
+ isReverse?: boolean;
35
37
  };
36
38
  export type BreakPointPositionProps = {
37
39
  radius?: number;
@@ -51,6 +53,8 @@ export type CircleRatingComponentProps = {
51
53
  isRatingDisabled?: boolean;
52
54
  isShowLegend?: boolean;
53
55
  isShowBreakPoints?: boolean;
56
+ isReverse?: boolean;
57
+ isZeroTransparent?: boolean;
54
58
  };
55
59
  export type CircleRatingContextProps = CircleRatingComponentProps & {
56
60
  legend?: string[];
@@ -1,15 +1,15 @@
1
1
  import * as React from 'react';
2
- type ListItemProps = React.HTMLAttributes<HTMLIonItemElement> & {
2
+ type ItemProps = React.HTMLAttributes<HTMLIonItemElement> & {
3
3
  leftContent?: React.ReactNode;
4
4
  rightContent?: React.ReactNode;
5
5
  withBorders?: boolean;
6
6
  isDisabled?: boolean;
7
7
  };
8
- export declare const ListItem: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLIonItemElement> & {
8
+ export declare const Item: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLIonItemElement> & {
9
9
  leftContent?: React.ReactNode;
10
10
  rightContent?: React.ReactNode;
11
11
  withBorders?: boolean | undefined;
12
12
  isDisabled?: boolean | undefined;
13
13
  } & React.RefAttributes<HTMLIonItemElement>>;
14
- declare const _default: React.NamedExoticComponent<ListItemProps>;
14
+ declare const _default: React.NamedExoticComponent<ItemProps>;
15
15
  export default _default;
@@ -1,2 +1,2 @@
1
1
  export { default as ListItems } from './ListItems';
2
- export { default as ListItem } from './ListItem';
2
+ export { default as Item } from './Item';
@@ -1,5 +1,7 @@
1
1
  import { FC } from 'react';
2
2
  import { WithTranslation } from 'react-i18next';
3
3
  import { CircleRatingComponentProps } from '../../types';
4
- declare const RatingCircleWrapper: FC<CircleRatingComponentProps & WithTranslation | any>;
4
+ declare const RatingCircleWrapper: FC<CircleRatingComponentProps & {
5
+ t: WithTranslation | any;
6
+ }>;
5
7
  export default RatingCircleWrapper;
@@ -1,4 +1,9 @@
1
1
  export declare const circleRatingStyles: import("tailwind-variants").TVReturnType<{
2
+ transparent: {
3
+ true: {
4
+ coloredStroke: string;
5
+ };
6
+ };
2
7
  isColorless: {
3
8
  true: {
4
9
  coloredStroke: string;
@@ -32,6 +37,11 @@ export declare const circleRatingStyles: import("tailwind-variants").TVReturnTyp
32
37
  contentColor: string;
33
38
  legendItem: string;
34
39
  }, "", import("tailwind-variants/dist/config").TVConfig<{
40
+ transparent: {
41
+ true: {
42
+ coloredStroke: string;
43
+ };
44
+ };
35
45
  isColorless: {
36
46
  true: {
37
47
  coloredStroke: string;
@@ -57,6 +67,11 @@ export declare const circleRatingStyles: import("tailwind-variants").TVReturnTyp
57
67
  };
58
68
  };
59
69
  }, {
70
+ transparent: {
71
+ true: {
72
+ coloredStroke: string;
73
+ };
74
+ };
60
75
  isColorless: {
61
76
  true: {
62
77
  coloredStroke: string;
@@ -82,6 +97,11 @@ export declare const circleRatingStyles: import("tailwind-variants").TVReturnTyp
82
97
  };
83
98
  };
84
99
  }>, {
100
+ transparent: {
101
+ true: {
102
+ coloredStroke: string;
103
+ };
104
+ };
85
105
  isColorless: {
86
106
  true: {
87
107
  coloredStroke: string;
@@ -115,6 +135,11 @@ export declare const circleRatingStyles: import("tailwind-variants").TVReturnTyp
115
135
  contentColor: string;
116
136
  legendItem: string;
117
137
  }, import("tailwind-variants").TVReturnType<{
138
+ transparent: {
139
+ true: {
140
+ coloredStroke: string;
141
+ };
142
+ };
118
143
  isColorless: {
119
144
  true: {
120
145
  coloredStroke: string;
@@ -148,6 +173,11 @@ export declare const circleRatingStyles: import("tailwind-variants").TVReturnTyp
148
173
  contentColor: string;
149
174
  legendItem: string;
150
175
  }, "", import("tailwind-variants/dist/config").TVConfig<{
176
+ transparent: {
177
+ true: {
178
+ coloredStroke: string;
179
+ };
180
+ };
151
181
  isColorless: {
152
182
  true: {
153
183
  coloredStroke: string;
@@ -173,6 +203,11 @@ export declare const circleRatingStyles: import("tailwind-variants").TVReturnTyp
173
203
  };
174
204
  };
175
205
  }, {
206
+ transparent: {
207
+ true: {
208
+ coloredStroke: string;
209
+ };
210
+ };
176
211
  isColorless: {
177
212
  true: {
178
213
  coloredStroke: string;
package/dist/index.d.ts CHANGED
@@ -5,7 +5,7 @@ import { RatingComponentProps } from 'react-rating';
5
5
  import { RefresherEventDetail, ScrollDetail, ScrollBaseDetail } from '@ionic/react';
6
6
  import * as _ionic_core_dist_types_components from '@ionic/core/dist/types/components';
7
7
  import { IonContentCustomEvent, IonSearchbarCustomEvent } from '@ionic/core/dist/types/components';
8
- import { Node, ListState, ItemProps, SelectionBehavior, SelectionMode } from 'react-stately';
8
+ import { Node, ListState, ItemProps as ItemProps$1, SelectionBehavior, SelectionMode } from 'react-stately';
9
9
  import { AriaListBoxProps, AriaCalendarProps, DateValue } from 'react-aria';
10
10
  import * as react_i18next from 'react-i18next';
11
11
  import { WithTranslation } from 'react-i18next';
@@ -1542,7 +1542,7 @@ type ListBoxItemProps = {
1542
1542
  };
1543
1543
 
1544
1544
  declare const ListOption: React.ForwardRefExoticComponent<ListOptionsProps & React.RefAttributes<HTMLLIElement>>;
1545
- declare const ListBoxItem: (props: ItemProps<unknown> & ListBoxItemProps) => JSX.Element;
1545
+ declare const ListBoxItem: (props: ItemProps$1<unknown> & ListBoxItemProps) => JSX.Element;
1546
1546
 
1547
1547
  type ListBoxProps<T> = AriaListBoxProps<T>;
1548
1548
 
@@ -1612,6 +1612,8 @@ type CircleRatingContent = {
1612
1612
  type CircleRatingDataProps = {
1613
1613
  progress: number;
1614
1614
  size: keyof typeof CircleRatingSize;
1615
+ maxValue: number;
1616
+ isReverse?: boolean;
1615
1617
  };
1616
1618
  type CircleRatingDataResult = {
1617
1619
  circleSize: number;
@@ -1627,8 +1629,9 @@ type CircleRatingRange = {
1627
1629
  };
1628
1630
  type ProgressRangeProps = {
1629
1631
  progress: number;
1632
+ maxValue: number;
1630
1633
  ranges: CircleRatingRange[];
1631
- isColorless?: boolean;
1634
+ isReverse?: boolean;
1632
1635
  };
1633
1636
  type BreakPointPositionResult = {
1634
1637
  top: number;
@@ -1643,6 +1646,8 @@ type CircleRatingComponentProps = {
1643
1646
  isRatingDisabled?: boolean;
1644
1647
  isShowLegend?: boolean;
1645
1648
  isShowBreakPoints?: boolean;
1649
+ isReverse?: boolean;
1650
+ isZeroTransparent?: boolean;
1646
1651
  };
1647
1652
  type CircleRatingContextProps = CircleRatingComponentProps & {
1648
1653
  legend?: string[];
@@ -1660,7 +1665,9 @@ type CircleRatingContextData = CircleRatingContextProps & {
1660
1665
  styles: any;
1661
1666
  };
1662
1667
 
1663
- declare const RatingCircleWrapper: FC<CircleRatingComponentProps & WithTranslation | any>;
1668
+ declare const RatingCircleWrapper: FC<CircleRatingComponentProps & {
1669
+ t: WithTranslation | any;
1670
+ }>;
1664
1671
 
1665
1672
  type IconButtonProps = {
1666
1673
  icon: JSX.Element;
@@ -1718,13 +1725,13 @@ type ListItemsProps = React.HTMLAttributes<HTMLIonListElement> & {
1718
1725
  };
1719
1726
  declare const _default$2: React.NamedExoticComponent<ListItemsProps>;
1720
1727
 
1721
- type ListItemProps = React.HTMLAttributes<HTMLIonItemElement> & {
1728
+ type ItemProps = React.HTMLAttributes<HTMLIonItemElement> & {
1722
1729
  leftContent?: React.ReactNode;
1723
1730
  rightContent?: React.ReactNode;
1724
1731
  withBorders?: boolean;
1725
1732
  isDisabled?: boolean;
1726
1733
  };
1727
- declare const _default$1: React.NamedExoticComponent<ListItemProps>;
1734
+ declare const _default$1: React.NamedExoticComponent<ItemProps>;
1728
1735
 
1729
1736
  declare enum appThemes {
1730
1737
  client = "client",
@@ -1763,8 +1770,8 @@ declare function useAutoFocus<T extends InputRefType>(): React.RefObject<T>;
1763
1770
  declare function useToastContext(): ToastState<MindlyToastProps>;
1764
1771
 
1765
1772
  declare const BREAKPOINT_ICON_SIZE = 20;
1766
- declare function useCircleRatingRenderData({ progress, size }: CircleRatingDataProps): CircleRatingDataResult;
1767
- declare function useRangeIndex({ progress, ranges }: ProgressRangeProps): number;
1773
+ declare function useCircleRatingRenderData({ progress, size, maxValue, isReverse, }: CircleRatingDataProps): CircleRatingDataResult;
1774
+ declare function useRangeIndex({ progress, maxValue, ranges, isReverse }: ProgressRangeProps): number;
1768
1775
  declare function getProgressForBreakPoint({ maxValue, breakPoint, }: {
1769
1776
  maxValue: number;
1770
1777
  breakPoint: number;
@@ -1775,12 +1782,15 @@ declare function useBreakPointsPosition({ maxValue, breakPoints, radius, strokeW
1775
1782
  radius?: number;
1776
1783
  strokeWidth?: number;
1777
1784
  }): BreakPointPositionResult[];
1778
- declare function useRatingCircleLegend({ ranges, t }: {
1785
+ declare function useRatingCircleLegend({ ranges, t, isReverse }: {
1779
1786
  ranges: CircleRatingRange[];
1780
1787
  t: WithTranslation['t'];
1788
+ isReverse?: boolean;
1781
1789
  }): string[];
1782
- declare function useRatingCircleBreakPoints({ ranges }: {
1790
+ declare function useRatingCircleBreakPoints({ ranges, maxValue, isReverse, }: {
1783
1791
  ranges: CircleRatingRange[];
1792
+ maxValue: number;
1793
+ isReverse?: boolean;
1784
1794
  }): number[];
1785
1795
  declare function useRatingContext(): CircleRatingContextData;
1786
1796
 
@@ -1985,6 +1995,26 @@ interface IconProps extends React.SVGAttributes<SVGElement> {
1985
1995
  }
1986
1996
  declare const IconCancelRounded: FC<IconProps>;
1987
1997
 
1998
+ declare const IconUserNotFound: (props: SVGProps<SVGSVGElement>) => JSX.Element;
1999
+
2000
+ declare const IconSearch: ({ width, height, color, ...other }: SVGProps<SVGSVGElement>) => JSX.Element;
2001
+
2002
+ declare const IconPaid: ({ width, height, color, ...other }: SVGProps<SVGSVGElement>) => JSX.Element;
2003
+
2004
+ declare const IconClient: ({ width, height, color, ...other }: SVGProps<SVGSVGElement>) => JSX.Element;
2005
+
2006
+ declare const IconClientFilled: ({ width, height, color, ...other }: SVGProps<SVGSVGElement>) => JSX.Element;
2007
+
2008
+ declare const IconChatFilled: ({ width, height, color, ...props }: SVGProps<SVGSVGElement>) => JSX.Element;
2009
+
2010
+ declare const IconCancel: ({ width, height, color, ...other }: SVGProps<SVGSVGElement>) => JSX.Element;
2011
+
2012
+ declare const IconCalendarFilled: ({ width, height, color, ...props }: SVGProps<SVGSVGElement>) => JSX.Element;
2013
+
2014
+ declare const IconBookmark: ({ width, height, color, ...other }: SVGProps<SVGSVGElement>) => JSX.Element;
2015
+
2016
+ declare const IconArrowDown: ({ width, height, color, ...other }: SVGProps<SVGSVGElement>) => JSX.Element;
2017
+
1988
2018
  type AnyRef = React__default.Ref<any>;
1989
2019
  declare const mergeRefs: <T extends unknown>(...refs: AnyRef[]) => React__default.Ref<T>;
1990
2020
 
@@ -2070,4 +2100,4 @@ type PushNotificationsIsDisabledBannerProps = {
2070
2100
 
2071
2101
  declare function PushNotificationsIsDisabledBanner({ onOpenNativeSettings, className, title, description, buttonText, }: PushNotificationsIsDisabledBannerProps): JSX.Element;
2072
2102
 
2073
- export { AppFooter, _default$e as AppFooter_v2, AppHeader, AppHeader_v2, ArchivedConsultationCard, Avatar, AvatarProps$1 as AvatarProps, _default$d as Avatar_v2, BREAKPOINT_ICON_SIZE, _default$9 as Badge, _default$s as BookingScheduleTime, _default$r as BookingSpecialistInfo, Button, Button_v2, Calendar, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$N as ChatListItem, _default$L as ChatListSkeleton, _default$M as ChatMessage, ChatMessageSkeleton, _default$m as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingContext, CircleRatingProvider, _default$E as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$B as ConsultationModal, _default$z as ConsultationSpecialistCard, Container, Container_v2, ContentCard, CountryOfOriginModal, CustomButton, _default$n as CustomCheckbox, CustomRadioButton, _default$o as CustomSelect, _default$p as CustomTextarea, DatePicker, _default$x as DaySlider, DayToRender, _default$t as EducationCard, _default$K as EmptyChatList, EmptyChatMessages, _default$C as EmptyConsultations, EntryNotFound, EntryNotFoundProps, _default$j as Flag, FlagTypes, _default$b as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconApple, IconArrowLeft, IconArrowRight, IconBeachAccess, _default$5 as IconButton, IconCalendar, IconCalendarMonth, IconCancelRounded, IconCapFilled, IconChat3d, IconChatOutline, IconCheck, IconCheckSmall, IconCheckboxChecked, IconCheckboxUnchecked, IconClose, IconCreditCard, IconEditCalendar, IconEye, IconEyeOff, IconGift, IconGoogle, IconInvisible, IconLanguage, IconLeftArrow, IconLetter, IconLogout, IconNotificationMuted, IconPaper, IconPause, IconPlus, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconQuestion, IconResume, IconSettings, IconSpinner, IconStar, IconStarFilled, IconSuccess, IconTime, IconVerifiedUser, IconVisible, IconWarning, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, _default$8 as ItemCard, LanguagesList, _default$R as LetterAvatar, _default$k as LineFileInput, ListBox, ListBoxItem, ListButton, _default$1 as ListItem, ListItemType, _default$2 as ListItems, ListOption, ListSelect, ListSelectProps, _default$3 as Loading, LouseConnect, _default$O as MediaPlayer, Modal, ModalCalendar, ModalSheet, NavigationBar, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, PasswordInput, _default$Q as PersonDateTimeCard, _default$a as Picture, _default$i as ProfileInformation, _default$v as ProfileView, _default$l as ProgressBar, _default$4 as ProgressBar_v2, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$6 as Rating, RatingCircleWrapper, _default$y as ReSchedule, ReScheduleSuccess, Refresher, ReviewCard, ReviewStatistics, ReviewSwiperSection, RoundButton, RowItemType, RowSelect, RowSelectProps, ScreenInput, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$P as SelectImpressionEmoji, _default$D as SignUpSessionButton, _default$A as SignUpSessionModal, Skeleton, _default$c as Skeleton_v2, _default as SlotsGrid, _default$u as SpecialistAbout, SpecialistCard, _default$I as SpecialistEducationCard, SpecialistLangs, _default$h as SpecialistMatch, _default$H as SpecialistProfileViewCard, _default$g as SpecialistStatistic, SpecialistStatisticsCard, SpecialistWorkDirections, Spinner, Spinner_v2, StarRating, StatisticsScroll, StatusTag, SuccessScreen, SwitchDeviceCard, TabBar, Tag, _default$q as TextInput, _default$J as Textarea, _default$7 as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, _default$f as Typography, TypographyVariantsEnum, UpdatesCard, UserInfoModal, UsersPsychologistScrollList, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$F as VideoCallInfo, _default$G as VideoPlayer, _default$w as WorkDirections, YourLocalTimeBlock, appThemes, decOfNum, getProgressForBreakPoint, mergeRefs, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDomRef, useEvent, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleLegend, useRatingContext, useToastContext };
2103
+ export { AppFooter, _default$e as AppFooter_v2, AppHeader, AppHeader_v2, ArchivedConsultationCard, Avatar, AvatarProps$1 as AvatarProps, _default$d as Avatar_v2, BREAKPOINT_ICON_SIZE, _default$9 as Badge, _default$s as BookingScheduleTime, _default$r as BookingSpecialistInfo, Button, Button_v2, Calendar, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$N as ChatListItem, _default$L as ChatListSkeleton, _default$M as ChatMessage, ChatMessageSkeleton, _default$m as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingContext, CircleRatingProvider, _default$E as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$B as ConsultationModal, _default$z as ConsultationSpecialistCard, Container, Container_v2, ContentCard, CountryOfOriginModal, CustomButton, _default$n as CustomCheckbox, CustomRadioButton, _default$o as CustomSelect, _default$p as CustomTextarea, DatePicker, _default$x as DaySlider, DayToRender, _default$t as EducationCard, _default$K as EmptyChatList, EmptyChatMessages, _default$C as EmptyConsultations, EntryNotFound, EntryNotFoundProps, _default$j as Flag, FlagTypes, _default$b as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconApple, IconArrowDown, IconArrowLeft, IconArrowRight, IconBeachAccess, IconBookmark, _default$5 as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCancel, IconCancelRounded, IconCapFilled, IconChat3d, IconChatFilled, IconChatOutline, IconCheck, IconCheckSmall, IconCheckboxChecked, IconCheckboxUnchecked, IconClient, IconClientFilled, IconClose, IconCreditCard, IconEditCalendar, IconEye, IconEyeOff, IconGift, IconGoogle, IconInvisible, IconLanguage, IconLeftArrow, IconLetter, IconLogout, IconNotificationMuted, IconPaid, IconPaper, IconPause, IconPlus, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconQuestion, IconResume, IconSearch, IconSettings, IconSpinner, IconStar, IconStarFilled, IconSuccess, IconTime, IconUserNotFound, IconVerifiedUser, IconVisible, IconWarning, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, _default$1 as Item, _default$8 as ItemCard, LanguagesList, _default$R as LetterAvatar, _default$k as LineFileInput, ListBox, ListBoxItem, ListButton, ListItemType, _default$2 as ListItems, ListOption, ListSelect, ListSelectProps, _default$3 as Loading, LouseConnect, _default$O as MediaPlayer, Modal, ModalCalendar, ModalSheet, NavigationBar, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, PasswordInput, _default$Q as PersonDateTimeCard, _default$a as Picture, _default$i as ProfileInformation, _default$v as ProfileView, _default$l as ProgressBar, _default$4 as ProgressBar_v2, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$6 as Rating, RatingCircleWrapper, _default$y as ReSchedule, ReScheduleSuccess, Refresher, ReviewCard, ReviewStatistics, ReviewSwiperSection, RoundButton, RowItemType, RowSelect, RowSelectProps, ScreenInput, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$P as SelectImpressionEmoji, _default$D as SignUpSessionButton, _default$A as SignUpSessionModal, Skeleton, _default$c as Skeleton_v2, _default as SlotsGrid, _default$u as SpecialistAbout, SpecialistCard, _default$I as SpecialistEducationCard, SpecialistLangs, _default$h as SpecialistMatch, _default$H as SpecialistProfileViewCard, _default$g as SpecialistStatistic, SpecialistStatisticsCard, SpecialistWorkDirections, Spinner, Spinner_v2, StarRating, StatisticsScroll, StatusTag, SuccessScreen, SwitchDeviceCard, TabBar, Tag, _default$q as TextInput, _default$J as Textarea, _default$7 as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, _default$f as Typography, TypographyVariantsEnum, UpdatesCard, UserInfoModal, UsersPsychologistScrollList, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$F as VideoCallInfo, _default$G as VideoPlayer, _default$w as WorkDirections, YourLocalTimeBlock, appThemes, decOfNum, getProgressForBreakPoint, mergeRefs, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDomRef, useEvent, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleLegend, useRatingContext, useToastContext };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindly/ui-components",
3
- "version": "5.20.0",
3
+ "version": "5.22.0",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "clean": "rimraf dist",