@pingux/astro 1.27.0-alpha.14 → 1.27.0-alpha.16
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/lib/cjs/components/DataTable/DataTable.js +477 -0
- package/lib/cjs/components/DataTable/DataTable.stories.js +310 -0
- package/lib/cjs/components/DataTable/DataTable.styles.js +156 -0
- package/lib/cjs/components/DataTable/DataTable.test.js +1307 -0
- package/lib/cjs/components/DataTable/DataTableChip.js +63 -0
- package/lib/cjs/components/DataTable/DataTableChip.test.js +38 -0
- package/lib/cjs/components/DataTable/DataTableMenu.js +51 -0
- package/lib/cjs/components/DataTable/DataTableMenu.test.js +20 -0
- package/lib/cjs/components/DataTable/DataTableMultiLine.js +75 -0
- package/lib/cjs/components/DataTable/DataTableMultiLine.test.js +30 -0
- package/lib/cjs/components/DataTable/DataTableVirtualizer.js +188 -0
- package/lib/cjs/components/DataTable/index.js +54 -0
- package/lib/cjs/components/EnvironmentBreadcrumb/EnvironmentBreadcrumb.js +8 -2
- package/lib/cjs/components/EnvironmentBreadcrumb/EnvironmentBreadcrumb.test.js +35 -0
- package/lib/cjs/components/PageHeader/PageHeader.js +7 -1
- package/lib/cjs/context/DataTableContext/index.js +31 -0
- package/lib/cjs/index.js +67 -2
- package/lib/cjs/recipes/FlippableCaretMenuButton.stories.js +38 -30
- package/lib/cjs/recipes/ListAndPanel.stories.js +102 -87
- package/lib/cjs/recipes/MaskedValue.stories.js +8 -5
- package/lib/cjs/recipes/NeutralInput.stories.js +6 -3
- package/lib/cjs/recipes/OneWayToBidirectionalArrow.stories.js +38 -33
- package/lib/cjs/recipes/PageHeader.stories.js +73 -0
- package/lib/cjs/recipes/RowLineChart.stories.js +58 -70
- package/lib/cjs/recipes/SelectedFieldOverlay.story.js +25 -21
- package/lib/cjs/recipes/TrialExperienceStatusBar.stories.js +81 -72
- package/lib/cjs/styles/variants/variants.js +4 -1
- package/lib/components/DataTable/DataTable.js +431 -0
- package/lib/components/DataTable/DataTable.stories.js +273 -0
- package/lib/components/DataTable/DataTable.styles.js +137 -0
- package/lib/components/DataTable/DataTable.test.js +1256 -0
- package/lib/components/DataTable/DataTableChip.js +33 -0
- package/lib/components/DataTable/DataTableChip.test.js +31 -0
- package/lib/components/DataTable/DataTableMenu.js +24 -0
- package/lib/components/DataTable/DataTableMenu.test.js +13 -0
- package/lib/components/DataTable/DataTableMultiLine.js +46 -0
- package/lib/components/DataTable/DataTableMultiLine.test.js +22 -0
- package/lib/components/DataTable/DataTableVirtualizer.js +157 -0
- package/lib/components/DataTable/index.js +5 -0
- package/lib/components/EnvironmentBreadcrumb/EnvironmentBreadcrumb.js +7 -2
- package/lib/components/EnvironmentBreadcrumb/EnvironmentBreadcrumb.test.js +25 -0
- package/lib/components/PageHeader/PageHeader.js +8 -1
- package/lib/context/DataTableContext/index.js +5 -0
- package/lib/index.js +4 -1
- package/lib/recipes/FlippableCaretMenuButton.stories.js +38 -30
- package/lib/recipes/ListAndPanel.stories.js +102 -87
- package/lib/recipes/MaskedValue.stories.js +8 -5
- package/lib/recipes/NeutralInput.stories.js +6 -3
- package/lib/recipes/OneWayToBidirectionalArrow.stories.js +38 -33
- package/lib/recipes/PageHeader.stories.js +53 -0
- package/lib/recipes/RowLineChart.stories.js +58 -70
- package/lib/recipes/SelectedFieldOverlay.story.js +25 -21
- package/lib/recipes/TrialExperienceStatusBar.stories.js +81 -72
- package/lib/styles/variants/variants.js +3 -1
- package/package.json +55 -50
@@ -92,44 +92,106 @@ var items = [{
|
|
92
92
|
avatar: AccountIcon,
|
93
93
|
hasSeparator: false
|
94
94
|
}];
|
95
|
+
var sx = {
|
96
|
+
wrapper: {
|
97
|
+
px: 'lg',
|
98
|
+
py: 'lg',
|
99
|
+
bg: 'accent.99',
|
100
|
+
height: '900px',
|
101
|
+
overflowY: 'scroll'
|
102
|
+
},
|
103
|
+
searchField: {
|
104
|
+
position: 'fixed',
|
105
|
+
mb: 'sm',
|
106
|
+
width: '400px'
|
107
|
+
},
|
108
|
+
listElementWrapper: {
|
109
|
+
px: 'md',
|
110
|
+
bg: 'accent.99',
|
111
|
+
justifyContent: 'center'
|
112
|
+
},
|
113
|
+
separator: {
|
114
|
+
bg: 'accent.90'
|
115
|
+
},
|
116
|
+
tabsWrapper: {
|
117
|
+
px: 'lg',
|
118
|
+
pt: 'xs'
|
119
|
+
},
|
120
|
+
iconButton: {
|
121
|
+
position: 'absolute',
|
122
|
+
top: 0,
|
123
|
+
right: 0
|
124
|
+
},
|
125
|
+
itemLabel: {
|
126
|
+
fontSize: 'sm',
|
127
|
+
fontWeight: 3,
|
128
|
+
lineHeight: '16px',
|
129
|
+
mb: 'xs'
|
130
|
+
},
|
131
|
+
itemValue: {
|
132
|
+
fontWeight: 0,
|
133
|
+
lineHeight: '18px',
|
134
|
+
variant: 'base',
|
135
|
+
mb: 'md'
|
136
|
+
},
|
137
|
+
listElement: {
|
138
|
+
wrapper: {
|
139
|
+
minHeight: '60px'
|
140
|
+
},
|
141
|
+
iconWrapper: {
|
142
|
+
mr: 'auto',
|
143
|
+
alignItems: 'center'
|
144
|
+
},
|
145
|
+
icon: {
|
146
|
+
mr: 'sm',
|
147
|
+
alignSelf: 'center',
|
148
|
+
color: 'accent.40'
|
149
|
+
},
|
150
|
+
avatar: {
|
151
|
+
width: '25px',
|
152
|
+
height: '25px',
|
153
|
+
mr: 'md'
|
154
|
+
},
|
155
|
+
title: {
|
156
|
+
alignSelf: 'start'
|
157
|
+
},
|
158
|
+
subtitle: {
|
159
|
+
fontSize: 'sm',
|
160
|
+
my: '1px',
|
161
|
+
lineHeight: '16px',
|
162
|
+
alignSelf: 'start'
|
163
|
+
},
|
164
|
+
menuWrapper: {
|
165
|
+
alignSelf: 'center'
|
166
|
+
}
|
167
|
+
}
|
168
|
+
};
|
95
169
|
|
96
170
|
var ListElement = function ListElement(_ref) {
|
97
171
|
var item = _ref.item,
|
98
172
|
onClosePanel = _ref.onClosePanel;
|
99
173
|
return ___EmotionJSX(Box, {
|
100
174
|
isRow: true,
|
101
|
-
|
175
|
+
sx: sx.listElement.wrapper
|
102
176
|
}, ___EmotionJSX(Box, {
|
103
177
|
isRow: true,
|
104
|
-
|
105
|
-
alignItems: "center"
|
178
|
+
sx: sx.listElement.iconWrapper
|
106
179
|
}, item.hasIcon ? ___EmotionJSX(Icon, {
|
107
180
|
icon: item.avatar,
|
108
|
-
alignSelf: "center",
|
109
181
|
size: 24,
|
110
|
-
|
111
|
-
color: "accent.40"
|
182
|
+
sx: sx.listElement.icon
|
112
183
|
}) : ___EmotionJSX(Avatar, {
|
113
|
-
|
114
|
-
sx: {
|
115
|
-
width: '25px',
|
116
|
-
height: '25px'
|
117
|
-
},
|
184
|
+
sx: sx.listElement.avatar,
|
118
185
|
src: item.avatar
|
119
186
|
}), ___EmotionJSX(Box, null, ___EmotionJSX(Text, {
|
120
187
|
variant: "bodyStrong",
|
121
|
-
|
188
|
+
sx: sx.listElement.title
|
122
189
|
}, item.lastName, ", ", item.firstName), ___EmotionJSX(Text, {
|
123
|
-
sx: {
|
124
|
-
fontSize: 'sm',
|
125
|
-
my: '1px',
|
126
|
-
lineHeight: '16px'
|
127
|
-
},
|
128
190
|
variant: "subtitle",
|
129
|
-
|
191
|
+
sx: sx.listElement.subtitle
|
130
192
|
}, item.email))), ___EmotionJSX(Box, {
|
131
193
|
isRow: true,
|
132
|
-
|
194
|
+
sx: sx.listElement.menuWrapper
|
133
195
|
}, ___EmotionJSX(SwitchField, {
|
134
196
|
"aria-label": "active user",
|
135
197
|
isDefaultSelected: true,
|
@@ -186,11 +248,7 @@ export var Default = function Default() {
|
|
186
248
|
};
|
187
249
|
|
188
250
|
return ___EmotionJSX(Box, {
|
189
|
-
|
190
|
-
py: "lg",
|
191
|
-
bg: "accent.99",
|
192
|
-
height: "900px",
|
193
|
-
overflowY: "scroll"
|
251
|
+
sx: sx.wrapper
|
194
252
|
}, ___EmotionJSX(SearchField, {
|
195
253
|
position: "fixed",
|
196
254
|
mb: "sm",
|
@@ -224,18 +282,15 @@ export var Default = function Default() {
|
|
224
282
|
restoreFocus: true,
|
225
283
|
autoFocus: true
|
226
284
|
}, ___EmotionJSX(Box, {
|
227
|
-
|
228
|
-
bg: "accent.99",
|
229
|
-
justifyContent: "center"
|
285
|
+
sx: sx.listElementWrapper
|
230
286
|
}, ___EmotionJSX(ListElement, {
|
231
287
|
item: selectedItemId >= 0 ? items[selectedItemId] : [],
|
232
288
|
onClosePanel: closePanelHandler
|
233
289
|
})), ___EmotionJSX(Separator, {
|
234
290
|
margin: 0,
|
235
|
-
|
291
|
+
sx: sx.separator
|
236
292
|
}), ___EmotionJSX(Box, {
|
237
|
-
|
238
|
-
pt: "xs"
|
293
|
+
sx: sx.tabsWrapper
|
239
294
|
}, ___EmotionJSX(Tabs, {
|
240
295
|
tabListProps: {
|
241
296
|
justifyContent: 'center'
|
@@ -249,73 +304,33 @@ export var Default = function Default() {
|
|
249
304
|
title: "Profile"
|
250
305
|
}, selectedItemId >= 0 && ___EmotionJSX(React.Fragment, null, ___EmotionJSX(IconButton, {
|
251
306
|
variant: "inverted",
|
252
|
-
sx:
|
253
|
-
position: 'absolute',
|
254
|
-
top: 0,
|
255
|
-
right: 0
|
256
|
-
}
|
307
|
+
sx: sx.iconButton
|
257
308
|
}, ___EmotionJSX(PencilIcon, {
|
258
309
|
size: 20
|
259
310
|
})), ___EmotionJSX(Text, {
|
260
|
-
sx:
|
261
|
-
|
262
|
-
fontWeight: 3,
|
263
|
-
lineHeight: '16px'
|
264
|
-
},
|
265
|
-
variant: "base",
|
266
|
-
mb: "xs"
|
311
|
+
sx: sx.itemLabel,
|
312
|
+
variant: "base"
|
267
313
|
}, "Full Name"), ___EmotionJSX(Text, {
|
268
|
-
sx:
|
269
|
-
|
270
|
-
lineHeight: '18px'
|
271
|
-
},
|
272
|
-
variant: "base",
|
273
|
-
mb: "md"
|
314
|
+
sx: sx.itemValue,
|
315
|
+
variant: "base"
|
274
316
|
}, items[selectedItemId].firstName, " ", items[selectedItemId].lastName), ___EmotionJSX(Text, {
|
275
|
-
sx:
|
276
|
-
|
277
|
-
fontWeight: 3,
|
278
|
-
lineHeight: '16px'
|
279
|
-
},
|
280
|
-
variant: "base",
|
281
|
-
mb: "xs"
|
317
|
+
sx: sx.itemLabel,
|
318
|
+
variant: "base"
|
282
319
|
}, "First Name"), ___EmotionJSX(Text, {
|
283
|
-
sx:
|
284
|
-
|
285
|
-
lineHeight: '18px'
|
286
|
-
},
|
287
|
-
variant: "base",
|
288
|
-
mb: "md"
|
320
|
+
sx: sx.itemValue,
|
321
|
+
variant: "base"
|
289
322
|
}, items[selectedItemId].firstName), ___EmotionJSX(Text, {
|
290
|
-
sx:
|
291
|
-
|
292
|
-
fontWeight: 3,
|
293
|
-
lineHeight: '16px'
|
294
|
-
},
|
295
|
-
variant: "base",
|
296
|
-
mb: "xs"
|
323
|
+
sx: sx.itemLabel,
|
324
|
+
variant: "base"
|
297
325
|
}, "Last Name"), ___EmotionJSX(Text, {
|
298
|
-
sx:
|
299
|
-
|
300
|
-
lineHeight: '18px'
|
301
|
-
},
|
302
|
-
variant: "base",
|
303
|
-
mb: "md"
|
326
|
+
sx: sx.itemValue,
|
327
|
+
variant: "base"
|
304
328
|
}, items[selectedItemId].lastName), ___EmotionJSX(Text, {
|
305
|
-
sx:
|
306
|
-
|
307
|
-
fontWeight: 3,
|
308
|
-
lineHeight: '16px'
|
309
|
-
},
|
310
|
-
variant: "base",
|
311
|
-
mb: "xs"
|
329
|
+
sx: sx.itemLabel,
|
330
|
+
variant: "base"
|
312
331
|
}, "Email"), ___EmotionJSX(Text, {
|
313
|
-
sx:
|
314
|
-
|
315
|
-
lineHeight: '18px'
|
316
|
-
},
|
317
|
-
variant: "base",
|
318
|
-
mb: "md"
|
332
|
+
sx: sx.itemValue,
|
333
|
+
variant: "base"
|
319
334
|
}, items[selectedItemId].email))), ___EmotionJSX(Tab, {
|
320
335
|
title: "Group Memberships"
|
321
336
|
}, ___EmotionJSX(Text, null, "Group Memberships")), ___EmotionJSX(Tab, {
|
@@ -23,6 +23,13 @@ export default {
|
|
23
23
|
}
|
24
24
|
}
|
25
25
|
};
|
26
|
+
var sx = {
|
27
|
+
showHideButton: {
|
28
|
+
width: 'fit-content',
|
29
|
+
marginLeft: 'sm',
|
30
|
+
alignSelf: 'auto'
|
31
|
+
}
|
32
|
+
};
|
26
33
|
export var Default = function Default(_ref) {
|
27
34
|
var _context;
|
28
35
|
|
@@ -52,11 +59,7 @@ export var Default = function Default(_ref) {
|
|
52
59
|
onPress: function onPress() {
|
53
60
|
return setIsMasked(!isMasked);
|
54
61
|
},
|
55
|
-
sx:
|
56
|
-
width: 'fit-content',
|
57
|
-
marginLeft: 10,
|
58
|
-
alignSelf: 'auto'
|
59
|
-
}
|
62
|
+
sx: sx.showHideButton
|
60
63
|
}, ___EmotionJSX(Icon, {
|
61
64
|
icon: isMasked ? EyeOffIcon : EyeIcon
|
62
65
|
}))));
|
@@ -4,10 +4,13 @@ import { jsx as ___EmotionJSX } from "@emotion/react";
|
|
4
4
|
export default {
|
5
5
|
title: 'Recipes/NeutralCheckboxField'
|
6
6
|
};
|
7
|
+
var sx = {
|
8
|
+
checkboxColor: {
|
9
|
+
color: 'neutral.10'
|
10
|
+
}
|
11
|
+
};
|
7
12
|
export var Default = function Default() {
|
8
13
|
return ___EmotionJSX(CheckboxField, {
|
9
|
-
|
10
|
-
color: 'neutral.10'
|
11
|
-
}
|
14
|
+
sx: sx.checkboxColor
|
12
15
|
}, "Click me");
|
13
16
|
};
|
@@ -19,6 +19,29 @@ var items = [{
|
|
19
19
|
name: 'Third Option',
|
20
20
|
id: '3'
|
21
21
|
}];
|
22
|
+
var sx = {
|
23
|
+
actionIcon: {
|
24
|
+
color: 'neutral.30'
|
25
|
+
},
|
26
|
+
dragVerticalIcon: {
|
27
|
+
color: 'neutral.50'
|
28
|
+
},
|
29
|
+
iconButton: {
|
30
|
+
ml: 'xs'
|
31
|
+
},
|
32
|
+
iconButtonToggleContainer: {
|
33
|
+
mx: 'sm',
|
34
|
+
flexShrink: 0
|
35
|
+
},
|
36
|
+
iconContainer: {
|
37
|
+
alignItems: 'center',
|
38
|
+
ml: '12px',
|
39
|
+
mr: '12px'
|
40
|
+
},
|
41
|
+
outerContainer: {
|
42
|
+
alignItems: 'center'
|
43
|
+
}
|
44
|
+
};
|
22
45
|
export var Default = function Default() {
|
23
46
|
var CustomOnSvg = function CustomOnSvg(props) {
|
24
47
|
return ___EmotionJSX("svg", _extends({
|
@@ -66,24 +89,22 @@ export var Default = function Default() {
|
|
66
89
|
};
|
67
90
|
|
68
91
|
return ___EmotionJSX(React.Fragment, null, ___EmotionJSX(Box, {
|
69
|
-
sx:
|
70
|
-
alignItems: 'center'
|
71
|
-
},
|
92
|
+
sx: sx.outerContainer,
|
72
93
|
isRow: true
|
73
94
|
}, ___EmotionJSX(Icon, {
|
74
95
|
icon: DragVerticalIcon,
|
75
96
|
size: 25,
|
76
|
-
|
97
|
+
sx: sx.dragVerticalIcon
|
77
98
|
}), ___EmotionJSX(ComboBoxField, {
|
78
99
|
items: items,
|
79
100
|
defaultSelectedKey: "Last Name",
|
101
|
+
"aria-label": "Row one value",
|
80
102
|
containerProps: {
|
81
103
|
width: '275px'
|
82
104
|
},
|
83
105
|
labelProps: {
|
84
106
|
mb: 0
|
85
107
|
},
|
86
|
-
"aria-label": "Row one value",
|
87
108
|
controlProps: {
|
88
109
|
'aria-label': 'test'
|
89
110
|
}
|
@@ -93,10 +114,7 @@ export var Default = function Default() {
|
|
93
114
|
"data-id": item.name
|
94
115
|
}, item.name);
|
95
116
|
}), ___EmotionJSX(Box, {
|
96
|
-
sx:
|
97
|
-
mx: 'sm',
|
98
|
-
flexShrink: 0
|
99
|
-
}
|
117
|
+
sx: sx.iconButtonToggleContainer
|
100
118
|
}, ___EmotionJSX(IconButtonToggle, {
|
101
119
|
toggledIcon: CustomOnSvg,
|
102
120
|
defaultIcon: CustomOffSvg,
|
@@ -126,35 +144,29 @@ export var Default = function Default() {
|
|
126
144
|
}, item.name);
|
127
145
|
}), ___EmotionJSX(Box, {
|
128
146
|
isRow: true,
|
129
|
-
|
130
|
-
sx: {
|
131
|
-
marginLeft: '12px',
|
132
|
-
marginRight: '12px'
|
133
|
-
}
|
147
|
+
sx: sx.iconContainer
|
134
148
|
}, ___EmotionJSX(IconButton, {
|
135
149
|
"aria-label": "Edit"
|
136
150
|
}, ___EmotionJSX(Icon, {
|
137
151
|
icon: CogsIcon,
|
138
|
-
|
152
|
+
sx: sx.actionIcon,
|
139
153
|
size: 20,
|
140
154
|
title: "edit icon"
|
141
155
|
})), ___EmotionJSX(IconButton, {
|
142
|
-
|
156
|
+
sx: sx.iconButton,
|
143
157
|
"aria-label": "Delete"
|
144
158
|
}, ___EmotionJSX(Icon, {
|
145
159
|
icon: DeleteIcon,
|
146
|
-
|
160
|
+
sx: sx.actionIcon,
|
147
161
|
size: 20,
|
148
162
|
title: "delete icon"
|
149
163
|
})))), ___EmotionJSX(Box, {
|
150
|
-
sx:
|
151
|
-
alignItems: 'center'
|
152
|
-
},
|
164
|
+
sx: sx.outerContainer,
|
153
165
|
isRow: true
|
154
166
|
}, ___EmotionJSX(Icon, {
|
155
167
|
icon: DragVerticalIcon,
|
156
168
|
size: 25,
|
157
|
-
|
169
|
+
sx: sx.dragVerticalIcon
|
158
170
|
}), ___EmotionJSX(ComboBoxField, {
|
159
171
|
items: items,
|
160
172
|
defaultSelectedKey: "Last Name",
|
@@ -174,10 +186,7 @@ export var Default = function Default() {
|
|
174
186
|
"data-id": item.name
|
175
187
|
}, item.name);
|
176
188
|
}), ___EmotionJSX(Box, {
|
177
|
-
sx:
|
178
|
-
mx: 'sm',
|
179
|
-
flexShrink: 0
|
180
|
-
}
|
189
|
+
sx: sx.iconButtonToggleContainer
|
181
190
|
}, ___EmotionJSX(IconButtonToggle, {
|
182
191
|
toggledIcon: CustomRightSvg,
|
183
192
|
defaultIcon: CustomRightSvg,
|
@@ -207,24 +216,20 @@ export var Default = function Default() {
|
|
207
216
|
}, item.name);
|
208
217
|
}), ___EmotionJSX(Box, {
|
209
218
|
isRow: true,
|
210
|
-
|
211
|
-
sx: {
|
212
|
-
marginLeft: '12px',
|
213
|
-
marginRight: '12px'
|
214
|
-
}
|
219
|
+
sx: sx.iconContainer
|
215
220
|
}, ___EmotionJSX(IconButton, {
|
216
221
|
"aria-label": "Edit"
|
217
222
|
}, ___EmotionJSX(Icon, {
|
218
223
|
icon: CogsIcon,
|
219
|
-
|
224
|
+
sx: sx.actionIcon,
|
220
225
|
size: 20,
|
221
226
|
title: "edit icon"
|
222
227
|
})), ___EmotionJSX(IconButton, {
|
223
|
-
|
228
|
+
sx: sx.iconButton,
|
224
229
|
"aria-label": "Delete"
|
225
230
|
}, ___EmotionJSX(Icon, {
|
226
231
|
icon: DeleteIcon,
|
227
|
-
|
232
|
+
sx: sx.actionIcon,
|
228
233
|
size: 20,
|
229
234
|
title: "delete icon"
|
230
235
|
})))));
|
@@ -0,0 +1,53 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import PlusIcon from 'mdi-react/PlusIcon';
|
3
|
+
import { Box, Button, IconButton, Icon, Text } from '../index';
|
4
|
+
import { jsx as ___EmotionJSX } from "@emotion/react";
|
5
|
+
export default {
|
6
|
+
title: 'Recipes/Page Header'
|
7
|
+
};
|
8
|
+
export var Default = function Default() {
|
9
|
+
var heading = 'Title of the Page';
|
10
|
+
var description = 'The description of the page. The description of the page. The description of the page. The description of the page. The description of the page. The description of the page. The description of the page. The description of the page. The description of the page.';
|
11
|
+
return ___EmotionJSX(Box, null, ___EmotionJSX(Box, null, ___EmotionJSX(Box, {
|
12
|
+
align: "center",
|
13
|
+
isRow: true,
|
14
|
+
mb: "xs",
|
15
|
+
role: "heading",
|
16
|
+
"aria-level": "1"
|
17
|
+
}, ___EmotionJSX(Text, {
|
18
|
+
variant: "title",
|
19
|
+
fontWeight: 3
|
20
|
+
}, heading), ___EmotionJSX(Button, {
|
21
|
+
variant: "inlinePrimary",
|
22
|
+
ml: "sm"
|
23
|
+
}, ___EmotionJSX(Icon, {
|
24
|
+
icon: PlusIcon,
|
25
|
+
color: "white",
|
26
|
+
size: 13,
|
27
|
+
mr: "4px"
|
28
|
+
}), "\xA0", "Add")), ___EmotionJSX(Text, {
|
29
|
+
variant: "bodyWeak"
|
30
|
+
}, description)), ___EmotionJSX(Box, {
|
31
|
+
mt: "xl"
|
32
|
+
}, ___EmotionJSX(Box, {
|
33
|
+
align: "center",
|
34
|
+
isRow: true,
|
35
|
+
mb: "xs",
|
36
|
+
role: "heading",
|
37
|
+
"aria-level": "1"
|
38
|
+
}, ___EmotionJSX(Text, {
|
39
|
+
variant: "title",
|
40
|
+
fontWeight: 3
|
41
|
+
}, heading), ___EmotionJSX(IconButton, {
|
42
|
+
"aria-label": "icon button",
|
43
|
+
ml: "sm",
|
44
|
+
mt: "3px",
|
45
|
+
variant: "inverted"
|
46
|
+
}, ___EmotionJSX(Icon, {
|
47
|
+
icon: PlusIcon,
|
48
|
+
color: "white",
|
49
|
+
size: 13
|
50
|
+
}))), ___EmotionJSX(Text, {
|
51
|
+
variant: "bodyWeak"
|
52
|
+
}, description)));
|
53
|
+
};
|