@goodhood-web/ui 1.8.0-development.9 → 1.8.1-development.1
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.d.ts +8 -4
- package/index.js +169 -65
- package/index.mjs +15989 -6093
- package/lib/ActionBar/ActionBar.d.ts +4 -0
- package/lib/ActionBar/ActionBar.types.d.ts +8 -0
- package/lib/ActionBar/ActionBarCta/ActionBarCta.d.ts +4 -0
- package/lib/ActionBar/ActionBarCta/ActionBarCta.types.d.ts +8 -0
- package/lib/ActionBar/ActionBarList/ActionBarList.d.ts +4 -0
- package/lib/ActionBar/ActionBarList/ActionBarList.types.d.ts +5 -0
- package/lib/ActionBar/ActionBarList/ActionItem/ActionItem.d.ts +4 -0
- package/lib/ActionBar/ActionBarList/ActionItem/ActionItem.types.d.ts +10 -0
- package/lib/BodyText/BodyText.d.ts +4 -0
- package/lib/BodyText/BodyText.types.d.ts +5 -0
- package/lib/BodyText/util.d.ts +1 -0
- package/lib/ButtonSecondary/ButtonSecondary.d.ts +4 -0
- package/lib/ButtonSecondary/ButtonSecondary.types.d.ts +12 -0
- package/lib/ButtonTertiary/ButtonTertiary.d.ts +4 -0
- package/lib/ButtonTertiary/ButtonTertiary.types.d.ts +12 -0
- package/lib/FeedTile/FeedTile.d.ts +4 -0
- package/lib/FeedTile/FeedTile.types.d.ts +10 -0
- package/lib/Icon/icons/24x24/index.d.ts +50 -48
- package/lib/Icon/icons/32x32/index.d.ts +108 -97
- package/lib/Icon/icons/index.d.ts +158 -144
- package/lib/MenuItem/MenuItem.d.ts +1 -1
- package/lib/MenuItem/MenuItem.types.d.ts +3 -1
- package/lib/MenuTile/MenuTile.d.ts +4 -0
- package/lib/{Tile/Tile.type.d.ts → MenuTile/MenuTile.type.d.ts} +1 -1
- package/lib/NotificationListItem/NotificationListItem.d.ts +1 -1
- package/lib/NotificationListItem/NotificationListItem.types.d.ts +1 -1
- package/lib/TextButton/TextButton.d.ts +1 -1
- package/lib/TextButton/TextButton.types.d.ts +2 -1
- package/lib/ToggleInput/ToggleInput.d.ts +1 -1
- package/lib/ToggleInput/ToggleInput.types.d.ts +1 -0
- package/lib/Typography/Typography.types.d.ts +1 -1
- package/package.json +1 -1
- package/style.css +1 -1
- package/lib/Accordion/Accordion.d.ts +0 -4
- package/lib/Accordion/Accordion.types.d.ts +0 -8
- package/lib/Accordion/AccordionItem.d.ts +0 -4
- package/lib/Accordion/AccordionItem.types.d.ts +0 -12
- package/lib/Tile/Tile.d.ts +0 -4
|
@@ -1,436 +1,450 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
declare const iconsMap: {
|
|
3
2
|
'24': {
|
|
4
3
|
readonly arrow_left: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
5
|
-
title?: string
|
|
4
|
+
title?: string;
|
|
6
5
|
}>;
|
|
7
6
|
readonly arrow_right: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
8
|
-
title?: string
|
|
7
|
+
title?: string;
|
|
9
8
|
}>;
|
|
10
9
|
readonly bookmark: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
11
|
-
title?: string
|
|
10
|
+
title?: string;
|
|
12
11
|
}>;
|
|
13
12
|
readonly bookmarked: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
14
|
-
title?: string
|
|
13
|
+
title?: string;
|
|
15
14
|
}>;
|
|
16
15
|
readonly burger_menu: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
17
|
-
title?: string
|
|
16
|
+
title?: string;
|
|
17
|
+
}>;
|
|
18
|
+
readonly business: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
19
|
+
title?: string;
|
|
18
20
|
}>;
|
|
19
21
|
readonly camera: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
20
|
-
title?: string
|
|
22
|
+
title?: string;
|
|
21
23
|
}>;
|
|
22
24
|
readonly checkmark: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
23
|
-
title?: string
|
|
25
|
+
title?: string;
|
|
24
26
|
}>;
|
|
25
27
|
readonly checkmark_circle: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
26
|
-
title?: string
|
|
28
|
+
title?: string;
|
|
27
29
|
}>;
|
|
28
30
|
readonly chevron_down: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
29
|
-
title?: string
|
|
31
|
+
title?: string;
|
|
30
32
|
}>;
|
|
31
33
|
readonly chevron_left: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
32
|
-
title?: string
|
|
34
|
+
title?: string;
|
|
33
35
|
}>;
|
|
34
36
|
readonly chevron_right: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
35
|
-
title?: string
|
|
37
|
+
title?: string;
|
|
36
38
|
}>;
|
|
37
39
|
readonly chevron_up: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
38
|
-
title?: string
|
|
40
|
+
title?: string;
|
|
39
41
|
}>;
|
|
40
42
|
readonly comment_bubble: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
41
|
-
title?: string
|
|
43
|
+
title?: string;
|
|
42
44
|
}>;
|
|
43
45
|
readonly cross: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
44
|
-
title?: string
|
|
46
|
+
title?: string;
|
|
45
47
|
}>;
|
|
46
48
|
readonly cross_circle: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
47
|
-
title?: string
|
|
49
|
+
title?: string;
|
|
48
50
|
}>;
|
|
49
51
|
readonly envelope: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
50
|
-
title?: string
|
|
52
|
+
title?: string;
|
|
51
53
|
}>;
|
|
52
54
|
readonly event_calendar: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
53
|
-
title?: string
|
|
55
|
+
title?: string;
|
|
54
56
|
}>;
|
|
55
57
|
readonly external_link: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
56
|
-
title?: string
|
|
58
|
+
title?: string;
|
|
57
59
|
}>;
|
|
58
60
|
readonly eye: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
59
|
-
title?: string
|
|
61
|
+
title?: string;
|
|
60
62
|
}>;
|
|
61
63
|
readonly eye_crossed: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
62
|
-
title?: string
|
|
64
|
+
title?: string;
|
|
63
65
|
}>;
|
|
64
66
|
readonly filter: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
65
|
-
title?: string
|
|
67
|
+
title?: string;
|
|
66
68
|
}>;
|
|
67
69
|
readonly globe: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
68
|
-
title?: string
|
|
70
|
+
title?: string;
|
|
69
71
|
}>;
|
|
70
72
|
readonly heart: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
71
|
-
title?: string
|
|
73
|
+
title?: string;
|
|
72
74
|
}>;
|
|
73
75
|
readonly heart_filled: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
74
|
-
title?: string
|
|
76
|
+
title?: string;
|
|
75
77
|
}>;
|
|
76
78
|
readonly heart_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
77
|
-
title?: string
|
|
79
|
+
title?: string;
|
|
78
80
|
}>;
|
|
79
81
|
readonly image: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
80
|
-
title?: string
|
|
82
|
+
title?: string;
|
|
81
83
|
}>;
|
|
82
84
|
readonly loudspeaker: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
83
|
-
title?: string
|
|
85
|
+
title?: string;
|
|
84
86
|
}>;
|
|
85
87
|
readonly marketplace: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
86
|
-
title?: string
|
|
88
|
+
title?: string;
|
|
87
89
|
}>;
|
|
88
90
|
readonly more_dots: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
89
|
-
title?: string
|
|
91
|
+
title?: string;
|
|
90
92
|
}>;
|
|
91
93
|
readonly more_dots_alt: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
92
|
-
title?: string
|
|
94
|
+
title?: string;
|
|
93
95
|
}>;
|
|
94
96
|
readonly mute: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
95
|
-
title?: string
|
|
97
|
+
title?: string;
|
|
96
98
|
}>;
|
|
97
99
|
readonly notification_bell: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
98
|
-
title?: string
|
|
100
|
+
title?: string;
|
|
99
101
|
}>;
|
|
100
102
|
readonly paperclip: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
101
|
-
title?: string
|
|
103
|
+
title?: string;
|
|
102
104
|
}>;
|
|
103
105
|
readonly pencil: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
104
|
-
title?: string
|
|
106
|
+
title?: string;
|
|
105
107
|
}>;
|
|
106
108
|
readonly pin: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
107
|
-
title?: string
|
|
109
|
+
title?: string;
|
|
108
110
|
}>;
|
|
109
111
|
readonly plus: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
110
|
-
title?: string
|
|
112
|
+
title?: string;
|
|
111
113
|
}>;
|
|
112
114
|
readonly plus_circle: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
113
|
-
title?: string
|
|
115
|
+
title?: string;
|
|
114
116
|
}>;
|
|
115
117
|
readonly privacy_lock: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
116
|
-
title?: string
|
|
118
|
+
title?: string;
|
|
117
119
|
}>;
|
|
118
120
|
readonly privacy_lock_closed: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
119
|
-
title?: string
|
|
121
|
+
title?: string;
|
|
120
122
|
}>;
|
|
121
123
|
readonly react: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
122
|
-
title?: string
|
|
124
|
+
title?: string;
|
|
123
125
|
}>;
|
|
124
126
|
readonly search: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
125
|
-
title?: string
|
|
127
|
+
title?: string;
|
|
126
128
|
}>;
|
|
127
129
|
readonly share_arrow: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
128
|
-
title?: string
|
|
130
|
+
title?: string;
|
|
129
131
|
}>;
|
|
130
132
|
readonly share_arrow_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
131
|
-
title?: string
|
|
133
|
+
title?: string;
|
|
132
134
|
}>;
|
|
133
135
|
readonly sort: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
134
|
-
title?: string
|
|
136
|
+
title?: string;
|
|
135
137
|
}>;
|
|
136
138
|
readonly special_place: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
137
|
-
title?: string
|
|
139
|
+
title?: string;
|
|
138
140
|
}>;
|
|
139
141
|
readonly thanks: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
140
|
-
title?: string
|
|
142
|
+
title?: string;
|
|
141
143
|
}>;
|
|
142
144
|
readonly trash_can: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
143
|
-
title?: string
|
|
145
|
+
title?: string;
|
|
144
146
|
}>;
|
|
145
147
|
};
|
|
146
148
|
'32': {
|
|
147
149
|
readonly address_book: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
148
|
-
title?: string
|
|
150
|
+
title?: string;
|
|
149
151
|
}>;
|
|
150
152
|
readonly baby_toy: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
151
|
-
title?: string
|
|
153
|
+
title?: string;
|
|
152
154
|
}>;
|
|
153
155
|
readonly bicycle: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
154
|
-
title?: string
|
|
156
|
+
title?: string;
|
|
155
157
|
}>;
|
|
156
158
|
readonly bookmark: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
157
|
-
title?: string
|
|
159
|
+
title?: string;
|
|
158
160
|
}>;
|
|
159
161
|
readonly books: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
160
|
-
title?: string
|
|
162
|
+
title?: string;
|
|
161
163
|
}>;
|
|
162
164
|
readonly bubble_heart_filled: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
163
|
-
title?: string
|
|
165
|
+
title?: string;
|
|
164
166
|
}>;
|
|
165
167
|
readonly bubble_heart_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
166
|
-
title?: string
|
|
168
|
+
title?: string;
|
|
167
169
|
}>;
|
|
168
170
|
readonly buildings: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
169
|
-
title?: string
|
|
171
|
+
title?: string;
|
|
170
172
|
}>;
|
|
171
173
|
readonly burger_menu: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
172
|
-
title?: string
|
|
174
|
+
title?: string;
|
|
173
175
|
}>;
|
|
174
176
|
readonly business: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
175
|
-
title?: string
|
|
177
|
+
title?: string;
|
|
176
178
|
}>;
|
|
177
179
|
readonly business_profile: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
178
|
-
title?: string
|
|
180
|
+
title?: string;
|
|
179
181
|
}>;
|
|
180
182
|
readonly camera: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
181
|
-
title?: string
|
|
183
|
+
title?: string;
|
|
182
184
|
}>;
|
|
183
185
|
readonly camera_crossed: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
184
|
-
title?: string
|
|
186
|
+
title?: string;
|
|
185
187
|
}>;
|
|
186
188
|
readonly car: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
187
|
-
title?: string
|
|
189
|
+
title?: string;
|
|
188
190
|
}>;
|
|
189
191
|
readonly carrot: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
190
|
-
title?: string
|
|
192
|
+
title?: string;
|
|
191
193
|
}>;
|
|
192
194
|
readonly chat: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
193
|
-
title?: string
|
|
195
|
+
title?: string;
|
|
194
196
|
}>;
|
|
195
197
|
readonly checkmark_circle: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
196
|
-
title?: string
|
|
198
|
+
title?: string;
|
|
197
199
|
}>;
|
|
198
200
|
readonly christmas_tree: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
199
|
-
title?: string
|
|
201
|
+
title?: string;
|
|
200
202
|
}>;
|
|
201
203
|
readonly clipboard: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
202
|
-
title?: string
|
|
204
|
+
title?: string;
|
|
203
205
|
}>;
|
|
204
206
|
readonly clothing: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
205
|
-
title?: string
|
|
207
|
+
title?: string;
|
|
206
208
|
}>;
|
|
207
209
|
readonly cocktail: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
208
|
-
title?: string
|
|
210
|
+
title?: string;
|
|
209
211
|
}>;
|
|
210
212
|
readonly comment_bubble: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
211
|
-
title?: string
|
|
213
|
+
title?: string;
|
|
212
214
|
}>;
|
|
213
215
|
readonly compass: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
214
|
-
title?: string
|
|
216
|
+
title?: string;
|
|
215
217
|
}>;
|
|
216
218
|
readonly computer: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
217
|
-
title?: string
|
|
219
|
+
title?: string;
|
|
218
220
|
}>;
|
|
219
221
|
readonly confetti: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
220
|
-
title?: string
|
|
222
|
+
title?: string;
|
|
221
223
|
}>;
|
|
222
224
|
readonly couch: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
223
|
-
title?: string
|
|
225
|
+
title?: string;
|
|
224
226
|
}>;
|
|
225
227
|
readonly credit_card: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
226
|
-
title?: string
|
|
228
|
+
title?: string;
|
|
227
229
|
}>;
|
|
228
230
|
readonly cross_circle: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
229
|
-
title?: string
|
|
231
|
+
title?: string;
|
|
230
232
|
}>;
|
|
231
233
|
readonly cutlery: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
232
|
-
title?: string
|
|
234
|
+
title?: string;
|
|
233
235
|
}>;
|
|
234
236
|
readonly drill_tool: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
235
|
-
title?: string
|
|
237
|
+
title?: string;
|
|
236
238
|
}>;
|
|
237
239
|
readonly email: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
238
|
-
title?: string
|
|
240
|
+
title?: string;
|
|
239
241
|
}>;
|
|
240
242
|
readonly envelope: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
241
|
-
title?: string
|
|
243
|
+
title?: string;
|
|
242
244
|
}>;
|
|
243
245
|
readonly event_calendar_check: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
244
|
-
title?: string
|
|
246
|
+
title?: string;
|
|
245
247
|
}>;
|
|
246
248
|
readonly event_calendar_date: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
247
|
-
title?: string
|
|
249
|
+
title?: string;
|
|
248
250
|
}>;
|
|
249
251
|
readonly event_calendar_grid: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
250
|
-
title?: string
|
|
252
|
+
title?: string;
|
|
251
253
|
}>;
|
|
252
254
|
readonly event_calendar_plus: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
253
|
-
title?: string
|
|
255
|
+
title?: string;
|
|
256
|
+
}>;
|
|
257
|
+
readonly event_calendar_plus_filled: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
258
|
+
title?: string;
|
|
254
259
|
}>;
|
|
255
260
|
readonly exchange: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
256
|
-
title?: string
|
|
261
|
+
title?: string;
|
|
257
262
|
}>;
|
|
258
263
|
readonly eye: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
259
|
-
title?: string
|
|
264
|
+
title?: string;
|
|
260
265
|
}>;
|
|
261
266
|
readonly eye_crossed: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
262
|
-
title?: string
|
|
267
|
+
title?: string;
|
|
263
268
|
}>;
|
|
264
269
|
readonly gift: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
265
|
-
title?: string
|
|
270
|
+
title?: string;
|
|
271
|
+
}>;
|
|
272
|
+
readonly gift_filled: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
273
|
+
title?: string;
|
|
266
274
|
}>;
|
|
267
275
|
readonly globe: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
268
|
-
title?: string
|
|
276
|
+
title?: string;
|
|
269
277
|
}>;
|
|
270
278
|
readonly group: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
271
|
-
title?: string
|
|
279
|
+
title?: string;
|
|
280
|
+
}>;
|
|
281
|
+
readonly group_filled: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
282
|
+
title?: string;
|
|
272
283
|
}>;
|
|
273
284
|
readonly healthcare: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
274
|
-
title?: string
|
|
285
|
+
title?: string;
|
|
275
286
|
}>;
|
|
276
287
|
readonly heart: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
277
|
-
title?: string
|
|
288
|
+
title?: string;
|
|
278
289
|
}>;
|
|
279
290
|
readonly heart_filled: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
280
|
-
title?: string
|
|
291
|
+
title?: string;
|
|
292
|
+
}>;
|
|
293
|
+
readonly heart_handshake_filled: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
294
|
+
title?: string;
|
|
281
295
|
}>;
|
|
282
296
|
readonly heart_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
283
|
-
title?: string
|
|
297
|
+
title?: string;
|
|
284
298
|
}>;
|
|
285
299
|
readonly house: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
286
|
-
title?: string
|
|
300
|
+
title?: string;
|
|
287
301
|
}>;
|
|
288
302
|
readonly image: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
289
|
-
title?: string
|
|
303
|
+
title?: string;
|
|
290
304
|
}>;
|
|
291
305
|
readonly info: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
292
|
-
title?: string
|
|
306
|
+
title?: string;
|
|
293
307
|
}>;
|
|
294
308
|
readonly info_left: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
295
|
-
title?: string
|
|
309
|
+
title?: string;
|
|
296
310
|
}>;
|
|
297
311
|
readonly invite_neighbour: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
298
|
-
title?: string
|
|
312
|
+
title?: string;
|
|
299
313
|
}>;
|
|
300
314
|
readonly key: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
301
|
-
title?: string
|
|
315
|
+
title?: string;
|
|
302
316
|
}>;
|
|
303
317
|
readonly kitchen_pot: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
304
|
-
title?: string
|
|
318
|
+
title?: string;
|
|
305
319
|
}>;
|
|
306
320
|
readonly list: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
307
|
-
title?: string
|
|
321
|
+
title?: string;
|
|
308
322
|
}>;
|
|
309
323
|
readonly log_in: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
310
|
-
title?: string
|
|
324
|
+
title?: string;
|
|
311
325
|
}>;
|
|
312
326
|
readonly log_out: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
313
|
-
title?: string
|
|
327
|
+
title?: string;
|
|
314
328
|
}>;
|
|
315
329
|
readonly loudspeaker: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
316
|
-
title?: string
|
|
330
|
+
title?: string;
|
|
317
331
|
}>;
|
|
318
332
|
readonly map: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
319
|
-
title?: string
|
|
333
|
+
title?: string;
|
|
320
334
|
}>;
|
|
321
335
|
readonly marketplace: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
322
|
-
title?: string
|
|
336
|
+
title?: string;
|
|
323
337
|
}>;
|
|
324
338
|
readonly miscellaneous_other: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
325
|
-
title?: string
|
|
339
|
+
title?: string;
|
|
326
340
|
}>;
|
|
327
341
|
readonly more_dots: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
328
|
-
title?: string
|
|
342
|
+
title?: string;
|
|
329
343
|
}>;
|
|
330
344
|
readonly more_dots_alt: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
331
|
-
title?: string
|
|
345
|
+
title?: string;
|
|
332
346
|
}>;
|
|
333
347
|
readonly more_dots_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
334
|
-
title?: string
|
|
348
|
+
title?: string;
|
|
335
349
|
}>;
|
|
336
350
|
readonly music: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
337
|
-
title?: string
|
|
351
|
+
title?: string;
|
|
338
352
|
}>;
|
|
339
353
|
readonly nebenan_de: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
340
|
-
title?: string
|
|
354
|
+
title?: string;
|
|
341
355
|
}>;
|
|
342
356
|
readonly neighbour: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
343
|
-
title?: string
|
|
357
|
+
title?: string;
|
|
344
358
|
}>;
|
|
345
359
|
readonly notification_bell: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
346
|
-
title?: string
|
|
360
|
+
title?: string;
|
|
347
361
|
}>;
|
|
348
362
|
readonly organisation: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
349
|
-
title?: string
|
|
363
|
+
title?: string;
|
|
350
364
|
}>;
|
|
351
365
|
readonly paper_form_empty: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
352
|
-
title?: string
|
|
366
|
+
title?: string;
|
|
353
367
|
}>;
|
|
354
368
|
readonly paper_form_filled: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
355
|
-
title?: string
|
|
369
|
+
title?: string;
|
|
356
370
|
}>;
|
|
357
371
|
readonly paperclip: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
358
|
-
title?: string
|
|
372
|
+
title?: string;
|
|
359
373
|
}>;
|
|
360
374
|
readonly paw: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
361
|
-
title?: string
|
|
375
|
+
title?: string;
|
|
362
376
|
}>;
|
|
363
377
|
readonly pencil: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
364
|
-
title?: string
|
|
378
|
+
title?: string;
|
|
365
379
|
}>;
|
|
366
380
|
readonly pin: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
367
|
-
title?: string
|
|
381
|
+
title?: string;
|
|
368
382
|
}>;
|
|
369
383
|
readonly pins: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
370
|
-
title?: string
|
|
384
|
+
title?: string;
|
|
371
385
|
}>;
|
|
372
386
|
readonly plant: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
373
|
-
title?: string
|
|
387
|
+
title?: string;
|
|
374
388
|
}>;
|
|
375
389
|
readonly plus: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
376
|
-
title?: string
|
|
390
|
+
title?: string;
|
|
377
391
|
}>;
|
|
378
392
|
readonly plus_circle: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
379
|
-
title?: string
|
|
393
|
+
title?: string;
|
|
380
394
|
}>;
|
|
381
395
|
readonly post: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
382
|
-
title?: string
|
|
396
|
+
title?: string;
|
|
383
397
|
}>;
|
|
384
398
|
readonly privacy_lock: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
385
|
-
title?: string
|
|
399
|
+
title?: string;
|
|
386
400
|
}>;
|
|
387
401
|
readonly privacy_lock_closed: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
388
|
-
title?: string
|
|
402
|
+
title?: string;
|
|
389
403
|
}>;
|
|
390
404
|
readonly qr_code: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
391
|
-
title?: string
|
|
405
|
+
title?: string;
|
|
392
406
|
}>;
|
|
393
407
|
readonly search: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
394
|
-
title?: string
|
|
408
|
+
title?: string;
|
|
395
409
|
}>;
|
|
396
410
|
readonly settings_cog: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
397
|
-
title?: string
|
|
411
|
+
title?: string;
|
|
398
412
|
}>;
|
|
399
413
|
readonly shopping_bag: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
400
|
-
title?: string
|
|
414
|
+
title?: string;
|
|
401
415
|
}>;
|
|
402
416
|
readonly shopping_cart: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
403
|
-
title?: string
|
|
417
|
+
title?: string;
|
|
404
418
|
}>;
|
|
405
419
|
readonly special_place: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
406
|
-
title?: string
|
|
420
|
+
title?: string;
|
|
407
421
|
}>;
|
|
408
422
|
readonly suitcase: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
409
|
-
title?: string
|
|
423
|
+
title?: string;
|
|
410
424
|
}>;
|
|
411
425
|
readonly supporter: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
412
|
-
title?: string
|
|
426
|
+
title?: string;
|
|
413
427
|
}>;
|
|
414
428
|
readonly tennis_ball: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
415
|
-
title?: string
|
|
429
|
+
title?: string;
|
|
416
430
|
}>;
|
|
417
431
|
readonly thanks: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
418
|
-
title?: string
|
|
432
|
+
title?: string;
|
|
419
433
|
}>;
|
|
420
434
|
readonly trash_can: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
421
|
-
title?: string
|
|
435
|
+
title?: string;
|
|
422
436
|
}>;
|
|
423
437
|
readonly truck: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
424
|
-
title?: string
|
|
438
|
+
title?: string;
|
|
425
439
|
}>;
|
|
426
440
|
readonly user: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
427
|
-
title?: string
|
|
441
|
+
title?: string;
|
|
428
442
|
}>;
|
|
429
443
|
readonly user_profile: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
430
|
-
title?: string
|
|
444
|
+
title?: string;
|
|
431
445
|
}>;
|
|
432
446
|
readonly wellness: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
433
|
-
title?: string
|
|
447
|
+
title?: string;
|
|
434
448
|
}>;
|
|
435
449
|
};
|
|
436
450
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { MenuItemProps } from './MenuItem.types';
|
|
2
2
|
|
|
3
|
-
declare const MenuItem: ({ className: passedClassName, href, isSelected, labelPillClassName, labelPillText, leftIcon, onClick, rightIcon, role, text, }: MenuItemProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
declare const MenuItem: ({ className: passedClassName, compact, href, isSelected, labelPillClassName, labelPillText, leftIcon, onClick, rightIcon, role, text, }: MenuItemProps) => import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
export default MenuItem;
|
|
@@ -3,11 +3,13 @@ import { ButtonProps } from '../Button/Button.types';
|
|
|
3
3
|
|
|
4
4
|
export interface MenuItemProps {
|
|
5
5
|
className?: string;
|
|
6
|
+
compact?: boolean;
|
|
6
7
|
href?: string;
|
|
8
|
+
id?: string;
|
|
7
9
|
isSelected?: boolean;
|
|
8
10
|
labelPillClassName?: string;
|
|
9
11
|
labelPillText?: string;
|
|
10
|
-
leftIcon
|
|
12
|
+
leftIcon?: ReactNode;
|
|
11
13
|
onClick?: ButtonProps['onClick'];
|
|
12
14
|
rightIcon?: ReactNode;
|
|
13
15
|
role?: ButtonProps['role'];
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ButtonProps } from '../Button/Button.types';
|
|
2
2
|
import { Icon32 } from '../Icon/Icon.types';
|
|
3
3
|
|
|
4
|
-
export default interface
|
|
4
|
+
export default interface MenuTileProps extends Omit<ButtonProps, 'children'> {
|
|
5
5
|
fullWidth?: boolean;
|
|
6
6
|
icon?: Icon32;
|
|
7
7
|
primaryText?: string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { NotificationListItemProps } from './NotificationListItem.types';
|
|
2
2
|
|
|
3
|
-
declare const NotificationListItem: ({ defaultIcon, imgSrc,
|
|
3
|
+
declare const NotificationListItem: ({ defaultIcon, imgSrc, linkText, onNotificationClick, timeAgo, title, unread, }: NotificationListItemProps) => import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
export default NotificationListItem;
|