@mindly/ui-components 5.88.0 → 5.88.2
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/index.d.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
import
|
|
3
|
-
import React__default, { ReactNode, CSSProperties, HTMLAttributes, RefAttributes, FC, ReactText, ReactElement, ChangeEvent, SVGAttributes, KeyboardEvent, InputHTMLAttributes, SVGProps, PropsWithChildren } from 'react';
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import React__default, { ReactNode, CSSProperties, HTMLAttributes, RefAttributes, FC, ReactText, ReactElement, ChangeEvent, SVGAttributes, KeyboardEvent, InputHTMLAttributes, RefObject, SVGProps, PropsWithChildren } from 'react';
|
|
4
3
|
import { JSX as JSX$1 } from '@ionic/core/components';
|
|
5
4
|
import * as react_i18next from 'react-i18next';
|
|
6
5
|
import { WithTranslation } from 'react-i18next';
|
|
@@ -1547,21 +1546,21 @@ declare const _default$y: React__default.NamedExoticComponent<PictureProps>;
|
|
|
1547
1546
|
|
|
1548
1547
|
type BadgeType = 'default' | 'accent';
|
|
1549
1548
|
type BadgeVariants = 'attention' | 'neutral' | 'success' | 'warning' | 'brand' | 'info';
|
|
1550
|
-
type BadgeProps = React
|
|
1549
|
+
type BadgeProps = React.ComponentPropsWithoutRef<'span'> & {
|
|
1551
1550
|
variant: BadgeVariants;
|
|
1552
1551
|
size?: 'S' | 'M';
|
|
1553
1552
|
type?: BadgeType;
|
|
1554
1553
|
};
|
|
1555
1554
|
|
|
1556
|
-
declare const _default$x: React
|
|
1555
|
+
declare const _default$x: React.NamedExoticComponent<BadgeProps>;
|
|
1557
1556
|
|
|
1558
1557
|
type ItemCardVariants = 'neutral' | 'transparent' | 'transparent20';
|
|
1559
|
-
type ItemCardProps = React
|
|
1558
|
+
type ItemCardProps = React.ComponentPropsWithoutRef<'div'> & {
|
|
1560
1559
|
variant: ItemCardVariants;
|
|
1561
1560
|
size?: 'M' | 'M4' | 'M45';
|
|
1562
1561
|
};
|
|
1563
1562
|
|
|
1564
|
-
declare const _default$w: React
|
|
1563
|
+
declare const _default$w: React.NamedExoticComponent<ItemCardProps>;
|
|
1565
1564
|
|
|
1566
1565
|
type AppHeaderProps = {
|
|
1567
1566
|
fullwidth?: boolean;
|
|
@@ -1920,7 +1919,7 @@ declare function ListBox<T extends Record<string, unknown>>({ selectedIconProps,
|
|
|
1920
1919
|
type ListOptionsProps = {
|
|
1921
1920
|
item: Node<unknown>;
|
|
1922
1921
|
state: ListState<unknown>;
|
|
1923
|
-
icon?: React
|
|
1922
|
+
icon?: React.ReactNode;
|
|
1924
1923
|
divider?: boolean;
|
|
1925
1924
|
value?: string;
|
|
1926
1925
|
selectedIconProps?: IconProps$B;
|
|
@@ -1929,26 +1928,26 @@ type ListOptionsProps = {
|
|
|
1929
1928
|
enableSelection?: boolean;
|
|
1930
1929
|
};
|
|
1931
1930
|
type ListBoxItemProps = {
|
|
1932
|
-
icon?: React
|
|
1931
|
+
icon?: React.ReactNode;
|
|
1933
1932
|
type?: `${ListBoxSelectionType}`;
|
|
1934
1933
|
selectedIconProps?: IconProps$B;
|
|
1935
1934
|
divider?: boolean;
|
|
1936
1935
|
value?: string;
|
|
1937
|
-
children: React
|
|
1936
|
+
children: React.ReactNode;
|
|
1938
1937
|
className?: string;
|
|
1939
1938
|
customContent?: boolean;
|
|
1940
1939
|
onClick?: HTMLIonItemElement['onclick'];
|
|
1941
1940
|
};
|
|
1942
1941
|
|
|
1943
|
-
declare const ListOption: React
|
|
1942
|
+
declare const ListOption: React.ForwardRefExoticComponent<ListOptionsProps & React.RefAttributes<HTMLIonItemElement>>;
|
|
1944
1943
|
declare const ListBoxItem: (props: ItemProps$1<unknown> & ListBoxItemProps) => JSX.Element;
|
|
1945
1944
|
|
|
1946
1945
|
type BaseTypeProps = {
|
|
1947
|
-
onDatePress?: (date: string, evt: React
|
|
1946
|
+
onDatePress?: (date: string, evt: React.MouseEvent<HTMLButtonElement>) => void;
|
|
1948
1947
|
locale: string;
|
|
1949
1948
|
timeZone?: string;
|
|
1950
1949
|
selectionMode?: SelectionMode;
|
|
1951
|
-
renderCustomDateContent?: (date: string, formattedDate: string, isSelected: boolean, isToday: boolean) => React
|
|
1950
|
+
renderCustomDateContent?: (date: string, formattedDate: string, isSelected: boolean, isToday: boolean) => React.ReactNode;
|
|
1952
1951
|
};
|
|
1953
1952
|
type CalendarProps = Omit<AriaCalendarProps<DateValue>, 'minValue' | 'defaultValue' | 'maxValue'> & BaseTypeProps & {
|
|
1954
1953
|
minValue?: string;
|
|
@@ -2021,7 +2020,7 @@ interface ToastRegionProps<T> extends AriaToastRegionProps {
|
|
|
2021
2020
|
state: ToastState<T>;
|
|
2022
2021
|
}
|
|
2023
2022
|
|
|
2024
|
-
declare function ToastRegion<T extends React
|
|
2023
|
+
declare function ToastRegion<T extends React.ReactNode>({ state, ...props }: ToastRegionProps<T>): JSX.Element;
|
|
2025
2024
|
|
|
2026
2025
|
interface ScreenInputProps extends InputHTMLAttributes<HTMLInputElement> {
|
|
2027
2026
|
variant?: 'default' | 'large';
|
|
@@ -2040,12 +2039,12 @@ type SpinnerProps = {
|
|
|
2040
2039
|
};
|
|
2041
2040
|
declare const Spinner_v2: FC<SpinnerProps>;
|
|
2042
2041
|
|
|
2043
|
-
declare const ModalSheet: React
|
|
2044
|
-
children?: React
|
|
2042
|
+
declare const ModalSheet: React.ForwardRefExoticComponent<_ionic_core_dist_types_components.JSX.IonModal & {
|
|
2043
|
+
children?: React.ReactNode;
|
|
2045
2044
|
} & {
|
|
2046
2045
|
heightInPx?: number | undefined;
|
|
2047
2046
|
className?: string | undefined;
|
|
2048
|
-
} & React
|
|
2047
|
+
} & React.RefAttributes<HTMLIonModalElement>>;
|
|
2049
2048
|
|
|
2050
2049
|
type ProgressBar_v2Props = {
|
|
2051
2050
|
variant?: 'default' | 'danger' | 'success' | 'dark' | 'light';
|
|
@@ -2062,14 +2061,14 @@ type LoadingProps = {
|
|
|
2062
2061
|
};
|
|
2063
2062
|
declare const _default$r: React__default.NamedExoticComponent<LoadingProps>;
|
|
2064
2063
|
|
|
2065
|
-
type ListItemsProps = React
|
|
2064
|
+
type ListItemsProps = React.HTMLAttributes<HTMLIonListElement> & {
|
|
2066
2065
|
withBorders?: boolean;
|
|
2067
2066
|
};
|
|
2068
|
-
declare const _default$q: React
|
|
2067
|
+
declare const _default$q: React.NamedExoticComponent<ListItemsProps>;
|
|
2069
2068
|
|
|
2070
|
-
type ItemProps = React
|
|
2071
|
-
leftContent?: React
|
|
2072
|
-
rightContent?: React
|
|
2069
|
+
type ItemProps = React.HTMLAttributes<HTMLIonItemElement> & {
|
|
2070
|
+
leftContent?: React.ReactNode;
|
|
2071
|
+
rightContent?: React.ReactNode;
|
|
2073
2072
|
innerItemClassName?: string;
|
|
2074
2073
|
withBorders?: boolean;
|
|
2075
2074
|
isDisabled?: boolean;
|
|
@@ -2077,7 +2076,7 @@ type ItemProps = React$1.HTMLAttributes<HTMLIonItemElement> & {
|
|
|
2077
2076
|
isError?: boolean;
|
|
2078
2077
|
status?: 'error' | 'attention';
|
|
2079
2078
|
};
|
|
2080
|
-
declare const _default$p: React
|
|
2079
|
+
declare const _default$p: React.NamedExoticComponent<ItemProps>;
|
|
2081
2080
|
|
|
2082
2081
|
type VideoProps = {
|
|
2083
2082
|
src: string;
|
|
@@ -2117,7 +2116,7 @@ type FieldSearchType = {
|
|
|
2117
2116
|
t?: WithTranslation['t'];
|
|
2118
2117
|
};
|
|
2119
2118
|
|
|
2120
|
-
declare const InputSearch: React
|
|
2119
|
+
declare const InputSearch: React.FC<FieldSearchType>;
|
|
2121
2120
|
|
|
2122
2121
|
type LabelArrowRedirectProps = {
|
|
2123
2122
|
transparent?: boolean;
|
|
@@ -2194,8 +2193,8 @@ type ThemeProviderProps = {
|
|
|
2194
2193
|
|
|
2195
2194
|
declare const ThemeProvider: FC<ThemeProviderProps>;
|
|
2196
2195
|
|
|
2197
|
-
declare const ToastContext: React
|
|
2198
|
-
declare function ToastProvider({ children, ...props }: React
|
|
2196
|
+
declare const ToastContext: React.Context<ToastState<MindlyToastProps> | undefined>;
|
|
2197
|
+
declare function ToastProvider({ children, ...props }: React.PropsWithChildren<ToastProviderProps>): JSX.Element;
|
|
2199
2198
|
|
|
2200
2199
|
declare const CircleRatingContext: React__default.Context<CircleRatingContextData>;
|
|
2201
2200
|
declare const CircleRatingProvider: ({ children, data, t, }: {
|
|
@@ -2204,7 +2203,7 @@ declare const CircleRatingProvider: ({ children, data, t, }: {
|
|
|
2204
2203
|
t: TFunction<react_i18next.FallbackNs<Ns>, KPrefix>;
|
|
2205
2204
|
}) => JSX.Element | null;
|
|
2206
2205
|
|
|
2207
|
-
declare function useDomRef<T extends HTMLElement = HTMLElement>(ref: React
|
|
2206
|
+
declare function useDomRef<T extends HTMLElement = HTMLElement>(ref: React.RefObject<T | null> | React.ForwardedRef<T | null>): React.RefObject<T>;
|
|
2208
2207
|
|
|
2209
2208
|
type AnyFunction = (...args: any[]) => any;
|
|
2210
2209
|
/**
|
|
@@ -2216,7 +2215,7 @@ type AnyFunction = (...args: any[]) => any;
|
|
|
2216
2215
|
declare function useEvent<TCallback extends AnyFunction>(callback: TCallback): TCallback;
|
|
2217
2216
|
|
|
2218
2217
|
type InputRefType = HTMLIonInputElement | HTMLIonTextareaElement;
|
|
2219
|
-
declare function useAutoFocus<T extends InputRefType>(): React
|
|
2218
|
+
declare function useAutoFocus<T extends InputRefType>(): React.RefObject<T>;
|
|
2220
2219
|
|
|
2221
2220
|
declare function useToastContext(): ToastState<MindlyToastProps>;
|
|
2222
2221
|
|
|
@@ -2249,86 +2248,86 @@ declare function useRatingContext(): CircleRatingContextData;
|
|
|
2249
2248
|
|
|
2250
2249
|
declare function useElementWidth<T extends HTMLElement>(): [
|
|
2251
2250
|
number | undefined,
|
|
2252
|
-
|
|
2251
|
+
RefObject<T>
|
|
2253
2252
|
];
|
|
2254
2253
|
|
|
2255
|
-
interface IconProps$A extends React
|
|
2254
|
+
interface IconProps$A extends React.SVGAttributes<SVGElement> {
|
|
2256
2255
|
size?: number | string;
|
|
2257
2256
|
color?: string;
|
|
2258
2257
|
}
|
|
2259
2258
|
declare function IconArrowLeft({ color, size, ...other }: IconProps$A): JSX.Element;
|
|
2260
2259
|
|
|
2261
|
-
interface IconProps$z extends React
|
|
2260
|
+
interface IconProps$z extends React.SVGAttributes<SVGElement> {
|
|
2262
2261
|
size?: number | string;
|
|
2263
2262
|
color?: string;
|
|
2264
2263
|
}
|
|
2265
2264
|
declare function IconArrowRight({ color, size, ...other }: IconProps$z): JSX.Element;
|
|
2266
2265
|
|
|
2267
|
-
interface IconProps$y extends React
|
|
2266
|
+
interface IconProps$y extends React.SVGAttributes<SVGElement> {
|
|
2268
2267
|
size?: number | string;
|
|
2269
2268
|
color?: string;
|
|
2270
2269
|
}
|
|
2271
2270
|
declare function IconBeachAccess({ color, size, ...other }: IconProps$y): JSX.Element;
|
|
2272
2271
|
|
|
2273
|
-
interface IconProps$x extends React
|
|
2272
|
+
interface IconProps$x extends React.SVGAttributes<SVGElement> {
|
|
2274
2273
|
size?: number | string;
|
|
2275
2274
|
color?: string;
|
|
2276
2275
|
}
|
|
2277
2276
|
declare function IconCalendar({ color, size, ...other }: IconProps$x): JSX.Element;
|
|
2278
2277
|
|
|
2279
|
-
interface IconProps$w extends React
|
|
2278
|
+
interface IconProps$w extends React.SVGAttributes<SVGElement> {
|
|
2280
2279
|
size?: number | string;
|
|
2281
2280
|
color?: string;
|
|
2282
2281
|
}
|
|
2283
2282
|
declare function IconCalendarMonth({ color, size, ...other }: IconProps$w): JSX.Element;
|
|
2284
2283
|
|
|
2285
|
-
interface IconProps$v extends React
|
|
2284
|
+
interface IconProps$v extends React.SVGAttributes<SVGElement> {
|
|
2286
2285
|
size?: number | string;
|
|
2287
2286
|
color?: string;
|
|
2288
2287
|
}
|
|
2289
2288
|
declare function IconChatOutline({ color, size, ...other }: IconProps$v): JSX.Element;
|
|
2290
2289
|
|
|
2291
|
-
interface IconProps$u extends React
|
|
2290
|
+
interface IconProps$u extends React.SVGAttributes<SVGElement> {
|
|
2292
2291
|
size?: number | string;
|
|
2293
2292
|
color?: string;
|
|
2294
2293
|
}
|
|
2295
2294
|
declare function IconCheckboxChecked({ color, size, ...other }: IconProps$u): JSX.Element;
|
|
2296
2295
|
|
|
2297
|
-
interface IconProps$t extends React
|
|
2296
|
+
interface IconProps$t extends React.SVGAttributes<SVGElement> {
|
|
2298
2297
|
size?: number | string;
|
|
2299
2298
|
color?: string;
|
|
2300
2299
|
}
|
|
2301
2300
|
declare function IconCheckboxUnchecked({ color, size, ...other }: IconProps$t): JSX.Element;
|
|
2302
2301
|
|
|
2303
|
-
declare const IconClose: FC<React
|
|
2302
|
+
declare const IconClose: FC<React.SVGAttributes<SVGElement>>;
|
|
2304
2303
|
|
|
2305
|
-
interface IconProps$s extends React
|
|
2304
|
+
interface IconProps$s extends React.SVGAttributes<SVGElement> {
|
|
2306
2305
|
size?: number | string;
|
|
2307
2306
|
color?: string;
|
|
2308
2307
|
}
|
|
2309
2308
|
declare function IconEditCalendar({ color, size, ...props }: IconProps$s): JSX.Element;
|
|
2310
2309
|
|
|
2311
|
-
interface IconProps$r extends React
|
|
2310
|
+
interface IconProps$r extends React.SVGAttributes<SVGElement> {
|
|
2312
2311
|
size?: number | string;
|
|
2313
2312
|
color?: string;
|
|
2314
2313
|
}
|
|
2315
2314
|
declare function IconInvisible({ color, size, ...other }: IconProps$r): JSX.Element;
|
|
2316
2315
|
|
|
2317
|
-
interface IconProps$q extends React
|
|
2316
|
+
interface IconProps$q extends React.SVGAttributes<SVGElement> {
|
|
2318
2317
|
size?: number | string;
|
|
2319
2318
|
color?: string;
|
|
2320
2319
|
}
|
|
2321
2320
|
declare function IconLanguage({ color, size, ...other }: IconProps$q): JSX.Element;
|
|
2322
2321
|
|
|
2323
|
-
declare const IconLeftArrow: FC<React
|
|
2322
|
+
declare const IconLeftArrow: FC<React.SVGAttributes<SVGElement>>;
|
|
2324
2323
|
|
|
2325
|
-
interface IconProps$p extends React
|
|
2324
|
+
interface IconProps$p extends React.SVGAttributes<SVGElement> {
|
|
2326
2325
|
size?: number | string;
|
|
2327
2326
|
color?: string;
|
|
2328
2327
|
}
|
|
2329
2328
|
declare function IconLogout({ color, size, ...other }: IconProps$p): JSX.Element;
|
|
2330
2329
|
|
|
2331
|
-
interface IconProps$o extends React
|
|
2330
|
+
interface IconProps$o extends React.SVGAttributes<SVGElement> {
|
|
2332
2331
|
size?: number | string;
|
|
2333
2332
|
color?: string;
|
|
2334
2333
|
}
|
|
@@ -2336,132 +2335,132 @@ declare function IconPause({ color, size, ...other }: IconProps$o): JSX.Element;
|
|
|
2336
2335
|
|
|
2337
2336
|
declare function IconMinus({ color, size, ...other }: IconProps$B): JSX.Element;
|
|
2338
2337
|
|
|
2339
|
-
type IconPlusProps = React
|
|
2338
|
+
type IconPlusProps = React.SVGProps<any>;
|
|
2340
2339
|
declare function IconPlus({ color, ...props }: IconPlusProps): JSX.Element;
|
|
2341
2340
|
|
|
2342
|
-
interface IconProps$n extends React
|
|
2341
|
+
interface IconProps$n extends React.SVGAttributes<SVGElement> {
|
|
2343
2342
|
size?: number | string;
|
|
2344
2343
|
color?: string;
|
|
2345
2344
|
}
|
|
2346
2345
|
declare function IconProfileChecked({ color, size, ...other }: IconProps$n): JSX.Element;
|
|
2347
2346
|
|
|
2348
|
-
interface IconProps$m extends React
|
|
2347
|
+
interface IconProps$m extends React.SVGAttributes<SVGElement> {
|
|
2349
2348
|
size?: number | string;
|
|
2350
2349
|
color?: string;
|
|
2351
2350
|
}
|
|
2352
2351
|
declare function IconProfileCircle({ color, size, ...other }: IconProps$m): JSX.Element;
|
|
2353
2352
|
|
|
2354
|
-
interface IconProps$l extends React
|
|
2353
|
+
interface IconProps$l extends React.SVGAttributes<SVGElement> {
|
|
2355
2354
|
size?: number | string;
|
|
2356
2355
|
color?: string;
|
|
2357
2356
|
}
|
|
2358
2357
|
declare function IconProfileSetting({ color, size, ...other }: IconProps$l): JSX.Element;
|
|
2359
2358
|
|
|
2360
|
-
interface IconProps$k extends React
|
|
2359
|
+
interface IconProps$k extends React.SVGAttributes<SVGElement> {
|
|
2361
2360
|
size?: number | string;
|
|
2362
2361
|
color?: string;
|
|
2363
2362
|
}
|
|
2364
2363
|
declare function IconProfileUnderReview({ color, size, ...other }: IconProps$k): JSX.Element;
|
|
2365
2364
|
|
|
2366
|
-
interface IconProps$j extends React
|
|
2365
|
+
interface IconProps$j extends React.SVGAttributes<SVGElement> {
|
|
2367
2366
|
size?: number | string;
|
|
2368
2367
|
color?: string;
|
|
2369
2368
|
}
|
|
2370
2369
|
declare function IconResume({ color, size, ...other }: IconProps$j): JSX.Element;
|
|
2371
2370
|
|
|
2372
|
-
interface IconProps$i extends React
|
|
2371
|
+
interface IconProps$i extends React.SVGAttributes<SVGElement> {
|
|
2373
2372
|
size?: number | string;
|
|
2374
2373
|
color?: string;
|
|
2375
2374
|
}
|
|
2376
2375
|
declare function IconSettings({ color, size, ...other }: IconProps$i): JSX.Element;
|
|
2377
2376
|
|
|
2378
|
-
declare const IconStar: FC<React
|
|
2377
|
+
declare const IconStar: FC<React.SVGAttributes<SVGElement>>;
|
|
2379
2378
|
|
|
2380
|
-
declare const IconStarFilled: FC<React
|
|
2379
|
+
declare const IconStarFilled: FC<React.SVGAttributes<SVGElement>>;
|
|
2381
2380
|
|
|
2382
|
-
declare const IconSuccess: FC<React
|
|
2381
|
+
declare const IconSuccess: FC<React.SVGAttributes<SVGElement>>;
|
|
2383
2382
|
|
|
2384
|
-
interface IconProps$h extends React
|
|
2383
|
+
interface IconProps$h extends React.SVGAttributes<SVGElement> {
|
|
2385
2384
|
size?: number | string;
|
|
2386
2385
|
color?: string;
|
|
2387
2386
|
}
|
|
2388
2387
|
declare function IconTime({ color, size, ...other }: IconProps$h): JSX.Element;
|
|
2389
2388
|
|
|
2390
|
-
interface IconProps$g extends React
|
|
2389
|
+
interface IconProps$g extends React.SVGAttributes<SVGElement> {
|
|
2391
2390
|
size?: number | string;
|
|
2392
2391
|
color?: string;
|
|
2393
2392
|
}
|
|
2394
2393
|
declare function IconVerifiedUser({ color, size, ...other }: IconProps$g): JSX.Element;
|
|
2395
2394
|
|
|
2396
|
-
interface IconProps$f extends React
|
|
2395
|
+
interface IconProps$f extends React.SVGAttributes<SVGElement> {
|
|
2397
2396
|
size?: number | string;
|
|
2398
2397
|
color?: string;
|
|
2399
2398
|
}
|
|
2400
2399
|
declare function IconVisible({ color, size, ...other }: IconProps$f): JSX.Element;
|
|
2401
2400
|
|
|
2402
|
-
declare const IconApple: FC<React
|
|
2401
|
+
declare const IconApple: FC<React.SVGAttributes<SVGElement>>;
|
|
2403
2402
|
|
|
2404
|
-
declare const IconGoogle: FC<React
|
|
2403
|
+
declare const IconGoogle: FC<React.SVGAttributes<SVGElement>>;
|
|
2405
2404
|
|
|
2406
|
-
declare const IconLetter: FC<React
|
|
2405
|
+
declare const IconLetter: FC<React.SVGAttributes<SVGElement>>;
|
|
2407
2406
|
|
|
2408
|
-
declare const IconSpinner: FC<React
|
|
2407
|
+
declare const IconSpinner: FC<React.SVGAttributes<SVGElement>>;
|
|
2409
2408
|
|
|
2410
|
-
declare const IconEye: FC<React
|
|
2409
|
+
declare const IconEye: FC<React.SVGAttributes<SVGElement>>;
|
|
2411
2410
|
|
|
2412
|
-
declare const IconEyeOff: FC<React
|
|
2411
|
+
declare const IconEyeOff: FC<React.SVGAttributes<SVGElement>>;
|
|
2413
2412
|
|
|
2414
|
-
interface IconProps$e extends React
|
|
2413
|
+
interface IconProps$e extends React.SVGAttributes<SVGElement> {
|
|
2415
2414
|
size?: number | string;
|
|
2416
2415
|
color?: string;
|
|
2417
2416
|
}
|
|
2418
2417
|
declare function IconWarning({ color, size, ...other }: IconProps$e): JSX.Element;
|
|
2419
2418
|
|
|
2420
|
-
declare const IconGift: React
|
|
2419
|
+
declare const IconGift: React.FC<React.SVGAttributes<SVGElement>>;
|
|
2421
2420
|
|
|
2422
|
-
declare const IconCreditCard: React
|
|
2421
|
+
declare const IconCreditCard: React.FC<React.SVGAttributes<SVGElement>>;
|
|
2423
2422
|
|
|
2424
|
-
declare const IconQuestion: React
|
|
2423
|
+
declare const IconQuestion: React.FC<React.SVGAttributes<SVGElement>>;
|
|
2425
2424
|
|
|
2426
|
-
declare const IconPaper: React
|
|
2425
|
+
declare const IconPaper: React.FC<React.SVGAttributes<SVGElement>>;
|
|
2427
2426
|
|
|
2428
2427
|
declare const IconChat3d: (props: SVGProps<SVGSVGElement>) => JSX.Element;
|
|
2429
2428
|
|
|
2430
2429
|
declare const IconNotificationMuted: (props: SVGProps<SVGSVGElement>) => JSX.Element;
|
|
2431
2430
|
|
|
2432
|
-
declare const IconCheckSmall: React
|
|
2431
|
+
declare const IconCheckSmall: React.FC<React.SVGAttributes<SVGElement>>;
|
|
2433
2432
|
|
|
2434
|
-
interface IconProps$d extends React
|
|
2433
|
+
interface IconProps$d extends React.SVGAttributes<SVGElement> {
|
|
2435
2434
|
size?: number | string;
|
|
2436
2435
|
color?: string;
|
|
2437
2436
|
className?: string;
|
|
2438
|
-
style?: React
|
|
2437
|
+
style?: React.CSSProperties;
|
|
2439
2438
|
}
|
|
2440
2439
|
declare function IconCheck({ color, size, ...other }: IconProps$d): JSX.Element;
|
|
2441
2440
|
|
|
2442
|
-
interface IconProps$c extends React
|
|
2441
|
+
interface IconProps$c extends React.SVGAttributes<SVGElement> {
|
|
2443
2442
|
size?: number | string;
|
|
2444
2443
|
color?: string;
|
|
2445
2444
|
className?: string;
|
|
2446
|
-
style?: React
|
|
2445
|
+
style?: React.CSSProperties;
|
|
2447
2446
|
}
|
|
2448
2447
|
declare const IconCapFilled: FC<IconProps$c>;
|
|
2449
2448
|
|
|
2450
|
-
interface IconProps$b extends React
|
|
2449
|
+
interface IconProps$b extends React.SVGAttributes<SVGElement> {
|
|
2451
2450
|
size?: number | string;
|
|
2452
2451
|
color?: string;
|
|
2453
2452
|
className?: string;
|
|
2454
|
-
style?: React
|
|
2453
|
+
style?: React.CSSProperties;
|
|
2455
2454
|
}
|
|
2456
2455
|
declare function IconCancelRounded({ color, size, ...other }: IconProps$b): JSX.Element;
|
|
2457
2456
|
|
|
2458
|
-
interface IconProps$a extends React
|
|
2457
|
+
interface IconProps$a extends React.SVGAttributes<SVGElement> {
|
|
2459
2458
|
size?: number | string;
|
|
2460
2459
|
color?: string;
|
|
2461
2460
|
}
|
|
2462
2461
|
declare function IconMute({ color, size, ...other }: IconProps$a): JSX.Element;
|
|
2463
2462
|
|
|
2464
|
-
interface IconProps$9 extends React
|
|
2463
|
+
interface IconProps$9 extends React.SVGAttributes<SVGElement> {
|
|
2465
2464
|
size?: number | string;
|
|
2466
2465
|
color?: string;
|
|
2467
2466
|
}
|
|
@@ -2469,7 +2468,7 @@ declare function IconUnmute({ color, size, ...other }: IconProps$9): JSX.Element
|
|
|
2469
2468
|
|
|
2470
2469
|
declare const IconBookmark: ({ width, height, color, ...other }: SVGProps<SVGSVGElement>) => JSX.Element;
|
|
2471
2470
|
|
|
2472
|
-
interface IconProps$8 extends React
|
|
2471
|
+
interface IconProps$8 extends React.SVGAttributes<SVGElement> {
|
|
2473
2472
|
size?: number | string;
|
|
2474
2473
|
color?: string;
|
|
2475
2474
|
}
|
|
@@ -2495,13 +2494,13 @@ declare const IconArrowDown: ({ width, height, color, ...other }: SVGProps<SVGSV
|
|
|
2495
2494
|
|
|
2496
2495
|
declare const IconRadioButtonChecked: (props: SVGProps<SVGSVGElement>) => JSX.Element;
|
|
2497
2496
|
|
|
2498
|
-
interface IconProps$7 extends React
|
|
2497
|
+
interface IconProps$7 extends React.SVGAttributes<SVGElement> {
|
|
2499
2498
|
size?: number | string;
|
|
2500
2499
|
color?: string;
|
|
2501
2500
|
}
|
|
2502
2501
|
declare function IconShare({ size, ...props }: IconProps$7): JSX.Element;
|
|
2503
2502
|
|
|
2504
|
-
interface IconProps$6 extends React
|
|
2503
|
+
interface IconProps$6 extends React.SVGAttributes<SVGElement> {
|
|
2505
2504
|
size?: number | string;
|
|
2506
2505
|
color?: string;
|
|
2507
2506
|
}
|
|
@@ -2529,7 +2528,7 @@ declare const IconEdit: FC<IconProps$B>;
|
|
|
2529
2528
|
|
|
2530
2529
|
declare const IconCopy: FC<IconProps$B>;
|
|
2531
2530
|
|
|
2532
|
-
interface IconProps$5 extends React
|
|
2531
|
+
interface IconProps$5 extends React.SVGAttributes<SVGElement> {
|
|
2533
2532
|
size?: number | string;
|
|
2534
2533
|
color?: string;
|
|
2535
2534
|
}
|
|
@@ -2539,27 +2538,27 @@ declare const IconManageAccounts: FC<IconProps$B>;
|
|
|
2539
2538
|
|
|
2540
2539
|
declare const IconSend: FC<IconProps$B>;
|
|
2541
2540
|
|
|
2542
|
-
interface IconProps$4 extends React
|
|
2541
|
+
interface IconProps$4 extends React.SVGAttributes<SVGElement> {
|
|
2543
2542
|
size?: number | string;
|
|
2544
2543
|
color?: string;
|
|
2545
2544
|
}
|
|
2546
2545
|
declare function IconGallery({ color, size, ...other }: IconProps$4): JSX.Element;
|
|
2547
2546
|
|
|
2548
|
-
interface IconProps$3 extends React
|
|
2547
|
+
interface IconProps$3 extends React.SVGAttributes<SVGElement> {
|
|
2549
2548
|
size?: number | string;
|
|
2550
2549
|
color?: string;
|
|
2551
2550
|
}
|
|
2552
2551
|
declare function IconText({ color, size, ...other }: IconProps$3): JSX.Element;
|
|
2553
2552
|
|
|
2554
|
-
interface IconProps$2 extends React
|
|
2553
|
+
interface IconProps$2 extends React.SVGAttributes<SVGElement> {
|
|
2555
2554
|
size?: number | string;
|
|
2556
2555
|
color?: string;
|
|
2557
2556
|
className?: string;
|
|
2558
|
-
style?: React
|
|
2557
|
+
style?: React.CSSProperties;
|
|
2559
2558
|
}
|
|
2560
2559
|
declare function IconCheckCircle({ color, size, ...props }: IconProps$2): JSX.Element;
|
|
2561
2560
|
|
|
2562
|
-
interface IconProps$1 extends React
|
|
2561
|
+
interface IconProps$1 extends React.SVGAttributes<SVGElement> {
|
|
2563
2562
|
size?: number | string;
|
|
2564
2563
|
color?: string;
|
|
2565
2564
|
}
|
|
@@ -2569,7 +2568,7 @@ declare const IconArrowTopRight: FC<IconProps$B>;
|
|
|
2569
2568
|
|
|
2570
2569
|
declare const IconMoreVertical: FC<IconProps$B>;
|
|
2571
2570
|
|
|
2572
|
-
interface IconProps extends React
|
|
2571
|
+
interface IconProps extends React.SVGAttributes<SVGElement> {
|
|
2573
2572
|
size?: number | string;
|
|
2574
2573
|
color?: string;
|
|
2575
2574
|
}
|
|
@@ -2668,7 +2667,7 @@ type SlotsGridItemProps = {
|
|
|
2668
2667
|
|
|
2669
2668
|
declare const _default$n: React__default.NamedExoticComponent<SlotsGridProps>;
|
|
2670
2669
|
|
|
2671
|
-
declare const _default$m: React
|
|
2670
|
+
declare const _default$m: React.NamedExoticComponent<SlotsGridItemProps>;
|
|
2672
2671
|
|
|
2673
2672
|
type PushNotificationsModalProps = {
|
|
2674
2673
|
onApplyPermission: () => void;
|
|
@@ -2684,7 +2683,7 @@ type PushNotificationsModalProps = {
|
|
|
2684
2683
|
renderHeader?: (props: {
|
|
2685
2684
|
backButton?: boolean;
|
|
2686
2685
|
onClose: () => void;
|
|
2687
|
-
}) => React
|
|
2686
|
+
}) => React.ReactNode;
|
|
2688
2687
|
};
|
|
2689
2688
|
|
|
2690
2689
|
declare function PushNotificationsModal({ onApplyPermission, isOpen, title, description, image, applyPermissionText, ...props }: PushNotificationsModalProps): JSX.Element;
|