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