@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.
- package/index.js +18 -18
- package/index.mjs +402 -399
- package/lib/Accordion/AccordionItem.d.ts +1 -1
- package/lib/Accordion/AccordionItem.types.d.ts +2 -0
- package/lib/Icon/icons/32x32/index.d.ts +3 -0
- package/lib/Icon/icons/index.d.ts +3 -0
- package/lib/MenuItem/MenuItem.d.ts +1 -1
- package/lib/MenuItem/MenuItem.types.d.ts +1 -0
- package/package.json +1 -1
|
@@ -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;
|