@goodhood-web/ui 3.3.0-development.3 → 3.3.0-development.31
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/index.d.ts +12 -1
- package/index.js +77 -78
- package/index.mjs +9364 -8753
- package/lib/Atoms/AccordionItem/AccordionItem.d.ts +1 -1
- package/lib/Atoms/AccordionItem/AccordionItem.types.d.ts +3 -0
- package/lib/Atoms/Badges/Sticker/Sticker.d.ts +1 -1
- package/lib/Atoms/Badges/Sticker/Sticker.types.d.ts +10 -4
- package/lib/Atoms/Buttons/ButtonGoogleSSO/ButtonGoogleSSO.d.ts +3 -0
- package/lib/Atoms/Buttons/ButtonGoogleSSO/ButtonGoogleSSO.types.d.ts +7 -0
- package/lib/Atoms/Buttons/ButtonTertiary/ButtonTertiary.types.d.ts +1 -1
- package/lib/Atoms/Buttons/CarouselNavigation/CarouselNavigation.d.ts +5 -0
- package/lib/Atoms/Buttons/CarouselNavigation/CarouselNavigation.types.d.ts +4 -0
- package/lib/Atoms/Buttons/TextButton/TextButton.d.ts +1 -1
- package/lib/Atoms/Buttons/TextButton/TextButton.types.d.ts +2 -1
- package/lib/Atoms/Buttons/Tiles/ContentCreatorTile/ContentCreatorTile.d.ts +3 -0
- package/lib/Atoms/Buttons/Tiles/ContentCreatorTile/ContentCreatorTile.types.d.ts +11 -0
- package/lib/Atoms/Content/GalleryPlaceholder/GalleryPlaceholder.d.ts +1 -0
- package/lib/Atoms/Content/List/List.d.ts +3 -0
- package/lib/Atoms/Content/List/List.types.d.ts +22 -0
- package/lib/Atoms/Content/PoiAvatar/PoiAvatar.d.ts +1 -1
- package/lib/Atoms/Content/PoiAvatar/PoiAvatar.type.d.ts +2 -0
- package/lib/Atoms/Content/Thumbnail/Thumbnail.d.ts +1 -1
- package/lib/Atoms/Content/Thumbnail/Thumbnail.type.d.ts +6 -1
- package/lib/Atoms/Content/UserAvatar/UserAvatar.types.d.ts +2 -2
- package/lib/Atoms/Divider/Divider.types.d.ts +1 -1
- package/lib/Atoms/Image/Image.d.ts +1 -1
- package/lib/Atoms/Image/Image.type.d.ts +3 -0
- package/lib/Atoms/Inputs/TextAreaInput/TextAreaInput.d.ts +1 -1
- package/lib/Atoms/Inputs/TextAreaInput/TextAreaInput.types.d.ts +1 -0
- package/lib/Atoms/Inputs/TextInput/TextInput.d.ts +1 -1
- package/lib/Atoms/Inputs/TextInput/TextInput.types.d.ts +19 -5
- package/lib/Atoms/Inputs/utils.d.ts +1 -0
- package/lib/Atoms/Progress/CarouselIndicator/CarouselIndicator.d.ts +3 -0
- package/lib/Atoms/Progress/CarouselIndicator/CarouselIndicator.types.d.ts +18 -0
- package/lib/Atoms/Progress/ProgressBar/ProgressBar.d.ts +1 -1
- package/lib/Atoms/Progress/ProgressBar/ProgressBar.types.d.ts +2 -0
- package/lib/Base/FlagIcon/FlagIcon.d.ts +3 -0
- package/lib/Base/FlagIcon/FlagIcon.types.d.ts +6 -0
- package/lib/Base/FlagIcon/icons/index.d.ts +164 -0
- package/lib/Base/Icon/icons/index.d.ts +48 -0
- package/lib/Base/Icon/icons/outline/16x16/index.d.ts +6 -0
- package/lib/Base/Icon/icons/outline/24x24/index.d.ts +12 -0
- package/lib/Base/Icon/icons/outline/32x32/index.d.ts +30 -0
- package/lib/Base/Icon/icons/outline/index.d.ts +48 -0
- package/lib/Base/Typography/Typography.types.d.ts +1 -0
- package/lib/Molecules/Card/CardHeader/CardHeader.types.d.ts +1 -1
- package/lib/Molecules/Notices/EmptyState/EmptyState.types.d.ts +4 -1
- package/lib/Molecules/Notices/Snackbar/Snackbar.d.ts +1 -1
- package/lib/Molecules/Notices/Snackbar/Snackbar.types.d.ts +2 -0
- package/lib/Organisms/Modals/BottomSheet/BottomSheet.d.ts +1 -1
- package/lib/Organisms/Modals/BottomSheet/BottomSheet.types.d.ts +1 -0
- package/lib/Organisms/Modals/Sheet/Sheet.d.ts +1 -1
- package/lib/Organisms/Modals/Sheet/Sheet.types.d.ts +19 -9
- package/package.json +1 -1
- package/style.css +1 -1
- package/styles/_media.scss +4 -2
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { AccordionItemProps } from './AccordionItem.types';
|
|
2
|
-
declare const AccordionItem: ({ accordionBtnClassName, accordionPanelClassName, children, id, size, title, }: AccordionItemProps) => import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
declare const AccordionItem: ({ accordionBtnClassName, accordionPanelClassName, children, handleClick, hideBorder, id, opened, size, title, }: AccordionItemProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
3
|
export default AccordionItem;
|
|
@@ -3,7 +3,10 @@ export type AccordionItemProps = {
|
|
|
3
3
|
accordionBtnClassName?: string;
|
|
4
4
|
accordionPanelClassName?: string;
|
|
5
5
|
children: ReactNode;
|
|
6
|
+
handleClick?: () => void;
|
|
7
|
+
hideBorder?: boolean;
|
|
6
8
|
id: number | string;
|
|
9
|
+
opened?: boolean;
|
|
7
10
|
size?: 'small' | 'large';
|
|
8
11
|
title: string;
|
|
9
12
|
};
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { StickerProps } from './Sticker.types';
|
|
2
|
-
declare const Sticker: ({ color, icon, size }: StickerProps) => import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
declare const Sticker: ({ className, color, icon, size, value }: StickerProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
3
|
export default Sticker;
|
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
import { Icon32 } from '../../../Base/Icon/Icon.types';
|
|
2
|
-
export
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
export type StickerProps = {
|
|
3
|
+
className?: string;
|
|
4
|
+
color: 'green' | 'pink' | 'lavender' | 'teal' | 'orange' | 'grey' | 'lightGrey' | 'darkGrey';
|
|
5
5
|
size: 'small' | 'medium' | 'large';
|
|
6
|
-
}
|
|
6
|
+
} & ({
|
|
7
|
+
icon?: never;
|
|
8
|
+
value: number;
|
|
9
|
+
} | {
|
|
10
|
+
icon: Icon32;
|
|
11
|
+
value?: never;
|
|
12
|
+
});
|
|
@@ -2,5 +2,5 @@ import { ReactNode } from 'react';
|
|
|
2
2
|
import { ButtonProps, ButtonVariationProps } from '../Button/Button.types';
|
|
3
3
|
export interface ButtonTertiaryProps extends ButtonVariationProps, Omit<ButtonProps, 'children'> {
|
|
4
4
|
children?: ReactNode;
|
|
5
|
-
color?: 'green' | 'pink' | 'blue' | '
|
|
5
|
+
color?: 'green' | 'pink' | 'blue' | 'greySubtle' | 'greyStrong';
|
|
6
6
|
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { ButtonProps } from '../Button/Button.types';
|
|
2
|
+
declare const CarouselNavigation: import('react').ForwardRefExoticComponent<Omit<ButtonProps, "children" | "className" | "ref"> & {
|
|
3
|
+
direction: "left" | "right";
|
|
4
|
+
} & import('react').RefAttributes<HTMLButtonElement>>;
|
|
5
|
+
export default CarouselNavigation;
|
|
@@ -6,5 +6,5 @@ export declare const typographyType: {
|
|
|
6
6
|
small: string;
|
|
7
7
|
tiny: string;
|
|
8
8
|
};
|
|
9
|
-
export declare function TextButton({ className, color, disabled, leftIcon, rightIcon, size, text, ...props }: TextButtonProps): import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export declare function TextButton({ className, color, disabled, inline, leftIcon, rightIcon, size, text, ...props }: TextButtonProps): import("react/jsx-runtime").JSX.Element;
|
|
10
10
|
export default TextButton;
|
|
@@ -4,7 +4,8 @@ import { NotificationBubbleProps } from '../../NotificationBubble/NotificationBu
|
|
|
4
4
|
import { ButtonProps } from '../Button/Button.types';
|
|
5
5
|
export interface TextButtonProps extends Omit<ButtonProps, 'role' | 'className'> {
|
|
6
6
|
className?: string;
|
|
7
|
-
color: 'green' | 'blue' | 'deepPurple' | 'pinkLight' | 'pinkDark';
|
|
7
|
+
color: 'green' | 'blue' | 'deepPurple' | 'pinkLight' | 'pinkDark' | 'default';
|
|
8
|
+
inline?: boolean;
|
|
8
9
|
leftIcon?: ReactElement<IconProps | NotificationBubbleProps>;
|
|
9
10
|
rightIcon?: ReactElement<IconProps | NotificationBubbleProps>;
|
|
10
11
|
size: 'large' | 'medium' | 'small' | 'link' | 'tiny';
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { ContentCreatorTileProps } from './ContentCreatorTile.types';
|
|
2
|
+
declare const ContentCreatorTile: ({ description, headline, isActive, isPending, onClick, selected, sticker, }: ContentCreatorTileProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
export default ContentCreatorTile;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { StickerProps } from '../../../Badges/Sticker/Sticker.types';
|
|
2
|
+
import { BaseButtonProps } from '../../Button/Button.types';
|
|
3
|
+
export interface ContentCreatorTileProps {
|
|
4
|
+
description?: string;
|
|
5
|
+
headline: string;
|
|
6
|
+
isActive: boolean;
|
|
7
|
+
isPending?: boolean;
|
|
8
|
+
onClick?: BaseButtonProps['onClick'];
|
|
9
|
+
selected?: boolean;
|
|
10
|
+
sticker: StickerProps;
|
|
11
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const GalleryPlaceholder: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { StickerProps } from '../../Badges/Sticker/Sticker.types';
|
|
2
|
+
export type ListProps = {
|
|
3
|
+
className?: string;
|
|
4
|
+
items: ListItemProps[];
|
|
5
|
+
};
|
|
6
|
+
type AllowedTitleAs = 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
|
|
7
|
+
export type ListItemProps = {
|
|
8
|
+
size: 'medium' | 'large';
|
|
9
|
+
} & Omit<StickerProps, 'className'> & ({
|
|
10
|
+
text: string;
|
|
11
|
+
title?: undefined;
|
|
12
|
+
titleAs?: never;
|
|
13
|
+
} | {
|
|
14
|
+
text?: undefined;
|
|
15
|
+
title: string;
|
|
16
|
+
titleAs?: AllowedTitleAs;
|
|
17
|
+
} | {
|
|
18
|
+
text: string;
|
|
19
|
+
title: string;
|
|
20
|
+
titleAs?: AllowedTitleAs;
|
|
21
|
+
});
|
|
22
|
+
export {};
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { PoiAvatarType } from './PoiAvatar.type';
|
|
2
|
-
export declare const PoiAvatar: ({ size, type }: PoiAvatarType) => import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
export declare const PoiAvatar: ({ alt, imageSrc, size, type }: PoiAvatarType) => import("react/jsx-runtime").JSX.Element;
|
|
3
3
|
export default PoiAvatar;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
export declare const poiAvatarSizes: readonly ["48", "56", "64", "80"];
|
|
2
2
|
export type TSize = (typeof poiAvatarSizes)[number];
|
|
3
3
|
export interface PoiAvatarType {
|
|
4
|
+
alt?: string;
|
|
5
|
+
imageSrc?: string;
|
|
4
6
|
size: TSize;
|
|
5
7
|
type: 'business' | 'special_place' | 'organisation';
|
|
6
8
|
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { ThumbnailCircularProps, ThumbnailSquareProps } from './Thumbnail.type';
|
|
2
|
-
declare const Thumbnail: ({ alt, className, isPlaceholder, shape, size, src, }: ThumbnailCircularProps | ThumbnailSquareProps) => import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
declare const Thumbnail: ({ alt, children, className, isPlaceholder, outline, shape, size, src, }: ThumbnailCircularProps | ThumbnailSquareProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
3
|
export default Thumbnail;
|
|
@@ -1,17 +1,22 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
1
2
|
import { ImageProps } from '../../Image/Image.type';
|
|
2
|
-
export interface ThumbnailProps extends ImageProps {
|
|
3
|
+
export interface ThumbnailProps extends Omit<ImageProps, 'src'> {
|
|
4
|
+
children?: ReactNode;
|
|
3
5
|
className?: string;
|
|
4
6
|
isPlaceholder?: boolean;
|
|
7
|
+
src?: string;
|
|
5
8
|
}
|
|
6
9
|
export declare const circularSizes: readonly ["28", "32", "40", "48", "56", "64", "80", "120", "280"];
|
|
7
10
|
export declare const squareSizes: readonly ["24", "32", "40", "48", "56", "64", "80", "96", "120"];
|
|
8
11
|
export type TCircularSize = (typeof circularSizes)[number];
|
|
9
12
|
export type TSquareSize = (typeof squareSizes)[number];
|
|
10
13
|
export interface ThumbnailCircularProps extends ThumbnailProps {
|
|
14
|
+
outline?: never;
|
|
11
15
|
shape: 'circular';
|
|
12
16
|
size: TCircularSize;
|
|
13
17
|
}
|
|
14
18
|
export interface ThumbnailSquareProps extends ThumbnailProps {
|
|
19
|
+
outline?: 'none' | 'highlight';
|
|
15
20
|
shape: 'square';
|
|
16
21
|
size: TSquareSize;
|
|
17
22
|
}
|
|
@@ -6,12 +6,12 @@ type BaseUserAvatarProps = {
|
|
|
6
6
|
userImageSrc?: string;
|
|
7
7
|
};
|
|
8
8
|
type UserIdMandatory = BaseUserAvatarProps & {
|
|
9
|
-
avatarColor?:
|
|
9
|
+
avatarColor?: never;
|
|
10
10
|
userId: number;
|
|
11
11
|
};
|
|
12
12
|
type AvatarColorMandatory = BaseUserAvatarProps & {
|
|
13
13
|
avatarColor: AvatarColor;
|
|
14
|
-
userId?:
|
|
14
|
+
userId?: never;
|
|
15
15
|
};
|
|
16
16
|
export type UserAvatarProps = UserIdMandatory | AvatarColorMandatory;
|
|
17
17
|
export {};
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { ImageProps } from './Image.type';
|
|
2
|
-
declare const Image: ({ alt, className, src }: ImageProps) => import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
declare const Image: ({ alt, className, height, loading, src, width }: ImageProps) => import("react/jsx-runtime").JSX.Element | null;
|
|
3
3
|
export default Image;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { TextAreaInputProps } from './TextAreaInput.types';
|
|
2
|
-
declare const TextAreaInput: ({ ariaDescribedby, attachment, charLimit, colorScheme, errorText, hintText, id, label, name, ref, showInputHints, size, ...props }: TextAreaInputProps) => import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
declare const TextAreaInput: ({ ariaDescribedby, attachment, charLimit, colorScheme, errorText, hintText, id, label, limitCharInput, name, ref, showInputHints, size, ...props }: TextAreaInputProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
3
|
export default TextAreaInput;
|
|
@@ -2,5 +2,6 @@ import { IconButtonIcon24Props } from '../../Buttons/IconButton/IconButton.types
|
|
|
2
2
|
import { CommonTextInputProps } from '../TextInput/TextInput.types';
|
|
3
3
|
export interface TextAreaInputProps extends CommonTextInputProps {
|
|
4
4
|
attachment?: Pick<IconButtonIcon24Props, 'icon' | 'onClick' | 'ariaLabel' | 'disabled'>[];
|
|
5
|
+
ref?: React.RefObject<HTMLTextAreaElement>;
|
|
5
6
|
size: 'medium' | 'large';
|
|
6
7
|
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { TextInputProps } from './TextInput.types';
|
|
2
|
-
declare const TextInput: (
|
|
2
|
+
declare const TextInput: import('react').ForwardRefExoticComponent<TextInputProps & import('react').RefAttributes<HTMLInputElement>>;
|
|
3
3
|
export default TextInput;
|
|
@@ -1,30 +1,44 @@
|
|
|
1
1
|
import { UseInputParameters } from '@mui/base';
|
|
2
2
|
import { ForwardedRef, HTMLInputTypeAttribute, KeyboardEventHandler } from 'react';
|
|
3
|
+
import { CountryCode } from '../../../Base/FlagIcon/FlagIcon.types';
|
|
3
4
|
import { IconProps } from '../../../Base/Icon/Icon.types';
|
|
4
|
-
import { IconButtonIcon24Props } from '../../Buttons/IconButton/IconButton.types';
|
|
5
|
+
import { IconButtonIcon16Props, IconButtonIcon24Props } from '../../Buttons/IconButton/IconButton.types';
|
|
5
6
|
export interface CommonTextInputProps extends UseInputParameters {
|
|
7
|
+
ariaActivedescendant?: string;
|
|
8
|
+
ariaAutocomplete?: 'none' | 'inline' | 'list' | 'both' | undefined;
|
|
9
|
+
ariaControls?: string;
|
|
6
10
|
ariaDescribedby?: string;
|
|
7
11
|
ariaExpanded?: boolean;
|
|
12
|
+
autoFocus?: boolean;
|
|
13
|
+
autocomplete?: string;
|
|
8
14
|
charLimit?: number;
|
|
9
15
|
colorScheme?: 'outline' | 'filled';
|
|
10
16
|
errorText?: string;
|
|
11
17
|
hintText?: string;
|
|
12
18
|
id: string;
|
|
13
19
|
label: string;
|
|
20
|
+
limitCharInput?: boolean;
|
|
14
21
|
name?: string;
|
|
15
22
|
onKeyDown?: KeyboardEventHandler;
|
|
23
|
+
placeholder?: string;
|
|
24
|
+
progressBar?: React.ReactNode;
|
|
16
25
|
readonly?: boolean;
|
|
17
|
-
ref?: ForwardedRef<null>;
|
|
18
26
|
role?: 'combobox';
|
|
19
27
|
showInputHints?: boolean;
|
|
28
|
+
wrapperClassName?: string;
|
|
20
29
|
}
|
|
21
30
|
export interface TextInputProps extends CommonTextInputProps {
|
|
31
|
+
flagIcon?: CountryCode;
|
|
22
32
|
icon?: IconProps;
|
|
23
|
-
iconButton?: IconButtonIcon24Props & {
|
|
33
|
+
iconButton?: (IconButtonIcon24Props & {
|
|
24
34
|
ariaExpanded?: boolean;
|
|
25
35
|
ariaHaspopup?: boolean;
|
|
26
36
|
ref?: ForwardedRef<null>;
|
|
27
|
-
}
|
|
37
|
+
}) | (IconButtonIcon16Props & {
|
|
38
|
+
ariaExpanded?: boolean;
|
|
39
|
+
ariaHaspopup?: boolean;
|
|
40
|
+
ref?: ForwardedRef<null>;
|
|
41
|
+
});
|
|
28
42
|
inputFieldType?: HTMLInputTypeAttribute;
|
|
29
|
-
size
|
|
43
|
+
size?: 'medium' | 'large' | 'small';
|
|
30
44
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const getCharCount: (value?: string | number | readonly string[]) => number;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { CarouselIndicatorProps } from './CarouselIndicator.types';
|
|
2
|
+
export declare const CarouselIndicator: ({ currentStep, hasContainer, maxDots, onDotClick, totalSteps, type, }: CarouselIndicatorProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
export default CarouselIndicator;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
type BaseCarouselIndicatorProps = {
|
|
2
|
+
currentStep: number;
|
|
3
|
+
hasContainer?: boolean;
|
|
4
|
+
maxDots?: number;
|
|
5
|
+
onDotClick?: (index: number) => void;
|
|
6
|
+
totalSteps: number;
|
|
7
|
+
type: 'dots' | 'numbers';
|
|
8
|
+
};
|
|
9
|
+
export type CarouselIndicatorDotsProps = BaseCarouselIndicatorProps & {
|
|
10
|
+
maxDots: number;
|
|
11
|
+
onDotClick?: (index: number) => void;
|
|
12
|
+
type: 'dots';
|
|
13
|
+
};
|
|
14
|
+
export type CarouselIndicatorNumbersProps = BaseCarouselIndicatorProps & {
|
|
15
|
+
type: 'numbers';
|
|
16
|
+
};
|
|
17
|
+
export type CarouselIndicatorProps = CarouselIndicatorDotsProps | CarouselIndicatorNumbersProps;
|
|
18
|
+
export {};
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { ProgressBarProps } from './ProgressBar.types';
|
|
2
|
-
export declare const ProgressBar: ({ progress, steps }: ProgressBarProps) => import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
export declare const ProgressBar: ({ className, progress, steps, type, }: ProgressBarProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
3
|
export default ProgressBar;
|
|
@@ -0,0 +1,164 @@
|
|
|
1
|
+
export declare const IconMap: {
|
|
2
|
+
AT: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
desc?: string;
|
|
6
|
+
descId?: string;
|
|
7
|
+
}>;
|
|
8
|
+
BE: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
9
|
+
title?: string;
|
|
10
|
+
titleId?: string;
|
|
11
|
+
desc?: string;
|
|
12
|
+
descId?: string;
|
|
13
|
+
}>;
|
|
14
|
+
BG: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
15
|
+
title?: string;
|
|
16
|
+
titleId?: string;
|
|
17
|
+
desc?: string;
|
|
18
|
+
descId?: string;
|
|
19
|
+
}>;
|
|
20
|
+
CY: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
21
|
+
title?: string;
|
|
22
|
+
titleId?: string;
|
|
23
|
+
desc?: string;
|
|
24
|
+
descId?: string;
|
|
25
|
+
}>;
|
|
26
|
+
CZ: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
27
|
+
title?: string;
|
|
28
|
+
titleId?: string;
|
|
29
|
+
desc?: string;
|
|
30
|
+
descId?: string;
|
|
31
|
+
}>;
|
|
32
|
+
DE: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
33
|
+
title?: string;
|
|
34
|
+
titleId?: string;
|
|
35
|
+
desc?: string;
|
|
36
|
+
descId?: string;
|
|
37
|
+
}>;
|
|
38
|
+
DK: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
39
|
+
title?: string;
|
|
40
|
+
titleId?: string;
|
|
41
|
+
desc?: string;
|
|
42
|
+
descId?: string;
|
|
43
|
+
}>;
|
|
44
|
+
EE: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
45
|
+
title?: string;
|
|
46
|
+
titleId?: string;
|
|
47
|
+
desc?: string;
|
|
48
|
+
descId?: string;
|
|
49
|
+
}>;
|
|
50
|
+
ES: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
51
|
+
title?: string;
|
|
52
|
+
titleId?: string;
|
|
53
|
+
desc?: string;
|
|
54
|
+
descId?: string;
|
|
55
|
+
}>;
|
|
56
|
+
FI: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
57
|
+
title?: string;
|
|
58
|
+
titleId?: string;
|
|
59
|
+
desc?: string;
|
|
60
|
+
descId?: string;
|
|
61
|
+
}>;
|
|
62
|
+
FR: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
63
|
+
title?: string;
|
|
64
|
+
titleId?: string;
|
|
65
|
+
desc?: string;
|
|
66
|
+
descId?: string;
|
|
67
|
+
}>;
|
|
68
|
+
GR: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
69
|
+
title?: string;
|
|
70
|
+
titleId?: string;
|
|
71
|
+
desc?: string;
|
|
72
|
+
descId?: string;
|
|
73
|
+
}>;
|
|
74
|
+
HR: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
75
|
+
title?: string;
|
|
76
|
+
titleId?: string;
|
|
77
|
+
desc?: string;
|
|
78
|
+
descId?: string;
|
|
79
|
+
}>;
|
|
80
|
+
HU: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
81
|
+
title?: string;
|
|
82
|
+
titleId?: string;
|
|
83
|
+
desc?: string;
|
|
84
|
+
descId?: string;
|
|
85
|
+
}>;
|
|
86
|
+
IE: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
87
|
+
title?: string;
|
|
88
|
+
titleId?: string;
|
|
89
|
+
desc?: string;
|
|
90
|
+
descId?: string;
|
|
91
|
+
}>;
|
|
92
|
+
IT: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
93
|
+
title?: string;
|
|
94
|
+
titleId?: string;
|
|
95
|
+
desc?: string;
|
|
96
|
+
descId?: string;
|
|
97
|
+
}>;
|
|
98
|
+
LT: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
99
|
+
title?: string;
|
|
100
|
+
titleId?: string;
|
|
101
|
+
desc?: string;
|
|
102
|
+
descId?: string;
|
|
103
|
+
}>;
|
|
104
|
+
LU: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
105
|
+
title?: string;
|
|
106
|
+
titleId?: string;
|
|
107
|
+
desc?: string;
|
|
108
|
+
descId?: string;
|
|
109
|
+
}>;
|
|
110
|
+
LV: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
111
|
+
title?: string;
|
|
112
|
+
titleId?: string;
|
|
113
|
+
desc?: string;
|
|
114
|
+
descId?: string;
|
|
115
|
+
}>;
|
|
116
|
+
MT: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
117
|
+
title?: string;
|
|
118
|
+
titleId?: string;
|
|
119
|
+
desc?: string;
|
|
120
|
+
descId?: string;
|
|
121
|
+
}>;
|
|
122
|
+
NL: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
123
|
+
title?: string;
|
|
124
|
+
titleId?: string;
|
|
125
|
+
desc?: string;
|
|
126
|
+
descId?: string;
|
|
127
|
+
}>;
|
|
128
|
+
PL: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
129
|
+
title?: string;
|
|
130
|
+
titleId?: string;
|
|
131
|
+
desc?: string;
|
|
132
|
+
descId?: string;
|
|
133
|
+
}>;
|
|
134
|
+
PT: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
135
|
+
title?: string;
|
|
136
|
+
titleId?: string;
|
|
137
|
+
desc?: string;
|
|
138
|
+
descId?: string;
|
|
139
|
+
}>;
|
|
140
|
+
RO: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
141
|
+
title?: string;
|
|
142
|
+
titleId?: string;
|
|
143
|
+
desc?: string;
|
|
144
|
+
descId?: string;
|
|
145
|
+
}>;
|
|
146
|
+
SE: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
147
|
+
title?: string;
|
|
148
|
+
titleId?: string;
|
|
149
|
+
desc?: string;
|
|
150
|
+
descId?: string;
|
|
151
|
+
}>;
|
|
152
|
+
SI: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
153
|
+
title?: string;
|
|
154
|
+
titleId?: string;
|
|
155
|
+
desc?: string;
|
|
156
|
+
descId?: string;
|
|
157
|
+
}>;
|
|
158
|
+
SK: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
159
|
+
title?: string;
|
|
160
|
+
titleId?: string;
|
|
161
|
+
desc?: string;
|
|
162
|
+
descId?: string;
|
|
163
|
+
}>;
|
|
164
|
+
};
|
|
@@ -111,6 +111,12 @@ declare const iconsMap: {
|
|
|
111
111
|
desc?: string;
|
|
112
112
|
descId?: string;
|
|
113
113
|
}>;
|
|
114
|
+
cursor: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
115
|
+
title?: string;
|
|
116
|
+
titleId?: string;
|
|
117
|
+
desc?: string;
|
|
118
|
+
descId?: string;
|
|
119
|
+
}>;
|
|
114
120
|
external_link: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
115
121
|
title?: string;
|
|
116
122
|
titleId?: string;
|
|
@@ -251,6 +257,12 @@ declare const iconsMap: {
|
|
|
251
257
|
desc?: string;
|
|
252
258
|
descId?: string;
|
|
253
259
|
}>;
|
|
260
|
+
readonly cursor: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
261
|
+
title?: string;
|
|
262
|
+
titleId?: string;
|
|
263
|
+
desc?: string;
|
|
264
|
+
descId?: string;
|
|
265
|
+
}>;
|
|
254
266
|
readonly emoji: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
255
267
|
title?: string;
|
|
256
268
|
titleId?: string;
|
|
@@ -389,6 +401,12 @@ declare const iconsMap: {
|
|
|
389
401
|
desc?: string;
|
|
390
402
|
descId?: string;
|
|
391
403
|
}>;
|
|
404
|
+
readonly photo_upload: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
405
|
+
title?: string;
|
|
406
|
+
titleId?: string;
|
|
407
|
+
desc?: string;
|
|
408
|
+
descId?: string;
|
|
409
|
+
}>;
|
|
392
410
|
readonly pin: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
393
411
|
title?: string;
|
|
394
412
|
titleId?: string;
|
|
@@ -571,6 +589,12 @@ declare const iconsMap: {
|
|
|
571
589
|
desc?: string;
|
|
572
590
|
descId?: string;
|
|
573
591
|
}>;
|
|
592
|
+
readonly checkmark: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
593
|
+
title?: string;
|
|
594
|
+
titleId?: string;
|
|
595
|
+
desc?: string;
|
|
596
|
+
descId?: string;
|
|
597
|
+
}>;
|
|
574
598
|
readonly christmas_tree: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
575
599
|
title?: string;
|
|
576
600
|
titleId?: string;
|
|
@@ -643,6 +667,18 @@ declare const iconsMap: {
|
|
|
643
667
|
desc?: string;
|
|
644
668
|
descId?: string;
|
|
645
669
|
}>;
|
|
670
|
+
readonly cursor: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
671
|
+
title?: string;
|
|
672
|
+
titleId?: string;
|
|
673
|
+
desc?: string;
|
|
674
|
+
descId?: string;
|
|
675
|
+
}>;
|
|
676
|
+
readonly cursor_alt: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
677
|
+
title?: string;
|
|
678
|
+
titleId?: string;
|
|
679
|
+
desc?: string;
|
|
680
|
+
descId?: string;
|
|
681
|
+
}>;
|
|
646
682
|
readonly cutlery: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
647
683
|
title?: string;
|
|
648
684
|
titleId?: string;
|
|
@@ -949,6 +985,18 @@ declare const iconsMap: {
|
|
|
949
985
|
desc?: string;
|
|
950
986
|
descId?: string;
|
|
951
987
|
}>;
|
|
988
|
+
readonly percentage: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
989
|
+
title?: string;
|
|
990
|
+
titleId?: string;
|
|
991
|
+
desc?: string;
|
|
992
|
+
descId?: string;
|
|
993
|
+
}>;
|
|
994
|
+
readonly percentage_alt: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
995
|
+
title?: string;
|
|
996
|
+
titleId?: string;
|
|
997
|
+
desc?: string;
|
|
998
|
+
descId?: string;
|
|
999
|
+
}>;
|
|
952
1000
|
readonly phone: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
953
1001
|
title?: string;
|
|
954
1002
|
titleId?: string;
|
|
@@ -23,6 +23,12 @@ declare const IconsMap: {
|
|
|
23
23
|
desc?: string;
|
|
24
24
|
descId?: string;
|
|
25
25
|
}>;
|
|
26
|
+
cursor: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
27
|
+
title?: string;
|
|
28
|
+
titleId?: string;
|
|
29
|
+
desc?: string;
|
|
30
|
+
descId?: string;
|
|
31
|
+
}>;
|
|
26
32
|
external_link: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
27
33
|
title?: string;
|
|
28
34
|
titleId?: string;
|