@arcadeai/design-system 3.40.0 → 3.42.3
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/cursor.js +6 -9
- package/dist/assets/icons/forkable.js +10 -0
- package/dist/assets/icons/mcp.js +2 -5
- package/dist/assets/icons/resend.js +10 -0
- package/dist/assets/index.css +1 -1
- package/dist/assets/tokens.css +1 -1
- package/dist/assets/variables.css +1 -1
- package/dist/components/index.js +504 -494
- package/dist/components/ui/atoms/badge.js +5 -5
- package/dist/components/ui/atoms/button.js +1 -1
- package/dist/components/ui/atoms/compute-flow-paths.d.ts +21 -0
- package/dist/components/ui/atoms/compute-flow-paths.d.ts.map +1 -0
- package/dist/components/ui/atoms/compute-flow-paths.js +38 -0
- package/dist/components/ui/atoms/flow-connector.d.ts +48 -0
- package/dist/components/ui/atoms/flow-connector.d.ts.map +1 -0
- package/dist/components/ui/atoms/flow-connector.js +153 -0
- package/dist/components/ui/atoms/flow-hub.d.ts +26 -0
- package/dist/components/ui/atoms/flow-hub.d.ts.map +1 -0
- package/dist/components/ui/atoms/flow-hub.js +34 -0
- package/dist/components/ui/atoms/flow-tile.d.ts +19 -0
- package/dist/components/ui/atoms/flow-tile.d.ts.map +1 -0
- package/dist/components/ui/atoms/flow-tile.js +49 -0
- package/dist/components/ui/atoms/icons/cursor.d.ts.map +1 -1
- package/dist/components/ui/atoms/icons/cursor.js +7 -7
- package/dist/components/ui/atoms/icons/forkable.d.ts +4 -0
- package/dist/components/ui/atoms/icons/forkable.d.ts.map +1 -0
- package/dist/components/ui/atoms/icons/forkable.js +31 -0
- package/dist/components/ui/atoms/icons/index.d.ts +2 -0
- package/dist/components/ui/atoms/icons/index.d.ts.map +1 -1
- package/dist/components/ui/atoms/icons/index.js +230 -226
- package/dist/components/ui/atoms/icons/mcp.d.ts.map +1 -1
- package/dist/components/ui/atoms/icons/mcp.js +3 -4
- package/dist/components/ui/atoms/icons/resend.d.ts +4 -0
- package/dist/components/ui/atoms/icons/resend.d.ts.map +1 -0
- package/dist/components/ui/atoms/icons/resend.js +24 -0
- package/dist/components/ui/atoms/index.js +372 -368
- package/dist/components/ui/atoms/switch.js +19 -19
- package/dist/components/ui/index.js +504 -494
- package/dist/components/ui/molecules/date-time-picker.js +1 -1
- package/dist/components/ui/molecules/flow-diagram.d.ts +56 -0
- package/dist/components/ui/molecules/flow-diagram.d.ts.map +1 -0
- package/dist/components/ui/molecules/flow-diagram.js +232 -0
- package/dist/components/ui/molecules/index.d.ts +2 -0
- package/dist/components/ui/molecules/index.d.ts.map +1 -1
- package/dist/components/ui/molecules/index.js +42 -40
- package/dist/components/ui/molecules/requirement-badges.js +6 -4
- package/dist/components/ui/molecules/tool-card.d.ts.map +1 -1
- package/dist/components/ui/molecules/tool-card.js +19 -22
- package/dist/components/ui/molecules/toolkit-card.js +1 -1
- package/dist/components/ui/pages/login-page.js +13 -13
- package/dist/components/ui/templates/gateway-diagram.d.ts +28 -0
- package/dist/components/ui/templates/gateway-diagram.d.ts.map +1 -0
- package/dist/components/ui/templates/gateway-diagram.js +76 -0
- package/dist/components/ui/templates/index.d.ts +2 -0
- package/dist/components/ui/templates/index.d.ts.map +1 -1
- package/dist/components/ui/templates/index.js +31 -27
- package/dist/main.js +534 -522
- package/dist/metadata/index.d.ts +1 -0
- package/dist/metadata/index.d.ts.map +1 -1
- package/dist/metadata/index.js +25 -23
- package/dist/metadata/mcp-clients.d.ts +54 -0
- package/dist/metadata/mcp-clients.d.ts.map +1 -0
- package/dist/metadata/mcp-clients.js +23 -0
- package/dist/metadata/toolkit-icons.d.ts.map +1 -1
- package/dist/metadata/toolkit-icons.js +162 -158
- package/dist/metadata/toolkits.d.ts.map +1 -1
- package/dist/metadata/toolkits.js +26 -0
- package/dist/{toolkit-card-Dc104Z9e.js → toolkit-card-ryIR325K.js} +22 -20
- package/package.json +5 -5
package/dist/main.js
CHANGED
|
@@ -1,37 +1,37 @@
|
|
|
1
1
|
import { Accordion as e, AccordionContent as t, AccordionItem as a, AccordionTrigger as p } from "./components/ui/atoms/accordion.js";
|
|
2
2
|
import { Alert as i, AlertAction as l, AlertDescription as n, AlertTitle as f } from "./components/ui/atoms/alert.js";
|
|
3
|
-
import { AlertDialog as d, AlertDialogAction as s, AlertDialogCancel as u, AlertDialogContent as g, AlertDialogDescription as C, AlertDialogFooter as T, AlertDialogHeader as c, AlertDialogMedia as S, AlertDialogOverlay as
|
|
3
|
+
import { AlertDialog as d, AlertDialogAction as s, AlertDialogCancel as u, AlertDialogContent as g, AlertDialogDescription as C, AlertDialogFooter as T, AlertDialogHeader as c, AlertDialogMedia as S, AlertDialogOverlay as A, AlertDialogPortal as h, AlertDialogTitle as b, AlertDialogTrigger as D } from "./components/ui/atoms/alert-dialog.js";
|
|
4
4
|
import { ArcadeGradient as M } from "./components/ui/atoms/arcade-gradient.js";
|
|
5
5
|
import { Avatar as B, AvatarBadge as k, AvatarFallback as G, AvatarGroup as L, AvatarGroupCount as v, AvatarImage as O } from "./components/ui/atoms/avatar.js";
|
|
6
|
-
import { AvatarNotificationBadge as
|
|
7
|
-
import { Badge as H, badgeVariants as
|
|
8
|
-
import { BrandChip as
|
|
9
|
-
import { Breadcrumb as
|
|
6
|
+
import { AvatarNotificationBadge as E, avatarBadgeVariants as R } from "./components/ui/atoms/avatar-notification-badge.js";
|
|
7
|
+
import { Badge as H, badgeVariants as _ } from "./components/ui/atoms/badge.js";
|
|
8
|
+
import { BrandChip as F } from "./components/ui/atoms/brand-chip.js";
|
|
9
|
+
import { Breadcrumb as N, BreadcrumbEllipsis as z, BreadcrumbItem as W, BreadcrumbLink as K, BreadcrumbList as Z, BreadcrumbPage as q, BreadcrumbSeparator as J } from "./components/ui/atoms/breadcrumb.js";
|
|
10
10
|
import { Button as Y, buttonVariants as j } from "./components/ui/atoms/button.js";
|
|
11
11
|
import { ByocBadge as $ } from "./components/ui/atoms/byoc-badge.js";
|
|
12
12
|
import { C as ro, a as eo } from "./calendar-CLEnvrbp.js";
|
|
13
13
|
import { Card as ao, CardAction as po, CardContent as mo, CardDescription as io, CardFooter as lo, CardHeader as no, CardTitle as fo } from "./components/ui/atoms/card.js";
|
|
14
14
|
import { ChartContainer as so, ChartLegend as uo, ChartLegendContent as go, ChartStyle as Co, ChartTooltip as To, ChartTooltipContent as co } from "./components/ui/atoms/chart.js";
|
|
15
|
-
import { ChatContainerContent as
|
|
15
|
+
import { ChatContainerContent as Ao, ChatContainerRoot as ho, ChatContainerScrollAnchor as bo } from "./components/ui/atoms/chat-container.js";
|
|
16
16
|
import { Checkbox as Io } from "./components/ui/atoms/checkbox.js";
|
|
17
17
|
import { CodeBlock as Po, CodeBlockCode as Bo, CodeBlockGroup as ko } from "./components/ui/atoms/code-block.js";
|
|
18
18
|
import { Collapsible as Lo, CollapsibleContent as vo, CollapsibleTrigger as Oo } from "./components/ui/atoms/collapsible.js";
|
|
19
|
-
import { Command as
|
|
19
|
+
import { Command as Eo, CommandDialog as Ro, CommandEmpty as wo, CommandGroup as Ho, CommandInput as _o, CommandItem as Vo, CommandList as Fo, CommandSeparator as Uo, CommandShortcut as No } from "./components/ui/atoms/command.js";
|
|
20
20
|
import { CopyButton as Wo } from "./components/ui/atoms/copy-button.js";
|
|
21
21
|
import { Dialog as Zo, DialogClose as qo, DialogContent as Jo, DialogDescription as Xo, DialogFooter as Yo, DialogHeader as jo, DialogOverlay as Qo, DialogPortal as $o, DialogTitle as or, DialogTrigger as rr } from "./components/ui/atoms/dialog.js";
|
|
22
22
|
import { DropdownMenu as tr, DropdownMenuCheckboxItem as ar, DropdownMenuContent as pr, DropdownMenuGroup as mr, DropdownMenuItem as ir, DropdownMenuLabel as lr, DropdownMenuPortal as nr, DropdownMenuRadioGroup as fr, DropdownMenuRadioItem as xr, DropdownMenuSeparator as dr, DropdownMenuShortcut as sr, DropdownMenuSub as ur, DropdownMenuSubContent as gr, DropdownMenuSubTrigger as Cr, DropdownMenuTrigger as Tr } from "./components/ui/atoms/dropdown-menu.js";
|
|
23
|
-
import { HoverCard as Sr, HoverCardContent as
|
|
23
|
+
import { HoverCard as Sr, HoverCardContent as Ar, HoverCardTrigger as hr } from "./components/ui/atoms/hover-card.js";
|
|
24
24
|
import { Adp as Dr } from "./components/ui/atoms/icons/adp.js";
|
|
25
25
|
import { Aha as Mr } from "./components/ui/atoms/icons/aha.js";
|
|
26
26
|
import { Airtable as Br } from "./components/ui/atoms/icons/airtable.js";
|
|
27
27
|
import { Amplitude as Gr } from "./components/ui/atoms/icons/amplitude.js";
|
|
28
28
|
import { Arcade as vr } from "./components/ui/atoms/icons/arcade.js";
|
|
29
29
|
import { ArcadeLogo as yr } from "./components/ui/atoms/icons/arcade-logo.js";
|
|
30
|
-
import { Asana as
|
|
30
|
+
import { Asana as Rr } from "./components/ui/atoms/icons/asana.js";
|
|
31
31
|
import { Ashby as Hr } from "./components/ui/atoms/icons/ashby.js";
|
|
32
|
-
import { Atlassian as
|
|
33
|
-
import { Attio as
|
|
34
|
-
import { Auth0 as
|
|
32
|
+
import { Atlassian as Vr } from "./components/ui/atoms/icons/atlassian.js";
|
|
33
|
+
import { Attio as Ur } from "./components/ui/atoms/icons/attio.js";
|
|
34
|
+
import { Auth0 as zr } from "./components/ui/atoms/icons/auth0.js";
|
|
35
35
|
import { Azure as Kr } from "./components/ui/atoms/icons/azure.js";
|
|
36
36
|
import { Bamboohr as qr } from "./components/ui/atoms/icons/bamboohr.js";
|
|
37
37
|
import { Basecamp as Xr } from "./components/ui/atoms/icons/basecamp.js";
|
|
@@ -47,18 +47,18 @@ import { Calendly as se } from "./components/ui/atoms/icons/calendly.js";
|
|
|
47
47
|
import { Claude as ge } from "./components/ui/atoms/icons/claude.js";
|
|
48
48
|
import { ClaudeCodeLogotype as Te } from "./components/ui/atoms/icons/claude-code-logotype.js";
|
|
49
49
|
import { Clickhouse as Se } from "./components/ui/atoms/icons/clickhouse.js";
|
|
50
|
-
import { Clickup as
|
|
50
|
+
import { Clickup as he } from "./components/ui/atoms/icons/clickup.js";
|
|
51
51
|
import { Cline as De } from "./components/ui/atoms/icons/cline.js";
|
|
52
52
|
import { Closeio as Me } from "./components/ui/atoms/icons/closeio.js";
|
|
53
53
|
import { Codesandbox as Be } from "./components/ui/atoms/icons/codesandbox.js";
|
|
54
54
|
import { Coinbase as Ge } from "./components/ui/atoms/icons/coinbase.js";
|
|
55
55
|
import { Confluence as ve } from "./components/ui/atoms/icons/confluence.js";
|
|
56
56
|
import { Cursor as ye } from "./components/ui/atoms/icons/cursor.js";
|
|
57
|
-
import { CursorInstallDark as
|
|
57
|
+
import { CursorInstallDark as Re } from "./components/ui/atoms/icons/cursor-install-dark.js";
|
|
58
58
|
import { CursorInstallLight as He } from "./components/ui/atoms/icons/cursor-install-light.js";
|
|
59
|
-
import { CursorLogotype as
|
|
60
|
-
import { Customerio as
|
|
61
|
-
import { Datadog as
|
|
59
|
+
import { CursorLogotype as Ve } from "./components/ui/atoms/icons/cursor-logotype.js";
|
|
60
|
+
import { Customerio as Ue } from "./components/ui/atoms/icons/customerio.js";
|
|
61
|
+
import { Datadog as ze } from "./components/ui/atoms/icons/datadog.js";
|
|
62
62
|
import { Daytona as Ke } from "./components/ui/atoms/icons/daytona.js";
|
|
63
63
|
import { DigitalOcean as qe } from "./components/ui/atoms/icons/digital-ocean.js";
|
|
64
64
|
import { Discord as Xe } from "./components/ui/atoms/icons/discord.js";
|
|
@@ -70,169 +70,174 @@ import { Exa as pt } from "./components/ui/atoms/icons/exa.js";
|
|
|
70
70
|
import { Factorial as it } from "./components/ui/atoms/icons/factorial.js";
|
|
71
71
|
import { Figma as nt } from "./components/ui/atoms/icons/figma.js";
|
|
72
72
|
import { Firecrawl as xt } from "./components/ui/atoms/icons/firecrawl.js";
|
|
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 {
|
|
214
|
-
import {
|
|
215
|
-
import {
|
|
216
|
-
import {
|
|
217
|
-
import {
|
|
218
|
-
import {
|
|
219
|
-
import {
|
|
220
|
-
import {
|
|
221
|
-
import {
|
|
222
|
-
import {
|
|
223
|
-
import {
|
|
224
|
-
import {
|
|
225
|
-
import {
|
|
226
|
-
import {
|
|
227
|
-
import {
|
|
228
|
-
import {
|
|
229
|
-
import {
|
|
230
|
-
import {
|
|
231
|
-
import {
|
|
232
|
-
import {
|
|
233
|
-
import {
|
|
234
|
-
import {
|
|
235
|
-
import {
|
|
73
|
+
import { Forkable as st } from "./components/ui/atoms/icons/forkable.js";
|
|
74
|
+
import { Freshservice as gt } from "./components/ui/atoms/icons/freshservice.js";
|
|
75
|
+
import { Gemini as Tt } from "./components/ui/atoms/icons/gemini.js";
|
|
76
|
+
import { Generic as St } from "./components/ui/atoms/icons/generic.js";
|
|
77
|
+
import { Github as ht } from "./components/ui/atoms/icons/github.js";
|
|
78
|
+
import { Gitlab as Dt } from "./components/ui/atoms/icons/gitlab.js";
|
|
79
|
+
import { Gmail as Mt } from "./components/ui/atoms/icons/gmail.js";
|
|
80
|
+
import { Google as Bt } from "./components/ui/atoms/icons/google.js";
|
|
81
|
+
import { GoogleCalendar as Gt } from "./components/ui/atoms/icons/google-calendar.js";
|
|
82
|
+
import { GoogleContacts as vt } from "./components/ui/atoms/icons/google-contacts.js";
|
|
83
|
+
import { GoogleDocs as yt } from "./components/ui/atoms/icons/google-docs.js";
|
|
84
|
+
import { GoogleDrive as Rt } from "./components/ui/atoms/icons/google-drive.js";
|
|
85
|
+
import { GoogleFinance as Ht } from "./components/ui/atoms/icons/google-finance.js";
|
|
86
|
+
import { GoogleFlight as Vt } from "./components/ui/atoms/icons/google-flight.js";
|
|
87
|
+
import { GoogleFlights as Ut } from "./components/ui/atoms/icons/google-flights.js";
|
|
88
|
+
import { GoogleHotels as zt } from "./components/ui/atoms/icons/google-hotels.js";
|
|
89
|
+
import { GoogleJobs as Kt } from "./components/ui/atoms/icons/google-jobs.js";
|
|
90
|
+
import { GoogleMaps as qt } from "./components/ui/atoms/icons/google-maps.js";
|
|
91
|
+
import { GoogleNews as Xt } from "./components/ui/atoms/icons/google-news.js";
|
|
92
|
+
import { GoogleSheets as jt } from "./components/ui/atoms/icons/google-sheets.js";
|
|
93
|
+
import { GoogleShopping as $t } from "./components/ui/atoms/icons/google-shopping.js";
|
|
94
|
+
import { GoogleSlides as ra } from "./components/ui/atoms/icons/google-slides.js";
|
|
95
|
+
import { Goose as ta } from "./components/ui/atoms/icons/goose.js";
|
|
96
|
+
import { Granola as pa } from "./components/ui/atoms/icons/granola.js";
|
|
97
|
+
import { Heroku as ia } from "./components/ui/atoms/icons/heroku.js";
|
|
98
|
+
import { Hootsuite as na } from "./components/ui/atoms/icons/hootsuite.js";
|
|
99
|
+
import { Hubspot as xa } from "./components/ui/atoms/icons/hubspot.js";
|
|
100
|
+
import { Imgflip as sa } from "./components/ui/atoms/icons/imgflip.js";
|
|
101
|
+
import { Intercom as ga } from "./components/ui/atoms/icons/intercom.js";
|
|
102
|
+
import { Jira as Ta } from "./components/ui/atoms/icons/jira.js";
|
|
103
|
+
import { Langchain as Sa } from "./components/ui/atoms/icons/langchain.js";
|
|
104
|
+
import { LangchainLogotype as ha } from "./components/ui/atoms/icons/langchain-logotype.js";
|
|
105
|
+
import { Linear as Da } from "./components/ui/atoms/icons/linear.js";
|
|
106
|
+
import { Linkedin as Ma } from "./components/ui/atoms/icons/linkedin.js";
|
|
107
|
+
import { Luma as Ba } from "./components/ui/atoms/icons/luma.js";
|
|
108
|
+
import { Mailchimp as Ga } from "./components/ui/atoms/icons/mailchimp.js";
|
|
109
|
+
import { Mastra as va } from "./components/ui/atoms/icons/mastra.js";
|
|
110
|
+
import { MastraLogotype as ya } from "./components/ui/atoms/icons/mastra-logotype.js";
|
|
111
|
+
import { MathToolkit as Ra } from "./components/ui/atoms/icons/math-toolkit.js";
|
|
112
|
+
import { Mcp as Ha } from "./components/ui/atoms/icons/mcp.js";
|
|
113
|
+
import { Microsoft as Va } from "./components/ui/atoms/icons/microsoft.js";
|
|
114
|
+
import { MicrosoftDynamics as Ua } from "./components/ui/atoms/icons/microsoft-dynamics.js";
|
|
115
|
+
import { MicrosoftExcel as za } from "./components/ui/atoms/icons/microsoft-excel.js";
|
|
116
|
+
import { MicrosoftOnedrive as Ka } from "./components/ui/atoms/icons/microsoft-onedrive.js";
|
|
117
|
+
import { MicrosoftOutlookCalendar as qa } from "./components/ui/atoms/icons/microsoft-outlook-calendar.js";
|
|
118
|
+
import { MicrosoftOutlookMail as Xa } from "./components/ui/atoms/icons/microsoft-outlook-mail.js";
|
|
119
|
+
import { MicrosoftPowerpoint as ja } from "./components/ui/atoms/icons/microsoft-powerpoint.js";
|
|
120
|
+
import { MicrosoftSharepoint as $a } from "./components/ui/atoms/icons/microsoft-sharepoint.js";
|
|
121
|
+
import { MicrosoftTeams as rp } from "./components/ui/atoms/icons/microsoft-teams.js";
|
|
122
|
+
import { MicrosoftWord as tp } from "./components/ui/atoms/icons/microsoft-word.js";
|
|
123
|
+
import { Miro as pp } from "./components/ui/atoms/icons/miro.js";
|
|
124
|
+
import { Monday as ip } from "./components/ui/atoms/icons/monday.js";
|
|
125
|
+
import { MongoDB as np } from "./components/ui/atoms/icons/mongodb.js";
|
|
126
|
+
import { Netsuite as xp } from "./components/ui/atoms/icons/netsuite.js";
|
|
127
|
+
import { Notion as sp } from "./components/ui/atoms/icons/notion.js";
|
|
128
|
+
import { Oauth as gp } from "./components/ui/atoms/icons/oauth.js";
|
|
129
|
+
import { Obsidian as Tp } from "./components/ui/atoms/icons/obsidian.js";
|
|
130
|
+
import { Okta as Sp } from "./components/ui/atoms/icons/okta.js";
|
|
131
|
+
import { Openai as hp } from "./components/ui/atoms/icons/openai.js";
|
|
132
|
+
import { Pagerduty as Dp } from "./components/ui/atoms/icons/pagerduty.js";
|
|
133
|
+
import { Pinecone as Mp } from "./components/ui/atoms/icons/pinecone.js";
|
|
134
|
+
import { Pinterest as Bp } from "./components/ui/atoms/icons/pinterest.js";
|
|
135
|
+
import { Pipedrive as Gp } from "./components/ui/atoms/icons/pipedrive.js";
|
|
136
|
+
import { Plaid as vp } from "./components/ui/atoms/icons/plaid.js";
|
|
137
|
+
import { Postgres as yp } from "./components/ui/atoms/icons/postgres.js";
|
|
138
|
+
import { Posthog as Rp } from "./components/ui/atoms/icons/posthog.js";
|
|
139
|
+
import { Pylon as Hp } from "./components/ui/atoms/icons/pylon.js";
|
|
140
|
+
import { Quickbooks as Vp } from "./components/ui/atoms/icons/quickbooks.js";
|
|
141
|
+
import { Railway as Up } from "./components/ui/atoms/icons/railway.js";
|
|
142
|
+
import { Reddit as zp } from "./components/ui/atoms/icons/reddit.js";
|
|
143
|
+
import { Resend as Kp } from "./components/ui/atoms/icons/resend.js";
|
|
144
|
+
import { Salesforce as qp } from "./components/ui/atoms/icons/salesforce.js";
|
|
145
|
+
import { Shopify as Xp } from "./components/ui/atoms/icons/shopify.js";
|
|
146
|
+
import { Singlestore as jp } from "./components/ui/atoms/icons/singlestore.js";
|
|
147
|
+
import { Slack as $p } from "./components/ui/atoms/icons/slack.js";
|
|
148
|
+
import { Snowflake as rm } from "./components/ui/atoms/icons/snowflake.js";
|
|
149
|
+
import { Splunk as tm } from "./components/ui/atoms/icons/splunk.js";
|
|
150
|
+
import { Spotify as pm } from "./components/ui/atoms/icons/spotify.js";
|
|
151
|
+
import { Square as im } from "./components/ui/atoms/icons/square.js";
|
|
152
|
+
import { Squarespace as nm } from "./components/ui/atoms/icons/squarespace.js";
|
|
153
|
+
import { Squareup as xm } from "./components/ui/atoms/icons/squareup.js";
|
|
154
|
+
import { Stripe as sm } from "./components/ui/atoms/icons/stripe.js";
|
|
155
|
+
import { Telegram as gm } from "./components/ui/atoms/icons/telegram.js";
|
|
156
|
+
import { Tesla as Tm } from "./components/ui/atoms/icons/tesla.js";
|
|
157
|
+
import { Ticktick as Sm } from "./components/ui/atoms/icons/ticktick.js";
|
|
158
|
+
import { Tiktok as hm } from "./components/ui/atoms/icons/tiktok.js";
|
|
159
|
+
import { Trello as Dm } from "./components/ui/atoms/icons/trello.js";
|
|
160
|
+
import { Twilio as Mm } from "./components/ui/atoms/icons/twilio.js";
|
|
161
|
+
import { Twitch as Bm } from "./components/ui/atoms/icons/twitch.js";
|
|
162
|
+
import { Vercel as Gm } from "./components/ui/atoms/icons/vercel.js";
|
|
163
|
+
import { VercelLogotype as vm } from "./components/ui/atoms/icons/vercel-logotype.js";
|
|
164
|
+
import { Vscode as ym } from "./components/ui/atoms/icons/vscode.js";
|
|
165
|
+
import { Walmart as Rm } from "./components/ui/atoms/icons/walmart.js";
|
|
166
|
+
import { Weaviate as Hm } from "./components/ui/atoms/icons/weaviate.js";
|
|
167
|
+
import { Windsurf as Vm } from "./components/ui/atoms/icons/windsurf.js";
|
|
168
|
+
import { Workday as Um } from "./components/ui/atoms/icons/workday.js";
|
|
169
|
+
import { Wrike as zm } from "./components/ui/atoms/icons/wrike.js";
|
|
170
|
+
import { X as Km } from "./components/ui/atoms/icons/x.js";
|
|
171
|
+
import { Xero as qm } from "./components/ui/atoms/icons/xero.js";
|
|
172
|
+
import { Youtube as Xm } from "./components/ui/atoms/icons/youtube.js";
|
|
173
|
+
import { Yugabytedb as jm } from "./components/ui/atoms/icons/yugabytedb.js";
|
|
174
|
+
import { Zendesk as $m } from "./components/ui/atoms/icons/zendesk.js";
|
|
175
|
+
import { Zoho as ri } from "./components/ui/atoms/icons/zoho.js";
|
|
176
|
+
import { ZohoBooks as ti } from "./components/ui/atoms/icons/zoho-books.js";
|
|
177
|
+
import { ZohoCreator as pi } from "./components/ui/atoms/icons/zoho-creator.js";
|
|
178
|
+
import { Zoom as ii } from "./components/ui/atoms/icons/zoom.js";
|
|
179
|
+
import { Input as ni } from "./components/ui/atoms/input.js";
|
|
180
|
+
import { InputGroup as xi, InputGroupAddon as di, InputGroupButton as si, InputGroupInput as ui, InputGroupText as gi, InputGroupTextarea as Ci } from "./components/ui/atoms/input-group.js";
|
|
181
|
+
import { JsonHighlight as ci, jsonHighlightVariants as Si } from "./components/ui/atoms/json-highlight.js";
|
|
182
|
+
import { Label as hi } from "./components/ui/atoms/label.js";
|
|
183
|
+
import { Loader as Di } from "./components/ui/atoms/loader.js";
|
|
184
|
+
import { M as Mi } from "./markdown-Cv6uZPhi.js";
|
|
185
|
+
import { MobileTooltip as Bi, MobileTooltipContent as ki, MobileTooltipProvider as Gi, MobileTooltipTrigger as Li } from "./components/ui/atoms/mobile-tooltip.js";
|
|
186
|
+
import { Popover as Oi, PopoverContent as yi, PopoverDescription as Ei, PopoverHeader as Ri, PopoverTitle as wi, PopoverTrigger as Hi } from "./components/ui/atoms/popover.js";
|
|
187
|
+
import { ProBadge as Vi } from "./components/ui/atoms/pro-badge.js";
|
|
188
|
+
import { Progress as Ui, ProgressIndicator as Ni, ProgressLabel as zi, ProgressTrack as Wi, ProgressValue as Ki } from "./components/ui/atoms/progress.js";
|
|
189
|
+
import { RadioGroup as qi, RadioGroupItem as Ji } from "./components/ui/atoms/radio-group.js";
|
|
190
|
+
import { ResizableHandle as Yi, ResizablePanel as ji, ResizablePanelGroup as Qi } from "./components/ui/atoms/resizable.js";
|
|
191
|
+
import { ScrollArea as ol, ScrollBar as rl } from "./components/ui/atoms/scroll-area.js";
|
|
192
|
+
import { ScrollButton as tl } from "./components/ui/atoms/scroll-button.js";
|
|
193
|
+
import { Select as pl, SelectContent as ml, SelectGroup as il, SelectItem as ll, SelectLabel as nl, SelectScrollDownButton as fl, SelectScrollUpButton as xl, SelectSeparator as dl, SelectTrigger as sl, SelectValue as ul } from "./components/ui/atoms/select.js";
|
|
194
|
+
import { Separator as Cl } from "./components/ui/atoms/separator.js";
|
|
195
|
+
import { Sheet as cl, SheetClose as Sl, SheetContent as Al, SheetDescription as hl, SheetFooter as bl, SheetHeader as Dl, SheetTitle as Il, SheetTrigger as Ml } from "./components/ui/atoms/sheet.js";
|
|
196
|
+
import { Sidebar as Bl, SidebarContent as kl, SidebarFooter as Gl, SidebarGroup as Ll, SidebarGroupAction as vl, SidebarGroupContent as Ol, SidebarGroupLabel as yl, SidebarHeader as El, SidebarInput as Rl, SidebarInset as wl, SidebarMenu as Hl, SidebarMenuAction as _l, SidebarMenuBadge as Vl, SidebarMenuButton as Fl, SidebarMenuItem as Ul, SidebarMenuSkeleton as Nl, SidebarMenuSub as zl, SidebarMenuSubButton as Wl, SidebarMenuSubItem as Kl, SidebarProvider as Zl, SidebarRail as ql, SidebarSeparator as Jl, SidebarTrigger as Xl, useSidebar as Yl } from "./components/ui/atoms/sidebar.js";
|
|
197
|
+
import { Skeleton as Ql } from "./components/ui/atoms/skeleton.js";
|
|
198
|
+
import { Slider as on } from "./components/ui/atoms/slider.js";
|
|
199
|
+
import { DS_SPARKLE_DURATION_MS as en, SparkleBurst as tn } from "./components/ui/atoms/sparkle-burst.js";
|
|
200
|
+
import { StepIndicator as pn, stepIndicatorIconVariants as mn, stepIndicatorLabelVariants as ln } from "./components/ui/atoms/step-indicator.js";
|
|
201
|
+
import { Switch as fn } from "./components/ui/atoms/switch.js";
|
|
202
|
+
import { Table as dn, TableBody as sn, TableCaption as un, TableCell as gn, TableFooter as Cn, TableHead as Tn, TableHeader as cn, TableRow as Sn } from "./components/ui/atoms/table.js";
|
|
203
|
+
import { Tabs as hn, TabsContent as bn, TabsList as Dn, TabsTrigger as In, tabsListVariants as Mn } from "./components/ui/atoms/tabs.js";
|
|
204
|
+
import { Textarea as Bn } from "./components/ui/atoms/textarea.js";
|
|
205
|
+
import { Toggle as Gn, toggleVariants as Ln } from "./components/ui/atoms/toggle.js";
|
|
206
|
+
import { Tooltip as On, TooltipContent as yn, TooltipProvider as En, TooltipTrigger as Rn } from "./components/ui/atoms/tooltip.js";
|
|
207
|
+
import { ViewToolsControl as Hn } from "./components/ui/atoms/view-tools-control.js";
|
|
208
|
+
import { VirtualizedGrid as Vn } from "./components/ui/atoms/virtualized-grid.js";
|
|
209
|
+
import { ChatHistoryItem as Un } from "./components/ui/molecules/chat-history-item.js";
|
|
210
|
+
import { ChatAssistantMessage as zn, ChatMessageList as Wn, ChatMessageListSkeleton as Kn, ChatStreamingIndicator as Zn, ChatUserMessage as qn } from "./components/ui/molecules/chat-message-list.js";
|
|
211
|
+
import { ClientSecretInput as Xn } from "./components/ui/molecules/client-secret-field.js";
|
|
212
|
+
import { CommandBar as jn } from "./components/ui/molecules/command-bar.js";
|
|
213
|
+
import { ConfirmPopover as $n } from "./components/ui/molecules/confirm-popover.js";
|
|
214
|
+
import { DateTimePicker as rf } from "./components/ui/molecules/date-time-picker.js";
|
|
215
|
+
import { EmptyState as tf } from "./components/ui/molecules/empty-state.js";
|
|
216
|
+
import { ErrorState as pf } from "./components/ui/molecules/error-state.js";
|
|
217
|
+
import { FlowDiagram as lf } from "./components/ui/molecules/flow-diagram.js";
|
|
218
|
+
import { Message as ff, MessageAction as xf, MessageActions as df, MessageAvatar as sf, MessageContent as uf } from "./components/ui/molecules/message.js";
|
|
219
|
+
import { PromptInput as Cf, PromptInputAction as Tf, PromptInputActions as cf, PromptInputTextarea as Sf } from "./components/ui/molecules/prompt-input.js";
|
|
220
|
+
import { R as hf, T as bf } from "./toolkit-card-ryIR325K.js";
|
|
221
|
+
import { StepsProgress as If } from "./components/ui/molecules/steps-progress.js";
|
|
222
|
+
import { SuggestionCard as Pf, SuggestionCardSkeleton as Bf } from "./components/ui/molecules/suggestion-card.js";
|
|
223
|
+
import { TagsInput as Gf, TagsInputValue as Lf } from "./components/ui/molecules/tags-input.js";
|
|
224
|
+
import { ToolAuthorization as Of, ToolAuthorizationArgs as yf, ToolAuthorizationContent as Ef, ToolAuthorizationHeader as Rf, ToolAuthorizationMessage as wf } from "./components/ui/molecules/tool-authorization.js";
|
|
225
|
+
import { ToolCallAccordion as _f, ToolCallAccordionContent as Vf, ToolCallAccordionItem as Ff, ToolCallAccordionTrigger as Uf } from "./components/ui/molecules/tool-call-accordion.js";
|
|
226
|
+
import { ToolCard as zf } from "./components/ui/molecules/tool-card.js";
|
|
227
|
+
import { UserNav as Kf } from "./components/ui/molecules/user-nav.js";
|
|
228
|
+
import { ChatPageSkeleton as qf } from "./components/ui/pages/chat-page-skeleton.js";
|
|
229
|
+
import { LoginPage as Xf } from "./components/ui/pages/login-page.js";
|
|
230
|
+
import { AuthTemplate as jf, AuthTemplateCard as Qf, AuthTemplateContent as $f, AuthTemplateDefaultBackground as ox, AuthTemplateDescription as rx, AuthTemplateFooter as ex, AuthTemplateGridOverlay as tx, AuthTemplateHeader as ax, AuthTemplateLegal as px, AuthTemplateLegalLink as mx, AuthTemplateLogo as ix, AuthTemplatePrompt as lx, AuthTemplatePromptLink as nx, AuthTemplateTitle as fx, AuthTemplateVideoBackground as xx } from "./components/ui/templates/auth-template.js";
|
|
231
|
+
import { ChatTemplate as sx, ChatTemplateBody as ux, ChatTemplateFooter as gx, ChatTemplateHeader as Cx, ChatTemplateHeaderGroup as Tx, ChatTemplateOverview as cx, ChatTemplateOverviewSubtitle as Sx, ChatTemplateOverviewTitle as Ax, ChatTemplateSuggestions as hx } from "./components/ui/templates/chat-template.js";
|
|
232
|
+
import { ChatBodySkeleton as Dx, ChatContentSkeleton as Ix, ChatFooterSkeleton as Mx, ChatHeaderSkeleton as Px, ChatSidebarSkeleton as Bx } from "./components/ui/templates/chat-template-skeletons.js";
|
|
233
|
+
import { ErrorTemplate as Gx, ErrorTemplateActions as Lx, ErrorTemplateContent as vx, ErrorTemplateDescription as Ox, ErrorTemplateIcon as yx, ErrorTemplateLogo as Ex, ErrorTemplateTitle as Rx, ErrorTemplateUrl as wx } from "./components/ui/templates/error-template.js";
|
|
234
|
+
import { DEFAULT_MCP_CLIENT_IDS as _x, DEFAULT_MCP_SERVER_IDS as Vx, GatewayDiagram as Fx } from "./components/ui/templates/gateway-diagram.js";
|
|
235
|
+
import { PUBLIC_ICON_URL as Nx, PUBLIC_VIDEO_URL as zx } from "./metadata/constants.js";
|
|
236
|
+
import { MCP_CLIENT_METADATA as Kx } from "./metadata/mcp-clients.js";
|
|
237
|
+
import { MCP_OAUTH2_PROVIDER as qx, OAUTH2_PROVIDER as Jx, OAUTH_PROVIDERS as Xx, OAUTH_PROVIDER_CATALOGUE as Yx, OAuthId as jx, OAuthProviderId as Qx, OTHER_OAUTH_PROVIDERS as $x, PREBUILT_OAUTH_PROVIDERS as od } from "./metadata/oauth-providers.js";
|
|
238
|
+
import { TOOLKIT_ICON_MAP as ed, getToolIconByToolkitName as td, getToolkitIcon as ad, getToolkitIconByName as pd } from "./metadata/toolkit-icons.js";
|
|
239
|
+
import { CATEGORIES as id, TOOLKITS as ld, TOOLKIT_CATALOGUE as nd } from "./metadata/toolkits.js";
|
|
240
|
+
import { findPrebuiltProviderById as xd, findPrebuiltProviderByProviderId as dd, findToolkitByName as sd, isKnownToolkit as ud, isPrebuiltProvider as gd } from "./metadata/utils.js";
|
|
236
241
|
export {
|
|
237
242
|
e as Accordion,
|
|
238
243
|
t as AccordionContent,
|
|
@@ -252,8 +257,8 @@ export {
|
|
|
252
257
|
T as AlertDialogFooter,
|
|
253
258
|
c as AlertDialogHeader,
|
|
254
259
|
S as AlertDialogMedia,
|
|
255
|
-
|
|
256
|
-
|
|
260
|
+
A as AlertDialogOverlay,
|
|
261
|
+
h as AlertDialogPortal,
|
|
257
262
|
b as AlertDialogTitle,
|
|
258
263
|
D as AlertDialogTrigger,
|
|
259
264
|
f as AlertTitle,
|
|
@@ -261,33 +266,33 @@ export {
|
|
|
261
266
|
vr as Arcade,
|
|
262
267
|
M as ArcadeGradient,
|
|
263
268
|
yr as ArcadeLogo,
|
|
264
|
-
|
|
269
|
+
Rr as Asana,
|
|
265
270
|
Hr as Ashby,
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
271
|
+
Vr as Atlassian,
|
|
272
|
+
Ur as Attio,
|
|
273
|
+
zr as Auth0,
|
|
274
|
+
jf as AuthTemplate,
|
|
275
|
+
Qf as AuthTemplateCard,
|
|
276
|
+
$f as AuthTemplateContent,
|
|
277
|
+
ox as AuthTemplateDefaultBackground,
|
|
278
|
+
rx as AuthTemplateDescription,
|
|
279
|
+
ex as AuthTemplateFooter,
|
|
280
|
+
tx as AuthTemplateGridOverlay,
|
|
281
|
+
ax as AuthTemplateHeader,
|
|
282
|
+
px as AuthTemplateLegal,
|
|
283
|
+
mx as AuthTemplateLegalLink,
|
|
284
|
+
ix as AuthTemplateLogo,
|
|
285
|
+
lx as AuthTemplatePrompt,
|
|
286
|
+
nx as AuthTemplatePromptLink,
|
|
287
|
+
fx as AuthTemplateTitle,
|
|
288
|
+
xx as AuthTemplateVideoBackground,
|
|
284
289
|
B as Avatar,
|
|
285
290
|
k as AvatarBadge,
|
|
286
291
|
G as AvatarFallback,
|
|
287
292
|
L as AvatarGroup,
|
|
288
293
|
v as AvatarGroupCount,
|
|
289
294
|
O as AvatarImage,
|
|
290
|
-
|
|
295
|
+
E as AvatarNotificationBadge,
|
|
291
296
|
Kr as Azure,
|
|
292
297
|
H as Badge,
|
|
293
298
|
qr as Bamboohr,
|
|
@@ -296,10 +301,10 @@ export {
|
|
|
296
301
|
$r as Bitbucket,
|
|
297
302
|
re as Bluesky,
|
|
298
303
|
te as Box,
|
|
299
|
-
|
|
304
|
+
F as BrandChip,
|
|
300
305
|
pe as Braze,
|
|
301
|
-
|
|
302
|
-
|
|
306
|
+
N as Breadcrumb,
|
|
307
|
+
z as BreadcrumbEllipsis,
|
|
303
308
|
W as BreadcrumbItem,
|
|
304
309
|
K as BreadcrumbLink,
|
|
305
310
|
Z as BreadcrumbList,
|
|
@@ -310,7 +315,7 @@ export {
|
|
|
310
315
|
xe as Buffer,
|
|
311
316
|
Y as Button,
|
|
312
317
|
$ as ByocBadge,
|
|
313
|
-
|
|
318
|
+
id as CATEGORIES,
|
|
314
319
|
ro as Calendar,
|
|
315
320
|
eo as CalendarDayButton,
|
|
316
321
|
se as Calendly,
|
|
@@ -327,36 +332,36 @@ export {
|
|
|
327
332
|
Co as ChartStyle,
|
|
328
333
|
To as ChartTooltip,
|
|
329
334
|
co as ChartTooltipContent,
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
335
|
+
zn as ChatAssistantMessage,
|
|
336
|
+
Dx as ChatBodySkeleton,
|
|
337
|
+
Ao as ChatContainerContent,
|
|
338
|
+
ho as ChatContainerRoot,
|
|
334
339
|
bo as ChatContainerScrollAnchor,
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
340
|
+
Ix as ChatContentSkeleton,
|
|
341
|
+
Mx as ChatFooterSkeleton,
|
|
342
|
+
Px as ChatHeaderSkeleton,
|
|
343
|
+
Un as ChatHistoryItem,
|
|
344
|
+
Wn as ChatMessageList,
|
|
345
|
+
Kn as ChatMessageListSkeleton,
|
|
346
|
+
qf as ChatPageSkeleton,
|
|
347
|
+
Bx as ChatSidebarSkeleton,
|
|
348
|
+
Zn as ChatStreamingIndicator,
|
|
349
|
+
sx as ChatTemplate,
|
|
350
|
+
ux as ChatTemplateBody,
|
|
351
|
+
gx as ChatTemplateFooter,
|
|
352
|
+
Cx as ChatTemplateHeader,
|
|
353
|
+
Tx as ChatTemplateHeaderGroup,
|
|
354
|
+
cx as ChatTemplateOverview,
|
|
355
|
+
Sx as ChatTemplateOverviewSubtitle,
|
|
356
|
+
Ax as ChatTemplateOverviewTitle,
|
|
357
|
+
hx as ChatTemplateSuggestions,
|
|
358
|
+
qn as ChatUserMessage,
|
|
354
359
|
Io as Checkbox,
|
|
355
360
|
ge as Claude,
|
|
356
361
|
Te as ClaudeCodeLogotype,
|
|
357
362
|
Se as Clickhouse,
|
|
358
|
-
|
|
359
|
-
|
|
363
|
+
he as Clickup,
|
|
364
|
+
Xn as ClientSecretInput,
|
|
360
365
|
De as Cline,
|
|
361
366
|
Me as Closeio,
|
|
362
367
|
Po as CodeBlock,
|
|
@@ -367,27 +372,29 @@ export {
|
|
|
367
372
|
Lo as Collapsible,
|
|
368
373
|
vo as CollapsibleContent,
|
|
369
374
|
Oo as CollapsibleTrigger,
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
375
|
+
Eo as Command,
|
|
376
|
+
jn as CommandBar,
|
|
377
|
+
Ro as CommandDialog,
|
|
378
|
+
wo as CommandEmpty,
|
|
374
379
|
Ho as CommandGroup,
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
380
|
+
_o as CommandInput,
|
|
381
|
+
Vo as CommandItem,
|
|
382
|
+
Fo as CommandList,
|
|
383
|
+
Uo as CommandSeparator,
|
|
384
|
+
No as CommandShortcut,
|
|
385
|
+
$n as ConfirmPopover,
|
|
381
386
|
ve as Confluence,
|
|
382
387
|
Wo as CopyButton,
|
|
383
388
|
ye as Cursor,
|
|
384
|
-
|
|
389
|
+
Re as CursorInstallDark,
|
|
385
390
|
He as CursorInstallLight,
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
+
Ve as CursorLogotype,
|
|
392
|
+
Ue as Customerio,
|
|
393
|
+
_x as DEFAULT_MCP_CLIENT_IDS,
|
|
394
|
+
Vx as DEFAULT_MCP_SERVER_IDS,
|
|
395
|
+
en as DS_SPARKLE_DURATION_MS,
|
|
396
|
+
ze as Datadog,
|
|
397
|
+
rf as DateTimePicker,
|
|
391
398
|
Ke as Daytona,
|
|
392
399
|
Zo as Dialog,
|
|
393
400
|
qo as DialogClose,
|
|
@@ -419,286 +426,291 @@ export {
|
|
|
419
426
|
Tr as DropdownMenuTrigger,
|
|
420
427
|
$e as E2b,
|
|
421
428
|
rt as Ebay,
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
429
|
+
tf as EmptyState,
|
|
430
|
+
pf as ErrorState,
|
|
431
|
+
Gx as ErrorTemplate,
|
|
432
|
+
Lx as ErrorTemplateActions,
|
|
433
|
+
vx as ErrorTemplateContent,
|
|
434
|
+
Ox as ErrorTemplateDescription,
|
|
435
|
+
yx as ErrorTemplateIcon,
|
|
436
|
+
Ex as ErrorTemplateLogo,
|
|
437
|
+
Rx as ErrorTemplateTitle,
|
|
438
|
+
wx as ErrorTemplateUrl,
|
|
432
439
|
tt as Evernote,
|
|
433
440
|
pt as Exa,
|
|
434
441
|
it as Factorial,
|
|
435
442
|
nt as Figma,
|
|
436
443
|
xt as Firecrawl,
|
|
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
|
-
|
|
444
|
+
lf as FlowDiagram,
|
|
445
|
+
st as Forkable,
|
|
446
|
+
gt as Freshservice,
|
|
447
|
+
Fx as GatewayDiagram,
|
|
448
|
+
Tt as Gemini,
|
|
449
|
+
St as Generic,
|
|
450
|
+
ht as Github,
|
|
451
|
+
Dt as Gitlab,
|
|
452
|
+
Mt as Gmail,
|
|
453
|
+
Bt as Google,
|
|
454
|
+
Gt as GoogleCalendar,
|
|
455
|
+
vt as GoogleContacts,
|
|
456
|
+
yt as GoogleDocs,
|
|
457
|
+
Rt as GoogleDrive,
|
|
458
|
+
Ht as GoogleFinance,
|
|
459
|
+
Vt as GoogleFlight,
|
|
460
|
+
Ut as GoogleFlights,
|
|
461
|
+
zt as GoogleHotels,
|
|
462
|
+
Kt as GoogleJobs,
|
|
463
|
+
qt as GoogleMaps,
|
|
464
|
+
Xt as GoogleNews,
|
|
465
|
+
jt as GoogleSheets,
|
|
466
|
+
$t as GoogleShopping,
|
|
467
|
+
ra as GoogleSlides,
|
|
468
|
+
ta as Goose,
|
|
469
|
+
pa as Granola,
|
|
470
|
+
ia as Heroku,
|
|
471
|
+
na as Hootsuite,
|
|
462
472
|
Sr as HoverCard,
|
|
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
|
-
va as
|
|
490
|
-
ya as
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
Ka as
|
|
502
|
-
qa as
|
|
503
|
-
Xa as
|
|
504
|
-
ja as
|
|
505
|
-
$a as
|
|
506
|
-
rp as
|
|
507
|
-
tp as
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
ip as
|
|
514
|
-
np as
|
|
515
|
-
xp as
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
gp as
|
|
524
|
-
Tp as
|
|
525
|
-
Sp as
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
Dp as
|
|
531
|
-
Mp as
|
|
532
|
-
Bp as
|
|
533
|
-
Gp as
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
yp as
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
Hp as
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
rl as
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
ul as
|
|
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
|
-
|
|
616
|
-
|
|
617
|
-
tm as
|
|
618
|
-
pm as
|
|
619
|
-
im as
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
Dm as
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
ym as
|
|
675
|
-
|
|
676
|
-
Hm as
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
Km as
|
|
681
|
-
qm as
|
|
682
|
-
Xm as
|
|
683
|
-
jm as
|
|
684
|
-
$m as
|
|
685
|
-
ri as
|
|
686
|
-
ti as
|
|
687
|
-
|
|
688
|
-
|
|
473
|
+
Ar as HoverCardContent,
|
|
474
|
+
hr as HoverCardTrigger,
|
|
475
|
+
xa as Hubspot,
|
|
476
|
+
sa as Imgflip,
|
|
477
|
+
ni as Input,
|
|
478
|
+
xi as InputGroup,
|
|
479
|
+
di as InputGroupAddon,
|
|
480
|
+
si as InputGroupButton,
|
|
481
|
+
ui as InputGroupInput,
|
|
482
|
+
gi as InputGroupText,
|
|
483
|
+
Ci as InputGroupTextarea,
|
|
484
|
+
ga as Intercom,
|
|
485
|
+
Ta as Jira,
|
|
486
|
+
ci as JsonHighlight,
|
|
487
|
+
hi as Label,
|
|
488
|
+
Sa as Langchain,
|
|
489
|
+
ha as LangchainLogotype,
|
|
490
|
+
Da as Linear,
|
|
491
|
+
Ma as Linkedin,
|
|
492
|
+
Di as Loader,
|
|
493
|
+
Xf as LoginPage,
|
|
494
|
+
Ba as Luma,
|
|
495
|
+
Kx as MCP_CLIENT_METADATA,
|
|
496
|
+
qx as MCP_OAUTH2_PROVIDER,
|
|
497
|
+
Ga as Mailchimp,
|
|
498
|
+
Mi as Markdown,
|
|
499
|
+
va as Mastra,
|
|
500
|
+
ya as MastraLogotype,
|
|
501
|
+
Ra as MathToolkit,
|
|
502
|
+
Ha as Mcp,
|
|
503
|
+
ff as Message,
|
|
504
|
+
xf as MessageAction,
|
|
505
|
+
df as MessageActions,
|
|
506
|
+
sf as MessageAvatar,
|
|
507
|
+
uf as MessageContent,
|
|
508
|
+
Va as Microsoft,
|
|
509
|
+
Ua as MicrosoftDynamics,
|
|
510
|
+
za as MicrosoftExcel,
|
|
511
|
+
Ka as MicrosoftOnedrive,
|
|
512
|
+
qa as MicrosoftOutlookCalendar,
|
|
513
|
+
Xa as MicrosoftOutlookMail,
|
|
514
|
+
ja as MicrosoftPowerpoint,
|
|
515
|
+
$a as MicrosoftSharepoint,
|
|
516
|
+
rp as MicrosoftTeams,
|
|
517
|
+
tp as MicrosoftWord,
|
|
518
|
+
pp as Miro,
|
|
519
|
+
Bi as MobileTooltip,
|
|
520
|
+
ki as MobileTooltipContent,
|
|
521
|
+
Gi as MobileTooltipProvider,
|
|
522
|
+
Li as MobileTooltipTrigger,
|
|
523
|
+
ip as Monday,
|
|
524
|
+
np as MongoDB,
|
|
525
|
+
xp as Netsuite,
|
|
526
|
+
sp as Notion,
|
|
527
|
+
Jx as OAUTH2_PROVIDER,
|
|
528
|
+
Xx as OAUTH_PROVIDERS,
|
|
529
|
+
Yx as OAUTH_PROVIDER_CATALOGUE,
|
|
530
|
+
jx as OAuthId,
|
|
531
|
+
Qx as OAuthProviderId,
|
|
532
|
+
$x as OTHER_OAUTH_PROVIDERS,
|
|
533
|
+
gp as Oauth,
|
|
534
|
+
Tp as Obsidian,
|
|
535
|
+
Sp as Okta,
|
|
536
|
+
hp as Openai,
|
|
537
|
+
od as PREBUILT_OAUTH_PROVIDERS,
|
|
538
|
+
Nx as PUBLIC_ICON_URL,
|
|
539
|
+
zx as PUBLIC_VIDEO_URL,
|
|
540
|
+
Dp as Pagerduty,
|
|
541
|
+
Mp as Pinecone,
|
|
542
|
+
Bp as Pinterest,
|
|
543
|
+
Gp as Pipedrive,
|
|
544
|
+
vp as Plaid,
|
|
545
|
+
Oi as Popover,
|
|
546
|
+
yi as PopoverContent,
|
|
547
|
+
Ei as PopoverDescription,
|
|
548
|
+
Ri as PopoverHeader,
|
|
549
|
+
wi as PopoverTitle,
|
|
550
|
+
Hi as PopoverTrigger,
|
|
551
|
+
yp as Postgres,
|
|
552
|
+
Rp as Posthog,
|
|
553
|
+
Vi as ProBadge,
|
|
554
|
+
Ui as Progress,
|
|
555
|
+
Ni as ProgressIndicator,
|
|
556
|
+
zi as ProgressLabel,
|
|
557
|
+
Wi as ProgressTrack,
|
|
558
|
+
Ki as ProgressValue,
|
|
559
|
+
Cf as PromptInput,
|
|
560
|
+
Tf as PromptInputAction,
|
|
561
|
+
cf as PromptInputActions,
|
|
562
|
+
Sf as PromptInputTextarea,
|
|
563
|
+
Hp as Pylon,
|
|
564
|
+
Vp as Quickbooks,
|
|
565
|
+
qi as RadioGroup,
|
|
566
|
+
Ji as RadioGroupItem,
|
|
567
|
+
Up as Railway,
|
|
568
|
+
zp as Reddit,
|
|
569
|
+
hf as RequirementBadges,
|
|
570
|
+
Kp as Resend,
|
|
571
|
+
Yi as ResizableHandle,
|
|
572
|
+
ji as ResizablePanel,
|
|
573
|
+
Qi as ResizablePanelGroup,
|
|
574
|
+
qp as Salesforce,
|
|
575
|
+
ol as ScrollArea,
|
|
576
|
+
rl as ScrollBar,
|
|
577
|
+
tl as ScrollButton,
|
|
578
|
+
pl as Select,
|
|
579
|
+
ml as SelectContent,
|
|
580
|
+
il as SelectGroup,
|
|
581
|
+
ll as SelectItem,
|
|
582
|
+
nl as SelectLabel,
|
|
583
|
+
fl as SelectScrollDownButton,
|
|
584
|
+
xl as SelectScrollUpButton,
|
|
585
|
+
dl as SelectSeparator,
|
|
586
|
+
sl as SelectTrigger,
|
|
587
|
+
ul as SelectValue,
|
|
588
|
+
Cl as Separator,
|
|
589
|
+
cl as Sheet,
|
|
590
|
+
Sl as SheetClose,
|
|
591
|
+
Al as SheetContent,
|
|
592
|
+
hl as SheetDescription,
|
|
593
|
+
bl as SheetFooter,
|
|
594
|
+
Dl as SheetHeader,
|
|
595
|
+
Il as SheetTitle,
|
|
596
|
+
Ml as SheetTrigger,
|
|
597
|
+
Xp as Shopify,
|
|
598
|
+
Bl as Sidebar,
|
|
599
|
+
kl as SidebarContent,
|
|
600
|
+
Gl as SidebarFooter,
|
|
601
|
+
Ll as SidebarGroup,
|
|
602
|
+
vl as SidebarGroupAction,
|
|
603
|
+
Ol as SidebarGroupContent,
|
|
604
|
+
yl as SidebarGroupLabel,
|
|
605
|
+
El as SidebarHeader,
|
|
606
|
+
Rl as SidebarInput,
|
|
607
|
+
wl as SidebarInset,
|
|
608
|
+
Hl as SidebarMenu,
|
|
609
|
+
_l as SidebarMenuAction,
|
|
610
|
+
Vl as SidebarMenuBadge,
|
|
611
|
+
Fl as SidebarMenuButton,
|
|
612
|
+
Ul as SidebarMenuItem,
|
|
613
|
+
Nl as SidebarMenuSkeleton,
|
|
614
|
+
zl as SidebarMenuSub,
|
|
615
|
+
Wl as SidebarMenuSubButton,
|
|
616
|
+
Kl as SidebarMenuSubItem,
|
|
617
|
+
Zl as SidebarProvider,
|
|
618
|
+
ql as SidebarRail,
|
|
619
|
+
Jl as SidebarSeparator,
|
|
620
|
+
Xl as SidebarTrigger,
|
|
621
|
+
jp as Singlestore,
|
|
622
|
+
Ql as Skeleton,
|
|
623
|
+
$p as Slack,
|
|
624
|
+
on as Slider,
|
|
625
|
+
rm as Snowflake,
|
|
626
|
+
tn as SparkleBurst,
|
|
627
|
+
tm as Splunk,
|
|
628
|
+
pm as Spotify,
|
|
629
|
+
im as Square,
|
|
630
|
+
nm as Squarespace,
|
|
631
|
+
xm as Squareup,
|
|
632
|
+
pn as StepIndicator,
|
|
633
|
+
If as StepsProgress,
|
|
634
|
+
sm as Stripe,
|
|
635
|
+
Pf as SuggestionCard,
|
|
636
|
+
Bf as SuggestionCardSkeleton,
|
|
637
|
+
fn as Switch,
|
|
638
|
+
ld as TOOLKITS,
|
|
639
|
+
nd as TOOLKIT_CATALOGUE,
|
|
640
|
+
ed as TOOLKIT_ICON_MAP,
|
|
641
|
+
dn as Table,
|
|
642
|
+
sn as TableBody,
|
|
643
|
+
un as TableCaption,
|
|
644
|
+
gn as TableCell,
|
|
645
|
+
Cn as TableFooter,
|
|
646
|
+
Tn as TableHead,
|
|
647
|
+
cn as TableHeader,
|
|
648
|
+
Sn as TableRow,
|
|
649
|
+
hn as Tabs,
|
|
650
|
+
bn as TabsContent,
|
|
651
|
+
Dn as TabsList,
|
|
652
|
+
In as TabsTrigger,
|
|
653
|
+
Gf as TagsInput,
|
|
654
|
+
Lf as TagsInputValue,
|
|
655
|
+
gm as Telegram,
|
|
656
|
+
Tm as Tesla,
|
|
657
|
+
Bn as Textarea,
|
|
658
|
+
Sm as Ticktick,
|
|
659
|
+
hm as Tiktok,
|
|
660
|
+
Gn as Toggle,
|
|
661
|
+
Of as ToolAuthorization,
|
|
662
|
+
yf as ToolAuthorizationArgs,
|
|
663
|
+
Ef as ToolAuthorizationContent,
|
|
664
|
+
Rf as ToolAuthorizationHeader,
|
|
665
|
+
wf as ToolAuthorizationMessage,
|
|
666
|
+
_f as ToolCallAccordion,
|
|
667
|
+
Vf as ToolCallAccordionContent,
|
|
668
|
+
Ff as ToolCallAccordionItem,
|
|
669
|
+
Uf as ToolCallAccordionTrigger,
|
|
670
|
+
zf as ToolCard,
|
|
671
|
+
bf as ToolkitCard,
|
|
672
|
+
On as Tooltip,
|
|
673
|
+
yn as TooltipContent,
|
|
674
|
+
En as TooltipProvider,
|
|
675
|
+
Rn as TooltipTrigger,
|
|
676
|
+
Dm as Trello,
|
|
677
|
+
Mm as Twilio,
|
|
678
|
+
Bm as Twitch,
|
|
679
|
+
Kf as UserNav,
|
|
680
|
+
Gm as Vercel,
|
|
681
|
+
vm as VercelLogotype,
|
|
682
|
+
Hn as ViewToolsControl,
|
|
683
|
+
Vn as VirtualizedGrid,
|
|
684
|
+
ym as Vscode,
|
|
685
|
+
Rm as Walmart,
|
|
686
|
+
Hm as Weaviate,
|
|
687
|
+
Vm as Windsurf,
|
|
688
|
+
Um as Workday,
|
|
689
|
+
zm as Wrike,
|
|
690
|
+
Km as X,
|
|
691
|
+
qm as Xero,
|
|
692
|
+
Xm as Youtube,
|
|
693
|
+
jm as Yugabytedb,
|
|
694
|
+
$m as Zendesk,
|
|
695
|
+
ri as Zoho,
|
|
696
|
+
ti as ZohoBooks,
|
|
697
|
+
pi as ZohoCreator,
|
|
698
|
+
ii as Zoom,
|
|
699
|
+
R as avatarBadgeVariants,
|
|
700
|
+
_ as badgeVariants,
|
|
689
701
|
j as buttonVariants,
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
702
|
+
xd as findPrebuiltProviderById,
|
|
703
|
+
dd as findPrebuiltProviderByProviderId,
|
|
704
|
+
sd as findToolkitByName,
|
|
705
|
+
td as getToolIconByToolkitName,
|
|
706
|
+
ad as getToolkitIcon,
|
|
707
|
+
pd as getToolkitIconByName,
|
|
708
|
+
ud as isKnownToolkit,
|
|
709
|
+
gd as isPrebuiltProvider,
|
|
710
|
+
Si as jsonHighlightVariants,
|
|
711
|
+
mn as stepIndicatorIconVariants,
|
|
712
|
+
ln as stepIndicatorLabelVariants,
|
|
713
|
+
Mn as tabsListVariants,
|
|
714
|
+
Ln as toggleVariants,
|
|
715
|
+
Yl as useSidebar
|
|
704
716
|
};
|