@timbal-ai/timbal-react 0.8.2 → 1.1.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/CHANGELOG.md +49 -0
- package/README.md +100 -6
- package/dist/app.cjs +2538 -1262
- package/dist/app.d.cts +11 -6
- package/dist/app.d.ts +11 -6
- package/dist/app.esm.js +43 -6
- package/dist/{button-ClSgD6OF.d.cts → button-BoyX5pM_.d.cts} +1 -1
- package/dist/{button-ClSgD6OF.d.ts → button-BoyX5pM_.d.ts} +1 -1
- package/dist/{chart-artifact-Bl67kre7.d.ts → chart-artifact-BZp7nmaf.d.ts} +430 -14
- package/dist/{chart-artifact-BzcvblDe.d.cts → chart-artifact-CX-rh9nq.d.cts} +430 -14
- package/dist/{chat-Bed4FQSl.d.cts → chat-DCms8pJ_.d.cts} +31 -4
- package/dist/{chat-Bed4FQSl.d.ts → chat-DCms8pJ_.d.ts} +31 -4
- package/dist/chat.cjs +1111 -776
- package/dist/chat.d.cts +1 -1
- package/dist/chat.d.ts +1 -1
- package/dist/chat.esm.js +3 -3
- package/dist/{chunk-QVAUCVQA.esm.js → chunk-4AKJ6FKE.esm.js} +277 -4
- package/dist/chunk-6HWMJNZT.esm.js +3439 -0
- package/dist/{chunk-VWHHKAHN.esm.js → chunk-FRZOEYBO.esm.js} +4 -4
- package/dist/chunk-JEAUF54A.esm.js +52 -0
- package/dist/{chunk-OISVICYF.esm.js → chunk-P3KDAYX6.esm.js} +1 -1
- package/dist/{chunk-6YVKCVEP.esm.js → chunk-TK2AGIME.esm.js} +1106 -298
- package/dist/{chunk-CFU3YDTV.esm.js → chunk-XCM3V6RK.esm.js} +5 -5
- package/dist/{chunk-5ZKLPWVN.esm.js → chunk-YXZ22OJN.esm.js} +849 -667
- package/dist/index.cjs +6070 -1605
- package/dist/index.d.cts +8 -6
- package/dist/index.d.ts +8 -6
- package/dist/index.esm.js +427 -11
- package/dist/pill-segmented-tabs-Ba5q0feL.d.cts +500 -0
- package/dist/pill-segmented-tabs-Ba5q0feL.d.ts +500 -0
- package/dist/studio.cjs +1333 -998
- package/dist/studio.d.cts +2 -2
- package/dist/studio.d.ts +2 -2
- package/dist/studio.esm.js +5 -5
- package/dist/styles.css +220 -0
- package/dist/ui.cjs +3592 -89
- package/dist/ui.d.cts +72 -96
- package/dist/ui.d.ts +72 -96
- package/dist/ui.esm.js +400 -6
- package/dist/{welcome-COOb05a5.d.cts → welcome-CRqOPKMp.d.cts} +1 -1
- package/dist/{welcome-DE08m9ca.d.ts → welcome-DlHUa3OL.d.ts} +1 -1
- package/package.json +9 -3
- package/dist/chunk-P4SN7M67.esm.js +0 -435
package/dist/index.esm.js
CHANGED
|
@@ -5,8 +5,10 @@ import {
|
|
|
5
5
|
AppCopilotProvider,
|
|
6
6
|
AppShell,
|
|
7
7
|
AppShellChatTrigger,
|
|
8
|
+
AppShellSidebarTrigger,
|
|
8
9
|
AppShellTopbar,
|
|
9
10
|
Breadcrumbs,
|
|
11
|
+
COLOR_UTILITY_PREFIXES,
|
|
10
12
|
ChartPanel,
|
|
11
13
|
ConnectionRow,
|
|
12
14
|
ConnectionRowList,
|
|
@@ -23,8 +25,10 @@ import {
|
|
|
23
25
|
FieldSwitch,
|
|
24
26
|
FieldTextarea,
|
|
25
27
|
FilterBar,
|
|
28
|
+
FilterField,
|
|
26
29
|
FloatingUnsavedChangesBar,
|
|
27
30
|
FormSection,
|
|
31
|
+
HOUSE_RULES,
|
|
28
32
|
INTEGRATION_CATALOG_CARD_HEIGHT_CLASS,
|
|
29
33
|
InfoCard,
|
|
30
34
|
IntegrationCard,
|
|
@@ -35,7 +39,10 @@ import {
|
|
|
35
39
|
Page,
|
|
36
40
|
PageHeader,
|
|
37
41
|
PlanBadge,
|
|
42
|
+
RESERVED_GRADIENT_TOKENS,
|
|
38
43
|
ResourceCard,
|
|
44
|
+
SEMANTIC_COLOR_TOKENS,
|
|
45
|
+
SLOP_BUDGETS,
|
|
39
46
|
SearchInput,
|
|
40
47
|
Section,
|
|
41
48
|
SettingsSection,
|
|
@@ -46,22 +53,30 @@ import {
|
|
|
46
53
|
StatusDot,
|
|
47
54
|
SubNav,
|
|
48
55
|
SurfaceCard,
|
|
56
|
+
TAILWIND_PALETTE_COLORS,
|
|
49
57
|
THEME_AGENT_INSTRUCTIONS,
|
|
50
58
|
TIMBAL_THEME_PRESETS,
|
|
51
59
|
ThemePresetGallery,
|
|
52
60
|
TimbalThemeStyle,
|
|
61
|
+
UI_REVIEW_AGENT_INSTRUCTIONS,
|
|
53
62
|
applyThemePreset,
|
|
54
63
|
applyTimbalTheme,
|
|
55
64
|
clearTimbalTheme,
|
|
56
65
|
connectionRowListClass,
|
|
57
66
|
createTimbalTheme,
|
|
58
67
|
ensureThemeFontLink,
|
|
68
|
+
formatLintReport,
|
|
59
69
|
getStoredThemePreset,
|
|
60
70
|
getThemePreset,
|
|
71
|
+
lintGeneratedUi,
|
|
72
|
+
reviewGeneratedUi,
|
|
61
73
|
themeToCss,
|
|
62
74
|
useAppCopilotContext,
|
|
63
|
-
useAppShellChat
|
|
64
|
-
|
|
75
|
+
useAppShellChat,
|
|
76
|
+
useAppShellNav,
|
|
77
|
+
useInterval,
|
|
78
|
+
useLiveQuery
|
|
79
|
+
} from "./chunk-TK2AGIME.esm.js";
|
|
65
80
|
import {
|
|
66
81
|
THREAD_DEFAULT_MAX_WIDTH,
|
|
67
82
|
assistantMessageContentClass,
|
|
@@ -82,11 +97,11 @@ import {
|
|
|
82
97
|
useOptionalSession,
|
|
83
98
|
useSession,
|
|
84
99
|
useWorkforces
|
|
85
|
-
} from "./chunk-
|
|
100
|
+
} from "./chunk-FRZOEYBO.esm.js";
|
|
86
101
|
import "./chunk-QIABF4KB.esm.js";
|
|
87
102
|
import {
|
|
88
103
|
WorkforceSelector
|
|
89
|
-
} from "./chunk-
|
|
104
|
+
} from "./chunk-XCM3V6RK.esm.js";
|
|
90
105
|
import {
|
|
91
106
|
ARTIFACT_FENCE_LANGUAGES,
|
|
92
107
|
ArtifactCard,
|
|
@@ -100,7 +115,10 @@ import {
|
|
|
100
115
|
JsonArtifactView,
|
|
101
116
|
LineAreaChart,
|
|
102
117
|
MarkdownText,
|
|
118
|
+
PieChart,
|
|
103
119
|
QuestionArtifactView,
|
|
120
|
+
RadarChart,
|
|
121
|
+
RadialChart,
|
|
104
122
|
Suggestions,
|
|
105
123
|
TableArtifactView,
|
|
106
124
|
Thread,
|
|
@@ -143,8 +161,86 @@ import {
|
|
|
143
161
|
useUiDispatch,
|
|
144
162
|
useUiEventEmitter,
|
|
145
163
|
useUiState
|
|
146
|
-
} from "./chunk-
|
|
164
|
+
} from "./chunk-YXZ22OJN.esm.js";
|
|
147
165
|
import {
|
|
166
|
+
Accordion,
|
|
167
|
+
AccordionContent,
|
|
168
|
+
AccordionItem,
|
|
169
|
+
AccordionTrigger,
|
|
170
|
+
Alert,
|
|
171
|
+
AlertDescription,
|
|
172
|
+
AlertDialog,
|
|
173
|
+
AlertDialogAction,
|
|
174
|
+
AlertDialogCancel,
|
|
175
|
+
AlertDialogContent,
|
|
176
|
+
AlertDialogDescription,
|
|
177
|
+
AlertDialogFooter,
|
|
178
|
+
AlertDialogHeader,
|
|
179
|
+
AlertDialogOverlay,
|
|
180
|
+
AlertDialogPortal,
|
|
181
|
+
AlertDialogTitle,
|
|
182
|
+
AlertDialogTrigger,
|
|
183
|
+
AlertTitle,
|
|
184
|
+
AspectRatio,
|
|
185
|
+
Badge,
|
|
186
|
+
Breadcrumb,
|
|
187
|
+
BreadcrumbEllipsis,
|
|
188
|
+
BreadcrumbItem,
|
|
189
|
+
BreadcrumbLink,
|
|
190
|
+
BreadcrumbList,
|
|
191
|
+
BreadcrumbPage,
|
|
192
|
+
BreadcrumbSeparator,
|
|
193
|
+
Calendar,
|
|
194
|
+
CalendarDayButton,
|
|
195
|
+
Card,
|
|
196
|
+
CardContent,
|
|
197
|
+
CardDescription,
|
|
198
|
+
CardFooter,
|
|
199
|
+
CardHeader,
|
|
200
|
+
CardTitle,
|
|
201
|
+
Collapsible,
|
|
202
|
+
CollapsibleContent,
|
|
203
|
+
CollapsibleTrigger,
|
|
204
|
+
Combobox,
|
|
205
|
+
ComboboxAnchor,
|
|
206
|
+
ComboboxCommand,
|
|
207
|
+
ComboboxContent,
|
|
208
|
+
ComboboxEmpty,
|
|
209
|
+
ComboboxGroup,
|
|
210
|
+
ComboboxInput,
|
|
211
|
+
ComboboxItem,
|
|
212
|
+
ComboboxList,
|
|
213
|
+
ComboboxSeparator,
|
|
214
|
+
ComboboxShortcut,
|
|
215
|
+
ComboboxTrigger,
|
|
216
|
+
Command,
|
|
217
|
+
CommandDialog,
|
|
218
|
+
CommandEmpty,
|
|
219
|
+
CommandGroup,
|
|
220
|
+
CommandInput,
|
|
221
|
+
CommandItem,
|
|
222
|
+
CommandList,
|
|
223
|
+
CommandSeparator,
|
|
224
|
+
CommandShortcut,
|
|
225
|
+
ContextMenu,
|
|
226
|
+
ContextMenuCheckboxItem,
|
|
227
|
+
ContextMenuContent,
|
|
228
|
+
ContextMenuGroup,
|
|
229
|
+
ContextMenuItem,
|
|
230
|
+
ContextMenuLabel,
|
|
231
|
+
ContextMenuRadioGroup,
|
|
232
|
+
ContextMenuRadioItem,
|
|
233
|
+
ContextMenuSeparator,
|
|
234
|
+
ContextMenuShortcut,
|
|
235
|
+
ContextMenuSub,
|
|
236
|
+
ContextMenuSubContent,
|
|
237
|
+
ContextMenuSubTrigger,
|
|
238
|
+
ContextMenuTrigger,
|
|
239
|
+
DatePicker,
|
|
240
|
+
DatePickerButton,
|
|
241
|
+
DatePickerCalendar,
|
|
242
|
+
DatePickerContent,
|
|
243
|
+
DatePickerTrigger,
|
|
148
244
|
DropdownMenu,
|
|
149
245
|
DropdownMenuCheckboxItem,
|
|
150
246
|
DropdownMenuContent,
|
|
@@ -159,10 +255,67 @@ import {
|
|
|
159
255
|
DropdownMenuSubContent,
|
|
160
256
|
DropdownMenuSubTrigger,
|
|
161
257
|
DropdownMenuTrigger,
|
|
258
|
+
Form,
|
|
259
|
+
FormControl,
|
|
260
|
+
FormField,
|
|
261
|
+
FormItem,
|
|
262
|
+
FormLabel,
|
|
263
|
+
FormMessage,
|
|
264
|
+
FormSubmit,
|
|
265
|
+
HoverCard,
|
|
266
|
+
HoverCardContent,
|
|
267
|
+
HoverCardTrigger,
|
|
268
|
+
Input,
|
|
269
|
+
InputGroup,
|
|
270
|
+
InputGroupAddon,
|
|
271
|
+
InputGroupInput,
|
|
272
|
+
InputGroupText,
|
|
273
|
+
InputOTP,
|
|
274
|
+
InputOTPGroup,
|
|
275
|
+
InputOTPHiddenInput,
|
|
276
|
+
InputOTPSeparator,
|
|
277
|
+
InputOTPSlot,
|
|
278
|
+
Kbd,
|
|
279
|
+
KbdGroup,
|
|
280
|
+
Label,
|
|
281
|
+
Menubar,
|
|
282
|
+
MenubarCheckboxItem,
|
|
283
|
+
MenubarContent,
|
|
284
|
+
MenubarItem,
|
|
285
|
+
MenubarLabel,
|
|
286
|
+
MenubarMenu,
|
|
287
|
+
MenubarRadioGroup,
|
|
288
|
+
MenubarRadioItem,
|
|
289
|
+
MenubarSeparator,
|
|
290
|
+
MenubarShortcut,
|
|
291
|
+
MenubarSub,
|
|
292
|
+
MenubarSubContent,
|
|
293
|
+
MenubarSubTrigger,
|
|
294
|
+
MenubarTrigger,
|
|
295
|
+
NavigationMenu,
|
|
296
|
+
NavigationMenuContent,
|
|
297
|
+
NavigationMenuIndicator,
|
|
298
|
+
NavigationMenuItem,
|
|
299
|
+
NavigationMenuLink,
|
|
300
|
+
NavigationMenuList,
|
|
301
|
+
NavigationMenuTrigger,
|
|
302
|
+
NavigationMenuViewport,
|
|
303
|
+
Pagination,
|
|
304
|
+
PaginationContent,
|
|
305
|
+
PaginationEllipsis,
|
|
306
|
+
PaginationItem,
|
|
307
|
+
PaginationLink,
|
|
308
|
+
PaginationNext,
|
|
309
|
+
PaginationPrevious,
|
|
162
310
|
Popover,
|
|
163
311
|
PopoverAnchor,
|
|
164
312
|
PopoverContent,
|
|
165
313
|
PopoverTrigger,
|
|
314
|
+
Progress,
|
|
315
|
+
RadioGroup,
|
|
316
|
+
RadioGroupItem,
|
|
317
|
+
ScrollArea,
|
|
318
|
+
ScrollBar,
|
|
166
319
|
Select,
|
|
167
320
|
SelectContent,
|
|
168
321
|
SelectGroup,
|
|
@@ -172,17 +325,67 @@ import {
|
|
|
172
325
|
SelectScrollUpButton,
|
|
173
326
|
SelectSeparator,
|
|
174
327
|
SelectTrigger,
|
|
175
|
-
SelectValue
|
|
176
|
-
|
|
328
|
+
SelectValue,
|
|
329
|
+
Separator,
|
|
330
|
+
Sheet,
|
|
331
|
+
SheetClose,
|
|
332
|
+
SheetContent,
|
|
333
|
+
SheetDescription,
|
|
334
|
+
SheetFooter,
|
|
335
|
+
SheetHeader,
|
|
336
|
+
SheetTitle,
|
|
337
|
+
SheetTrigger,
|
|
338
|
+
Slider,
|
|
339
|
+
Spinner,
|
|
340
|
+
Switch,
|
|
341
|
+
Table,
|
|
342
|
+
TableBody,
|
|
343
|
+
TableCaption,
|
|
344
|
+
TableCell,
|
|
345
|
+
TableFooter,
|
|
346
|
+
TableHead,
|
|
347
|
+
TableHeader,
|
|
348
|
+
TableRow,
|
|
349
|
+
Textarea,
|
|
350
|
+
Toast,
|
|
351
|
+
ToastAction,
|
|
352
|
+
ToastClose,
|
|
353
|
+
ToastDescription,
|
|
354
|
+
ToastProvider,
|
|
355
|
+
ToastTitle,
|
|
356
|
+
ToastViewport,
|
|
357
|
+
Toaster,
|
|
358
|
+
Toggle,
|
|
359
|
+
ToggleGroup,
|
|
360
|
+
ToggleGroupItem,
|
|
361
|
+
Toolbar,
|
|
362
|
+
ToolbarButton,
|
|
363
|
+
ToolbarLink,
|
|
364
|
+
ToolbarSeparator,
|
|
365
|
+
ToolbarToggleGroup,
|
|
366
|
+
ToolbarToggleItem,
|
|
367
|
+
alertVariants,
|
|
368
|
+
badgeVariants,
|
|
369
|
+
formatPickerDate,
|
|
370
|
+
navigationMenuTriggerStyle,
|
|
371
|
+
toast,
|
|
372
|
+
toggleVariants,
|
|
373
|
+
useToast
|
|
374
|
+
} from "./chunk-6HWMJNZT.esm.js";
|
|
375
|
+
import {
|
|
376
|
+
Checkbox,
|
|
377
|
+
Skeleton
|
|
378
|
+
} from "./chunk-JEAUF54A.esm.js";
|
|
177
379
|
import {
|
|
178
380
|
MemoPillSegmentedTabs,
|
|
179
381
|
PillSegmentedTabs
|
|
180
|
-
} from "./chunk-
|
|
382
|
+
} from "./chunk-P3KDAYX6.esm.js";
|
|
181
383
|
import {
|
|
182
384
|
Avatar,
|
|
183
385
|
AvatarFallback,
|
|
184
386
|
AvatarImage,
|
|
185
387
|
Button,
|
|
388
|
+
CONTROL_SIZE,
|
|
186
389
|
Dialog,
|
|
187
390
|
DialogClose,
|
|
188
391
|
DialogContent,
|
|
@@ -198,8 +401,14 @@ import {
|
|
|
198
401
|
TooltipContent,
|
|
199
402
|
TooltipProvider,
|
|
200
403
|
TooltipTrigger,
|
|
201
|
-
cn
|
|
202
|
-
|
|
404
|
+
cn,
|
|
405
|
+
controlClass,
|
|
406
|
+
controlSurfaceClass,
|
|
407
|
+
overlayAnimationClass,
|
|
408
|
+
overlayItemClass,
|
|
409
|
+
overlayListPanelClass,
|
|
410
|
+
overlaySurfaceClass
|
|
411
|
+
} from "./chunk-4AKJ6FKE.esm.js";
|
|
203
412
|
|
|
204
413
|
// src/index.ts
|
|
205
414
|
import { parseSSELine } from "@timbal-ai/timbal-sdk";
|
|
@@ -225,7 +434,7 @@ The alias \`\`\`timbal\`\`\` is also accepted.
|
|
|
225
434
|
|
|
226
435
|
| \`type\` | Use for |
|
|
227
436
|
|---|---|
|
|
228
|
-
| \`chart\` |
|
|
437
|
+
| \`chart\` | Charts. \`chartType\`: \`bar\` \\| \`horizontalBar\` \\| \`line\` \\| \`area\` \\| \`pie\` \\| \`donut\` \\| \`radial\` \\| \`radar\`. Fields: \`data\`, \`xKey\`, \`dataKey\` (or \`series: [{ dataKey, label?, color? }]\`), \`title\`, \`description\`, \`unit\`. Options: \`stacked\` (bar/area), \`curve\` (\`monotone\`\\|\`linear\`\\|\`step\`), \`dots\`, \`legend\`, \`tooltipIndicator\` (\`dot\`\\|\`line\`\\|\`dashed\`), \`colors\`. Colors default to the theme \`--chart-N\` palette. |
|
|
229
438
|
| \`table\` | Tabular data. Fields: \`rows\`, optional \`columns\`, \`title\`. |
|
|
230
439
|
| \`question\` | In-thread multiple choice. Fields: \`options: [{ id, label, description? }]\`, optional \`prompt\`, \`multi\`. User replies are sent back as a normal user message. |
|
|
231
440
|
| \`html\` | Custom HTML/CSS/JS in an iframe. Fields: \`content\` (HTML document or fragment), optional \`title\`, \`height\`, \`sandboxed\` (default \`true\`; set \`false\` for unrestricted scripts/CDN). |
|
|
@@ -372,35 +581,117 @@ export {
|
|
|
372
581
|
APP_KIT_AGENT_INSTRUCTIONS,
|
|
373
582
|
ARTIFACT_AGENT_INSTRUCTIONS,
|
|
374
583
|
ARTIFACT_FENCE_LANGUAGES,
|
|
584
|
+
Accordion,
|
|
585
|
+
AccordionContent,
|
|
586
|
+
AccordionItem,
|
|
587
|
+
AccordionTrigger,
|
|
375
588
|
ActionBarPrimitive,
|
|
589
|
+
Alert,
|
|
590
|
+
AlertDescription,
|
|
591
|
+
AlertDialog,
|
|
592
|
+
AlertDialogAction,
|
|
593
|
+
AlertDialogCancel,
|
|
594
|
+
AlertDialogContent,
|
|
595
|
+
AlertDialogDescription,
|
|
596
|
+
AlertDialogFooter,
|
|
597
|
+
AlertDialogHeader,
|
|
598
|
+
AlertDialogOverlay,
|
|
599
|
+
AlertDialogPortal,
|
|
600
|
+
AlertDialogTitle,
|
|
601
|
+
AlertDialogTrigger,
|
|
602
|
+
AlertTitle,
|
|
376
603
|
AppChatPanel,
|
|
377
604
|
AppConfirmDialog,
|
|
378
605
|
AppCopilotProvider,
|
|
379
606
|
AppShell,
|
|
380
607
|
AppShellChatTrigger,
|
|
608
|
+
AppShellSidebarTrigger,
|
|
381
609
|
AppShellTopbar,
|
|
382
610
|
ArtifactCard,
|
|
383
611
|
ArtifactRegistryProvider,
|
|
384
612
|
ArtifactView,
|
|
613
|
+
AspectRatio,
|
|
385
614
|
AssistantRuntimeProvider,
|
|
386
615
|
AuiIf,
|
|
387
616
|
AuthGuard,
|
|
388
617
|
Avatar,
|
|
389
618
|
AvatarFallback,
|
|
390
619
|
AvatarImage,
|
|
620
|
+
Badge,
|
|
621
|
+
Breadcrumb,
|
|
622
|
+
BreadcrumbEllipsis,
|
|
623
|
+
BreadcrumbItem,
|
|
624
|
+
BreadcrumbLink,
|
|
625
|
+
BreadcrumbList,
|
|
626
|
+
BreadcrumbPage,
|
|
627
|
+
BreadcrumbSeparator,
|
|
391
628
|
Breadcrumbs,
|
|
392
629
|
Button,
|
|
393
630
|
CHART_PALETTE,
|
|
631
|
+
COLOR_UTILITY_PREFIXES,
|
|
632
|
+
CONTROL_SIZE,
|
|
633
|
+
Calendar,
|
|
634
|
+
CalendarDayButton,
|
|
635
|
+
Card,
|
|
636
|
+
CardContent,
|
|
637
|
+
CardDescription,
|
|
638
|
+
CardFooter,
|
|
639
|
+
CardHeader,
|
|
640
|
+
CardTitle,
|
|
394
641
|
ChartArtifactView,
|
|
395
642
|
ChartPanel,
|
|
643
|
+
Checkbox,
|
|
644
|
+
Collapsible,
|
|
645
|
+
CollapsibleContent,
|
|
646
|
+
CollapsibleTrigger,
|
|
647
|
+
Combobox,
|
|
648
|
+
ComboboxAnchor,
|
|
649
|
+
ComboboxCommand,
|
|
650
|
+
ComboboxContent,
|
|
651
|
+
ComboboxEmpty,
|
|
652
|
+
ComboboxGroup,
|
|
653
|
+
ComboboxInput,
|
|
654
|
+
ComboboxItem,
|
|
655
|
+
ComboboxList,
|
|
656
|
+
ComboboxSeparator,
|
|
657
|
+
ComboboxShortcut,
|
|
658
|
+
ComboboxTrigger,
|
|
659
|
+
Command,
|
|
660
|
+
CommandDialog,
|
|
661
|
+
CommandEmpty,
|
|
662
|
+
CommandGroup,
|
|
663
|
+
CommandInput,
|
|
664
|
+
CommandItem,
|
|
665
|
+
CommandList,
|
|
666
|
+
CommandSeparator,
|
|
667
|
+
CommandShortcut,
|
|
396
668
|
Composer,
|
|
397
669
|
ComposerPrimitive,
|
|
398
670
|
ConnectionRow,
|
|
399
671
|
ConnectionRowList,
|
|
672
|
+
ContextMenu,
|
|
673
|
+
ContextMenuCheckboxItem,
|
|
674
|
+
ContextMenuContent,
|
|
675
|
+
ContextMenuGroup,
|
|
676
|
+
ContextMenuItem,
|
|
677
|
+
ContextMenuLabel,
|
|
678
|
+
ContextMenuRadioGroup,
|
|
679
|
+
ContextMenuRadioItem,
|
|
680
|
+
ContextMenuSeparator,
|
|
681
|
+
ContextMenuShortcut,
|
|
682
|
+
ContextMenuSub,
|
|
683
|
+
ContextMenuSubContent,
|
|
684
|
+
ContextMenuSubTrigger,
|
|
685
|
+
ContextMenuTrigger,
|
|
400
686
|
DEFAULT_UPLOAD_ACCEPT,
|
|
401
687
|
DangerZone,
|
|
402
688
|
DangerZoneAction,
|
|
403
689
|
DataTable,
|
|
690
|
+
DatePicker,
|
|
691
|
+
DatePickerButton,
|
|
692
|
+
DatePickerCalendar,
|
|
693
|
+
DatePickerContent,
|
|
694
|
+
DatePickerTrigger,
|
|
404
695
|
DescriptionList,
|
|
405
696
|
Dialog,
|
|
406
697
|
DialogClose,
|
|
@@ -435,33 +726,98 @@ export {
|
|
|
435
726
|
FieldSwitch,
|
|
436
727
|
FieldTextarea,
|
|
437
728
|
FilterBar,
|
|
729
|
+
FilterField,
|
|
438
730
|
FloatingUnsavedChangesBar,
|
|
731
|
+
Form,
|
|
732
|
+
FormControl,
|
|
733
|
+
FormField,
|
|
734
|
+
FormItem,
|
|
735
|
+
FormLabel,
|
|
736
|
+
FormMessage,
|
|
439
737
|
FormSection,
|
|
738
|
+
FormSubmit,
|
|
739
|
+
HOUSE_RULES,
|
|
740
|
+
HoverCard,
|
|
741
|
+
HoverCardContent,
|
|
742
|
+
HoverCardTrigger,
|
|
440
743
|
HtmlArtifactView,
|
|
441
744
|
INTEGRATION_CATALOG_CARD_HEIGHT_CLASS,
|
|
442
745
|
InfoCard,
|
|
746
|
+
Input,
|
|
747
|
+
InputGroup,
|
|
748
|
+
InputGroupAddon,
|
|
749
|
+
InputGroupInput,
|
|
750
|
+
InputGroupText,
|
|
751
|
+
InputOTP,
|
|
752
|
+
InputOTPGroup,
|
|
753
|
+
InputOTPHiddenInput,
|
|
754
|
+
InputOTPSeparator,
|
|
755
|
+
InputOTPSlot,
|
|
443
756
|
IntegrationCard,
|
|
444
757
|
IntegrationsEmptyState,
|
|
445
758
|
JsonArtifactView,
|
|
759
|
+
Kbd,
|
|
760
|
+
KbdGroup,
|
|
761
|
+
Label,
|
|
446
762
|
LineAreaChart,
|
|
447
763
|
MarkdownText,
|
|
448
764
|
MemoPillSegmentedTabs,
|
|
765
|
+
Menubar,
|
|
766
|
+
MenubarCheckboxItem,
|
|
767
|
+
MenubarContent,
|
|
768
|
+
MenubarItem,
|
|
769
|
+
MenubarLabel,
|
|
770
|
+
MenubarMenu,
|
|
771
|
+
MenubarRadioGroup,
|
|
772
|
+
MenubarRadioItem,
|
|
773
|
+
MenubarSeparator,
|
|
774
|
+
MenubarShortcut,
|
|
775
|
+
MenubarSub,
|
|
776
|
+
MenubarSubContent,
|
|
777
|
+
MenubarSubTrigger,
|
|
778
|
+
MenubarTrigger,
|
|
449
779
|
MessagePrimitive,
|
|
450
780
|
MetricChartCard,
|
|
451
781
|
MetricRow,
|
|
452
782
|
MetricTile,
|
|
453
783
|
ModeToggle,
|
|
784
|
+
NavigationMenu,
|
|
785
|
+
NavigationMenuContent,
|
|
786
|
+
NavigationMenuIndicator,
|
|
787
|
+
NavigationMenuItem,
|
|
788
|
+
NavigationMenuLink,
|
|
789
|
+
NavigationMenuList,
|
|
790
|
+
NavigationMenuTrigger,
|
|
791
|
+
NavigationMenuViewport,
|
|
454
792
|
Page,
|
|
455
793
|
PageHeader,
|
|
794
|
+
Pagination,
|
|
795
|
+
PaginationContent,
|
|
796
|
+
PaginationEllipsis,
|
|
797
|
+
PaginationItem,
|
|
798
|
+
PaginationLink,
|
|
799
|
+
PaginationNext,
|
|
800
|
+
PaginationPrevious,
|
|
801
|
+
PieChart,
|
|
456
802
|
PillSegmentedTabs,
|
|
457
803
|
PlanBadge,
|
|
458
804
|
Popover,
|
|
459
805
|
PopoverAnchor,
|
|
460
806
|
PopoverContent,
|
|
461
807
|
PopoverTrigger,
|
|
808
|
+
Progress,
|
|
462
809
|
QuestionArtifactView,
|
|
810
|
+
RESERVED_GRADIENT_TOKENS,
|
|
811
|
+
RadarChart,
|
|
812
|
+
RadialChart,
|
|
813
|
+
RadioGroup,
|
|
814
|
+
RadioGroupItem,
|
|
463
815
|
ResourceCard,
|
|
816
|
+
SEMANTIC_COLOR_TOKENS,
|
|
817
|
+
SLOP_BUDGETS,
|
|
464
818
|
STUDIO_NAV_MODE,
|
|
819
|
+
ScrollArea,
|
|
820
|
+
ScrollBar,
|
|
465
821
|
SearchInput,
|
|
466
822
|
Section,
|
|
467
823
|
Select,
|
|
@@ -474,11 +830,23 @@ export {
|
|
|
474
830
|
SelectSeparator,
|
|
475
831
|
SelectTrigger,
|
|
476
832
|
SelectValue,
|
|
833
|
+
Separator,
|
|
477
834
|
SessionProvider,
|
|
478
835
|
SettingsSection,
|
|
479
836
|
SettingsSectionHeader,
|
|
837
|
+
Sheet,
|
|
838
|
+
SheetClose,
|
|
839
|
+
SheetContent,
|
|
840
|
+
SheetDescription,
|
|
841
|
+
SheetFooter,
|
|
842
|
+
SheetHeader,
|
|
843
|
+
SheetTitle,
|
|
844
|
+
SheetTrigger,
|
|
480
845
|
Shimmer,
|
|
846
|
+
Skeleton,
|
|
847
|
+
Slider,
|
|
481
848
|
Sparkline,
|
|
849
|
+
Spinner,
|
|
482
850
|
StatTile,
|
|
483
851
|
StatusBadge,
|
|
484
852
|
StatusDot,
|
|
@@ -488,10 +856,21 @@ export {
|
|
|
488
856
|
SubNav,
|
|
489
857
|
Suggestions,
|
|
490
858
|
SurfaceCard,
|
|
859
|
+
Switch,
|
|
860
|
+
TAILWIND_PALETTE_COLORS,
|
|
491
861
|
THEME_AGENT_INSTRUCTIONS,
|
|
492
862
|
THREAD_DEFAULT_MAX_WIDTH,
|
|
493
863
|
TIMBAL_THEME_PRESETS,
|
|
864
|
+
Table,
|
|
494
865
|
TableArtifactView,
|
|
866
|
+
TableBody,
|
|
867
|
+
TableCaption,
|
|
868
|
+
TableCell,
|
|
869
|
+
TableFooter,
|
|
870
|
+
TableHead,
|
|
871
|
+
TableHeader,
|
|
872
|
+
TableRow,
|
|
873
|
+
Textarea,
|
|
495
874
|
ThemePresetGallery,
|
|
496
875
|
Thread,
|
|
497
876
|
ThreadPrimitive,
|
|
@@ -501,27 +880,49 @@ export {
|
|
|
501
880
|
TimbalRuntimeProvider,
|
|
502
881
|
TimbalStudioShell,
|
|
503
882
|
TimbalThemeStyle,
|
|
883
|
+
Toast,
|
|
884
|
+
ToastAction,
|
|
885
|
+
ToastClose,
|
|
886
|
+
ToastDescription,
|
|
887
|
+
ToastProvider,
|
|
888
|
+
ToastTitle,
|
|
889
|
+
ToastViewport,
|
|
890
|
+
Toaster,
|
|
891
|
+
Toggle,
|
|
892
|
+
ToggleGroup,
|
|
893
|
+
ToggleGroupItem,
|
|
504
894
|
ToolArtifactFallback,
|
|
505
895
|
ToolFallback,
|
|
896
|
+
Toolbar,
|
|
897
|
+
ToolbarButton,
|
|
898
|
+
ToolbarLink,
|
|
899
|
+
ToolbarSeparator,
|
|
900
|
+
ToolbarToggleGroup,
|
|
901
|
+
ToolbarToggleItem,
|
|
506
902
|
Tooltip,
|
|
507
903
|
TooltipContent,
|
|
508
904
|
TooltipIconButton,
|
|
509
905
|
TooltipProvider,
|
|
510
906
|
TooltipTrigger,
|
|
907
|
+
UI_REVIEW_AGENT_INSTRUCTIONS,
|
|
511
908
|
UiArtifactView,
|
|
512
909
|
UiCustomNodeRegistryProvider,
|
|
513
910
|
UiEventProvider,
|
|
514
911
|
UiNodeView,
|
|
515
912
|
WorkforceSelector,
|
|
913
|
+
alertVariants,
|
|
516
914
|
applyThemePreset,
|
|
517
915
|
applyTimbalTheme,
|
|
518
916
|
assistantMessageContentClass,
|
|
519
917
|
assistantMessageRootClass,
|
|
520
918
|
authFetch,
|
|
919
|
+
badgeVariants,
|
|
521
920
|
clearTimbalTheme,
|
|
522
921
|
clearTokens,
|
|
523
922
|
cn,
|
|
524
923
|
connectionRowListClass,
|
|
924
|
+
controlClass,
|
|
925
|
+
controlSurfaceClass,
|
|
525
926
|
createDefaultAttachmentAdapter,
|
|
526
927
|
createTimbalTheme,
|
|
527
928
|
createUploadAttachmentAdapter,
|
|
@@ -529,6 +930,8 @@ export {
|
|
|
529
930
|
ensureThemeFontLink,
|
|
530
931
|
fetchCurrentUser,
|
|
531
932
|
findMarkdownArtifacts,
|
|
933
|
+
formatLintReport,
|
|
934
|
+
formatPickerDate,
|
|
532
935
|
getAccessToken,
|
|
533
936
|
getPath,
|
|
534
937
|
getRefreshToken,
|
|
@@ -537,21 +940,33 @@ export {
|
|
|
537
940
|
isArtifact,
|
|
538
941
|
isArtifactFenceLanguage,
|
|
539
942
|
isUiBinding,
|
|
943
|
+
lintGeneratedUi,
|
|
944
|
+
navigationMenuTriggerStyle,
|
|
945
|
+
overlayAnimationClass,
|
|
946
|
+
overlayItemClass,
|
|
947
|
+
overlayListPanelClass,
|
|
948
|
+
overlaySurfaceClass,
|
|
540
949
|
parseArtifactFromToolResult,
|
|
541
950
|
parseSSELine,
|
|
542
951
|
refreshAccessToken,
|
|
543
952
|
resolveAttachmentAdapter,
|
|
544
953
|
resolveBindable,
|
|
954
|
+
reviewGeneratedUi,
|
|
545
955
|
setAccessToken,
|
|
546
956
|
setPath,
|
|
547
957
|
setRefreshToken,
|
|
548
958
|
splitMarkdownByArtifacts,
|
|
549
959
|
themeToCss,
|
|
550
960
|
threadMessageColumnClass,
|
|
961
|
+
toast,
|
|
962
|
+
toggleVariants,
|
|
551
963
|
useAppCopilotContext,
|
|
552
964
|
useAppShellChat,
|
|
965
|
+
useAppShellNav,
|
|
553
966
|
useArtifactRegistry,
|
|
554
967
|
useComposerRuntime,
|
|
968
|
+
useInterval,
|
|
969
|
+
useLiveQuery,
|
|
555
970
|
useMessageRuntime,
|
|
556
971
|
useOptionalSession,
|
|
557
972
|
useResolvedSuggestions,
|
|
@@ -560,6 +975,7 @@ export {
|
|
|
560
975
|
useThreadRuntime,
|
|
561
976
|
useTimbalRuntime,
|
|
562
977
|
useTimbalStream,
|
|
978
|
+
useToast,
|
|
563
979
|
useToolRunning,
|
|
564
980
|
useUiCustomNodeRegistry,
|
|
565
981
|
useUiDispatch,
|