@arcadeai/design-system 3.35.2 → 3.36.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/icons/claude-code-logotype.js +10 -0
- package/dist/assets/icons/cursor-logotype.js +10 -0
- package/dist/assets/icons/langchain-logotype.js +10 -0
- package/dist/assets/icons/mastra-logotype.js +10 -0
- package/dist/assets/icons/vercel-logotype.js +10 -0
- package/dist/components/index.js +631 -600
- package/dist/components/ui/atoms/arcade-gradient.d.ts +4 -0
- package/dist/components/ui/atoms/arcade-gradient.d.ts.map +1 -0
- package/dist/components/ui/atoms/arcade-gradient.js +26 -0
- package/dist/components/ui/atoms/brand-chip.d.ts +9 -0
- package/dist/components/ui/atoms/brand-chip.d.ts.map +1 -0
- package/dist/components/ui/atoms/brand-chip.js +19 -0
- package/dist/components/ui/atoms/code-block.d.ts.map +1 -1
- package/dist/components/ui/atoms/code-block.js +31 -723
- package/dist/components/ui/atoms/icons/claude-code-logotype.d.ts +4 -0
- package/dist/components/ui/atoms/icons/claude-code-logotype.d.ts.map +1 -0
- package/dist/components/ui/atoms/icons/claude-code-logotype.js +34 -0
- package/dist/components/ui/atoms/icons/cursor-logotype.d.ts +4 -0
- package/dist/components/ui/atoms/icons/cursor-logotype.d.ts.map +1 -0
- package/dist/components/ui/atoms/icons/cursor-logotype.js +21 -0
- package/dist/components/ui/atoms/icons/index.d.ts +5 -0
- package/dist/components/ui/atoms/icons/index.d.ts.map +1 -1
- package/dist/components/ui/atoms/icons/index.js +278 -268
- package/dist/components/ui/atoms/icons/langchain-logotype.d.ts +4 -0
- package/dist/components/ui/atoms/icons/langchain-logotype.d.ts.map +1 -0
- package/dist/components/ui/atoms/icons/langchain-logotype.js +45 -0
- package/dist/components/ui/atoms/icons/mastra-logotype.d.ts +4 -0
- package/dist/components/ui/atoms/icons/mastra-logotype.d.ts.map +1 -0
- package/dist/components/ui/atoms/icons/mastra-logotype.js +19 -0
- package/dist/components/ui/atoms/icons/vercel-logotype.d.ts +4 -0
- package/dist/components/ui/atoms/icons/vercel-logotype.d.ts.map +1 -0
- package/dist/components/ui/atoms/icons/vercel-logotype.js +26 -0
- package/dist/components/ui/atoms/icons/vercel.d.ts.map +1 -1
- package/dist/components/ui/atoms/icons/vercel.js +0 -1
- package/dist/components/ui/atoms/index.d.ts +2 -0
- package/dist/components/ui/atoms/index.d.ts.map +1 -1
- package/dist/components/ui/atoms/index.js +530 -516
- package/dist/components/ui/atoms/virtualized-grid.d.ts.map +1 -1
- package/dist/components/ui/atoms/virtualized-grid.js +16 -16
- package/dist/components/ui/index.js +631 -600
- package/dist/components/ui/molecules/chat-history-item.d.ts +21 -0
- package/dist/components/ui/molecules/chat-history-item.d.ts.map +1 -0
- package/dist/components/ui/molecules/chat-history-item.js +88 -0
- package/dist/components/ui/molecules/chat-message-list.d.ts +6 -0
- package/dist/components/ui/molecules/chat-message-list.d.ts.map +1 -1
- package/dist/components/ui/molecules/chat-message-list.js +117 -61
- package/dist/components/ui/molecules/command-bar.d.ts +7 -0
- package/dist/components/ui/molecules/command-bar.d.ts.map +1 -0
- package/dist/components/ui/molecules/command-bar.js +38 -0
- package/dist/components/ui/molecules/confirm-popover.d.ts +20 -0
- package/dist/components/ui/molecules/confirm-popover.d.ts.map +1 -0
- package/dist/components/ui/molecules/confirm-popover.js +50 -0
- package/dist/components/ui/molecules/empty-state.d.ts +2 -1
- package/dist/components/ui/molecules/empty-state.d.ts.map +1 -1
- package/dist/components/ui/molecules/empty-state.js +9 -7
- package/dist/components/ui/molecules/error-state.d.ts +17 -0
- package/dist/components/ui/molecules/error-state.d.ts.map +1 -0
- package/dist/components/ui/molecules/error-state.js +45 -0
- package/dist/components/ui/molecules/index.d.ts +9 -4
- package/dist/components/ui/molecules/index.d.ts.map +1 -1
- package/dist/components/ui/molecules/index.js +51 -49
- package/dist/components/ui/molecules/requirement-badges.js +4 -5
- package/dist/components/ui/molecules/toolkit-card.js +1 -1
- package/dist/components/ui/pages/chat-page-skeleton.d.ts +7 -0
- package/dist/components/ui/pages/chat-page-skeleton.d.ts.map +1 -0
- package/dist/components/ui/pages/chat-page-skeleton.js +18 -0
- package/dist/components/ui/pages/index.d.ts +2 -2
- package/dist/components/ui/pages/index.d.ts.map +1 -1
- package/dist/components/ui/pages/index.js +4 -4
- package/dist/components/ui/templates/chat-template-skeletons.d.ts +12 -0
- package/dist/components/ui/templates/chat-template-skeletons.d.ts.map +1 -0
- package/dist/components/ui/templates/chat-template-skeletons.js +127 -0
- package/dist/components/ui/templates/error-template.d.ts +20 -0
- package/dist/components/ui/templates/error-template.d.ts.map +1 -0
- package/dist/components/ui/templates/error-template.js +117 -0
- package/dist/components/ui/templates/index.d.ts +4 -0
- package/dist/components/ui/templates/index.d.ts.map +1 -1
- package/dist/components/ui/templates/index.js +37 -22
- package/dist/hooks/use-mobile.d.ts.map +1 -1
- package/dist/hooks/use-mobile.js +12 -11
- package/dist/lib/shiki-themes.d.ts +5 -0
- package/dist/lib/shiki-themes.d.ts.map +1 -0
- package/dist/lib/shiki-themes.js +7 -0
- package/dist/main.js +656 -625
- package/dist/metadata/toolkit-icons.d.ts.map +1 -1
- package/dist/metadata/toolkit-icons.js +187 -186
- package/dist/metadata/toolkits.d.ts.map +1 -1
- package/dist/metadata/toolkits.js +13 -0
- package/dist/{toolkit-card-B97E7TBA.js → toolkit-card-CB1oiaei.js} +2 -3
- package/dist/web-BwFNdl01.js +697 -0
- package/package.json +3 -2
- package/dist/components/ui/molecules/switcher.d.ts +0 -83
- package/dist/components/ui/molecules/switcher.d.ts.map +0 -1
- package/dist/components/ui/molecules/switcher.js +0 -164
- package/dist/components/ui/pages/chat-page.d.ts +0 -83
- package/dist/components/ui/pages/chat-page.d.ts.map +0 -1
- package/dist/components/ui/pages/chat-page.js +0 -385
|
@@ -1,616 +1,647 @@
|
|
|
1
1
|
import { Accordion as e, AccordionContent as t, AccordionItem as a, AccordionTrigger as p } from "./atoms/accordion.js";
|
|
2
2
|
import { Alert as i, AlertDescription as l, AlertTitle as n } from "./atoms/alert.js";
|
|
3
|
-
import { AlertDialog as x, AlertDialogAction as d, AlertDialogCancel as s, AlertDialogContent as
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import {
|
|
36
|
-
import {
|
|
37
|
-
import {
|
|
38
|
-
import {
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
import {
|
|
43
|
-
import {
|
|
44
|
-
import {
|
|
45
|
-
import {
|
|
46
|
-
import {
|
|
47
|
-
import {
|
|
48
|
-
import {
|
|
49
|
-
import {
|
|
50
|
-
import {
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
54
|
-
import {
|
|
55
|
-
import {
|
|
56
|
-
import {
|
|
57
|
-
import {
|
|
58
|
-
import {
|
|
59
|
-
import {
|
|
60
|
-
import {
|
|
61
|
-
import {
|
|
62
|
-
import {
|
|
63
|
-
import {
|
|
64
|
-
import {
|
|
65
|
-
import {
|
|
66
|
-
import {
|
|
67
|
-
import {
|
|
68
|
-
import {
|
|
69
|
-
import {
|
|
70
|
-
import {
|
|
71
|
-
import {
|
|
72
|
-
import {
|
|
73
|
-
import {
|
|
74
|
-
import {
|
|
75
|
-
import {
|
|
76
|
-
import {
|
|
77
|
-
import {
|
|
78
|
-
import {
|
|
79
|
-
import {
|
|
80
|
-
import {
|
|
81
|
-
import {
|
|
82
|
-
import {
|
|
83
|
-
import {
|
|
84
|
-
import {
|
|
85
|
-
import {
|
|
86
|
-
import {
|
|
87
|
-
import {
|
|
88
|
-
import {
|
|
89
|
-
import {
|
|
90
|
-
import {
|
|
91
|
-
import {
|
|
92
|
-
import {
|
|
93
|
-
import {
|
|
94
|
-
import {
|
|
95
|
-
import {
|
|
96
|
-
import {
|
|
97
|
-
import {
|
|
98
|
-
import {
|
|
99
|
-
import {
|
|
100
|
-
import {
|
|
101
|
-
import {
|
|
102
|
-
import {
|
|
103
|
-
import {
|
|
104
|
-
import {
|
|
105
|
-
import {
|
|
106
|
-
import {
|
|
107
|
-
import {
|
|
108
|
-
import {
|
|
109
|
-
import {
|
|
110
|
-
import {
|
|
111
|
-
import {
|
|
112
|
-
import {
|
|
113
|
-
import {
|
|
114
|
-
import {
|
|
115
|
-
import {
|
|
116
|
-
import {
|
|
117
|
-
import {
|
|
118
|
-
import {
|
|
119
|
-
import {
|
|
120
|
-
import {
|
|
121
|
-
import {
|
|
122
|
-
import {
|
|
123
|
-
import {
|
|
124
|
-
import {
|
|
125
|
-
import {
|
|
126
|
-
import {
|
|
127
|
-
import {
|
|
128
|
-
import {
|
|
129
|
-
import {
|
|
130
|
-
import {
|
|
131
|
-
import {
|
|
132
|
-
import {
|
|
133
|
-
import {
|
|
134
|
-
import {
|
|
135
|
-
import {
|
|
136
|
-
import {
|
|
137
|
-
import {
|
|
138
|
-
import {
|
|
139
|
-
import {
|
|
140
|
-
import {
|
|
141
|
-
import {
|
|
142
|
-
import {
|
|
143
|
-
import {
|
|
144
|
-
import {
|
|
145
|
-
import {
|
|
146
|
-
import {
|
|
147
|
-
import {
|
|
148
|
-
import {
|
|
149
|
-
import {
|
|
150
|
-
import {
|
|
151
|
-
import {
|
|
152
|
-
import {
|
|
153
|
-
import {
|
|
154
|
-
import {
|
|
155
|
-
import {
|
|
156
|
-
import {
|
|
157
|
-
import {
|
|
158
|
-
import {
|
|
159
|
-
import {
|
|
160
|
-
import {
|
|
161
|
-
import {
|
|
162
|
-
import {
|
|
163
|
-
import {
|
|
164
|
-
import {
|
|
165
|
-
import {
|
|
166
|
-
import {
|
|
167
|
-
import {
|
|
168
|
-
import {
|
|
169
|
-
import {
|
|
170
|
-
import {
|
|
171
|
-
import {
|
|
172
|
-
import {
|
|
173
|
-
import {
|
|
174
|
-
import {
|
|
175
|
-
import {
|
|
176
|
-
import {
|
|
177
|
-
import {
|
|
178
|
-
import {
|
|
179
|
-
import {
|
|
180
|
-
import {
|
|
181
|
-
import {
|
|
182
|
-
import {
|
|
183
|
-
import {
|
|
184
|
-
import {
|
|
185
|
-
import {
|
|
186
|
-
import {
|
|
187
|
-
import {
|
|
188
|
-
import {
|
|
189
|
-
import {
|
|
190
|
-
import {
|
|
191
|
-
import {
|
|
192
|
-
import {
|
|
193
|
-
import {
|
|
194
|
-
import {
|
|
195
|
-
import {
|
|
196
|
-
import {
|
|
197
|
-
import {
|
|
198
|
-
import {
|
|
199
|
-
import {
|
|
200
|
-
import {
|
|
201
|
-
import {
|
|
202
|
-
import {
|
|
203
|
-
import {
|
|
204
|
-
import {
|
|
205
|
-
import {
|
|
206
|
-
import {
|
|
207
|
-
import {
|
|
208
|
-
import {
|
|
209
|
-
import {
|
|
210
|
-
import {
|
|
211
|
-
import {
|
|
212
|
-
import {
|
|
213
|
-
import {
|
|
3
|
+
import { AlertDialog as x, AlertDialogAction as d, AlertDialogCancel as s, AlertDialogContent as g, AlertDialogDescription as u, AlertDialogFooter as C, AlertDialogHeader as c, AlertDialogOverlay as T, AlertDialogPortal as S, AlertDialogTitle as h, AlertDialogTrigger as b } from "./atoms/alert-dialog.js";
|
|
4
|
+
import { ArcadeGradient as M } from "./atoms/arcade-gradient.js";
|
|
5
|
+
import { Avatar as k, AvatarFallback as B, AvatarImage as G } from "./atoms/avatar.js";
|
|
6
|
+
import { AvatarNotificationBadge as v, avatarBadgeVariants as L } from "./atoms/avatar-notification-badge.js";
|
|
7
|
+
import { Badge as I, badgeVariants as w } from "./atoms/badge.js";
|
|
8
|
+
import { BrandChip as E } from "./atoms/brand-chip.js";
|
|
9
|
+
import { Breadcrumb as O, BreadcrumbEllipsis as R, BreadcrumbItem as V, BreadcrumbLink as z, BreadcrumbList as W, BreadcrumbPage as N, BreadcrumbSeparator as Z } from "./atoms/breadcrumb.js";
|
|
10
|
+
import { Button as U, buttonVariants as J } from "./atoms/button.js";
|
|
11
|
+
import { ByocBadge as Y } from "./atoms/byoc-badge.js";
|
|
12
|
+
import { C as Q, a as K } from "../../calendar-DreAgQKY.js";
|
|
13
|
+
import { Card as $, CardAction as oo, CardContent as ro, CardDescription as eo, CardFooter as to, CardHeader as ao, CardTitle as po } from "./atoms/card.js";
|
|
14
|
+
import { ChartContainer as io, ChartLegend as lo, ChartLegendContent as no, ChartStyle as fo, ChartTooltip as xo, ChartTooltipContent as so } from "./atoms/chart.js";
|
|
15
|
+
import { ChatContainerContent as uo, ChatContainerRoot as Co, ChatContainerScrollAnchor as co } from "./atoms/chat-container.js";
|
|
16
|
+
import { Checkbox as So } from "./atoms/checkbox.js";
|
|
17
|
+
import { CodeBlock as bo, CodeBlockCode as Ao, CodeBlockGroup as Mo } from "./atoms/code-block.js";
|
|
18
|
+
import { Collapsible as ko, CollapsibleContent as Bo, CollapsibleTrigger as Go } from "./atoms/collapsible.js";
|
|
19
|
+
import { Command as vo, CommandDialog as Lo, CommandEmpty as yo, CommandGroup as Io, CommandInput as wo, CommandItem as Ho, CommandList as Eo, CommandSeparator as Fo, CommandShortcut as Oo } from "./atoms/command.js";
|
|
20
|
+
import { CopyButton as Vo } from "./atoms/copy-button.js";
|
|
21
|
+
import { Dialog as Wo, DialogClose as No, DialogContent as Zo, DialogDescription as qo, DialogFooter as Uo, DialogHeader as Jo, DialogOverlay as Xo, DialogPortal as Yo, DialogTitle as jo, DialogTrigger as Qo } from "./atoms/dialog.js";
|
|
22
|
+
import { DropdownMenu as _o, DropdownMenuCheckboxItem as $o, DropdownMenuContent as or, DropdownMenuGroup as rr, DropdownMenuItem as er, DropdownMenuLabel as tr, DropdownMenuPortal as ar, DropdownMenuRadioGroup as pr, DropdownMenuRadioItem as mr, DropdownMenuSeparator as ir, DropdownMenuShortcut as lr, DropdownMenuSub as nr, DropdownMenuSubContent as fr, DropdownMenuSubTrigger as xr, DropdownMenuTrigger as dr } from "./atoms/dropdown-menu.js";
|
|
23
|
+
import { HoverCard as gr, HoverCardContent as ur, HoverCardTrigger as Cr } from "./atoms/hover-card.js";
|
|
24
|
+
import { Adp as Tr } from "./atoms/icons/adp.js";
|
|
25
|
+
import { Aha as hr } from "./atoms/icons/aha.js";
|
|
26
|
+
import { Airtable as Ar } from "./atoms/icons/airtable.js";
|
|
27
|
+
import { Amplitude as Dr } from "./atoms/icons/amplitude.js";
|
|
28
|
+
import { Arcade as Br } from "./atoms/icons/arcade.js";
|
|
29
|
+
import { ArcadeLogo as Pr } from "./atoms/icons/arcade-logo.js";
|
|
30
|
+
import { Asana as Lr } from "./atoms/icons/asana.js";
|
|
31
|
+
import { Ashby as Ir } from "./atoms/icons/ashby.js";
|
|
32
|
+
import { Atlassian as Hr } from "./atoms/icons/atlassian.js";
|
|
33
|
+
import { Attio as Fr } from "./atoms/icons/attio.js";
|
|
34
|
+
import { Auth0 as Rr } from "./atoms/icons/auth0.js";
|
|
35
|
+
import { Azure as zr } from "./atoms/icons/azure.js";
|
|
36
|
+
import { Bamboohr as Nr } from "./atoms/icons/bamboohr.js";
|
|
37
|
+
import { Basecamp as qr } from "./atoms/icons/basecamp.js";
|
|
38
|
+
import { Bill as Jr } from "./atoms/icons/bill.js";
|
|
39
|
+
import { Bitbucket as Yr } from "./atoms/icons/bitbucket.js";
|
|
40
|
+
import { Bluesky as Qr } from "./atoms/icons/bluesky.js";
|
|
41
|
+
import { Box as _r } from "./atoms/icons/box.js";
|
|
42
|
+
import { Braze as oe } from "./atoms/icons/braze.js";
|
|
43
|
+
import { Brex as ee } from "./atoms/icons/brex.js";
|
|
44
|
+
import { Brightdata as ae } from "./atoms/icons/brightdata.js";
|
|
45
|
+
import { Buffer as me } from "./atoms/icons/buffer.js";
|
|
46
|
+
import { Calendly as le } from "./atoms/icons/calendly.js";
|
|
47
|
+
import { Claude as fe } from "./atoms/icons/claude.js";
|
|
48
|
+
import { ClaudeCodeLogotype as de } from "./atoms/icons/claude-code-logotype.js";
|
|
49
|
+
import { Clickhouse as ge } from "./atoms/icons/clickhouse.js";
|
|
50
|
+
import { Clickup as Ce } from "./atoms/icons/clickup.js";
|
|
51
|
+
import { Cline as Te } from "./atoms/icons/cline.js";
|
|
52
|
+
import { Closeio as he } from "./atoms/icons/closeio.js";
|
|
53
|
+
import { Codesandbox as Ae } from "./atoms/icons/codesandbox.js";
|
|
54
|
+
import { Coinbase as De } from "./atoms/icons/coinbase.js";
|
|
55
|
+
import { Confluence as Be } from "./atoms/icons/confluence.js";
|
|
56
|
+
import { Cursor as Pe } from "./atoms/icons/cursor.js";
|
|
57
|
+
import { CursorInstallDark as Le } from "./atoms/icons/cursor-install-dark.js";
|
|
58
|
+
import { CursorInstallLight as Ie } from "./atoms/icons/cursor-install-light.js";
|
|
59
|
+
import { CursorLogotype as He } from "./atoms/icons/cursor-logotype.js";
|
|
60
|
+
import { Customerio as Fe } from "./atoms/icons/customerio.js";
|
|
61
|
+
import { Datadog as Re } from "./atoms/icons/datadog.js";
|
|
62
|
+
import { Daytona as ze } from "./atoms/icons/daytona.js";
|
|
63
|
+
import { DigitalOcean as Ne } from "./atoms/icons/digital-ocean.js";
|
|
64
|
+
import { Discord as qe } from "./atoms/icons/discord.js";
|
|
65
|
+
import { Dropbox as Je } from "./atoms/icons/dropbox.js";
|
|
66
|
+
import { E2b as Ye } from "./atoms/icons/e2b.js";
|
|
67
|
+
import { Ebay as Qe } from "./atoms/icons/ebay.js";
|
|
68
|
+
import { Evernote as _e } from "./atoms/icons/evernote.js";
|
|
69
|
+
import { Exa as ot } from "./atoms/icons/exa.js";
|
|
70
|
+
import { Factorial as et } from "./atoms/icons/factorial.js";
|
|
71
|
+
import { Figma as at } from "./atoms/icons/figma.js";
|
|
72
|
+
import { Firecrawl as mt } from "./atoms/icons/firecrawl.js";
|
|
73
|
+
import { Freshservice as lt } from "./atoms/icons/freshservice.js";
|
|
74
|
+
import { Gemini as ft } from "./atoms/icons/gemini.js";
|
|
75
|
+
import { Generic as dt } from "./atoms/icons/generic.js";
|
|
76
|
+
import { Github as gt } from "./atoms/icons/github.js";
|
|
77
|
+
import { Gitlab as Ct } from "./atoms/icons/gitlab.js";
|
|
78
|
+
import { Gmail as Tt } from "./atoms/icons/gmail.js";
|
|
79
|
+
import { Google as ht } from "./atoms/icons/google.js";
|
|
80
|
+
import { GoogleCalendar as At } from "./atoms/icons/google-calendar.js";
|
|
81
|
+
import { GoogleContacts as Dt } from "./atoms/icons/google-contacts.js";
|
|
82
|
+
import { GoogleDocs as Bt } from "./atoms/icons/google-docs.js";
|
|
83
|
+
import { GoogleDrive as Pt } from "./atoms/icons/google-drive.js";
|
|
84
|
+
import { GoogleFinance as Lt } from "./atoms/icons/google-finance.js";
|
|
85
|
+
import { GoogleFlight as It } from "./atoms/icons/google-flight.js";
|
|
86
|
+
import { GoogleFlights as Ht } from "./atoms/icons/google-flights.js";
|
|
87
|
+
import { GoogleHotels as Ft } from "./atoms/icons/google-hotels.js";
|
|
88
|
+
import { GoogleJobs as Rt } from "./atoms/icons/google-jobs.js";
|
|
89
|
+
import { GoogleMaps as zt } from "./atoms/icons/google-maps.js";
|
|
90
|
+
import { GoogleNews as Nt } from "./atoms/icons/google-news.js";
|
|
91
|
+
import { GoogleSheets as qt } from "./atoms/icons/google-sheets.js";
|
|
92
|
+
import { GoogleShopping as Jt } from "./atoms/icons/google-shopping.js";
|
|
93
|
+
import { GoogleSlides as Yt } from "./atoms/icons/google-slides.js";
|
|
94
|
+
import { Goose as Qt } from "./atoms/icons/goose.js";
|
|
95
|
+
import { Granola as _t } from "./atoms/icons/granola.js";
|
|
96
|
+
import { Heroku as oa } from "./atoms/icons/heroku.js";
|
|
97
|
+
import { Hootsuite as ea } from "./atoms/icons/hootsuite.js";
|
|
98
|
+
import { Hubspot as aa } from "./atoms/icons/hubspot.js";
|
|
99
|
+
import { Imgflip as ma } from "./atoms/icons/imgflip.js";
|
|
100
|
+
import { Intercom as la } from "./atoms/icons/intercom.js";
|
|
101
|
+
import { Jira as fa } from "./atoms/icons/jira.js";
|
|
102
|
+
import { Langchain as da } from "./atoms/icons/langchain.js";
|
|
103
|
+
import { LangchainLogotype as ga } from "./atoms/icons/langchain-logotype.js";
|
|
104
|
+
import { Linear as Ca } from "./atoms/icons/linear.js";
|
|
105
|
+
import { Linkedin as Ta } from "./atoms/icons/linkedin.js";
|
|
106
|
+
import { Luma as ha } from "./atoms/icons/luma.js";
|
|
107
|
+
import { Mailchimp as Aa } from "./atoms/icons/mailchimp.js";
|
|
108
|
+
import { Mastra as Da } from "./atoms/icons/mastra.js";
|
|
109
|
+
import { MastraLogotype as Ba } from "./atoms/icons/mastra-logotype.js";
|
|
110
|
+
import { MathToolkit as Pa } from "./atoms/icons/math-toolkit.js";
|
|
111
|
+
import { Mcp as La } from "./atoms/icons/mcp.js";
|
|
112
|
+
import { Microsoft as Ia } from "./atoms/icons/microsoft.js";
|
|
113
|
+
import { MicrosoftDynamics as Ha } from "./atoms/icons/microsoft-dynamics.js";
|
|
114
|
+
import { MicrosoftExcel as Fa } from "./atoms/icons/microsoft-excel.js";
|
|
115
|
+
import { MicrosoftOnedrive as Ra } from "./atoms/icons/microsoft-onedrive.js";
|
|
116
|
+
import { MicrosoftOutlookCalendar as za } from "./atoms/icons/microsoft-outlook-calendar.js";
|
|
117
|
+
import { MicrosoftOutlookMail as Na } from "./atoms/icons/microsoft-outlook-mail.js";
|
|
118
|
+
import { MicrosoftPowerpoint as qa } from "./atoms/icons/microsoft-powerpoint.js";
|
|
119
|
+
import { MicrosoftSharepoint as Ja } from "./atoms/icons/microsoft-sharepoint.js";
|
|
120
|
+
import { MicrosoftTeams as Ya } from "./atoms/icons/microsoft-teams.js";
|
|
121
|
+
import { MicrosoftWord as Qa } from "./atoms/icons/microsoft-word.js";
|
|
122
|
+
import { Miro as _a } from "./atoms/icons/miro.js";
|
|
123
|
+
import { Monday as op } from "./atoms/icons/monday.js";
|
|
124
|
+
import { MongoDB as ep } from "./atoms/icons/mongodb.js";
|
|
125
|
+
import { Netsuite as ap } from "./atoms/icons/netsuite.js";
|
|
126
|
+
import { Notion as mp } from "./atoms/icons/notion.js";
|
|
127
|
+
import { Oauth as lp } from "./atoms/icons/oauth.js";
|
|
128
|
+
import { Obsidian as fp } from "./atoms/icons/obsidian.js";
|
|
129
|
+
import { Okta as dp } from "./atoms/icons/okta.js";
|
|
130
|
+
import { Openai as gp } from "./atoms/icons/openai.js";
|
|
131
|
+
import { Pagerduty as Cp } from "./atoms/icons/pagerduty.js";
|
|
132
|
+
import { Pinecone as Tp } from "./atoms/icons/pinecone.js";
|
|
133
|
+
import { Pinterest as hp } from "./atoms/icons/pinterest.js";
|
|
134
|
+
import { Pipedrive as Ap } from "./atoms/icons/pipedrive.js";
|
|
135
|
+
import { Plaid as Dp } from "./atoms/icons/plaid.js";
|
|
136
|
+
import { Postgres as Bp } from "./atoms/icons/postgres.js";
|
|
137
|
+
import { Posthog as Pp } from "./atoms/icons/posthog.js";
|
|
138
|
+
import { Pylon as Lp } from "./atoms/icons/pylon.js";
|
|
139
|
+
import { Quickbooks as Ip } from "./atoms/icons/quickbooks.js";
|
|
140
|
+
import { Railway as Hp } from "./atoms/icons/railway.js";
|
|
141
|
+
import { Reddit as Fp } from "./atoms/icons/reddit.js";
|
|
142
|
+
import { Salesforce as Rp } from "./atoms/icons/salesforce.js";
|
|
143
|
+
import { Shopify as zp } from "./atoms/icons/shopify.js";
|
|
144
|
+
import { Singlestore as Np } from "./atoms/icons/singlestore.js";
|
|
145
|
+
import { Slack as qp } from "./atoms/icons/slack.js";
|
|
146
|
+
import { Snowflake as Jp } from "./atoms/icons/snowflake.js";
|
|
147
|
+
import { Splunk as Yp } from "./atoms/icons/splunk.js";
|
|
148
|
+
import { Spotify as Qp } from "./atoms/icons/spotify.js";
|
|
149
|
+
import { Square as _p } from "./atoms/icons/square.js";
|
|
150
|
+
import { Squarespace as om } from "./atoms/icons/squarespace.js";
|
|
151
|
+
import { Squareup as em } from "./atoms/icons/squareup.js";
|
|
152
|
+
import { Stripe as am } from "./atoms/icons/stripe.js";
|
|
153
|
+
import { Tesla as mm } from "./atoms/icons/tesla.js";
|
|
154
|
+
import { Ticktick as lm } from "./atoms/icons/ticktick.js";
|
|
155
|
+
import { Tiktok as fm } from "./atoms/icons/tiktok.js";
|
|
156
|
+
import { Trello as dm } from "./atoms/icons/trello.js";
|
|
157
|
+
import { Twilio as gm } from "./atoms/icons/twilio.js";
|
|
158
|
+
import { Twitch as Cm } from "./atoms/icons/twitch.js";
|
|
159
|
+
import { Vercel as Tm } from "./atoms/icons/vercel.js";
|
|
160
|
+
import { VercelLogotype as hm } from "./atoms/icons/vercel-logotype.js";
|
|
161
|
+
import { Vscode as Am } from "./atoms/icons/vscode.js";
|
|
162
|
+
import { Walmart as Dm } from "./atoms/icons/walmart.js";
|
|
163
|
+
import { Weaviate as Bm } from "./atoms/icons/weaviate.js";
|
|
164
|
+
import { Windsurf as Pm } from "./atoms/icons/windsurf.js";
|
|
165
|
+
import { Workday as Lm } from "./atoms/icons/workday.js";
|
|
166
|
+
import { Wrike as Im } from "./atoms/icons/wrike.js";
|
|
167
|
+
import { X as Hm } from "./atoms/icons/x.js";
|
|
168
|
+
import { Xero as Fm } from "./atoms/icons/xero.js";
|
|
169
|
+
import { Youtube as Rm } from "./atoms/icons/youtube.js";
|
|
170
|
+
import { Yugabytedb as zm } from "./atoms/icons/yugabytedb.js";
|
|
171
|
+
import { Zendesk as Nm } from "./atoms/icons/zendesk.js";
|
|
172
|
+
import { Zoho as qm } from "./atoms/icons/zoho.js";
|
|
173
|
+
import { ZohoBooks as Jm } from "./atoms/icons/zoho-books.js";
|
|
174
|
+
import { ZohoCreator as Ym } from "./atoms/icons/zoho-creator.js";
|
|
175
|
+
import { Zoom as Qm } from "./atoms/icons/zoom.js";
|
|
176
|
+
import { Input as _m } from "./atoms/input.js";
|
|
177
|
+
import { JsonHighlight as oi, jsonHighlightVariants as ri } from "./atoms/json-highlight.js";
|
|
178
|
+
import { Label as ti } from "./atoms/label.js";
|
|
179
|
+
import { Loader as pi } from "./atoms/loader.js";
|
|
180
|
+
import { M as ii } from "../../markdown-D0xxRbwP.js";
|
|
181
|
+
import { MobileTooltip as ni, MobileTooltipContent as fi, MobileTooltipProvider as xi, MobileTooltipTrigger as di } from "./atoms/mobile-tooltip.js";
|
|
182
|
+
import { Popover as gi, PopoverAnchor as ui, PopoverContent as Ci, PopoverTrigger as ci } from "./atoms/popover.js";
|
|
183
|
+
import { ProBadge as Si } from "./atoms/pro-badge.js";
|
|
184
|
+
import { Progress as bi } from "./atoms/progress.js";
|
|
185
|
+
import { RadioGroup as Mi, RadioGroupItem as Di } from "./atoms/radio-group.js";
|
|
186
|
+
import { ResizableHandle as Bi, ResizablePanel as Gi, ResizablePanelGroup as Pi } from "./atoms/resizable.js";
|
|
187
|
+
import { ScrollArea as Li, ScrollBar as yi } from "./atoms/scroll-area.js";
|
|
188
|
+
import { ScrollButton as wi } from "./atoms/scroll-button.js";
|
|
189
|
+
import { Select as Ei, SelectContent as Fi, SelectGroup as Oi, SelectItem as Ri, SelectLabel as Vi, SelectScrollDownButton as zi, SelectScrollUpButton as Wi, SelectSeparator as Ni, SelectTrigger as Zi, SelectValue as qi } from "./atoms/select.js";
|
|
190
|
+
import { Separator as Ji } from "./atoms/separator.js";
|
|
191
|
+
import { Sheet as Yi, SheetClose as ji, SheetContent as Qi, SheetDescription as Ki, SheetFooter as _i, SheetHeader as $i, SheetTitle as ol, SheetTrigger as rl } from "./atoms/sheet.js";
|
|
192
|
+
import { Sidebar as tl, SidebarContent as al, SidebarFooter as pl, SidebarGroup as ml, SidebarGroupAction as il, SidebarGroupContent as ll, SidebarGroupLabel as nl, SidebarHeader as fl, SidebarInput as xl, SidebarInset as dl, SidebarMenu as sl, SidebarMenuAction as gl, SidebarMenuBadge as ul, SidebarMenuButton as Cl, SidebarMenuItem as cl, SidebarMenuSkeleton as Tl, SidebarMenuSub as Sl, SidebarMenuSubButton as hl, SidebarMenuSubItem as bl, SidebarProvider as Al, SidebarRail as Ml, SidebarSeparator as Dl, SidebarTrigger as kl, useSidebar as Bl } from "./atoms/sidebar.js";
|
|
193
|
+
import { Skeleton as Pl } from "./atoms/skeleton.js";
|
|
194
|
+
import { Slider as Ll } from "./atoms/slider.js";
|
|
195
|
+
import { StepIndicator as Il, stepIndicatorIconVariants as wl, stepIndicatorLabelVariants as Hl } from "./atoms/step-indicator.js";
|
|
196
|
+
import { Switch as Fl } from "./atoms/switch.js";
|
|
197
|
+
import { Table as Rl, TableBody as Vl, TableCaption as zl, TableCell as Wl, TableFooter as Nl, TableHead as Zl, TableHeader as ql, TableRow as Ul } from "./atoms/table.js";
|
|
198
|
+
import { Tabs as Xl, TabsContent as Yl, TabsList as jl, TabsTrigger as Ql } from "./atoms/tabs.js";
|
|
199
|
+
import { Textarea as _l } from "./atoms/textarea.js";
|
|
200
|
+
import { Toggle as on, toggleVariants as rn } from "./atoms/toggle.js";
|
|
201
|
+
import { Tooltip as tn, TooltipContent as an, TooltipProvider as pn, TooltipTrigger as mn } from "./atoms/tooltip.js";
|
|
202
|
+
import { ViewToolsControl as nn } from "./atoms/view-tools-control.js";
|
|
203
|
+
import { VirtualizedGrid as xn } from "./atoms/virtualized-grid.js";
|
|
204
|
+
import { ChatHistoryItem as sn } from "./molecules/chat-history-item.js";
|
|
205
|
+
import { ChatAssistantMessage as un, ChatMessageList as Cn, ChatMessageListSkeleton as cn, ChatStreamingIndicator as Tn, ChatUserMessage as Sn } from "./molecules/chat-message-list.js";
|
|
206
|
+
import { CommandBar as bn } from "./molecules/command-bar.js";
|
|
207
|
+
import { ConfirmPopover as Mn } from "./molecules/confirm-popover.js";
|
|
208
|
+
import { DateTimePicker as kn } from "./molecules/date-time-picker.js";
|
|
209
|
+
import { EmptyState as Gn } from "./molecules/empty-state.js";
|
|
210
|
+
import { ErrorState as vn } from "./molecules/error-state.js";
|
|
211
|
+
import { Message as yn, MessageAction as In, MessageActions as wn, MessageAvatar as Hn, MessageContent as En } from "./molecules/message.js";
|
|
212
|
+
import { PromptInput as On, PromptInputAction as Rn, PromptInputActions as Vn, PromptInputTextarea as zn } from "./molecules/prompt-input.js";
|
|
213
|
+
import { R as Nn, T as Zn } from "../../toolkit-card-CB1oiaei.js";
|
|
214
|
+
import { StepsProgress as Un } from "./molecules/steps-progress.js";
|
|
215
|
+
import { SuggestionCard as Xn } from "./molecules/suggestion-card.js";
|
|
216
|
+
import { ToolAuthorization as jn, ToolAuthorizationArgs as Qn, ToolAuthorizationContent as Kn, ToolAuthorizationHeader as _n, ToolAuthorizationMessage as $n } from "./molecules/tool-authorization.js";
|
|
217
|
+
import { ToolCallAccordion as rf, ToolCallAccordionContent as ef, ToolCallAccordionItem as tf, ToolCallAccordionTrigger as af } from "./molecules/tool-call-accordion.js";
|
|
218
|
+
import { ToolCard as mf } from "./molecules/tool-card.js";
|
|
219
|
+
import { UserNav as nf } from "./molecules/user-nav.js";
|
|
220
|
+
import { ChatPageSkeleton as xf } from "./pages/chat-page-skeleton.js";
|
|
221
|
+
import { LoginPage as sf } from "./pages/login-page.js";
|
|
222
|
+
import { AuthTemplate as uf, AuthTemplateCard as Cf, AuthTemplateContent as cf, AuthTemplateDefaultBackground as Tf, AuthTemplateDescription as Sf, AuthTemplateFooter as hf, AuthTemplateGridOverlay as bf, AuthTemplateHeader as Af, AuthTemplateLegal as Mf, AuthTemplateLegalLink as Df, AuthTemplateLogo as kf, AuthTemplatePrompt as Bf, AuthTemplatePromptLink as Gf, AuthTemplateTitle as Pf, AuthTemplateVideoBackground as vf } from "./templates/auth-template.js";
|
|
223
|
+
import { ChatTemplate as yf, ChatTemplateBody as If, ChatTemplateFooter as wf, ChatTemplateHeader as Hf, ChatTemplateHeaderGroup as Ef, ChatTemplateOverview as Ff, ChatTemplateOverviewSubtitle as Of, ChatTemplateOverviewTitle as Rf, ChatTemplateSuggestions as Vf } from "./templates/chat-template.js";
|
|
224
|
+
import { ChatBodySkeleton as Wf, ChatContentSkeleton as Nf, ChatFooterSkeleton as Zf, ChatHeaderSkeleton as qf, ChatSidebarSkeleton as Uf } from "./templates/chat-template-skeletons.js";
|
|
225
|
+
import { ErrorTemplate as Xf, ErrorTemplateActions as Yf, ErrorTemplateContent as jf, ErrorTemplateDescription as Qf, ErrorTemplateIcon as Kf, ErrorTemplateLogo as _f, ErrorTemplateTitle as $f, ErrorTemplateUrl as ox } from "./templates/error-template.js";
|
|
214
226
|
export {
|
|
215
227
|
e as Accordion,
|
|
216
228
|
t as AccordionContent,
|
|
217
229
|
a as AccordionItem,
|
|
218
230
|
p as AccordionTrigger,
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
231
|
+
Tr as Adp,
|
|
232
|
+
hr as Aha,
|
|
233
|
+
Ar as Airtable,
|
|
222
234
|
i as Alert,
|
|
223
235
|
l as AlertDescription,
|
|
224
236
|
x as AlertDialog,
|
|
225
237
|
d as AlertDialogAction,
|
|
226
238
|
s as AlertDialogCancel,
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
239
|
+
g as AlertDialogContent,
|
|
240
|
+
u as AlertDialogDescription,
|
|
241
|
+
C as AlertDialogFooter,
|
|
242
|
+
c as AlertDialogHeader,
|
|
243
|
+
T as AlertDialogOverlay,
|
|
244
|
+
S as AlertDialogPortal,
|
|
233
245
|
h as AlertDialogTitle,
|
|
234
246
|
b as AlertDialogTrigger,
|
|
235
247
|
n as AlertTitle,
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
B as
|
|
262
|
-
G as
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
ee as
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
U as
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
Pl as
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
248
|
+
Dr as Amplitude,
|
|
249
|
+
Br as Arcade,
|
|
250
|
+
M as ArcadeGradient,
|
|
251
|
+
Pr as ArcadeLogo,
|
|
252
|
+
Lr as Asana,
|
|
253
|
+
Ir as Ashby,
|
|
254
|
+
Hr as Atlassian,
|
|
255
|
+
Fr as Attio,
|
|
256
|
+
Rr as Auth0,
|
|
257
|
+
uf as AuthTemplate,
|
|
258
|
+
Cf as AuthTemplateCard,
|
|
259
|
+
cf as AuthTemplateContent,
|
|
260
|
+
Tf as AuthTemplateDefaultBackground,
|
|
261
|
+
Sf as AuthTemplateDescription,
|
|
262
|
+
hf as AuthTemplateFooter,
|
|
263
|
+
bf as AuthTemplateGridOverlay,
|
|
264
|
+
Af as AuthTemplateHeader,
|
|
265
|
+
Mf as AuthTemplateLegal,
|
|
266
|
+
Df as AuthTemplateLegalLink,
|
|
267
|
+
kf as AuthTemplateLogo,
|
|
268
|
+
Bf as AuthTemplatePrompt,
|
|
269
|
+
Gf as AuthTemplatePromptLink,
|
|
270
|
+
Pf as AuthTemplateTitle,
|
|
271
|
+
vf as AuthTemplateVideoBackground,
|
|
272
|
+
k as Avatar,
|
|
273
|
+
B as AvatarFallback,
|
|
274
|
+
G as AvatarImage,
|
|
275
|
+
v as AvatarNotificationBadge,
|
|
276
|
+
zr as Azure,
|
|
277
|
+
I as Badge,
|
|
278
|
+
Nr as Bamboohr,
|
|
279
|
+
qr as Basecamp,
|
|
280
|
+
Jr as Bill,
|
|
281
|
+
Yr as Bitbucket,
|
|
282
|
+
Qr as Bluesky,
|
|
283
|
+
_r as Box,
|
|
284
|
+
E as BrandChip,
|
|
285
|
+
oe as Braze,
|
|
286
|
+
O as Breadcrumb,
|
|
287
|
+
R as BreadcrumbEllipsis,
|
|
288
|
+
V as BreadcrumbItem,
|
|
289
|
+
z as BreadcrumbLink,
|
|
290
|
+
W as BreadcrumbList,
|
|
291
|
+
N as BreadcrumbPage,
|
|
292
|
+
Z as BreadcrumbSeparator,
|
|
293
|
+
ee as Brex,
|
|
294
|
+
ae as Brightdata,
|
|
295
|
+
me as Buffer,
|
|
296
|
+
U as Button,
|
|
297
|
+
Y as ByocBadge,
|
|
298
|
+
Q as Calendar,
|
|
299
|
+
K as CalendarDayButton,
|
|
300
|
+
le as Calendly,
|
|
301
|
+
$ as Card,
|
|
302
|
+
oo as CardAction,
|
|
303
|
+
ro as CardContent,
|
|
304
|
+
eo as CardDescription,
|
|
305
|
+
to as CardFooter,
|
|
306
|
+
ao as CardHeader,
|
|
307
|
+
po as CardTitle,
|
|
308
|
+
io as ChartContainer,
|
|
309
|
+
lo as ChartLegend,
|
|
310
|
+
no as ChartLegendContent,
|
|
311
|
+
fo as ChartStyle,
|
|
312
|
+
xo as ChartTooltip,
|
|
313
|
+
so as ChartTooltipContent,
|
|
314
|
+
un as ChatAssistantMessage,
|
|
315
|
+
Wf as ChatBodySkeleton,
|
|
316
|
+
uo as ChatContainerContent,
|
|
317
|
+
Co as ChatContainerRoot,
|
|
318
|
+
co as ChatContainerScrollAnchor,
|
|
319
|
+
Nf as ChatContentSkeleton,
|
|
320
|
+
Zf as ChatFooterSkeleton,
|
|
321
|
+
qf as ChatHeaderSkeleton,
|
|
322
|
+
sn as ChatHistoryItem,
|
|
323
|
+
Cn as ChatMessageList,
|
|
324
|
+
cn as ChatMessageListSkeleton,
|
|
325
|
+
xf as ChatPageSkeleton,
|
|
326
|
+
Uf as ChatSidebarSkeleton,
|
|
327
|
+
Tn as ChatStreamingIndicator,
|
|
328
|
+
yf as ChatTemplate,
|
|
329
|
+
If as ChatTemplateBody,
|
|
330
|
+
wf as ChatTemplateFooter,
|
|
331
|
+
Hf as ChatTemplateHeader,
|
|
332
|
+
Ef as ChatTemplateHeaderGroup,
|
|
333
|
+
Ff as ChatTemplateOverview,
|
|
334
|
+
Of as ChatTemplateOverviewSubtitle,
|
|
335
|
+
Rf as ChatTemplateOverviewTitle,
|
|
336
|
+
Vf as ChatTemplateSuggestions,
|
|
337
|
+
Sn as ChatUserMessage,
|
|
338
|
+
So as Checkbox,
|
|
339
|
+
fe as Claude,
|
|
340
|
+
de as ClaudeCodeLogotype,
|
|
341
|
+
ge as Clickhouse,
|
|
342
|
+
Ce as Clickup,
|
|
343
|
+
Te as Cline,
|
|
344
|
+
he as Closeio,
|
|
345
|
+
bo as CodeBlock,
|
|
346
|
+
Ao as CodeBlockCode,
|
|
347
|
+
Mo as CodeBlockGroup,
|
|
348
|
+
Ae as Codesandbox,
|
|
349
|
+
De as Coinbase,
|
|
350
|
+
ko as Collapsible,
|
|
351
|
+
Bo as CollapsibleContent,
|
|
352
|
+
Go as CollapsibleTrigger,
|
|
353
|
+
vo as Command,
|
|
354
|
+
bn as CommandBar,
|
|
355
|
+
Lo as CommandDialog,
|
|
356
|
+
yo as CommandEmpty,
|
|
357
|
+
Io as CommandGroup,
|
|
358
|
+
wo as CommandInput,
|
|
359
|
+
Ho as CommandItem,
|
|
360
|
+
Eo as CommandList,
|
|
361
|
+
Fo as CommandSeparator,
|
|
362
|
+
Oo as CommandShortcut,
|
|
363
|
+
Mn as ConfirmPopover,
|
|
364
|
+
Be as Confluence,
|
|
365
|
+
Vo as CopyButton,
|
|
366
|
+
Pe as Cursor,
|
|
367
|
+
Le as CursorInstallDark,
|
|
368
|
+
Ie as CursorInstallLight,
|
|
369
|
+
He as CursorLogotype,
|
|
370
|
+
Fe as Customerio,
|
|
371
|
+
Re as Datadog,
|
|
372
|
+
kn as DateTimePicker,
|
|
373
|
+
ze as Daytona,
|
|
374
|
+
Wo as Dialog,
|
|
375
|
+
No as DialogClose,
|
|
376
|
+
Zo as DialogContent,
|
|
377
|
+
qo as DialogDescription,
|
|
378
|
+
Uo as DialogFooter,
|
|
379
|
+
Jo as DialogHeader,
|
|
380
|
+
Xo as DialogOverlay,
|
|
381
|
+
Yo as DialogPortal,
|
|
382
|
+
jo as DialogTitle,
|
|
383
|
+
Qo as DialogTrigger,
|
|
384
|
+
Ne as DigitalOcean,
|
|
385
|
+
qe as Discord,
|
|
386
|
+
Je as Dropbox,
|
|
387
|
+
_o as DropdownMenu,
|
|
388
|
+
$o as DropdownMenuCheckboxItem,
|
|
389
|
+
or as DropdownMenuContent,
|
|
390
|
+
rr as DropdownMenuGroup,
|
|
391
|
+
er as DropdownMenuItem,
|
|
392
|
+
tr as DropdownMenuLabel,
|
|
393
|
+
ar as DropdownMenuPortal,
|
|
394
|
+
pr as DropdownMenuRadioGroup,
|
|
395
|
+
mr as DropdownMenuRadioItem,
|
|
396
|
+
ir as DropdownMenuSeparator,
|
|
397
|
+
lr as DropdownMenuShortcut,
|
|
398
|
+
nr as DropdownMenuSub,
|
|
399
|
+
fr as DropdownMenuSubContent,
|
|
400
|
+
xr as DropdownMenuSubTrigger,
|
|
401
|
+
dr as DropdownMenuTrigger,
|
|
402
|
+
Ye as E2b,
|
|
403
|
+
Qe as Ebay,
|
|
404
|
+
Gn as EmptyState,
|
|
405
|
+
vn as ErrorState,
|
|
406
|
+
Xf as ErrorTemplate,
|
|
407
|
+
Yf as ErrorTemplateActions,
|
|
408
|
+
jf as ErrorTemplateContent,
|
|
409
|
+
Qf as ErrorTemplateDescription,
|
|
410
|
+
Kf as ErrorTemplateIcon,
|
|
411
|
+
_f as ErrorTemplateLogo,
|
|
412
|
+
$f as ErrorTemplateTitle,
|
|
413
|
+
ox as ErrorTemplateUrl,
|
|
414
|
+
_e as Evernote,
|
|
415
|
+
ot as Exa,
|
|
416
|
+
et as Factorial,
|
|
417
|
+
at as Figma,
|
|
418
|
+
mt as Firecrawl,
|
|
419
|
+
lt as Freshservice,
|
|
420
|
+
ft as Gemini,
|
|
421
|
+
dt as Generic,
|
|
422
|
+
gt as Github,
|
|
423
|
+
Ct as Gitlab,
|
|
424
|
+
Tt as Gmail,
|
|
425
|
+
ht as Google,
|
|
426
|
+
At as GoogleCalendar,
|
|
427
|
+
Dt as GoogleContacts,
|
|
428
|
+
Bt as GoogleDocs,
|
|
429
|
+
Pt as GoogleDrive,
|
|
430
|
+
Lt as GoogleFinance,
|
|
431
|
+
It as GoogleFlight,
|
|
432
|
+
Ht as GoogleFlights,
|
|
433
|
+
Ft as GoogleHotels,
|
|
434
|
+
Rt as GoogleJobs,
|
|
435
|
+
zt as GoogleMaps,
|
|
436
|
+
Nt as GoogleNews,
|
|
437
|
+
qt as GoogleSheets,
|
|
438
|
+
Jt as GoogleShopping,
|
|
439
|
+
Yt as GoogleSlides,
|
|
440
|
+
Qt as Goose,
|
|
441
|
+
_t as Granola,
|
|
442
|
+
oa as Heroku,
|
|
443
|
+
ea as Hootsuite,
|
|
444
|
+
gr as HoverCard,
|
|
445
|
+
ur as HoverCardContent,
|
|
446
|
+
Cr as HoverCardTrigger,
|
|
447
|
+
aa as Hubspot,
|
|
448
|
+
ma as Imgflip,
|
|
449
|
+
_m as Input,
|
|
450
|
+
la as Intercom,
|
|
451
|
+
fa as Jira,
|
|
452
|
+
oi as JsonHighlight,
|
|
453
|
+
ti as Label,
|
|
454
|
+
da as Langchain,
|
|
455
|
+
ga as LangchainLogotype,
|
|
456
|
+
Ca as Linear,
|
|
457
|
+
Ta as Linkedin,
|
|
458
|
+
pi as Loader,
|
|
459
|
+
sf as LoginPage,
|
|
460
|
+
ha as Luma,
|
|
461
|
+
Aa as Mailchimp,
|
|
462
|
+
ii as Markdown,
|
|
463
|
+
Da as Mastra,
|
|
464
|
+
Ba as MastraLogotype,
|
|
465
|
+
Pa as MathToolkit,
|
|
466
|
+
La as Mcp,
|
|
467
|
+
yn as Message,
|
|
468
|
+
In as MessageAction,
|
|
469
|
+
wn as MessageActions,
|
|
470
|
+
Hn as MessageAvatar,
|
|
471
|
+
En as MessageContent,
|
|
472
|
+
Ia as Microsoft,
|
|
473
|
+
Ha as MicrosoftDynamics,
|
|
474
|
+
Fa as MicrosoftExcel,
|
|
475
|
+
Ra as MicrosoftOnedrive,
|
|
476
|
+
za as MicrosoftOutlookCalendar,
|
|
477
|
+
Na as MicrosoftOutlookMail,
|
|
478
|
+
qa as MicrosoftPowerpoint,
|
|
479
|
+
Ja as MicrosoftSharepoint,
|
|
480
|
+
Ya as MicrosoftTeams,
|
|
481
|
+
Qa as MicrosoftWord,
|
|
482
|
+
_a as Miro,
|
|
483
|
+
ni as MobileTooltip,
|
|
484
|
+
fi as MobileTooltipContent,
|
|
485
|
+
xi as MobileTooltipProvider,
|
|
486
|
+
di as MobileTooltipTrigger,
|
|
487
|
+
op as Monday,
|
|
488
|
+
ep as MongoDB,
|
|
489
|
+
ap as Netsuite,
|
|
490
|
+
mp as Notion,
|
|
491
|
+
lp as Oauth,
|
|
492
|
+
fp as Obsidian,
|
|
493
|
+
dp as Okta,
|
|
494
|
+
gp as Openai,
|
|
495
|
+
Cp as Pagerduty,
|
|
496
|
+
Tp as Pinecone,
|
|
497
|
+
hp as Pinterest,
|
|
498
|
+
Ap as Pipedrive,
|
|
499
|
+
Dp as Plaid,
|
|
500
|
+
gi as Popover,
|
|
501
|
+
ui as PopoverAnchor,
|
|
502
|
+
Ci as PopoverContent,
|
|
503
|
+
ci as PopoverTrigger,
|
|
504
|
+
Bp as Postgres,
|
|
505
|
+
Pp as Posthog,
|
|
506
|
+
Si as ProBadge,
|
|
507
|
+
bi as Progress,
|
|
508
|
+
On as PromptInput,
|
|
509
|
+
Rn as PromptInputAction,
|
|
510
|
+
Vn as PromptInputActions,
|
|
511
|
+
zn as PromptInputTextarea,
|
|
512
|
+
Lp as Pylon,
|
|
513
|
+
Ip as Quickbooks,
|
|
514
|
+
Mi as RadioGroup,
|
|
515
|
+
Di as RadioGroupItem,
|
|
516
|
+
Hp as Railway,
|
|
517
|
+
Fp as Reddit,
|
|
518
|
+
Nn as RequirementBadges,
|
|
519
|
+
Bi as ResizableHandle,
|
|
520
|
+
Gi as ResizablePanel,
|
|
521
|
+
Pi as ResizablePanelGroup,
|
|
522
|
+
Rp as Salesforce,
|
|
523
|
+
Li as ScrollArea,
|
|
524
|
+
yi as ScrollBar,
|
|
525
|
+
wi as ScrollButton,
|
|
526
|
+
Ei as Select,
|
|
527
|
+
Fi as SelectContent,
|
|
528
|
+
Oi as SelectGroup,
|
|
529
|
+
Ri as SelectItem,
|
|
530
|
+
Vi as SelectLabel,
|
|
531
|
+
zi as SelectScrollDownButton,
|
|
532
|
+
Wi as SelectScrollUpButton,
|
|
533
|
+
Ni as SelectSeparator,
|
|
534
|
+
Zi as SelectTrigger,
|
|
535
|
+
qi as SelectValue,
|
|
536
|
+
Ji as Separator,
|
|
537
|
+
Yi as Sheet,
|
|
538
|
+
ji as SheetClose,
|
|
539
|
+
Qi as SheetContent,
|
|
540
|
+
Ki as SheetDescription,
|
|
541
|
+
_i as SheetFooter,
|
|
542
|
+
$i as SheetHeader,
|
|
543
|
+
ol as SheetTitle,
|
|
544
|
+
rl as SheetTrigger,
|
|
545
|
+
zp as Shopify,
|
|
546
|
+
tl as Sidebar,
|
|
547
|
+
al as SidebarContent,
|
|
548
|
+
pl as SidebarFooter,
|
|
549
|
+
ml as SidebarGroup,
|
|
550
|
+
il as SidebarGroupAction,
|
|
551
|
+
ll as SidebarGroupContent,
|
|
552
|
+
nl as SidebarGroupLabel,
|
|
553
|
+
fl as SidebarHeader,
|
|
554
|
+
xl as SidebarInput,
|
|
555
|
+
dl as SidebarInset,
|
|
556
|
+
sl as SidebarMenu,
|
|
557
|
+
gl as SidebarMenuAction,
|
|
558
|
+
ul as SidebarMenuBadge,
|
|
559
|
+
Cl as SidebarMenuButton,
|
|
560
|
+
cl as SidebarMenuItem,
|
|
561
|
+
Tl as SidebarMenuSkeleton,
|
|
562
|
+
Sl as SidebarMenuSub,
|
|
563
|
+
hl as SidebarMenuSubButton,
|
|
564
|
+
bl as SidebarMenuSubItem,
|
|
565
|
+
Al as SidebarProvider,
|
|
566
|
+
Ml as SidebarRail,
|
|
567
|
+
Dl as SidebarSeparator,
|
|
568
|
+
kl as SidebarTrigger,
|
|
569
|
+
Np as Singlestore,
|
|
570
|
+
Pl as Skeleton,
|
|
571
|
+
qp as Slack,
|
|
572
|
+
Ll as Slider,
|
|
573
|
+
Jp as Snowflake,
|
|
574
|
+
Yp as Splunk,
|
|
575
|
+
Qp as Spotify,
|
|
576
|
+
_p as Square,
|
|
577
|
+
om as Squarespace,
|
|
578
|
+
em as Squareup,
|
|
579
|
+
Il as StepIndicator,
|
|
580
|
+
Un as StepsProgress,
|
|
581
|
+
am as Stripe,
|
|
582
|
+
Xn as SuggestionCard,
|
|
583
|
+
Fl as Switch,
|
|
584
|
+
Rl as Table,
|
|
585
|
+
Vl as TableBody,
|
|
586
|
+
zl as TableCaption,
|
|
587
|
+
Wl as TableCell,
|
|
588
|
+
Nl as TableFooter,
|
|
589
|
+
Zl as TableHead,
|
|
590
|
+
ql as TableHeader,
|
|
591
|
+
Ul as TableRow,
|
|
592
|
+
Xl as Tabs,
|
|
593
|
+
Yl as TabsContent,
|
|
594
|
+
jl as TabsList,
|
|
595
|
+
Ql as TabsTrigger,
|
|
596
|
+
mm as Tesla,
|
|
597
|
+
_l as Textarea,
|
|
598
|
+
lm as Ticktick,
|
|
599
|
+
fm as Tiktok,
|
|
600
|
+
on as Toggle,
|
|
601
|
+
jn as ToolAuthorization,
|
|
602
|
+
Qn as ToolAuthorizationArgs,
|
|
603
|
+
Kn as ToolAuthorizationContent,
|
|
604
|
+
_n as ToolAuthorizationHeader,
|
|
605
|
+
$n as ToolAuthorizationMessage,
|
|
606
|
+
rf as ToolCallAccordion,
|
|
607
|
+
ef as ToolCallAccordionContent,
|
|
608
|
+
tf as ToolCallAccordionItem,
|
|
609
|
+
af as ToolCallAccordionTrigger,
|
|
610
|
+
mf as ToolCard,
|
|
611
|
+
Zn as ToolkitCard,
|
|
612
|
+
tn as Tooltip,
|
|
613
|
+
an as TooltipContent,
|
|
614
|
+
pn as TooltipProvider,
|
|
615
|
+
mn as TooltipTrigger,
|
|
616
|
+
dm as Trello,
|
|
617
|
+
gm as Twilio,
|
|
618
|
+
Cm as Twitch,
|
|
619
|
+
nf as UserNav,
|
|
620
|
+
Tm as Vercel,
|
|
621
|
+
hm as VercelLogotype,
|
|
622
|
+
nn as ViewToolsControl,
|
|
623
|
+
xn as VirtualizedGrid,
|
|
624
|
+
Am as Vscode,
|
|
625
|
+
Dm as Walmart,
|
|
626
|
+
Bm as Weaviate,
|
|
627
|
+
Pm as Windsurf,
|
|
628
|
+
Lm as Workday,
|
|
629
|
+
Im as Wrike,
|
|
630
|
+
Hm as X,
|
|
631
|
+
Fm as Xero,
|
|
632
|
+
Rm as Youtube,
|
|
633
|
+
zm as Yugabytedb,
|
|
634
|
+
Nm as Zendesk,
|
|
635
|
+
qm as Zoho,
|
|
636
|
+
Jm as ZohoBooks,
|
|
637
|
+
Ym as ZohoCreator,
|
|
638
|
+
Qm as Zoom,
|
|
639
|
+
L as avatarBadgeVariants,
|
|
640
|
+
w as badgeVariants,
|
|
641
|
+
J as buttonVariants,
|
|
642
|
+
ri as jsonHighlightVariants,
|
|
643
|
+
wl as stepIndicatorIconVariants,
|
|
644
|
+
Hl as stepIndicatorLabelVariants,
|
|
645
|
+
rn as toggleVariants,
|
|
646
|
+
Bl as useSidebar
|
|
616
647
|
};
|