@mindly/ui-components 5.49.3 → 5.49.4
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.
- package/dist/cjs/index.js +7 -7
- package/dist/cjs/lib2/shared/assets/icons/IconAttachMoney.d.ts +7 -0
- package/dist/cjs/lib2/shared/assets/icons/index.d.ts +1 -0
- package/dist/cjs/lib2/shared/ui/ListBox/index.d.ts +1 -0
- package/dist/cjs/lib2/shared/ui/ListBox/types.d.ts +1 -1
- package/dist/cjs/lib2/shared/ui/ListBoxItem/index.d.ts +1 -0
- package/dist/cjs/lib2/shared/ui/ListBoxItem/types.d.ts +5 -4
- package/dist/esm/index.js +7 -7
- package/dist/esm/lib2/shared/assets/icons/IconAttachMoney.d.ts +7 -0
- package/dist/esm/lib2/shared/assets/icons/index.d.ts +1 -0
- package/dist/esm/lib2/shared/ui/ListBox/index.d.ts +1 -0
- package/dist/esm/lib2/shared/ui/ListBox/types.d.ts +1 -1
- package/dist/esm/lib2/shared/ui/ListBoxItem/index.d.ts +1 -0
- package/dist/esm/lib2/shared/ui/ListBoxItem/types.d.ts +5 -4
- package/dist/index.d.ts +92 -85
- package/package.json +1 -1
|
@@ -5,7 +5,7 @@ export declare enum ListBoxSelectionType {
|
|
|
5
5
|
Radio = "radio"
|
|
6
6
|
}
|
|
7
7
|
export type ListBoxProps<T> = AriaListBoxProps<T> & {
|
|
8
|
-
type?: ListBoxSelectionType
|
|
8
|
+
type?: `${ListBoxSelectionType}`;
|
|
9
9
|
enableSelection?: boolean;
|
|
10
10
|
selectedIconProps?: IconProps;
|
|
11
11
|
selectionPosition?: 'start' | 'end';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ListState, Node } from 'react-stately';
|
|
2
2
|
import * as React from 'react';
|
|
3
|
-
import { ListBoxSelectionType } from '../ListBox
|
|
3
|
+
import { ListBoxSelectionType } from '../ListBox';
|
|
4
4
|
import { IconProps } from '../../types';
|
|
5
5
|
export type ListOptionsProps = {
|
|
6
6
|
item: Node<unknown>;
|
|
@@ -9,18 +9,19 @@ export type ListOptionsProps = {
|
|
|
9
9
|
divider?: boolean;
|
|
10
10
|
value?: string;
|
|
11
11
|
selectedIconProps?: IconProps;
|
|
12
|
-
type?: ListBoxSelectionType
|
|
12
|
+
type?: `${ListBoxSelectionType}`;
|
|
13
13
|
selectionPosition?: 'start' | 'end';
|
|
14
14
|
enableSelection?: boolean;
|
|
15
15
|
};
|
|
16
16
|
export type ListBoxItemProps = {
|
|
17
17
|
icon?: React.ReactNode;
|
|
18
|
-
type?: ListBoxSelectionType
|
|
18
|
+
type?: `${ListBoxSelectionType}`;
|
|
19
19
|
selectedIconProps?: IconProps;
|
|
20
20
|
divider?: boolean;
|
|
21
21
|
value?: string;
|
|
22
22
|
children: React.ReactNode;
|
|
23
23
|
className?: string;
|
|
24
24
|
customContent?: boolean;
|
|
25
|
-
onClick?: HTMLIonItemElement[
|
|
25
|
+
onClick?: HTMLIonItemElement['onclick'];
|
|
26
26
|
};
|
|
27
|
+
export type { Selection } from 'react-stately';
|
package/dist/index.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ import { RefresherEventDetail, ScrollDetail, ScrollBaseDetail } from '@ionic/rea
|
|
|
8
8
|
import * as _ionic_core_dist_types_components from '@ionic/core/dist/types/components';
|
|
9
9
|
import { IonContentCustomEvent, IonSearchbarCustomEvent as IonSearchbarCustomEvent$1 } from '@ionic/core/dist/types/components';
|
|
10
10
|
import { Node, ListState, ItemProps as ItemProps$1, SelectionBehavior, SelectionMode } from 'react-stately';
|
|
11
|
+
export { Selection } from 'react-stately';
|
|
11
12
|
import { AriaListBoxProps, AriaCalendarProps, DateValue } from 'react-aria';
|
|
12
13
|
import { ToastStateProps, ToastState } from '@react-stately/toast';
|
|
13
14
|
import { AriaToastRegionProps } from '@react-aria/toast';
|
|
@@ -1697,7 +1698,7 @@ type SpecialistPaymentConsultationDetailsType = {
|
|
|
1697
1698
|
onUserClick?: () => void;
|
|
1698
1699
|
};
|
|
1699
1700
|
|
|
1700
|
-
interface IconProps$
|
|
1701
|
+
interface IconProps$A extends SVGAttributes<SVGElement> {
|
|
1701
1702
|
size?: number | string;
|
|
1702
1703
|
color?: string;
|
|
1703
1704
|
className?: string;
|
|
@@ -1721,40 +1722,40 @@ declare enum ListBoxSelectionType {
|
|
|
1721
1722
|
Radio = "radio"
|
|
1722
1723
|
}
|
|
1723
1724
|
type ListBoxProps<T> = AriaListBoxProps<T> & {
|
|
1724
|
-
type?: ListBoxSelectionType
|
|
1725
|
+
type?: `${ListBoxSelectionType}`;
|
|
1725
1726
|
enableSelection?: boolean;
|
|
1726
|
-
selectedIconProps?: IconProps$
|
|
1727
|
+
selectedIconProps?: IconProps$A;
|
|
1727
1728
|
selectionPosition?: 'start' | 'end';
|
|
1728
1729
|
};
|
|
1729
1730
|
|
|
1731
|
+
declare function ListBox<T extends Record<string, unknown>>({ selectedIconProps, type, selectionPosition, enableSelection, ...props }: ListBoxProps<T>): JSX.Element;
|
|
1732
|
+
|
|
1730
1733
|
type ListOptionsProps = {
|
|
1731
1734
|
item: Node<unknown>;
|
|
1732
1735
|
state: ListState<unknown>;
|
|
1733
1736
|
icon?: React.ReactNode;
|
|
1734
1737
|
divider?: boolean;
|
|
1735
1738
|
value?: string;
|
|
1736
|
-
selectedIconProps?: IconProps$
|
|
1737
|
-
type?: ListBoxSelectionType
|
|
1739
|
+
selectedIconProps?: IconProps$A;
|
|
1740
|
+
type?: `${ListBoxSelectionType}`;
|
|
1738
1741
|
selectionPosition?: 'start' | 'end';
|
|
1739
1742
|
enableSelection?: boolean;
|
|
1740
1743
|
};
|
|
1741
1744
|
type ListBoxItemProps = {
|
|
1742
1745
|
icon?: React.ReactNode;
|
|
1743
|
-
type?: ListBoxSelectionType
|
|
1744
|
-
selectedIconProps?: IconProps$
|
|
1746
|
+
type?: `${ListBoxSelectionType}`;
|
|
1747
|
+
selectedIconProps?: IconProps$A;
|
|
1745
1748
|
divider?: boolean;
|
|
1746
1749
|
value?: string;
|
|
1747
1750
|
children: React.ReactNode;
|
|
1748
1751
|
className?: string;
|
|
1749
1752
|
customContent?: boolean;
|
|
1750
|
-
onClick?: HTMLIonItemElement[
|
|
1753
|
+
onClick?: HTMLIonItemElement['onclick'];
|
|
1751
1754
|
};
|
|
1752
1755
|
|
|
1753
1756
|
declare const ListOption: React.ForwardRefExoticComponent<ListOptionsProps & React.RefAttributes<HTMLIonItemElement>>;
|
|
1754
1757
|
declare const ListBoxItem: (props: ItemProps$1<unknown> & ListBoxItemProps) => JSX.Element;
|
|
1755
1758
|
|
|
1756
|
-
declare function ListBox<T extends Record<string, unknown>>({ selectedIconProps, type, selectionPosition, enableSelection, ...props }: ListBoxProps<T>): JSX.Element;
|
|
1757
|
-
|
|
1758
1759
|
type BaseTypeProps = {
|
|
1759
1760
|
onDatePress?: (date: string, evt: React.MouseEvent<HTMLButtonElement>) => void;
|
|
1760
1761
|
locale: string;
|
|
@@ -2034,126 +2035,126 @@ declare function useRatingCircleBreakPoints({ ranges, maxValue, isReverse, }: {
|
|
|
2034
2035
|
}): number[];
|
|
2035
2036
|
declare function useRatingContext(): CircleRatingContextData;
|
|
2036
2037
|
|
|
2038
|
+
interface IconProps$z extends React.SVGAttributes<SVGElement> {
|
|
2039
|
+
size?: number | string;
|
|
2040
|
+
color?: string;
|
|
2041
|
+
}
|
|
2042
|
+
declare function IconArrowLeft({ color, size, ...other }: IconProps$z): JSX.Element;
|
|
2043
|
+
|
|
2037
2044
|
interface IconProps$y extends React.SVGAttributes<SVGElement> {
|
|
2038
2045
|
size?: number | string;
|
|
2039
2046
|
color?: string;
|
|
2040
2047
|
}
|
|
2041
|
-
declare function
|
|
2048
|
+
declare function IconArrowRight({ color, size, ...other }: IconProps$y): JSX.Element;
|
|
2042
2049
|
|
|
2043
2050
|
interface IconProps$x extends React.SVGAttributes<SVGElement> {
|
|
2044
2051
|
size?: number | string;
|
|
2045
2052
|
color?: string;
|
|
2046
2053
|
}
|
|
2047
|
-
declare function
|
|
2054
|
+
declare function IconBeachAccess({ color, size, ...other }: IconProps$x): JSX.Element;
|
|
2048
2055
|
|
|
2049
2056
|
interface IconProps$w extends React.SVGAttributes<SVGElement> {
|
|
2050
2057
|
size?: number | string;
|
|
2051
2058
|
color?: string;
|
|
2052
2059
|
}
|
|
2053
|
-
declare function
|
|
2060
|
+
declare function IconCalendar({ color, size, ...other }: IconProps$w): JSX.Element;
|
|
2054
2061
|
|
|
2055
2062
|
interface IconProps$v extends React.SVGAttributes<SVGElement> {
|
|
2056
2063
|
size?: number | string;
|
|
2057
2064
|
color?: string;
|
|
2058
2065
|
}
|
|
2059
|
-
declare function
|
|
2066
|
+
declare function IconCalendarMonth({ color, size, ...other }: IconProps$v): JSX.Element;
|
|
2060
2067
|
|
|
2061
2068
|
interface IconProps$u extends React.SVGAttributes<SVGElement> {
|
|
2062
2069
|
size?: number | string;
|
|
2063
2070
|
color?: string;
|
|
2064
2071
|
}
|
|
2065
|
-
declare function
|
|
2072
|
+
declare function IconChatOutline({ color, size, ...other }: IconProps$u): JSX.Element;
|
|
2066
2073
|
|
|
2067
2074
|
interface IconProps$t extends React.SVGAttributes<SVGElement> {
|
|
2068
2075
|
size?: number | string;
|
|
2069
2076
|
color?: string;
|
|
2070
2077
|
}
|
|
2071
|
-
declare function
|
|
2078
|
+
declare function IconCheckboxChecked({ color, size, ...other }: IconProps$t): JSX.Element;
|
|
2072
2079
|
|
|
2073
2080
|
interface IconProps$s extends React.SVGAttributes<SVGElement> {
|
|
2074
2081
|
size?: number | string;
|
|
2075
2082
|
color?: string;
|
|
2076
2083
|
}
|
|
2077
|
-
declare function
|
|
2084
|
+
declare function IconCheckboxUnchecked({ color, size, ...other }: IconProps$s): JSX.Element;
|
|
2085
|
+
|
|
2086
|
+
declare const IconClose: FC<React.SVGAttributes<SVGElement>>;
|
|
2078
2087
|
|
|
2079
2088
|
interface IconProps$r extends React.SVGAttributes<SVGElement> {
|
|
2080
2089
|
size?: number | string;
|
|
2081
2090
|
color?: string;
|
|
2082
2091
|
}
|
|
2083
|
-
declare function
|
|
2084
|
-
|
|
2085
|
-
declare const IconClose: FC<React.SVGAttributes<SVGElement>>;
|
|
2092
|
+
declare function IconEditCalendar({ color, size, ...props }: IconProps$r): JSX.Element;
|
|
2086
2093
|
|
|
2087
2094
|
interface IconProps$q extends React.SVGAttributes<SVGElement> {
|
|
2088
2095
|
size?: number | string;
|
|
2089
2096
|
color?: string;
|
|
2090
2097
|
}
|
|
2091
|
-
declare function
|
|
2098
|
+
declare function IconInvisible({ color, size, ...other }: IconProps$q): JSX.Element;
|
|
2092
2099
|
|
|
2093
2100
|
interface IconProps$p extends React.SVGAttributes<SVGElement> {
|
|
2094
2101
|
size?: number | string;
|
|
2095
2102
|
color?: string;
|
|
2096
2103
|
}
|
|
2097
|
-
declare function
|
|
2104
|
+
declare function IconLanguage({ color, size, ...other }: IconProps$p): JSX.Element;
|
|
2105
|
+
|
|
2106
|
+
declare const IconLeftArrow: FC<React.SVGAttributes<SVGElement>>;
|
|
2098
2107
|
|
|
2099
2108
|
interface IconProps$o extends React.SVGAttributes<SVGElement> {
|
|
2100
2109
|
size?: number | string;
|
|
2101
2110
|
color?: string;
|
|
2102
2111
|
}
|
|
2103
|
-
declare function
|
|
2104
|
-
|
|
2105
|
-
declare const IconLeftArrow: FC<React.SVGAttributes<SVGElement>>;
|
|
2112
|
+
declare function IconLogout({ color, size, ...other }: IconProps$o): JSX.Element;
|
|
2106
2113
|
|
|
2107
2114
|
interface IconProps$n extends React.SVGAttributes<SVGElement> {
|
|
2108
2115
|
size?: number | string;
|
|
2109
2116
|
color?: string;
|
|
2110
2117
|
}
|
|
2111
|
-
declare function
|
|
2118
|
+
declare function IconPause({ color, size, ...other }: IconProps$n): JSX.Element;
|
|
2119
|
+
|
|
2120
|
+
type IconPlusProps = React.SVGProps<any>;
|
|
2121
|
+
declare function IconPlus({ color, ...props }: IconPlusProps): JSX.Element;
|
|
2112
2122
|
|
|
2113
2123
|
interface IconProps$m extends React.SVGAttributes<SVGElement> {
|
|
2114
2124
|
size?: number | string;
|
|
2115
2125
|
color?: string;
|
|
2116
2126
|
}
|
|
2117
|
-
declare function
|
|
2118
|
-
|
|
2119
|
-
type IconPlusProps = React.SVGProps<any>;
|
|
2120
|
-
declare function IconPlus({ color, ...props }: IconPlusProps): JSX.Element;
|
|
2127
|
+
declare function IconProfileChecked({ color, size, ...other }: IconProps$m): JSX.Element;
|
|
2121
2128
|
|
|
2122
2129
|
interface IconProps$l extends React.SVGAttributes<SVGElement> {
|
|
2123
2130
|
size?: number | string;
|
|
2124
2131
|
color?: string;
|
|
2125
2132
|
}
|
|
2126
|
-
declare function
|
|
2133
|
+
declare function IconProfileCircle({ color, size, ...other }: IconProps$l): JSX.Element;
|
|
2127
2134
|
|
|
2128
2135
|
interface IconProps$k extends React.SVGAttributes<SVGElement> {
|
|
2129
2136
|
size?: number | string;
|
|
2130
2137
|
color?: string;
|
|
2131
2138
|
}
|
|
2132
|
-
declare function
|
|
2139
|
+
declare function IconProfileSetting({ color, size, ...other }: IconProps$k): JSX.Element;
|
|
2133
2140
|
|
|
2134
2141
|
interface IconProps$j extends React.SVGAttributes<SVGElement> {
|
|
2135
2142
|
size?: number | string;
|
|
2136
2143
|
color?: string;
|
|
2137
2144
|
}
|
|
2138
|
-
declare function
|
|
2145
|
+
declare function IconProfileUnderReview({ color, size, ...other }: IconProps$j): JSX.Element;
|
|
2139
2146
|
|
|
2140
2147
|
interface IconProps$i extends React.SVGAttributes<SVGElement> {
|
|
2141
2148
|
size?: number | string;
|
|
2142
2149
|
color?: string;
|
|
2143
2150
|
}
|
|
2144
|
-
declare function
|
|
2151
|
+
declare function IconResume({ color, size, ...other }: IconProps$i): JSX.Element;
|
|
2145
2152
|
|
|
2146
2153
|
interface IconProps$h extends React.SVGAttributes<SVGElement> {
|
|
2147
2154
|
size?: number | string;
|
|
2148
2155
|
color?: string;
|
|
2149
2156
|
}
|
|
2150
|
-
declare function
|
|
2151
|
-
|
|
2152
|
-
interface IconProps$g extends React.SVGAttributes<SVGElement> {
|
|
2153
|
-
size?: number | string;
|
|
2154
|
-
color?: string;
|
|
2155
|
-
}
|
|
2156
|
-
declare function IconSettings({ color, size, ...other }: IconProps$g): JSX.Element;
|
|
2157
|
+
declare function IconSettings({ color, size, ...other }: IconProps$h): JSX.Element;
|
|
2157
2158
|
|
|
2158
2159
|
declare const IconStar: FC<React.SVGAttributes<SVGElement>>;
|
|
2159
2160
|
|
|
@@ -2161,23 +2162,23 @@ declare const IconStarFilled: FC<React.SVGAttributes<SVGElement>>;
|
|
|
2161
2162
|
|
|
2162
2163
|
declare const IconSuccess: FC<React.SVGAttributes<SVGElement>>;
|
|
2163
2164
|
|
|
2164
|
-
interface IconProps$
|
|
2165
|
+
interface IconProps$g extends React.SVGAttributes<SVGElement> {
|
|
2165
2166
|
size?: number | string;
|
|
2166
2167
|
color?: string;
|
|
2167
2168
|
}
|
|
2168
|
-
declare function IconTime({ color, size, ...other }: IconProps$
|
|
2169
|
+
declare function IconTime({ color, size, ...other }: IconProps$g): JSX.Element;
|
|
2169
2170
|
|
|
2170
|
-
interface IconProps$
|
|
2171
|
+
interface IconProps$f extends React.SVGAttributes<SVGElement> {
|
|
2171
2172
|
size?: number | string;
|
|
2172
2173
|
color?: string;
|
|
2173
2174
|
}
|
|
2174
|
-
declare function IconVerifiedUser({ color, size, ...other }: IconProps$
|
|
2175
|
+
declare function IconVerifiedUser({ color, size, ...other }: IconProps$f): JSX.Element;
|
|
2175
2176
|
|
|
2176
|
-
interface IconProps$
|
|
2177
|
+
interface IconProps$e extends React.SVGAttributes<SVGElement> {
|
|
2177
2178
|
size?: number | string;
|
|
2178
2179
|
color?: string;
|
|
2179
2180
|
}
|
|
2180
|
-
declare function IconVisible({ color, size, ...other }: IconProps$
|
|
2181
|
+
declare function IconVisible({ color, size, ...other }: IconProps$e): JSX.Element;
|
|
2181
2182
|
|
|
2182
2183
|
declare const IconApple: FC<React.SVGAttributes<SVGElement>>;
|
|
2183
2184
|
|
|
@@ -2191,11 +2192,11 @@ declare const IconEye: FC<React.SVGAttributes<SVGElement>>;
|
|
|
2191
2192
|
|
|
2192
2193
|
declare const IconEyeOff: FC<React.SVGAttributes<SVGElement>>;
|
|
2193
2194
|
|
|
2194
|
-
interface IconProps$
|
|
2195
|
+
interface IconProps$d extends React.SVGAttributes<SVGElement> {
|
|
2195
2196
|
size?: number | string;
|
|
2196
2197
|
color?: string;
|
|
2197
2198
|
}
|
|
2198
|
-
declare function IconWarning({ color, size, ...other }: IconProps$
|
|
2199
|
+
declare function IconWarning({ color, size, ...other }: IconProps$d): JSX.Element;
|
|
2199
2200
|
|
|
2200
2201
|
declare const IconGift: React.FC<React.SVGAttributes<SVGElement>>;
|
|
2201
2202
|
|
|
@@ -2211,49 +2212,49 @@ declare const IconNotificationMuted: (props: SVGProps<SVGSVGElement>) => JSX.Ele
|
|
|
2211
2212
|
|
|
2212
2213
|
declare const IconCheckSmall: React.FC<React.SVGAttributes<SVGElement>>;
|
|
2213
2214
|
|
|
2214
|
-
interface IconProps$
|
|
2215
|
+
interface IconProps$c extends React.SVGAttributes<SVGElement> {
|
|
2215
2216
|
size?: number | string;
|
|
2216
2217
|
color?: string;
|
|
2217
2218
|
className?: string;
|
|
2218
2219
|
style?: React.CSSProperties;
|
|
2219
2220
|
}
|
|
2220
|
-
declare function IconCheck({ color, size, ...other }: IconProps$
|
|
2221
|
+
declare function IconCheck({ color, size, ...other }: IconProps$c): JSX.Element;
|
|
2221
2222
|
|
|
2222
|
-
interface IconProps$
|
|
2223
|
+
interface IconProps$b extends React.SVGAttributes<SVGElement> {
|
|
2223
2224
|
size?: number | string;
|
|
2224
2225
|
color?: string;
|
|
2225
2226
|
className?: string;
|
|
2226
2227
|
style?: React.CSSProperties;
|
|
2227
2228
|
}
|
|
2228
|
-
declare const IconCapFilled: FC<IconProps$
|
|
2229
|
+
declare const IconCapFilled: FC<IconProps$b>;
|
|
2229
2230
|
|
|
2230
|
-
interface IconProps$
|
|
2231
|
+
interface IconProps$a extends React.SVGAttributes<SVGElement> {
|
|
2231
2232
|
size?: number | string;
|
|
2232
2233
|
color?: string;
|
|
2233
2234
|
className?: string;
|
|
2234
2235
|
style?: React.CSSProperties;
|
|
2235
2236
|
}
|
|
2236
|
-
declare function IconCancelRounded({ color, size, ...other }: IconProps$
|
|
2237
|
+
declare function IconCancelRounded({ color, size, ...other }: IconProps$a): JSX.Element;
|
|
2237
2238
|
|
|
2238
|
-
interface IconProps$
|
|
2239
|
+
interface IconProps$9 extends React.SVGAttributes<SVGElement> {
|
|
2239
2240
|
size?: number | string;
|
|
2240
2241
|
color?: string;
|
|
2241
2242
|
}
|
|
2242
|
-
declare function IconMute({ color, size, ...other }: IconProps$
|
|
2243
|
+
declare function IconMute({ color, size, ...other }: IconProps$9): JSX.Element;
|
|
2243
2244
|
|
|
2244
|
-
interface IconProps$
|
|
2245
|
+
interface IconProps$8 extends React.SVGAttributes<SVGElement> {
|
|
2245
2246
|
size?: number | string;
|
|
2246
2247
|
color?: string;
|
|
2247
2248
|
}
|
|
2248
|
-
declare function IconUnmute({ color, size, ...other }: IconProps$
|
|
2249
|
+
declare function IconUnmute({ color, size, ...other }: IconProps$8): JSX.Element;
|
|
2249
2250
|
|
|
2250
2251
|
declare const IconBookmark: ({ width, height, color, ...other }: SVGProps<SVGSVGElement>) => JSX.Element;
|
|
2251
2252
|
|
|
2252
|
-
interface IconProps$
|
|
2253
|
+
interface IconProps$7 extends React.SVGAttributes<SVGElement> {
|
|
2253
2254
|
size?: number | string;
|
|
2254
2255
|
color?: string;
|
|
2255
2256
|
}
|
|
2256
|
-
declare function IconBookmarkOutlined({ size, color, ...other }: IconProps$
|
|
2257
|
+
declare function IconBookmarkOutlined({ size, color, ...other }: IconProps$7): JSX.Element;
|
|
2257
2258
|
|
|
2258
2259
|
declare const IconUserNotFound: (props: SVGProps<SVGSVGElement>) => JSX.Element;
|
|
2259
2260
|
|
|
@@ -2275,67 +2276,73 @@ declare const IconArrowDown: ({ width, height, color, ...other }: SVGProps<SVGSV
|
|
|
2275
2276
|
|
|
2276
2277
|
declare const IconRadioButtonChecked: (props: SVGProps<SVGSVGElement>) => JSX.Element;
|
|
2277
2278
|
|
|
2278
|
-
interface IconProps$
|
|
2279
|
+
interface IconProps$6 extends React.SVGAttributes<SVGElement> {
|
|
2279
2280
|
size?: number | string;
|
|
2280
2281
|
color?: string;
|
|
2281
2282
|
}
|
|
2282
|
-
declare function IconShare({ size, ...props }: IconProps$
|
|
2283
|
+
declare function IconShare({ size, ...props }: IconProps$6): JSX.Element;
|
|
2283
2284
|
|
|
2284
|
-
interface IconProps$
|
|
2285
|
+
interface IconProps$5 extends React.SVGAttributes<SVGElement> {
|
|
2285
2286
|
size?: number | string;
|
|
2286
2287
|
color?: string;
|
|
2287
2288
|
}
|
|
2288
|
-
declare function IconLink({ size, ...props }: IconProps$
|
|
2289
|
+
declare function IconLink({ size, ...props }: IconProps$5): JSX.Element;
|
|
2289
2290
|
|
|
2290
|
-
declare const IconHome: FC<IconProps$
|
|
2291
|
+
declare const IconHome: FC<IconProps$A>;
|
|
2291
2292
|
|
|
2292
|
-
declare const IconEcgHeart: FC<IconProps$
|
|
2293
|
+
declare const IconEcgHeart: FC<IconProps$A>;
|
|
2293
2294
|
|
|
2294
|
-
declare const IconAddModerator: FC<IconProps$
|
|
2295
|
+
declare const IconAddModerator: FC<IconProps$A>;
|
|
2295
2296
|
|
|
2296
|
-
declare const IconQueryStats: FC<IconProps$
|
|
2297
|
+
declare const IconQueryStats: FC<IconProps$A>;
|
|
2297
2298
|
|
|
2298
|
-
declare const IconSchema: FC<IconProps$
|
|
2299
|
+
declare const IconSchema: FC<IconProps$A>;
|
|
2299
2300
|
|
|
2300
|
-
declare const IconPromocode: FC<IconProps$
|
|
2301
|
+
declare const IconPromocode: FC<IconProps$A>;
|
|
2301
2302
|
|
|
2302
|
-
declare const IconEventBusy: FC<IconProps$
|
|
2303
|
+
declare const IconEventBusy: FC<IconProps$A>;
|
|
2303
2304
|
|
|
2304
|
-
declare const IconDelete: FC<IconProps$
|
|
2305
|
+
declare const IconDelete: FC<IconProps$A>;
|
|
2305
2306
|
|
|
2306
|
-
declare const IconEdit: FC<IconProps$
|
|
2307
|
+
declare const IconEdit: FC<IconProps$A>;
|
|
2307
2308
|
|
|
2308
|
-
declare const IconCopy: FC<IconProps$
|
|
2309
|
+
declare const IconCopy: FC<IconProps$A>;
|
|
2309
2310
|
|
|
2310
|
-
interface IconProps$
|
|
2311
|
+
interface IconProps$4 extends React.SVGAttributes<SVGElement> {
|
|
2311
2312
|
size?: number | string;
|
|
2312
2313
|
color?: string;
|
|
2313
2314
|
}
|
|
2314
|
-
declare function IconTimeAdd({ color, size, ...other }: IconProps$
|
|
2315
|
+
declare function IconTimeAdd({ color, size, ...other }: IconProps$4): JSX.Element;
|
|
2315
2316
|
|
|
2316
|
-
declare const IconManageAccounts: FC<IconProps$
|
|
2317
|
+
declare const IconManageAccounts: FC<IconProps$A>;
|
|
2317
2318
|
|
|
2318
|
-
declare const IconSend: FC<IconProps$
|
|
2319
|
+
declare const IconSend: FC<IconProps$A>;
|
|
2320
|
+
|
|
2321
|
+
interface IconProps$3 extends React.SVGAttributes<SVGElement> {
|
|
2322
|
+
size?: number | string;
|
|
2323
|
+
color?: string;
|
|
2324
|
+
}
|
|
2325
|
+
declare function IconGallery({ color, size, ...other }: IconProps$3): JSX.Element;
|
|
2319
2326
|
|
|
2320
2327
|
interface IconProps$2 extends React.SVGAttributes<SVGElement> {
|
|
2321
2328
|
size?: number | string;
|
|
2322
2329
|
color?: string;
|
|
2323
2330
|
}
|
|
2324
|
-
declare function
|
|
2331
|
+
declare function IconText({ color, size, ...other }: IconProps$2): JSX.Element;
|
|
2325
2332
|
|
|
2326
2333
|
interface IconProps$1 extends React.SVGAttributes<SVGElement> {
|
|
2327
2334
|
size?: number | string;
|
|
2328
2335
|
color?: string;
|
|
2336
|
+
className?: string;
|
|
2337
|
+
style?: React.CSSProperties;
|
|
2329
2338
|
}
|
|
2330
|
-
declare function
|
|
2339
|
+
declare function IconCheckCircle({ color, size, ...props }: IconProps$1): JSX.Element;
|
|
2331
2340
|
|
|
2332
2341
|
interface IconProps extends React.SVGAttributes<SVGElement> {
|
|
2333
2342
|
size?: number | string;
|
|
2334
2343
|
color?: string;
|
|
2335
|
-
className?: string;
|
|
2336
|
-
style?: React.CSSProperties;
|
|
2337
2344
|
}
|
|
2338
|
-
declare function
|
|
2345
|
+
declare function IconAttachMoney({ size, color, style, ...props }: IconProps): JSX.Element;
|
|
2339
2346
|
|
|
2340
2347
|
type AnyRef = React__default.Ref<any>;
|
|
2341
2348
|
declare const mergeRefs: <T extends unknown>(...refs: AnyRef[]) => React__default.Ref<T>;
|
|
@@ -2606,4 +2613,4 @@ declare const _default$1: React__default.NamedExoticComponent<SpecialistPaymentC
|
|
|
2606
2613
|
|
|
2607
2614
|
declare const _default: React__default.NamedExoticComponent<SpecialistPaymentCardProps & SpecialistPaymentConsultationsProps & TranslationType>;
|
|
2608
2615
|
|
|
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 };
|
|
2616
|
+
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, IconAttachMoney, 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, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListButton, ListItemType, _default$d as ListItems, ListOption, ListOptionsProps, 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 };
|