@tutti-os/ui-system 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. package/AGENTS.md +146 -0
  2. package/LICENSE +202 -0
  3. package/README.md +97 -0
  4. package/agent/install-skill.mjs +241 -0
  5. package/agent/nextop-ui-system/SKILL.md +227 -0
  6. package/agent/nextop-ui-system/references/extract-base-component.md +87 -0
  7. package/agent/nextop-ui-system/references/maintain-inventory.md +45 -0
  8. package/agent/nextop-ui-system/references/promote-business-component.md +316 -0
  9. package/agent/nextop-ui-system/references/use-existing-component.md +37 -0
  10. package/agent/nextop-ui-system/scripts/create-business-preview.mjs +658 -0
  11. package/dist/chunk-2AUYRRDG.js +3078 -0
  12. package/dist/chunk-2AUYRRDG.js.map +1 -0
  13. package/dist/chunk-DGPY4WP3.js +11 -0
  14. package/dist/chunk-DGPY4WP3.js.map +1 -0
  15. package/dist/chunk-GX3U3V36.js +70 -0
  16. package/dist/chunk-GX3U3V36.js.map +1 -0
  17. package/dist/chunk-UTUVPSKL.js +873 -0
  18. package/dist/chunk-UTUVPSKL.js.map +1 -0
  19. package/dist/chunk-XHA7R2WC.js +292 -0
  20. package/dist/chunk-XHA7R2WC.js.map +1 -0
  21. package/dist/components/index.d.ts +360 -0
  22. package/dist/components/index.js +221 -0
  23. package/dist/components/index.js.map +1 -0
  24. package/dist/date-format.d.ts +6 -0
  25. package/dist/date-format.js +11 -0
  26. package/dist/date-format.js.map +1 -0
  27. package/dist/dev-vite.d.ts +9 -0
  28. package/dist/dev-vite.js +583 -0
  29. package/dist/dev-vite.js.map +1 -0
  30. package/dist/icons/index.d.ts +112 -0
  31. package/dist/icons/index.js +191 -0
  32. package/dist/icons/index.js.map +1 -0
  33. package/dist/index.d.ts +13 -0
  34. package/dist/index.js +419 -0
  35. package/dist/index.js.map +1 -0
  36. package/dist/metadata/components.json +2819 -0
  37. package/dist/metadata/components.schema.json +110 -0
  38. package/dist/metadata/index.d.ts +27 -0
  39. package/dist/metadata/index.js +2827 -0
  40. package/dist/metadata/index.js.map +1 -0
  41. package/dist/styles/base.css +170 -0
  42. package/dist/styles/index.css +4 -0
  43. package/dist/styles/semantic.css +50 -0
  44. package/dist/styles/theme.css +366 -0
  45. package/dist/utils.d.ts +5 -0
  46. package/dist/utils.js +7 -0
  47. package/dist/utils.js.map +1 -0
  48. package/package.json +118 -0
  49. package/ui-system.md +671 -0
package/dist/index.js ADDED
@@ -0,0 +1,419 @@
1
+ import {
2
+ Badge,
3
+ BareIconButton,
4
+ Button,
5
+ Card,
6
+ CardAction,
7
+ CardContent,
8
+ CardDescription,
9
+ CardFooter,
10
+ CardHeader,
11
+ CardTitle,
12
+ Checkbox,
13
+ ConfirmationDialog,
14
+ DatePicker,
15
+ Dialog,
16
+ DialogClose,
17
+ DialogContent,
18
+ DialogDescription,
19
+ DialogFooter,
20
+ DialogHeader,
21
+ DialogOverlay,
22
+ DialogPortal,
23
+ DialogTitle,
24
+ DialogTrigger,
25
+ Drawer,
26
+ DrawerClose,
27
+ DrawerContent,
28
+ DrawerDescription,
29
+ DrawerFooter,
30
+ DrawerHeader,
31
+ DrawerOverlay,
32
+ DrawerPortal,
33
+ DrawerTitle,
34
+ DrawerTrigger,
35
+ DropdownMenu,
36
+ DropdownMenuCheckboxItem,
37
+ DropdownMenuContent,
38
+ DropdownMenuGroup,
39
+ DropdownMenuItem,
40
+ DropdownMenuLabel,
41
+ DropdownMenuPortal,
42
+ DropdownMenuRadioGroup,
43
+ DropdownMenuRadioItem,
44
+ DropdownMenuSeparator,
45
+ DropdownMenuShortcut,
46
+ DropdownMenuSub,
47
+ DropdownMenuSubContent,
48
+ DropdownMenuSubTrigger,
49
+ DropdownMenuTrigger,
50
+ Input,
51
+ MentionPill,
52
+ MenuSurface,
53
+ Popover,
54
+ PopoverAnchor,
55
+ PopoverClose,
56
+ PopoverContent,
57
+ PopoverPortal,
58
+ PopoverTrigger,
59
+ ResizableHandle,
60
+ ResizablePanel,
61
+ ResizablePanelGroup,
62
+ ScrollArea,
63
+ ScrollBar,
64
+ SectionTabs,
65
+ Select,
66
+ SelectContent,
67
+ SelectGroup,
68
+ SelectItem,
69
+ SelectLabel,
70
+ SelectScrollDownButton,
71
+ SelectScrollUpButton,
72
+ SelectSeparator,
73
+ SelectSplitColumn,
74
+ SelectSplitColumnItems,
75
+ SelectSplitColumnLabel,
76
+ SelectSplitDivider,
77
+ SelectSplitLayout,
78
+ SelectTrigger,
79
+ SelectValue,
80
+ Separator,
81
+ ShortcutBadge,
82
+ Spinner,
83
+ StatusDot,
84
+ Switch,
85
+ Textarea,
86
+ ToastClose,
87
+ ToastDescription,
88
+ ToastProvider,
89
+ ToastRoot,
90
+ ToastTitle,
91
+ ToastViewport,
92
+ Toaster,
93
+ Tooltip,
94
+ TooltipContent,
95
+ TooltipPortal,
96
+ TooltipProvider,
97
+ TooltipTrigger,
98
+ UnderlineTabs,
99
+ ViewportMenuSurface,
100
+ badgeVariants,
101
+ buttonVariants,
102
+ menuItemClassName,
103
+ menuItemIndicatorClassName,
104
+ menuItemWithIndicatorClassName,
105
+ menuSurfaceClassName,
106
+ statusDotVariants,
107
+ toast,
108
+ toastVariants
109
+ } from "./chunk-2AUYRRDG.js";
110
+ import {
111
+ formatNextopDateTime,
112
+ formatNextopShortDateTime,
113
+ getCurrentNextopDateLocale
114
+ } from "./chunk-GX3U3V36.js";
115
+ import {
116
+ LayoutPresetIcon,
117
+ NextopMark
118
+ } from "./chunk-XHA7R2WC.js";
119
+ import {
120
+ AddIcon,
121
+ AgentSessionsIcon,
122
+ AppWindowIcon,
123
+ ArrowLeftIcon,
124
+ ArrowRightIcon,
125
+ AskLinedIcon,
126
+ CapabilityIcon,
127
+ ChatIcon,
128
+ CheckIcon,
129
+ ChevronDownIcon,
130
+ ChevronUpIcon,
131
+ CloseIcon,
132
+ CopyIcon,
133
+ CreateChatIcon,
134
+ DarkModeIcon,
135
+ DashboardIcon,
136
+ DeleteIcon,
137
+ DirectoryIcon,
138
+ DownloadIcon,
139
+ EditIcon,
140
+ EyeIcon,
141
+ FailedFilledIcon,
142
+ FailedLinedIcon,
143
+ FileCodeIcon,
144
+ FileCreateIcon,
145
+ FileIcon,
146
+ FileLinedIcon,
147
+ FileTextIcon,
148
+ FolderFailedIcon,
149
+ FolderFilledIcon,
150
+ FolderIcon,
151
+ GitHubBrandIcon,
152
+ GoogleBrandIcon,
153
+ GridBottomLinedIcon,
154
+ GridHorizontalLinedIcon,
155
+ GridLeftLinedIcon,
156
+ GridRightLinedIcon,
157
+ GridTopLinedIcon,
158
+ GridVerticalLinedIcon,
159
+ GuideIcon,
160
+ HealthIcon,
161
+ ImageFileIcon,
162
+ ImageGenerateIcon,
163
+ IssueIcon,
164
+ KeyboardIcon,
165
+ LaunchIcon,
166
+ LayoutMenuIcon,
167
+ LightModeIcon,
168
+ LinkIcon,
169
+ LoadingIcon,
170
+ LocateFolderIcon,
171
+ MaximizeIcon,
172
+ MinimizeIcon,
173
+ MoreHorizontalIcon,
174
+ NavAgentsIcon,
175
+ NavApplicationsFilledIcon,
176
+ NavApplicationsLinedIcon,
177
+ NavLaunchIcon,
178
+ NewWorkspaceIcon,
179
+ NewWorkspaceLinedIcon,
180
+ NoWorkspaceLinedIcon,
181
+ OpenSessionsIcon,
182
+ OverviewLayoutIcon,
183
+ PanelIcon,
184
+ PauseIcon,
185
+ PinFilledIcon,
186
+ PinIcon,
187
+ PlatformIcon,
188
+ PlayIcon,
189
+ ProductDocIcon,
190
+ ProductIcon,
191
+ RefreshIcon,
192
+ RestoreIcon,
193
+ RoomsHintIcon,
194
+ SearchIcon,
195
+ SettingsIcon,
196
+ SuccessFilledIcon,
197
+ SuccessLinedIcon,
198
+ TaskIcon,
199
+ ThinkingIcon,
200
+ ToolsIcon,
201
+ UnavailableChatIcon,
202
+ UninstallIcon,
203
+ UploadFolderIcon,
204
+ UploadIcon,
205
+ VideoFileIcon,
206
+ WarningFilledIcon,
207
+ WarningLinedIcon,
208
+ WebIcon,
209
+ WebScrapeIcon
210
+ } from "./chunk-UTUVPSKL.js";
211
+ import {
212
+ cn
213
+ } from "./chunk-DGPY4WP3.js";
214
+ export {
215
+ AddIcon,
216
+ AgentSessionsIcon,
217
+ AppWindowIcon,
218
+ ArrowLeftIcon,
219
+ ArrowRightIcon,
220
+ AskLinedIcon,
221
+ Badge,
222
+ BareIconButton,
223
+ Button,
224
+ CapabilityIcon,
225
+ Card,
226
+ CardAction,
227
+ CardContent,
228
+ CardDescription,
229
+ CardFooter,
230
+ CardHeader,
231
+ CardTitle,
232
+ ChatIcon,
233
+ CheckIcon,
234
+ Checkbox,
235
+ ChevronDownIcon,
236
+ ChevronUpIcon,
237
+ CloseIcon,
238
+ ConfirmationDialog,
239
+ CopyIcon,
240
+ CreateChatIcon,
241
+ DarkModeIcon,
242
+ DashboardIcon,
243
+ DatePicker,
244
+ DeleteIcon,
245
+ Dialog,
246
+ DialogClose,
247
+ DialogContent,
248
+ DialogDescription,
249
+ DialogFooter,
250
+ DialogHeader,
251
+ DialogOverlay,
252
+ DialogPortal,
253
+ DialogTitle,
254
+ DialogTrigger,
255
+ DirectoryIcon,
256
+ DownloadIcon,
257
+ Drawer,
258
+ DrawerClose,
259
+ DrawerContent,
260
+ DrawerDescription,
261
+ DrawerFooter,
262
+ DrawerHeader,
263
+ DrawerOverlay,
264
+ DrawerPortal,
265
+ DrawerTitle,
266
+ DrawerTrigger,
267
+ DropdownMenu,
268
+ DropdownMenuCheckboxItem,
269
+ DropdownMenuContent,
270
+ DropdownMenuGroup,
271
+ DropdownMenuItem,
272
+ DropdownMenuLabel,
273
+ DropdownMenuPortal,
274
+ DropdownMenuRadioGroup,
275
+ DropdownMenuRadioItem,
276
+ DropdownMenuSeparator,
277
+ DropdownMenuShortcut,
278
+ DropdownMenuSub,
279
+ DropdownMenuSubContent,
280
+ DropdownMenuSubTrigger,
281
+ DropdownMenuTrigger,
282
+ EditIcon,
283
+ EyeIcon,
284
+ FailedFilledIcon,
285
+ FailedLinedIcon,
286
+ FileCodeIcon,
287
+ FileCreateIcon,
288
+ FileIcon,
289
+ FileLinedIcon,
290
+ FileTextIcon,
291
+ FolderFailedIcon,
292
+ FolderFilledIcon,
293
+ FolderIcon,
294
+ GitHubBrandIcon,
295
+ GoogleBrandIcon,
296
+ GridBottomLinedIcon,
297
+ GridHorizontalLinedIcon,
298
+ GridLeftLinedIcon,
299
+ GridRightLinedIcon,
300
+ GridTopLinedIcon,
301
+ GridVerticalLinedIcon,
302
+ GuideIcon,
303
+ HealthIcon,
304
+ ImageFileIcon,
305
+ ImageGenerateIcon,
306
+ Input,
307
+ IssueIcon,
308
+ KeyboardIcon,
309
+ LaunchIcon,
310
+ LayoutMenuIcon,
311
+ LayoutPresetIcon,
312
+ LightModeIcon,
313
+ LinkIcon,
314
+ LoadingIcon,
315
+ LocateFolderIcon,
316
+ MaximizeIcon,
317
+ MentionPill,
318
+ MenuSurface,
319
+ MinimizeIcon,
320
+ MoreHorizontalIcon,
321
+ NavAgentsIcon,
322
+ NavApplicationsFilledIcon,
323
+ NavApplicationsLinedIcon,
324
+ NavLaunchIcon,
325
+ NewWorkspaceIcon,
326
+ NewWorkspaceLinedIcon,
327
+ NextopMark,
328
+ NoWorkspaceLinedIcon,
329
+ OpenSessionsIcon,
330
+ OverviewLayoutIcon,
331
+ PanelIcon,
332
+ PauseIcon,
333
+ PinFilledIcon,
334
+ PinIcon,
335
+ PlatformIcon,
336
+ PlayIcon,
337
+ Popover,
338
+ PopoverAnchor,
339
+ PopoverClose,
340
+ PopoverContent,
341
+ PopoverPortal,
342
+ PopoverTrigger,
343
+ ProductDocIcon,
344
+ ProductIcon,
345
+ RefreshIcon,
346
+ ResizableHandle,
347
+ ResizablePanel,
348
+ ResizablePanelGroup,
349
+ RestoreIcon,
350
+ RoomsHintIcon,
351
+ ScrollArea,
352
+ ScrollBar,
353
+ SearchIcon,
354
+ SectionTabs,
355
+ Select,
356
+ SelectContent,
357
+ SelectGroup,
358
+ SelectItem,
359
+ SelectLabel,
360
+ SelectScrollDownButton,
361
+ SelectScrollUpButton,
362
+ SelectSeparator,
363
+ SelectSplitColumn,
364
+ SelectSplitColumnItems,
365
+ SelectSplitColumnLabel,
366
+ SelectSplitDivider,
367
+ SelectSplitLayout,
368
+ SelectTrigger,
369
+ SelectValue,
370
+ Separator,
371
+ SettingsIcon,
372
+ ShortcutBadge,
373
+ Spinner,
374
+ StatusDot,
375
+ SuccessFilledIcon,
376
+ SuccessLinedIcon,
377
+ Switch,
378
+ TaskIcon,
379
+ Textarea,
380
+ ThinkingIcon,
381
+ ToastClose,
382
+ ToastDescription,
383
+ ToastProvider,
384
+ ToastRoot,
385
+ ToastTitle,
386
+ ToastViewport,
387
+ Toaster,
388
+ ToolsIcon,
389
+ Tooltip,
390
+ TooltipContent,
391
+ TooltipPortal,
392
+ TooltipProvider,
393
+ TooltipTrigger,
394
+ UnavailableChatIcon,
395
+ UnderlineTabs,
396
+ UninstallIcon,
397
+ UploadFolderIcon,
398
+ UploadIcon,
399
+ VideoFileIcon,
400
+ ViewportMenuSurface,
401
+ WarningFilledIcon,
402
+ WarningLinedIcon,
403
+ WebIcon,
404
+ WebScrapeIcon,
405
+ badgeVariants,
406
+ buttonVariants,
407
+ cn,
408
+ formatNextopDateTime,
409
+ formatNextopShortDateTime,
410
+ getCurrentNextopDateLocale,
411
+ menuItemClassName,
412
+ menuItemIndicatorClassName,
413
+ menuItemWithIndicatorClassName,
414
+ menuSurfaceClassName,
415
+ statusDotVariants,
416
+ toast,
417
+ toastVariants
418
+ };
419
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}