@mindly/ui-components 5.47.3 → 5.49.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.
@@ -0,0 +1,9 @@
1
+ import * as React from 'react';
2
+ interface IconProps extends React.SVGAttributes<SVGElement> {
3
+ size?: number | string;
4
+ color?: string;
5
+ className?: string;
6
+ style?: React.CSSProperties;
7
+ }
8
+ export declare function IconCheckCircle({ color, size, ...props }: IconProps): JSX.Element;
9
+ export {};
@@ -75,3 +75,4 @@ export * from './IconManageAccounts';
75
75
  export * from './IconSend';
76
76
  export * from './IconGallery';
77
77
  export * from './IconText';
78
+ export * from './IconCheckCircle';
@@ -1,2 +1,2 @@
1
1
  import { ListBoxProps } from './types';
2
- export default function ListBox<T extends Record<string, unknown>>(props: ListBoxProps<T>): JSX.Element;
2
+ export default function ListBox<T extends Record<string, unknown>>({ selectedIconProps, type, selectionPosition, enableSelection, ...props }: ListBoxProps<T>): JSX.Element;
@@ -1,2 +1,12 @@
1
1
  import { AriaListBoxProps } from 'react-aria';
2
- export type ListBoxProps<T> = AriaListBoxProps<T>;
2
+ import { IconProps } from '../../types';
3
+ export declare enum ListBoxSelectionType {
4
+ Checkbox = "checkbox",
5
+ Radio = "radio"
6
+ }
7
+ export type ListBoxProps<T> = AriaListBoxProps<T> & {
8
+ type?: ListBoxSelectionType;
9
+ enableSelection?: boolean;
10
+ selectedIconProps?: IconProps;
11
+ selectionPosition?: 'start' | 'end';
12
+ };
@@ -1,5 +1,5 @@
1
1
  import * as React from 'react';
2
2
  import { ItemProps } from 'react-stately';
3
3
  import { ListBoxItemProps, ListOptionsProps } from './types';
4
- export declare const ListOption: React.ForwardRefExoticComponent<ListOptionsProps & React.RefAttributes<HTMLLIElement>>;
4
+ export declare const ListOption: React.ForwardRefExoticComponent<ListOptionsProps & React.RefAttributes<HTMLIonItemElement>>;
5
5
  export declare const ListBoxItem: (props: ItemProps<unknown> & ListBoxItemProps) => JSX.Element;
@@ -1,16 +1,26 @@
1
1
  import { ListState, Node } from 'react-stately';
2
2
  import * as React from 'react';
3
+ import { ListBoxSelectionType } from '../ListBox/types';
4
+ import { IconProps } from '../../types';
3
5
  export type ListOptionsProps = {
4
6
  item: Node<unknown>;
5
7
  state: ListState<unknown>;
6
8
  icon?: React.ReactNode;
7
9
  divider?: boolean;
8
10
  value?: string;
11
+ selectedIconProps?: IconProps;
12
+ type?: ListBoxSelectionType;
13
+ selectionPosition?: 'start' | 'end';
14
+ enableSelection?: boolean;
15
+ customContent?: boolean;
9
16
  };
10
17
  export type ListBoxItemProps = {
11
18
  icon?: React.ReactNode;
19
+ type?: ListBoxSelectionType;
20
+ selectedIconProps?: IconProps;
12
21
  divider?: boolean;
13
22
  value?: string;
14
23
  children: React.ReactNode;
15
24
  className?: string;
25
+ onClick?: HTMLIonItemElement["onclick"];
16
26
  };
package/dist/index.d.ts CHANGED
@@ -1535,82 +1535,6 @@ type AppHeaderProps = {
1535
1535
  };
1536
1536
  declare const AppHeader_v2: FC<AppHeaderProps>;
1537
1537
 
1538
- type ListOptionsProps = {
1539
- item: Node<unknown>;
1540
- state: ListState<unknown>;
1541
- icon?: React.ReactNode;
1542
- divider?: boolean;
1543
- value?: string;
1544
- };
1545
- type ListBoxItemProps = {
1546
- icon?: React.ReactNode;
1547
- divider?: boolean;
1548
- value?: string;
1549
- children: React.ReactNode;
1550
- className?: string;
1551
- };
1552
-
1553
- declare const ListOption: React.ForwardRefExoticComponent<ListOptionsProps & React.RefAttributes<HTMLLIElement>>;
1554
- declare const ListBoxItem: (props: ItemProps$1<unknown> & ListBoxItemProps) => JSX.Element;
1555
-
1556
- type ListBoxProps<T> = AriaListBoxProps<T>;
1557
-
1558
- declare function ListBox<T extends Record<string, unknown>>(props: ListBoxProps<T>): JSX.Element;
1559
-
1560
- type BaseTypeProps = {
1561
- onDatePress?: (date: string, evt: React.MouseEvent<HTMLButtonElement>) => void;
1562
- locale: string;
1563
- timeZone?: string;
1564
- selectionMode?: SelectionMode;
1565
- renderCustomDateContent?: (date: string, formattedDate: string, isSelected: boolean, isToday: boolean) => React.ReactNode;
1566
- };
1567
- type CalendarProps = Omit<AriaCalendarProps<DateValue>, 'minValue' | 'defaultValue' | 'maxValue'> & BaseTypeProps & {
1568
- minValue?: string;
1569
- defaultValue?: string;
1570
- maxValue?: string;
1571
- slots?: Record<string, any[]>;
1572
- fullWidth?: boolean;
1573
- isShowWeekNames?: boolean;
1574
- isShowMonthNavigation?: boolean;
1575
- defaultSelectDates: string[];
1576
- selectionBehavior?: SelectionBehavior;
1577
- onSelectionChange: (dates: string[]) => void;
1578
- };
1579
-
1580
- declare function Calendar({ maxValue, minValue, timeZone, locale, isShowWeekNames, isShowMonthNavigation, selectionMode, onSelectionChange, defaultSelectDates, onDatePress, renderCustomDateContent, fullWidth, ...props }: CalendarProps): JSX.Element;
1581
-
1582
- type VerticalCalendarProps = CalendarProps & {
1583
- visibleDuration?: number;
1584
- };
1585
- declare function VerticalCalendar({ maxValue, timeZone, locale, selectionMode, onSelectionChange, defaultSelectDates, onDatePress, renderCustomDateContent, fullWidth, minValue, visibleDuration, ...props }: VerticalCalendarProps): JSX.Element;
1586
-
1587
- type VerticalCalendarMonthSkeletonProps = {
1588
- days: number;
1589
- };
1590
- declare function VerticalCalendarMonthSkeleton({ days, }: VerticalCalendarMonthSkeletonProps): JSX.Element;
1591
-
1592
- declare function VerticalCalendarSkeleton(): JSX.Element;
1593
-
1594
- interface TextareaV2Props extends Omit<JSX$1.IonTextarea, 'color' | 'enterkeyhint' | 'inputmode' | 'mode'> {
1595
- borderTop?: boolean;
1596
- showCounter?: boolean;
1597
- className?: string;
1598
- }
1599
-
1600
- declare const _default$i: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TextareaV2Props & React__default.RefAttributes<HTMLIonTextareaElement>>>;
1601
-
1602
- type RatingProps = {
1603
- initialRating?: number;
1604
- onChange?: (value: number) => void;
1605
- onClick?: (value: number) => void;
1606
- onHover?: (value: number) => void;
1607
- size?: number;
1608
- className?: string;
1609
- readonly?: boolean;
1610
- };
1611
-
1612
- declare const _default$h: React__default.NamedExoticComponent<RatingProps>;
1613
-
1614
1538
  declare enum CircleRatingSize {
1615
1539
  'S' = "S",
1616
1540
  'M' = "M",
@@ -1773,7 +1697,7 @@ type SpecialistPaymentConsultationDetailsType = {
1773
1697
  onUserClick?: () => void;
1774
1698
  };
1775
1699
 
1776
- interface IconProps$y extends SVGAttributes<SVGElement> {
1700
+ interface IconProps$z extends SVGAttributes<SVGElement> {
1777
1701
  size?: number | string;
1778
1702
  color?: string;
1779
1703
  className?: string;
@@ -1792,6 +1716,99 @@ declare enum SupportedCurrency {
1792
1716
  'USD' = "USD"
1793
1717
  }
1794
1718
 
1719
+ declare enum ListBoxSelectionType {
1720
+ Checkbox = "checkbox",
1721
+ Radio = "radio"
1722
+ }
1723
+ type ListBoxProps<T> = AriaListBoxProps<T> & {
1724
+ type?: ListBoxSelectionType;
1725
+ enableSelection?: boolean;
1726
+ selectedIconProps?: IconProps$z;
1727
+ selectionPosition?: 'start' | 'end';
1728
+ };
1729
+
1730
+ type ListOptionsProps = {
1731
+ item: Node<unknown>;
1732
+ state: ListState<unknown>;
1733
+ icon?: React.ReactNode;
1734
+ divider?: boolean;
1735
+ value?: string;
1736
+ selectedIconProps?: IconProps$z;
1737
+ type?: ListBoxSelectionType;
1738
+ selectionPosition?: 'start' | 'end';
1739
+ enableSelection?: boolean;
1740
+ customContent?: boolean;
1741
+ };
1742
+ type ListBoxItemProps = {
1743
+ icon?: React.ReactNode;
1744
+ type?: ListBoxSelectionType;
1745
+ selectedIconProps?: IconProps$z;
1746
+ divider?: boolean;
1747
+ value?: string;
1748
+ children: React.ReactNode;
1749
+ className?: string;
1750
+ onClick?: HTMLIonItemElement["onclick"];
1751
+ };
1752
+
1753
+ declare const ListOption: React.ForwardRefExoticComponent<ListOptionsProps & React.RefAttributes<HTMLIonItemElement>>;
1754
+ declare const ListBoxItem: (props: ItemProps$1<unknown> & ListBoxItemProps) => JSX.Element;
1755
+
1756
+ declare function ListBox<T extends Record<string, unknown>>({ selectedIconProps, type, selectionPosition, enableSelection, ...props }: ListBoxProps<T>): JSX.Element;
1757
+
1758
+ type BaseTypeProps = {
1759
+ onDatePress?: (date: string, evt: React.MouseEvent<HTMLButtonElement>) => void;
1760
+ locale: string;
1761
+ timeZone?: string;
1762
+ selectionMode?: SelectionMode;
1763
+ renderCustomDateContent?: (date: string, formattedDate: string, isSelected: boolean, isToday: boolean) => React.ReactNode;
1764
+ };
1765
+ type CalendarProps = Omit<AriaCalendarProps<DateValue>, 'minValue' | 'defaultValue' | 'maxValue'> & BaseTypeProps & {
1766
+ minValue?: string;
1767
+ defaultValue?: string;
1768
+ maxValue?: string;
1769
+ slots?: Record<string, any[]>;
1770
+ fullWidth?: boolean;
1771
+ isShowWeekNames?: boolean;
1772
+ isShowMonthNavigation?: boolean;
1773
+ defaultSelectDates: string[];
1774
+ selectionBehavior?: SelectionBehavior;
1775
+ onSelectionChange: (dates: string[]) => void;
1776
+ };
1777
+
1778
+ declare function Calendar({ maxValue, minValue, timeZone, locale, isShowWeekNames, isShowMonthNavigation, selectionMode, onSelectionChange, defaultSelectDates, onDatePress, renderCustomDateContent, fullWidth, ...props }: CalendarProps): JSX.Element;
1779
+
1780
+ type VerticalCalendarProps = CalendarProps & {
1781
+ visibleDuration?: number;
1782
+ };
1783
+ declare function VerticalCalendar({ maxValue, timeZone, locale, selectionMode, onSelectionChange, defaultSelectDates, onDatePress, renderCustomDateContent, fullWidth, minValue, visibleDuration, ...props }: VerticalCalendarProps): JSX.Element;
1784
+
1785
+ type VerticalCalendarMonthSkeletonProps = {
1786
+ days: number;
1787
+ };
1788
+ declare function VerticalCalendarMonthSkeleton({ days, }: VerticalCalendarMonthSkeletonProps): JSX.Element;
1789
+
1790
+ declare function VerticalCalendarSkeleton(): JSX.Element;
1791
+
1792
+ interface TextareaV2Props extends Omit<JSX$1.IonTextarea, 'color' | 'enterkeyhint' | 'inputmode' | 'mode'> {
1793
+ borderTop?: boolean;
1794
+ showCounter?: boolean;
1795
+ className?: string;
1796
+ }
1797
+
1798
+ declare const _default$i: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TextareaV2Props & React__default.RefAttributes<HTMLIonTextareaElement>>>;
1799
+
1800
+ type RatingProps = {
1801
+ initialRating?: number;
1802
+ onChange?: (value: number) => void;
1803
+ onClick?: (value: number) => void;
1804
+ onHover?: (value: number) => void;
1805
+ size?: number;
1806
+ className?: string;
1807
+ readonly?: boolean;
1808
+ };
1809
+
1810
+ declare const _default$h: React__default.NamedExoticComponent<RatingProps>;
1811
+
1795
1812
  declare const RatingCircleWrapper: FC<CircleRatingComponentProps & {
1796
1813
  t: WithTranslation | any;
1797
1814
  }>;
@@ -2017,126 +2034,126 @@ declare function useRatingCircleBreakPoints({ ranges, maxValue, isReverse, }: {
2017
2034
  }): number[];
2018
2035
  declare function useRatingContext(): CircleRatingContextData;
2019
2036
 
2037
+ interface IconProps$y extends React.SVGAttributes<SVGElement> {
2038
+ size?: number | string;
2039
+ color?: string;
2040
+ }
2041
+ declare function IconArrowLeft({ color, size, ...other }: IconProps$y): JSX.Element;
2042
+
2020
2043
  interface IconProps$x extends React.SVGAttributes<SVGElement> {
2021
2044
  size?: number | string;
2022
2045
  color?: string;
2023
2046
  }
2024
- declare function IconArrowLeft({ color, size, ...other }: IconProps$x): JSX.Element;
2047
+ declare function IconArrowRight({ color, size, ...other }: IconProps$x): JSX.Element;
2025
2048
 
2026
2049
  interface IconProps$w extends React.SVGAttributes<SVGElement> {
2027
2050
  size?: number | string;
2028
2051
  color?: string;
2029
2052
  }
2030
- declare function IconArrowRight({ color, size, ...other }: IconProps$w): JSX.Element;
2053
+ declare function IconBeachAccess({ color, size, ...other }: IconProps$w): JSX.Element;
2031
2054
 
2032
2055
  interface IconProps$v extends React.SVGAttributes<SVGElement> {
2033
2056
  size?: number | string;
2034
2057
  color?: string;
2035
2058
  }
2036
- declare function IconBeachAccess({ color, size, ...other }: IconProps$v): JSX.Element;
2059
+ declare function IconCalendar({ color, size, ...other }: IconProps$v): JSX.Element;
2037
2060
 
2038
2061
  interface IconProps$u extends React.SVGAttributes<SVGElement> {
2039
2062
  size?: number | string;
2040
2063
  color?: string;
2041
2064
  }
2042
- declare function IconCalendar({ color, size, ...other }: IconProps$u): JSX.Element;
2065
+ declare function IconCalendarMonth({ color, size, ...other }: IconProps$u): JSX.Element;
2043
2066
 
2044
2067
  interface IconProps$t extends React.SVGAttributes<SVGElement> {
2045
2068
  size?: number | string;
2046
2069
  color?: string;
2047
2070
  }
2048
- declare function IconCalendarMonth({ color, size, ...other }: IconProps$t): JSX.Element;
2071
+ declare function IconChatOutline({ color, size, ...other }: IconProps$t): JSX.Element;
2049
2072
 
2050
2073
  interface IconProps$s extends React.SVGAttributes<SVGElement> {
2051
2074
  size?: number | string;
2052
2075
  color?: string;
2053
2076
  }
2054
- declare function IconChatOutline({ color, size, ...other }: IconProps$s): JSX.Element;
2077
+ declare function IconCheckboxChecked({ color, size, ...other }: IconProps$s): JSX.Element;
2055
2078
 
2056
2079
  interface IconProps$r extends React.SVGAttributes<SVGElement> {
2057
2080
  size?: number | string;
2058
2081
  color?: string;
2059
2082
  }
2060
- declare function IconCheckboxChecked({ color, size, ...other }: IconProps$r): JSX.Element;
2083
+ declare function IconCheckboxUnchecked({ color, size, ...other }: IconProps$r): JSX.Element;
2084
+
2085
+ declare const IconClose: FC<React.SVGAttributes<SVGElement>>;
2061
2086
 
2062
2087
  interface IconProps$q extends React.SVGAttributes<SVGElement> {
2063
2088
  size?: number | string;
2064
2089
  color?: string;
2065
2090
  }
2066
- declare function IconCheckboxUnchecked({ color, size, ...other }: IconProps$q): JSX.Element;
2067
-
2068
- declare const IconClose: FC<React.SVGAttributes<SVGElement>>;
2091
+ declare function IconEditCalendar({ color, size, ...props }: IconProps$q): JSX.Element;
2069
2092
 
2070
2093
  interface IconProps$p extends React.SVGAttributes<SVGElement> {
2071
2094
  size?: number | string;
2072
2095
  color?: string;
2073
2096
  }
2074
- declare function IconEditCalendar({ color, size, ...props }: IconProps$p): JSX.Element;
2097
+ declare function IconInvisible({ color, size, ...other }: IconProps$p): JSX.Element;
2075
2098
 
2076
2099
  interface IconProps$o extends React.SVGAttributes<SVGElement> {
2077
2100
  size?: number | string;
2078
2101
  color?: string;
2079
2102
  }
2080
- declare function IconInvisible({ color, size, ...other }: IconProps$o): JSX.Element;
2103
+ declare function IconLanguage({ color, size, ...other }: IconProps$o): JSX.Element;
2104
+
2105
+ declare const IconLeftArrow: FC<React.SVGAttributes<SVGElement>>;
2081
2106
 
2082
2107
  interface IconProps$n extends React.SVGAttributes<SVGElement> {
2083
2108
  size?: number | string;
2084
2109
  color?: string;
2085
2110
  }
2086
- declare function IconLanguage({ color, size, ...other }: IconProps$n): JSX.Element;
2087
-
2088
- declare const IconLeftArrow: FC<React.SVGAttributes<SVGElement>>;
2111
+ declare function IconLogout({ color, size, ...other }: IconProps$n): JSX.Element;
2089
2112
 
2090
2113
  interface IconProps$m extends React.SVGAttributes<SVGElement> {
2091
2114
  size?: number | string;
2092
2115
  color?: string;
2093
2116
  }
2094
- declare function IconLogout({ color, size, ...other }: IconProps$m): JSX.Element;
2117
+ declare function IconPause({ color, size, ...other }: IconProps$m): JSX.Element;
2118
+
2119
+ type IconPlusProps = React.SVGProps<any>;
2120
+ declare function IconPlus({ color, ...props }: IconPlusProps): JSX.Element;
2095
2121
 
2096
2122
  interface IconProps$l extends React.SVGAttributes<SVGElement> {
2097
2123
  size?: number | string;
2098
2124
  color?: string;
2099
2125
  }
2100
- declare function IconPause({ color, size, ...other }: IconProps$l): JSX.Element;
2101
-
2102
- type IconPlusProps = React.SVGProps<any>;
2103
- declare function IconPlus({ color, ...props }: IconPlusProps): JSX.Element;
2126
+ declare function IconProfileChecked({ color, size, ...other }: IconProps$l): JSX.Element;
2104
2127
 
2105
2128
  interface IconProps$k extends React.SVGAttributes<SVGElement> {
2106
2129
  size?: number | string;
2107
2130
  color?: string;
2108
2131
  }
2109
- declare function IconProfileChecked({ color, size, ...other }: IconProps$k): JSX.Element;
2132
+ declare function IconProfileCircle({ color, size, ...other }: IconProps$k): JSX.Element;
2110
2133
 
2111
2134
  interface IconProps$j extends React.SVGAttributes<SVGElement> {
2112
2135
  size?: number | string;
2113
2136
  color?: string;
2114
2137
  }
2115
- declare function IconProfileCircle({ color, size, ...other }: IconProps$j): JSX.Element;
2138
+ declare function IconProfileSetting({ color, size, ...other }: IconProps$j): JSX.Element;
2116
2139
 
2117
2140
  interface IconProps$i extends React.SVGAttributes<SVGElement> {
2118
2141
  size?: number | string;
2119
2142
  color?: string;
2120
2143
  }
2121
- declare function IconProfileSetting({ color, size, ...other }: IconProps$i): JSX.Element;
2144
+ declare function IconProfileUnderReview({ color, size, ...other }: IconProps$i): JSX.Element;
2122
2145
 
2123
2146
  interface IconProps$h extends React.SVGAttributes<SVGElement> {
2124
2147
  size?: number | string;
2125
2148
  color?: string;
2126
2149
  }
2127
- declare function IconProfileUnderReview({ color, size, ...other }: IconProps$h): JSX.Element;
2150
+ declare function IconResume({ color, size, ...other }: IconProps$h): JSX.Element;
2128
2151
 
2129
2152
  interface IconProps$g extends React.SVGAttributes<SVGElement> {
2130
2153
  size?: number | string;
2131
2154
  color?: string;
2132
2155
  }
2133
- declare function IconResume({ color, size, ...other }: IconProps$g): JSX.Element;
2134
-
2135
- interface IconProps$f extends React.SVGAttributes<SVGElement> {
2136
- size?: number | string;
2137
- color?: string;
2138
- }
2139
- declare function IconSettings({ color, size, ...other }: IconProps$f): JSX.Element;
2156
+ declare function IconSettings({ color, size, ...other }: IconProps$g): JSX.Element;
2140
2157
 
2141
2158
  declare const IconStar: FC<React.SVGAttributes<SVGElement>>;
2142
2159
 
@@ -2144,23 +2161,23 @@ declare const IconStarFilled: FC<React.SVGAttributes<SVGElement>>;
2144
2161
 
2145
2162
  declare const IconSuccess: FC<React.SVGAttributes<SVGElement>>;
2146
2163
 
2147
- interface IconProps$e extends React.SVGAttributes<SVGElement> {
2164
+ interface IconProps$f extends React.SVGAttributes<SVGElement> {
2148
2165
  size?: number | string;
2149
2166
  color?: string;
2150
2167
  }
2151
- declare function IconTime({ color, size, ...other }: IconProps$e): JSX.Element;
2168
+ declare function IconTime({ color, size, ...other }: IconProps$f): JSX.Element;
2152
2169
 
2153
- interface IconProps$d extends React.SVGAttributes<SVGElement> {
2170
+ interface IconProps$e extends React.SVGAttributes<SVGElement> {
2154
2171
  size?: number | string;
2155
2172
  color?: string;
2156
2173
  }
2157
- declare function IconVerifiedUser({ color, size, ...other }: IconProps$d): JSX.Element;
2174
+ declare function IconVerifiedUser({ color, size, ...other }: IconProps$e): JSX.Element;
2158
2175
 
2159
- interface IconProps$c extends React.SVGAttributes<SVGElement> {
2176
+ interface IconProps$d extends React.SVGAttributes<SVGElement> {
2160
2177
  size?: number | string;
2161
2178
  color?: string;
2162
2179
  }
2163
- declare function IconVisible({ color, size, ...other }: IconProps$c): JSX.Element;
2180
+ declare function IconVisible({ color, size, ...other }: IconProps$d): JSX.Element;
2164
2181
 
2165
2182
  declare const IconApple: FC<React.SVGAttributes<SVGElement>>;
2166
2183
 
@@ -2174,11 +2191,11 @@ declare const IconEye: FC<React.SVGAttributes<SVGElement>>;
2174
2191
 
2175
2192
  declare const IconEyeOff: FC<React.SVGAttributes<SVGElement>>;
2176
2193
 
2177
- interface IconProps$b extends React.SVGAttributes<SVGElement> {
2194
+ interface IconProps$c extends React.SVGAttributes<SVGElement> {
2178
2195
  size?: number | string;
2179
2196
  color?: string;
2180
2197
  }
2181
- declare function IconWarning({ color, size, ...other }: IconProps$b): JSX.Element;
2198
+ declare function IconWarning({ color, size, ...other }: IconProps$c): JSX.Element;
2182
2199
 
2183
2200
  declare const IconGift: React.FC<React.SVGAttributes<SVGElement>>;
2184
2201
 
@@ -2194,49 +2211,49 @@ declare const IconNotificationMuted: (props: SVGProps<SVGSVGElement>) => JSX.Ele
2194
2211
 
2195
2212
  declare const IconCheckSmall: React.FC<React.SVGAttributes<SVGElement>>;
2196
2213
 
2197
- interface IconProps$a extends React.SVGAttributes<SVGElement> {
2214
+ interface IconProps$b extends React.SVGAttributes<SVGElement> {
2198
2215
  size?: number | string;
2199
2216
  color?: string;
2200
2217
  className?: string;
2201
2218
  style?: React.CSSProperties;
2202
2219
  }
2203
- declare function IconCheck({ color, size, ...other }: IconProps$a): JSX.Element;
2220
+ declare function IconCheck({ color, size, ...other }: IconProps$b): JSX.Element;
2204
2221
 
2205
- interface IconProps$9 extends React.SVGAttributes<SVGElement> {
2222
+ interface IconProps$a extends React.SVGAttributes<SVGElement> {
2206
2223
  size?: number | string;
2207
2224
  color?: string;
2208
2225
  className?: string;
2209
2226
  style?: React.CSSProperties;
2210
2227
  }
2211
- declare const IconCapFilled: FC<IconProps$9>;
2228
+ declare const IconCapFilled: FC<IconProps$a>;
2212
2229
 
2213
- interface IconProps$8 extends React.SVGAttributes<SVGElement> {
2230
+ interface IconProps$9 extends React.SVGAttributes<SVGElement> {
2214
2231
  size?: number | string;
2215
2232
  color?: string;
2216
2233
  className?: string;
2217
2234
  style?: React.CSSProperties;
2218
2235
  }
2219
- declare function IconCancelRounded({ color, size, ...other }: IconProps$8): JSX.Element;
2236
+ declare function IconCancelRounded({ color, size, ...other }: IconProps$9): JSX.Element;
2220
2237
 
2221
- interface IconProps$7 extends React.SVGAttributes<SVGElement> {
2238
+ interface IconProps$8 extends React.SVGAttributes<SVGElement> {
2222
2239
  size?: number | string;
2223
2240
  color?: string;
2224
2241
  }
2225
- declare function IconMute({ color, size, ...other }: IconProps$7): JSX.Element;
2242
+ declare function IconMute({ color, size, ...other }: IconProps$8): JSX.Element;
2226
2243
 
2227
- interface IconProps$6 extends React.SVGAttributes<SVGElement> {
2244
+ interface IconProps$7 extends React.SVGAttributes<SVGElement> {
2228
2245
  size?: number | string;
2229
2246
  color?: string;
2230
2247
  }
2231
- declare function IconUnmute({ color, size, ...other }: IconProps$6): JSX.Element;
2248
+ declare function IconUnmute({ color, size, ...other }: IconProps$7): JSX.Element;
2232
2249
 
2233
2250
  declare const IconBookmark: ({ width, height, color, ...other }: SVGProps<SVGSVGElement>) => JSX.Element;
2234
2251
 
2235
- interface IconProps$5 extends React.SVGAttributes<SVGElement> {
2252
+ interface IconProps$6 extends React.SVGAttributes<SVGElement> {
2236
2253
  size?: number | string;
2237
2254
  color?: string;
2238
2255
  }
2239
- declare function IconBookmarkOutlined({ size, color, ...other }: IconProps$5): JSX.Element;
2256
+ declare function IconBookmarkOutlined({ size, color, ...other }: IconProps$6): JSX.Element;
2240
2257
 
2241
2258
  declare const IconUserNotFound: (props: SVGProps<SVGSVGElement>) => JSX.Element;
2242
2259
 
@@ -2258,59 +2275,67 @@ declare const IconArrowDown: ({ width, height, color, ...other }: SVGProps<SVGSV
2258
2275
 
2259
2276
  declare const IconRadioButtonChecked: (props: SVGProps<SVGSVGElement>) => JSX.Element;
2260
2277
 
2261
- interface IconProps$4 extends React.SVGAttributes<SVGElement> {
2278
+ interface IconProps$5 extends React.SVGAttributes<SVGElement> {
2262
2279
  size?: number | string;
2263
2280
  color?: string;
2264
2281
  }
2265
- declare function IconShare({ size, ...props }: IconProps$4): JSX.Element;
2282
+ declare function IconShare({ size, ...props }: IconProps$5): JSX.Element;
2266
2283
 
2267
- interface IconProps$3 extends React.SVGAttributes<SVGElement> {
2284
+ interface IconProps$4 extends React.SVGAttributes<SVGElement> {
2268
2285
  size?: number | string;
2269
2286
  color?: string;
2270
2287
  }
2271
- declare function IconLink({ size, ...props }: IconProps$3): JSX.Element;
2288
+ declare function IconLink({ size, ...props }: IconProps$4): JSX.Element;
2272
2289
 
2273
- declare const IconHome: FC<IconProps$y>;
2290
+ declare const IconHome: FC<IconProps$z>;
2274
2291
 
2275
- declare const IconEcgHeart: FC<IconProps$y>;
2292
+ declare const IconEcgHeart: FC<IconProps$z>;
2276
2293
 
2277
- declare const IconAddModerator: FC<IconProps$y>;
2294
+ declare const IconAddModerator: FC<IconProps$z>;
2278
2295
 
2279
- declare const IconQueryStats: FC<IconProps$y>;
2296
+ declare const IconQueryStats: FC<IconProps$z>;
2280
2297
 
2281
- declare const IconSchema: FC<IconProps$y>;
2298
+ declare const IconSchema: FC<IconProps$z>;
2282
2299
 
2283
- declare const IconPromocode: FC<IconProps$y>;
2300
+ declare const IconPromocode: FC<IconProps$z>;
2284
2301
 
2285
- declare const IconEventBusy: FC<IconProps$y>;
2302
+ declare const IconEventBusy: FC<IconProps$z>;
2286
2303
 
2287
- declare const IconDelete: FC<IconProps$y>;
2304
+ declare const IconDelete: FC<IconProps$z>;
2288
2305
 
2289
- declare const IconEdit: FC<IconProps$y>;
2306
+ declare const IconEdit: FC<IconProps$z>;
2290
2307
 
2291
- declare const IconCopy: FC<IconProps$y>;
2308
+ declare const IconCopy: FC<IconProps$z>;
2292
2309
 
2293
- interface IconProps$2 extends React.SVGAttributes<SVGElement> {
2310
+ interface IconProps$3 extends React.SVGAttributes<SVGElement> {
2294
2311
  size?: number | string;
2295
2312
  color?: string;
2296
2313
  }
2297
- declare function IconTimeAdd({ color, size, ...other }: IconProps$2): JSX.Element;
2314
+ declare function IconTimeAdd({ color, size, ...other }: IconProps$3): JSX.Element;
2315
+
2316
+ declare const IconManageAccounts: FC<IconProps$z>;
2298
2317
 
2299
- declare const IconManageAccounts: FC<IconProps$y>;
2318
+ declare const IconSend: FC<IconProps$z>;
2300
2319
 
2301
- declare const IconSend: FC<IconProps$y>;
2320
+ interface IconProps$2 extends React.SVGAttributes<SVGElement> {
2321
+ size?: number | string;
2322
+ color?: string;
2323
+ }
2324
+ declare function IconGallery({ color, size, ...other }: IconProps$2): JSX.Element;
2302
2325
 
2303
2326
  interface IconProps$1 extends React.SVGAttributes<SVGElement> {
2304
2327
  size?: number | string;
2305
2328
  color?: string;
2306
2329
  }
2307
- declare function IconGallery({ color, size, ...other }: IconProps$1): JSX.Element;
2330
+ declare function IconText({ color, size, ...other }: IconProps$1): JSX.Element;
2308
2331
 
2309
2332
  interface IconProps extends React.SVGAttributes<SVGElement> {
2310
2333
  size?: number | string;
2311
2334
  color?: string;
2335
+ className?: string;
2336
+ style?: React.CSSProperties;
2312
2337
  }
2313
- declare function IconText({ color, size, ...other }: IconProps): JSX.Element;
2338
+ declare function IconCheckCircle({ color, size, ...props }: IconProps): JSX.Element;
2314
2339
 
2315
2340
  type AnyRef = React__default.Ref<any>;
2316
2341
  declare const mergeRefs: <T extends unknown>(...refs: AnyRef[]) => React__default.Ref<T>;
@@ -2581,4 +2606,4 @@ declare const _default$1: React__default.NamedExoticComponent<SpecialistPaymentC
2581
2606
 
2582
2607
  declare const _default: React__default.NamedExoticComponent<SpecialistPaymentCardProps & SpecialistPaymentConsultationsProps & TranslationType>;
2583
2608
 
2584
- export { AppFooter, _default$p as AppFooter_v2, AppHeader, AppHeader_v2, ArchivedConsultationCard, Avatar, AvatarProps$1 as AvatarProps, _default$o as Avatar_v2, BREAKPOINT_ICON_SIZE, _default$k as Badge, _default$D as BookingScheduleTime, _default$C as BookingSpecialistInfo, Button, Button_v2, Calendar, _default$4 as CalendarPickerFeature, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$Y as ChatListItem, _default$W as ChatListSkeleton, _default$X as ChatMessage, ChatMessageSkeleton, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$x as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingContext, CircleRatingProvider, CollapsableText, _default$P as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$M as ConsultationModal, _default$8 as ConsultationPricingFeature, _default$K as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentCard, CountdownTimerFeature, CountryOfOriginModal, CustomButton, _default$y as CustomCheckbox, CustomRadioButton, _default$z as CustomSelect, _default$A as CustomTextarea, DatePicker, _default$I as DaySlider, DayToRender, DrumListPicker, _default$E as EducationCard, _default$V as EmptyChatList, EmptyChatMessages, _default$N as EmptyConsultations, EntryNotFound, EntryNotFoundProps, _default$u as Flag, FlagTypes, _default$m as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconAddModerator, IconApple, IconArrowDown, IconArrowLeft, IconArrowRight, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$g 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, IconGallery, 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, IconSend, IconSettings, IconShare, IconSpinner, IconStar, IconStarFilled, IconSuccess, IconText, IconTime, IconTimeAdd, IconUnmute, IconUserNotFound, IconVerifiedUser, IconVisible, IconWarning, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, InputSearch, _default$c as Item, _default$j as ItemCard, LabelArrowRedirect, LanguagesList, _default$10 as LetterAvatar, _default$v as LineFileInput, ListBox, ListBoxItem, ListButton, ListItemType, _default$d as ListItems, ListOption, ListSelect, ListSelectProps, ListSimple, _default$e as Loading, LouseConnect, _default$Z as MediaPlayer, Modal, ModalCalendar, ModalSheet, NavigationBar, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, PasswordInput, _default$3 as PaymentCalendarFeature, _default$5 as PaymentSessionsList, _default$$ as PersonDateTimeCard, _default$l as Picture, _default$t as ProfileInformation, _default$G as ProfileView, _default$w as ProgressBar, ProgressBarDashed, _default$f as ProgressBar_v2, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$h as Rating, RatingCircleWrapper, _default$J as ReSchedule, ReScheduleSuccess, Refresher, ReviewCard, ReviewStatistics, ReviewSwiperSection, RoundButton, RowItemType, RowSelect, RowSelectProps, SIZES, ScreenInput, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$_ as SelectImpressionEmoji, SelectItemType, ShareModalFeature, _default$O as SignUpSessionButton, _default$L as SignUpSessionModal, Skeleton, _default$n as Skeleton_v2, _default$a as SlotsGrid, _default$9 as SlotsGridItem, _default$F as SpecialistAbout, SpecialistCard$1 as SpecialistCard, SpecialistCardListWidget, _default$2 as SpecialistCardWidget, _default$T as SpecialistEducationCard, SpecialistInfoColumnFeature as SpecialistInfoColumn, SpecialistLangs, _default$s as SpecialistMatch, _default$7 as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, _default$6 as SpecialistPaymentConsultationsFeature, _default as SpecialistPaymentResumeWidget, _default$1 as SpecialistPaymentWidget, _default$S as SpecialistProfileViewCard, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default$r as SpecialistStatistic, SpecialistStatisticsCard, SpecialistWorkDirections, Spinner, Spinner_v2, StarRating, StatisticsScroll, StatusTag, SuccessScreen, SwitchDeviceCard, TabBar, Tag, _default$B as TextInput, _default$U as Textarea, _default$i as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, _default$q as Typography, TypographyVariantsEnum, UpdatesCard, UserInfoModal, UsersPsychologistScrollList, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$b as Video, _default$Q as VideoCallInfo, _default$R as VideoPlayer, _default$H as WorkDirections, YourLocalTimeBlock, appThemes, decOfNum, getProgressForBreakPoint, mergeRefs, priceNormalize, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDomRef, useEvent, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useToastContext };
2609
+ export { AppFooter, _default$p as AppFooter_v2, AppHeader, AppHeader_v2, ArchivedConsultationCard, Avatar, AvatarProps$1 as AvatarProps, _default$o as Avatar_v2, BREAKPOINT_ICON_SIZE, _default$k as Badge, _default$D as BookingScheduleTime, _default$C as BookingSpecialistInfo, Button, Button_v2, Calendar, _default$4 as CalendarPickerFeature, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$Y as ChatListItem, _default$W as ChatListSkeleton, _default$X as ChatMessage, ChatMessageSkeleton, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$x as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingContext, CircleRatingProvider, CollapsableText, _default$P as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$M as ConsultationModal, _default$8 as ConsultationPricingFeature, _default$K as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentCard, CountdownTimerFeature, CountryOfOriginModal, CustomButton, _default$y as CustomCheckbox, CustomRadioButton, _default$z as CustomSelect, _default$A as CustomTextarea, DatePicker, _default$I as DaySlider, DayToRender, DrumListPicker, _default$E as EducationCard, _default$V as EmptyChatList, EmptyChatMessages, _default$N as EmptyConsultations, EntryNotFound, EntryNotFoundProps, _default$u as Flag, FlagTypes, _default$m as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconAddModerator, IconApple, IconArrowDown, IconArrowLeft, IconArrowRight, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$g as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCancel, IconCancelRounded, IconCapFilled, IconChat3d, IconChatFilled, IconChatOutline, IconCheck, IconCheckCircle, IconCheckSmall, IconCheckboxChecked, IconCheckboxUnchecked, IconClient, IconClientFilled, IconClose, IconCopy, IconCreditCard, IconDelete, IconEcgHeart, IconEdit, IconEditCalendar, IconEventBusy, IconEye, IconEyeOff, IconGallery, 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, IconSend, IconSettings, IconShare, IconSpinner, IconStar, IconStarFilled, IconSuccess, IconText, IconTime, IconTimeAdd, IconUnmute, IconUserNotFound, IconVerifiedUser, IconVisible, IconWarning, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, InputSearch, _default$c as Item, _default$j as ItemCard, LabelArrowRedirect, LanguagesList, _default$10 as LetterAvatar, _default$v as LineFileInput, ListBox, ListBoxItem, ListButton, ListItemType, _default$d as ListItems, ListOption, ListSelect, ListSelectProps, ListSimple, _default$e as Loading, LouseConnect, _default$Z as MediaPlayer, Modal, ModalCalendar, ModalSheet, NavigationBar, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, PasswordInput, _default$3 as PaymentCalendarFeature, _default$5 as PaymentSessionsList, _default$$ as PersonDateTimeCard, _default$l as Picture, _default$t as ProfileInformation, _default$G as ProfileView, _default$w as ProgressBar, ProgressBarDashed, _default$f as ProgressBar_v2, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$h as Rating, RatingCircleWrapper, _default$J as ReSchedule, ReScheduleSuccess, Refresher, ReviewCard, ReviewStatistics, ReviewSwiperSection, RoundButton, RowItemType, RowSelect, RowSelectProps, SIZES, ScreenInput, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$_ as SelectImpressionEmoji, SelectItemType, ShareModalFeature, _default$O as SignUpSessionButton, _default$L as SignUpSessionModal, Skeleton, _default$n as Skeleton_v2, _default$a as SlotsGrid, _default$9 as SlotsGridItem, _default$F as SpecialistAbout, SpecialistCard$1 as SpecialistCard, SpecialistCardListWidget, _default$2 as SpecialistCardWidget, _default$T as SpecialistEducationCard, SpecialistInfoColumnFeature as SpecialistInfoColumn, SpecialistLangs, _default$s as SpecialistMatch, _default$7 as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, _default$6 as SpecialistPaymentConsultationsFeature, _default as SpecialistPaymentResumeWidget, _default$1 as SpecialistPaymentWidget, _default$S as SpecialistProfileViewCard, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default$r as SpecialistStatistic, SpecialistStatisticsCard, SpecialistWorkDirections, Spinner, Spinner_v2, StarRating, StatisticsScroll, StatusTag, SuccessScreen, SwitchDeviceCard, TabBar, Tag, _default$B as TextInput, _default$U as Textarea, _default$i as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, _default$q as Typography, TypographyVariantsEnum, UpdatesCard, UserInfoModal, UsersPsychologistScrollList, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$b as Video, _default$Q as VideoCallInfo, _default$R as VideoPlayer, _default$H 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.47.3",
3
+ "version": "5.49.0",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "clean": "rimraf dist",