@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
|
@@ -2,11 +2,11 @@ import { Accordion as e, AccordionContent as t, AccordionItem as a, AccordionTri
|
|
|
2
2
|
import { Alert as i, AlertAction as l, AlertDescription as n, AlertTitle as f } from "./atoms/alert.js";
|
|
3
3
|
import { AlertDialog as d, AlertDialogAction as s, AlertDialogCancel as u, AlertDialogContent as g, AlertDialogDescription as C, AlertDialogFooter as c, AlertDialogHeader as T, AlertDialogMedia as S, AlertDialogOverlay as h, AlertDialogPortal as b, AlertDialogTitle as A, AlertDialogTrigger as D } from "./atoms/alert-dialog.js";
|
|
4
4
|
import { ArcadeGradient as k } from "./atoms/arcade-gradient.js";
|
|
5
|
-
import { Avatar as G, AvatarBadge as I, AvatarFallback as P, AvatarGroup as
|
|
5
|
+
import { Avatar as G, AvatarBadge as I, AvatarFallback as P, AvatarGroup as L, AvatarGroupCount as v, AvatarImage as y } from "./atoms/avatar.js";
|
|
6
6
|
import { AvatarNotificationBadge as H, avatarBadgeVariants as E } from "./atoms/avatar-notification-badge.js";
|
|
7
|
-
import { Badge as
|
|
7
|
+
import { Badge as R, badgeVariants as V } from "./atoms/badge.js";
|
|
8
8
|
import { BrandChip as z } from "./atoms/brand-chip.js";
|
|
9
|
-
import { Breadcrumb as
|
|
9
|
+
import { Breadcrumb as N, BreadcrumbEllipsis as U, BreadcrumbItem as W, BreadcrumbLink as Z, BreadcrumbList as q, BreadcrumbPage as J, BreadcrumbSeparator as X } from "./atoms/breadcrumb.js";
|
|
10
10
|
import { Button as j, buttonVariants as K } from "./atoms/button.js";
|
|
11
11
|
import { ByocBadge as $ } from "./atoms/byoc-badge.js";
|
|
12
12
|
import { C as ro, a as eo } from "../../calendar-CLEnvrbp.js";
|
|
@@ -15,25 +15,25 @@ import { ChartContainer as so, ChartLegend as uo, ChartLegendContent as go, Char
|
|
|
15
15
|
import { ChatContainerContent as ho, ChatContainerRoot as bo, ChatContainerScrollAnchor as Ao } from "./atoms/chat-container.js";
|
|
16
16
|
import { Checkbox as Mo } from "./atoms/checkbox.js";
|
|
17
17
|
import { CodeBlock as Bo, CodeBlockCode as Go, CodeBlockGroup as Io } from "./atoms/code-block.js";
|
|
18
|
-
import { Collapsible as
|
|
19
|
-
import { Command as Ho, CommandDialog as Eo, CommandEmpty as Fo, CommandGroup as
|
|
20
|
-
import { CopyButton as
|
|
21
|
-
import { Dialog as
|
|
18
|
+
import { Collapsible as Lo, CollapsibleContent as vo, CollapsibleTrigger as yo } from "./atoms/collapsible.js";
|
|
19
|
+
import { Command as Ho, CommandDialog as Eo, CommandEmpty as Fo, CommandGroup as Ro, CommandInput as Vo, CommandItem as Oo, CommandList as zo, CommandSeparator as _o, CommandShortcut as No } from "./atoms/command.js";
|
|
20
|
+
import { CopyButton as Wo } from "./atoms/copy-button.js";
|
|
21
|
+
import { Dialog as qo, DialogClose as Jo, DialogContent as Xo, DialogDescription as Yo, DialogFooter as jo, DialogHeader as Ko, DialogOverlay as Qo, DialogPortal as $o, DialogTitle as or, DialogTrigger as rr } from "./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 cr } from "./atoms/dropdown-menu.js";
|
|
23
23
|
import { HoverCard as Sr, HoverCardContent as hr, HoverCardTrigger as br } from "./atoms/hover-card.js";
|
|
24
24
|
import { Adp as Dr } from "./atoms/icons/adp.js";
|
|
25
25
|
import { Aha as kr } from "./atoms/icons/aha.js";
|
|
26
26
|
import { Airtable as Gr } from "./atoms/icons/airtable.js";
|
|
27
27
|
import { Amplitude as Pr } from "./atoms/icons/amplitude.js";
|
|
28
|
-
import { Arcade as
|
|
28
|
+
import { Arcade as vr } from "./atoms/icons/arcade.js";
|
|
29
29
|
import { ArcadeLogo as wr } from "./atoms/icons/arcade-logo.js";
|
|
30
30
|
import { Asana as Er } from "./atoms/icons/asana.js";
|
|
31
|
-
import { Ashby as
|
|
31
|
+
import { Ashby as Rr } from "./atoms/icons/ashby.js";
|
|
32
32
|
import { Atlassian as Or } from "./atoms/icons/atlassian.js";
|
|
33
|
-
import { Attio as
|
|
33
|
+
import { Attio as _r } from "./atoms/icons/attio.js";
|
|
34
34
|
import { Auth0 as Ur } from "./atoms/icons/auth0.js";
|
|
35
|
-
import { Azure as
|
|
36
|
-
import { Bamboohr as
|
|
35
|
+
import { Azure as Zr } from "./atoms/icons/azure.js";
|
|
36
|
+
import { Bamboohr as Jr } from "./atoms/icons/bamboohr.js";
|
|
37
37
|
import { Basecamp as Yr } from "./atoms/icons/basecamp.js";
|
|
38
38
|
import { Bill as Kr } from "./atoms/icons/bill.js";
|
|
39
39
|
import { Bitbucket as $r } from "./atoms/icons/bitbucket.js";
|
|
@@ -52,15 +52,15 @@ import { Cline as De } from "./atoms/icons/cline.js";
|
|
|
52
52
|
import { Closeio as ke } from "./atoms/icons/closeio.js";
|
|
53
53
|
import { Codesandbox as Ge } from "./atoms/icons/codesandbox.js";
|
|
54
54
|
import { Coinbase as Pe } from "./atoms/icons/coinbase.js";
|
|
55
|
-
import { Confluence as
|
|
55
|
+
import { Confluence as ve } from "./atoms/icons/confluence.js";
|
|
56
56
|
import { Cursor as we } from "./atoms/icons/cursor.js";
|
|
57
57
|
import { CursorInstallDark as Ee } from "./atoms/icons/cursor-install-dark.js";
|
|
58
|
-
import { CursorInstallLight as
|
|
58
|
+
import { CursorInstallLight as Re } from "./atoms/icons/cursor-install-light.js";
|
|
59
59
|
import { CursorLogotype as Oe } from "./atoms/icons/cursor-logotype.js";
|
|
60
|
-
import { Customerio as
|
|
60
|
+
import { Customerio as _e } from "./atoms/icons/customerio.js";
|
|
61
61
|
import { Datadog as Ue } from "./atoms/icons/datadog.js";
|
|
62
|
-
import { Daytona as
|
|
63
|
-
import { DigitalOcean as
|
|
62
|
+
import { Daytona as Ze } from "./atoms/icons/daytona.js";
|
|
63
|
+
import { DigitalOcean as Je } from "./atoms/icons/digital-ocean.js";
|
|
64
64
|
import { Discord as Ye } from "./atoms/icons/discord.js";
|
|
65
65
|
import { Dropbox as Ke } from "./atoms/icons/dropbox.js";
|
|
66
66
|
import { E2b as $e } from "./atoms/icons/e2b.js";
|
|
@@ -70,164 +70,168 @@ import { Exa as pt } from "./atoms/icons/exa.js";
|
|
|
70
70
|
import { Factorial as it } from "./atoms/icons/factorial.js";
|
|
71
71
|
import { Figma as nt } from "./atoms/icons/figma.js";
|
|
72
72
|
import { Firecrawl as xt } from "./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 {
|
|
73
|
+
import { Forkable as st } from "./atoms/icons/forkable.js";
|
|
74
|
+
import { Freshservice as gt } from "./atoms/icons/freshservice.js";
|
|
75
|
+
import { Gemini as ct } from "./atoms/icons/gemini.js";
|
|
76
|
+
import { Generic as St } from "./atoms/icons/generic.js";
|
|
77
|
+
import { Github as bt } from "./atoms/icons/github.js";
|
|
78
|
+
import { Gitlab as Dt } from "./atoms/icons/gitlab.js";
|
|
79
|
+
import { Gmail as kt } from "./atoms/icons/gmail.js";
|
|
80
|
+
import { Google as Gt } from "./atoms/icons/google.js";
|
|
81
|
+
import { GoogleCalendar as Pt } from "./atoms/icons/google-calendar.js";
|
|
82
|
+
import { GoogleContacts as vt } from "./atoms/icons/google-contacts.js";
|
|
83
|
+
import { GoogleDocs as wt } from "./atoms/icons/google-docs.js";
|
|
84
|
+
import { GoogleDrive as Et } from "./atoms/icons/google-drive.js";
|
|
85
|
+
import { GoogleFinance as Rt } from "./atoms/icons/google-finance.js";
|
|
86
|
+
import { GoogleFlight as Ot } from "./atoms/icons/google-flight.js";
|
|
87
|
+
import { GoogleFlights as _t } from "./atoms/icons/google-flights.js";
|
|
88
|
+
import { GoogleHotels as Ut } from "./atoms/icons/google-hotels.js";
|
|
89
|
+
import { GoogleJobs as Zt } from "./atoms/icons/google-jobs.js";
|
|
90
|
+
import { GoogleMaps as Jt } from "./atoms/icons/google-maps.js";
|
|
91
|
+
import { GoogleNews as Yt } from "./atoms/icons/google-news.js";
|
|
92
|
+
import { GoogleSheets as Kt } from "./atoms/icons/google-sheets.js";
|
|
93
|
+
import { GoogleShopping as $t } from "./atoms/icons/google-shopping.js";
|
|
94
|
+
import { GoogleSlides as ra } from "./atoms/icons/google-slides.js";
|
|
95
|
+
import { Goose as ta } from "./atoms/icons/goose.js";
|
|
96
|
+
import { Granola as pa } from "./atoms/icons/granola.js";
|
|
97
|
+
import { Heroku as ia } from "./atoms/icons/heroku.js";
|
|
98
|
+
import { Hootsuite as na } from "./atoms/icons/hootsuite.js";
|
|
99
|
+
import { Hubspot as xa } from "./atoms/icons/hubspot.js";
|
|
100
|
+
import { Imgflip as sa } from "./atoms/icons/imgflip.js";
|
|
101
|
+
import { Intercom as ga } from "./atoms/icons/intercom.js";
|
|
102
|
+
import { Jira as ca } from "./atoms/icons/jira.js";
|
|
103
|
+
import { Langchain as Sa } from "./atoms/icons/langchain.js";
|
|
104
|
+
import { LangchainLogotype as ba } from "./atoms/icons/langchain-logotype.js";
|
|
105
|
+
import { Linear as Da } from "./atoms/icons/linear.js";
|
|
106
|
+
import { Linkedin as ka } from "./atoms/icons/linkedin.js";
|
|
107
|
+
import { Luma as Ga } from "./atoms/icons/luma.js";
|
|
108
|
+
import { Mailchimp as Pa } from "./atoms/icons/mailchimp.js";
|
|
109
|
+
import { Mastra as va } from "./atoms/icons/mastra.js";
|
|
110
|
+
import { MastraLogotype as wa } from "./atoms/icons/mastra-logotype.js";
|
|
111
|
+
import { MathToolkit as Ea } from "./atoms/icons/math-toolkit.js";
|
|
112
|
+
import { Mcp as Ra } from "./atoms/icons/mcp.js";
|
|
113
|
+
import { Microsoft as Oa } from "./atoms/icons/microsoft.js";
|
|
114
|
+
import { MicrosoftDynamics as _a } from "./atoms/icons/microsoft-dynamics.js";
|
|
115
|
+
import { MicrosoftExcel as Ua } from "./atoms/icons/microsoft-excel.js";
|
|
116
|
+
import { MicrosoftOnedrive as Za } from "./atoms/icons/microsoft-onedrive.js";
|
|
117
|
+
import { MicrosoftOutlookCalendar as Ja } from "./atoms/icons/microsoft-outlook-calendar.js";
|
|
118
|
+
import { MicrosoftOutlookMail as Ya } from "./atoms/icons/microsoft-outlook-mail.js";
|
|
119
|
+
import { MicrosoftPowerpoint as Ka } from "./atoms/icons/microsoft-powerpoint.js";
|
|
120
|
+
import { MicrosoftSharepoint as $a } from "./atoms/icons/microsoft-sharepoint.js";
|
|
121
|
+
import { MicrosoftTeams as rp } from "./atoms/icons/microsoft-teams.js";
|
|
122
|
+
import { MicrosoftWord as tp } from "./atoms/icons/microsoft-word.js";
|
|
123
|
+
import { Miro as pp } from "./atoms/icons/miro.js";
|
|
124
|
+
import { Monday as ip } from "./atoms/icons/monday.js";
|
|
125
|
+
import { MongoDB as np } from "./atoms/icons/mongodb.js";
|
|
126
|
+
import { Netsuite as xp } from "./atoms/icons/netsuite.js";
|
|
127
|
+
import { Notion as sp } from "./atoms/icons/notion.js";
|
|
128
|
+
import { Oauth as gp } from "./atoms/icons/oauth.js";
|
|
129
|
+
import { Obsidian as cp } from "./atoms/icons/obsidian.js";
|
|
130
|
+
import { Okta as Sp } from "./atoms/icons/okta.js";
|
|
131
|
+
import { Openai as bp } from "./atoms/icons/openai.js";
|
|
132
|
+
import { Pagerduty as Dp } from "./atoms/icons/pagerduty.js";
|
|
133
|
+
import { Pinecone as kp } from "./atoms/icons/pinecone.js";
|
|
134
|
+
import { Pinterest as Gp } from "./atoms/icons/pinterest.js";
|
|
135
|
+
import { Pipedrive as Pp } from "./atoms/icons/pipedrive.js";
|
|
136
|
+
import { Plaid as vp } from "./atoms/icons/plaid.js";
|
|
137
|
+
import { Postgres as wp } from "./atoms/icons/postgres.js";
|
|
138
|
+
import { Posthog as Ep } from "./atoms/icons/posthog.js";
|
|
139
|
+
import { Pylon as Rp } from "./atoms/icons/pylon.js";
|
|
140
|
+
import { Quickbooks as Op } from "./atoms/icons/quickbooks.js";
|
|
141
|
+
import { Railway as _p } from "./atoms/icons/railway.js";
|
|
142
|
+
import { Reddit as Up } from "./atoms/icons/reddit.js";
|
|
143
|
+
import { Resend as Zp } from "./atoms/icons/resend.js";
|
|
144
|
+
import { Salesforce as Jp } from "./atoms/icons/salesforce.js";
|
|
145
|
+
import { Shopify as Yp } from "./atoms/icons/shopify.js";
|
|
146
|
+
import { Singlestore as Kp } from "./atoms/icons/singlestore.js";
|
|
147
|
+
import { Slack as $p } from "./atoms/icons/slack.js";
|
|
148
|
+
import { Snowflake as rm } from "./atoms/icons/snowflake.js";
|
|
149
|
+
import { Splunk as tm } from "./atoms/icons/splunk.js";
|
|
150
|
+
import { Spotify as pm } from "./atoms/icons/spotify.js";
|
|
151
|
+
import { Square as im } from "./atoms/icons/square.js";
|
|
152
|
+
import { Squarespace as nm } from "./atoms/icons/squarespace.js";
|
|
153
|
+
import { Squareup as xm } from "./atoms/icons/squareup.js";
|
|
154
|
+
import { Stripe as sm } from "./atoms/icons/stripe.js";
|
|
155
|
+
import { Telegram as gm } from "./atoms/icons/telegram.js";
|
|
156
|
+
import { Tesla as cm } from "./atoms/icons/tesla.js";
|
|
157
|
+
import { Ticktick as Sm } from "./atoms/icons/ticktick.js";
|
|
158
|
+
import { Tiktok as bm } from "./atoms/icons/tiktok.js";
|
|
159
|
+
import { Trello as Dm } from "./atoms/icons/trello.js";
|
|
160
|
+
import { Twilio as km } from "./atoms/icons/twilio.js";
|
|
161
|
+
import { Twitch as Gm } from "./atoms/icons/twitch.js";
|
|
162
|
+
import { Vercel as Pm } from "./atoms/icons/vercel.js";
|
|
163
|
+
import { VercelLogotype as vm } from "./atoms/icons/vercel-logotype.js";
|
|
164
|
+
import { Vscode as wm } from "./atoms/icons/vscode.js";
|
|
165
|
+
import { Walmart as Em } from "./atoms/icons/walmart.js";
|
|
166
|
+
import { Weaviate as Rm } from "./atoms/icons/weaviate.js";
|
|
167
|
+
import { Windsurf as Om } from "./atoms/icons/windsurf.js";
|
|
168
|
+
import { Workday as _m } from "./atoms/icons/workday.js";
|
|
169
|
+
import { Wrike as Um } from "./atoms/icons/wrike.js";
|
|
170
|
+
import { X as Zm } from "./atoms/icons/x.js";
|
|
171
|
+
import { Xero as Jm } from "./atoms/icons/xero.js";
|
|
172
|
+
import { Youtube as Ym } from "./atoms/icons/youtube.js";
|
|
173
|
+
import { Yugabytedb as Km } from "./atoms/icons/yugabytedb.js";
|
|
174
|
+
import { Zendesk as $m } from "./atoms/icons/zendesk.js";
|
|
175
|
+
import { Zoho as ri } from "./atoms/icons/zoho.js";
|
|
176
|
+
import { ZohoBooks as ti } from "./atoms/icons/zoho-books.js";
|
|
177
|
+
import { ZohoCreator as pi } from "./atoms/icons/zoho-creator.js";
|
|
178
|
+
import { Zoom as ii } from "./atoms/icons/zoom.js";
|
|
179
|
+
import { Input as ni } from "./atoms/input.js";
|
|
180
|
+
import { InputGroup as xi, InputGroupAddon as di, InputGroupButton as si, InputGroupInput as ui, InputGroupText as gi, InputGroupTextarea as Ci } from "./atoms/input-group.js";
|
|
181
|
+
import { JsonHighlight as Ti, jsonHighlightVariants as Si } from "./atoms/json-highlight.js";
|
|
182
|
+
import { Label as bi } from "./atoms/label.js";
|
|
183
|
+
import { Loader as Di } from "./atoms/loader.js";
|
|
184
|
+
import { M as ki } from "../../markdown-Cv6uZPhi.js";
|
|
185
|
+
import { MobileTooltip as Gi, MobileTooltipContent as Ii, MobileTooltipProvider as Pi, MobileTooltipTrigger as Li } from "./atoms/mobile-tooltip.js";
|
|
186
|
+
import { Popover as yi, PopoverContent as wi, PopoverDescription as Hi, PopoverHeader as Ei, PopoverTitle as Fi, PopoverTrigger as Ri } from "./atoms/popover.js";
|
|
187
|
+
import { ProBadge as Oi } from "./atoms/pro-badge.js";
|
|
188
|
+
import { Progress as _i, ProgressIndicator as Ni, ProgressLabel as Ui, ProgressTrack as Wi, ProgressValue as Zi } from "./atoms/progress.js";
|
|
189
|
+
import { RadioGroup as Ji, RadioGroupItem as Xi } from "./atoms/radio-group.js";
|
|
190
|
+
import { ResizableHandle as ji, ResizablePanel as Ki, ResizablePanelGroup as Qi } from "./atoms/resizable.js";
|
|
191
|
+
import { ScrollArea as ol, ScrollBar as rl } from "./atoms/scroll-area.js";
|
|
192
|
+
import { ScrollButton as tl } from "./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 "./atoms/select.js";
|
|
194
|
+
import { Separator as Cl } from "./atoms/separator.js";
|
|
195
|
+
import { Sheet as Tl, SheetClose as Sl, SheetContent as hl, SheetDescription as bl, SheetFooter as Al, SheetHeader as Dl, SheetTitle as Ml, SheetTrigger as kl } from "./atoms/sheet.js";
|
|
196
|
+
import { Sidebar as Gl, SidebarContent as Il, SidebarFooter as Pl, SidebarGroup as Ll, SidebarGroupAction as vl, SidebarGroupContent as yl, SidebarGroupLabel as wl, SidebarHeader as Hl, SidebarInput as El, SidebarInset as Fl, SidebarMenu as Rl, SidebarMenuAction as Vl, SidebarMenuBadge as Ol, SidebarMenuButton as zl, SidebarMenuItem as _l, SidebarMenuSkeleton as Nl, SidebarMenuSub as Ul, SidebarMenuSubButton as Wl, SidebarMenuSubItem as Zl, SidebarProvider as ql, SidebarRail as Jl, SidebarSeparator as Xl, SidebarTrigger as Yl, useSidebar as jl } from "./atoms/sidebar.js";
|
|
197
|
+
import { Skeleton as Ql } from "./atoms/skeleton.js";
|
|
198
|
+
import { Slider as on } from "./atoms/slider.js";
|
|
199
|
+
import { DS_SPARKLE_DURATION_MS as en, SparkleBurst as tn } from "./atoms/sparkle-burst.js";
|
|
200
|
+
import { StepIndicator as pn, stepIndicatorIconVariants as mn, stepIndicatorLabelVariants as ln } from "./atoms/step-indicator.js";
|
|
201
|
+
import { Switch as fn } from "./atoms/switch.js";
|
|
202
|
+
import { Table as dn, TableBody as sn, TableCaption as un, TableCell as gn, TableFooter as Cn, TableHead as cn, TableHeader as Tn, TableRow as Sn } from "./atoms/table.js";
|
|
203
|
+
import { Tabs as bn, TabsContent as An, TabsList as Dn, TabsTrigger as Mn, tabsListVariants as kn } from "./atoms/tabs.js";
|
|
204
|
+
import { Textarea as Gn } from "./atoms/textarea.js";
|
|
205
|
+
import { Toggle as Pn, toggleVariants as Ln } from "./atoms/toggle.js";
|
|
206
|
+
import { Tooltip as yn, TooltipContent as wn, TooltipProvider as Hn, TooltipTrigger as En } from "./atoms/tooltip.js";
|
|
207
|
+
import { ViewToolsControl as Rn } from "./atoms/view-tools-control.js";
|
|
208
|
+
import { VirtualizedGrid as On } from "./atoms/virtualized-grid.js";
|
|
209
|
+
import { ChatHistoryItem as _n } from "./molecules/chat-history-item.js";
|
|
210
|
+
import { ChatAssistantMessage as Un, ChatMessageList as Wn, ChatMessageListSkeleton as Zn, ChatStreamingIndicator as qn, ChatUserMessage as Jn } from "./molecules/chat-message-list.js";
|
|
211
|
+
import { ClientSecretInput as Yn } from "./molecules/client-secret-field.js";
|
|
212
|
+
import { CommandBar as Kn } from "./molecules/command-bar.js";
|
|
213
|
+
import { ConfirmPopover as $n } from "./molecules/confirm-popover.js";
|
|
214
|
+
import { DateTimePicker as rf } from "./molecules/date-time-picker.js";
|
|
215
|
+
import { EmptyState as tf } from "./molecules/empty-state.js";
|
|
216
|
+
import { ErrorState as pf } from "./molecules/error-state.js";
|
|
217
|
+
import { FlowDiagram as lf } from "./molecules/flow-diagram.js";
|
|
218
|
+
import { Message as ff, MessageAction as xf, MessageActions as df, MessageAvatar as sf, MessageContent as uf } from "./molecules/message.js";
|
|
219
|
+
import { PromptInput as Cf, PromptInputAction as cf, PromptInputActions as Tf, PromptInputTextarea as Sf } from "./molecules/prompt-input.js";
|
|
220
|
+
import { R as bf, T as Af } from "../../toolkit-card-ryIR325K.js";
|
|
221
|
+
import { StepsProgress as Mf } from "./molecules/steps-progress.js";
|
|
222
|
+
import { SuggestionCard as Bf, SuggestionCardSkeleton as Gf } from "./molecules/suggestion-card.js";
|
|
223
|
+
import { TagsInput as Pf, TagsInputValue as Lf } from "./molecules/tags-input.js";
|
|
224
|
+
import { ToolAuthorization as yf, ToolAuthorizationArgs as wf, ToolAuthorizationContent as Hf, ToolAuthorizationHeader as Ef, ToolAuthorizationMessage as Ff } from "./molecules/tool-authorization.js";
|
|
225
|
+
import { ToolCallAccordion as Vf, ToolCallAccordionContent as Of, ToolCallAccordionItem as zf, ToolCallAccordionTrigger as _f } from "./molecules/tool-call-accordion.js";
|
|
226
|
+
import { ToolCard as Uf } from "./molecules/tool-card.js";
|
|
227
|
+
import { UserNav as Zf } from "./molecules/user-nav.js";
|
|
228
|
+
import { ChatPageSkeleton as Jf } from "./pages/chat-page-skeleton.js";
|
|
229
|
+
import { LoginPage as Yf } from "./pages/login-page.js";
|
|
230
|
+
import { AuthTemplate as Kf, 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 "./templates/auth-template.js";
|
|
231
|
+
import { ChatTemplate as sx, ChatTemplateBody as ux, ChatTemplateFooter as gx, ChatTemplateHeader as Cx, ChatTemplateHeaderGroup as cx, ChatTemplateOverview as Tx, ChatTemplateOverviewSubtitle as Sx, ChatTemplateOverviewTitle as hx, ChatTemplateSuggestions as bx } from "./templates/chat-template.js";
|
|
232
|
+
import { ChatBodySkeleton as Dx, ChatContentSkeleton as Mx, ChatFooterSkeleton as kx, ChatHeaderSkeleton as Bx, ChatSidebarSkeleton as Gx } from "./templates/chat-template-skeletons.js";
|
|
233
|
+
import { ErrorTemplate as Px, ErrorTemplateActions as Lx, ErrorTemplateContent as vx, ErrorTemplateDescription as yx, ErrorTemplateIcon as wx, ErrorTemplateLogo as Hx, ErrorTemplateTitle as Ex, ErrorTemplateUrl as Fx } from "./templates/error-template.js";
|
|
234
|
+
import { DEFAULT_MCP_CLIENT_IDS as Vx, DEFAULT_MCP_SERVER_IDS as Ox, GatewayDiagram as zx } from "./templates/gateway-diagram.js";
|
|
231
235
|
export {
|
|
232
236
|
e as Accordion,
|
|
233
237
|
t as AccordionContent,
|
|
@@ -253,39 +257,39 @@ export {
|
|
|
253
257
|
D as AlertDialogTrigger,
|
|
254
258
|
f as AlertTitle,
|
|
255
259
|
Pr as Amplitude,
|
|
256
|
-
|
|
260
|
+
vr as Arcade,
|
|
257
261
|
k as ArcadeGradient,
|
|
258
262
|
wr as ArcadeLogo,
|
|
259
263
|
Er as Asana,
|
|
260
|
-
|
|
264
|
+
Rr as Ashby,
|
|
261
265
|
Or as Atlassian,
|
|
262
|
-
|
|
266
|
+
_r as Attio,
|
|
263
267
|
Ur as Auth0,
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
268
|
+
Kf as AuthTemplate,
|
|
269
|
+
Qf as AuthTemplateCard,
|
|
270
|
+
$f as AuthTemplateContent,
|
|
271
|
+
ox as AuthTemplateDefaultBackground,
|
|
272
|
+
rx as AuthTemplateDescription,
|
|
273
|
+
ex as AuthTemplateFooter,
|
|
274
|
+
tx as AuthTemplateGridOverlay,
|
|
275
|
+
ax as AuthTemplateHeader,
|
|
276
|
+
px as AuthTemplateLegal,
|
|
277
|
+
mx as AuthTemplateLegalLink,
|
|
278
|
+
ix as AuthTemplateLogo,
|
|
279
|
+
lx as AuthTemplatePrompt,
|
|
280
|
+
nx as AuthTemplatePromptLink,
|
|
281
|
+
fx as AuthTemplateTitle,
|
|
282
|
+
xx as AuthTemplateVideoBackground,
|
|
279
283
|
G as Avatar,
|
|
280
284
|
I as AvatarBadge,
|
|
281
285
|
P as AvatarFallback,
|
|
282
|
-
|
|
283
|
-
|
|
286
|
+
L as AvatarGroup,
|
|
287
|
+
v as AvatarGroupCount,
|
|
284
288
|
y as AvatarImage,
|
|
285
289
|
H as AvatarNotificationBadge,
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
290
|
+
Zr as Azure,
|
|
291
|
+
R as Badge,
|
|
292
|
+
Jr as Bamboohr,
|
|
289
293
|
Yr as Basecamp,
|
|
290
294
|
Kr as Bill,
|
|
291
295
|
$r as Bitbucket,
|
|
@@ -293,12 +297,12 @@ export {
|
|
|
293
297
|
te as Box,
|
|
294
298
|
z as BrandChip,
|
|
295
299
|
pe as Braze,
|
|
296
|
-
|
|
300
|
+
N as Breadcrumb,
|
|
297
301
|
U as BreadcrumbEllipsis,
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
+
W as BreadcrumbItem,
|
|
303
|
+
Z as BreadcrumbLink,
|
|
304
|
+
q as BreadcrumbList,
|
|
305
|
+
J as BreadcrumbPage,
|
|
302
306
|
X as BreadcrumbSeparator,
|
|
303
307
|
ie as Brex,
|
|
304
308
|
ne as Brightdata,
|
|
@@ -321,36 +325,36 @@ export {
|
|
|
321
325
|
Co as ChartStyle,
|
|
322
326
|
co as ChartTooltip,
|
|
323
327
|
To as ChartTooltipContent,
|
|
324
|
-
|
|
325
|
-
|
|
328
|
+
Un as ChatAssistantMessage,
|
|
329
|
+
Dx as ChatBodySkeleton,
|
|
326
330
|
ho as ChatContainerContent,
|
|
327
331
|
bo as ChatContainerRoot,
|
|
328
332
|
Ao as ChatContainerScrollAnchor,
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
333
|
+
Mx as ChatContentSkeleton,
|
|
334
|
+
kx as ChatFooterSkeleton,
|
|
335
|
+
Bx as ChatHeaderSkeleton,
|
|
336
|
+
_n as ChatHistoryItem,
|
|
337
|
+
Wn as ChatMessageList,
|
|
338
|
+
Zn as ChatMessageListSkeleton,
|
|
339
|
+
Jf as ChatPageSkeleton,
|
|
340
|
+
Gx as ChatSidebarSkeleton,
|
|
341
|
+
qn as ChatStreamingIndicator,
|
|
342
|
+
sx as ChatTemplate,
|
|
343
|
+
ux as ChatTemplateBody,
|
|
344
|
+
gx as ChatTemplateFooter,
|
|
345
|
+
Cx as ChatTemplateHeader,
|
|
346
|
+
cx as ChatTemplateHeaderGroup,
|
|
347
|
+
Tx as ChatTemplateOverview,
|
|
348
|
+
Sx as ChatTemplateOverviewSubtitle,
|
|
349
|
+
hx as ChatTemplateOverviewTitle,
|
|
350
|
+
bx as ChatTemplateSuggestions,
|
|
351
|
+
Jn as ChatUserMessage,
|
|
348
352
|
Mo as Checkbox,
|
|
349
353
|
ge as Claude,
|
|
350
354
|
ce as ClaudeCodeLogotype,
|
|
351
355
|
Se as Clickhouse,
|
|
352
356
|
be as Clickup,
|
|
353
|
-
|
|
357
|
+
Yn as ClientSecretInput,
|
|
354
358
|
De as Cline,
|
|
355
359
|
ke as Closeio,
|
|
356
360
|
Bo as CodeBlock,
|
|
@@ -358,33 +362,35 @@ export {
|
|
|
358
362
|
Io as CodeBlockGroup,
|
|
359
363
|
Ge as Codesandbox,
|
|
360
364
|
Pe as Coinbase,
|
|
361
|
-
|
|
362
|
-
|
|
365
|
+
Lo as Collapsible,
|
|
366
|
+
vo as CollapsibleContent,
|
|
363
367
|
yo as CollapsibleTrigger,
|
|
364
368
|
Ho as Command,
|
|
365
|
-
|
|
369
|
+
Kn as CommandBar,
|
|
366
370
|
Eo as CommandDialog,
|
|
367
371
|
Fo as CommandEmpty,
|
|
368
|
-
|
|
369
|
-
|
|
372
|
+
Ro as CommandGroup,
|
|
373
|
+
Vo as CommandInput,
|
|
370
374
|
Oo as CommandItem,
|
|
371
375
|
zo as CommandList,
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
376
|
+
_o as CommandSeparator,
|
|
377
|
+
No as CommandShortcut,
|
|
378
|
+
$n as ConfirmPopover,
|
|
379
|
+
ve as Confluence,
|
|
380
|
+
Wo as CopyButton,
|
|
377
381
|
we as Cursor,
|
|
378
382
|
Ee as CursorInstallDark,
|
|
379
|
-
|
|
383
|
+
Re as CursorInstallLight,
|
|
380
384
|
Oe as CursorLogotype,
|
|
381
|
-
|
|
382
|
-
|
|
385
|
+
_e as Customerio,
|
|
386
|
+
Vx as DEFAULT_MCP_CLIENT_IDS,
|
|
387
|
+
Ox as DEFAULT_MCP_SERVER_IDS,
|
|
388
|
+
en as DS_SPARKLE_DURATION_MS,
|
|
383
389
|
Ue as Datadog,
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
390
|
+
rf as DateTimePicker,
|
|
391
|
+
Ze as Daytona,
|
|
392
|
+
qo as Dialog,
|
|
393
|
+
Jo as DialogClose,
|
|
388
394
|
Xo as DialogContent,
|
|
389
395
|
Yo as DialogDescription,
|
|
390
396
|
jo as DialogFooter,
|
|
@@ -393,7 +399,7 @@ export {
|
|
|
393
399
|
$o as DialogPortal,
|
|
394
400
|
or as DialogTitle,
|
|
395
401
|
rr as DialogTrigger,
|
|
396
|
-
|
|
402
|
+
Je as DigitalOcean,
|
|
397
403
|
Ye as Discord,
|
|
398
404
|
Ke as Dropbox,
|
|
399
405
|
tr as DropdownMenu,
|
|
@@ -413,265 +419,269 @@ export {
|
|
|
413
419
|
cr as DropdownMenuTrigger,
|
|
414
420
|
$e as E2b,
|
|
415
421
|
rt as Ebay,
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
422
|
+
tf as EmptyState,
|
|
423
|
+
pf as ErrorState,
|
|
424
|
+
Px as ErrorTemplate,
|
|
425
|
+
Lx as ErrorTemplateActions,
|
|
426
|
+
vx as ErrorTemplateContent,
|
|
427
|
+
yx as ErrorTemplateDescription,
|
|
428
|
+
wx as ErrorTemplateIcon,
|
|
429
|
+
Hx as ErrorTemplateLogo,
|
|
430
|
+
Ex as ErrorTemplateTitle,
|
|
431
|
+
Fx as ErrorTemplateUrl,
|
|
426
432
|
tt as Evernote,
|
|
427
433
|
pt as Exa,
|
|
428
434
|
it as Factorial,
|
|
429
435
|
nt as Figma,
|
|
430
436
|
xt as Firecrawl,
|
|
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
|
-
|
|
437
|
+
lf as FlowDiagram,
|
|
438
|
+
st as Forkable,
|
|
439
|
+
gt as Freshservice,
|
|
440
|
+
zx as GatewayDiagram,
|
|
441
|
+
ct as Gemini,
|
|
442
|
+
St as Generic,
|
|
443
|
+
bt as Github,
|
|
444
|
+
Dt as Gitlab,
|
|
445
|
+
kt as Gmail,
|
|
446
|
+
Gt as Google,
|
|
447
|
+
Pt as GoogleCalendar,
|
|
448
|
+
vt as GoogleContacts,
|
|
449
|
+
wt as GoogleDocs,
|
|
450
|
+
Et as GoogleDrive,
|
|
451
|
+
Rt as GoogleFinance,
|
|
452
|
+
Ot as GoogleFlight,
|
|
453
|
+
_t as GoogleFlights,
|
|
454
|
+
Ut as GoogleHotels,
|
|
455
|
+
Zt as GoogleJobs,
|
|
456
|
+
Jt as GoogleMaps,
|
|
457
|
+
Yt as GoogleNews,
|
|
458
|
+
Kt as GoogleSheets,
|
|
459
|
+
$t as GoogleShopping,
|
|
460
|
+
ra as GoogleSlides,
|
|
461
|
+
ta as Goose,
|
|
462
|
+
pa as Granola,
|
|
463
|
+
ia as Heroku,
|
|
464
|
+
na as Hootsuite,
|
|
456
465
|
Sr as HoverCard,
|
|
457
466
|
hr as HoverCardContent,
|
|
458
467
|
br as HoverCardTrigger,
|
|
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
|
-
|
|
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
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
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
|
-
|
|
667
|
-
|
|
468
|
+
xa as Hubspot,
|
|
469
|
+
sa as Imgflip,
|
|
470
|
+
ni as Input,
|
|
471
|
+
xi as InputGroup,
|
|
472
|
+
di as InputGroupAddon,
|
|
473
|
+
si as InputGroupButton,
|
|
474
|
+
ui as InputGroupInput,
|
|
475
|
+
gi as InputGroupText,
|
|
476
|
+
Ci as InputGroupTextarea,
|
|
477
|
+
ga as Intercom,
|
|
478
|
+
ca as Jira,
|
|
479
|
+
Ti as JsonHighlight,
|
|
480
|
+
bi as Label,
|
|
481
|
+
Sa as Langchain,
|
|
482
|
+
ba as LangchainLogotype,
|
|
483
|
+
Da as Linear,
|
|
484
|
+
ka as Linkedin,
|
|
485
|
+
Di as Loader,
|
|
486
|
+
Yf as LoginPage,
|
|
487
|
+
Ga as Luma,
|
|
488
|
+
Pa as Mailchimp,
|
|
489
|
+
ki as Markdown,
|
|
490
|
+
va as Mastra,
|
|
491
|
+
wa as MastraLogotype,
|
|
492
|
+
Ea as MathToolkit,
|
|
493
|
+
Ra as Mcp,
|
|
494
|
+
ff as Message,
|
|
495
|
+
xf as MessageAction,
|
|
496
|
+
df as MessageActions,
|
|
497
|
+
sf as MessageAvatar,
|
|
498
|
+
uf as MessageContent,
|
|
499
|
+
Oa as Microsoft,
|
|
500
|
+
_a as MicrosoftDynamics,
|
|
501
|
+
Ua as MicrosoftExcel,
|
|
502
|
+
Za as MicrosoftOnedrive,
|
|
503
|
+
Ja as MicrosoftOutlookCalendar,
|
|
504
|
+
Ya as MicrosoftOutlookMail,
|
|
505
|
+
Ka as MicrosoftPowerpoint,
|
|
506
|
+
$a as MicrosoftSharepoint,
|
|
507
|
+
rp as MicrosoftTeams,
|
|
508
|
+
tp as MicrosoftWord,
|
|
509
|
+
pp as Miro,
|
|
510
|
+
Gi as MobileTooltip,
|
|
511
|
+
Ii as MobileTooltipContent,
|
|
512
|
+
Pi as MobileTooltipProvider,
|
|
513
|
+
Li as MobileTooltipTrigger,
|
|
514
|
+
ip as Monday,
|
|
515
|
+
np as MongoDB,
|
|
516
|
+
xp as Netsuite,
|
|
517
|
+
sp as Notion,
|
|
518
|
+
gp as Oauth,
|
|
519
|
+
cp as Obsidian,
|
|
520
|
+
Sp as Okta,
|
|
521
|
+
bp as Openai,
|
|
522
|
+
Dp as Pagerduty,
|
|
523
|
+
kp as Pinecone,
|
|
524
|
+
Gp as Pinterest,
|
|
525
|
+
Pp as Pipedrive,
|
|
526
|
+
vp as Plaid,
|
|
527
|
+
yi as Popover,
|
|
528
|
+
wi as PopoverContent,
|
|
529
|
+
Hi as PopoverDescription,
|
|
530
|
+
Ei as PopoverHeader,
|
|
531
|
+
Fi as PopoverTitle,
|
|
532
|
+
Ri as PopoverTrigger,
|
|
533
|
+
wp as Postgres,
|
|
534
|
+
Ep as Posthog,
|
|
535
|
+
Oi as ProBadge,
|
|
536
|
+
_i as Progress,
|
|
537
|
+
Ni as ProgressIndicator,
|
|
538
|
+
Ui as ProgressLabel,
|
|
539
|
+
Wi as ProgressTrack,
|
|
540
|
+
Zi as ProgressValue,
|
|
541
|
+
Cf as PromptInput,
|
|
542
|
+
cf as PromptInputAction,
|
|
543
|
+
Tf as PromptInputActions,
|
|
544
|
+
Sf as PromptInputTextarea,
|
|
545
|
+
Rp as Pylon,
|
|
546
|
+
Op as Quickbooks,
|
|
547
|
+
Ji as RadioGroup,
|
|
548
|
+
Xi as RadioGroupItem,
|
|
549
|
+
_p as Railway,
|
|
550
|
+
Up as Reddit,
|
|
551
|
+
bf as RequirementBadges,
|
|
552
|
+
Zp as Resend,
|
|
553
|
+
ji as ResizableHandle,
|
|
554
|
+
Ki as ResizablePanel,
|
|
555
|
+
Qi as ResizablePanelGroup,
|
|
556
|
+
Jp as Salesforce,
|
|
557
|
+
ol as ScrollArea,
|
|
558
|
+
rl as ScrollBar,
|
|
559
|
+
tl as ScrollButton,
|
|
560
|
+
pl as Select,
|
|
561
|
+
ml as SelectContent,
|
|
562
|
+
il as SelectGroup,
|
|
563
|
+
ll as SelectItem,
|
|
564
|
+
nl as SelectLabel,
|
|
565
|
+
fl as SelectScrollDownButton,
|
|
566
|
+
xl as SelectScrollUpButton,
|
|
567
|
+
dl as SelectSeparator,
|
|
568
|
+
sl as SelectTrigger,
|
|
569
|
+
ul as SelectValue,
|
|
570
|
+
Cl as Separator,
|
|
571
|
+
Tl as Sheet,
|
|
572
|
+
Sl as SheetClose,
|
|
573
|
+
hl as SheetContent,
|
|
574
|
+
bl as SheetDescription,
|
|
575
|
+
Al as SheetFooter,
|
|
576
|
+
Dl as SheetHeader,
|
|
577
|
+
Ml as SheetTitle,
|
|
578
|
+
kl as SheetTrigger,
|
|
579
|
+
Yp as Shopify,
|
|
580
|
+
Gl as Sidebar,
|
|
581
|
+
Il as SidebarContent,
|
|
582
|
+
Pl as SidebarFooter,
|
|
583
|
+
Ll as SidebarGroup,
|
|
584
|
+
vl as SidebarGroupAction,
|
|
585
|
+
yl as SidebarGroupContent,
|
|
586
|
+
wl as SidebarGroupLabel,
|
|
587
|
+
Hl as SidebarHeader,
|
|
588
|
+
El as SidebarInput,
|
|
589
|
+
Fl as SidebarInset,
|
|
590
|
+
Rl as SidebarMenu,
|
|
591
|
+
Vl as SidebarMenuAction,
|
|
592
|
+
Ol as SidebarMenuBadge,
|
|
593
|
+
zl as SidebarMenuButton,
|
|
594
|
+
_l as SidebarMenuItem,
|
|
595
|
+
Nl as SidebarMenuSkeleton,
|
|
596
|
+
Ul as SidebarMenuSub,
|
|
597
|
+
Wl as SidebarMenuSubButton,
|
|
598
|
+
Zl as SidebarMenuSubItem,
|
|
599
|
+
ql as SidebarProvider,
|
|
600
|
+
Jl as SidebarRail,
|
|
601
|
+
Xl as SidebarSeparator,
|
|
602
|
+
Yl as SidebarTrigger,
|
|
603
|
+
Kp as Singlestore,
|
|
604
|
+
Ql as Skeleton,
|
|
605
|
+
$p as Slack,
|
|
606
|
+
on as Slider,
|
|
607
|
+
rm as Snowflake,
|
|
608
|
+
tn as SparkleBurst,
|
|
609
|
+
tm as Splunk,
|
|
610
|
+
pm as Spotify,
|
|
611
|
+
im as Square,
|
|
612
|
+
nm as Squarespace,
|
|
613
|
+
xm as Squareup,
|
|
614
|
+
pn as StepIndicator,
|
|
615
|
+
Mf as StepsProgress,
|
|
616
|
+
sm as Stripe,
|
|
617
|
+
Bf as SuggestionCard,
|
|
618
|
+
Gf as SuggestionCardSkeleton,
|
|
619
|
+
fn as Switch,
|
|
620
|
+
dn as Table,
|
|
621
|
+
sn as TableBody,
|
|
622
|
+
un as TableCaption,
|
|
623
|
+
gn as TableCell,
|
|
624
|
+
Cn as TableFooter,
|
|
625
|
+
cn as TableHead,
|
|
626
|
+
Tn as TableHeader,
|
|
627
|
+
Sn as TableRow,
|
|
628
|
+
bn as Tabs,
|
|
629
|
+
An as TabsContent,
|
|
630
|
+
Dn as TabsList,
|
|
631
|
+
Mn as TabsTrigger,
|
|
632
|
+
Pf as TagsInput,
|
|
633
|
+
Lf as TagsInputValue,
|
|
634
|
+
gm as Telegram,
|
|
635
|
+
cm as Tesla,
|
|
636
|
+
Gn as Textarea,
|
|
637
|
+
Sm as Ticktick,
|
|
638
|
+
bm as Tiktok,
|
|
639
|
+
Pn as Toggle,
|
|
640
|
+
yf as ToolAuthorization,
|
|
641
|
+
wf as ToolAuthorizationArgs,
|
|
642
|
+
Hf as ToolAuthorizationContent,
|
|
643
|
+
Ef as ToolAuthorizationHeader,
|
|
644
|
+
Ff as ToolAuthorizationMessage,
|
|
645
|
+
Vf as ToolCallAccordion,
|
|
646
|
+
Of as ToolCallAccordionContent,
|
|
647
|
+
zf as ToolCallAccordionItem,
|
|
648
|
+
_f as ToolCallAccordionTrigger,
|
|
649
|
+
Uf as ToolCard,
|
|
650
|
+
Af as ToolkitCard,
|
|
651
|
+
yn as Tooltip,
|
|
652
|
+
wn as TooltipContent,
|
|
653
|
+
Hn as TooltipProvider,
|
|
654
|
+
En as TooltipTrigger,
|
|
655
|
+
Dm as Trello,
|
|
656
|
+
km as Twilio,
|
|
657
|
+
Gm as Twitch,
|
|
658
|
+
Zf as UserNav,
|
|
659
|
+
Pm as Vercel,
|
|
660
|
+
vm as VercelLogotype,
|
|
661
|
+
Rn as ViewToolsControl,
|
|
662
|
+
On as VirtualizedGrid,
|
|
663
|
+
wm as Vscode,
|
|
664
|
+
Em as Walmart,
|
|
665
|
+
Rm as Weaviate,
|
|
666
|
+
Om as Windsurf,
|
|
667
|
+
_m as Workday,
|
|
668
|
+
Um as Wrike,
|
|
669
|
+
Zm as X,
|
|
670
|
+
Jm as Xero,
|
|
671
|
+
Ym as Youtube,
|
|
672
|
+
Km as Yugabytedb,
|
|
673
|
+
$m as Zendesk,
|
|
674
|
+
ri as Zoho,
|
|
675
|
+
ti as ZohoBooks,
|
|
676
|
+
pi as ZohoCreator,
|
|
677
|
+
ii as Zoom,
|
|
668
678
|
E as avatarBadgeVariants,
|
|
669
|
-
|
|
679
|
+
V as badgeVariants,
|
|
670
680
|
K as buttonVariants,
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
681
|
+
Si as jsonHighlightVariants,
|
|
682
|
+
mn as stepIndicatorIconVariants,
|
|
683
|
+
ln as stepIndicatorLabelVariants,
|
|
684
|
+
kn as tabsListVariants,
|
|
685
|
+
Ln as toggleVariants,
|
|
686
|
+
jl as useSidebar
|
|
677
687
|
};
|