@goodhood-web/ui 1.8.0-development.21 → 1.8.0-development.23
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 +169 -65
- package/index.mjs +15993 -6147
- package/lib/BodyText/util.d.ts +1 -1
- package/lib/Icon/icons/32x32/index.d.ts +4 -1
- package/lib/Icon/icons/index.d.ts +4 -1
- package/lib/TextButton/TextButton.d.ts +1 -1
- package/lib/TextButton/TextButton.types.d.ts +1 -0
- package/package.json +1 -1
- package/style.css +1 -1
package/lib/BodyText/util.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const parseText: (text: string, regEx: RegExp) =>
|
|
1
|
+
export declare const parseText: (text: string | undefined, regEx: RegExp) => string[] | null;
|
|
@@ -108,6 +108,9 @@ declare const IconsMap: {
|
|
|
108
108
|
readonly event_calendar_plus: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
109
109
|
title?: string | undefined;
|
|
110
110
|
}>;
|
|
111
|
+
readonly event_calendar_plus_filled: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
112
|
+
title?: string | undefined;
|
|
113
|
+
}>;
|
|
111
114
|
readonly exchange: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
112
115
|
title?: string | undefined;
|
|
113
116
|
}>;
|
|
@@ -141,7 +144,7 @@ declare const IconsMap: {
|
|
|
141
144
|
readonly heart_filled: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
142
145
|
title?: string | undefined;
|
|
143
146
|
}>;
|
|
144
|
-
readonly
|
|
147
|
+
readonly heart_handshake_filled: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
145
148
|
title?: string | undefined;
|
|
146
149
|
}>;
|
|
147
150
|
readonly heart_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
@@ -255,6 +255,9 @@ declare const iconsMap: {
|
|
|
255
255
|
readonly event_calendar_plus: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
256
256
|
title?: string | undefined;
|
|
257
257
|
}>;
|
|
258
|
+
readonly event_calendar_plus_filled: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
259
|
+
title?: string | undefined;
|
|
260
|
+
}>;
|
|
258
261
|
readonly exchange: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
259
262
|
title?: string | undefined;
|
|
260
263
|
}>;
|
|
@@ -288,7 +291,7 @@ declare const iconsMap: {
|
|
|
288
291
|
readonly heart_filled: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
289
292
|
title?: string | undefined;
|
|
290
293
|
}>;
|
|
291
|
-
readonly
|
|
294
|
+
readonly heart_handshake_filled: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
292
295
|
title?: string | undefined;
|
|
293
296
|
}>;
|
|
294
297
|
readonly heart_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
@@ -5,5 +5,5 @@ export declare const typographyType: {
|
|
|
5
5
|
medium: string;
|
|
6
6
|
small: string;
|
|
7
7
|
};
|
|
8
|
-
export declare function TextButton({ color, disabled, leftIcon, rightIcon, size, text, ...props }: TextButtonProps): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export declare function TextButton({ className, color, disabled, leftIcon, rightIcon, size, text, ...props }: TextButtonProps): import("react/jsx-runtime").JSX.Element;
|
|
9
9
|
export default TextButton;
|
|
@@ -4,6 +4,7 @@ import { IconProps } from '../Icon/Icon.types';
|
|
|
4
4
|
import { NotificationBubbleProps } from '../NotificationBubble/NotificationBubble.types';
|
|
5
5
|
|
|
6
6
|
export interface TextButtonProps extends Omit<ButtonProps, 'role' | 'className'> {
|
|
7
|
+
className?: string;
|
|
7
8
|
color: 'green' | 'blue' | 'deepPurple';
|
|
8
9
|
leftIcon?: ReactElement<IconProps | NotificationBubbleProps>;
|
|
9
10
|
rightIcon?: ReactElement<IconProps | NotificationBubbleProps>;
|