@ceed/cds 1.34.0 → 1.35.0
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/dist/components/Accordions/Accordions.d.ts +1 -0
- package/dist/components/Alert/Alert.d.ts +5 -5
- package/dist/components/Autocomplete/Autocomplete.d.ts +2 -2
- package/dist/components/Avatar/Avatar.d.ts +7 -17
- package/dist/components/Box/Box.d.ts +1 -0
- package/dist/components/Breadcrumbs/Breadcrumbs.d.ts +6 -5
- package/dist/components/Button/Button.d.ts +3 -2
- package/dist/components/Calendar/Calendar.d.ts +1 -0
- package/dist/components/Card/Card.d.ts +1 -0
- package/dist/components/Checkbox/Checkbox.d.ts +1 -0
- package/dist/components/Chip/Chip.d.ts +1 -0
- package/dist/components/Container/Container.d.ts +6 -1
- package/dist/components/CurrencyInput/CurrencyInput.d.ts +1 -1
- package/dist/components/DialogActions/DialogActions.d.ts +1 -0
- package/dist/components/DialogContent/DialogContent.d.ts +1 -0
- package/dist/components/DialogFrame/DialogFrame.d.ts +1 -1
- package/dist/components/DialogTitle/DialogTitle.d.ts +1 -0
- package/dist/components/Divider/Divider.d.ts +1 -0
- package/dist/components/Drawer/Drawer.d.ts +1 -0
- package/dist/components/Dropdown/Dropdown.d.ts +28 -1
- package/dist/components/FormControl/FormControl.d.ts +1 -0
- package/dist/components/FormHelperText/FormHelperText.d.ts +1 -0
- package/dist/components/FormLabel/FormLabel.d.ts +1 -0
- package/dist/components/Grid/Grid.d.ts +1 -0
- package/dist/components/IconButton/IconButton.d.ts +3 -2
- package/dist/components/IconMenuButton/IconMenuButton.d.ts +7 -6
- package/dist/components/InfoSign/InfoSign.d.ts +3 -2
- package/dist/components/Input/Input.d.ts +8 -22
- package/dist/components/InsetDrawer/InsetDrawer.d.ts +1 -0
- package/dist/components/Markdown/Markdown.d.ts +9 -24
- package/dist/components/Menu/Menu.d.ts +2 -1
- package/dist/components/MenuButton/MenuButton.d.ts +10 -8
- package/dist/components/Modal/Modal.d.ts +4 -2
- package/dist/components/NavigationGroup/NavigationGroup.d.ts +3 -2
- package/dist/components/NavigationItem/NavigationItem.d.ts +3 -2
- package/dist/components/Navigator/Navigator.d.ts +5 -4
- package/dist/components/Pagination/Pagination.d.ts +1 -1
- package/dist/components/Radio/Radio.d.ts +1 -0
- package/dist/components/RadioList/RadioList.d.ts +3 -2
- package/dist/components/SearchBar/SearchBar.d.ts +6 -5
- package/dist/components/SearchBar/index.d.ts +3 -2
- package/dist/components/Select/Select.d.ts +12 -10
- package/dist/components/Sheet/Sheet.d.ts +1 -0
- package/dist/components/Stack/Stack.d.ts +1 -0
- package/dist/components/Stepper/Stepper.d.ts +2 -1
- package/dist/components/Switch/Switch.d.ts +1 -0
- package/dist/components/Table/Table.d.ts +7 -5
- package/dist/components/Tabs/Tabs.d.ts +1 -0
- package/dist/components/Textarea/Textarea.d.ts +8 -20
- package/dist/components/Tooltip/Tooltip.d.ts +1 -0
- package/dist/components/Typography/Typography.d.ts +1 -0
- package/dist/components/Uploader/Uploader.d.ts +18 -17
- package/dist/components/data-display/Avatar.md +60 -72
- package/dist/components/data-display/Badge.md +197 -181
- package/dist/components/data-display/Chip.md +164 -142
- package/dist/components/data-display/DataTable.md +843 -338
- package/dist/components/data-display/InfoSign.md +1 -3
- package/dist/components/data-display/Markdown.md +93 -125
- package/dist/components/data-display/Table.md +1453 -1007
- package/dist/components/data-display/Typography.md +113 -116
- package/dist/components/feedback/Alert.md +80 -86
- package/dist/components/feedback/CircularProgress.md +32 -36
- package/dist/components/feedback/Dialog.md +25 -17
- package/dist/components/feedback/Modal.md +296 -264
- package/dist/components/feedback/Skeleton.md +125 -89
- package/dist/components/index.d.ts +63 -4
- package/dist/components/inputs/Autocomplete.md +191 -95
- package/dist/components/inputs/Button.md +83 -83
- package/dist/components/inputs/ButtonGroup.md +195 -185
- package/dist/components/inputs/Calendar.md +25 -28
- package/dist/components/inputs/Checkbox.md +11 -29
- package/dist/components/inputs/CurrencyInput.md +4 -4
- package/dist/components/inputs/DatePicker.md +229 -110
- package/dist/components/inputs/DateRangePicker.md +248 -137
- package/dist/components/inputs/FilterableCheckboxGroup.md +115 -55
- package/dist/components/inputs/FormControl.md +75 -69
- package/dist/components/inputs/IconButton.md +229 -205
- package/dist/components/inputs/Input.md +131 -98
- package/dist/components/inputs/MonthPicker.md +186 -84
- package/dist/components/inputs/MonthRangePicker.md +73 -49
- package/dist/components/inputs/PercentageInput.md +15 -31
- package/dist/components/inputs/RadioButton.md +320 -256
- package/dist/components/inputs/RadioList.md +66 -50
- package/dist/components/inputs/RadioTileGroup.md +287 -170
- package/dist/components/inputs/SearchBar.md +154 -55
- package/dist/components/inputs/Select.md +106 -95
- package/dist/components/inputs/Slider.md +153 -102
- package/dist/components/inputs/Switch.md +193 -138
- package/dist/components/inputs/Textarea.md +15 -20
- package/dist/components/inputs/Uploader/Uploader.md +68 -39
- package/dist/components/layout/Box.md +841 -662
- package/dist/components/layout/Container.md +3 -11
- package/dist/components/layout/Grid.md +480 -394
- package/dist/components/layout/Stack.md +739 -566
- package/dist/components/navigation/Breadcrumbs.md +4 -4
- package/dist/components/navigation/Drawer.md +34 -25
- package/dist/components/navigation/Dropdown.md +745 -408
- package/dist/components/navigation/IconMenuButton.md +14 -6
- package/dist/components/navigation/InsetDrawer.md +8 -13
- package/dist/components/navigation/Link.md +1 -2
- package/dist/components/navigation/Menu.md +623 -502
- package/dist/components/navigation/MenuButton.md +18 -10
- package/dist/components/navigation/NavigationGroup.md +19 -50
- package/dist/components/navigation/NavigationItem.md +6 -6
- package/dist/components/navigation/Navigator.md +26 -28
- package/dist/components/navigation/Pagination.md +86 -75
- package/dist/components/navigation/Stepper.md +2 -12
- package/dist/components/navigation/Tabs.md +48 -36
- package/dist/components/surfaces/Accordions.md +89 -172
- package/dist/components/surfaces/Card.md +1094 -709
- package/dist/components/surfaces/Divider.md +562 -412
- package/dist/components/surfaces/Sheet.md +700 -518
- package/dist/guides/ThemeProvider.md +8 -8
- package/dist/index.browser.js +4 -4
- package/dist/index.browser.js.map +4 -4
- package/dist/index.cjs +1079 -1052
- package/dist/index.d.ts +2 -1
- package/dist/index.js +725 -690
- package/framer/index.js +1 -1
- package/package.json +32 -35
|
@@ -8,22 +8,26 @@ The Table component is a foundational table component for displaying structured
|
|
|
8
8
|
|
|
9
9
|
```tsx
|
|
10
10
|
<Table aria-label="basic table" {...args}>
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
11
|
+
<TableHead headCells={headCells} />
|
|
12
|
+
<TableBody
|
|
13
|
+
rows={rows}
|
|
14
|
+
rowOptions={{
|
|
15
|
+
calories: {
|
|
16
|
+
numeric: true
|
|
17
|
+
},
|
|
18
|
+
fat: {
|
|
19
|
+
numeric: true
|
|
20
|
+
},
|
|
21
|
+
carbs: {
|
|
22
|
+
numeric: true
|
|
23
|
+
},
|
|
24
|
+
protein: {
|
|
25
|
+
numeric: true
|
|
26
|
+
}
|
|
27
|
+
}}
|
|
28
|
+
cellOrder={["dessert", "calories", "fat", "carbs", "protein"]}
|
|
29
|
+
/>
|
|
30
|
+
</Table>
|
|
27
31
|
```
|
|
28
32
|
|
|
29
33
|
| Field | Description | Default |
|
|
@@ -51,10 +55,7 @@ function MyComponent() {
|
|
|
51
55
|
return (
|
|
52
56
|
<Table>
|
|
53
57
|
<TableHead headCells={headCells} />
|
|
54
|
-
<TableBody
|
|
55
|
-
rows={rows}
|
|
56
|
-
cellOrder={['name', 'email', 'role', 'joinDate']}
|
|
57
|
-
/>
|
|
58
|
+
<TableBody rows={rows} cellOrder={['name', 'email', 'role', 'joinDate']} />
|
|
58
59
|
</Table>
|
|
59
60
|
);
|
|
60
61
|
}
|
|
@@ -68,22 +69,26 @@ The most basic Table usage patterns.
|
|
|
68
69
|
|
|
69
70
|
```tsx
|
|
70
71
|
<Table aria-label="basic table" {...args}>
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
72
|
+
<TableHead headCells={headCells} />
|
|
73
|
+
<TableBody
|
|
74
|
+
rows={rows}
|
|
75
|
+
rowOptions={{
|
|
76
|
+
calories: {
|
|
77
|
+
numeric: true
|
|
78
|
+
},
|
|
79
|
+
fat: {
|
|
80
|
+
numeric: true
|
|
81
|
+
},
|
|
82
|
+
carbs: {
|
|
83
|
+
numeric: true
|
|
84
|
+
},
|
|
85
|
+
protein: {
|
|
86
|
+
numeric: true
|
|
87
|
+
}
|
|
88
|
+
}}
|
|
89
|
+
cellOrder={["dessert", "calories", "fat", "carbs", "protein"]}
|
|
90
|
+
/>
|
|
91
|
+
</Table>
|
|
87
92
|
```
|
|
88
93
|
|
|
89
94
|
### With Hover Effect
|
|
@@ -103,22 +108,27 @@ A selectable table that includes checkboxes.
|
|
|
103
108
|
|
|
104
109
|
```tsx
|
|
105
110
|
<Table aria-label="checkbox table" hoverRow {...args}>
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
111
|
+
<TableHead showCheckbox headCells={headCells} />
|
|
112
|
+
<TableBody
|
|
113
|
+
showCheckbox
|
|
114
|
+
rows={rows}
|
|
115
|
+
rowOptions={{
|
|
116
|
+
calories: {
|
|
117
|
+
numeric: true
|
|
118
|
+
},
|
|
119
|
+
fat: {
|
|
120
|
+
numeric: true
|
|
121
|
+
},
|
|
122
|
+
carbs: {
|
|
123
|
+
numeric: true
|
|
124
|
+
},
|
|
125
|
+
protein: {
|
|
126
|
+
numeric: true
|
|
127
|
+
}
|
|
128
|
+
}}
|
|
129
|
+
cellOrder={["dessert", "calories", "fat", "carbs", "protein"]}
|
|
130
|
+
/>
|
|
131
|
+
</Table>
|
|
122
132
|
```
|
|
123
133
|
|
|
124
134
|
## Common Use Cases
|
|
@@ -129,175 +139,207 @@ A table for user management. It includes avatars, role labels, status indicators
|
|
|
129
139
|
|
|
130
140
|
```tsx
|
|
131
141
|
<Table aria-label="user management table" hoverRow>
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
142
|
+
<thead>
|
|
143
|
+
<tr>
|
|
144
|
+
<th
|
|
145
|
+
style={{
|
|
146
|
+
width: "30%"
|
|
147
|
+
}}
|
|
148
|
+
>
|
|
149
|
+
사용자
|
|
150
|
+
</th>
|
|
151
|
+
<th
|
|
152
|
+
style={{
|
|
153
|
+
width: "25%"
|
|
154
|
+
}}
|
|
155
|
+
>
|
|
156
|
+
이메일
|
|
157
|
+
</th>
|
|
158
|
+
<th
|
|
159
|
+
style={{
|
|
160
|
+
width: "15%"
|
|
161
|
+
}}
|
|
162
|
+
>
|
|
163
|
+
역할
|
|
164
|
+
</th>
|
|
165
|
+
<th
|
|
166
|
+
style={{
|
|
167
|
+
width: "15%"
|
|
168
|
+
}}
|
|
169
|
+
>
|
|
170
|
+
상태
|
|
171
|
+
</th>
|
|
172
|
+
<th
|
|
173
|
+
style={{
|
|
174
|
+
width: "15%"
|
|
175
|
+
}}
|
|
176
|
+
>
|
|
177
|
+
작업
|
|
178
|
+
</th>
|
|
179
|
+
</tr>
|
|
180
|
+
</thead>
|
|
181
|
+
<tbody>
|
|
182
|
+
<tr>
|
|
183
|
+
<td>
|
|
184
|
+
<Stack direction="row" spacing={2} alignItems="center">
|
|
185
|
+
<Avatar size="sm" variant="soft" color="primary">
|
|
186
|
+
김
|
|
187
|
+
</Avatar>
|
|
188
|
+
<Stack spacing={0}>
|
|
189
|
+
<Typography level="title-sm">김철수</Typography>
|
|
190
|
+
<Typography level="body-xs" color="neutral">
|
|
191
|
+
kim@example.com
|
|
192
|
+
</Typography>
|
|
193
|
+
</Stack>
|
|
163
194
|
</Stack>
|
|
164
|
-
</
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
</
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
</
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
<
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
<
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
</
|
|
195
|
+
</td>
|
|
196
|
+
<td>kim@example.com</td>
|
|
197
|
+
<td>
|
|
198
|
+
<Chip size="sm" variant="soft" color="primary">
|
|
199
|
+
관리자
|
|
200
|
+
</Chip>
|
|
201
|
+
</td>
|
|
202
|
+
<td>
|
|
203
|
+
<Chip size="sm" variant="soft" color="success">
|
|
204
|
+
활성
|
|
205
|
+
</Chip>
|
|
206
|
+
</td>
|
|
207
|
+
<td>
|
|
208
|
+
<Stack direction="row" spacing={1}>
|
|
209
|
+
<IconButton size="sm" variant="plain">
|
|
210
|
+
<EditIcon />
|
|
211
|
+
</IconButton>
|
|
212
|
+
<IconButton size="sm" variant="plain" color="danger">
|
|
213
|
+
<DeleteIcon />
|
|
214
|
+
</IconButton>
|
|
215
|
+
<Dropdown>
|
|
216
|
+
<MenuButton
|
|
217
|
+
variant="plain"
|
|
218
|
+
size="sm"
|
|
219
|
+
sx={{
|
|
220
|
+
minHeight: "auto",
|
|
221
|
+
p: 1
|
|
222
|
+
}}
|
|
223
|
+
>
|
|
224
|
+
<MoreVertIcon />
|
|
225
|
+
</MenuButton>
|
|
226
|
+
<Menu placement="bottom-end">
|
|
227
|
+
<MenuItem>상세 보기</MenuItem>
|
|
228
|
+
<MenuItem>권한 변경</MenuItem>
|
|
229
|
+
<MenuItem color="danger">계정 비활성화</MenuItem>
|
|
230
|
+
</Menu>
|
|
231
|
+
</Dropdown>
|
|
232
|
+
</Stack>
|
|
233
|
+
</td>
|
|
234
|
+
</tr>
|
|
235
|
+
<tr>
|
|
236
|
+
<td>
|
|
237
|
+
<Stack direction="row" spacing={2} alignItems="center">
|
|
238
|
+
<Avatar size="sm" variant="soft" color="primary">
|
|
239
|
+
이
|
|
240
|
+
</Avatar>
|
|
241
|
+
<Stack spacing={0}>
|
|
242
|
+
<Typography level="title-sm">이영희</Typography>
|
|
243
|
+
<Typography level="body-xs" color="neutral">
|
|
244
|
+
lee@example.com
|
|
245
|
+
</Typography>
|
|
246
|
+
</Stack>
|
|
247
|
+
</Stack>
|
|
248
|
+
</td>
|
|
249
|
+
<td>lee@example.com</td>
|
|
250
|
+
<td>
|
|
251
|
+
<Chip size="sm" variant="soft" color="neutral">
|
|
252
|
+
사용자
|
|
253
|
+
</Chip>
|
|
254
|
+
</td>
|
|
255
|
+
<td>
|
|
256
|
+
<Chip size="sm" variant="soft" color="neutral">
|
|
257
|
+
비활성
|
|
258
|
+
</Chip>
|
|
259
|
+
</td>
|
|
260
|
+
<td>
|
|
261
|
+
<Stack direction="row" spacing={1}>
|
|
262
|
+
<IconButton size="sm" variant="plain">
|
|
263
|
+
<EditIcon />
|
|
264
|
+
</IconButton>
|
|
265
|
+
<IconButton size="sm" variant="plain" color="danger">
|
|
266
|
+
<DeleteIcon />
|
|
267
|
+
</IconButton>
|
|
268
|
+
<Dropdown>
|
|
269
|
+
<MenuButton
|
|
270
|
+
variant="plain"
|
|
271
|
+
size="sm"
|
|
272
|
+
sx={{
|
|
273
|
+
minHeight: "auto",
|
|
274
|
+
p: 1
|
|
275
|
+
}}
|
|
276
|
+
>
|
|
277
|
+
<MoreVertIcon />
|
|
278
|
+
</MenuButton>
|
|
279
|
+
<Menu placement="bottom-end">
|
|
280
|
+
<MenuItem>상세 보기</MenuItem>
|
|
281
|
+
<MenuItem>권한 변경</MenuItem>
|
|
282
|
+
<MenuItem color="danger">계정 비활성화</MenuItem>
|
|
283
|
+
</Menu>
|
|
284
|
+
</Dropdown>
|
|
285
|
+
</Stack>
|
|
286
|
+
</td>
|
|
287
|
+
</tr>
|
|
288
|
+
<tr>
|
|
289
|
+
<td>
|
|
290
|
+
<Stack direction="row" spacing={2} alignItems="center">
|
|
291
|
+
<Avatar size="sm" variant="soft" color="primary">
|
|
292
|
+
박
|
|
293
|
+
</Avatar>
|
|
294
|
+
<Stack spacing={0}>
|
|
295
|
+
<Typography level="title-sm">박민수</Typography>
|
|
296
|
+
<Typography level="body-xs" color="neutral">
|
|
297
|
+
park@example.com
|
|
298
|
+
</Typography>
|
|
299
|
+
</Stack>
|
|
300
|
+
</Stack>
|
|
301
|
+
</td>
|
|
302
|
+
<td>park@example.com</td>
|
|
303
|
+
<td>
|
|
304
|
+
<Chip size="sm" variant="soft" color="warning">
|
|
305
|
+
편집자
|
|
306
|
+
</Chip>
|
|
307
|
+
</td>
|
|
308
|
+
<td>
|
|
309
|
+
<Chip size="sm" variant="soft" color="success">
|
|
310
|
+
활성
|
|
311
|
+
</Chip>
|
|
312
|
+
</td>
|
|
313
|
+
<td>
|
|
314
|
+
<Stack direction="row" spacing={1}>
|
|
315
|
+
<IconButton size="sm" variant="plain">
|
|
316
|
+
<EditIcon />
|
|
317
|
+
</IconButton>
|
|
318
|
+
<IconButton size="sm" variant="plain" color="danger">
|
|
319
|
+
<DeleteIcon />
|
|
320
|
+
</IconButton>
|
|
321
|
+
<Dropdown>
|
|
322
|
+
<MenuButton
|
|
323
|
+
variant="plain"
|
|
324
|
+
size="sm"
|
|
325
|
+
sx={{
|
|
326
|
+
minHeight: "auto",
|
|
327
|
+
p: 1
|
|
328
|
+
}}
|
|
329
|
+
>
|
|
330
|
+
<MoreVertIcon />
|
|
331
|
+
</MenuButton>
|
|
332
|
+
<Menu placement="bottom-end">
|
|
333
|
+
<MenuItem>상세 보기</MenuItem>
|
|
334
|
+
<MenuItem>권한 변경</MenuItem>
|
|
335
|
+
<MenuItem color="danger">계정 비활성화</MenuItem>
|
|
336
|
+
</Menu>
|
|
337
|
+
</Dropdown>
|
|
338
|
+
</Stack>
|
|
339
|
+
</td>
|
|
340
|
+
</tr>
|
|
341
|
+
</tbody>
|
|
342
|
+
</Table>
|
|
301
343
|
```
|
|
302
344
|
|
|
303
345
|
### Product Inventory Table
|
|
@@ -306,117 +348,186 @@ A table for product inventory management. It includes stock status, price displa
|
|
|
306
348
|
|
|
307
349
|
```tsx
|
|
308
350
|
<Table aria-label="product inventory table" hoverRow>
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
</
|
|
418
|
-
|
|
419
|
-
|
|
351
|
+
<thead>
|
|
352
|
+
<tr>
|
|
353
|
+
<th
|
|
354
|
+
style={{
|
|
355
|
+
width: "25%"
|
|
356
|
+
}}
|
|
357
|
+
>
|
|
358
|
+
제품명
|
|
359
|
+
</th>
|
|
360
|
+
<th
|
|
361
|
+
style={{
|
|
362
|
+
width: "15%"
|
|
363
|
+
}}
|
|
364
|
+
>
|
|
365
|
+
카테고리
|
|
366
|
+
</th>
|
|
367
|
+
<th
|
|
368
|
+
style={{
|
|
369
|
+
width: "10%",
|
|
370
|
+
textAlign: "right"
|
|
371
|
+
}}
|
|
372
|
+
>
|
|
373
|
+
재고
|
|
374
|
+
</th>
|
|
375
|
+
<th
|
|
376
|
+
style={{
|
|
377
|
+
width: "15%",
|
|
378
|
+
textAlign: "right"
|
|
379
|
+
}}
|
|
380
|
+
>
|
|
381
|
+
가격
|
|
382
|
+
</th>
|
|
383
|
+
<th
|
|
384
|
+
style={{
|
|
385
|
+
width: "15%"
|
|
386
|
+
}}
|
|
387
|
+
>
|
|
388
|
+
상태
|
|
389
|
+
</th>
|
|
390
|
+
<th
|
|
391
|
+
style={{
|
|
392
|
+
width: "20%"
|
|
393
|
+
}}
|
|
394
|
+
>
|
|
395
|
+
진행률
|
|
396
|
+
</th>
|
|
397
|
+
</tr>
|
|
398
|
+
</thead>
|
|
399
|
+
<tbody>
|
|
400
|
+
<tr>
|
|
401
|
+
<td>MacBook Pro 16"</td>
|
|
402
|
+
<td>노트북</td>
|
|
403
|
+
<td
|
|
404
|
+
style={{
|
|
405
|
+
textAlign: "right"
|
|
406
|
+
}}
|
|
407
|
+
>
|
|
408
|
+
25
|
|
409
|
+
</td>
|
|
410
|
+
<td
|
|
411
|
+
style={{
|
|
412
|
+
textAlign: "right"
|
|
413
|
+
}}
|
|
414
|
+
>
|
|
415
|
+
₩2,590,000
|
|
416
|
+
</td>
|
|
417
|
+
<td>
|
|
418
|
+
<Chip size="sm" variant="soft" color="success">
|
|
419
|
+
재고 있음
|
|
420
|
+
</Chip>
|
|
421
|
+
</td>
|
|
422
|
+
<td>
|
|
423
|
+
<Box
|
|
424
|
+
sx={{
|
|
425
|
+
display: "flex",
|
|
426
|
+
alignItems: "center",
|
|
427
|
+
gap: 2,
|
|
428
|
+
minWidth: 120
|
|
429
|
+
}}
|
|
430
|
+
>
|
|
431
|
+
<LinearProgress
|
|
432
|
+
determinate
|
|
433
|
+
value={85}
|
|
434
|
+
sx={{
|
|
435
|
+
flex: 1
|
|
436
|
+
}}
|
|
437
|
+
color="success"
|
|
438
|
+
/>
|
|
439
|
+
<Typography level="body-xs">85%</Typography>
|
|
440
|
+
</Box>
|
|
441
|
+
</td>
|
|
442
|
+
</tr>
|
|
443
|
+
<tr>
|
|
444
|
+
<td>iPhone 15 Pro</td>
|
|
445
|
+
<td>스마트폰</td>
|
|
446
|
+
<td
|
|
447
|
+
style={{
|
|
448
|
+
textAlign: "right"
|
|
449
|
+
}}
|
|
450
|
+
>
|
|
451
|
+
3
|
|
452
|
+
</td>
|
|
453
|
+
<td
|
|
454
|
+
style={{
|
|
455
|
+
textAlign: "right"
|
|
456
|
+
}}
|
|
457
|
+
>
|
|
458
|
+
₩1,550,000
|
|
459
|
+
</td>
|
|
460
|
+
<td>
|
|
461
|
+
<Chip size="sm" variant="soft" color="warning">
|
|
462
|
+
재고 부족
|
|
463
|
+
</Chip>
|
|
464
|
+
</td>
|
|
465
|
+
<td>
|
|
466
|
+
<Box
|
|
467
|
+
sx={{
|
|
468
|
+
display: "flex",
|
|
469
|
+
alignItems: "center",
|
|
470
|
+
gap: 2,
|
|
471
|
+
minWidth: 120
|
|
472
|
+
}}
|
|
473
|
+
>
|
|
474
|
+
<LinearProgress
|
|
475
|
+
determinate
|
|
476
|
+
value={15}
|
|
477
|
+
sx={{
|
|
478
|
+
flex: 1
|
|
479
|
+
}}
|
|
480
|
+
color="danger"
|
|
481
|
+
/>
|
|
482
|
+
<Typography level="body-xs">15%</Typography>
|
|
483
|
+
</Box>
|
|
484
|
+
</td>
|
|
485
|
+
</tr>
|
|
486
|
+
<tr>
|
|
487
|
+
<td>iPad Air</td>
|
|
488
|
+
<td>태블릿</td>
|
|
489
|
+
<td
|
|
490
|
+
style={{
|
|
491
|
+
textAlign: "right"
|
|
492
|
+
}}
|
|
493
|
+
>
|
|
494
|
+
0
|
|
495
|
+
</td>
|
|
496
|
+
<td
|
|
497
|
+
style={{
|
|
498
|
+
textAlign: "right"
|
|
499
|
+
}}
|
|
500
|
+
>
|
|
501
|
+
₩899,000
|
|
502
|
+
</td>
|
|
503
|
+
<td>
|
|
504
|
+
<Chip size="sm" variant="soft" color="danger">
|
|
505
|
+
품절
|
|
506
|
+
</Chip>
|
|
507
|
+
</td>
|
|
508
|
+
<td>
|
|
509
|
+
<Box
|
|
510
|
+
sx={{
|
|
511
|
+
display: "flex",
|
|
512
|
+
alignItems: "center",
|
|
513
|
+
gap: 2,
|
|
514
|
+
minWidth: 120
|
|
515
|
+
}}
|
|
516
|
+
>
|
|
517
|
+
<LinearProgress
|
|
518
|
+
determinate
|
|
519
|
+
value={0}
|
|
520
|
+
sx={{
|
|
521
|
+
flex: 1
|
|
522
|
+
}}
|
|
523
|
+
color="danger"
|
|
524
|
+
/>
|
|
525
|
+
<Typography level="body-xs">0%</Typography>
|
|
526
|
+
</Box>
|
|
527
|
+
</td>
|
|
528
|
+
</tr>
|
|
529
|
+
</tbody>
|
|
530
|
+
</Table>
|
|
420
531
|
```
|
|
421
532
|
|
|
422
533
|
### Task Management Table
|
|
@@ -425,151 +536,192 @@ A table for project task management. It displays assignees, priorities, progress
|
|
|
425
536
|
|
|
426
537
|
```tsx
|
|
427
538
|
<Table aria-label="task management table" hoverRow>
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
539
|
+
<thead>
|
|
540
|
+
<tr>
|
|
541
|
+
<th
|
|
542
|
+
style={{
|
|
543
|
+
width: "30%"
|
|
544
|
+
}}
|
|
545
|
+
>
|
|
546
|
+
작업
|
|
547
|
+
</th>
|
|
548
|
+
<th
|
|
549
|
+
style={{
|
|
550
|
+
width: "20%"
|
|
551
|
+
}}
|
|
552
|
+
>
|
|
553
|
+
담당자
|
|
554
|
+
</th>
|
|
555
|
+
<th
|
|
556
|
+
style={{
|
|
557
|
+
width: "15%"
|
|
558
|
+
}}
|
|
559
|
+
>
|
|
560
|
+
우선순위
|
|
561
|
+
</th>
|
|
562
|
+
<th
|
|
563
|
+
style={{
|
|
564
|
+
width: "20%"
|
|
565
|
+
}}
|
|
566
|
+
>
|
|
567
|
+
진행률
|
|
568
|
+
</th>
|
|
569
|
+
<th
|
|
570
|
+
style={{
|
|
571
|
+
width: "15%"
|
|
572
|
+
}}
|
|
573
|
+
>
|
|
574
|
+
마감일
|
|
575
|
+
</th>
|
|
576
|
+
</tr>
|
|
577
|
+
</thead>
|
|
578
|
+
<tbody>
|
|
579
|
+
<tr>
|
|
580
|
+
<td>
|
|
581
|
+
<Stack spacing={0.5}>
|
|
582
|
+
<Typography level="title-sm">UI 컴포넌트 개발</Typography>
|
|
583
|
+
<Typography level="body-xs" color="neutral">
|
|
584
|
+
새로운 테이블 컴포넌트 구현
|
|
585
|
+
</Typography>
|
|
586
|
+
</Stack>
|
|
587
|
+
</td>
|
|
588
|
+
<td>
|
|
589
|
+
<Stack direction="row" spacing={1} alignItems="center">
|
|
590
|
+
<Avatar size="sm" variant="soft">
|
|
591
|
+
김
|
|
592
|
+
</Avatar>
|
|
593
|
+
<Typography level="body-sm">김개발</Typography>
|
|
594
|
+
</Stack>
|
|
595
|
+
</td>
|
|
596
|
+
<td>
|
|
597
|
+
<Chip size="sm" variant="soft" color="danger">
|
|
598
|
+
높음
|
|
599
|
+
</Chip>
|
|
600
|
+
</td>
|
|
601
|
+
<td>
|
|
602
|
+
<Box
|
|
603
|
+
sx={{
|
|
604
|
+
display: "flex",
|
|
605
|
+
alignItems: "center",
|
|
606
|
+
gap: 2
|
|
607
|
+
}}
|
|
608
|
+
>
|
|
609
|
+
<LinearProgress
|
|
610
|
+
determinate
|
|
611
|
+
value={75}
|
|
612
|
+
sx={{
|
|
613
|
+
flex: 1,
|
|
614
|
+
minWidth: 80
|
|
615
|
+
}}
|
|
616
|
+
color="success"
|
|
617
|
+
/>
|
|
618
|
+
<Typography level="body-xs">75%</Typography>
|
|
619
|
+
</Box>
|
|
620
|
+
</td>
|
|
621
|
+
<td>
|
|
622
|
+
<Typography level="body-sm" color="neutral">
|
|
623
|
+
2024-01-20
|
|
454
624
|
</Typography>
|
|
455
|
-
</
|
|
456
|
-
</
|
|
457
|
-
<
|
|
458
|
-
<
|
|
459
|
-
<
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
<
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
</
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
alignItems: 'center',
|
|
556
|
-
gap: 2
|
|
557
|
-
}}>
|
|
558
|
-
<LinearProgress determinate value={25} sx={{
|
|
559
|
-
flex: 1,
|
|
560
|
-
minWidth: 80
|
|
561
|
-
}} color="primary" />
|
|
562
|
-
<Typography level="body-xs">25%</Typography>
|
|
563
|
-
</Box>
|
|
564
|
-
</td>
|
|
565
|
-
<td>
|
|
566
|
-
<Typography level="body-sm" color="neutral">
|
|
567
|
-
2024-01-30
|
|
568
|
-
</Typography>
|
|
569
|
-
</td>
|
|
570
|
-
</tr>
|
|
571
|
-
</tbody>
|
|
572
|
-
</Table>
|
|
625
|
+
</td>
|
|
626
|
+
</tr>
|
|
627
|
+
<tr>
|
|
628
|
+
<td>
|
|
629
|
+
<Stack spacing={0.5}>
|
|
630
|
+
<Typography level="title-sm">API 연동</Typography>
|
|
631
|
+
<Typography level="body-xs" color="neutral">
|
|
632
|
+
사용자 관리 API 연동 작업
|
|
633
|
+
</Typography>
|
|
634
|
+
</Stack>
|
|
635
|
+
</td>
|
|
636
|
+
<td>
|
|
637
|
+
<Stack direction="row" spacing={1} alignItems="center">
|
|
638
|
+
<Avatar size="sm" variant="soft">
|
|
639
|
+
이
|
|
640
|
+
</Avatar>
|
|
641
|
+
<Typography level="body-sm">이백엔드</Typography>
|
|
642
|
+
</Stack>
|
|
643
|
+
</td>
|
|
644
|
+
<td>
|
|
645
|
+
<Chip size="sm" variant="soft" color="warning">
|
|
646
|
+
중간
|
|
647
|
+
</Chip>
|
|
648
|
+
</td>
|
|
649
|
+
<td>
|
|
650
|
+
<Box
|
|
651
|
+
sx={{
|
|
652
|
+
display: "flex",
|
|
653
|
+
alignItems: "center",
|
|
654
|
+
gap: 2
|
|
655
|
+
}}
|
|
656
|
+
>
|
|
657
|
+
<LinearProgress
|
|
658
|
+
determinate
|
|
659
|
+
value={50}
|
|
660
|
+
sx={{
|
|
661
|
+
flex: 1,
|
|
662
|
+
minWidth: 80
|
|
663
|
+
}}
|
|
664
|
+
color="warning"
|
|
665
|
+
/>
|
|
666
|
+
<Typography level="body-xs">50%</Typography>
|
|
667
|
+
</Box>
|
|
668
|
+
</td>
|
|
669
|
+
<td>
|
|
670
|
+
<Typography level="body-sm" color="neutral">
|
|
671
|
+
2024-01-25
|
|
672
|
+
</Typography>
|
|
673
|
+
</td>
|
|
674
|
+
</tr>
|
|
675
|
+
<tr>
|
|
676
|
+
<td>
|
|
677
|
+
<Stack spacing={0.5}>
|
|
678
|
+
<Typography level="title-sm">테스트 작성</Typography>
|
|
679
|
+
<Typography level="body-xs" color="neutral">
|
|
680
|
+
단위 테스트 및 통합 테스트
|
|
681
|
+
</Typography>
|
|
682
|
+
</Stack>
|
|
683
|
+
</td>
|
|
684
|
+
<td>
|
|
685
|
+
<Stack direction="row" spacing={1} alignItems="center">
|
|
686
|
+
<Avatar size="sm" variant="soft">
|
|
687
|
+
박
|
|
688
|
+
</Avatar>
|
|
689
|
+
<Typography level="body-sm">박테스터</Typography>
|
|
690
|
+
</Stack>
|
|
691
|
+
</td>
|
|
692
|
+
<td>
|
|
693
|
+
<Chip size="sm" variant="soft" color="success">
|
|
694
|
+
낮음
|
|
695
|
+
</Chip>
|
|
696
|
+
</td>
|
|
697
|
+
<td>
|
|
698
|
+
<Box
|
|
699
|
+
sx={{
|
|
700
|
+
display: "flex",
|
|
701
|
+
alignItems: "center",
|
|
702
|
+
gap: 2
|
|
703
|
+
}}
|
|
704
|
+
>
|
|
705
|
+
<LinearProgress
|
|
706
|
+
determinate
|
|
707
|
+
value={25}
|
|
708
|
+
sx={{
|
|
709
|
+
flex: 1,
|
|
710
|
+
minWidth: 80
|
|
711
|
+
}}
|
|
712
|
+
color="primary"
|
|
713
|
+
/>
|
|
714
|
+
<Typography level="body-xs">25%</Typography>
|
|
715
|
+
</Box>
|
|
716
|
+
</td>
|
|
717
|
+
<td>
|
|
718
|
+
<Typography level="body-sm" color="neutral">
|
|
719
|
+
2024-01-30
|
|
720
|
+
</Typography>
|
|
721
|
+
</td>
|
|
722
|
+
</tr>
|
|
723
|
+
</tbody>
|
|
724
|
+
</Table>
|
|
573
725
|
```
|
|
574
726
|
|
|
575
727
|
### Sales Report with Cell Merging
|
|
@@ -578,194 +730,292 @@ A sales report table that uses complex cell merging. This example uses `rowSpan`
|
|
|
578
730
|
|
|
579
731
|
```tsx
|
|
580
732
|
<Table aria-label="sales report table with merged cells">
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
}}
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
</
|
|
614
|
-
<
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
</
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
<
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
<
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
<
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
<
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
</
|
|
716
|
-
<
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
<
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
</
|
|
765
|
-
</
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
733
|
+
<thead>
|
|
734
|
+
<tr>
|
|
735
|
+
<th
|
|
736
|
+
rowSpan={2}
|
|
737
|
+
style={{
|
|
738
|
+
textAlign: "center",
|
|
739
|
+
verticalAlign: "middle",
|
|
740
|
+
backgroundColor: "#f8f9fa",
|
|
741
|
+
fontWeight: 600
|
|
742
|
+
}}
|
|
743
|
+
>
|
|
744
|
+
지역
|
|
745
|
+
</th>
|
|
746
|
+
<th
|
|
747
|
+
colSpan={2}
|
|
748
|
+
style={{
|
|
749
|
+
textAlign: "center",
|
|
750
|
+
backgroundColor: "#f8f9fa",
|
|
751
|
+
fontWeight: 600
|
|
752
|
+
}}
|
|
753
|
+
>
|
|
754
|
+
2024년 1분기
|
|
755
|
+
</th>
|
|
756
|
+
<th
|
|
757
|
+
colSpan={2}
|
|
758
|
+
style={{
|
|
759
|
+
textAlign: "center",
|
|
760
|
+
backgroundColor: "#f8f9fa",
|
|
761
|
+
fontWeight: 600
|
|
762
|
+
}}
|
|
763
|
+
>
|
|
764
|
+
2024년 2분기
|
|
765
|
+
</th>
|
|
766
|
+
<th
|
|
767
|
+
rowSpan={2}
|
|
768
|
+
style={{
|
|
769
|
+
textAlign: "center",
|
|
770
|
+
verticalAlign: "middle",
|
|
771
|
+
backgroundColor: "#f8f9fa",
|
|
772
|
+
fontWeight: 600
|
|
773
|
+
}}
|
|
774
|
+
>
|
|
775
|
+
증감률
|
|
776
|
+
</th>
|
|
777
|
+
</tr>
|
|
778
|
+
<tr>
|
|
779
|
+
<th
|
|
780
|
+
style={{
|
|
781
|
+
textAlign: "center",
|
|
782
|
+
backgroundColor: "#f0f0f0",
|
|
783
|
+
fontWeight: 500
|
|
784
|
+
}}
|
|
785
|
+
>
|
|
786
|
+
매출
|
|
787
|
+
</th>
|
|
788
|
+
<th
|
|
789
|
+
style={{
|
|
790
|
+
textAlign: "center",
|
|
791
|
+
backgroundColor: "#f0f0f0",
|
|
792
|
+
fontWeight: 500
|
|
793
|
+
}}
|
|
794
|
+
>
|
|
795
|
+
목표대비
|
|
796
|
+
</th>
|
|
797
|
+
<th
|
|
798
|
+
style={{
|
|
799
|
+
textAlign: "center",
|
|
800
|
+
backgroundColor: "#f0f0f0",
|
|
801
|
+
fontWeight: 500
|
|
802
|
+
}}
|
|
803
|
+
>
|
|
804
|
+
매출
|
|
805
|
+
</th>
|
|
806
|
+
<th
|
|
807
|
+
style={{
|
|
808
|
+
textAlign: "center",
|
|
809
|
+
backgroundColor: "#f0f0f0",
|
|
810
|
+
fontWeight: 500
|
|
811
|
+
}}
|
|
812
|
+
>
|
|
813
|
+
목표대비
|
|
814
|
+
</th>
|
|
815
|
+
</tr>
|
|
816
|
+
</thead>
|
|
817
|
+
<tbody>
|
|
818
|
+
<tr>
|
|
819
|
+
<td
|
|
820
|
+
style={{
|
|
821
|
+
fontWeight: 600
|
|
822
|
+
}}
|
|
823
|
+
>
|
|
824
|
+
서울
|
|
825
|
+
</td>
|
|
826
|
+
<td
|
|
827
|
+
style={{
|
|
828
|
+
textAlign: "right"
|
|
829
|
+
}}
|
|
830
|
+
>
|
|
831
|
+
₩15,000만
|
|
832
|
+
</td>
|
|
833
|
+
<td
|
|
834
|
+
style={{
|
|
835
|
+
textAlign: "center"
|
|
836
|
+
}}
|
|
837
|
+
>
|
|
838
|
+
<Chip size="sm" variant="soft" color="success">
|
|
839
|
+
105%
|
|
840
|
+
</Chip>
|
|
841
|
+
</td>
|
|
842
|
+
<td
|
|
843
|
+
style={{
|
|
844
|
+
textAlign: "right"
|
|
845
|
+
}}
|
|
846
|
+
>
|
|
847
|
+
₩18,000만
|
|
848
|
+
</td>
|
|
849
|
+
<td
|
|
850
|
+
style={{
|
|
851
|
+
textAlign: "center"
|
|
852
|
+
}}
|
|
853
|
+
>
|
|
854
|
+
<Chip size="sm" variant="soft" color="success">
|
|
855
|
+
120%
|
|
856
|
+
</Chip>
|
|
857
|
+
</td>
|
|
858
|
+
<td
|
|
859
|
+
style={{
|
|
860
|
+
textAlign: "center"
|
|
861
|
+
}}
|
|
862
|
+
>
|
|
863
|
+
<Chip size="sm" variant="soft" color="success">
|
|
864
|
+
+20%
|
|
865
|
+
</Chip>
|
|
866
|
+
</td>
|
|
867
|
+
</tr>
|
|
868
|
+
<tr>
|
|
869
|
+
<td
|
|
870
|
+
style={{
|
|
871
|
+
fontWeight: 600
|
|
872
|
+
}}
|
|
873
|
+
>
|
|
874
|
+
부산
|
|
875
|
+
</td>
|
|
876
|
+
<td
|
|
877
|
+
style={{
|
|
878
|
+
textAlign: "right"
|
|
879
|
+
}}
|
|
880
|
+
>
|
|
881
|
+
₩8,500만
|
|
882
|
+
</td>
|
|
883
|
+
<td
|
|
884
|
+
style={{
|
|
885
|
+
textAlign: "center"
|
|
886
|
+
}}
|
|
887
|
+
>
|
|
888
|
+
<Chip size="sm" variant="soft" color="warning">
|
|
889
|
+
95%
|
|
890
|
+
</Chip>
|
|
891
|
+
</td>
|
|
892
|
+
<td
|
|
893
|
+
style={{
|
|
894
|
+
textAlign: "right"
|
|
895
|
+
}}
|
|
896
|
+
>
|
|
897
|
+
₩9,200만
|
|
898
|
+
</td>
|
|
899
|
+
<td
|
|
900
|
+
style={{
|
|
901
|
+
textAlign: "center"
|
|
902
|
+
}}
|
|
903
|
+
>
|
|
904
|
+
<Chip size="sm" variant="soft" color="success">
|
|
905
|
+
102%
|
|
906
|
+
</Chip>
|
|
907
|
+
</td>
|
|
908
|
+
<td
|
|
909
|
+
style={{
|
|
910
|
+
textAlign: "center"
|
|
911
|
+
}}
|
|
912
|
+
>
|
|
913
|
+
<Chip size="sm" variant="soft" color="success">
|
|
914
|
+
+8%
|
|
915
|
+
</Chip>
|
|
916
|
+
</td>
|
|
917
|
+
</tr>
|
|
918
|
+
<tr>
|
|
919
|
+
<td
|
|
920
|
+
style={{
|
|
921
|
+
fontWeight: 600
|
|
922
|
+
}}
|
|
923
|
+
>
|
|
924
|
+
대구
|
|
925
|
+
</td>
|
|
926
|
+
<td
|
|
927
|
+
style={{
|
|
928
|
+
textAlign: "right"
|
|
929
|
+
}}
|
|
930
|
+
>
|
|
931
|
+
₩6,200만
|
|
932
|
+
</td>
|
|
933
|
+
<td
|
|
934
|
+
style={{
|
|
935
|
+
textAlign: "center"
|
|
936
|
+
}}
|
|
937
|
+
>
|
|
938
|
+
<Chip size="sm" variant="soft" color="danger">
|
|
939
|
+
88%
|
|
940
|
+
</Chip>
|
|
941
|
+
</td>
|
|
942
|
+
<td
|
|
943
|
+
style={{
|
|
944
|
+
textAlign: "right"
|
|
945
|
+
}}
|
|
946
|
+
>
|
|
947
|
+
₩7,100만
|
|
948
|
+
</td>
|
|
949
|
+
<td
|
|
950
|
+
style={{
|
|
951
|
+
textAlign: "center"
|
|
952
|
+
}}
|
|
953
|
+
>
|
|
954
|
+
<Chip size="sm" variant="soft" color="success">
|
|
955
|
+
110%
|
|
956
|
+
</Chip>
|
|
957
|
+
</td>
|
|
958
|
+
<td
|
|
959
|
+
style={{
|
|
960
|
+
textAlign: "center"
|
|
961
|
+
}}
|
|
962
|
+
>
|
|
963
|
+
<Chip size="sm" variant="soft" color="success">
|
|
964
|
+
+15%
|
|
965
|
+
</Chip>
|
|
966
|
+
</td>
|
|
967
|
+
</tr>
|
|
968
|
+
<tr
|
|
969
|
+
style={{
|
|
970
|
+
backgroundColor: "#f8f9fa",
|
|
971
|
+
fontWeight: 600
|
|
972
|
+
}}
|
|
973
|
+
>
|
|
974
|
+
<td>합계</td>
|
|
975
|
+
<td
|
|
976
|
+
style={{
|
|
977
|
+
textAlign: "right"
|
|
978
|
+
}}
|
|
979
|
+
>
|
|
980
|
+
₩29,700만
|
|
981
|
+
</td>
|
|
982
|
+
<td
|
|
983
|
+
style={{
|
|
984
|
+
textAlign: "center"
|
|
985
|
+
}}
|
|
986
|
+
>
|
|
987
|
+
<Chip size="sm" variant="solid" color="primary">
|
|
988
|
+
99%
|
|
989
|
+
</Chip>
|
|
990
|
+
</td>
|
|
991
|
+
<td
|
|
992
|
+
style={{
|
|
993
|
+
textAlign: "right"
|
|
994
|
+
}}
|
|
995
|
+
>
|
|
996
|
+
₩34,300만
|
|
997
|
+
</td>
|
|
998
|
+
<td
|
|
999
|
+
style={{
|
|
1000
|
+
textAlign: "center"
|
|
1001
|
+
}}
|
|
1002
|
+
>
|
|
1003
|
+
<Chip size="sm" variant="solid" color="primary">
|
|
1004
|
+
112%
|
|
1005
|
+
</Chip>
|
|
1006
|
+
</td>
|
|
1007
|
+
<td
|
|
1008
|
+
style={{
|
|
1009
|
+
textAlign: "center"
|
|
1010
|
+
}}
|
|
1011
|
+
>
|
|
1012
|
+
<Chip size="sm" variant="solid" color="success">
|
|
1013
|
+
+15%
|
|
1014
|
+
</Chip>
|
|
1015
|
+
</td>
|
|
1016
|
+
</tr>
|
|
1017
|
+
</tbody>
|
|
1018
|
+
</Table>
|
|
769
1019
|
```
|
|
770
1020
|
|
|
771
1021
|
### Comparison Table
|
|
@@ -774,157 +1024,251 @@ A table for comparing plans or products. It visually represents boolean values.
|
|
|
774
1024
|
|
|
775
1025
|
```tsx
|
|
776
1026
|
<Table aria-label="plan comparison table">
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
<td
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
</
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
<
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
</
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
</
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
</
|
|
1027
|
+
<thead>
|
|
1028
|
+
<tr>
|
|
1029
|
+
<th
|
|
1030
|
+
style={{
|
|
1031
|
+
width: "25%"
|
|
1032
|
+
}}
|
|
1033
|
+
>
|
|
1034
|
+
기능
|
|
1035
|
+
</th>
|
|
1036
|
+
<th
|
|
1037
|
+
style={{
|
|
1038
|
+
width: "25%"
|
|
1039
|
+
}}
|
|
1040
|
+
>
|
|
1041
|
+
Basic 플랜
|
|
1042
|
+
</th>
|
|
1043
|
+
<th
|
|
1044
|
+
style={{
|
|
1045
|
+
width: "25%"
|
|
1046
|
+
}}
|
|
1047
|
+
>
|
|
1048
|
+
Pro 플랜
|
|
1049
|
+
</th>
|
|
1050
|
+
<th
|
|
1051
|
+
style={{
|
|
1052
|
+
width: "25%"
|
|
1053
|
+
}}
|
|
1054
|
+
>
|
|
1055
|
+
Enterprise 플랜
|
|
1056
|
+
</th>
|
|
1057
|
+
</tr>
|
|
1058
|
+
</thead>
|
|
1059
|
+
<tbody>
|
|
1060
|
+
<tr>
|
|
1061
|
+
<td>
|
|
1062
|
+
<Typography
|
|
1063
|
+
level="title-sm"
|
|
1064
|
+
sx={{
|
|
1065
|
+
fontWeight: 600
|
|
1066
|
+
}}
|
|
1067
|
+
>
|
|
1068
|
+
사용자 수
|
|
1069
|
+
</Typography>
|
|
1070
|
+
</td>
|
|
1071
|
+
<td
|
|
1072
|
+
style={{
|
|
1073
|
+
textAlign: "center"
|
|
1074
|
+
}}
|
|
1075
|
+
>
|
|
1076
|
+
최대 5명
|
|
1077
|
+
</td>
|
|
1078
|
+
<td
|
|
1079
|
+
style={{
|
|
1080
|
+
textAlign: "center"
|
|
1081
|
+
}}
|
|
1082
|
+
>
|
|
1083
|
+
최대 50명
|
|
1084
|
+
</td>
|
|
1085
|
+
<td
|
|
1086
|
+
style={{
|
|
1087
|
+
textAlign: "center"
|
|
1088
|
+
}}
|
|
1089
|
+
>
|
|
1090
|
+
무제한
|
|
1091
|
+
</td>
|
|
1092
|
+
</tr>
|
|
1093
|
+
<tr>
|
|
1094
|
+
<td>
|
|
1095
|
+
<Typography
|
|
1096
|
+
level="title-sm"
|
|
1097
|
+
sx={{
|
|
1098
|
+
fontWeight: 600
|
|
1099
|
+
}}
|
|
1100
|
+
>
|
|
1101
|
+
저장공간
|
|
1102
|
+
</Typography>
|
|
1103
|
+
</td>
|
|
1104
|
+
<td
|
|
1105
|
+
style={{
|
|
1106
|
+
textAlign: "center"
|
|
1107
|
+
}}
|
|
1108
|
+
>
|
|
1109
|
+
10GB
|
|
1110
|
+
</td>
|
|
1111
|
+
<td
|
|
1112
|
+
style={{
|
|
1113
|
+
textAlign: "center"
|
|
1114
|
+
}}
|
|
1115
|
+
>
|
|
1116
|
+
100GB
|
|
1117
|
+
</td>
|
|
1118
|
+
<td
|
|
1119
|
+
style={{
|
|
1120
|
+
textAlign: "center"
|
|
1121
|
+
}}
|
|
1122
|
+
>
|
|
1123
|
+
1TB
|
|
1124
|
+
</td>
|
|
1125
|
+
</tr>
|
|
1126
|
+
<tr>
|
|
1127
|
+
<td>
|
|
1128
|
+
<Typography
|
|
1129
|
+
level="title-sm"
|
|
1130
|
+
sx={{
|
|
1131
|
+
fontWeight: 600
|
|
1132
|
+
}}
|
|
1133
|
+
>
|
|
1134
|
+
API 호출
|
|
1135
|
+
</Typography>
|
|
1136
|
+
</td>
|
|
1137
|
+
<td
|
|
1138
|
+
style={{
|
|
1139
|
+
textAlign: "center"
|
|
1140
|
+
}}
|
|
1141
|
+
>
|
|
1142
|
+
1,000/월
|
|
1143
|
+
</td>
|
|
1144
|
+
<td
|
|
1145
|
+
style={{
|
|
1146
|
+
textAlign: "center"
|
|
1147
|
+
}}
|
|
1148
|
+
>
|
|
1149
|
+
10,000/월
|
|
1150
|
+
</td>
|
|
1151
|
+
<td
|
|
1152
|
+
style={{
|
|
1153
|
+
textAlign: "center"
|
|
1154
|
+
}}
|
|
1155
|
+
>
|
|
1156
|
+
무제한
|
|
1157
|
+
</td>
|
|
1158
|
+
</tr>
|
|
1159
|
+
<tr>
|
|
1160
|
+
<td>
|
|
1161
|
+
<Typography
|
|
1162
|
+
level="title-sm"
|
|
1163
|
+
sx={{
|
|
1164
|
+
fontWeight: 600
|
|
1165
|
+
}}
|
|
1166
|
+
>
|
|
1167
|
+
고급 분석
|
|
1168
|
+
</Typography>
|
|
1169
|
+
</td>
|
|
1170
|
+
<td
|
|
1171
|
+
style={{
|
|
1172
|
+
textAlign: "center"
|
|
1173
|
+
}}
|
|
1174
|
+
>
|
|
1175
|
+
<Chip size="sm" variant="soft" color="neutral">
|
|
1176
|
+
✗ 미포함
|
|
1177
|
+
</Chip>
|
|
1178
|
+
</td>
|
|
1179
|
+
<td
|
|
1180
|
+
style={{
|
|
1181
|
+
textAlign: "center"
|
|
1182
|
+
}}
|
|
1183
|
+
>
|
|
1184
|
+
<Chip size="sm" variant="soft" color="success">
|
|
1185
|
+
✓ 포함
|
|
1186
|
+
</Chip>
|
|
1187
|
+
</td>
|
|
1188
|
+
<td
|
|
1189
|
+
style={{
|
|
1190
|
+
textAlign: "center"
|
|
1191
|
+
}}
|
|
1192
|
+
>
|
|
1193
|
+
<Chip size="sm" variant="soft" color="success">
|
|
1194
|
+
✓ 포함
|
|
1195
|
+
</Chip>
|
|
1196
|
+
</td>
|
|
1197
|
+
</tr>
|
|
1198
|
+
<tr>
|
|
1199
|
+
<td>
|
|
1200
|
+
<Typography
|
|
1201
|
+
level="title-sm"
|
|
1202
|
+
sx={{
|
|
1203
|
+
fontWeight: 600
|
|
1204
|
+
}}
|
|
1205
|
+
>
|
|
1206
|
+
24/7 지원
|
|
1207
|
+
</Typography>
|
|
1208
|
+
</td>
|
|
1209
|
+
<td
|
|
1210
|
+
style={{
|
|
1211
|
+
textAlign: "center"
|
|
1212
|
+
}}
|
|
1213
|
+
>
|
|
1214
|
+
<Chip size="sm" variant="soft" color="neutral">
|
|
1215
|
+
✗ 미포함
|
|
1216
|
+
</Chip>
|
|
1217
|
+
</td>
|
|
1218
|
+
<td
|
|
1219
|
+
style={{
|
|
1220
|
+
textAlign: "center"
|
|
1221
|
+
}}
|
|
1222
|
+
>
|
|
1223
|
+
<Chip size="sm" variant="soft" color="neutral">
|
|
1224
|
+
✗ 미포함
|
|
1225
|
+
</Chip>
|
|
1226
|
+
</td>
|
|
1227
|
+
<td
|
|
1228
|
+
style={{
|
|
1229
|
+
textAlign: "center"
|
|
1230
|
+
}}
|
|
1231
|
+
>
|
|
1232
|
+
<Chip size="sm" variant="soft" color="success">
|
|
1233
|
+
✓ 포함
|
|
1234
|
+
</Chip>
|
|
1235
|
+
</td>
|
|
1236
|
+
</tr>
|
|
1237
|
+
<tr>
|
|
1238
|
+
<td>
|
|
1239
|
+
<Typography
|
|
1240
|
+
level="title-sm"
|
|
1241
|
+
sx={{
|
|
1242
|
+
fontWeight: 600
|
|
1243
|
+
}}
|
|
1244
|
+
>
|
|
1245
|
+
가격
|
|
1246
|
+
</Typography>
|
|
1247
|
+
</td>
|
|
1248
|
+
<td
|
|
1249
|
+
style={{
|
|
1250
|
+
textAlign: "center"
|
|
1251
|
+
}}
|
|
1252
|
+
>
|
|
1253
|
+
무료
|
|
1254
|
+
</td>
|
|
1255
|
+
<td
|
|
1256
|
+
style={{
|
|
1257
|
+
textAlign: "center"
|
|
1258
|
+
}}
|
|
1259
|
+
>
|
|
1260
|
+
₩29,000/월
|
|
1261
|
+
</td>
|
|
1262
|
+
<td
|
|
1263
|
+
style={{
|
|
1264
|
+
textAlign: "center"
|
|
1265
|
+
}}
|
|
1266
|
+
>
|
|
1267
|
+
문의
|
|
1268
|
+
</td>
|
|
1269
|
+
</tr>
|
|
1270
|
+
</tbody>
|
|
1271
|
+
</Table>
|
|
928
1272
|
```
|
|
929
1273
|
|
|
930
1274
|
### Empty State Table
|
|
@@ -933,65 +1277,89 @@ A table that displays an empty state when no data is available.
|
|
|
933
1277
|
|
|
934
1278
|
```tsx
|
|
935
1279
|
<Stack spacing={2}>
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
1280
|
+
<Stack direction="row" justifyContent="space-between" alignItems="center">
|
|
1281
|
+
<Typography level="title-lg">사용자 목록</Typography>
|
|
1282
|
+
<Button startDecorator={<AddIcon />} size="sm">
|
|
1283
|
+
새 사용자 추가
|
|
1284
|
+
</Button>
|
|
1285
|
+
</Stack>
|
|
942
1286
|
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
<
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
1287
|
+
<Table aria-label="empty state table">
|
|
1288
|
+
<thead>
|
|
1289
|
+
<tr>
|
|
1290
|
+
<th
|
|
1291
|
+
style={{
|
|
1292
|
+
width: "25%"
|
|
1293
|
+
}}
|
|
1294
|
+
>
|
|
1295
|
+
이름
|
|
1296
|
+
</th>
|
|
1297
|
+
<th
|
|
1298
|
+
style={{
|
|
1299
|
+
width: "30%"
|
|
1300
|
+
}}
|
|
1301
|
+
>
|
|
1302
|
+
이메일
|
|
1303
|
+
</th>
|
|
1304
|
+
<th
|
|
1305
|
+
style={{
|
|
1306
|
+
width: "20%"
|
|
1307
|
+
}}
|
|
1308
|
+
>
|
|
1309
|
+
역할
|
|
1310
|
+
</th>
|
|
1311
|
+
<th
|
|
1312
|
+
style={{
|
|
1313
|
+
width: "15%"
|
|
1314
|
+
}}
|
|
1315
|
+
>
|
|
1316
|
+
상태
|
|
1317
|
+
</th>
|
|
1318
|
+
<th
|
|
1319
|
+
style={{
|
|
1320
|
+
width: "10%"
|
|
1321
|
+
}}
|
|
1322
|
+
>
|
|
1323
|
+
작업
|
|
1324
|
+
</th>
|
|
1325
|
+
</tr>
|
|
1326
|
+
</thead>
|
|
1327
|
+
<tbody>
|
|
1328
|
+
<tr>
|
|
1329
|
+
<td colSpan={5}>
|
|
1330
|
+
<Box
|
|
1331
|
+
sx={{
|
|
1332
|
+
display: "flex",
|
|
1333
|
+
flexDirection: "column",
|
|
1334
|
+
alignItems: "center",
|
|
1335
|
+
justifyContent: "center",
|
|
1336
|
+
py: 8,
|
|
1337
|
+
gap: 2
|
|
1338
|
+
}}
|
|
1339
|
+
>
|
|
1340
|
+
<SearchIcon
|
|
1341
|
+
sx={{
|
|
1342
|
+
fontSize: 48,
|
|
1343
|
+
color: "neutral.400"
|
|
1344
|
+
}}
|
|
1345
|
+
/>
|
|
1346
|
+
<Stack spacing={1} alignItems="center">
|
|
1347
|
+
<Typography level="title-md" color="neutral">
|
|
1348
|
+
사용자가 없습니다
|
|
1349
|
+
</Typography>
|
|
1350
|
+
<Typography level="body-sm" color="neutral">
|
|
1351
|
+
새 사용자를 추가하여 시작해보세요.
|
|
1352
|
+
</Typography>
|
|
1353
|
+
</Stack>
|
|
1354
|
+
<Button variant="soft" startDecorator={<AddIcon />} size="sm">
|
|
1355
|
+
사용자 추가하기
|
|
1356
|
+
</Button>
|
|
1357
|
+
</Box>
|
|
1358
|
+
</td>
|
|
1359
|
+
</tr>
|
|
1360
|
+
</tbody>
|
|
1361
|
+
</Table>
|
|
1362
|
+
</Stack>
|
|
995
1363
|
```
|
|
996
1364
|
|
|
997
1365
|
### Advanced Features Table
|
|
@@ -999,78 +1367,132 @@ A table that displays an empty state when no data is available.
|
|
|
999
1367
|
A table that includes advanced features such as sticky headers, scrolling, and responsiveness.
|
|
1000
1368
|
|
|
1001
1369
|
```tsx
|
|
1002
|
-
<Box
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
}}
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
</
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1370
|
+
<Box
|
|
1371
|
+
sx={{
|
|
1372
|
+
maxHeight: 400,
|
|
1373
|
+
overflow: "auto"
|
|
1374
|
+
}}
|
|
1375
|
+
>
|
|
1376
|
+
<Table
|
|
1377
|
+
aria-label="advanced features table"
|
|
1378
|
+
hoverRow
|
|
1379
|
+
stickyHeader
|
|
1380
|
+
sx={{
|
|
1381
|
+
"& th": {
|
|
1382
|
+
position: "sticky",
|
|
1383
|
+
top: 0,
|
|
1384
|
+
backgroundColor: "background.surface",
|
|
1385
|
+
zIndex: 1
|
|
1386
|
+
}
|
|
1387
|
+
}}
|
|
1388
|
+
>
|
|
1389
|
+
<thead>
|
|
1390
|
+
<tr>
|
|
1391
|
+
<th
|
|
1392
|
+
style={{
|
|
1393
|
+
width: "8%",
|
|
1394
|
+
textAlign: "right"
|
|
1395
|
+
}}
|
|
1396
|
+
>
|
|
1397
|
+
ID
|
|
1398
|
+
</th>
|
|
1399
|
+
<th
|
|
1400
|
+
style={{
|
|
1401
|
+
width: "20%"
|
|
1402
|
+
}}
|
|
1403
|
+
>
|
|
1404
|
+
제품명
|
|
1405
|
+
</th>
|
|
1406
|
+
<th
|
|
1407
|
+
style={{
|
|
1408
|
+
width: "30%"
|
|
1409
|
+
}}
|
|
1410
|
+
>
|
|
1411
|
+
설명
|
|
1412
|
+
</th>
|
|
1413
|
+
<th
|
|
1414
|
+
style={{
|
|
1415
|
+
width: "12%"
|
|
1416
|
+
}}
|
|
1417
|
+
>
|
|
1418
|
+
카테고리
|
|
1419
|
+
</th>
|
|
1420
|
+
<th
|
|
1421
|
+
style={{
|
|
1422
|
+
width: "12%",
|
|
1423
|
+
textAlign: "right"
|
|
1424
|
+
}}
|
|
1425
|
+
>
|
|
1426
|
+
가격
|
|
1427
|
+
</th>
|
|
1428
|
+
<th
|
|
1429
|
+
style={{
|
|
1430
|
+
width: "8%",
|
|
1431
|
+
textAlign: "right"
|
|
1432
|
+
}}
|
|
1433
|
+
>
|
|
1434
|
+
재고
|
|
1435
|
+
</th>
|
|
1436
|
+
<th
|
|
1437
|
+
style={{
|
|
1438
|
+
width: "10%"
|
|
1439
|
+
}}
|
|
1440
|
+
>
|
|
1441
|
+
등록일
|
|
1442
|
+
</th>
|
|
1443
|
+
</tr>
|
|
1444
|
+
</thead>
|
|
1445
|
+
<tbody>
|
|
1446
|
+
{advancedRows.map((row) => (
|
|
1447
|
+
<tr key={row.id}>
|
|
1448
|
+
<td
|
|
1449
|
+
style={{
|
|
1450
|
+
textAlign: "right"
|
|
1451
|
+
}}
|
|
1452
|
+
>
|
|
1453
|
+
{row.id}
|
|
1454
|
+
</td>
|
|
1455
|
+
<td>{row.name}</td>
|
|
1456
|
+
<td>
|
|
1457
|
+
<Typography
|
|
1458
|
+
level="body-sm"
|
|
1459
|
+
sx={{
|
|
1460
|
+
maxWidth: 200,
|
|
1461
|
+
overflow: "hidden",
|
|
1462
|
+
textOverflow: "ellipsis",
|
|
1463
|
+
whiteSpace: "nowrap"
|
|
1464
|
+
}}
|
|
1465
|
+
>
|
|
1466
|
+
{row.description}
|
|
1467
|
+
</Typography>
|
|
1468
|
+
</td>
|
|
1469
|
+
<td>{row.category}</td>
|
|
1470
|
+
<td
|
|
1471
|
+
style={{
|
|
1472
|
+
textAlign: "right"
|
|
1473
|
+
}}
|
|
1474
|
+
>
|
|
1475
|
+
₩{Number(row.price).toLocaleString()}
|
|
1476
|
+
</td>
|
|
1477
|
+
<td
|
|
1478
|
+
style={{
|
|
1479
|
+
textAlign: "right"
|
|
1480
|
+
}}
|
|
1481
|
+
>
|
|
1482
|
+
<Chip
|
|
1483
|
+
size="sm"
|
|
1484
|
+
variant="soft"
|
|
1485
|
+
color={row.stock > 50 ? "success" : row.stock > 10 ? "warning" : "danger"}
|
|
1486
|
+
>
|
|
1487
|
+
{row.stock}
|
|
1488
|
+
</Chip>
|
|
1489
|
+
</td>
|
|
1490
|
+
<td>{row.createdAt}</td>
|
|
1491
|
+
</tr>
|
|
1492
|
+
))}
|
|
1493
|
+
</tbody>
|
|
1494
|
+
</Table>
|
|
1495
|
+
</Box>
|
|
1074
1496
|
```
|
|
1075
1497
|
|
|
1076
1498
|
### Drag and Drop Headers Table
|
|
@@ -1079,50 +1501,70 @@ A table that uses `@atlaskit/pragmatic-drag-and-drop` so headers can be dragged
|
|
|
1079
1501
|
|
|
1080
1502
|
```tsx
|
|
1081
1503
|
<Stack spacing={3}>
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1504
|
+
<Stack spacing={1}>
|
|
1505
|
+
<Typography level="title-lg">드래그 앤 드롭 헤더 재정렬 테이블</Typography>
|
|
1506
|
+
<Typography level="body-sm" color="neutral">
|
|
1507
|
+
헤더를 드래그하여 컬럼 순서를 변경할 수 있습니다. 드래그 아이콘을 클릭하고 드래그하세요.
|
|
1508
|
+
</Typography>
|
|
1509
|
+
</Stack>
|
|
1088
1510
|
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1511
|
+
<Table aria-label="drag and drop headers table" hoverRow>
|
|
1512
|
+
<thead>
|
|
1513
|
+
<tr>
|
|
1514
|
+
{columns.map((column, index) => (
|
|
1515
|
+
<DraggableHeader
|
|
1516
|
+
key={column.key}
|
|
1517
|
+
columnKey={column.key}
|
|
1518
|
+
index={index}
|
|
1519
|
+
onReorder={handleReorder}
|
|
1520
|
+
>
|
|
1521
|
+
<Typography level="title-sm" fontWeight="lg">
|
|
1522
|
+
{column.label}
|
|
1523
|
+
</Typography>
|
|
1524
|
+
</DraggableHeader>
|
|
1525
|
+
))}
|
|
1526
|
+
</tr>
|
|
1527
|
+
</thead>
|
|
1528
|
+
<tbody>
|
|
1529
|
+
{sampleData.map((row) => (
|
|
1530
|
+
<tr key={`${row.name}-${row.email}`}>
|
|
1531
|
+
{columns.map((column) => (
|
|
1532
|
+
<td
|
|
1533
|
+
key={column.key}
|
|
1534
|
+
style={{
|
|
1535
|
+
width: column.width
|
|
1536
|
+
}}
|
|
1537
|
+
>
|
|
1538
|
+
{renderCellContent(column.key, row)}
|
|
1539
|
+
</td>
|
|
1540
|
+
))}
|
|
1541
|
+
</tr>
|
|
1542
|
+
))}
|
|
1543
|
+
</tbody>
|
|
1544
|
+
</Table>
|
|
1109
1545
|
|
|
1110
|
-
<Box
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1546
|
+
<Box
|
|
1547
|
+
sx={{
|
|
1548
|
+
mt: 2,
|
|
1549
|
+
p: 2,
|
|
1550
|
+
bgcolor: "background.level1",
|
|
1551
|
+
borderRadius: "sm"
|
|
1552
|
+
}}
|
|
1553
|
+
>
|
|
1554
|
+
<Typography
|
|
1555
|
+
level="body-sm"
|
|
1556
|
+
fontWeight="lg"
|
|
1557
|
+
sx={{
|
|
1558
|
+
mb: 1
|
|
1559
|
+
}}
|
|
1560
|
+
>
|
|
1561
|
+
현재 컬럼 순서:
|
|
1562
|
+
</Typography>
|
|
1563
|
+
<Typography level="body-sm" color="neutral">
|
|
1564
|
+
{columns.map((col) => col.label).join(" → ")}
|
|
1565
|
+
</Typography>
|
|
1566
|
+
</Box>
|
|
1567
|
+
</Stack>
|
|
1126
1568
|
```
|
|
1127
1569
|
|
|
1128
1570
|
## Detailed Code Examples
|
|
@@ -1151,10 +1593,7 @@ function SimpleTable() {
|
|
|
1151
1593
|
return (
|
|
1152
1594
|
<Table aria-label="simple table" hoverRow>
|
|
1153
1595
|
<TableHead headCells={headCells} />
|
|
1154
|
-
<TableBody
|
|
1155
|
-
rows={rows}
|
|
1156
|
-
cellOrder={['name', 'email', 'role']}
|
|
1157
|
-
/>
|
|
1596
|
+
<TableBody rows={rows} cellOrder={['name', 'email', 'role']} />
|
|
1158
1597
|
</Table>
|
|
1159
1598
|
);
|
|
1160
1599
|
}
|
|
@@ -1184,7 +1623,9 @@ function ComplexTable() {
|
|
|
1184
1623
|
<tr>
|
|
1185
1624
|
<td>
|
|
1186
1625
|
<Stack direction="row" spacing={2} alignItems="center">
|
|
1187
|
-
<Avatar size="sm" variant="soft" color="primary"
|
|
1626
|
+
<Avatar size="sm" variant="soft" color="primary">
|
|
1627
|
+
김
|
|
1628
|
+
</Avatar>
|
|
1188
1629
|
<Stack spacing={0}>
|
|
1189
1630
|
<Typography level="title-sm">김철수</Typography>
|
|
1190
1631
|
<Typography level="body-xs" color="neutral">
|
|
@@ -1248,14 +1689,17 @@ The Table component supports various advanced features:
|
|
|
1248
1689
|
Keeps the header fixed while scrolling:
|
|
1249
1690
|
|
|
1250
1691
|
```tsx
|
|
1251
|
-
<Table
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1692
|
+
<Table
|
|
1693
|
+
stickyHeader
|
|
1694
|
+
sx={{
|
|
1695
|
+
'& th': {
|
|
1696
|
+
position: 'sticky',
|
|
1697
|
+
top: 0,
|
|
1698
|
+
backgroundColor: 'background.surface',
|
|
1699
|
+
zIndex: 1,
|
|
1700
|
+
},
|
|
1701
|
+
}}
|
|
1702
|
+
>
|
|
1259
1703
|
{/* Table content */}
|
|
1260
1704
|
</Table>
|
|
1261
1705
|
```
|
|
@@ -1284,14 +1728,16 @@ Displays an appropriate empty state when no data is available:
|
|
|
1284
1728
|
Guidance for responsive design:
|
|
1285
1729
|
|
|
1286
1730
|
```tsx
|
|
1287
|
-
<Table
|
|
1288
|
-
|
|
1289
|
-
'
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
}
|
|
1731
|
+
<Table
|
|
1732
|
+
sx={{
|
|
1733
|
+
'@media (max-width: 768px)': {
|
|
1734
|
+
'& td, & th': {
|
|
1735
|
+
fontSize: 'sm',
|
|
1736
|
+
px: 1,
|
|
1737
|
+
},
|
|
1738
|
+
},
|
|
1739
|
+
}}
|
|
1740
|
+
>
|
|
1295
1741
|
{/* Table content */}
|
|
1296
1742
|
</Table>
|
|
1297
1743
|
```
|