@goodhood-web/ui 1.8.0-development.4 → 1.8.0-development.5

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.
@@ -1,4 +1,4 @@
1
1
  import { AccordionItemProps } from './AccordionItem.types';
2
2
 
3
- declare const AccordionItem: ({ accordionBtnClassName, accordionPanelClassName, children, id, size, title, }: AccordionItemProps) => import("react/jsx-runtime").JSX.Element;
3
+ declare const AccordionItem: ({ accordionBtnClassName, accordionPanelClassName, children, id, size, title, titleTypographyType, }: AccordionItemProps) => import("react/jsx-runtime").JSX.Element;
4
4
  export default AccordionItem;
@@ -1,4 +1,5 @@
1
1
  import { ReactNode } from 'react';
2
+ import { TypographyType } from '../Typography/Typography.types';
2
3
 
3
4
  export type AccordionItemProps = {
4
5
  accordionBtnClassName?: string;
@@ -7,4 +8,5 @@ export type AccordionItemProps = {
7
8
  id: number | string;
8
9
  size?: 'small' | 'large';
9
10
  title: string;
11
+ titleTypographyType?: TypographyType;
10
12
  };
@@ -147,6 +147,9 @@ declare const IconsMap: {
147
147
  readonly info: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
148
148
  title?: string | undefined;
149
149
  }>;
150
+ readonly info_left: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
151
+ title?: string | undefined;
152
+ }>;
150
153
  readonly invite_neighbour: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
151
154
  title?: string | undefined;
152
155
  }>;
@@ -291,6 +291,9 @@ declare const iconsMap: {
291
291
  readonly info: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
292
292
  title?: string | undefined;
293
293
  }>;
294
+ readonly info_left: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
295
+ title?: string | undefined;
296
+ }>;
294
297
  readonly invite_neighbour: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
295
298
  title?: string | undefined;
296
299
  }>;
@@ -1,4 +1,4 @@
1
1
  import { MenuItemProps } from './MenuItem.types';
2
2
 
3
- declare const MenuItem: ({ className: passedClassName, href, isSelected, labelPillText, leftIcon, onClick, rightIcon, role, text, }: MenuItemProps) => import("react/jsx-runtime").JSX.Element;
3
+ declare const MenuItem: ({ className: passedClassName, href, isSelected, labelPillClassName, labelPillText, leftIcon, onClick, rightIcon, role, text, }: MenuItemProps) => import("react/jsx-runtime").JSX.Element;
4
4
  export default MenuItem;
@@ -5,6 +5,7 @@ export interface MenuItemProps {
5
5
  className?: string;
6
6
  href?: string;
7
7
  isSelected?: boolean;
8
+ labelPillClassName?: string;
8
9
  labelPillText?: string;
9
10
  leftIcon: ReactNode;
10
11
  onClick?: ButtonProps['onClick'];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goodhood-web/ui",
3
- "version": "1.8.0-development.4",
3
+ "version": "1.8.0-development.5",
4
4
  "main": "./index.js",
5
5
  "types": "./index.d.ts",
6
6
  "exports": {