@goodhood-web/ui 2.1.0-development.2 → 2.1.0-development.21

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.
Files changed (52) hide show
  1. package/index.d.ts +5 -4
  2. package/index.js +126 -126
  3. package/index.mjs +18458 -18416
  4. package/lib/Atoms/Badges/Badge/Badge.types.d.ts +2 -3
  5. package/lib/Atoms/Badges/BadgeIcon/BadgeIcon.types.d.ts +1 -1
  6. package/lib/Atoms/Badges/BadgeLabel/BadgeLabel.types.d.ts +1 -1
  7. package/lib/Atoms/Badges/Tooltip/Tooltip.d.ts +1 -1
  8. package/lib/Atoms/Badges/Tooltip/Tooltip.types.d.ts +1 -0
  9. package/lib/Atoms/Buttons/Button/Button.d.ts +2 -2
  10. package/lib/Atoms/Buttons/Button/Button.types.d.ts +1 -1
  11. package/lib/Atoms/Buttons/IconButton/IconButton.d.ts +1 -1
  12. package/lib/Atoms/Buttons/OverlayButton/OverlayButton.d.ts +1 -1
  13. package/lib/Atoms/Buttons/OverlayButton/OverlayButton.types.d.ts +1 -0
  14. package/lib/Atoms/Content/BodyText/BodyText.d.ts +1 -1
  15. package/lib/Atoms/Content/BodyText/BodyText.types.d.ts +1 -0
  16. package/lib/Atoms/Content/UserAvatarCluster/UserAvatarCluster.d.ts +3 -0
  17. package/lib/Atoms/Content/UserAvatarCluster/UserAvatarCluster.types.d.ts +44 -0
  18. package/lib/Atoms/Content/UserAvatarCluster/utils.d.ts +42 -0
  19. package/lib/Atoms/Dropdowns/DropdownCard/DropdownCard.d.ts +3 -0
  20. package/lib/Atoms/Dropdowns/DropdownCard/DropdownCard.types.d.ts +9 -0
  21. package/lib/Atoms/Dropdowns/DropdownItem/DropdownItem.d.ts +3 -0
  22. package/lib/Atoms/Dropdowns/{DropdownOption/DropdownOption.types.d.ts → DropdownItem/DropdownItem.types.d.ts} +1 -1
  23. package/lib/Base/Icon/Icon.types.d.ts +10 -6
  24. package/lib/Base/Icon/icons/coloured/32x32/index.d.ts +21 -0
  25. package/lib/Base/Icon/icons/coloured/index.d.ts +25 -0
  26. package/lib/Base/Icon/icons/filled/16x16/index.d.ts +6 -0
  27. package/lib/Base/Icon/icons/filled/24x24/index.d.ts +9 -0
  28. package/lib/Base/Icon/icons/filled/32x32/index.d.ts +12 -0
  29. package/lib/Base/Icon/icons/filled/index.d.ts +27 -0
  30. package/lib/Base/Icon/icons/index.d.ts +541 -486
  31. package/lib/Base/Icon/icons/{16x16 → outline/16x16}/index.d.ts +0 -3
  32. package/lib/Base/Icon/icons/{24x24 → outline/24x24}/index.d.ts +9 -6
  33. package/lib/Base/Icon/icons/{32x32 → outline/32x32}/index.d.ts +24 -21
  34. package/lib/Base/Icon/icons/outline/index.d.ts +495 -0
  35. package/lib/Base/SocialIcon/SocialIcon.d.ts +4 -0
  36. package/lib/Base/SocialIcon/SocialIcon.types.d.ts +20 -0
  37. package/lib/Base/SocialIcon/icons/48x48/dark/index.d.ts +81 -0
  38. package/lib/Base/SocialIcon/icons/48x48/light/index.d.ts +87 -0
  39. package/lib/Base/SocialIcon/icons/index.d.ts +169 -0
  40. package/lib/Base/Typography/Typography.types.d.ts +1 -1
  41. package/lib/Molecules/Markdown/Markdown.d.ts +1 -1
  42. package/lib/Molecules/Markdown/Markdown.types.d.ts +2 -0
  43. package/lib/Molecules/Notices/EmptyState/EmptyState.d.ts +1 -1
  44. package/lib/Molecules/Notices/EmptyState/EmptyState.types.d.ts +1 -0
  45. package/package.json +1 -1
  46. package/style.css +1 -1
  47. package/styles/_media.scss +6 -0
  48. package/lib/Atoms/Dropdowns/DropdownOption/DropdownOption.d.ts +0 -3
  49. package/lib/Atoms/Dropdowns/DropdownOptionsCluster/DropdownOptionsCluster.d.ts +0 -3
  50. package/lib/Atoms/Dropdowns/DropdownOptionsCluster/DropdownOptionsCluster.types.d.ts +0 -4
  51. package/lib/Organisms/Cards/MarketplaceItemCardless/MarketplaceItemCardless.d.ts +0 -2
  52. package/lib/Organisms/Cards/MarketplaceItemCardless/MarketplaceItemCardless.types.d.ts +0 -12
@@ -0,0 +1,4 @@
1
+ import { ReactElement } from 'react';
2
+ import { IconProps } from './SocialIcon.types';
3
+ declare const SocialIcon: ({ className, platform, role, size, style, title, }: IconProps) => ReactElement | null;
4
+ export default SocialIcon;
@@ -0,0 +1,20 @@
1
+ import { AriaRole } from 'react';
2
+ import { default as darkIcons48 } from './icons/48x48/dark';
3
+ import { default as lightIcons48 } from './icons/48x48/light';
4
+ export type DarkIcon48 = keyof typeof darkIcons48;
5
+ export type LightIcon48 = keyof typeof lightIcons48;
6
+ export declare const iconNames48Dark: string[];
7
+ export declare const iconNames48Light: string[];
8
+ type BaseIconProps = {
9
+ className?: string;
10
+ role?: Extract<AriaRole, 'presentation' | 'img'>;
11
+ size?: '48';
12
+ style?: 'light' | 'dark';
13
+ title?: string;
14
+ };
15
+ export type IconProps = ({
16
+ platform: DarkIcon48;
17
+ } & BaseIconProps) | ({
18
+ platform: LightIcon48;
19
+ } & BaseIconProps);
20
+ export {};
@@ -0,0 +1,81 @@
1
+ declare const IconsMap: {
2
+ readonly apple: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3
+ title?: string;
4
+ }>;
5
+ readonly discord: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
6
+ title?: string;
7
+ }>;
8
+ readonly dribbble: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
9
+ title?: string;
10
+ }>;
11
+ readonly facebook: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
12
+ title?: string;
13
+ }>;
14
+ readonly figma: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
15
+ title?: string;
16
+ }>;
17
+ readonly github: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
18
+ title?: string;
19
+ }>;
20
+ readonly google: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
21
+ title?: string;
22
+ }>;
23
+ readonly handwave: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
24
+ title?: string;
25
+ }>;
26
+ readonly instagram: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
27
+ title?: string;
28
+ }>;
29
+ readonly linkedin: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
30
+ title?: string;
31
+ }>;
32
+ readonly medium: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
33
+ title?: string;
34
+ }>;
35
+ readonly messenger: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
36
+ title?: string;
37
+ }>;
38
+ readonly pinterest: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
39
+ title?: string;
40
+ }>;
41
+ readonly reddit: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
42
+ title?: string;
43
+ }>;
44
+ readonly signal: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
45
+ title?: string;
46
+ }>;
47
+ readonly snapchat: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
48
+ title?: string;
49
+ }>;
50
+ readonly spotify: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
51
+ title?: string;
52
+ }>;
53
+ readonly telegram: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
54
+ title?: string;
55
+ }>;
56
+ readonly threads: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
57
+ title?: string;
58
+ }>;
59
+ readonly tiktok: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
60
+ title?: string;
61
+ }>;
62
+ readonly tumblr: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
63
+ title?: string;
64
+ }>;
65
+ readonly twitch: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
66
+ title?: string;
67
+ }>;
68
+ readonly vk: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
69
+ title?: string;
70
+ }>;
71
+ readonly whatsapp: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
72
+ title?: string;
73
+ }>;
74
+ readonly x: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
75
+ title?: string;
76
+ }>;
77
+ readonly youtube: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
78
+ title?: string;
79
+ }>;
80
+ };
81
+ export default IconsMap;
@@ -0,0 +1,87 @@
1
+ declare const IconsMap: {
2
+ readonly apple: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3
+ title?: string;
4
+ }>;
5
+ readonly discord: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
6
+ title?: string;
7
+ }>;
8
+ readonly dribbble: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
9
+ title?: string;
10
+ }>;
11
+ readonly facebook: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
12
+ title?: string;
13
+ }>;
14
+ readonly figma: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
15
+ title?: string;
16
+ }>;
17
+ readonly github: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
18
+ title?: string;
19
+ }>;
20
+ readonly google: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
21
+ title?: string;
22
+ }>;
23
+ readonly handwave: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
24
+ title?: string;
25
+ }>;
26
+ readonly instagram: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
27
+ title?: string;
28
+ }>;
29
+ readonly instagram2: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
30
+ title?: string;
31
+ }>;
32
+ readonly linkedin: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
33
+ title?: string;
34
+ }>;
35
+ readonly medium: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
36
+ title?: string;
37
+ }>;
38
+ readonly messenger: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
39
+ title?: string;
40
+ }>;
41
+ readonly pinterest: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
42
+ title?: string;
43
+ }>;
44
+ readonly reddit: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
45
+ title?: string;
46
+ }>;
47
+ readonly signal: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
48
+ title?: string;
49
+ }>;
50
+ readonly snapchat: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
51
+ title?: string;
52
+ }>;
53
+ readonly spotify: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
54
+ title?: string;
55
+ }>;
56
+ readonly telegram: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
57
+ title?: string;
58
+ }>;
59
+ readonly threads: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
60
+ title?: string;
61
+ }>;
62
+ readonly tiktok: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
63
+ title?: string;
64
+ }>;
65
+ readonly tumblr: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
66
+ title?: string;
67
+ }>;
68
+ readonly twitch: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
69
+ title?: string;
70
+ }>;
71
+ readonly vk: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
72
+ title?: string;
73
+ }>;
74
+ readonly whatsapp: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
75
+ title?: string;
76
+ }>;
77
+ readonly whatsapp2: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
78
+ title?: string;
79
+ }>;
80
+ readonly x: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
81
+ title?: string;
82
+ }>;
83
+ readonly youtube: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
84
+ title?: string;
85
+ }>;
86
+ };
87
+ export default IconsMap;
@@ -0,0 +1,169 @@
1
+ declare const iconsMap: {
2
+ dark48: {
3
+ readonly apple: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
4
+ title?: string;
5
+ }>;
6
+ readonly discord: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
7
+ title?: string;
8
+ }>;
9
+ readonly dribbble: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
10
+ title?: string;
11
+ }>;
12
+ readonly facebook: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
13
+ title?: string;
14
+ }>;
15
+ readonly figma: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
16
+ title?: string;
17
+ }>;
18
+ readonly github: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
19
+ title?: string;
20
+ }>;
21
+ readonly google: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
22
+ title?: string;
23
+ }>;
24
+ readonly handwave: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
25
+ title?: string;
26
+ }>;
27
+ readonly instagram: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
28
+ title?: string;
29
+ }>;
30
+ readonly linkedin: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
31
+ title?: string;
32
+ }>;
33
+ readonly medium: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
34
+ title?: string;
35
+ }>;
36
+ readonly messenger: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
37
+ title?: string;
38
+ }>;
39
+ readonly pinterest: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
40
+ title?: string;
41
+ }>;
42
+ readonly reddit: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
43
+ title?: string;
44
+ }>;
45
+ readonly signal: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
46
+ title?: string;
47
+ }>;
48
+ readonly snapchat: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
49
+ title?: string;
50
+ }>;
51
+ readonly spotify: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
52
+ title?: string;
53
+ }>;
54
+ readonly telegram: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
55
+ title?: string;
56
+ }>;
57
+ readonly threads: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
58
+ title?: string;
59
+ }>;
60
+ readonly tiktok: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
61
+ title?: string;
62
+ }>;
63
+ readonly tumblr: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
64
+ title?: string;
65
+ }>;
66
+ readonly twitch: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
67
+ title?: string;
68
+ }>;
69
+ readonly vk: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
70
+ title?: string;
71
+ }>;
72
+ readonly whatsapp: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
73
+ title?: string;
74
+ }>;
75
+ readonly x: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
76
+ title?: string;
77
+ }>;
78
+ readonly youtube: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
79
+ title?: string;
80
+ }>;
81
+ };
82
+ light48: {
83
+ readonly apple: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
84
+ title?: string;
85
+ }>;
86
+ readonly discord: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
87
+ title?: string;
88
+ }>;
89
+ readonly dribbble: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
90
+ title?: string;
91
+ }>;
92
+ readonly facebook: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
93
+ title?: string;
94
+ }>;
95
+ readonly figma: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
96
+ title?: string;
97
+ }>;
98
+ readonly github: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
99
+ title?: string;
100
+ }>;
101
+ readonly google: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
102
+ title?: string;
103
+ }>;
104
+ readonly handwave: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
105
+ title?: string;
106
+ }>;
107
+ readonly instagram: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
108
+ title?: string;
109
+ }>;
110
+ readonly instagram2: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
111
+ title?: string;
112
+ }>;
113
+ readonly linkedin: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
114
+ title?: string;
115
+ }>;
116
+ readonly medium: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
117
+ title?: string;
118
+ }>;
119
+ readonly messenger: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
120
+ title?: string;
121
+ }>;
122
+ readonly pinterest: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
123
+ title?: string;
124
+ }>;
125
+ readonly reddit: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
126
+ title?: string;
127
+ }>;
128
+ readonly signal: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
129
+ title?: string;
130
+ }>;
131
+ readonly snapchat: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
132
+ title?: string;
133
+ }>;
134
+ readonly spotify: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
135
+ title?: string;
136
+ }>;
137
+ readonly telegram: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
138
+ title?: string;
139
+ }>;
140
+ readonly threads: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
141
+ title?: string;
142
+ }>;
143
+ readonly tiktok: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
144
+ title?: string;
145
+ }>;
146
+ readonly tumblr: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
147
+ title?: string;
148
+ }>;
149
+ readonly twitch: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
150
+ title?: string;
151
+ }>;
152
+ readonly vk: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
153
+ title?: string;
154
+ }>;
155
+ readonly whatsapp: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
156
+ title?: string;
157
+ }>;
158
+ readonly whatsapp2: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
159
+ title?: string;
160
+ }>;
161
+ readonly x: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
162
+ title?: string;
163
+ }>;
164
+ readonly youtube: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
165
+ title?: string;
166
+ }>;
167
+ };
168
+ };
169
+ export default iconsMap;
@@ -1,5 +1,5 @@
1
1
  import { ComponentPropsWithoutRef, ElementType, PropsWithChildren } from 'react';
2
- export type TypographyTypeLanding = 'claim' | 'claim-uppercase' | 'h1' | 'h1-uppercase' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'overline';
2
+ export type TypographyTypeLanding = 'claim' | 'claim-uppercase' | 'h1' | 'h1-uppercase' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'overline' | 'body-large' | 'body-large-semibold' | 'body' | 'body-semibold' | 'body-italic' | 'quote-large' | 'detail-small' | 'detail-small-bold';
3
3
  export type TypographyTypeProduct = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'h7' | 'h8' | 'body-large' | 'body-regular' | 'body-semibold' | 'body-italic' | 'body-text-link' | 'detail-medium' | 'detail-bold' | 'detail-upper-case' | 'detail-regular';
4
4
  type AsProp<C extends ElementType> = {
5
5
  as?: C;
@@ -1,5 +1,5 @@
1
1
  import { MarkdownProps } from './Markdown.types';
2
2
  export declare const quotesToTokens: (string: string) => string;
3
3
  export declare const tokensToQuotes: (string: string) => string;
4
- declare function Markdown({ className, inline, text }: MarkdownProps): import("react/jsx-runtime").JSX.Element;
4
+ declare function Markdown({ className, elementTag, inline, text, }: MarkdownProps): import("react/jsx-runtime").JSX.Element;
5
5
  export default Markdown;
@@ -1,5 +1,7 @@
1
+ import { AllowedHTMLElements } from '../../Base/Typography/Typography.types';
1
2
  export type MarkdownProps = {
2
3
  className?: string;
4
+ elementTag?: AllowedHTMLElements;
3
5
  inline?: boolean;
4
6
  text: string;
5
7
  };
@@ -1,3 +1,3 @@
1
1
  import { default as EmptyStateProps } from './EmptyState.types';
2
- declare const EmptyState: ({ buttons, customVisual, primaryText, secondaryText, size, stickerProps, }: EmptyStateProps) => import("react/jsx-runtime").JSX.Element;
2
+ declare const EmptyState: ({ buttons, className, customVisual, primaryText, secondaryText, size, stickerProps, }: EmptyStateProps) => import("react/jsx-runtime").JSX.Element;
3
3
  export default EmptyState;
@@ -19,6 +19,7 @@ type ButtonTertiary = Omit<ButtonTertiaryProps, 'size'> & {
19
19
  export type ButtonProps = TextButton | ButtonPrimary | ButtonSecondary | ButtonTertiary;
20
20
  export default interface EmptyStateProps {
21
21
  buttons?: ButtonProps[];
22
+ className?: string;
22
23
  customVisual?: ReactElement;
23
24
  primaryText?: string;
24
25
  secondaryText?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goodhood-web/ui",
3
- "version": "2.1.0-development.2",
3
+ "version": "2.1.0-development.21",
4
4
  "main": "./index.js",
5
5
  "types": "./index.d.ts",
6
6
  "repository": "https://github.com/good-hood-gmbh/goodhood-web",