@goodhood-web/ui 3.0.0-development.4 → 3.0.0-development.6
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.js +7 -7
- package/index.mjs +1129 -1118
- package/lib/Atoms/Buttons/Button/Button.types.d.ts +1 -0
- package/lib/Atoms/Buttons/Tiles/FeedTile/FeedTile.d.ts +1 -1
- package/lib/Atoms/Buttons/Tiles/FeedTile/FeedTile.types.d.ts +1 -0
- package/lib/Atoms/Buttons/Tiles/MenuTile/MenuTile.d.ts +1 -1
- package/lib/Atoms/Buttons/Tiles/MenuTile/MenuTile.type.d.ts +1 -0
- package/lib/Base/Icon/icons/index.d.ts +6 -0
- package/lib/Base/Icon/icons/outline/24x24/index.d.ts +6 -0
- package/lib/Base/Icon/icons/outline/index.d.ts +6 -0
- package/package.json +1 -1
- package/style.css +1 -1
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { default as FeedTileProps } from './FeedTile.types';
|
|
2
|
-
declare const FeedTile: ({ fullWidth, icon, onClick, text }: FeedTileProps) => import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
declare const FeedTile: ({ ariaLabel, fullWidth, icon, onClick, text }: FeedTileProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
3
|
export default FeedTile;
|
|
@@ -2,6 +2,7 @@ import { ReactNode } from 'react';
|
|
|
2
2
|
import { Icon32 } from '../../../../Base/Icon/Icon.types';
|
|
3
3
|
import { BaseButtonProps } from '../../../Buttons/Button/Button.types';
|
|
4
4
|
export default interface FeedTileProps {
|
|
5
|
+
ariaLabel?: string;
|
|
5
6
|
fullWidth?: boolean;
|
|
6
7
|
icon: Icon32;
|
|
7
8
|
onClick?: BaseButtonProps['onClick'];
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { default as MenuTileProps } from './MenuTile.type';
|
|
2
|
-
declare const MenuTile: ({ fullWidth, icon, primaryText, secondaryText, ...props }: MenuTileProps) => import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
declare const MenuTile: ({ ariaLabel, fullWidth, icon, primaryText, secondaryText, ...props }: MenuTileProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
3
|
export default MenuTile;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Icon32 } from '../../../../Base/Icon/Icon.types';
|
|
2
2
|
import { ButtonProps } from '../../Button/Button.types';
|
|
3
3
|
export default interface MenuTileProps extends Omit<ButtonProps, 'children'> {
|
|
4
|
+
ariaLabel?: string;
|
|
4
5
|
fullWidth?: boolean;
|
|
5
6
|
icon?: Icon32;
|
|
6
7
|
primaryText?: string;
|
|
@@ -197,6 +197,12 @@ declare const iconsMap: {
|
|
|
197
197
|
desc?: string;
|
|
198
198
|
descId?: string;
|
|
199
199
|
}>;
|
|
200
|
+
readonly clock: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
201
|
+
title?: string;
|
|
202
|
+
titleId?: string;
|
|
203
|
+
desc?: string;
|
|
204
|
+
descId?: string;
|
|
205
|
+
}>;
|
|
200
206
|
readonly comment_bubble: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
201
207
|
title?: string;
|
|
202
208
|
titleId?: string;
|
|
@@ -71,6 +71,12 @@ declare const IconsMap: {
|
|
|
71
71
|
desc?: string;
|
|
72
72
|
descId?: string;
|
|
73
73
|
}>;
|
|
74
|
+
readonly clock: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
75
|
+
title?: string;
|
|
76
|
+
titleId?: string;
|
|
77
|
+
desc?: string;
|
|
78
|
+
descId?: string;
|
|
79
|
+
}>;
|
|
74
80
|
readonly comment_bubble: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
75
81
|
title?: string;
|
|
76
82
|
titleId?: string;
|
|
@@ -110,6 +110,12 @@ declare const iconsMap: {
|
|
|
110
110
|
desc?: string;
|
|
111
111
|
descId?: string;
|
|
112
112
|
}>;
|
|
113
|
+
readonly clock: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
114
|
+
title?: string;
|
|
115
|
+
titleId?: string;
|
|
116
|
+
desc?: string;
|
|
117
|
+
descId?: string;
|
|
118
|
+
}>;
|
|
113
119
|
readonly comment_bubble: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
114
120
|
title?: string;
|
|
115
121
|
titleId?: string;
|