@goodhood-web/ui 4.5.0-development.5 → 4.5.0-development.7

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.
@@ -12,6 +12,6 @@ export type RadioButtonSpecialProps = Pick<InputHTMLAttributes<HTMLInputElement>
12
12
  text?: never;
13
13
  } | {
14
14
  pill?: string;
15
- size: 'medium';
15
+ size: 'medium' | 'small';
16
16
  text?: string;
17
17
  });
@@ -215,6 +215,12 @@ declare const iconsMap: {
215
215
  desc?: string;
216
216
  descId?: string;
217
217
  }>;
218
+ rocket_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
219
+ title?: string;
220
+ titleId?: string;
221
+ desc?: string;
222
+ descId?: string;
223
+ }>;
218
224
  rotate: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
219
225
  title?: string;
220
226
  titleId?: string;
@@ -529,6 +535,12 @@ declare const iconsMap: {
529
535
  desc?: string;
530
536
  descId?: string;
531
537
  }>;
538
+ readonly rocket_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
539
+ title?: string;
540
+ titleId?: string;
541
+ desc?: string;
542
+ descId?: string;
543
+ }>;
532
544
  readonly search: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
533
545
  title?: string;
534
546
  titleId?: string;
@@ -77,6 +77,12 @@ declare const IconsMap: {
77
77
  desc?: string;
78
78
  descId?: string;
79
79
  }>;
80
+ rocket_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
81
+ title?: string;
82
+ titleId?: string;
83
+ desc?: string;
84
+ descId?: string;
85
+ }>;
80
86
  rotate: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
81
87
  title?: string;
82
88
  titleId?: string;
@@ -299,6 +299,12 @@ declare const IconsMap: {
299
299
  desc?: string;
300
300
  descId?: string;
301
301
  }>;
302
+ readonly rocket_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
303
+ title?: string;
304
+ titleId?: string;
305
+ desc?: string;
306
+ descId?: string;
307
+ }>;
302
308
  readonly search: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
303
309
  title?: string;
304
310
  titleId?: string;
@@ -78,6 +78,12 @@ declare const iconsMap: {
78
78
  desc?: string;
79
79
  descId?: string;
80
80
  }>;
81
+ rocket_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
82
+ title?: string;
83
+ titleId?: string;
84
+ desc?: string;
85
+ descId?: string;
86
+ }>;
81
87
  rotate: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
82
88
  title?: string;
83
89
  titleId?: string;
@@ -392,6 +398,12 @@ declare const iconsMap: {
392
398
  desc?: string;
393
399
  descId?: string;
394
400
  }>;
401
+ readonly rocket_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
402
+ title?: string;
403
+ titleId?: string;
404
+ desc?: string;
405
+ descId?: string;
406
+ }>;
395
407
  readonly search: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
396
408
  title?: string;
397
409
  titleId?: string;
@@ -1,3 +1,3 @@
1
1
  import { NoticeInfoProps, NoticeWarningProps } from './Notice.types';
2
- declare const Notice: ({ bodyText, color, context, cta, dismissible, headline, icon, markdown, notificationBubble, onDismiss, size, type, variant, }: NoticeWarningProps | NoticeInfoProps) => import("react/jsx-runtime").JSX.Element;
2
+ declare const Notice: ({ bodyText, className, color, context, cta, dismissible, headline, icon, markdown, notificationBubble, onDismiss, size, type, variant, }: NoticeWarningProps | NoticeInfoProps) => import("react/jsx-runtime").JSX.Element;
3
3
  export default Notice;
@@ -4,6 +4,7 @@ import { NotificationBubbleProps } from '../../../Atoms/NotificationBubble/Notif
4
4
  import { Icon24, Icon32 } from '../../../Base/Icon/Icon.types';
5
5
  interface NoticePropsBase {
6
6
  bodyText?: string;
7
+ className?: string;
7
8
  cta?: {
8
9
  color?: TextButtonProps['color'];
9
10
  onClick: TextButtonProps['onClick'];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goodhood-web/ui",
3
- "version": "4.5.0-development.5",
3
+ "version": "4.5.0-development.7",
4
4
  "main": "./index.js",
5
5
  "types": "./index.d.ts",
6
6
  "repository": "https://github.com/good-hood-gmbh/goodhood-web",