@arcadeai/design-system 3.35.2 → 3.36.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/icons/claude-code-logotype.js +10 -0
- package/dist/assets/icons/cursor-logotype.js +10 -0
- package/dist/assets/icons/langchain-logotype.js +10 -0
- package/dist/assets/icons/mastra-logotype.js +10 -0
- package/dist/assets/icons/vercel-logotype.js +10 -0
- package/dist/components/index.js +631 -600
- package/dist/components/ui/atoms/arcade-gradient.d.ts +4 -0
- package/dist/components/ui/atoms/arcade-gradient.d.ts.map +1 -0
- package/dist/components/ui/atoms/arcade-gradient.js +26 -0
- package/dist/components/ui/atoms/brand-chip.d.ts +9 -0
- package/dist/components/ui/atoms/brand-chip.d.ts.map +1 -0
- package/dist/components/ui/atoms/brand-chip.js +19 -0
- package/dist/components/ui/atoms/code-block.d.ts.map +1 -1
- package/dist/components/ui/atoms/code-block.js +31 -723
- package/dist/components/ui/atoms/icons/claude-code-logotype.d.ts +4 -0
- package/dist/components/ui/atoms/icons/claude-code-logotype.d.ts.map +1 -0
- package/dist/components/ui/atoms/icons/claude-code-logotype.js +34 -0
- package/dist/components/ui/atoms/icons/cursor-logotype.d.ts +4 -0
- package/dist/components/ui/atoms/icons/cursor-logotype.d.ts.map +1 -0
- package/dist/components/ui/atoms/icons/cursor-logotype.js +21 -0
- package/dist/components/ui/atoms/icons/index.d.ts +5 -0
- package/dist/components/ui/atoms/icons/index.d.ts.map +1 -1
- package/dist/components/ui/atoms/icons/index.js +278 -268
- package/dist/components/ui/atoms/icons/langchain-logotype.d.ts +4 -0
- package/dist/components/ui/atoms/icons/langchain-logotype.d.ts.map +1 -0
- package/dist/components/ui/atoms/icons/langchain-logotype.js +45 -0
- package/dist/components/ui/atoms/icons/mastra-logotype.d.ts +4 -0
- package/dist/components/ui/atoms/icons/mastra-logotype.d.ts.map +1 -0
- package/dist/components/ui/atoms/icons/mastra-logotype.js +19 -0
- package/dist/components/ui/atoms/icons/vercel-logotype.d.ts +4 -0
- package/dist/components/ui/atoms/icons/vercel-logotype.d.ts.map +1 -0
- package/dist/components/ui/atoms/icons/vercel-logotype.js +26 -0
- package/dist/components/ui/atoms/icons/vercel.d.ts.map +1 -1
- package/dist/components/ui/atoms/icons/vercel.js +0 -1
- package/dist/components/ui/atoms/index.d.ts +2 -0
- package/dist/components/ui/atoms/index.d.ts.map +1 -1
- package/dist/components/ui/atoms/index.js +530 -516
- package/dist/components/ui/atoms/virtualized-grid.d.ts.map +1 -1
- package/dist/components/ui/atoms/virtualized-grid.js +16 -16
- package/dist/components/ui/index.js +631 -600
- package/dist/components/ui/molecules/chat-history-item.d.ts +21 -0
- package/dist/components/ui/molecules/chat-history-item.d.ts.map +1 -0
- package/dist/components/ui/molecules/chat-history-item.js +88 -0
- package/dist/components/ui/molecules/chat-message-list.d.ts +6 -0
- package/dist/components/ui/molecules/chat-message-list.d.ts.map +1 -1
- package/dist/components/ui/molecules/chat-message-list.js +117 -61
- package/dist/components/ui/molecules/command-bar.d.ts +7 -0
- package/dist/components/ui/molecules/command-bar.d.ts.map +1 -0
- package/dist/components/ui/molecules/command-bar.js +38 -0
- package/dist/components/ui/molecules/confirm-popover.d.ts +20 -0
- package/dist/components/ui/molecules/confirm-popover.d.ts.map +1 -0
- package/dist/components/ui/molecules/confirm-popover.js +50 -0
- package/dist/components/ui/molecules/empty-state.d.ts +2 -1
- package/dist/components/ui/molecules/empty-state.d.ts.map +1 -1
- package/dist/components/ui/molecules/empty-state.js +9 -7
- package/dist/components/ui/molecules/error-state.d.ts +17 -0
- package/dist/components/ui/molecules/error-state.d.ts.map +1 -0
- package/dist/components/ui/molecules/error-state.js +45 -0
- package/dist/components/ui/molecules/index.d.ts +9 -4
- package/dist/components/ui/molecules/index.d.ts.map +1 -1
- package/dist/components/ui/molecules/index.js +51 -49
- package/dist/components/ui/molecules/requirement-badges.js +4 -5
- package/dist/components/ui/molecules/toolkit-card.js +1 -1
- package/dist/components/ui/pages/chat-page-skeleton.d.ts +7 -0
- package/dist/components/ui/pages/chat-page-skeleton.d.ts.map +1 -0
- package/dist/components/ui/pages/chat-page-skeleton.js +18 -0
- package/dist/components/ui/pages/index.d.ts +2 -2
- package/dist/components/ui/pages/index.d.ts.map +1 -1
- package/dist/components/ui/pages/index.js +4 -4
- package/dist/components/ui/templates/chat-template-skeletons.d.ts +12 -0
- package/dist/components/ui/templates/chat-template-skeletons.d.ts.map +1 -0
- package/dist/components/ui/templates/chat-template-skeletons.js +127 -0
- package/dist/components/ui/templates/error-template.d.ts +20 -0
- package/dist/components/ui/templates/error-template.d.ts.map +1 -0
- package/dist/components/ui/templates/error-template.js +117 -0
- package/dist/components/ui/templates/index.d.ts +4 -0
- package/dist/components/ui/templates/index.d.ts.map +1 -1
- package/dist/components/ui/templates/index.js +37 -22
- package/dist/hooks/use-mobile.d.ts.map +1 -1
- package/dist/hooks/use-mobile.js +12 -11
- package/dist/lib/shiki-themes.d.ts +5 -0
- package/dist/lib/shiki-themes.d.ts.map +1 -0
- package/dist/lib/shiki-themes.js +7 -0
- package/dist/main.js +656 -625
- package/dist/metadata/toolkit-icons.d.ts.map +1 -1
- package/dist/metadata/toolkit-icons.js +187 -186
- package/dist/metadata/toolkits.d.ts.map +1 -1
- package/dist/metadata/toolkits.js +13 -0
- package/dist/{toolkit-card-B97E7TBA.js → toolkit-card-CB1oiaei.js} +2 -3
- package/dist/web-BwFNdl01.js +697 -0
- package/package.json +3 -2
- package/dist/components/ui/molecules/switcher.d.ts +0 -83
- package/dist/components/ui/molecules/switcher.d.ts.map +0 -1
- package/dist/components/ui/molecules/switcher.js +0 -164
- package/dist/components/ui/pages/chat-page.d.ts +0 -83
- package/dist/components/ui/pages/chat-page.d.ts.map +0 -1
- package/dist/components/ui/pages/chat-page.js +0 -385
|
@@ -1,207 +1,214 @@
|
|
|
1
1
|
import { Accordion as e, AccordionContent as t, AccordionItem as p, AccordionTrigger as a } from "./accordion.js";
|
|
2
2
|
import { Alert as i, AlertDescription as f, AlertTitle as x } from "./alert.js";
|
|
3
|
-
import { AlertDialog as n, AlertDialogAction as d, AlertDialogCancel as g, AlertDialogContent as c, AlertDialogDescription as s, AlertDialogFooter as u, AlertDialogHeader as
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
3
|
+
import { AlertDialog as n, AlertDialogAction as d, AlertDialogCancel as g, AlertDialogContent as c, AlertDialogDescription as s, AlertDialogFooter as u, AlertDialogHeader as C, AlertDialogOverlay as b, AlertDialogPortal as S, AlertDialogTitle as h, AlertDialogTrigger as D } from "./alert-dialog.js";
|
|
4
|
+
import { ArcadeGradient as M } from "./arcade-gradient.js";
|
|
5
|
+
import { Avatar as B, AvatarFallback as G, AvatarImage as k } from "./avatar.js";
|
|
6
|
+
import { AvatarNotificationBadge as y, avatarBadgeVariants as L } from "./avatar-notification-badge.js";
|
|
6
7
|
import { Badge as v, badgeVariants as I } from "./badge.js";
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import {
|
|
36
|
-
import {
|
|
37
|
-
import {
|
|
38
|
-
import {
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
import {
|
|
43
|
-
import {
|
|
44
|
-
import {
|
|
45
|
-
import {
|
|
46
|
-
import {
|
|
47
|
-
import {
|
|
48
|
-
import {
|
|
49
|
-
import {
|
|
50
|
-
import {
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
54
|
-
import {
|
|
55
|
-
import {
|
|
56
|
-
import {
|
|
57
|
-
import {
|
|
58
|
-
import {
|
|
59
|
-
import {
|
|
60
|
-
import {
|
|
61
|
-
import {
|
|
62
|
-
import {
|
|
63
|
-
import {
|
|
64
|
-
import {
|
|
65
|
-
import {
|
|
66
|
-
import {
|
|
67
|
-
import {
|
|
68
|
-
import {
|
|
69
|
-
import {
|
|
70
|
-
import {
|
|
71
|
-
import {
|
|
72
|
-
import {
|
|
73
|
-
import {
|
|
74
|
-
import {
|
|
75
|
-
import {
|
|
76
|
-
import {
|
|
77
|
-
import {
|
|
78
|
-
import {
|
|
79
|
-
import {
|
|
80
|
-
import {
|
|
81
|
-
import {
|
|
82
|
-
import {
|
|
83
|
-
import {
|
|
84
|
-
import {
|
|
85
|
-
import {
|
|
86
|
-
import {
|
|
87
|
-
import {
|
|
88
|
-
import {
|
|
89
|
-
import {
|
|
90
|
-
import {
|
|
91
|
-
import {
|
|
92
|
-
import {
|
|
93
|
-
import {
|
|
94
|
-
import {
|
|
95
|
-
import {
|
|
96
|
-
import {
|
|
97
|
-
import {
|
|
98
|
-
import {
|
|
99
|
-
import {
|
|
100
|
-
import {
|
|
101
|
-
import {
|
|
102
|
-
import {
|
|
103
|
-
import {
|
|
104
|
-
import {
|
|
105
|
-
import {
|
|
106
|
-
import {
|
|
107
|
-
import {
|
|
108
|
-
import {
|
|
109
|
-
import {
|
|
110
|
-
import {
|
|
111
|
-
import {
|
|
112
|
-
import {
|
|
113
|
-
import {
|
|
114
|
-
import {
|
|
115
|
-
import {
|
|
116
|
-
import {
|
|
117
|
-
import {
|
|
118
|
-
import {
|
|
119
|
-
import {
|
|
120
|
-
import {
|
|
121
|
-
import {
|
|
122
|
-
import {
|
|
123
|
-
import {
|
|
124
|
-
import {
|
|
125
|
-
import {
|
|
126
|
-
import {
|
|
127
|
-
import {
|
|
128
|
-
import {
|
|
129
|
-
import {
|
|
130
|
-
import {
|
|
131
|
-
import {
|
|
132
|
-
import {
|
|
133
|
-
import {
|
|
134
|
-
import {
|
|
135
|
-
import {
|
|
136
|
-
import {
|
|
137
|
-
import {
|
|
138
|
-
import {
|
|
139
|
-
import {
|
|
140
|
-
import {
|
|
141
|
-
import {
|
|
142
|
-
import {
|
|
143
|
-
import {
|
|
144
|
-
import {
|
|
145
|
-
import {
|
|
146
|
-
import {
|
|
147
|
-
import {
|
|
148
|
-
import {
|
|
149
|
-
import {
|
|
150
|
-
import {
|
|
151
|
-
import {
|
|
152
|
-
import {
|
|
153
|
-
import {
|
|
154
|
-
import {
|
|
155
|
-
import {
|
|
156
|
-
import {
|
|
157
|
-
import {
|
|
158
|
-
import {
|
|
159
|
-
import {
|
|
160
|
-
import {
|
|
161
|
-
import {
|
|
162
|
-
import {
|
|
163
|
-
import {
|
|
164
|
-
import {
|
|
165
|
-
import {
|
|
166
|
-
import {
|
|
167
|
-
import {
|
|
168
|
-
import {
|
|
169
|
-
import {
|
|
170
|
-
import {
|
|
171
|
-
import {
|
|
172
|
-
import {
|
|
173
|
-
import {
|
|
174
|
-
import {
|
|
175
|
-
import {
|
|
176
|
-
import {
|
|
177
|
-
import {
|
|
178
|
-
import {
|
|
179
|
-
import {
|
|
180
|
-
import {
|
|
181
|
-
import {
|
|
182
|
-
import {
|
|
183
|
-
import {
|
|
184
|
-
import {
|
|
185
|
-
import {
|
|
186
|
-
import {
|
|
187
|
-
import {
|
|
188
|
-
import {
|
|
189
|
-
import {
|
|
190
|
-
import {
|
|
191
|
-
import {
|
|
192
|
-
import {
|
|
193
|
-
import {
|
|
194
|
-
import {
|
|
195
|
-
import {
|
|
196
|
-
import {
|
|
8
|
+
import { BrandChip as F } from "./brand-chip.js";
|
|
9
|
+
import { Breadcrumb as R, BreadcrumbEllipsis as O, BreadcrumbItem as E, BreadcrumbLink as z, BreadcrumbList as W, BreadcrumbPage as Z, BreadcrumbSeparator as N } from "./breadcrumb.js";
|
|
10
|
+
import { Button as J, buttonVariants as X } from "./button.js";
|
|
11
|
+
import { ByocBadge as j } from "./byoc-badge.js";
|
|
12
|
+
import { C as U, a as K } from "../../../calendar-DreAgQKY.js";
|
|
13
|
+
import { Card as $, CardAction as oo, CardContent as ro, CardDescription as eo, CardFooter as to, CardHeader as po, CardTitle as ao } from "./card.js";
|
|
14
|
+
import { ChartContainer as io, ChartLegend as fo, ChartLegendContent as xo, ChartStyle as lo, ChartTooltip as no, ChartTooltipContent as go } from "./chart.js";
|
|
15
|
+
import { ChatContainerContent as so, ChatContainerRoot as uo, ChatContainerScrollAnchor as Co } from "./chat-container.js";
|
|
16
|
+
import { Checkbox as So } from "./checkbox.js";
|
|
17
|
+
import { CodeBlock as Do, CodeBlockCode as To, CodeBlockGroup as Mo } from "./code-block.js";
|
|
18
|
+
import { Collapsible as Bo, CollapsibleContent as Go, CollapsibleTrigger as ko } from "./collapsible.js";
|
|
19
|
+
import { Command as yo, CommandDialog as Lo, CommandEmpty as Po, CommandGroup as vo, CommandInput as Io, CommandItem as Ho, CommandList as Fo, CommandSeparator as Vo, CommandShortcut as Ro } from "./command.js";
|
|
20
|
+
import { CopyButton as Eo } from "./copy-button.js";
|
|
21
|
+
import { Dialog as Wo, DialogClose as Zo, DialogContent as No, DialogDescription as qo, DialogFooter as Jo, DialogHeader as Xo, DialogOverlay as Yo, DialogPortal as jo, DialogTitle as Qo, DialogTrigger as Uo } from "./dialog.js";
|
|
22
|
+
import { DropdownMenu as _o, DropdownMenuCheckboxItem as $o, DropdownMenuContent as or, DropdownMenuGroup as rr, DropdownMenuItem as er, DropdownMenuLabel as tr, DropdownMenuPortal as pr, DropdownMenuRadioGroup as ar, DropdownMenuRadioItem as mr, DropdownMenuSeparator as ir, DropdownMenuShortcut as fr, DropdownMenuSub as xr, DropdownMenuSubContent as lr, DropdownMenuSubTrigger as nr, DropdownMenuTrigger as dr } from "./dropdown-menu.js";
|
|
23
|
+
import { HoverCard as cr, HoverCardContent as sr, HoverCardTrigger as ur } from "./hover-card.js";
|
|
24
|
+
import { Adp as br } from "./icons/adp.js";
|
|
25
|
+
import { Aha as hr } from "./icons/aha.js";
|
|
26
|
+
import { Airtable as Tr } from "./icons/airtable.js";
|
|
27
|
+
import { Amplitude as Ar } from "./icons/amplitude.js";
|
|
28
|
+
import { Arcade as Gr } from "./icons/arcade.js";
|
|
29
|
+
import { ArcadeLogo as wr } from "./icons/arcade-logo.js";
|
|
30
|
+
import { Asana as Lr } from "./icons/asana.js";
|
|
31
|
+
import { Ashby as vr } from "./icons/ashby.js";
|
|
32
|
+
import { Atlassian as Hr } from "./icons/atlassian.js";
|
|
33
|
+
import { Attio as Vr } from "./icons/attio.js";
|
|
34
|
+
import { Auth0 as Or } from "./icons/auth0.js";
|
|
35
|
+
import { Azure as zr } from "./icons/azure.js";
|
|
36
|
+
import { Bamboohr as Zr } from "./icons/bamboohr.js";
|
|
37
|
+
import { Basecamp as qr } from "./icons/basecamp.js";
|
|
38
|
+
import { Bill as Xr } from "./icons/bill.js";
|
|
39
|
+
import { Bitbucket as jr } from "./icons/bitbucket.js";
|
|
40
|
+
import { Bluesky as Ur } from "./icons/bluesky.js";
|
|
41
|
+
import { Box as _r } from "./icons/box.js";
|
|
42
|
+
import { Braze as oe } from "./icons/braze.js";
|
|
43
|
+
import { Brex as ee } from "./icons/brex.js";
|
|
44
|
+
import { Brightdata as pe } from "./icons/brightdata.js";
|
|
45
|
+
import { Buffer as me } from "./icons/buffer.js";
|
|
46
|
+
import { Calendly as fe } from "./icons/calendly.js";
|
|
47
|
+
import { Claude as le } from "./icons/claude.js";
|
|
48
|
+
import { ClaudeCodeLogotype as de } from "./icons/claude-code-logotype.js";
|
|
49
|
+
import { Clickhouse as ce } from "./icons/clickhouse.js";
|
|
50
|
+
import { Clickup as ue } from "./icons/clickup.js";
|
|
51
|
+
import { Cline as be } from "./icons/cline.js";
|
|
52
|
+
import { Closeio as he } from "./icons/closeio.js";
|
|
53
|
+
import { Codesandbox as Te } from "./icons/codesandbox.js";
|
|
54
|
+
import { Coinbase as Ae } from "./icons/coinbase.js";
|
|
55
|
+
import { Confluence as Ge } from "./icons/confluence.js";
|
|
56
|
+
import { Cursor as we } from "./icons/cursor.js";
|
|
57
|
+
import { CursorInstallDark as Le } from "./icons/cursor-install-dark.js";
|
|
58
|
+
import { CursorInstallLight as ve } from "./icons/cursor-install-light.js";
|
|
59
|
+
import { CursorLogotype as He } from "./icons/cursor-logotype.js";
|
|
60
|
+
import { Customerio as Ve } from "./icons/customerio.js";
|
|
61
|
+
import { Datadog as Oe } from "./icons/datadog.js";
|
|
62
|
+
import { Daytona as ze } from "./icons/daytona.js";
|
|
63
|
+
import { DigitalOcean as Ze } from "./icons/digital-ocean.js";
|
|
64
|
+
import { Discord as qe } from "./icons/discord.js";
|
|
65
|
+
import { Dropbox as Xe } from "./icons/dropbox.js";
|
|
66
|
+
import { E2b as je } from "./icons/e2b.js";
|
|
67
|
+
import { Ebay as Ue } from "./icons/ebay.js";
|
|
68
|
+
import { Evernote as _e } from "./icons/evernote.js";
|
|
69
|
+
import { Exa as ot } from "./icons/exa.js";
|
|
70
|
+
import { Factorial as et } from "./icons/factorial.js";
|
|
71
|
+
import { Figma as pt } from "./icons/figma.js";
|
|
72
|
+
import { Firecrawl as mt } from "./icons/firecrawl.js";
|
|
73
|
+
import { Freshservice as ft } from "./icons/freshservice.js";
|
|
74
|
+
import { Gemini as lt } from "./icons/gemini.js";
|
|
75
|
+
import { Generic as dt } from "./icons/generic.js";
|
|
76
|
+
import { Github as ct } from "./icons/github.js";
|
|
77
|
+
import { Gitlab as ut } from "./icons/gitlab.js";
|
|
78
|
+
import { Gmail as bt } from "./icons/gmail.js";
|
|
79
|
+
import { Google as ht } from "./icons/google.js";
|
|
80
|
+
import { GoogleCalendar as Tt } from "./icons/google-calendar.js";
|
|
81
|
+
import { GoogleContacts as At } from "./icons/google-contacts.js";
|
|
82
|
+
import { GoogleDocs as Gt } from "./icons/google-docs.js";
|
|
83
|
+
import { GoogleDrive as wt } from "./icons/google-drive.js";
|
|
84
|
+
import { GoogleFinance as Lt } from "./icons/google-finance.js";
|
|
85
|
+
import { GoogleFlight as vt } from "./icons/google-flight.js";
|
|
86
|
+
import { GoogleFlights as Ht } from "./icons/google-flights.js";
|
|
87
|
+
import { GoogleHotels as Vt } from "./icons/google-hotels.js";
|
|
88
|
+
import { GoogleJobs as Ot } from "./icons/google-jobs.js";
|
|
89
|
+
import { GoogleMaps as zt } from "./icons/google-maps.js";
|
|
90
|
+
import { GoogleNews as Zt } from "./icons/google-news.js";
|
|
91
|
+
import { GoogleSheets as qt } from "./icons/google-sheets.js";
|
|
92
|
+
import { GoogleShopping as Xt } from "./icons/google-shopping.js";
|
|
93
|
+
import { GoogleSlides as jt } from "./icons/google-slides.js";
|
|
94
|
+
import { Goose as Ut } from "./icons/goose.js";
|
|
95
|
+
import { Granola as _t } from "./icons/granola.js";
|
|
96
|
+
import { Heroku as op } from "./icons/heroku.js";
|
|
97
|
+
import { Hootsuite as ep } from "./icons/hootsuite.js";
|
|
98
|
+
import { Hubspot as pp } from "./icons/hubspot.js";
|
|
99
|
+
import { Imgflip as mp } from "./icons/imgflip.js";
|
|
100
|
+
import { Intercom as fp } from "./icons/intercom.js";
|
|
101
|
+
import { Jira as lp } from "./icons/jira.js";
|
|
102
|
+
import { Langchain as dp } from "./icons/langchain.js";
|
|
103
|
+
import { LangchainLogotype as cp } from "./icons/langchain-logotype.js";
|
|
104
|
+
import { Linear as up } from "./icons/linear.js";
|
|
105
|
+
import { Linkedin as bp } from "./icons/linkedin.js";
|
|
106
|
+
import { Luma as hp } from "./icons/luma.js";
|
|
107
|
+
import { Mailchimp as Tp } from "./icons/mailchimp.js";
|
|
108
|
+
import { Mastra as Ap } from "./icons/mastra.js";
|
|
109
|
+
import { MastraLogotype as Gp } from "./icons/mastra-logotype.js";
|
|
110
|
+
import { MathToolkit as wp } from "./icons/math-toolkit.js";
|
|
111
|
+
import { Mcp as Lp } from "./icons/mcp.js";
|
|
112
|
+
import { Microsoft as vp } from "./icons/microsoft.js";
|
|
113
|
+
import { MicrosoftDynamics as Hp } from "./icons/microsoft-dynamics.js";
|
|
114
|
+
import { MicrosoftExcel as Vp } from "./icons/microsoft-excel.js";
|
|
115
|
+
import { MicrosoftOnedrive as Op } from "./icons/microsoft-onedrive.js";
|
|
116
|
+
import { MicrosoftOutlookCalendar as zp } from "./icons/microsoft-outlook-calendar.js";
|
|
117
|
+
import { MicrosoftOutlookMail as Zp } from "./icons/microsoft-outlook-mail.js";
|
|
118
|
+
import { MicrosoftPowerpoint as qp } from "./icons/microsoft-powerpoint.js";
|
|
119
|
+
import { MicrosoftSharepoint as Xp } from "./icons/microsoft-sharepoint.js";
|
|
120
|
+
import { MicrosoftTeams as jp } from "./icons/microsoft-teams.js";
|
|
121
|
+
import { MicrosoftWord as Up } from "./icons/microsoft-word.js";
|
|
122
|
+
import { Miro as _p } from "./icons/miro.js";
|
|
123
|
+
import { Monday as oa } from "./icons/monday.js";
|
|
124
|
+
import { MongoDB as ea } from "./icons/mongodb.js";
|
|
125
|
+
import { Netsuite as pa } from "./icons/netsuite.js";
|
|
126
|
+
import { Notion as ma } from "./icons/notion.js";
|
|
127
|
+
import { Oauth as fa } from "./icons/oauth.js";
|
|
128
|
+
import { Obsidian as la } from "./icons/obsidian.js";
|
|
129
|
+
import { Okta as da } from "./icons/okta.js";
|
|
130
|
+
import { Openai as ca } from "./icons/openai.js";
|
|
131
|
+
import { Pagerduty as ua } from "./icons/pagerduty.js";
|
|
132
|
+
import { Pinecone as ba } from "./icons/pinecone.js";
|
|
133
|
+
import { Pinterest as ha } from "./icons/pinterest.js";
|
|
134
|
+
import { Pipedrive as Ta } from "./icons/pipedrive.js";
|
|
135
|
+
import { Plaid as Aa } from "./icons/plaid.js";
|
|
136
|
+
import { Postgres as Ga } from "./icons/postgres.js";
|
|
137
|
+
import { Posthog as wa } from "./icons/posthog.js";
|
|
138
|
+
import { Pylon as La } from "./icons/pylon.js";
|
|
139
|
+
import { Quickbooks as va } from "./icons/quickbooks.js";
|
|
140
|
+
import { Railway as Ha } from "./icons/railway.js";
|
|
141
|
+
import { Reddit as Va } from "./icons/reddit.js";
|
|
142
|
+
import { Salesforce as Oa } from "./icons/salesforce.js";
|
|
143
|
+
import { Shopify as za } from "./icons/shopify.js";
|
|
144
|
+
import { Singlestore as Za } from "./icons/singlestore.js";
|
|
145
|
+
import { Slack as qa } from "./icons/slack.js";
|
|
146
|
+
import { Snowflake as Xa } from "./icons/snowflake.js";
|
|
147
|
+
import { Splunk as ja } from "./icons/splunk.js";
|
|
148
|
+
import { Spotify as Ua } from "./icons/spotify.js";
|
|
149
|
+
import { Square as _a } from "./icons/square.js";
|
|
150
|
+
import { Squarespace as om } from "./icons/squarespace.js";
|
|
151
|
+
import { Squareup as em } from "./icons/squareup.js";
|
|
152
|
+
import { Stripe as pm } from "./icons/stripe.js";
|
|
153
|
+
import { Tesla as mm } from "./icons/tesla.js";
|
|
154
|
+
import { Ticktick as fm } from "./icons/ticktick.js";
|
|
155
|
+
import { Tiktok as lm } from "./icons/tiktok.js";
|
|
156
|
+
import { Trello as dm } from "./icons/trello.js";
|
|
157
|
+
import { Twilio as cm } from "./icons/twilio.js";
|
|
158
|
+
import { Twitch as um } from "./icons/twitch.js";
|
|
159
|
+
import { Vercel as bm } from "./icons/vercel.js";
|
|
160
|
+
import { VercelLogotype as hm } from "./icons/vercel-logotype.js";
|
|
161
|
+
import { Vscode as Tm } from "./icons/vscode.js";
|
|
162
|
+
import { Walmart as Am } from "./icons/walmart.js";
|
|
163
|
+
import { Weaviate as Gm } from "./icons/weaviate.js";
|
|
164
|
+
import { Windsurf as wm } from "./icons/windsurf.js";
|
|
165
|
+
import { Workday as Lm } from "./icons/workday.js";
|
|
166
|
+
import { Wrike as vm } from "./icons/wrike.js";
|
|
167
|
+
import { X as Hm } from "./icons/x.js";
|
|
168
|
+
import { Xero as Vm } from "./icons/xero.js";
|
|
169
|
+
import { Youtube as Om } from "./icons/youtube.js";
|
|
170
|
+
import { Yugabytedb as zm } from "./icons/yugabytedb.js";
|
|
171
|
+
import { Zendesk as Zm } from "./icons/zendesk.js";
|
|
172
|
+
import { Zoho as qm } from "./icons/zoho.js";
|
|
173
|
+
import { ZohoBooks as Xm } from "./icons/zoho-books.js";
|
|
174
|
+
import { ZohoCreator as jm } from "./icons/zoho-creator.js";
|
|
175
|
+
import { Zoom as Um } from "./icons/zoom.js";
|
|
176
|
+
import { Input as _m } from "./input.js";
|
|
177
|
+
import { JsonHighlight as oi, jsonHighlightVariants as ri } from "./json-highlight.js";
|
|
178
|
+
import { Label as ti } from "./label.js";
|
|
179
|
+
import { Loader as ai } from "./loader.js";
|
|
180
|
+
import { M as ii } from "../../../markdown-D0xxRbwP.js";
|
|
181
|
+
import { MobileTooltip as xi, MobileTooltipContent as li, MobileTooltipProvider as ni, MobileTooltipTrigger as di } from "./mobile-tooltip.js";
|
|
182
|
+
import { Popover as ci, PopoverAnchor as si, PopoverContent as ui, PopoverTrigger as Ci } from "./popover.js";
|
|
183
|
+
import { ProBadge as Si } from "./pro-badge.js";
|
|
184
|
+
import { Progress as Di } from "./progress.js";
|
|
185
|
+
import { RadioGroup as Mi, RadioGroupItem as Ai } from "./radio-group.js";
|
|
186
|
+
import { ResizableHandle as Gi, ResizablePanel as ki, ResizablePanelGroup as wi } from "./resizable.js";
|
|
187
|
+
import { ScrollArea as Li, ScrollBar as Pi } from "./scroll-area.js";
|
|
188
|
+
import { ScrollButton as Ii } from "./scroll-button.js";
|
|
189
|
+
import { Select as Fi, SelectContent as Vi, SelectGroup as Ri, SelectItem as Oi, SelectLabel as Ei, SelectScrollDownButton as zi, SelectScrollUpButton as Wi, SelectSeparator as Zi, SelectTrigger as Ni, SelectValue as qi } from "./select.js";
|
|
190
|
+
import { Separator as Xi } from "./separator.js";
|
|
191
|
+
import { Sheet as ji, SheetClose as Qi, SheetContent as Ui, SheetDescription as Ki, SheetFooter as _i, SheetHeader as $i, SheetTitle as of, SheetTrigger as rf } from "./sheet.js";
|
|
192
|
+
import { Sidebar as tf, SidebarContent as pf, SidebarFooter as af, SidebarGroup as mf, SidebarGroupAction as ff, SidebarGroupContent as xf, SidebarGroupLabel as lf, SidebarHeader as nf, SidebarInput as df, SidebarInset as gf, SidebarMenu as cf, SidebarMenuAction as sf, SidebarMenuBadge as uf, SidebarMenuButton as Cf, SidebarMenuItem as bf, SidebarMenuSkeleton as Sf, SidebarMenuSub as hf, SidebarMenuSubButton as Df, SidebarMenuSubItem as Tf, SidebarProvider as Mf, SidebarRail as Af, SidebarSeparator as Bf, SidebarTrigger as Gf, useSidebar as kf } from "./sidebar.js";
|
|
193
|
+
import { Skeleton as yf } from "./skeleton.js";
|
|
194
|
+
import { Slider as Pf } from "./slider.js";
|
|
195
|
+
import { StepIndicator as If, stepIndicatorIconVariants as Hf, stepIndicatorLabelVariants as Ff } from "./step-indicator.js";
|
|
196
|
+
import { Switch as Rf } from "./switch.js";
|
|
197
|
+
import { Table as Ef, TableBody as zf, TableCaption as Wf, TableCell as Zf, TableFooter as Nf, TableHead as qf, TableHeader as Jf, TableRow as Xf } from "./table.js";
|
|
198
|
+
import { Tabs as jf, TabsContent as Qf, TabsList as Uf, TabsTrigger as Kf } from "./tabs.js";
|
|
199
|
+
import { Textarea as $f } from "./textarea.js";
|
|
200
|
+
import { Toggle as rx, toggleVariants as ex } from "./toggle.js";
|
|
201
|
+
import { Tooltip as px, TooltipContent as ax, TooltipProvider as mx, TooltipTrigger as ix } from "./tooltip.js";
|
|
202
|
+
import { ViewToolsControl as xx } from "./view-tools-control.js";
|
|
203
|
+
import { VirtualizedGrid as nx } from "./virtualized-grid.js";
|
|
197
204
|
export {
|
|
198
205
|
e as Accordion,
|
|
199
206
|
t as AccordionContent,
|
|
200
207
|
p as AccordionItem,
|
|
201
208
|
a as AccordionTrigger,
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
209
|
+
br as Adp,
|
|
210
|
+
hr as Aha,
|
|
211
|
+
Tr as Airtable,
|
|
205
212
|
i as Alert,
|
|
206
213
|
f as AlertDescription,
|
|
207
214
|
n as AlertDialog,
|
|
@@ -210,328 +217,335 @@ export {
|
|
|
210
217
|
c as AlertDialogContent,
|
|
211
218
|
s as AlertDialogDescription,
|
|
212
219
|
u as AlertDialogFooter,
|
|
213
|
-
|
|
214
|
-
|
|
220
|
+
C as AlertDialogHeader,
|
|
221
|
+
b as AlertDialogOverlay,
|
|
215
222
|
S as AlertDialogPortal,
|
|
216
|
-
|
|
217
|
-
|
|
223
|
+
h as AlertDialogTitle,
|
|
224
|
+
D as AlertDialogTrigger,
|
|
218
225
|
x as AlertTitle,
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
vr as
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
k as
|
|
231
|
-
|
|
226
|
+
Ar as Amplitude,
|
|
227
|
+
Gr as Arcade,
|
|
228
|
+
M as ArcadeGradient,
|
|
229
|
+
wr as ArcadeLogo,
|
|
230
|
+
Lr as Asana,
|
|
231
|
+
vr as Ashby,
|
|
232
|
+
Hr as Atlassian,
|
|
233
|
+
Vr as Attio,
|
|
234
|
+
Or as Auth0,
|
|
235
|
+
B as Avatar,
|
|
236
|
+
G as AvatarFallback,
|
|
237
|
+
k as AvatarImage,
|
|
238
|
+
y as AvatarNotificationBadge,
|
|
239
|
+
zr as Azure,
|
|
232
240
|
v as Badge,
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
Po as
|
|
290
|
-
vo as
|
|
291
|
-
Io as
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
ve as
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
vt as
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
vp as
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
vm as
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
241
|
+
Zr as Bamboohr,
|
|
242
|
+
qr as Basecamp,
|
|
243
|
+
Xr as Bill,
|
|
244
|
+
jr as Bitbucket,
|
|
245
|
+
Ur as Bluesky,
|
|
246
|
+
_r as Box,
|
|
247
|
+
F as BrandChip,
|
|
248
|
+
oe as Braze,
|
|
249
|
+
R as Breadcrumb,
|
|
250
|
+
O as BreadcrumbEllipsis,
|
|
251
|
+
E as BreadcrumbItem,
|
|
252
|
+
z as BreadcrumbLink,
|
|
253
|
+
W as BreadcrumbList,
|
|
254
|
+
Z as BreadcrumbPage,
|
|
255
|
+
N as BreadcrumbSeparator,
|
|
256
|
+
ee as Brex,
|
|
257
|
+
pe as Brightdata,
|
|
258
|
+
me as Buffer,
|
|
259
|
+
J as Button,
|
|
260
|
+
j as ByocBadge,
|
|
261
|
+
U as Calendar,
|
|
262
|
+
K as CalendarDayButton,
|
|
263
|
+
fe as Calendly,
|
|
264
|
+
$ as Card,
|
|
265
|
+
oo as CardAction,
|
|
266
|
+
ro as CardContent,
|
|
267
|
+
eo as CardDescription,
|
|
268
|
+
to as CardFooter,
|
|
269
|
+
po as CardHeader,
|
|
270
|
+
ao as CardTitle,
|
|
271
|
+
io as ChartContainer,
|
|
272
|
+
fo as ChartLegend,
|
|
273
|
+
xo as ChartLegendContent,
|
|
274
|
+
lo as ChartStyle,
|
|
275
|
+
no as ChartTooltip,
|
|
276
|
+
go as ChartTooltipContent,
|
|
277
|
+
so as ChatContainerContent,
|
|
278
|
+
uo as ChatContainerRoot,
|
|
279
|
+
Co as ChatContainerScrollAnchor,
|
|
280
|
+
So as Checkbox,
|
|
281
|
+
le as Claude,
|
|
282
|
+
de as ClaudeCodeLogotype,
|
|
283
|
+
ce as Clickhouse,
|
|
284
|
+
ue as Clickup,
|
|
285
|
+
be as Cline,
|
|
286
|
+
he as Closeio,
|
|
287
|
+
Do as CodeBlock,
|
|
288
|
+
To as CodeBlockCode,
|
|
289
|
+
Mo as CodeBlockGroup,
|
|
290
|
+
Te as Codesandbox,
|
|
291
|
+
Ae as Coinbase,
|
|
292
|
+
Bo as Collapsible,
|
|
293
|
+
Go as CollapsibleContent,
|
|
294
|
+
ko as CollapsibleTrigger,
|
|
295
|
+
yo as Command,
|
|
296
|
+
Lo as CommandDialog,
|
|
297
|
+
Po as CommandEmpty,
|
|
298
|
+
vo as CommandGroup,
|
|
299
|
+
Io as CommandInput,
|
|
300
|
+
Ho as CommandItem,
|
|
301
|
+
Fo as CommandList,
|
|
302
|
+
Vo as CommandSeparator,
|
|
303
|
+
Ro as CommandShortcut,
|
|
304
|
+
Ge as Confluence,
|
|
305
|
+
Eo as CopyButton,
|
|
306
|
+
we as Cursor,
|
|
307
|
+
Le as CursorInstallDark,
|
|
308
|
+
ve as CursorInstallLight,
|
|
309
|
+
He as CursorLogotype,
|
|
310
|
+
Ve as Customerio,
|
|
311
|
+
Oe as Datadog,
|
|
312
|
+
ze as Daytona,
|
|
313
|
+
Wo as Dialog,
|
|
314
|
+
Zo as DialogClose,
|
|
315
|
+
No as DialogContent,
|
|
316
|
+
qo as DialogDescription,
|
|
317
|
+
Jo as DialogFooter,
|
|
318
|
+
Xo as DialogHeader,
|
|
319
|
+
Yo as DialogOverlay,
|
|
320
|
+
jo as DialogPortal,
|
|
321
|
+
Qo as DialogTitle,
|
|
322
|
+
Uo as DialogTrigger,
|
|
323
|
+
Ze as DigitalOcean,
|
|
324
|
+
qe as Discord,
|
|
325
|
+
Xe as Dropbox,
|
|
326
|
+
_o as DropdownMenu,
|
|
327
|
+
$o as DropdownMenuCheckboxItem,
|
|
328
|
+
or as DropdownMenuContent,
|
|
329
|
+
rr as DropdownMenuGroup,
|
|
330
|
+
er as DropdownMenuItem,
|
|
331
|
+
tr as DropdownMenuLabel,
|
|
332
|
+
pr as DropdownMenuPortal,
|
|
333
|
+
ar as DropdownMenuRadioGroup,
|
|
334
|
+
mr as DropdownMenuRadioItem,
|
|
335
|
+
ir as DropdownMenuSeparator,
|
|
336
|
+
fr as DropdownMenuShortcut,
|
|
337
|
+
xr as DropdownMenuSub,
|
|
338
|
+
lr as DropdownMenuSubContent,
|
|
339
|
+
nr as DropdownMenuSubTrigger,
|
|
340
|
+
dr as DropdownMenuTrigger,
|
|
341
|
+
je as E2b,
|
|
342
|
+
Ue as Ebay,
|
|
343
|
+
_e as Evernote,
|
|
344
|
+
ot as Exa,
|
|
345
|
+
et as Factorial,
|
|
346
|
+
pt as Figma,
|
|
347
|
+
mt as Firecrawl,
|
|
348
|
+
ft as Freshservice,
|
|
349
|
+
lt as Gemini,
|
|
350
|
+
dt as Generic,
|
|
351
|
+
ct as Github,
|
|
352
|
+
ut as Gitlab,
|
|
353
|
+
bt as Gmail,
|
|
354
|
+
ht as Google,
|
|
355
|
+
Tt as GoogleCalendar,
|
|
356
|
+
At as GoogleContacts,
|
|
357
|
+
Gt as GoogleDocs,
|
|
358
|
+
wt as GoogleDrive,
|
|
359
|
+
Lt as GoogleFinance,
|
|
360
|
+
vt as GoogleFlight,
|
|
361
|
+
Ht as GoogleFlights,
|
|
362
|
+
Vt as GoogleHotels,
|
|
363
|
+
Ot as GoogleJobs,
|
|
364
|
+
zt as GoogleMaps,
|
|
365
|
+
Zt as GoogleNews,
|
|
366
|
+
qt as GoogleSheets,
|
|
367
|
+
Xt as GoogleShopping,
|
|
368
|
+
jt as GoogleSlides,
|
|
369
|
+
Ut as Goose,
|
|
370
|
+
_t as Granola,
|
|
371
|
+
op as Heroku,
|
|
372
|
+
ep as Hootsuite,
|
|
373
|
+
cr as HoverCard,
|
|
374
|
+
sr as HoverCardContent,
|
|
375
|
+
ur as HoverCardTrigger,
|
|
376
|
+
pp as Hubspot,
|
|
377
|
+
mp as Imgflip,
|
|
378
|
+
_m as Input,
|
|
379
|
+
fp as Intercom,
|
|
380
|
+
lp as Jira,
|
|
381
|
+
oi as JsonHighlight,
|
|
382
|
+
ti as Label,
|
|
383
|
+
dp as Langchain,
|
|
384
|
+
cp as LangchainLogotype,
|
|
385
|
+
up as Linear,
|
|
386
|
+
bp as Linkedin,
|
|
387
|
+
ai as Loader,
|
|
388
|
+
hp as Luma,
|
|
389
|
+
Tp as Mailchimp,
|
|
390
|
+
ii as Markdown,
|
|
391
|
+
Ap as Mastra,
|
|
392
|
+
Gp as MastraLogotype,
|
|
393
|
+
wp as MathToolkit,
|
|
394
|
+
Lp as Mcp,
|
|
395
|
+
vp as Microsoft,
|
|
396
|
+
Hp as MicrosoftDynamics,
|
|
397
|
+
Vp as MicrosoftExcel,
|
|
398
|
+
Op as MicrosoftOnedrive,
|
|
399
|
+
zp as MicrosoftOutlookCalendar,
|
|
400
|
+
Zp as MicrosoftOutlookMail,
|
|
401
|
+
qp as MicrosoftPowerpoint,
|
|
402
|
+
Xp as MicrosoftSharepoint,
|
|
403
|
+
jp as MicrosoftTeams,
|
|
404
|
+
Up as MicrosoftWord,
|
|
405
|
+
_p as Miro,
|
|
406
|
+
xi as MobileTooltip,
|
|
407
|
+
li as MobileTooltipContent,
|
|
408
|
+
ni as MobileTooltipProvider,
|
|
409
|
+
di as MobileTooltipTrigger,
|
|
410
|
+
oa as Monday,
|
|
411
|
+
ea as MongoDB,
|
|
412
|
+
pa as Netsuite,
|
|
413
|
+
ma as Notion,
|
|
414
|
+
fa as Oauth,
|
|
415
|
+
la as Obsidian,
|
|
416
|
+
da as Okta,
|
|
417
|
+
ca as Openai,
|
|
418
|
+
ua as Pagerduty,
|
|
419
|
+
ba as Pinecone,
|
|
420
|
+
ha as Pinterest,
|
|
421
|
+
Ta as Pipedrive,
|
|
422
|
+
Aa as Plaid,
|
|
423
|
+
ci as Popover,
|
|
424
|
+
si as PopoverAnchor,
|
|
425
|
+
ui as PopoverContent,
|
|
426
|
+
Ci as PopoverTrigger,
|
|
427
|
+
Ga as Postgres,
|
|
428
|
+
wa as Posthog,
|
|
429
|
+
Si as ProBadge,
|
|
430
|
+
Di as Progress,
|
|
431
|
+
La as Pylon,
|
|
432
|
+
va as Quickbooks,
|
|
433
|
+
Mi as RadioGroup,
|
|
434
|
+
Ai as RadioGroupItem,
|
|
435
|
+
Ha as Railway,
|
|
436
|
+
Va as Reddit,
|
|
437
|
+
Gi as ResizableHandle,
|
|
438
|
+
ki as ResizablePanel,
|
|
439
|
+
wi as ResizablePanelGroup,
|
|
440
|
+
Oa as Salesforce,
|
|
441
|
+
Li as ScrollArea,
|
|
442
|
+
Pi as ScrollBar,
|
|
443
|
+
Ii as ScrollButton,
|
|
444
|
+
Fi as Select,
|
|
445
|
+
Vi as SelectContent,
|
|
446
|
+
Ri as SelectGroup,
|
|
447
|
+
Oi as SelectItem,
|
|
448
|
+
Ei as SelectLabel,
|
|
449
|
+
zi as SelectScrollDownButton,
|
|
450
|
+
Wi as SelectScrollUpButton,
|
|
451
|
+
Zi as SelectSeparator,
|
|
452
|
+
Ni as SelectTrigger,
|
|
453
|
+
qi as SelectValue,
|
|
454
|
+
Xi as Separator,
|
|
455
|
+
ji as Sheet,
|
|
456
|
+
Qi as SheetClose,
|
|
457
|
+
Ui as SheetContent,
|
|
458
|
+
Ki as SheetDescription,
|
|
459
|
+
_i as SheetFooter,
|
|
460
|
+
$i as SheetHeader,
|
|
461
|
+
of as SheetTitle,
|
|
462
|
+
rf as SheetTrigger,
|
|
463
|
+
za as Shopify,
|
|
464
|
+
tf as Sidebar,
|
|
465
|
+
pf as SidebarContent,
|
|
466
|
+
af as SidebarFooter,
|
|
467
|
+
mf as SidebarGroup,
|
|
468
|
+
ff as SidebarGroupAction,
|
|
469
|
+
xf as SidebarGroupContent,
|
|
470
|
+
lf as SidebarGroupLabel,
|
|
471
|
+
nf as SidebarHeader,
|
|
472
|
+
df as SidebarInput,
|
|
473
|
+
gf as SidebarInset,
|
|
474
|
+
cf as SidebarMenu,
|
|
475
|
+
sf as SidebarMenuAction,
|
|
476
|
+
uf as SidebarMenuBadge,
|
|
477
|
+
Cf as SidebarMenuButton,
|
|
478
|
+
bf as SidebarMenuItem,
|
|
479
|
+
Sf as SidebarMenuSkeleton,
|
|
480
|
+
hf as SidebarMenuSub,
|
|
481
|
+
Df as SidebarMenuSubButton,
|
|
482
|
+
Tf as SidebarMenuSubItem,
|
|
483
|
+
Mf as SidebarProvider,
|
|
484
|
+
Af as SidebarRail,
|
|
485
|
+
Bf as SidebarSeparator,
|
|
486
|
+
Gf as SidebarTrigger,
|
|
487
|
+
Za as Singlestore,
|
|
488
|
+
yf as Skeleton,
|
|
489
|
+
qa as Slack,
|
|
490
|
+
Pf as Slider,
|
|
491
|
+
Xa as Snowflake,
|
|
492
|
+
ja as Splunk,
|
|
493
|
+
Ua as Spotify,
|
|
494
|
+
_a as Square,
|
|
495
|
+
om as Squarespace,
|
|
496
|
+
em as Squareup,
|
|
497
|
+
If as StepIndicator,
|
|
498
|
+
pm as Stripe,
|
|
499
|
+
Rf as Switch,
|
|
500
|
+
Ef as Table,
|
|
501
|
+
zf as TableBody,
|
|
502
|
+
Wf as TableCaption,
|
|
503
|
+
Zf as TableCell,
|
|
504
|
+
Nf as TableFooter,
|
|
505
|
+
qf as TableHead,
|
|
506
|
+
Jf as TableHeader,
|
|
507
|
+
Xf as TableRow,
|
|
508
|
+
jf as Tabs,
|
|
509
|
+
Qf as TabsContent,
|
|
510
|
+
Uf as TabsList,
|
|
511
|
+
Kf as TabsTrigger,
|
|
512
|
+
mm as Tesla,
|
|
513
|
+
$f as Textarea,
|
|
514
|
+
fm as Ticktick,
|
|
515
|
+
lm as Tiktok,
|
|
516
|
+
rx as Toggle,
|
|
517
|
+
px as Tooltip,
|
|
518
|
+
ax as TooltipContent,
|
|
519
|
+
mx as TooltipProvider,
|
|
520
|
+
ix as TooltipTrigger,
|
|
521
|
+
dm as Trello,
|
|
522
|
+
cm as Twilio,
|
|
523
|
+
um as Twitch,
|
|
524
|
+
bm as Vercel,
|
|
525
|
+
hm as VercelLogotype,
|
|
526
|
+
xx as ViewToolsControl,
|
|
527
|
+
nx as VirtualizedGrid,
|
|
528
|
+
Tm as Vscode,
|
|
529
|
+
Am as Walmart,
|
|
530
|
+
Gm as Weaviate,
|
|
531
|
+
wm as Windsurf,
|
|
532
|
+
Lm as Workday,
|
|
533
|
+
vm as Wrike,
|
|
534
|
+
Hm as X,
|
|
535
|
+
Vm as Xero,
|
|
536
|
+
Om as Youtube,
|
|
537
|
+
zm as Yugabytedb,
|
|
538
|
+
Zm as Zendesk,
|
|
539
|
+
qm as Zoho,
|
|
540
|
+
Xm as ZohoBooks,
|
|
541
|
+
jm as ZohoCreator,
|
|
542
|
+
Um as Zoom,
|
|
543
|
+
L as avatarBadgeVariants,
|
|
530
544
|
I as badgeVariants,
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
545
|
+
X as buttonVariants,
|
|
546
|
+
ri as jsonHighlightVariants,
|
|
547
|
+
Hf as stepIndicatorIconVariants,
|
|
548
|
+
Ff as stepIndicatorLabelVariants,
|
|
549
|
+
ex as toggleVariants,
|
|
550
|
+
kf as useSidebar
|
|
537
551
|
};
|