@goodhood-web/ui 4.14.0-development.3 → 4.14.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 +32 -32
- package/index.mjs +2048 -2048
- package/lib/Base/Icon/icons/index.d.ts +6 -0
- package/lib/Base/Icon/icons/outline/32x32/index.d.ts +6 -0
- package/lib/Base/Icon/icons/outline/index.d.ts +6 -0
- package/lib/Molecules/Notices/Notice/Notice.d.ts +1 -1
- package/lib/Molecules/Notices/Notice/Notice.types.d.ts +3 -0
- package/package.json +1 -1
|
@@ -795,6 +795,12 @@ declare const iconsMap: {
|
|
|
795
795
|
desc?: string;
|
|
796
796
|
descId?: string;
|
|
797
797
|
}>;
|
|
798
|
+
readonly emoji: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
799
|
+
title?: string;
|
|
800
|
+
titleId?: string;
|
|
801
|
+
desc?: string;
|
|
802
|
+
descId?: string;
|
|
803
|
+
}>;
|
|
798
804
|
readonly envelop_plus: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
799
805
|
title?: string;
|
|
800
806
|
titleId?: string;
|
|
@@ -203,6 +203,12 @@ declare const IconsMap: {
|
|
|
203
203
|
desc?: string;
|
|
204
204
|
descId?: string;
|
|
205
205
|
}>;
|
|
206
|
+
readonly emoji: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
207
|
+
title?: string;
|
|
208
|
+
titleId?: string;
|
|
209
|
+
desc?: string;
|
|
210
|
+
descId?: string;
|
|
211
|
+
}>;
|
|
206
212
|
readonly envelop_plus: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
207
213
|
title?: string;
|
|
208
214
|
titleId?: string;
|
|
@@ -658,6 +658,12 @@ declare const iconsMap: {
|
|
|
658
658
|
desc?: string;
|
|
659
659
|
descId?: string;
|
|
660
660
|
}>;
|
|
661
|
+
readonly emoji: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
662
|
+
title?: string;
|
|
663
|
+
titleId?: string;
|
|
664
|
+
desc?: string;
|
|
665
|
+
descId?: string;
|
|
666
|
+
}>;
|
|
661
667
|
readonly envelop_plus: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
662
668
|
title?: string;
|
|
663
669
|
titleId?: string;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { NoticeInfoProps, NoticeWarningProps } from './Notice.types';
|
|
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;
|
|
2
|
+
declare const Notice: ({ bodyText, className, color, context, cta, detailedClassName, dismissible, headline, icon, markdown, notificationBubble, onDismiss, size, type, variant, }: NoticeWarningProps | NoticeInfoProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
3
|
export default Notice;
|
|
@@ -7,10 +7,13 @@ interface NoticePropsBase {
|
|
|
7
7
|
className?: string;
|
|
8
8
|
cta?: {
|
|
9
9
|
color?: TextButtonProps['color'];
|
|
10
|
+
href?: TextButtonProps['href'];
|
|
10
11
|
onClick: TextButtonProps['onClick'];
|
|
11
12
|
rightIcon?: TextButtonProps['rightIcon'];
|
|
13
|
+
target?: string;
|
|
12
14
|
text: string;
|
|
13
15
|
};
|
|
16
|
+
detailedClassName?: string;
|
|
14
17
|
headline?: string;
|
|
15
18
|
icon?: {
|
|
16
19
|
name: Icon24;
|