@arcadeai/design-system 3.35.2 → 3.36.2

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