@nextop-os/ui-system 0.0.15 → 0.0.17
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/AGENTS.md +84 -0
- package/README.md +86 -0
- package/UI_SYSTEM_GUIDELINES.md +148 -0
- package/agent/install-skill.mjs +181 -0
- package/agent/nextop-ui-system/SKILL.md +79 -0
- package/agent/nextop-ui-system/references/extract-base-component.md +43 -0
- package/agent/nextop-ui-system/references/maintain-inventory.md +40 -0
- package/agent/nextop-ui-system/references/promote-business-component.md +352 -0
- package/agent/nextop-ui-system/references/use-existing-component.md +37 -0
- package/agent/nextop-ui-system/scripts/create-business-preview.mjs +658 -0
- package/dist/{chunk-G6KJIFD2.js → chunk-FT633NLJ.js} +2 -2
- package/dist/{chunk-OBW6ALOJ.js → chunk-NFSMZKML.js} +78 -3
- package/dist/chunk-NFSMZKML.js.map +1 -0
- package/dist/chunk-XHA7R2WC.js +292 -0
- package/dist/chunk-XHA7R2WC.js.map +1 -0
- package/dist/components/index.js +2 -2
- package/dist/dev-vite.d.ts +9 -0
- package/dist/dev-vite.js +578 -0
- package/dist/dev-vite.js.map +1 -0
- package/dist/icons/index.d.ts +14 -1
- package/dist/icons/index.js +16 -2
- package/dist/index.d.ts +1 -1
- package/dist/index.js +17 -3
- package/dist/metadata/components.json +1464 -0
- package/dist/metadata/components.schema.json +106 -0
- package/dist/metadata/index.d.ts +25 -0
- package/dist/metadata/index.js +1472 -0
- package/dist/metadata/index.js.map +1 -0
- package/dist/styles/semantic.css +1 -0
- package/dist/styles/theme.css +12 -0
- package/package.json +25 -3
- package/dist/chunk-IK2XRJQG.js +0 -56
- package/dist/chunk-IK2XRJQG.js.map +0 -1
- package/dist/chunk-OBW6ALOJ.js.map +0 -1
- /package/dist/{chunk-G6KJIFD2.js.map → chunk-FT633NLJ.js.map} +0 -0
|
@@ -0,0 +1,1464 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "./components.schema.json",
|
|
3
|
+
"schemaVersion": 1,
|
|
4
|
+
"components": [
|
|
5
|
+
{
|
|
6
|
+
"id": "badge",
|
|
7
|
+
"layer": "base",
|
|
8
|
+
"name": "Badge",
|
|
9
|
+
"export": "Badge",
|
|
10
|
+
"from": "@nextop-os/ui-system/components",
|
|
11
|
+
"category": "primitive",
|
|
12
|
+
"status": "stable",
|
|
13
|
+
"source": "src/components/badge.tsx",
|
|
14
|
+
"description": "Inline label component with semantic visual variants.",
|
|
15
|
+
"useCases": ["Status labels", "Compact metadata", "Counts or tags"],
|
|
16
|
+
"migrationHints": [],
|
|
17
|
+
"storyboard": true
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"id": "badge-variants",
|
|
21
|
+
"layer": "base",
|
|
22
|
+
"name": "badgeVariants",
|
|
23
|
+
"export": "badgeVariants",
|
|
24
|
+
"from": "@nextop-os/ui-system/components",
|
|
25
|
+
"category": "utility",
|
|
26
|
+
"status": "stable",
|
|
27
|
+
"source": "src/components/badge.tsx",
|
|
28
|
+
"description": "Class variance helper for Badge styling.",
|
|
29
|
+
"useCases": ["Composing badge-compatible styles"],
|
|
30
|
+
"migrationHints": []
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"id": "button",
|
|
34
|
+
"layer": "base",
|
|
35
|
+
"name": "Button",
|
|
36
|
+
"export": "Button",
|
|
37
|
+
"from": "@nextop-os/ui-system/components",
|
|
38
|
+
"category": "primitive",
|
|
39
|
+
"status": "stable",
|
|
40
|
+
"source": "src/components/button.tsx",
|
|
41
|
+
"description": "Interactive button primitive with variants, sizes, and slot support.",
|
|
42
|
+
"useCases": ["Primary actions", "Secondary actions", "Icon buttons"],
|
|
43
|
+
"migrationHints": [],
|
|
44
|
+
"storyboard": true
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"id": "button-variants",
|
|
48
|
+
"layer": "base",
|
|
49
|
+
"name": "buttonVariants",
|
|
50
|
+
"export": "buttonVariants",
|
|
51
|
+
"from": "@nextop-os/ui-system/components",
|
|
52
|
+
"category": "utility",
|
|
53
|
+
"status": "stable",
|
|
54
|
+
"source": "src/components/button.tsx",
|
|
55
|
+
"description": "Class variance helper for Button styling.",
|
|
56
|
+
"useCases": ["Composing button-compatible styles"],
|
|
57
|
+
"migrationHints": []
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"id": "card",
|
|
61
|
+
"layer": "base",
|
|
62
|
+
"name": "Card",
|
|
63
|
+
"export": "Card",
|
|
64
|
+
"from": "@nextop-os/ui-system/components",
|
|
65
|
+
"category": "composition",
|
|
66
|
+
"status": "stable",
|
|
67
|
+
"source": "src/components/card.tsx",
|
|
68
|
+
"description": "Structured container for grouped interface content.",
|
|
69
|
+
"useCases": ["Panels", "Grouped details", "Section containers"],
|
|
70
|
+
"migrationHints": [],
|
|
71
|
+
"storyboard": true
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"id": "card-header",
|
|
75
|
+
"layer": "base",
|
|
76
|
+
"name": "CardHeader",
|
|
77
|
+
"export": "CardHeader",
|
|
78
|
+
"from": "@nextop-os/ui-system/components",
|
|
79
|
+
"category": "composition",
|
|
80
|
+
"status": "stable",
|
|
81
|
+
"source": "src/components/card.tsx",
|
|
82
|
+
"description": "Header region for Card layouts.",
|
|
83
|
+
"useCases": ["Card titles", "Card summaries", "Card actions"],
|
|
84
|
+
"migrationHints": []
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"id": "card-footer",
|
|
88
|
+
"layer": "base",
|
|
89
|
+
"name": "CardFooter",
|
|
90
|
+
"export": "CardFooter",
|
|
91
|
+
"from": "@nextop-os/ui-system/components",
|
|
92
|
+
"category": "composition",
|
|
93
|
+
"status": "stable",
|
|
94
|
+
"source": "src/components/card.tsx",
|
|
95
|
+
"description": "Footer region for Card layouts.",
|
|
96
|
+
"useCases": ["Card actions", "Supplemental controls"],
|
|
97
|
+
"migrationHints": []
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"id": "card-title",
|
|
101
|
+
"layer": "base",
|
|
102
|
+
"name": "CardTitle",
|
|
103
|
+
"export": "CardTitle",
|
|
104
|
+
"from": "@nextop-os/ui-system/components",
|
|
105
|
+
"category": "composition",
|
|
106
|
+
"status": "stable",
|
|
107
|
+
"source": "src/components/card.tsx",
|
|
108
|
+
"description": "Title text region for Card headers.",
|
|
109
|
+
"useCases": ["Card headings"],
|
|
110
|
+
"migrationHints": []
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"id": "card-action",
|
|
114
|
+
"layer": "base",
|
|
115
|
+
"name": "CardAction",
|
|
116
|
+
"export": "CardAction",
|
|
117
|
+
"from": "@nextop-os/ui-system/components",
|
|
118
|
+
"category": "composition",
|
|
119
|
+
"status": "stable",
|
|
120
|
+
"source": "src/components/card.tsx",
|
|
121
|
+
"description": "Action region aligned within Card headers.",
|
|
122
|
+
"useCases": ["Header buttons", "Header menus"],
|
|
123
|
+
"migrationHints": []
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"id": "card-description",
|
|
127
|
+
"layer": "base",
|
|
128
|
+
"name": "CardDescription",
|
|
129
|
+
"export": "CardDescription",
|
|
130
|
+
"from": "@nextop-os/ui-system/components",
|
|
131
|
+
"category": "composition",
|
|
132
|
+
"status": "stable",
|
|
133
|
+
"source": "src/components/card.tsx",
|
|
134
|
+
"description": "Secondary description text for Card headers.",
|
|
135
|
+
"useCases": ["Card summaries", "Supporting copy"],
|
|
136
|
+
"migrationHints": []
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
"id": "card-content",
|
|
140
|
+
"layer": "base",
|
|
141
|
+
"name": "CardContent",
|
|
142
|
+
"export": "CardContent",
|
|
143
|
+
"from": "@nextop-os/ui-system/components",
|
|
144
|
+
"category": "composition",
|
|
145
|
+
"status": "stable",
|
|
146
|
+
"source": "src/components/card.tsx",
|
|
147
|
+
"description": "Main content region for Card layouts.",
|
|
148
|
+
"useCases": ["Card body content"],
|
|
149
|
+
"migrationHints": []
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"id": "confirmation-dialog",
|
|
153
|
+
"layer": "base",
|
|
154
|
+
"name": "ConfirmationDialog",
|
|
155
|
+
"export": "ConfirmationDialog",
|
|
156
|
+
"from": "@nextop-os/ui-system/components",
|
|
157
|
+
"category": "composition",
|
|
158
|
+
"status": "stable",
|
|
159
|
+
"source": "src/components/confirmation-dialog.tsx",
|
|
160
|
+
"description": "Opinionated confirmation dialog built on the Dialog primitives.",
|
|
161
|
+
"useCases": [
|
|
162
|
+
"Confirming destructive actions",
|
|
163
|
+
"Blocking confirmation flows"
|
|
164
|
+
],
|
|
165
|
+
"migrationHints": [],
|
|
166
|
+
"storyboard": true
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"id": "dialog",
|
|
170
|
+
"layer": "base",
|
|
171
|
+
"name": "Dialog",
|
|
172
|
+
"export": "Dialog",
|
|
173
|
+
"from": "@nextop-os/ui-system/components",
|
|
174
|
+
"category": "composition",
|
|
175
|
+
"status": "stable",
|
|
176
|
+
"source": "src/components/dialog.tsx",
|
|
177
|
+
"description": "Dialog root primitive for modal and non-modal overlays.",
|
|
178
|
+
"useCases": ["Modal surfaces", "Focused workflows"],
|
|
179
|
+
"migrationHints": [],
|
|
180
|
+
"storyboard": true
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"id": "dialog-close",
|
|
184
|
+
"layer": "base",
|
|
185
|
+
"name": "DialogClose",
|
|
186
|
+
"export": "DialogClose",
|
|
187
|
+
"from": "@nextop-os/ui-system/components",
|
|
188
|
+
"category": "composition",
|
|
189
|
+
"status": "stable",
|
|
190
|
+
"source": "src/components/dialog.tsx",
|
|
191
|
+
"description": "Close control primitive for Dialog compositions.",
|
|
192
|
+
"useCases": ["Dialog close buttons"],
|
|
193
|
+
"migrationHints": []
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
"id": "dialog-content",
|
|
197
|
+
"layer": "base",
|
|
198
|
+
"name": "DialogContent",
|
|
199
|
+
"export": "DialogContent",
|
|
200
|
+
"from": "@nextop-os/ui-system/components",
|
|
201
|
+
"category": "composition",
|
|
202
|
+
"status": "stable",
|
|
203
|
+
"source": "src/components/dialog.tsx",
|
|
204
|
+
"description": "Content surface for Dialog layouts.",
|
|
205
|
+
"useCases": ["Dialog bodies", "Modal panels"],
|
|
206
|
+
"migrationHints": []
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
"id": "dialog-description",
|
|
210
|
+
"layer": "base",
|
|
211
|
+
"name": "DialogDescription",
|
|
212
|
+
"export": "DialogDescription",
|
|
213
|
+
"from": "@nextop-os/ui-system/components",
|
|
214
|
+
"category": "composition",
|
|
215
|
+
"status": "stable",
|
|
216
|
+
"source": "src/components/dialog.tsx",
|
|
217
|
+
"description": "Accessible description primitive for Dialog content.",
|
|
218
|
+
"useCases": ["Dialog supporting copy"],
|
|
219
|
+
"migrationHints": []
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"id": "dialog-footer",
|
|
223
|
+
"layer": "base",
|
|
224
|
+
"name": "DialogFooter",
|
|
225
|
+
"export": "DialogFooter",
|
|
226
|
+
"from": "@nextop-os/ui-system/components",
|
|
227
|
+
"category": "composition",
|
|
228
|
+
"status": "stable",
|
|
229
|
+
"source": "src/components/dialog.tsx",
|
|
230
|
+
"description": "Footer region for Dialog actions.",
|
|
231
|
+
"useCases": ["Dialog action rows"],
|
|
232
|
+
"migrationHints": []
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
"id": "dialog-header",
|
|
236
|
+
"layer": "base",
|
|
237
|
+
"name": "DialogHeader",
|
|
238
|
+
"export": "DialogHeader",
|
|
239
|
+
"from": "@nextop-os/ui-system/components",
|
|
240
|
+
"category": "composition",
|
|
241
|
+
"status": "stable",
|
|
242
|
+
"source": "src/components/dialog.tsx",
|
|
243
|
+
"description": "Header region for Dialog titles and descriptions.",
|
|
244
|
+
"useCases": ["Dialog headings"],
|
|
245
|
+
"migrationHints": []
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"id": "dialog-overlay",
|
|
249
|
+
"layer": "base",
|
|
250
|
+
"name": "DialogOverlay",
|
|
251
|
+
"export": "DialogOverlay",
|
|
252
|
+
"from": "@nextop-os/ui-system/components",
|
|
253
|
+
"category": "composition",
|
|
254
|
+
"status": "stable",
|
|
255
|
+
"source": "src/components/dialog.tsx",
|
|
256
|
+
"description": "Overlay backdrop for Dialog content.",
|
|
257
|
+
"useCases": ["Modal backdrops"],
|
|
258
|
+
"migrationHints": []
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
"id": "dialog-portal",
|
|
262
|
+
"layer": "base",
|
|
263
|
+
"name": "DialogPortal",
|
|
264
|
+
"export": "DialogPortal",
|
|
265
|
+
"from": "@nextop-os/ui-system/components",
|
|
266
|
+
"category": "composition",
|
|
267
|
+
"status": "stable",
|
|
268
|
+
"source": "src/components/dialog.tsx",
|
|
269
|
+
"description": "Portal primitive for Dialog content placement.",
|
|
270
|
+
"useCases": ["Portaled dialog content"],
|
|
271
|
+
"migrationHints": []
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
"id": "dialog-title",
|
|
275
|
+
"layer": "base",
|
|
276
|
+
"name": "DialogTitle",
|
|
277
|
+
"export": "DialogTitle",
|
|
278
|
+
"from": "@nextop-os/ui-system/components",
|
|
279
|
+
"category": "composition",
|
|
280
|
+
"status": "stable",
|
|
281
|
+
"source": "src/components/dialog.tsx",
|
|
282
|
+
"description": "Accessible title primitive for Dialog content.",
|
|
283
|
+
"useCases": ["Dialog headings"],
|
|
284
|
+
"migrationHints": []
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
"id": "dialog-trigger",
|
|
288
|
+
"layer": "base",
|
|
289
|
+
"name": "DialogTrigger",
|
|
290
|
+
"export": "DialogTrigger",
|
|
291
|
+
"from": "@nextop-os/ui-system/components",
|
|
292
|
+
"category": "composition",
|
|
293
|
+
"status": "stable",
|
|
294
|
+
"source": "src/components/dialog.tsx",
|
|
295
|
+
"description": "Trigger primitive for opening Dialog content.",
|
|
296
|
+
"useCases": ["Dialog launch controls"],
|
|
297
|
+
"migrationHints": []
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
"id": "dropdown-menu",
|
|
301
|
+
"layer": "base",
|
|
302
|
+
"name": "DropdownMenu",
|
|
303
|
+
"export": "DropdownMenu",
|
|
304
|
+
"from": "@nextop-os/ui-system/components",
|
|
305
|
+
"category": "composition",
|
|
306
|
+
"status": "stable",
|
|
307
|
+
"source": "src/components/dropdown-menu.tsx",
|
|
308
|
+
"description": "Dropdown menu root primitive for contextual actions.",
|
|
309
|
+
"useCases": ["Action menus", "Contextual controls"],
|
|
310
|
+
"migrationHints": [],
|
|
311
|
+
"storyboard": true
|
|
312
|
+
},
|
|
313
|
+
{
|
|
314
|
+
"id": "dropdown-menu-checkbox-item",
|
|
315
|
+
"layer": "base",
|
|
316
|
+
"name": "DropdownMenuCheckboxItem",
|
|
317
|
+
"export": "DropdownMenuCheckboxItem",
|
|
318
|
+
"from": "@nextop-os/ui-system/components",
|
|
319
|
+
"category": "composition",
|
|
320
|
+
"status": "stable",
|
|
321
|
+
"source": "src/components/dropdown-menu.tsx",
|
|
322
|
+
"description": "Checkbox item primitive for DropdownMenu selections.",
|
|
323
|
+
"useCases": ["Toggleable menu options"],
|
|
324
|
+
"migrationHints": []
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
"id": "dropdown-menu-content",
|
|
328
|
+
"layer": "base",
|
|
329
|
+
"name": "DropdownMenuContent",
|
|
330
|
+
"export": "DropdownMenuContent",
|
|
331
|
+
"from": "@nextop-os/ui-system/components",
|
|
332
|
+
"category": "composition",
|
|
333
|
+
"status": "stable",
|
|
334
|
+
"source": "src/components/dropdown-menu.tsx",
|
|
335
|
+
"description": "Popup content surface for DropdownMenu options.",
|
|
336
|
+
"useCases": ["Menu panels", "Context menus"],
|
|
337
|
+
"migrationHints": []
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
"id": "dropdown-menu-group",
|
|
341
|
+
"layer": "base",
|
|
342
|
+
"name": "DropdownMenuGroup",
|
|
343
|
+
"export": "DropdownMenuGroup",
|
|
344
|
+
"from": "@nextop-os/ui-system/components",
|
|
345
|
+
"category": "composition",
|
|
346
|
+
"status": "stable",
|
|
347
|
+
"source": "src/components/dropdown-menu.tsx",
|
|
348
|
+
"description": "Group container for related DropdownMenu items.",
|
|
349
|
+
"useCases": ["Grouped menu actions"],
|
|
350
|
+
"migrationHints": []
|
|
351
|
+
},
|
|
352
|
+
{
|
|
353
|
+
"id": "dropdown-menu-item",
|
|
354
|
+
"layer": "base",
|
|
355
|
+
"name": "DropdownMenuItem",
|
|
356
|
+
"export": "DropdownMenuItem",
|
|
357
|
+
"from": "@nextop-os/ui-system/components",
|
|
358
|
+
"category": "composition",
|
|
359
|
+
"status": "stable",
|
|
360
|
+
"source": "src/components/dropdown-menu.tsx",
|
|
361
|
+
"description": "Selectable action row for DropdownMenu content.",
|
|
362
|
+
"useCases": ["Menu actions", "Destructive menu actions"],
|
|
363
|
+
"migrationHints": []
|
|
364
|
+
},
|
|
365
|
+
{
|
|
366
|
+
"id": "dropdown-menu-label",
|
|
367
|
+
"layer": "base",
|
|
368
|
+
"name": "DropdownMenuLabel",
|
|
369
|
+
"export": "DropdownMenuLabel",
|
|
370
|
+
"from": "@nextop-os/ui-system/components",
|
|
371
|
+
"category": "composition",
|
|
372
|
+
"status": "stable",
|
|
373
|
+
"source": "src/components/dropdown-menu.tsx",
|
|
374
|
+
"description": "Label primitive for DropdownMenu sections.",
|
|
375
|
+
"useCases": ["Menu section labels"],
|
|
376
|
+
"migrationHints": []
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
"id": "dropdown-menu-portal",
|
|
380
|
+
"layer": "base",
|
|
381
|
+
"name": "DropdownMenuPortal",
|
|
382
|
+
"export": "DropdownMenuPortal",
|
|
383
|
+
"from": "@nextop-os/ui-system/components",
|
|
384
|
+
"category": "composition",
|
|
385
|
+
"status": "stable",
|
|
386
|
+
"source": "src/components/dropdown-menu.tsx",
|
|
387
|
+
"description": "Portal primitive for DropdownMenu content placement.",
|
|
388
|
+
"useCases": ["Portaled menu content"],
|
|
389
|
+
"migrationHints": []
|
|
390
|
+
},
|
|
391
|
+
{
|
|
392
|
+
"id": "dropdown-menu-radio-group",
|
|
393
|
+
"layer": "base",
|
|
394
|
+
"name": "DropdownMenuRadioGroup",
|
|
395
|
+
"export": "DropdownMenuRadioGroup",
|
|
396
|
+
"from": "@nextop-os/ui-system/components",
|
|
397
|
+
"category": "composition",
|
|
398
|
+
"status": "stable",
|
|
399
|
+
"source": "src/components/dropdown-menu.tsx",
|
|
400
|
+
"description": "Radio group primitive for DropdownMenu selections.",
|
|
401
|
+
"useCases": ["Single-choice menu groups"],
|
|
402
|
+
"migrationHints": []
|
|
403
|
+
},
|
|
404
|
+
{
|
|
405
|
+
"id": "dropdown-menu-radio-item",
|
|
406
|
+
"layer": "base",
|
|
407
|
+
"name": "DropdownMenuRadioItem",
|
|
408
|
+
"export": "DropdownMenuRadioItem",
|
|
409
|
+
"from": "@nextop-os/ui-system/components",
|
|
410
|
+
"category": "composition",
|
|
411
|
+
"status": "stable",
|
|
412
|
+
"source": "src/components/dropdown-menu.tsx",
|
|
413
|
+
"description": "Radio item primitive for DropdownMenu selections.",
|
|
414
|
+
"useCases": ["Single-choice menu options"],
|
|
415
|
+
"migrationHints": []
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
"id": "dropdown-menu-separator",
|
|
419
|
+
"layer": "base",
|
|
420
|
+
"name": "DropdownMenuSeparator",
|
|
421
|
+
"export": "DropdownMenuSeparator",
|
|
422
|
+
"from": "@nextop-os/ui-system/components",
|
|
423
|
+
"category": "composition",
|
|
424
|
+
"status": "stable",
|
|
425
|
+
"source": "src/components/dropdown-menu.tsx",
|
|
426
|
+
"description": "Separator primitive for DropdownMenu groups.",
|
|
427
|
+
"useCases": ["Menu group separation"],
|
|
428
|
+
"migrationHints": []
|
|
429
|
+
},
|
|
430
|
+
{
|
|
431
|
+
"id": "dropdown-menu-shortcut",
|
|
432
|
+
"layer": "base",
|
|
433
|
+
"name": "DropdownMenuShortcut",
|
|
434
|
+
"export": "DropdownMenuShortcut",
|
|
435
|
+
"from": "@nextop-os/ui-system/components",
|
|
436
|
+
"category": "composition",
|
|
437
|
+
"status": "stable",
|
|
438
|
+
"source": "src/components/dropdown-menu.tsx",
|
|
439
|
+
"description": "Shortcut text primitive for DropdownMenu items.",
|
|
440
|
+
"useCases": ["Keyboard shortcut hints"],
|
|
441
|
+
"migrationHints": []
|
|
442
|
+
},
|
|
443
|
+
{
|
|
444
|
+
"id": "dropdown-menu-sub",
|
|
445
|
+
"layer": "base",
|
|
446
|
+
"name": "DropdownMenuSub",
|
|
447
|
+
"export": "DropdownMenuSub",
|
|
448
|
+
"from": "@nextop-os/ui-system/components",
|
|
449
|
+
"category": "composition",
|
|
450
|
+
"status": "stable",
|
|
451
|
+
"source": "src/components/dropdown-menu.tsx",
|
|
452
|
+
"description": "Submenu root primitive for nested DropdownMenu content.",
|
|
453
|
+
"useCases": ["Nested menus"],
|
|
454
|
+
"migrationHints": []
|
|
455
|
+
},
|
|
456
|
+
{
|
|
457
|
+
"id": "dropdown-menu-sub-content",
|
|
458
|
+
"layer": "base",
|
|
459
|
+
"name": "DropdownMenuSubContent",
|
|
460
|
+
"export": "DropdownMenuSubContent",
|
|
461
|
+
"from": "@nextop-os/ui-system/components",
|
|
462
|
+
"category": "composition",
|
|
463
|
+
"status": "stable",
|
|
464
|
+
"source": "src/components/dropdown-menu.tsx",
|
|
465
|
+
"description": "Popup content surface for DropdownMenu submenus.",
|
|
466
|
+
"useCases": ["Nested menu panels"],
|
|
467
|
+
"migrationHints": []
|
|
468
|
+
},
|
|
469
|
+
{
|
|
470
|
+
"id": "dropdown-menu-sub-trigger",
|
|
471
|
+
"layer": "base",
|
|
472
|
+
"name": "DropdownMenuSubTrigger",
|
|
473
|
+
"export": "DropdownMenuSubTrigger",
|
|
474
|
+
"from": "@nextop-os/ui-system/components",
|
|
475
|
+
"category": "composition",
|
|
476
|
+
"status": "stable",
|
|
477
|
+
"source": "src/components/dropdown-menu.tsx",
|
|
478
|
+
"description": "Trigger row for opening DropdownMenu submenus.",
|
|
479
|
+
"useCases": ["Nested menu launch controls"],
|
|
480
|
+
"migrationHints": []
|
|
481
|
+
},
|
|
482
|
+
{
|
|
483
|
+
"id": "dropdown-menu-trigger",
|
|
484
|
+
"layer": "base",
|
|
485
|
+
"name": "DropdownMenuTrigger",
|
|
486
|
+
"export": "DropdownMenuTrigger",
|
|
487
|
+
"from": "@nextop-os/ui-system/components",
|
|
488
|
+
"category": "primitive",
|
|
489
|
+
"status": "stable",
|
|
490
|
+
"source": "src/components/dropdown-menu.tsx",
|
|
491
|
+
"description": "Trigger control for opening DropdownMenu content.",
|
|
492
|
+
"useCases": ["Menu buttons", "Contextual action controls"],
|
|
493
|
+
"migrationHints": []
|
|
494
|
+
},
|
|
495
|
+
{
|
|
496
|
+
"id": "input",
|
|
497
|
+
"layer": "base",
|
|
498
|
+
"name": "Input",
|
|
499
|
+
"export": "Input",
|
|
500
|
+
"from": "@nextop-os/ui-system/components",
|
|
501
|
+
"category": "primitive",
|
|
502
|
+
"status": "stable",
|
|
503
|
+
"source": "src/components/input.tsx",
|
|
504
|
+
"description": "Styled input primitive for text and form fields.",
|
|
505
|
+
"useCases": ["Text fields", "Form inputs"],
|
|
506
|
+
"migrationHints": [],
|
|
507
|
+
"storyboard": true
|
|
508
|
+
},
|
|
509
|
+
{
|
|
510
|
+
"id": "resizable-panel-group",
|
|
511
|
+
"layer": "base",
|
|
512
|
+
"name": "ResizablePanelGroup",
|
|
513
|
+
"export": "ResizablePanelGroup",
|
|
514
|
+
"from": "@nextop-os/ui-system/components",
|
|
515
|
+
"category": "composition",
|
|
516
|
+
"status": "stable",
|
|
517
|
+
"source": "src/components/resizable.tsx",
|
|
518
|
+
"description": "Container for resizable panel layouts.",
|
|
519
|
+
"useCases": ["Split panes", "Resizable workspaces"],
|
|
520
|
+
"migrationHints": [],
|
|
521
|
+
"storyboard": true
|
|
522
|
+
},
|
|
523
|
+
{
|
|
524
|
+
"id": "resizable-panel",
|
|
525
|
+
"layer": "base",
|
|
526
|
+
"name": "ResizablePanel",
|
|
527
|
+
"export": "ResizablePanel",
|
|
528
|
+
"from": "@nextop-os/ui-system/components",
|
|
529
|
+
"category": "composition",
|
|
530
|
+
"status": "stable",
|
|
531
|
+
"source": "src/components/resizable.tsx",
|
|
532
|
+
"description": "Panel primitive used inside resizable panel groups.",
|
|
533
|
+
"useCases": ["Resizable content panes"],
|
|
534
|
+
"migrationHints": []
|
|
535
|
+
},
|
|
536
|
+
{
|
|
537
|
+
"id": "resizable-handle",
|
|
538
|
+
"layer": "base",
|
|
539
|
+
"name": "ResizableHandle",
|
|
540
|
+
"export": "ResizableHandle",
|
|
541
|
+
"from": "@nextop-os/ui-system/components",
|
|
542
|
+
"category": "composition",
|
|
543
|
+
"status": "stable",
|
|
544
|
+
"source": "src/components/resizable.tsx",
|
|
545
|
+
"description": "Handle primitive for resizing adjacent panels.",
|
|
546
|
+
"useCases": ["Panel resize handles"],
|
|
547
|
+
"migrationHints": []
|
|
548
|
+
},
|
|
549
|
+
{
|
|
550
|
+
"id": "scroll-area",
|
|
551
|
+
"layer": "base",
|
|
552
|
+
"name": "ScrollArea",
|
|
553
|
+
"export": "ScrollArea",
|
|
554
|
+
"from": "@nextop-os/ui-system/components",
|
|
555
|
+
"category": "primitive",
|
|
556
|
+
"status": "stable",
|
|
557
|
+
"source": "src/components/scroll-area.tsx",
|
|
558
|
+
"description": "Styled scroll container with custom scrollbar primitives.",
|
|
559
|
+
"useCases": ["Scrollable regions", "Panel content overflow"],
|
|
560
|
+
"migrationHints": [],
|
|
561
|
+
"storyboard": true
|
|
562
|
+
},
|
|
563
|
+
{
|
|
564
|
+
"id": "scroll-bar",
|
|
565
|
+
"layer": "base",
|
|
566
|
+
"name": "ScrollBar",
|
|
567
|
+
"export": "ScrollBar",
|
|
568
|
+
"from": "@nextop-os/ui-system/components",
|
|
569
|
+
"category": "primitive",
|
|
570
|
+
"status": "stable",
|
|
571
|
+
"source": "src/components/scroll-area.tsx",
|
|
572
|
+
"description": "Scrollbar primitive used by ScrollArea.",
|
|
573
|
+
"useCases": ["Custom scrollbars"],
|
|
574
|
+
"migrationHints": []
|
|
575
|
+
},
|
|
576
|
+
{
|
|
577
|
+
"id": "select",
|
|
578
|
+
"layer": "base",
|
|
579
|
+
"name": "Select",
|
|
580
|
+
"export": "Select",
|
|
581
|
+
"from": "@nextop-os/ui-system/components",
|
|
582
|
+
"category": "primitive",
|
|
583
|
+
"status": "stable",
|
|
584
|
+
"source": "src/components/select.tsx",
|
|
585
|
+
"description": "Select root primitive for choosing one option from a list.",
|
|
586
|
+
"useCases": ["Option selection", "Forms", "Compact filters"],
|
|
587
|
+
"migrationHints": [],
|
|
588
|
+
"storyboard": true
|
|
589
|
+
},
|
|
590
|
+
{
|
|
591
|
+
"id": "select-content",
|
|
592
|
+
"layer": "base",
|
|
593
|
+
"name": "SelectContent",
|
|
594
|
+
"export": "SelectContent",
|
|
595
|
+
"from": "@nextop-os/ui-system/components",
|
|
596
|
+
"category": "composition",
|
|
597
|
+
"status": "stable",
|
|
598
|
+
"source": "src/components/select.tsx",
|
|
599
|
+
"description": "Popup content surface for Select options.",
|
|
600
|
+
"useCases": ["Select menus", "Option lists"],
|
|
601
|
+
"migrationHints": []
|
|
602
|
+
},
|
|
603
|
+
{
|
|
604
|
+
"id": "select-group",
|
|
605
|
+
"layer": "base",
|
|
606
|
+
"name": "SelectGroup",
|
|
607
|
+
"export": "SelectGroup",
|
|
608
|
+
"from": "@nextop-os/ui-system/components",
|
|
609
|
+
"category": "composition",
|
|
610
|
+
"status": "stable",
|
|
611
|
+
"source": "src/components/select.tsx",
|
|
612
|
+
"description": "Group container for related Select items.",
|
|
613
|
+
"useCases": ["Grouped options"],
|
|
614
|
+
"migrationHints": []
|
|
615
|
+
},
|
|
616
|
+
{
|
|
617
|
+
"id": "select-item",
|
|
618
|
+
"layer": "base",
|
|
619
|
+
"name": "SelectItem",
|
|
620
|
+
"export": "SelectItem",
|
|
621
|
+
"from": "@nextop-os/ui-system/components",
|
|
622
|
+
"category": "composition",
|
|
623
|
+
"status": "stable",
|
|
624
|
+
"source": "src/components/select.tsx",
|
|
625
|
+
"description": "Selectable option row for Select menus.",
|
|
626
|
+
"useCases": ["Menu options", "Single-select choices"],
|
|
627
|
+
"migrationHints": []
|
|
628
|
+
},
|
|
629
|
+
{
|
|
630
|
+
"id": "select-label",
|
|
631
|
+
"layer": "base",
|
|
632
|
+
"name": "SelectLabel",
|
|
633
|
+
"export": "SelectLabel",
|
|
634
|
+
"from": "@nextop-os/ui-system/components",
|
|
635
|
+
"category": "composition",
|
|
636
|
+
"status": "stable",
|
|
637
|
+
"source": "src/components/select.tsx",
|
|
638
|
+
"description": "Label primitive for grouped Select options.",
|
|
639
|
+
"useCases": ["Option group labels"],
|
|
640
|
+
"migrationHints": []
|
|
641
|
+
},
|
|
642
|
+
{
|
|
643
|
+
"id": "select-scroll-down-button",
|
|
644
|
+
"layer": "base",
|
|
645
|
+
"name": "SelectScrollDownButton",
|
|
646
|
+
"export": "SelectScrollDownButton",
|
|
647
|
+
"from": "@nextop-os/ui-system/components",
|
|
648
|
+
"category": "composition",
|
|
649
|
+
"status": "stable",
|
|
650
|
+
"source": "src/components/select.tsx",
|
|
651
|
+
"description": "Scroll down affordance for overflowing Select content.",
|
|
652
|
+
"useCases": ["Long option lists"],
|
|
653
|
+
"migrationHints": []
|
|
654
|
+
},
|
|
655
|
+
{
|
|
656
|
+
"id": "select-scroll-up-button",
|
|
657
|
+
"layer": "base",
|
|
658
|
+
"name": "SelectScrollUpButton",
|
|
659
|
+
"export": "SelectScrollUpButton",
|
|
660
|
+
"from": "@nextop-os/ui-system/components",
|
|
661
|
+
"category": "composition",
|
|
662
|
+
"status": "stable",
|
|
663
|
+
"source": "src/components/select.tsx",
|
|
664
|
+
"description": "Scroll up affordance for overflowing Select content.",
|
|
665
|
+
"useCases": ["Long option lists"],
|
|
666
|
+
"migrationHints": []
|
|
667
|
+
},
|
|
668
|
+
{
|
|
669
|
+
"id": "select-separator",
|
|
670
|
+
"layer": "base",
|
|
671
|
+
"name": "SelectSeparator",
|
|
672
|
+
"export": "SelectSeparator",
|
|
673
|
+
"from": "@nextop-os/ui-system/components",
|
|
674
|
+
"category": "composition",
|
|
675
|
+
"status": "stable",
|
|
676
|
+
"source": "src/components/select.tsx",
|
|
677
|
+
"description": "Separator primitive for Select option groups.",
|
|
678
|
+
"useCases": ["Grouped option separation"],
|
|
679
|
+
"migrationHints": []
|
|
680
|
+
},
|
|
681
|
+
{
|
|
682
|
+
"id": "select-trigger",
|
|
683
|
+
"layer": "base",
|
|
684
|
+
"name": "SelectTrigger",
|
|
685
|
+
"export": "SelectTrigger",
|
|
686
|
+
"from": "@nextop-os/ui-system/components",
|
|
687
|
+
"category": "primitive",
|
|
688
|
+
"status": "stable",
|
|
689
|
+
"source": "src/components/select.tsx",
|
|
690
|
+
"description": "Trigger control for opening Select content.",
|
|
691
|
+
"useCases": ["Form controls", "Filter controls"],
|
|
692
|
+
"migrationHints": []
|
|
693
|
+
},
|
|
694
|
+
{
|
|
695
|
+
"id": "select-value",
|
|
696
|
+
"layer": "base",
|
|
697
|
+
"name": "SelectValue",
|
|
698
|
+
"export": "SelectValue",
|
|
699
|
+
"from": "@nextop-os/ui-system/components",
|
|
700
|
+
"category": "composition",
|
|
701
|
+
"status": "stable",
|
|
702
|
+
"source": "src/components/select.tsx",
|
|
703
|
+
"description": "Selected value display primitive for Select triggers.",
|
|
704
|
+
"useCases": ["Selected option display"],
|
|
705
|
+
"migrationHints": []
|
|
706
|
+
},
|
|
707
|
+
{
|
|
708
|
+
"id": "separator",
|
|
709
|
+
"layer": "base",
|
|
710
|
+
"name": "Separator",
|
|
711
|
+
"export": "Separator",
|
|
712
|
+
"from": "@nextop-os/ui-system/components",
|
|
713
|
+
"category": "primitive",
|
|
714
|
+
"status": "stable",
|
|
715
|
+
"source": "src/components/separator.tsx",
|
|
716
|
+
"description": "Horizontal or vertical separator primitive.",
|
|
717
|
+
"useCases": ["Visual dividers", "Grouped content separation"],
|
|
718
|
+
"migrationHints": [],
|
|
719
|
+
"storyboard": true
|
|
720
|
+
},
|
|
721
|
+
{
|
|
722
|
+
"id": "toast-provider",
|
|
723
|
+
"layer": "base",
|
|
724
|
+
"name": "ToastProvider",
|
|
725
|
+
"export": "ToastProvider",
|
|
726
|
+
"from": "@nextop-os/ui-system/components",
|
|
727
|
+
"category": "composition",
|
|
728
|
+
"status": "stable",
|
|
729
|
+
"source": "src/components/toast.tsx",
|
|
730
|
+
"description": "Provider primitive for toast notification state.",
|
|
731
|
+
"useCases": ["Toast notification setup"],
|
|
732
|
+
"migrationHints": []
|
|
733
|
+
},
|
|
734
|
+
{
|
|
735
|
+
"id": "toast-root",
|
|
736
|
+
"layer": "base",
|
|
737
|
+
"name": "ToastRoot",
|
|
738
|
+
"export": "ToastRoot",
|
|
739
|
+
"from": "@nextop-os/ui-system/components",
|
|
740
|
+
"category": "composition",
|
|
741
|
+
"status": "stable",
|
|
742
|
+
"source": "src/components/toast.tsx",
|
|
743
|
+
"description": "Toast notification surface primitive.",
|
|
744
|
+
"useCases": ["Toast messages", "Transient feedback"],
|
|
745
|
+
"migrationHints": [],
|
|
746
|
+
"storyboard": true
|
|
747
|
+
},
|
|
748
|
+
{
|
|
749
|
+
"id": "toast-title",
|
|
750
|
+
"layer": "base",
|
|
751
|
+
"name": "ToastTitle",
|
|
752
|
+
"export": "ToastTitle",
|
|
753
|
+
"from": "@nextop-os/ui-system/components",
|
|
754
|
+
"category": "composition",
|
|
755
|
+
"status": "stable",
|
|
756
|
+
"source": "src/components/toast.tsx",
|
|
757
|
+
"description": "Title region for toast notifications.",
|
|
758
|
+
"useCases": ["Toast headings"],
|
|
759
|
+
"migrationHints": []
|
|
760
|
+
},
|
|
761
|
+
{
|
|
762
|
+
"id": "toast-description",
|
|
763
|
+
"layer": "base",
|
|
764
|
+
"name": "ToastDescription",
|
|
765
|
+
"export": "ToastDescription",
|
|
766
|
+
"from": "@nextop-os/ui-system/components",
|
|
767
|
+
"category": "composition",
|
|
768
|
+
"status": "stable",
|
|
769
|
+
"source": "src/components/toast.tsx",
|
|
770
|
+
"description": "Description region for toast notifications.",
|
|
771
|
+
"useCases": ["Toast supporting copy"],
|
|
772
|
+
"migrationHints": []
|
|
773
|
+
},
|
|
774
|
+
{
|
|
775
|
+
"id": "toast-close",
|
|
776
|
+
"layer": "base",
|
|
777
|
+
"name": "ToastClose",
|
|
778
|
+
"export": "ToastClose",
|
|
779
|
+
"from": "@nextop-os/ui-system/components",
|
|
780
|
+
"category": "composition",
|
|
781
|
+
"status": "stable",
|
|
782
|
+
"source": "src/components/toast.tsx",
|
|
783
|
+
"description": "Close control for toast notifications.",
|
|
784
|
+
"useCases": ["Dismissible toasts"],
|
|
785
|
+
"migrationHints": []
|
|
786
|
+
},
|
|
787
|
+
{
|
|
788
|
+
"id": "toast-viewport",
|
|
789
|
+
"layer": "base",
|
|
790
|
+
"name": "ToastViewport",
|
|
791
|
+
"export": "ToastViewport",
|
|
792
|
+
"from": "@nextop-os/ui-system/components",
|
|
793
|
+
"category": "composition",
|
|
794
|
+
"status": "stable",
|
|
795
|
+
"source": "src/components/toast.tsx",
|
|
796
|
+
"description": "Viewport container for toast notification placement.",
|
|
797
|
+
"useCases": ["Toast stacks"],
|
|
798
|
+
"migrationHints": []
|
|
799
|
+
},
|
|
800
|
+
{
|
|
801
|
+
"id": "toast-variants",
|
|
802
|
+
"layer": "base",
|
|
803
|
+
"name": "toastVariants",
|
|
804
|
+
"export": "toastVariants",
|
|
805
|
+
"from": "@nextop-os/ui-system/components",
|
|
806
|
+
"category": "utility",
|
|
807
|
+
"status": "stable",
|
|
808
|
+
"source": "src/components/toast.tsx",
|
|
809
|
+
"description": "Class variance helper for Toast styling.",
|
|
810
|
+
"useCases": ["Composing toast-compatible styles"],
|
|
811
|
+
"migrationHints": []
|
|
812
|
+
},
|
|
813
|
+
{
|
|
814
|
+
"id": "nextop-mark",
|
|
815
|
+
"layer": "base",
|
|
816
|
+
"name": "NextopMark",
|
|
817
|
+
"export": "NextopMark",
|
|
818
|
+
"from": "@nextop-os/ui-system/icons",
|
|
819
|
+
"category": "icon",
|
|
820
|
+
"status": "stable",
|
|
821
|
+
"source": "src/icons/nextop-mark.tsx",
|
|
822
|
+
"description": "Nextop brand mark SVG icon.",
|
|
823
|
+
"useCases": ["Brand marks", "Application identity"],
|
|
824
|
+
"migrationHints": []
|
|
825
|
+
},
|
|
826
|
+
{
|
|
827
|
+
"id": "launch-icon",
|
|
828
|
+
"layer": "base",
|
|
829
|
+
"name": "LaunchIcon",
|
|
830
|
+
"export": "LaunchIcon",
|
|
831
|
+
"from": "@nextop-os/ui-system/icons",
|
|
832
|
+
"category": "icon",
|
|
833
|
+
"status": "stable",
|
|
834
|
+
"source": "src/icons/system-icons.tsx",
|
|
835
|
+
"description": "System icon for launch or external navigation actions.",
|
|
836
|
+
"useCases": ["Launch actions", "External links"],
|
|
837
|
+
"migrationHints": []
|
|
838
|
+
},
|
|
839
|
+
{
|
|
840
|
+
"id": "folder-icon",
|
|
841
|
+
"layer": "base",
|
|
842
|
+
"name": "FolderIcon",
|
|
843
|
+
"export": "FolderIcon",
|
|
844
|
+
"from": "@nextop-os/ui-system/icons",
|
|
845
|
+
"category": "icon",
|
|
846
|
+
"status": "stable",
|
|
847
|
+
"source": "src/icons/system-icons.tsx",
|
|
848
|
+
"description": "System icon for folders or open directories.",
|
|
849
|
+
"useCases": ["Folders", "Directory navigation"],
|
|
850
|
+
"migrationHints": []
|
|
851
|
+
},
|
|
852
|
+
{
|
|
853
|
+
"id": "dashboard-icon",
|
|
854
|
+
"layer": "base",
|
|
855
|
+
"name": "DashboardIcon",
|
|
856
|
+
"export": "DashboardIcon",
|
|
857
|
+
"from": "@nextop-os/ui-system/icons",
|
|
858
|
+
"category": "icon",
|
|
859
|
+
"status": "stable",
|
|
860
|
+
"source": "src/icons/system-icons.tsx",
|
|
861
|
+
"description": "System icon for dashboard or home surfaces.",
|
|
862
|
+
"useCases": ["Dashboards", "Home navigation"],
|
|
863
|
+
"migrationHints": []
|
|
864
|
+
},
|
|
865
|
+
{
|
|
866
|
+
"id": "new-workspace-icon",
|
|
867
|
+
"layer": "base",
|
|
868
|
+
"name": "NewWorkspaceIcon",
|
|
869
|
+
"export": "NewWorkspaceIcon",
|
|
870
|
+
"from": "@nextop-os/ui-system/icons",
|
|
871
|
+
"category": "icon",
|
|
872
|
+
"status": "stable",
|
|
873
|
+
"source": "src/icons/system-icons.tsx",
|
|
874
|
+
"description": "System icon for creating a workspace or folder.",
|
|
875
|
+
"useCases": ["Create workspace actions", "New folder actions"],
|
|
876
|
+
"migrationHints": []
|
|
877
|
+
},
|
|
878
|
+
{
|
|
879
|
+
"id": "health-icon",
|
|
880
|
+
"layer": "base",
|
|
881
|
+
"name": "HealthIcon",
|
|
882
|
+
"export": "HealthIcon",
|
|
883
|
+
"from": "@nextop-os/ui-system/icons",
|
|
884
|
+
"category": "icon",
|
|
885
|
+
"status": "stable",
|
|
886
|
+
"source": "src/icons/system-icons.tsx",
|
|
887
|
+
"description": "System icon for health or storage state.",
|
|
888
|
+
"useCases": ["System status", "Storage indicators"],
|
|
889
|
+
"migrationHints": []
|
|
890
|
+
},
|
|
891
|
+
{
|
|
892
|
+
"id": "alert-icon",
|
|
893
|
+
"layer": "base",
|
|
894
|
+
"name": "AlertIcon",
|
|
895
|
+
"export": "AlertIcon",
|
|
896
|
+
"from": "@nextop-os/ui-system/icons",
|
|
897
|
+
"category": "icon",
|
|
898
|
+
"status": "stable",
|
|
899
|
+
"source": "src/icons/system-icons.tsx",
|
|
900
|
+
"description": "System icon for alerts or warnings.",
|
|
901
|
+
"useCases": ["Warnings", "Error states"],
|
|
902
|
+
"migrationHints": []
|
|
903
|
+
},
|
|
904
|
+
{
|
|
905
|
+
"id": "loading-icon",
|
|
906
|
+
"layer": "base",
|
|
907
|
+
"name": "LoadingIcon",
|
|
908
|
+
"export": "LoadingIcon",
|
|
909
|
+
"from": "@nextop-os/ui-system/icons",
|
|
910
|
+
"category": "icon",
|
|
911
|
+
"status": "stable",
|
|
912
|
+
"source": "src/icons/system-icons.tsx",
|
|
913
|
+
"description": "System icon for loading or progress states.",
|
|
914
|
+
"useCases": ["Loading states", "Busy indicators"],
|
|
915
|
+
"migrationHints": []
|
|
916
|
+
},
|
|
917
|
+
{
|
|
918
|
+
"id": "platform-icon",
|
|
919
|
+
"layer": "base",
|
|
920
|
+
"name": "PlatformIcon",
|
|
921
|
+
"export": "PlatformIcon",
|
|
922
|
+
"from": "@nextop-os/ui-system/icons",
|
|
923
|
+
"category": "icon",
|
|
924
|
+
"status": "stable",
|
|
925
|
+
"source": "src/icons/system-icons.tsx",
|
|
926
|
+
"description": "System icon for platform or environment settings.",
|
|
927
|
+
"useCases": ["Platform settings", "Environment indicators"],
|
|
928
|
+
"migrationHints": []
|
|
929
|
+
},
|
|
930
|
+
{
|
|
931
|
+
"id": "spark-icon",
|
|
932
|
+
"layer": "base",
|
|
933
|
+
"name": "SparkIcon",
|
|
934
|
+
"export": "SparkIcon",
|
|
935
|
+
"from": "@nextop-os/ui-system/icons",
|
|
936
|
+
"category": "icon",
|
|
937
|
+
"status": "stable",
|
|
938
|
+
"source": "src/icons/system-icons.tsx",
|
|
939
|
+
"description": "System icon for spark or assistant-oriented affordances.",
|
|
940
|
+
"useCases": ["AI actions", "Highlights"],
|
|
941
|
+
"migrationHints": []
|
|
942
|
+
},
|
|
943
|
+
{
|
|
944
|
+
"id": "settings-icon",
|
|
945
|
+
"layer": "base",
|
|
946
|
+
"name": "SettingsIcon",
|
|
947
|
+
"export": "SettingsIcon",
|
|
948
|
+
"from": "@nextop-os/ui-system/icons",
|
|
949
|
+
"category": "icon",
|
|
950
|
+
"status": "stable",
|
|
951
|
+
"source": "src/icons/system-icons.tsx",
|
|
952
|
+
"description": "System icon for settings.",
|
|
953
|
+
"useCases": ["Settings navigation", "Configuration actions"],
|
|
954
|
+
"migrationHints": []
|
|
955
|
+
},
|
|
956
|
+
{
|
|
957
|
+
"id": "close-icon",
|
|
958
|
+
"layer": "base",
|
|
959
|
+
"name": "CloseIcon",
|
|
960
|
+
"export": "CloseIcon",
|
|
961
|
+
"from": "@nextop-os/ui-system/icons",
|
|
962
|
+
"category": "icon",
|
|
963
|
+
"status": "stable",
|
|
964
|
+
"source": "src/icons/system-icons.tsx",
|
|
965
|
+
"description": "System icon for close or dismiss actions.",
|
|
966
|
+
"useCases": ["Close buttons", "Dismiss actions"],
|
|
967
|
+
"migrationHints": []
|
|
968
|
+
},
|
|
969
|
+
{
|
|
970
|
+
"id": "minimize-icon",
|
|
971
|
+
"layer": "base",
|
|
972
|
+
"name": "MinimizeIcon",
|
|
973
|
+
"export": "MinimizeIcon",
|
|
974
|
+
"from": "@nextop-os/ui-system/icons",
|
|
975
|
+
"category": "icon",
|
|
976
|
+
"status": "stable",
|
|
977
|
+
"source": "src/icons/system-icons.tsx",
|
|
978
|
+
"description": "System icon for minimize actions.",
|
|
979
|
+
"useCases": ["Window controls", "Collapse actions"],
|
|
980
|
+
"migrationHints": []
|
|
981
|
+
},
|
|
982
|
+
{
|
|
983
|
+
"id": "maximize-icon",
|
|
984
|
+
"layer": "base",
|
|
985
|
+
"name": "MaximizeIcon",
|
|
986
|
+
"export": "MaximizeIcon",
|
|
987
|
+
"from": "@nextop-os/ui-system/icons",
|
|
988
|
+
"category": "icon",
|
|
989
|
+
"status": "stable",
|
|
990
|
+
"source": "src/icons/system-icons.tsx",
|
|
991
|
+
"description": "System icon for maximize actions.",
|
|
992
|
+
"useCases": ["Window controls", "Expand actions"],
|
|
993
|
+
"migrationHints": []
|
|
994
|
+
},
|
|
995
|
+
{
|
|
996
|
+
"id": "restore-icon",
|
|
997
|
+
"layer": "base",
|
|
998
|
+
"name": "RestoreIcon",
|
|
999
|
+
"export": "RestoreIcon",
|
|
1000
|
+
"from": "@nextop-os/ui-system/icons",
|
|
1001
|
+
"category": "icon",
|
|
1002
|
+
"status": "stable",
|
|
1003
|
+
"source": "src/icons/system-icons.tsx",
|
|
1004
|
+
"description": "System icon for restore actions.",
|
|
1005
|
+
"useCases": ["Window controls", "Restore actions"],
|
|
1006
|
+
"migrationHints": []
|
|
1007
|
+
},
|
|
1008
|
+
{
|
|
1009
|
+
"id": "layout-menu-icon",
|
|
1010
|
+
"layer": "base",
|
|
1011
|
+
"name": "LayoutMenuIcon",
|
|
1012
|
+
"export": "LayoutMenuIcon",
|
|
1013
|
+
"from": "@nextop-os/ui-system/icons",
|
|
1014
|
+
"category": "icon",
|
|
1015
|
+
"status": "stable",
|
|
1016
|
+
"source": "src/icons/system-icons.tsx",
|
|
1017
|
+
"description": "System icon for layout menu controls.",
|
|
1018
|
+
"useCases": ["Layout menus", "Panel controls"],
|
|
1019
|
+
"migrationHints": []
|
|
1020
|
+
},
|
|
1021
|
+
{
|
|
1022
|
+
"id": "quick-layout-left-icon",
|
|
1023
|
+
"layer": "base",
|
|
1024
|
+
"name": "QuickLayoutLeftIcon",
|
|
1025
|
+
"export": "QuickLayoutLeftIcon",
|
|
1026
|
+
"from": "@nextop-os/ui-system/icons",
|
|
1027
|
+
"category": "icon",
|
|
1028
|
+
"status": "stable",
|
|
1029
|
+
"source": "src/icons/system-icons.tsx",
|
|
1030
|
+
"description": "System icon for quick left-side layout actions.",
|
|
1031
|
+
"useCases": ["Layout controls", "Left panel placement"],
|
|
1032
|
+
"migrationHints": []
|
|
1033
|
+
},
|
|
1034
|
+
{
|
|
1035
|
+
"id": "quick-layout-right-icon",
|
|
1036
|
+
"layer": "base",
|
|
1037
|
+
"name": "QuickLayoutRightIcon",
|
|
1038
|
+
"export": "QuickLayoutRightIcon",
|
|
1039
|
+
"from": "@nextop-os/ui-system/icons",
|
|
1040
|
+
"category": "icon",
|
|
1041
|
+
"status": "stable",
|
|
1042
|
+
"source": "src/icons/system-icons.tsx",
|
|
1043
|
+
"description": "System icon for quick right-side layout actions.",
|
|
1044
|
+
"useCases": ["Layout controls", "Right panel placement"],
|
|
1045
|
+
"migrationHints": []
|
|
1046
|
+
},
|
|
1047
|
+
{
|
|
1048
|
+
"id": "quick-layout-top-icon",
|
|
1049
|
+
"layer": "base",
|
|
1050
|
+
"name": "QuickLayoutTopIcon",
|
|
1051
|
+
"export": "QuickLayoutTopIcon",
|
|
1052
|
+
"from": "@nextop-os/ui-system/icons",
|
|
1053
|
+
"category": "icon",
|
|
1054
|
+
"status": "stable",
|
|
1055
|
+
"source": "src/icons/system-icons.tsx",
|
|
1056
|
+
"description": "System icon for quick top layout actions.",
|
|
1057
|
+
"useCases": ["Layout controls", "Top panel placement"],
|
|
1058
|
+
"migrationHints": []
|
|
1059
|
+
},
|
|
1060
|
+
{
|
|
1061
|
+
"id": "quick-layout-bottom-icon",
|
|
1062
|
+
"layer": "base",
|
|
1063
|
+
"name": "QuickLayoutBottomIcon",
|
|
1064
|
+
"export": "QuickLayoutBottomIcon",
|
|
1065
|
+
"from": "@nextop-os/ui-system/icons",
|
|
1066
|
+
"category": "icon",
|
|
1067
|
+
"status": "stable",
|
|
1068
|
+
"source": "src/icons/system-icons.tsx",
|
|
1069
|
+
"description": "System icon for quick bottom layout actions.",
|
|
1070
|
+
"useCases": ["Layout controls", "Bottom panel placement"],
|
|
1071
|
+
"migrationHints": []
|
|
1072
|
+
},
|
|
1073
|
+
{
|
|
1074
|
+
"id": "arrow-left-icon",
|
|
1075
|
+
"layer": "base",
|
|
1076
|
+
"name": "ArrowLeftIcon",
|
|
1077
|
+
"export": "ArrowLeftIcon",
|
|
1078
|
+
"from": "@nextop-os/ui-system/icons",
|
|
1079
|
+
"category": "icon",
|
|
1080
|
+
"status": "stable",
|
|
1081
|
+
"source": "src/icons/system-icons.tsx",
|
|
1082
|
+
"description": "System icon for left navigation.",
|
|
1083
|
+
"useCases": ["Back navigation", "Previous actions"],
|
|
1084
|
+
"migrationHints": []
|
|
1085
|
+
},
|
|
1086
|
+
{
|
|
1087
|
+
"id": "arrow-right-icon",
|
|
1088
|
+
"layer": "base",
|
|
1089
|
+
"name": "ArrowRightIcon",
|
|
1090
|
+
"export": "ArrowRightIcon",
|
|
1091
|
+
"from": "@nextop-os/ui-system/icons",
|
|
1092
|
+
"category": "icon",
|
|
1093
|
+
"status": "stable",
|
|
1094
|
+
"source": "src/icons/system-icons.tsx",
|
|
1095
|
+
"description": "System icon for right navigation.",
|
|
1096
|
+
"useCases": ["Forward navigation", "Next actions"],
|
|
1097
|
+
"migrationHints": []
|
|
1098
|
+
},
|
|
1099
|
+
{
|
|
1100
|
+
"id": "check-icon",
|
|
1101
|
+
"layer": "base",
|
|
1102
|
+
"name": "CheckIcon",
|
|
1103
|
+
"export": "CheckIcon",
|
|
1104
|
+
"from": "@nextop-os/ui-system/icons",
|
|
1105
|
+
"category": "icon",
|
|
1106
|
+
"status": "stable",
|
|
1107
|
+
"source": "src/icons/system-icons.tsx",
|
|
1108
|
+
"description": "System icon for selected or confirmed states.",
|
|
1109
|
+
"useCases": ["Selected items", "Confirmed states"],
|
|
1110
|
+
"migrationHints": []
|
|
1111
|
+
},
|
|
1112
|
+
{
|
|
1113
|
+
"id": "chevron-down-icon",
|
|
1114
|
+
"layer": "base",
|
|
1115
|
+
"name": "ChevronDownIcon",
|
|
1116
|
+
"export": "ChevronDownIcon",
|
|
1117
|
+
"from": "@nextop-os/ui-system/icons",
|
|
1118
|
+
"category": "icon",
|
|
1119
|
+
"status": "stable",
|
|
1120
|
+
"source": "src/icons/system-icons.tsx",
|
|
1121
|
+
"description": "System icon for downward disclosure or menu controls.",
|
|
1122
|
+
"useCases": ["Select triggers", "Dropdown controls"],
|
|
1123
|
+
"migrationHints": []
|
|
1124
|
+
},
|
|
1125
|
+
{
|
|
1126
|
+
"id": "chevron-up-icon",
|
|
1127
|
+
"layer": "base",
|
|
1128
|
+
"name": "ChevronUpIcon",
|
|
1129
|
+
"export": "ChevronUpIcon",
|
|
1130
|
+
"from": "@nextop-os/ui-system/icons",
|
|
1131
|
+
"category": "icon",
|
|
1132
|
+
"status": "stable",
|
|
1133
|
+
"source": "src/icons/system-icons.tsx",
|
|
1134
|
+
"description": "System icon for upward disclosure or scroll controls.",
|
|
1135
|
+
"useCases": ["Scrollable menus", "Disclosure controls"],
|
|
1136
|
+
"migrationHints": []
|
|
1137
|
+
},
|
|
1138
|
+
{
|
|
1139
|
+
"id": "copy-icon",
|
|
1140
|
+
"layer": "base",
|
|
1141
|
+
"name": "CopyIcon",
|
|
1142
|
+
"export": "CopyIcon",
|
|
1143
|
+
"from": "@nextop-os/ui-system/icons",
|
|
1144
|
+
"category": "icon",
|
|
1145
|
+
"status": "stable",
|
|
1146
|
+
"source": "src/icons/system-icons.tsx",
|
|
1147
|
+
"description": "System icon for copy actions.",
|
|
1148
|
+
"useCases": ["Copy buttons"],
|
|
1149
|
+
"migrationHints": []
|
|
1150
|
+
},
|
|
1151
|
+
{
|
|
1152
|
+
"id": "directory-icon",
|
|
1153
|
+
"layer": "base",
|
|
1154
|
+
"name": "DirectoryIcon",
|
|
1155
|
+
"export": "DirectoryIcon",
|
|
1156
|
+
"from": "@nextop-os/ui-system/icons",
|
|
1157
|
+
"category": "icon",
|
|
1158
|
+
"status": "stable",
|
|
1159
|
+
"source": "src/icons/system-icons.tsx",
|
|
1160
|
+
"description": "System icon for directories.",
|
|
1161
|
+
"useCases": ["Directory items", "Folder paths"],
|
|
1162
|
+
"migrationHints": []
|
|
1163
|
+
},
|
|
1164
|
+
{
|
|
1165
|
+
"id": "eye-icon",
|
|
1166
|
+
"layer": "base",
|
|
1167
|
+
"name": "EyeIcon",
|
|
1168
|
+
"export": "EyeIcon",
|
|
1169
|
+
"from": "@nextop-os/ui-system/icons",
|
|
1170
|
+
"category": "icon",
|
|
1171
|
+
"status": "stable",
|
|
1172
|
+
"source": "src/icons/system-icons.tsx",
|
|
1173
|
+
"description": "System icon for viewing or previewing content.",
|
|
1174
|
+
"useCases": ["Preview actions", "Visibility controls"],
|
|
1175
|
+
"migrationHints": []
|
|
1176
|
+
},
|
|
1177
|
+
{
|
|
1178
|
+
"id": "file-icon",
|
|
1179
|
+
"layer": "base",
|
|
1180
|
+
"name": "FileIcon",
|
|
1181
|
+
"export": "FileIcon",
|
|
1182
|
+
"from": "@nextop-os/ui-system/icons",
|
|
1183
|
+
"category": "icon",
|
|
1184
|
+
"status": "stable",
|
|
1185
|
+
"source": "src/icons/system-icons.tsx",
|
|
1186
|
+
"description": "System icon for generic files.",
|
|
1187
|
+
"useCases": ["File items", "Document lists"],
|
|
1188
|
+
"migrationHints": []
|
|
1189
|
+
},
|
|
1190
|
+
{
|
|
1191
|
+
"id": "file-code-icon",
|
|
1192
|
+
"layer": "base",
|
|
1193
|
+
"name": "FileCodeIcon",
|
|
1194
|
+
"export": "FileCodeIcon",
|
|
1195
|
+
"from": "@nextop-os/ui-system/icons",
|
|
1196
|
+
"category": "icon",
|
|
1197
|
+
"status": "stable",
|
|
1198
|
+
"source": "src/icons/system-icons.tsx",
|
|
1199
|
+
"description": "System icon for code files.",
|
|
1200
|
+
"useCases": ["Code file items"],
|
|
1201
|
+
"migrationHints": []
|
|
1202
|
+
},
|
|
1203
|
+
{
|
|
1204
|
+
"id": "file-create-icon",
|
|
1205
|
+
"layer": "base",
|
|
1206
|
+
"name": "FileCreateIcon",
|
|
1207
|
+
"export": "FileCreateIcon",
|
|
1208
|
+
"from": "@nextop-os/ui-system/icons",
|
|
1209
|
+
"category": "icon",
|
|
1210
|
+
"status": "stable",
|
|
1211
|
+
"source": "src/icons/system-icons.tsx",
|
|
1212
|
+
"description": "System icon for creating files.",
|
|
1213
|
+
"useCases": ["New file actions"],
|
|
1214
|
+
"migrationHints": []
|
|
1215
|
+
},
|
|
1216
|
+
{
|
|
1217
|
+
"id": "file-search-icon",
|
|
1218
|
+
"layer": "base",
|
|
1219
|
+
"name": "FileSearchIcon",
|
|
1220
|
+
"export": "FileSearchIcon",
|
|
1221
|
+
"from": "@nextop-os/ui-system/icons",
|
|
1222
|
+
"category": "icon",
|
|
1223
|
+
"status": "stable",
|
|
1224
|
+
"source": "src/icons/system-icons.tsx",
|
|
1225
|
+
"description": "System icon for searching files.",
|
|
1226
|
+
"useCases": ["File search", "Inspect file actions"],
|
|
1227
|
+
"migrationHints": []
|
|
1228
|
+
},
|
|
1229
|
+
{
|
|
1230
|
+
"id": "file-spreadsheet-icon",
|
|
1231
|
+
"layer": "base",
|
|
1232
|
+
"name": "FileSpreadsheetIcon",
|
|
1233
|
+
"export": "FileSpreadsheetIcon",
|
|
1234
|
+
"from": "@nextop-os/ui-system/icons",
|
|
1235
|
+
"category": "icon",
|
|
1236
|
+
"status": "stable",
|
|
1237
|
+
"source": "src/icons/system-icons.tsx",
|
|
1238
|
+
"description": "System icon for spreadsheet files.",
|
|
1239
|
+
"useCases": ["Spreadsheet file items"],
|
|
1240
|
+
"migrationHints": []
|
|
1241
|
+
},
|
|
1242
|
+
{
|
|
1243
|
+
"id": "file-text-icon",
|
|
1244
|
+
"layer": "base",
|
|
1245
|
+
"name": "FileTextIcon",
|
|
1246
|
+
"export": "FileTextIcon",
|
|
1247
|
+
"from": "@nextop-os/ui-system/icons",
|
|
1248
|
+
"category": "icon",
|
|
1249
|
+
"status": "stable",
|
|
1250
|
+
"source": "src/icons/system-icons.tsx",
|
|
1251
|
+
"description": "System icon for text files.",
|
|
1252
|
+
"useCases": ["Text file items", "Document file items"],
|
|
1253
|
+
"migrationHints": []
|
|
1254
|
+
},
|
|
1255
|
+
{
|
|
1256
|
+
"id": "image-file-icon",
|
|
1257
|
+
"layer": "base",
|
|
1258
|
+
"name": "ImageFileIcon",
|
|
1259
|
+
"export": "ImageFileIcon",
|
|
1260
|
+
"from": "@nextop-os/ui-system/icons",
|
|
1261
|
+
"category": "icon",
|
|
1262
|
+
"status": "stable",
|
|
1263
|
+
"source": "src/icons/system-icons.tsx",
|
|
1264
|
+
"description": "System icon for image files.",
|
|
1265
|
+
"useCases": ["Image file items"],
|
|
1266
|
+
"migrationHints": []
|
|
1267
|
+
},
|
|
1268
|
+
{
|
|
1269
|
+
"id": "app-window-icon",
|
|
1270
|
+
"layer": "base",
|
|
1271
|
+
"name": "AppWindowIcon",
|
|
1272
|
+
"export": "AppWindowIcon",
|
|
1273
|
+
"from": "@nextop-os/ui-system/icons",
|
|
1274
|
+
"category": "icon",
|
|
1275
|
+
"status": "stable",
|
|
1276
|
+
"source": "src/icons/system-icons.tsx",
|
|
1277
|
+
"description": "System icon for application windows.",
|
|
1278
|
+
"useCases": ["Window controls", "Application surfaces"],
|
|
1279
|
+
"migrationHints": []
|
|
1280
|
+
},
|
|
1281
|
+
{
|
|
1282
|
+
"id": "chevron-right-icon",
|
|
1283
|
+
"layer": "base",
|
|
1284
|
+
"name": "ChevronRightIcon",
|
|
1285
|
+
"export": "ChevronRightIcon",
|
|
1286
|
+
"from": "@nextop-os/ui-system/icons",
|
|
1287
|
+
"category": "icon",
|
|
1288
|
+
"status": "stable",
|
|
1289
|
+
"source": "src/icons/system-icons.tsx",
|
|
1290
|
+
"description": "System icon for rightward disclosure or nested navigation.",
|
|
1291
|
+
"useCases": ["Disclosure controls", "Nested menu triggers"],
|
|
1292
|
+
"migrationHints": []
|
|
1293
|
+
},
|
|
1294
|
+
{
|
|
1295
|
+
"id": "edit-icon",
|
|
1296
|
+
"layer": "base",
|
|
1297
|
+
"name": "EditIcon",
|
|
1298
|
+
"export": "EditIcon",
|
|
1299
|
+
"from": "@nextop-os/ui-system/icons",
|
|
1300
|
+
"category": "icon",
|
|
1301
|
+
"status": "stable",
|
|
1302
|
+
"source": "src/icons/system-icons.tsx",
|
|
1303
|
+
"description": "System icon for edit actions.",
|
|
1304
|
+
"useCases": ["Edit buttons", "Toolbars"],
|
|
1305
|
+
"migrationHints": []
|
|
1306
|
+
},
|
|
1307
|
+
{
|
|
1308
|
+
"id": "layout-grid-icon",
|
|
1309
|
+
"layer": "base",
|
|
1310
|
+
"name": "LayoutGridIcon",
|
|
1311
|
+
"export": "LayoutGridIcon",
|
|
1312
|
+
"from": "@nextop-os/ui-system/icons",
|
|
1313
|
+
"category": "icon",
|
|
1314
|
+
"status": "stable",
|
|
1315
|
+
"source": "src/icons/system-icons.tsx",
|
|
1316
|
+
"description": "System icon for grid layout choices.",
|
|
1317
|
+
"useCases": ["Layout controls", "Grid view toggles"],
|
|
1318
|
+
"migrationHints": []
|
|
1319
|
+
},
|
|
1320
|
+
{
|
|
1321
|
+
"id": "more-horizontal-icon",
|
|
1322
|
+
"layer": "base",
|
|
1323
|
+
"name": "MoreHorizontalIcon",
|
|
1324
|
+
"export": "MoreHorizontalIcon",
|
|
1325
|
+
"from": "@nextop-os/ui-system/icons",
|
|
1326
|
+
"category": "icon",
|
|
1327
|
+
"status": "stable",
|
|
1328
|
+
"source": "src/icons/system-icons.tsx",
|
|
1329
|
+
"description": "System icon for overflow or additional actions menus.",
|
|
1330
|
+
"useCases": ["Overflow menus", "Secondary action buttons"],
|
|
1331
|
+
"migrationHints": []
|
|
1332
|
+
},
|
|
1333
|
+
{
|
|
1334
|
+
"id": "layout-preset-icon",
|
|
1335
|
+
"layer": "base",
|
|
1336
|
+
"name": "LayoutPresetIcon",
|
|
1337
|
+
"export": "LayoutPresetIcon",
|
|
1338
|
+
"from": "@nextop-os/ui-system/icons",
|
|
1339
|
+
"category": "icon",
|
|
1340
|
+
"status": "stable",
|
|
1341
|
+
"source": "src/icons/layout-preset-icons.tsx",
|
|
1342
|
+
"description": "System icon for workspace layout preset choices.",
|
|
1343
|
+
"useCases": ["Layout preset controls", "Window arrangement menus"],
|
|
1344
|
+
"migrationHints": []
|
|
1345
|
+
},
|
|
1346
|
+
{
|
|
1347
|
+
"id": "refresh-icon",
|
|
1348
|
+
"layer": "base",
|
|
1349
|
+
"name": "RefreshIcon",
|
|
1350
|
+
"export": "RefreshIcon",
|
|
1351
|
+
"from": "@nextop-os/ui-system/icons",
|
|
1352
|
+
"category": "icon",
|
|
1353
|
+
"status": "stable",
|
|
1354
|
+
"source": "src/icons/system-icons.tsx",
|
|
1355
|
+
"description": "System icon for refresh actions.",
|
|
1356
|
+
"useCases": ["Refresh buttons", "Reload actions"],
|
|
1357
|
+
"migrationHints": []
|
|
1358
|
+
},
|
|
1359
|
+
{
|
|
1360
|
+
"id": "search-icon",
|
|
1361
|
+
"layer": "base",
|
|
1362
|
+
"name": "SearchIcon",
|
|
1363
|
+
"export": "SearchIcon",
|
|
1364
|
+
"from": "@nextop-os/ui-system/icons",
|
|
1365
|
+
"category": "icon",
|
|
1366
|
+
"status": "stable",
|
|
1367
|
+
"source": "src/icons/system-icons.tsx",
|
|
1368
|
+
"description": "System icon for search actions.",
|
|
1369
|
+
"useCases": ["Search inputs", "Search buttons"],
|
|
1370
|
+
"migrationHints": []
|
|
1371
|
+
},
|
|
1372
|
+
{
|
|
1373
|
+
"id": "delete-icon",
|
|
1374
|
+
"layer": "base",
|
|
1375
|
+
"name": "DeleteIcon",
|
|
1376
|
+
"export": "DeleteIcon",
|
|
1377
|
+
"from": "@nextop-os/ui-system/icons",
|
|
1378
|
+
"category": "icon",
|
|
1379
|
+
"status": "stable",
|
|
1380
|
+
"source": "src/icons/system-icons.tsx",
|
|
1381
|
+
"description": "System icon for delete actions.",
|
|
1382
|
+
"useCases": ["Delete buttons", "Destructive actions"],
|
|
1383
|
+
"migrationHints": []
|
|
1384
|
+
},
|
|
1385
|
+
{
|
|
1386
|
+
"id": "upload-icon",
|
|
1387
|
+
"layer": "base",
|
|
1388
|
+
"name": "UploadIcon",
|
|
1389
|
+
"export": "UploadIcon",
|
|
1390
|
+
"from": "@nextop-os/ui-system/icons",
|
|
1391
|
+
"category": "icon",
|
|
1392
|
+
"status": "stable",
|
|
1393
|
+
"source": "src/icons/system-icons.tsx",
|
|
1394
|
+
"description": "System icon for upload actions.",
|
|
1395
|
+
"useCases": ["Upload buttons", "Import actions"],
|
|
1396
|
+
"migrationHints": []
|
|
1397
|
+
},
|
|
1398
|
+
{
|
|
1399
|
+
"id": "google-brand-icon",
|
|
1400
|
+
"layer": "base",
|
|
1401
|
+
"name": "GoogleBrandIcon",
|
|
1402
|
+
"export": "GoogleBrandIcon",
|
|
1403
|
+
"from": "@nextop-os/ui-system/icons",
|
|
1404
|
+
"category": "icon",
|
|
1405
|
+
"status": "stable",
|
|
1406
|
+
"source": "src/icons/system-icons.tsx",
|
|
1407
|
+
"description": "Google brand icon for sign-in or third-party account actions.",
|
|
1408
|
+
"useCases": ["Third-party authentication", "Brand buttons"],
|
|
1409
|
+
"migrationHints": []
|
|
1410
|
+
},
|
|
1411
|
+
{
|
|
1412
|
+
"id": "git-hub-brand-icon",
|
|
1413
|
+
"layer": "base",
|
|
1414
|
+
"name": "GitHubBrandIcon",
|
|
1415
|
+
"export": "GitHubBrandIcon",
|
|
1416
|
+
"from": "@nextop-os/ui-system/icons",
|
|
1417
|
+
"category": "icon",
|
|
1418
|
+
"status": "stable",
|
|
1419
|
+
"source": "src/icons/system-icons.tsx",
|
|
1420
|
+
"description": "GitHub brand icon for sign-in or repository actions.",
|
|
1421
|
+
"useCases": ["Third-party authentication", "Repository actions"],
|
|
1422
|
+
"migrationHints": []
|
|
1423
|
+
},
|
|
1424
|
+
{
|
|
1425
|
+
"id": "video-file-icon",
|
|
1426
|
+
"layer": "base",
|
|
1427
|
+
"name": "VideoFileIcon",
|
|
1428
|
+
"export": "VideoFileIcon",
|
|
1429
|
+
"from": "@nextop-os/ui-system/icons",
|
|
1430
|
+
"category": "icon",
|
|
1431
|
+
"status": "stable",
|
|
1432
|
+
"source": "src/icons/system-icons.tsx",
|
|
1433
|
+
"description": "System icon for video files.",
|
|
1434
|
+
"useCases": ["Video file items"],
|
|
1435
|
+
"migrationHints": []
|
|
1436
|
+
},
|
|
1437
|
+
{
|
|
1438
|
+
"id": "styles-css",
|
|
1439
|
+
"layer": "base",
|
|
1440
|
+
"name": "./styles.css",
|
|
1441
|
+
"export": "./styles.css",
|
|
1442
|
+
"from": "@nextop-os/ui-system/styles.css",
|
|
1443
|
+
"category": "style-entry",
|
|
1444
|
+
"status": "stable",
|
|
1445
|
+
"source": "src/styles/index.css",
|
|
1446
|
+
"description": "CSS entry point for UI system styles.",
|
|
1447
|
+
"useCases": ["Application style imports", "Design token styling"],
|
|
1448
|
+
"migrationHints": []
|
|
1449
|
+
},
|
|
1450
|
+
{
|
|
1451
|
+
"id": "cn",
|
|
1452
|
+
"layer": "base",
|
|
1453
|
+
"name": "cn",
|
|
1454
|
+
"export": "cn",
|
|
1455
|
+
"from": "@nextop-os/ui-system/utils",
|
|
1456
|
+
"category": "utility",
|
|
1457
|
+
"status": "stable",
|
|
1458
|
+
"source": "src/lib/utils.ts",
|
|
1459
|
+
"description": "Utility for merging conditional class names with Tailwind conflict resolution.",
|
|
1460
|
+
"useCases": ["Component class composition", "Consumer style overrides"],
|
|
1461
|
+
"migrationHints": []
|
|
1462
|
+
}
|
|
1463
|
+
]
|
|
1464
|
+
}
|