@goodhood-web/ui 2.1.0-development.3 → 2.1.0-development.30

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 (59) hide show
  1. package/index.d.ts +8 -4
  2. package/index.js +124 -124
  3. package/index.mjs +19359 -19164
  4. package/lib/Atoms/Badges/Badge/Badge.types.d.ts +2 -3
  5. package/lib/Atoms/Badges/BadgeIcon/BadgeIcon.types.d.ts +2 -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 +2 -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/IconButton/IconButton.types.d.ts +1 -1
  13. package/lib/Atoms/Buttons/OverlayButton/OverlayButton.d.ts +1 -1
  14. package/lib/Atoms/Buttons/OverlayButton/OverlayButton.types.d.ts +1 -0
  15. package/lib/Atoms/Content/BodyText/BodyText.d.ts +1 -1
  16. package/lib/Atoms/Content/BodyText/BodyText.types.d.ts +1 -0
  17. package/lib/Atoms/Content/UserAvatarCluster/UserAvatarCluster.d.ts +3 -0
  18. package/lib/Atoms/Content/UserAvatarCluster/UserAvatarCluster.types.d.ts +42 -0
  19. package/lib/Atoms/Content/UserAvatarCluster/utils.d.ts +41 -0
  20. package/lib/Atoms/Dropdowns/DropdownCard/DropdownCard.d.ts +3 -0
  21. package/lib/Atoms/Dropdowns/DropdownCard/DropdownCard.types.d.ts +9 -0
  22. package/lib/Atoms/Dropdowns/DropdownItem/DropdownItem.d.ts +3 -0
  23. package/lib/Atoms/Dropdowns/{DropdownOption/DropdownOption.types.d.ts → DropdownItem/DropdownItem.types.d.ts} +1 -1
  24. package/lib/Base/Icon/Icon.types.d.ts +10 -6
  25. package/lib/Base/Icon/icons/coloured/32x32/index.d.ts +39 -0
  26. package/lib/Base/Icon/icons/coloured/index.d.ts +43 -0
  27. package/lib/Base/Icon/icons/filled/16x16/index.d.ts +9 -0
  28. package/lib/Base/Icon/icons/filled/24x24/index.d.ts +15 -0
  29. package/lib/Base/Icon/icons/filled/32x32/index.d.ts +21 -0
  30. package/lib/Base/Icon/icons/filled/index.d.ts +45 -0
  31. package/lib/Base/Icon/icons/index.d.ts +1081 -492
  32. package/lib/Base/Icon/icons/{16x16 → outline/16x16}/index.d.ts +18 -3
  33. package/lib/Base/Icon/icons/{24x24 → outline/24x24}/index.d.ts +159 -12
  34. package/lib/Base/Icon/icons/{32x32 → outline/32x32}/index.d.ts +360 -21
  35. package/lib/Base/Icon/icons/outline/index.d.ts +999 -0
  36. package/lib/Base/SocialIcon/SocialIcon.d.ts +4 -0
  37. package/lib/Base/SocialIcon/SocialIcon.types.d.ts +22 -0
  38. package/lib/Base/SocialIcon/icons/48x48/dark/index.d.ts +159 -0
  39. package/lib/Base/SocialIcon/icons/48x48/light/index.d.ts +171 -0
  40. package/lib/Base/SocialIcon/icons/index.d.ts +331 -0
  41. package/lib/Base/Typography/Typography.types.d.ts +1 -1
  42. package/lib/Molecules/ListItemCluster/ListItemCluster.d.ts +3 -0
  43. package/lib/Molecules/ListItemCluster/ListItemCluster.types.d.ts +4 -0
  44. package/lib/Molecules/ListItems/ListItem.d.ts +3 -0
  45. package/lib/Molecules/ListItems/ListItem.types.d.ts +9 -0
  46. package/lib/Molecules/ListItems/Neighbour/Neighbour.d.ts +3 -0
  47. package/lib/Molecules/ListItems/Neighbour/Neighbour.types.d.ts +22 -0
  48. package/lib/Molecules/Markdown/Markdown.d.ts +1 -1
  49. package/lib/Molecules/Markdown/Markdown.types.d.ts +2 -0
  50. package/lib/Molecules/Notices/EmptyState/EmptyState.d.ts +1 -1
  51. package/lib/Molecules/Notices/EmptyState/EmptyState.types.d.ts +1 -0
  52. package/package.json +1 -1
  53. package/style.css +1 -1
  54. package/styles/_media.scss +6 -0
  55. package/lib/Atoms/Dropdowns/DropdownOption/DropdownOption.d.ts +0 -3
  56. package/lib/Atoms/Dropdowns/DropdownOptionsCluster/DropdownOptionsCluster.d.ts +0 -3
  57. package/lib/Atoms/Dropdowns/DropdownOptionsCluster/DropdownOptionsCluster.types.d.ts +0 -4
  58. package/lib/Organisms/Cards/MarketplaceItemCardless/MarketplaceItemCardless.d.ts +0 -2
  59. package/lib/Organisms/Cards/MarketplaceItemCardless/MarketplaceItemCardless.types.d.ts +0 -12
@@ -1,24 +1,39 @@
1
1
  declare const IconsMap: {
2
2
  chevron_down: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3
3
  title?: string;
4
+ titleId?: string;
5
+ desc?: string;
6
+ descId?: string;
4
7
  }>;
5
8
  chevron_left: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
6
9
  title?: string;
10
+ titleId?: string;
11
+ desc?: string;
12
+ descId?: string;
7
13
  }>;
8
14
  chevron_right: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
9
15
  title?: string;
16
+ titleId?: string;
17
+ desc?: string;
18
+ descId?: string;
10
19
  }>;
11
20
  chevron_up: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
12
21
  title?: string;
13
- }>;
14
- heart_filled: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
15
- title?: string;
22
+ titleId?: string;
23
+ desc?: string;
24
+ descId?: string;
16
25
  }>;
17
26
  heart_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
18
27
  title?: string;
28
+ titleId?: string;
29
+ desc?: string;
30
+ descId?: string;
19
31
  }>;
20
32
  privacy_lock_closed: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
21
33
  title?: string;
34
+ titleId?: string;
35
+ desc?: string;
36
+ descId?: string;
22
37
  }>;
23
38
  };
24
39
  export default IconsMap;
@@ -1,156 +1,303 @@
1
1
  declare const IconsMap: {
2
2
  readonly arrow_left: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3
3
  title?: string;
4
+ titleId?: string;
5
+ desc?: string;
6
+ descId?: string;
4
7
  }>;
5
8
  readonly arrow_right: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
6
9
  title?: string;
7
- }>;
8
- readonly bookmark_filled: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
9
- title?: string;
10
+ titleId?: string;
11
+ desc?: string;
12
+ descId?: string;
10
13
  }>;
11
14
  readonly bookmark_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
12
15
  title?: string;
16
+ titleId?: string;
17
+ desc?: string;
18
+ descId?: string;
13
19
  }>;
14
20
  readonly burger_menu: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
15
21
  title?: string;
22
+ titleId?: string;
23
+ desc?: string;
24
+ descId?: string;
16
25
  }>;
17
26
  readonly business: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
18
27
  title?: string;
28
+ titleId?: string;
29
+ desc?: string;
30
+ descId?: string;
19
31
  }>;
20
32
  readonly camera: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
21
33
  title?: string;
34
+ titleId?: string;
35
+ desc?: string;
36
+ descId?: string;
22
37
  }>;
23
38
  readonly checkmark: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
24
39
  title?: string;
40
+ titleId?: string;
41
+ desc?: string;
42
+ descId?: string;
25
43
  }>;
26
44
  readonly checkmark_circle: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
27
45
  title?: string;
46
+ titleId?: string;
47
+ desc?: string;
48
+ descId?: string;
28
49
  }>;
29
50
  readonly chevron_down: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
30
51
  title?: string;
52
+ titleId?: string;
53
+ desc?: string;
54
+ descId?: string;
31
55
  }>;
32
56
  readonly chevron_left: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
33
57
  title?: string;
58
+ titleId?: string;
59
+ desc?: string;
60
+ descId?: string;
34
61
  }>;
35
62
  readonly chevron_right: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
36
63
  title?: string;
64
+ titleId?: string;
65
+ desc?: string;
66
+ descId?: string;
37
67
  }>;
38
68
  readonly chevron_up: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
39
69
  title?: string;
70
+ titleId?: string;
71
+ desc?: string;
72
+ descId?: string;
40
73
  }>;
41
74
  readonly comment_bubble: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
42
75
  title?: string;
76
+ titleId?: string;
77
+ desc?: string;
78
+ descId?: string;
43
79
  }>;
44
80
  readonly copy: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
45
81
  title?: string;
82
+ titleId?: string;
83
+ desc?: string;
84
+ descId?: string;
46
85
  }>;
47
86
  readonly cross: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
48
87
  title?: string;
88
+ titleId?: string;
89
+ desc?: string;
90
+ descId?: string;
49
91
  }>;
50
92
  readonly cross_circle: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
51
93
  title?: string;
94
+ titleId?: string;
95
+ desc?: string;
96
+ descId?: string;
52
97
  }>;
53
98
  readonly envelope: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
54
99
  title?: string;
100
+ titleId?: string;
101
+ desc?: string;
102
+ descId?: string;
55
103
  }>;
56
104
  readonly event_calendar: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
57
105
  title?: string;
106
+ titleId?: string;
107
+ desc?: string;
108
+ descId?: string;
58
109
  }>;
59
110
  readonly external_link: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
60
111
  title?: string;
112
+ titleId?: string;
113
+ desc?: string;
114
+ descId?: string;
61
115
  }>;
62
116
  readonly eye: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
63
117
  title?: string;
118
+ titleId?: string;
119
+ desc?: string;
120
+ descId?: string;
64
121
  }>;
65
122
  readonly eye_crossed: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
66
123
  title?: string;
124
+ titleId?: string;
125
+ desc?: string;
126
+ descId?: string;
67
127
  }>;
68
128
  readonly filter: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
69
129
  title?: string;
130
+ titleId?: string;
131
+ desc?: string;
132
+ descId?: string;
70
133
  }>;
71
134
  readonly globe: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
72
135
  title?: string;
136
+ titleId?: string;
137
+ desc?: string;
138
+ descId?: string;
73
139
  }>;
74
140
  readonly heart: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
75
141
  title?: string;
76
- }>;
77
- readonly heart_filled: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
78
- title?: string;
142
+ titleId?: string;
143
+ desc?: string;
144
+ descId?: string;
79
145
  }>;
80
146
  readonly heart_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
81
147
  title?: string;
148
+ titleId?: string;
149
+ desc?: string;
150
+ descId?: string;
82
151
  }>;
83
152
  readonly image: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
84
153
  title?: string;
154
+ titleId?: string;
155
+ desc?: string;
156
+ descId?: string;
157
+ }>;
158
+ readonly info: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
159
+ title?: string;
160
+ titleId?: string;
161
+ desc?: string;
162
+ descId?: string;
163
+ }>;
164
+ readonly info_left: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
165
+ title?: string;
166
+ titleId?: string;
167
+ desc?: string;
168
+ descId?: string;
169
+ }>;
170
+ readonly info_right: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
171
+ title?: string;
172
+ titleId?: string;
173
+ desc?: string;
174
+ descId?: string;
85
175
  }>;
86
176
  readonly loudspeaker: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
87
177
  title?: string;
178
+ titleId?: string;
179
+ desc?: string;
180
+ descId?: string;
88
181
  }>;
89
182
  readonly marketplace: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
90
183
  title?: string;
184
+ titleId?: string;
185
+ desc?: string;
186
+ descId?: string;
91
187
  }>;
92
188
  readonly more_dots: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
93
189
  title?: string;
190
+ titleId?: string;
191
+ desc?: string;
192
+ descId?: string;
94
193
  }>;
95
194
  readonly more_dots_alt: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
96
195
  title?: string;
196
+ titleId?: string;
197
+ desc?: string;
198
+ descId?: string;
97
199
  }>;
98
200
  readonly mute: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
99
201
  title?: string;
202
+ titleId?: string;
203
+ desc?: string;
204
+ descId?: string;
100
205
  }>;
101
206
  readonly notification_bell: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
102
207
  title?: string;
208
+ titleId?: string;
209
+ desc?: string;
210
+ descId?: string;
103
211
  }>;
104
212
  readonly paperclip: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
105
213
  title?: string;
214
+ titleId?: string;
215
+ desc?: string;
216
+ descId?: string;
106
217
  }>;
107
218
  readonly pencil: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
108
219
  title?: string;
220
+ titleId?: string;
221
+ desc?: string;
222
+ descId?: string;
109
223
  }>;
110
224
  readonly pin: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
111
225
  title?: string;
226
+ titleId?: string;
227
+ desc?: string;
228
+ descId?: string;
112
229
  }>;
113
230
  readonly plus: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
114
231
  title?: string;
232
+ titleId?: string;
233
+ desc?: string;
234
+ descId?: string;
115
235
  }>;
116
236
  readonly plus_circle: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
117
237
  title?: string;
238
+ titleId?: string;
239
+ desc?: string;
240
+ descId?: string;
118
241
  }>;
119
242
  readonly privacy_lock: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
120
243
  title?: string;
244
+ titleId?: string;
245
+ desc?: string;
246
+ descId?: string;
121
247
  }>;
122
248
  readonly privacy_lock_closed: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
123
249
  title?: string;
124
- }>;
125
- readonly quotation_left_filled: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
126
- title?: string;
127
- }>;
128
- readonly quotation_right_filled: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
129
- title?: string;
250
+ titleId?: string;
251
+ desc?: string;
252
+ descId?: string;
130
253
  }>;
131
254
  readonly react: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
132
255
  title?: string;
256
+ titleId?: string;
257
+ desc?: string;
258
+ descId?: string;
133
259
  }>;
134
260
  readonly search: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
135
261
  title?: string;
262
+ titleId?: string;
263
+ desc?: string;
264
+ descId?: string;
136
265
  }>;
137
266
  readonly share_arrow: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
138
267
  title?: string;
268
+ titleId?: string;
269
+ desc?: string;
270
+ descId?: string;
139
271
  }>;
140
272
  readonly share_arrow_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
141
273
  title?: string;
274
+ titleId?: string;
275
+ desc?: string;
276
+ descId?: string;
142
277
  }>;
143
278
  readonly sort: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
144
279
  title?: string;
280
+ titleId?: string;
281
+ desc?: string;
282
+ descId?: string;
145
283
  }>;
146
284
  readonly special_place: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
147
285
  title?: string;
286
+ titleId?: string;
287
+ desc?: string;
288
+ descId?: string;
148
289
  }>;
149
290
  readonly thanks: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
150
291
  title?: string;
292
+ titleId?: string;
293
+ desc?: string;
294
+ descId?: string;
151
295
  }>;
152
296
  readonly trash_can: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
153
297
  title?: string;
298
+ titleId?: string;
299
+ desc?: string;
300
+ descId?: string;
154
301
  }>;
155
302
  };
156
303
  export default IconsMap;