@mindly/ui-components 5.47.2 → 5.48.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.
- package/dist/cjs/index.js +7 -7
- package/dist/cjs/lib2/shared/assets/icons/IconCheckCircle.d.ts +9 -0
- package/dist/cjs/lib2/shared/assets/icons/index.d.ts +1 -0
- package/dist/cjs/lib2/shared/types/specialistPaymentTypes.d.ts +3 -6
- package/dist/esm/index.js +7 -7
- package/dist/esm/lib2/shared/assets/icons/IconCheckCircle.d.ts +9 -0
- package/dist/esm/lib2/shared/assets/icons/index.d.ts +1 -0
- package/dist/esm/lib2/shared/types/specialistPaymentTypes.d.ts +3 -6
- package/dist/index.d.ts +84 -79
- package/package.json +1 -1
|
@@ -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 {};
|
|
@@ -45,10 +45,7 @@ export type SpecialistPaymentConsultationsProps = {
|
|
|
45
45
|
previousCount?: number;
|
|
46
46
|
locale?: string;
|
|
47
47
|
defaultTab?: string;
|
|
48
|
-
consultationsModeTrigger: (
|
|
49
|
-
startDate?: Date;
|
|
50
|
-
endDate?: Date;
|
|
51
|
-
}) => void;
|
|
48
|
+
consultationsModeTrigger: (tab: string) => void;
|
|
52
49
|
consultationClick?: (consultation: SpecialistConsultation) => void;
|
|
53
50
|
};
|
|
54
51
|
export type SpecialistPaymentCurrencyProps = {
|
|
@@ -66,8 +63,8 @@ export type SpecialistPaymentCardProps = {
|
|
|
66
63
|
showCommission?: boolean;
|
|
67
64
|
commissionRates: Partial<DynamicCommissionValue>;
|
|
68
65
|
commissionValue: number;
|
|
69
|
-
|
|
70
|
-
|
|
66
|
+
totalSessionsCount: number;
|
|
67
|
+
futureSessionsCount: number;
|
|
71
68
|
hideProgressBar?: boolean;
|
|
72
69
|
};
|
|
73
70
|
export type SpecialistPaymentWidgetType = SpecialistPaymentCardProps & {
|
package/dist/index.d.ts
CHANGED
|
@@ -1736,10 +1736,7 @@ type SpecialistPaymentConsultationsProps = {
|
|
|
1736
1736
|
previousCount?: number;
|
|
1737
1737
|
locale?: string;
|
|
1738
1738
|
defaultTab?: string;
|
|
1739
|
-
consultationsModeTrigger: (
|
|
1740
|
-
startDate?: Date;
|
|
1741
|
-
endDate?: Date;
|
|
1742
|
-
}) => void;
|
|
1739
|
+
consultationsModeTrigger: (tab: string) => void;
|
|
1743
1740
|
consultationClick?: (consultation: SpecialistConsultation) => void;
|
|
1744
1741
|
};
|
|
1745
1742
|
type SpecialistPaymentCurrencyProps = {
|
|
@@ -1757,8 +1754,8 @@ type SpecialistPaymentCardProps = {
|
|
|
1757
1754
|
showCommission?: boolean;
|
|
1758
1755
|
commissionRates: Partial<DynamicCommissionValue>;
|
|
1759
1756
|
commissionValue: number;
|
|
1760
|
-
|
|
1761
|
-
|
|
1757
|
+
totalSessionsCount: number;
|
|
1758
|
+
futureSessionsCount: number;
|
|
1762
1759
|
hideProgressBar?: boolean;
|
|
1763
1760
|
};
|
|
1764
1761
|
type PaymentCalendarFeatureProps = {
|
|
@@ -1776,7 +1773,7 @@ type SpecialistPaymentConsultationDetailsType = {
|
|
|
1776
1773
|
onUserClick?: () => void;
|
|
1777
1774
|
};
|
|
1778
1775
|
|
|
1779
|
-
interface IconProps$
|
|
1776
|
+
interface IconProps$z extends SVGAttributes<SVGElement> {
|
|
1780
1777
|
size?: number | string;
|
|
1781
1778
|
color?: string;
|
|
1782
1779
|
className?: string;
|
|
@@ -2020,126 +2017,126 @@ declare function useRatingCircleBreakPoints({ ranges, maxValue, isReverse, }: {
|
|
|
2020
2017
|
}): number[];
|
|
2021
2018
|
declare function useRatingContext(): CircleRatingContextData;
|
|
2022
2019
|
|
|
2020
|
+
interface IconProps$y extends React.SVGAttributes<SVGElement> {
|
|
2021
|
+
size?: number | string;
|
|
2022
|
+
color?: string;
|
|
2023
|
+
}
|
|
2024
|
+
declare function IconArrowLeft({ color, size, ...other }: IconProps$y): JSX.Element;
|
|
2025
|
+
|
|
2023
2026
|
interface IconProps$x extends React.SVGAttributes<SVGElement> {
|
|
2024
2027
|
size?: number | string;
|
|
2025
2028
|
color?: string;
|
|
2026
2029
|
}
|
|
2027
|
-
declare function
|
|
2030
|
+
declare function IconArrowRight({ color, size, ...other }: IconProps$x): JSX.Element;
|
|
2028
2031
|
|
|
2029
2032
|
interface IconProps$w extends React.SVGAttributes<SVGElement> {
|
|
2030
2033
|
size?: number | string;
|
|
2031
2034
|
color?: string;
|
|
2032
2035
|
}
|
|
2033
|
-
declare function
|
|
2036
|
+
declare function IconBeachAccess({ color, size, ...other }: IconProps$w): JSX.Element;
|
|
2034
2037
|
|
|
2035
2038
|
interface IconProps$v extends React.SVGAttributes<SVGElement> {
|
|
2036
2039
|
size?: number | string;
|
|
2037
2040
|
color?: string;
|
|
2038
2041
|
}
|
|
2039
|
-
declare function
|
|
2042
|
+
declare function IconCalendar({ color, size, ...other }: IconProps$v): JSX.Element;
|
|
2040
2043
|
|
|
2041
2044
|
interface IconProps$u extends React.SVGAttributes<SVGElement> {
|
|
2042
2045
|
size?: number | string;
|
|
2043
2046
|
color?: string;
|
|
2044
2047
|
}
|
|
2045
|
-
declare function
|
|
2048
|
+
declare function IconCalendarMonth({ color, size, ...other }: IconProps$u): JSX.Element;
|
|
2046
2049
|
|
|
2047
2050
|
interface IconProps$t extends React.SVGAttributes<SVGElement> {
|
|
2048
2051
|
size?: number | string;
|
|
2049
2052
|
color?: string;
|
|
2050
2053
|
}
|
|
2051
|
-
declare function
|
|
2054
|
+
declare function IconChatOutline({ color, size, ...other }: IconProps$t): JSX.Element;
|
|
2052
2055
|
|
|
2053
2056
|
interface IconProps$s extends React.SVGAttributes<SVGElement> {
|
|
2054
2057
|
size?: number | string;
|
|
2055
2058
|
color?: string;
|
|
2056
2059
|
}
|
|
2057
|
-
declare function
|
|
2060
|
+
declare function IconCheckboxChecked({ color, size, ...other }: IconProps$s): JSX.Element;
|
|
2058
2061
|
|
|
2059
2062
|
interface IconProps$r extends React.SVGAttributes<SVGElement> {
|
|
2060
2063
|
size?: number | string;
|
|
2061
2064
|
color?: string;
|
|
2062
2065
|
}
|
|
2063
|
-
declare function
|
|
2066
|
+
declare function IconCheckboxUnchecked({ color, size, ...other }: IconProps$r): JSX.Element;
|
|
2067
|
+
|
|
2068
|
+
declare const IconClose: FC<React.SVGAttributes<SVGElement>>;
|
|
2064
2069
|
|
|
2065
2070
|
interface IconProps$q extends React.SVGAttributes<SVGElement> {
|
|
2066
2071
|
size?: number | string;
|
|
2067
2072
|
color?: string;
|
|
2068
2073
|
}
|
|
2069
|
-
declare function
|
|
2070
|
-
|
|
2071
|
-
declare const IconClose: FC<React.SVGAttributes<SVGElement>>;
|
|
2074
|
+
declare function IconEditCalendar({ color, size, ...props }: IconProps$q): JSX.Element;
|
|
2072
2075
|
|
|
2073
2076
|
interface IconProps$p extends React.SVGAttributes<SVGElement> {
|
|
2074
2077
|
size?: number | string;
|
|
2075
2078
|
color?: string;
|
|
2076
2079
|
}
|
|
2077
|
-
declare function
|
|
2080
|
+
declare function IconInvisible({ color, size, ...other }: IconProps$p): JSX.Element;
|
|
2078
2081
|
|
|
2079
2082
|
interface IconProps$o extends React.SVGAttributes<SVGElement> {
|
|
2080
2083
|
size?: number | string;
|
|
2081
2084
|
color?: string;
|
|
2082
2085
|
}
|
|
2083
|
-
declare function
|
|
2086
|
+
declare function IconLanguage({ color, size, ...other }: IconProps$o): JSX.Element;
|
|
2087
|
+
|
|
2088
|
+
declare const IconLeftArrow: FC<React.SVGAttributes<SVGElement>>;
|
|
2084
2089
|
|
|
2085
2090
|
interface IconProps$n extends React.SVGAttributes<SVGElement> {
|
|
2086
2091
|
size?: number | string;
|
|
2087
2092
|
color?: string;
|
|
2088
2093
|
}
|
|
2089
|
-
declare function
|
|
2090
|
-
|
|
2091
|
-
declare const IconLeftArrow: FC<React.SVGAttributes<SVGElement>>;
|
|
2094
|
+
declare function IconLogout({ color, size, ...other }: IconProps$n): JSX.Element;
|
|
2092
2095
|
|
|
2093
2096
|
interface IconProps$m extends React.SVGAttributes<SVGElement> {
|
|
2094
2097
|
size?: number | string;
|
|
2095
2098
|
color?: string;
|
|
2096
2099
|
}
|
|
2097
|
-
declare function
|
|
2100
|
+
declare function IconPause({ color, size, ...other }: IconProps$m): JSX.Element;
|
|
2101
|
+
|
|
2102
|
+
type IconPlusProps = React.SVGProps<any>;
|
|
2103
|
+
declare function IconPlus({ color, ...props }: IconPlusProps): JSX.Element;
|
|
2098
2104
|
|
|
2099
2105
|
interface IconProps$l extends React.SVGAttributes<SVGElement> {
|
|
2100
2106
|
size?: number | string;
|
|
2101
2107
|
color?: string;
|
|
2102
2108
|
}
|
|
2103
|
-
declare function
|
|
2104
|
-
|
|
2105
|
-
type IconPlusProps = React.SVGProps<any>;
|
|
2106
|
-
declare function IconPlus({ color, ...props }: IconPlusProps): JSX.Element;
|
|
2109
|
+
declare function IconProfileChecked({ color, size, ...other }: IconProps$l): JSX.Element;
|
|
2107
2110
|
|
|
2108
2111
|
interface IconProps$k extends React.SVGAttributes<SVGElement> {
|
|
2109
2112
|
size?: number | string;
|
|
2110
2113
|
color?: string;
|
|
2111
2114
|
}
|
|
2112
|
-
declare function
|
|
2115
|
+
declare function IconProfileCircle({ color, size, ...other }: IconProps$k): JSX.Element;
|
|
2113
2116
|
|
|
2114
2117
|
interface IconProps$j extends React.SVGAttributes<SVGElement> {
|
|
2115
2118
|
size?: number | string;
|
|
2116
2119
|
color?: string;
|
|
2117
2120
|
}
|
|
2118
|
-
declare function
|
|
2121
|
+
declare function IconProfileSetting({ color, size, ...other }: IconProps$j): JSX.Element;
|
|
2119
2122
|
|
|
2120
2123
|
interface IconProps$i extends React.SVGAttributes<SVGElement> {
|
|
2121
2124
|
size?: number | string;
|
|
2122
2125
|
color?: string;
|
|
2123
2126
|
}
|
|
2124
|
-
declare function
|
|
2127
|
+
declare function IconProfileUnderReview({ color, size, ...other }: IconProps$i): JSX.Element;
|
|
2125
2128
|
|
|
2126
2129
|
interface IconProps$h extends React.SVGAttributes<SVGElement> {
|
|
2127
2130
|
size?: number | string;
|
|
2128
2131
|
color?: string;
|
|
2129
2132
|
}
|
|
2130
|
-
declare function
|
|
2133
|
+
declare function IconResume({ color, size, ...other }: IconProps$h): JSX.Element;
|
|
2131
2134
|
|
|
2132
2135
|
interface IconProps$g extends React.SVGAttributes<SVGElement> {
|
|
2133
2136
|
size?: number | string;
|
|
2134
2137
|
color?: string;
|
|
2135
2138
|
}
|
|
2136
|
-
declare function
|
|
2137
|
-
|
|
2138
|
-
interface IconProps$f extends React.SVGAttributes<SVGElement> {
|
|
2139
|
-
size?: number | string;
|
|
2140
|
-
color?: string;
|
|
2141
|
-
}
|
|
2142
|
-
declare function IconSettings({ color, size, ...other }: IconProps$f): JSX.Element;
|
|
2139
|
+
declare function IconSettings({ color, size, ...other }: IconProps$g): JSX.Element;
|
|
2143
2140
|
|
|
2144
2141
|
declare const IconStar: FC<React.SVGAttributes<SVGElement>>;
|
|
2145
2142
|
|
|
@@ -2147,23 +2144,23 @@ declare const IconStarFilled: FC<React.SVGAttributes<SVGElement>>;
|
|
|
2147
2144
|
|
|
2148
2145
|
declare const IconSuccess: FC<React.SVGAttributes<SVGElement>>;
|
|
2149
2146
|
|
|
2150
|
-
interface IconProps$
|
|
2147
|
+
interface IconProps$f extends React.SVGAttributes<SVGElement> {
|
|
2151
2148
|
size?: number | string;
|
|
2152
2149
|
color?: string;
|
|
2153
2150
|
}
|
|
2154
|
-
declare function IconTime({ color, size, ...other }: IconProps$
|
|
2151
|
+
declare function IconTime({ color, size, ...other }: IconProps$f): JSX.Element;
|
|
2155
2152
|
|
|
2156
|
-
interface IconProps$
|
|
2153
|
+
interface IconProps$e extends React.SVGAttributes<SVGElement> {
|
|
2157
2154
|
size?: number | string;
|
|
2158
2155
|
color?: string;
|
|
2159
2156
|
}
|
|
2160
|
-
declare function IconVerifiedUser({ color, size, ...other }: IconProps$
|
|
2157
|
+
declare function IconVerifiedUser({ color, size, ...other }: IconProps$e): JSX.Element;
|
|
2161
2158
|
|
|
2162
|
-
interface IconProps$
|
|
2159
|
+
interface IconProps$d extends React.SVGAttributes<SVGElement> {
|
|
2163
2160
|
size?: number | string;
|
|
2164
2161
|
color?: string;
|
|
2165
2162
|
}
|
|
2166
|
-
declare function IconVisible({ color, size, ...other }: IconProps$
|
|
2163
|
+
declare function IconVisible({ color, size, ...other }: IconProps$d): JSX.Element;
|
|
2167
2164
|
|
|
2168
2165
|
declare const IconApple: FC<React.SVGAttributes<SVGElement>>;
|
|
2169
2166
|
|
|
@@ -2177,11 +2174,11 @@ declare const IconEye: FC<React.SVGAttributes<SVGElement>>;
|
|
|
2177
2174
|
|
|
2178
2175
|
declare const IconEyeOff: FC<React.SVGAttributes<SVGElement>>;
|
|
2179
2176
|
|
|
2180
|
-
interface IconProps$
|
|
2177
|
+
interface IconProps$c extends React.SVGAttributes<SVGElement> {
|
|
2181
2178
|
size?: number | string;
|
|
2182
2179
|
color?: string;
|
|
2183
2180
|
}
|
|
2184
|
-
declare function IconWarning({ color, size, ...other }: IconProps$
|
|
2181
|
+
declare function IconWarning({ color, size, ...other }: IconProps$c): JSX.Element;
|
|
2185
2182
|
|
|
2186
2183
|
declare const IconGift: React.FC<React.SVGAttributes<SVGElement>>;
|
|
2187
2184
|
|
|
@@ -2197,49 +2194,49 @@ declare const IconNotificationMuted: (props: SVGProps<SVGSVGElement>) => JSX.Ele
|
|
|
2197
2194
|
|
|
2198
2195
|
declare const IconCheckSmall: React.FC<React.SVGAttributes<SVGElement>>;
|
|
2199
2196
|
|
|
2200
|
-
interface IconProps$
|
|
2197
|
+
interface IconProps$b extends React.SVGAttributes<SVGElement> {
|
|
2201
2198
|
size?: number | string;
|
|
2202
2199
|
color?: string;
|
|
2203
2200
|
className?: string;
|
|
2204
2201
|
style?: React.CSSProperties;
|
|
2205
2202
|
}
|
|
2206
|
-
declare function IconCheck({ color, size, ...other }: IconProps$
|
|
2203
|
+
declare function IconCheck({ color, size, ...other }: IconProps$b): JSX.Element;
|
|
2207
2204
|
|
|
2208
|
-
interface IconProps$
|
|
2205
|
+
interface IconProps$a extends React.SVGAttributes<SVGElement> {
|
|
2209
2206
|
size?: number | string;
|
|
2210
2207
|
color?: string;
|
|
2211
2208
|
className?: string;
|
|
2212
2209
|
style?: React.CSSProperties;
|
|
2213
2210
|
}
|
|
2214
|
-
declare const IconCapFilled: FC<IconProps$
|
|
2211
|
+
declare const IconCapFilled: FC<IconProps$a>;
|
|
2215
2212
|
|
|
2216
|
-
interface IconProps$
|
|
2213
|
+
interface IconProps$9 extends React.SVGAttributes<SVGElement> {
|
|
2217
2214
|
size?: number | string;
|
|
2218
2215
|
color?: string;
|
|
2219
2216
|
className?: string;
|
|
2220
2217
|
style?: React.CSSProperties;
|
|
2221
2218
|
}
|
|
2222
|
-
declare function IconCancelRounded({ color, size, ...other }: IconProps$
|
|
2219
|
+
declare function IconCancelRounded({ color, size, ...other }: IconProps$9): JSX.Element;
|
|
2223
2220
|
|
|
2224
|
-
interface IconProps$
|
|
2221
|
+
interface IconProps$8 extends React.SVGAttributes<SVGElement> {
|
|
2225
2222
|
size?: number | string;
|
|
2226
2223
|
color?: string;
|
|
2227
2224
|
}
|
|
2228
|
-
declare function IconMute({ color, size, ...other }: IconProps$
|
|
2225
|
+
declare function IconMute({ color, size, ...other }: IconProps$8): JSX.Element;
|
|
2229
2226
|
|
|
2230
|
-
interface IconProps$
|
|
2227
|
+
interface IconProps$7 extends React.SVGAttributes<SVGElement> {
|
|
2231
2228
|
size?: number | string;
|
|
2232
2229
|
color?: string;
|
|
2233
2230
|
}
|
|
2234
|
-
declare function IconUnmute({ color, size, ...other }: IconProps$
|
|
2231
|
+
declare function IconUnmute({ color, size, ...other }: IconProps$7): JSX.Element;
|
|
2235
2232
|
|
|
2236
2233
|
declare const IconBookmark: ({ width, height, color, ...other }: SVGProps<SVGSVGElement>) => JSX.Element;
|
|
2237
2234
|
|
|
2238
|
-
interface IconProps$
|
|
2235
|
+
interface IconProps$6 extends React.SVGAttributes<SVGElement> {
|
|
2239
2236
|
size?: number | string;
|
|
2240
2237
|
color?: string;
|
|
2241
2238
|
}
|
|
2242
|
-
declare function IconBookmarkOutlined({ size, color, ...other }: IconProps$
|
|
2239
|
+
declare function IconBookmarkOutlined({ size, color, ...other }: IconProps$6): JSX.Element;
|
|
2243
2240
|
|
|
2244
2241
|
declare const IconUserNotFound: (props: SVGProps<SVGSVGElement>) => JSX.Element;
|
|
2245
2242
|
|
|
@@ -2261,59 +2258,67 @@ declare const IconArrowDown: ({ width, height, color, ...other }: SVGProps<SVGSV
|
|
|
2261
2258
|
|
|
2262
2259
|
declare const IconRadioButtonChecked: (props: SVGProps<SVGSVGElement>) => JSX.Element;
|
|
2263
2260
|
|
|
2264
|
-
interface IconProps$
|
|
2261
|
+
interface IconProps$5 extends React.SVGAttributes<SVGElement> {
|
|
2265
2262
|
size?: number | string;
|
|
2266
2263
|
color?: string;
|
|
2267
2264
|
}
|
|
2268
|
-
declare function IconShare({ size, ...props }: IconProps$
|
|
2265
|
+
declare function IconShare({ size, ...props }: IconProps$5): JSX.Element;
|
|
2269
2266
|
|
|
2270
|
-
interface IconProps$
|
|
2267
|
+
interface IconProps$4 extends React.SVGAttributes<SVGElement> {
|
|
2271
2268
|
size?: number | string;
|
|
2272
2269
|
color?: string;
|
|
2273
2270
|
}
|
|
2274
|
-
declare function IconLink({ size, ...props }: IconProps$
|
|
2271
|
+
declare function IconLink({ size, ...props }: IconProps$4): JSX.Element;
|
|
2275
2272
|
|
|
2276
|
-
declare const IconHome: FC<IconProps$
|
|
2273
|
+
declare const IconHome: FC<IconProps$z>;
|
|
2277
2274
|
|
|
2278
|
-
declare const IconEcgHeart: FC<IconProps$
|
|
2275
|
+
declare const IconEcgHeart: FC<IconProps$z>;
|
|
2279
2276
|
|
|
2280
|
-
declare const IconAddModerator: FC<IconProps$
|
|
2277
|
+
declare const IconAddModerator: FC<IconProps$z>;
|
|
2281
2278
|
|
|
2282
|
-
declare const IconQueryStats: FC<IconProps$
|
|
2279
|
+
declare const IconQueryStats: FC<IconProps$z>;
|
|
2283
2280
|
|
|
2284
|
-
declare const IconSchema: FC<IconProps$
|
|
2281
|
+
declare const IconSchema: FC<IconProps$z>;
|
|
2285
2282
|
|
|
2286
|
-
declare const IconPromocode: FC<IconProps$
|
|
2283
|
+
declare const IconPromocode: FC<IconProps$z>;
|
|
2287
2284
|
|
|
2288
|
-
declare const IconEventBusy: FC<IconProps$
|
|
2285
|
+
declare const IconEventBusy: FC<IconProps$z>;
|
|
2289
2286
|
|
|
2290
|
-
declare const IconDelete: FC<IconProps$
|
|
2287
|
+
declare const IconDelete: FC<IconProps$z>;
|
|
2291
2288
|
|
|
2292
|
-
declare const IconEdit: FC<IconProps$
|
|
2289
|
+
declare const IconEdit: FC<IconProps$z>;
|
|
2293
2290
|
|
|
2294
|
-
declare const IconCopy: FC<IconProps$
|
|
2291
|
+
declare const IconCopy: FC<IconProps$z>;
|
|
2295
2292
|
|
|
2296
|
-
interface IconProps$
|
|
2293
|
+
interface IconProps$3 extends React.SVGAttributes<SVGElement> {
|
|
2297
2294
|
size?: number | string;
|
|
2298
2295
|
color?: string;
|
|
2299
2296
|
}
|
|
2300
|
-
declare function IconTimeAdd({ color, size, ...other }: IconProps$
|
|
2297
|
+
declare function IconTimeAdd({ color, size, ...other }: IconProps$3): JSX.Element;
|
|
2301
2298
|
|
|
2302
|
-
declare const IconManageAccounts: FC<IconProps$
|
|
2299
|
+
declare const IconManageAccounts: FC<IconProps$z>;
|
|
2303
2300
|
|
|
2304
|
-
declare const IconSend: FC<IconProps$
|
|
2301
|
+
declare const IconSend: FC<IconProps$z>;
|
|
2302
|
+
|
|
2303
|
+
interface IconProps$2 extends React.SVGAttributes<SVGElement> {
|
|
2304
|
+
size?: number | string;
|
|
2305
|
+
color?: string;
|
|
2306
|
+
}
|
|
2307
|
+
declare function IconGallery({ color, size, ...other }: IconProps$2): JSX.Element;
|
|
2305
2308
|
|
|
2306
2309
|
interface IconProps$1 extends React.SVGAttributes<SVGElement> {
|
|
2307
2310
|
size?: number | string;
|
|
2308
2311
|
color?: string;
|
|
2309
2312
|
}
|
|
2310
|
-
declare function
|
|
2313
|
+
declare function IconText({ color, size, ...other }: IconProps$1): JSX.Element;
|
|
2311
2314
|
|
|
2312
2315
|
interface IconProps extends React.SVGAttributes<SVGElement> {
|
|
2313
2316
|
size?: number | string;
|
|
2314
2317
|
color?: string;
|
|
2318
|
+
className?: string;
|
|
2319
|
+
style?: React.CSSProperties;
|
|
2315
2320
|
}
|
|
2316
|
-
declare function
|
|
2321
|
+
declare function IconCheckCircle({ color, size, ...props }: IconProps): JSX.Element;
|
|
2317
2322
|
|
|
2318
2323
|
type AnyRef = React__default.Ref<any>;
|
|
2319
2324
|
declare const mergeRefs: <T extends unknown>(...refs: AnyRef[]) => React__default.Ref<T>;
|
|
@@ -2584,4 +2589,4 @@ declare const _default$1: React__default.NamedExoticComponent<SpecialistPaymentC
|
|
|
2584
2589
|
|
|
2585
2590
|
declare const _default: React__default.NamedExoticComponent<SpecialistPaymentCardProps & SpecialistPaymentConsultationsProps & TranslationType>;
|
|
2586
2591
|
|
|
2587
|
-
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 };
|
|
2592
|
+
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 };
|