@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.
@@ -8,6 +8,7 @@ interface CommonProps {
8
8
  className?: string;
9
9
  'data-testid'?: string;
10
10
  disabled?: boolean;
11
+ isToggleButton?: boolean;
11
12
  ref?: ForwardedRef<null>;
12
13
  role?: AriaRole;
13
14
  selected?: boolean;
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goodhood-web/ui",
3
- "version": "3.0.0-development.4",
3
+ "version": "3.0.0-development.6",
4
4
  "main": "./index.js",
5
5
  "types": "./index.d.ts",
6
6
  "repository": "https://github.com/good-hood-gmbh/goodhood-web",