@arcadeai/design-system 4.0.1 → 5.0.0
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/google-forms.js +136 -0
- package/dist/assets/icons/postman.js +99 -0
- package/dist/assets/index.css +1 -1
- package/dist/assets/tokens.css +1 -1
- package/dist/assets/variables.css +1 -1
- package/dist/components/index.js +165 -164
- package/dist/components/ui/atoms/icons/google-forms.d.ts +4 -0
- package/dist/components/ui/atoms/icons/google-forms.d.ts.map +1 -0
- package/dist/components/ui/atoms/icons/google-forms.js +128 -0
- package/dist/components/ui/atoms/icons/index.d.ts +2 -0
- package/dist/components/ui/atoms/icons/index.d.ts.map +1 -1
- package/dist/components/ui/atoms/icons/index.js +95 -93
- package/dist/components/ui/atoms/icons/postman.d.ts +4 -0
- package/dist/components/ui/atoms/icons/postman.d.ts.map +1 -0
- package/dist/components/ui/atoms/icons/postman.js +91 -0
- package/dist/components/ui/atoms/index.js +122 -120
- package/dist/components/ui/index.js +165 -164
- package/dist/components/ui/molecules/index.d.ts +0 -2
- package/dist/components/ui/molecules/index.d.ts.map +1 -1
- package/dist/components/ui/molecules/index.js +8 -9
- package/dist/components/ui/molecules/mcp-server-picker/category-filter.d.ts.map +1 -1
- package/dist/components/ui/molecules/mcp-server-picker/category-filter.js +13 -18
- package/dist/components/ui/organisms/mcp-selection-summary-bar.d.ts.map +1 -1
- package/dist/components/ui/organisms/mcp-selection-summary-bar.js +34 -38
- package/dist/main.js +171 -170
- package/dist/metadata/toolkit-icons.d.ts.map +1 -1
- package/dist/metadata/toolkit-icons.js +139 -135
- package/dist/metadata/toolkits.d.ts.map +1 -1
- package/dist/metadata/toolkits.js +26 -0
- package/package.json +1 -1
- package/dist/components/ui/molecules/scroll-fade-area.d.ts +0 -32
- package/dist/components/ui/molecules/scroll-fade-area.d.ts.map +0 -1
- package/dist/components/ui/molecules/scroll-fade-area.js +0 -30
- package/dist/hooks/use-scroll-fade.d.ts +0 -22
- package/dist/hooks/use-scroll-fade.d.ts.map +0 -1
- package/dist/hooks/use-scroll-fade.js +0 -39
|
@@ -2,60 +2,56 @@
|
|
|
2
2
|
"use client";
|
|
3
3
|
import { cn as e } from "../../../lib/utils.js";
|
|
4
4
|
import { t } from "../../../button-BNOmhdpM.js";
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import { Fragment as o, jsx as s, jsxs as c } from "react/jsx-runtime";
|
|
5
|
+
import { McpReviewCountChip as n } from "../molecules/mcp-server-picker/review-count-chip.js";
|
|
6
|
+
import { McpToolkitChip as r } from "../molecules/mcp-server-picker/toolkit-chip.js";
|
|
7
|
+
import { McpRecommendedToolkitsChip as i } from "../molecules/mcp-server-picker/recommended-toolkits-chip.js";
|
|
8
|
+
import { Fragment as a, jsx as o, jsxs as s } from "react/jsx-runtime";
|
|
10
9
|
//#region lib/components/ui/organisms/mcp-selection-summary-bar.tsx
|
|
11
|
-
function
|
|
12
|
-
let
|
|
13
|
-
return /* @__PURE__ */
|
|
14
|
-
...
|
|
15
|
-
className: e("@container flex min-h-9 items-center gap-2 rounded-lg bg-muted/30 px-2.5 py-1.5",
|
|
10
|
+
function c({ mcpServers: c, recommendedMcpServers: l = [], toolCount: u, reviewing: d = !1, reviewingRecommended: f = !1, reviewLabel: p, onReview: m, onReviewRecommended: h, onOpenMcpServer: g, onRemoveMcpServer: _, onRemoveRecommended: v, onClear: y, emptyMessage: b = "No tools selected yet", className: x, ...S }) {
|
|
11
|
+
let C = c.length + l.length, w = C > 0;
|
|
12
|
+
return /* @__PURE__ */ o("div", {
|
|
13
|
+
...S,
|
|
14
|
+
className: e("@container flex min-h-9 items-center gap-2 rounded-lg bg-muted/30 px-2.5 py-1.5", x),
|
|
16
15
|
"data-slot": "mcp-selection-summary-bar",
|
|
17
|
-
"data-status":
|
|
18
|
-
children:
|
|
19
|
-
/* @__PURE__ */
|
|
20
|
-
active:
|
|
21
|
-
"aria-label":
|
|
22
|
-
onClick:
|
|
23
|
-
serverCount:
|
|
24
|
-
toolCount:
|
|
16
|
+
"data-status": w ? "filled" : "empty",
|
|
17
|
+
children: w ? /* @__PURE__ */ s(a, { children: [
|
|
18
|
+
/* @__PURE__ */ o(n, {
|
|
19
|
+
active: d,
|
|
20
|
+
"aria-label": p,
|
|
21
|
+
onClick: m,
|
|
22
|
+
serverCount: C,
|
|
23
|
+
toolCount: u
|
|
25
24
|
}),
|
|
26
|
-
/* @__PURE__ */
|
|
25
|
+
/* @__PURE__ */ o("span", {
|
|
27
26
|
"aria-hidden": !0,
|
|
28
27
|
className: "@md:block hidden h-5 w-px shrink-0 bg-border"
|
|
29
28
|
}),
|
|
30
|
-
/* @__PURE__ */
|
|
31
|
-
className: "@md:flex hidden min-w-0 flex-1 gap-1.5 overflow-x-auto p-0.5 [-ms-overflow-style:none] [scrollbar-width:none] [&::-webkit-scrollbar]:hidden",
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
onRemove: y,
|
|
40
|
-
onReview: g
|
|
41
|
-
}) : null, l.map(({ id: e, ...t }) => /* @__PURE__ */ s(i, {
|
|
29
|
+
/* @__PURE__ */ s("div", {
|
|
30
|
+
className: "scroll-fade-x @md:flex hidden min-w-0 flex-1 gap-1.5 overflow-x-auto p-0.5 [-ms-overflow-style:none] [scrollbar-width:none] [&::-webkit-scrollbar]:hidden",
|
|
31
|
+
children: [l.length > 0 ? /* @__PURE__ */ o(i, {
|
|
32
|
+
active: f,
|
|
33
|
+
mcpServers: l,
|
|
34
|
+
onOpenMcpServer: g,
|
|
35
|
+
onRemove: v,
|
|
36
|
+
onReview: h
|
|
37
|
+
}) : null, c.map(({ id: e, ...t }) => /* @__PURE__ */ o(r, {
|
|
42
38
|
...t,
|
|
43
|
-
onOpen:
|
|
44
|
-
onRemove:
|
|
39
|
+
onOpen: g ? () => g(e) : void 0,
|
|
40
|
+
onRemove: _ ? () => _(e) : void 0
|
|
45
41
|
}, e))]
|
|
46
42
|
}),
|
|
47
|
-
|
|
43
|
+
y ? /* @__PURE__ */ o(t, {
|
|
48
44
|
className: "ml-auto",
|
|
49
|
-
onClick:
|
|
45
|
+
onClick: y,
|
|
50
46
|
size: "xs",
|
|
51
47
|
variant: "ghost",
|
|
52
48
|
children: "Clear all"
|
|
53
49
|
}) : null
|
|
54
|
-
] }) : /* @__PURE__ */
|
|
50
|
+
] }) : /* @__PURE__ */ o("span", {
|
|
55
51
|
className: "flex shrink-0 items-center px-2 py-1 font-medium text-muted-foreground text-xs",
|
|
56
|
-
children:
|
|
52
|
+
children: b
|
|
57
53
|
})
|
|
58
54
|
});
|
|
59
55
|
}
|
|
60
56
|
//#endregion
|
|
61
|
-
export {
|
|
57
|
+
export { c as McpSelectionSummaryBar };
|
package/dist/main.js
CHANGED
|
@@ -97,175 +97,176 @@ import { GoogleDrive as Ln } from "./components/ui/atoms/icons/google-drive.js";
|
|
|
97
97
|
import { GoogleFinance as Rn } from "./components/ui/atoms/icons/google-finance.js";
|
|
98
98
|
import { GoogleFlight as zn } from "./components/ui/atoms/icons/google-flight.js";
|
|
99
99
|
import { GoogleFlights as Bn } from "./components/ui/atoms/icons/google-flights.js";
|
|
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 { t as
|
|
195
|
-
import {
|
|
196
|
-
import {
|
|
197
|
-
import {
|
|
198
|
-
import {
|
|
199
|
-
import {
|
|
200
|
-
import {
|
|
201
|
-
import {
|
|
202
|
-
import {
|
|
203
|
-
import {
|
|
204
|
-
import {
|
|
205
|
-
import {
|
|
206
|
-
import {
|
|
207
|
-
import {
|
|
208
|
-
import {
|
|
209
|
-
import {
|
|
210
|
-
import {
|
|
211
|
-
import {
|
|
212
|
-
import {
|
|
213
|
-
import {
|
|
214
|
-
import {
|
|
215
|
-
import {
|
|
216
|
-
import { n as
|
|
217
|
-
import {
|
|
218
|
-
import { t as ao } from "./
|
|
219
|
-
import {
|
|
220
|
-
import {
|
|
221
|
-
import {
|
|
222
|
-
import {
|
|
223
|
-
import {
|
|
224
|
-
import {
|
|
225
|
-
import {
|
|
226
|
-
import {
|
|
227
|
-
import {
|
|
228
|
-
import {
|
|
229
|
-
import {
|
|
230
|
-
import {
|
|
231
|
-
import {
|
|
232
|
-
import {
|
|
233
|
-
import {
|
|
234
|
-
import {
|
|
235
|
-
import {
|
|
236
|
-
import {
|
|
237
|
-
import {
|
|
238
|
-
import {
|
|
239
|
-
import {
|
|
240
|
-
import {
|
|
241
|
-
import {
|
|
242
|
-
import {
|
|
243
|
-
import {
|
|
244
|
-
import {
|
|
245
|
-
import {
|
|
246
|
-
import {
|
|
247
|
-
import {
|
|
248
|
-
import {
|
|
249
|
-
import {
|
|
250
|
-
import {
|
|
251
|
-
import {
|
|
252
|
-
import {
|
|
253
|
-
import {
|
|
254
|
-
import {
|
|
255
|
-
import {
|
|
256
|
-
import {
|
|
257
|
-
import {
|
|
258
|
-
import {
|
|
259
|
-
import {
|
|
260
|
-
import {
|
|
261
|
-
import {
|
|
262
|
-
import {
|
|
263
|
-
import {
|
|
264
|
-
import {
|
|
265
|
-
import {
|
|
266
|
-
import {
|
|
267
|
-
import {
|
|
268
|
-
import {
|
|
100
|
+
import { GoogleForms as Vn } from "./components/ui/atoms/icons/google-forms.js";
|
|
101
|
+
import { GoogleHotels as Hn } from "./components/ui/atoms/icons/google-hotels.js";
|
|
102
|
+
import { GoogleJobs as Un } from "./components/ui/atoms/icons/google-jobs.js";
|
|
103
|
+
import { GoogleMaps as Wn } from "./components/ui/atoms/icons/google-maps.js";
|
|
104
|
+
import { GoogleNews as Gn } from "./components/ui/atoms/icons/google-news.js";
|
|
105
|
+
import { GoogleSheets as Kn } from "./components/ui/atoms/icons/google-sheets.js";
|
|
106
|
+
import { GoogleShopping as qn } from "./components/ui/atoms/icons/google-shopping.js";
|
|
107
|
+
import { GoogleSlides as Jn } from "./components/ui/atoms/icons/google-slides.js";
|
|
108
|
+
import { Goose as Yn } from "./components/ui/atoms/icons/goose.js";
|
|
109
|
+
import { Granola as Xn } from "./components/ui/atoms/icons/granola.js";
|
|
110
|
+
import { Heroku as Zn } from "./components/ui/atoms/icons/heroku.js";
|
|
111
|
+
import { Hootsuite as Qn } from "./components/ui/atoms/icons/hootsuite.js";
|
|
112
|
+
import { Hubspot as $n } from "./components/ui/atoms/icons/hubspot.js";
|
|
113
|
+
import { Imgflip as er } from "./components/ui/atoms/icons/imgflip.js";
|
|
114
|
+
import { Insightly as tr } from "./components/ui/atoms/icons/insightly.js";
|
|
115
|
+
import { Intercom as nr } from "./components/ui/atoms/icons/intercom.js";
|
|
116
|
+
import { Jira as rr } from "./components/ui/atoms/icons/jira.js";
|
|
117
|
+
import { Langchain as ir } from "./components/ui/atoms/icons/langchain.js";
|
|
118
|
+
import { LangchainLogotype as ar } from "./components/ui/atoms/icons/langchain-logotype.js";
|
|
119
|
+
import { Linear as or } from "./components/ui/atoms/icons/linear.js";
|
|
120
|
+
import { Linkedin as sr } from "./components/ui/atoms/icons/linkedin.js";
|
|
121
|
+
import { Luma as cr } from "./components/ui/atoms/icons/luma.js";
|
|
122
|
+
import { Mailchimp as lr } from "./components/ui/atoms/icons/mailchimp.js";
|
|
123
|
+
import { Mastra as ur } from "./components/ui/atoms/icons/mastra.js";
|
|
124
|
+
import { MastraLogotype as dr } from "./components/ui/atoms/icons/mastra-logotype.js";
|
|
125
|
+
import { MathToolkit as fr } from "./components/ui/atoms/icons/math-toolkit.js";
|
|
126
|
+
import { Mcp as pr } from "./components/ui/atoms/icons/mcp.js";
|
|
127
|
+
import { Microsoft as mr } from "./components/ui/atoms/icons/microsoft.js";
|
|
128
|
+
import { MicrosoftDynamics as hr } from "./components/ui/atoms/icons/microsoft-dynamics.js";
|
|
129
|
+
import { MicrosoftExcel as gr } from "./components/ui/atoms/icons/microsoft-excel.js";
|
|
130
|
+
import { MicrosoftOnedrive as _r } from "./components/ui/atoms/icons/microsoft-onedrive.js";
|
|
131
|
+
import { MicrosoftOutlookCalendar as vr } from "./components/ui/atoms/icons/microsoft-outlook-calendar.js";
|
|
132
|
+
import { MicrosoftOutlookMail as yr } from "./components/ui/atoms/icons/microsoft-outlook-mail.js";
|
|
133
|
+
import { MicrosoftPowerpoint as br } from "./components/ui/atoms/icons/microsoft-powerpoint.js";
|
|
134
|
+
import { MicrosoftSharepoint as xr } from "./components/ui/atoms/icons/microsoft-sharepoint.js";
|
|
135
|
+
import { MicrosoftTeams as Sr } from "./components/ui/atoms/icons/microsoft-teams.js";
|
|
136
|
+
import { MicrosoftWord as Cr } from "./components/ui/atoms/icons/microsoft-word.js";
|
|
137
|
+
import { Miro as wr } from "./components/ui/atoms/icons/miro.js";
|
|
138
|
+
import { Monday as Tr } from "./components/ui/atoms/icons/monday.js";
|
|
139
|
+
import { MongoDB as Er } from "./components/ui/atoms/icons/mongodb.js";
|
|
140
|
+
import { Netsuite as Dr } from "./components/ui/atoms/icons/netsuite.js";
|
|
141
|
+
import { Notion as Or } from "./components/ui/atoms/icons/notion.js";
|
|
142
|
+
import { Oauth as kr } from "./components/ui/atoms/icons/oauth.js";
|
|
143
|
+
import { Obsidian as Ar } from "./components/ui/atoms/icons/obsidian.js";
|
|
144
|
+
import { Okta as jr } from "./components/ui/atoms/icons/okta.js";
|
|
145
|
+
import { Openai as Mr } from "./components/ui/atoms/icons/openai.js";
|
|
146
|
+
import { Pagerduty as Nr } from "./components/ui/atoms/icons/pagerduty.js";
|
|
147
|
+
import { Pinecone as Pr } from "./components/ui/atoms/icons/pinecone.js";
|
|
148
|
+
import { Pinterest as Fr } from "./components/ui/atoms/icons/pinterest.js";
|
|
149
|
+
import { Pipedrive as Ir } from "./components/ui/atoms/icons/pipedrive.js";
|
|
150
|
+
import { Plaid as Lr } from "./components/ui/atoms/icons/plaid.js";
|
|
151
|
+
import { Postgres as Rr } from "./components/ui/atoms/icons/postgres.js";
|
|
152
|
+
import { Posthog as zr } from "./components/ui/atoms/icons/posthog.js";
|
|
153
|
+
import { Postman as Br } from "./components/ui/atoms/icons/postman.js";
|
|
154
|
+
import { Pylon as Vr } from "./components/ui/atoms/icons/pylon.js";
|
|
155
|
+
import { Quickbooks as Hr } from "./components/ui/atoms/icons/quickbooks.js";
|
|
156
|
+
import { Railway as Ur } from "./components/ui/atoms/icons/railway.js";
|
|
157
|
+
import { Reddit as Wr } from "./components/ui/atoms/icons/reddit.js";
|
|
158
|
+
import { Resend as Gr } from "./components/ui/atoms/icons/resend.js";
|
|
159
|
+
import { Salesforce as Kr } from "./components/ui/atoms/icons/salesforce.js";
|
|
160
|
+
import { Shopify as qr } from "./components/ui/atoms/icons/shopify.js";
|
|
161
|
+
import { Singlestore as Jr } from "./components/ui/atoms/icons/singlestore.js";
|
|
162
|
+
import { Slack as Yr } from "./components/ui/atoms/icons/slack.js";
|
|
163
|
+
import { Snowflake as Xr } from "./components/ui/atoms/icons/snowflake.js";
|
|
164
|
+
import { Splunk as Zr } from "./components/ui/atoms/icons/splunk.js";
|
|
165
|
+
import { Spotify as Qr } from "./components/ui/atoms/icons/spotify.js";
|
|
166
|
+
import { Square as $r } from "./components/ui/atoms/icons/square.js";
|
|
167
|
+
import { Squarespace as ei } from "./components/ui/atoms/icons/squarespace.js";
|
|
168
|
+
import { Squareup as ti } from "./components/ui/atoms/icons/squareup.js";
|
|
169
|
+
import { Stripe as ni } from "./components/ui/atoms/icons/stripe.js";
|
|
170
|
+
import { Telegram as ri } from "./components/ui/atoms/icons/telegram.js";
|
|
171
|
+
import { Tesla as ii } from "./components/ui/atoms/icons/tesla.js";
|
|
172
|
+
import { Ticktick as ai } from "./components/ui/atoms/icons/ticktick.js";
|
|
173
|
+
import { Tiktok as oi } from "./components/ui/atoms/icons/tiktok.js";
|
|
174
|
+
import { Trello as si } from "./components/ui/atoms/icons/trello.js";
|
|
175
|
+
import { Twilio as ci } from "./components/ui/atoms/icons/twilio.js";
|
|
176
|
+
import { Twitch as li } from "./components/ui/atoms/icons/twitch.js";
|
|
177
|
+
import { Vercel as ui } from "./components/ui/atoms/icons/vercel.js";
|
|
178
|
+
import { VercelLogotype as di } from "./components/ui/atoms/icons/vercel-logotype.js";
|
|
179
|
+
import { Vscode as fi } from "./components/ui/atoms/icons/vscode.js";
|
|
180
|
+
import { Walmart as pi } from "./components/ui/atoms/icons/walmart.js";
|
|
181
|
+
import { Weaviate as mi } from "./components/ui/atoms/icons/weaviate.js";
|
|
182
|
+
import { Windsurf as hi } from "./components/ui/atoms/icons/windsurf.js";
|
|
183
|
+
import { Workday as gi } from "./components/ui/atoms/icons/workday.js";
|
|
184
|
+
import { Wrike as _i } from "./components/ui/atoms/icons/wrike.js";
|
|
185
|
+
import { X as vi } from "./components/ui/atoms/icons/x.js";
|
|
186
|
+
import { Xero as yi } from "./components/ui/atoms/icons/xero.js";
|
|
187
|
+
import { Youtube as bi } from "./components/ui/atoms/icons/youtube.js";
|
|
188
|
+
import { Yugabytedb as xi } from "./components/ui/atoms/icons/yugabytedb.js";
|
|
189
|
+
import { Zendesk as Si } from "./components/ui/atoms/icons/zendesk.js";
|
|
190
|
+
import { Zoho as Ci } from "./components/ui/atoms/icons/zoho.js";
|
|
191
|
+
import { ZohoBooks as wi } from "./components/ui/atoms/icons/zoho-books.js";
|
|
192
|
+
import { ZohoCreator as Ti } from "./components/ui/atoms/icons/zoho-creator.js";
|
|
193
|
+
import { Zoom as Ei } from "./components/ui/atoms/icons/zoom.js";
|
|
194
|
+
import { n as Di, t as Oi } from "./radio-group-Cc5ftdVj.js";
|
|
195
|
+
import { a as ki, i as Ai, n as ji, r as Mi, t as Ni } from "./progress-TdXkokPe.js";
|
|
196
|
+
import { t as Pi } from "./input-CSc-AfAa.js";
|
|
197
|
+
import { Textarea as Fi } from "./components/ui/atoms/textarea.js";
|
|
198
|
+
import { InputGroup as Ii, InputGroupAddon as Li, InputGroupButton as Ri, InputGroupInput as zi, InputGroupText as Bi, InputGroupTextarea as Vi } from "./components/ui/atoms/input-group.js";
|
|
199
|
+
import { JsonHighlight as Hi, jsonHighlightVariants as Ui } from "./components/ui/atoms/json-highlight.js";
|
|
200
|
+
import { Label as Wi } from "./components/ui/atoms/label.js";
|
|
201
|
+
import { Loader as Gi } from "./components/ui/atoms/loader.js";
|
|
202
|
+
import { ProBadge as Ki } from "./components/ui/atoms/pro-badge.js";
|
|
203
|
+
import { RemovableChip as qi, RemovableChipButton as Ji, removableChipButtonClass as Yi } from "./components/ui/atoms/removable-chip.js";
|
|
204
|
+
import { n as Xi, r as Zi, t as Qi } from "./resizable-DkYW5Uwh.js";
|
|
205
|
+
import { n as $i, t as ea } from "./scroll-area-53KPfESS.js";
|
|
206
|
+
import { ScrollButton as ta } from "./components/ui/atoms/scroll-button.js";
|
|
207
|
+
import { Separator as na } from "./components/ui/atoms/separator.js";
|
|
208
|
+
import { Sheet as ra, SheetClose as ia, SheetContent as aa, SheetDescription as oa, SheetFooter as sa, SheetHeader as ca, SheetTitle as la, SheetTrigger as ua } from "./components/ui/atoms/sheet.js";
|
|
209
|
+
import { Skeleton as da } from "./components/ui/atoms/skeleton.js";
|
|
210
|
+
import { Sidebar as fa, SidebarContent as pa, SidebarFooter as ma, SidebarGroup as ha, SidebarGroupAction as ga, SidebarGroupContent as _a, SidebarGroupLabel as va, SidebarHeader as ya, SidebarInput as ba, SidebarInset as xa, SidebarMenu as Sa, SidebarMenuAction as Ca, SidebarMenuBadge as wa, SidebarMenuButton as Ta, SidebarMenuItem as Ea, SidebarMenuSkeleton as Da, SidebarMenuSub as Oa, SidebarMenuSubButton as ka, SidebarMenuSubItem as Aa, SidebarProvider as ja, SidebarRail as Ma, SidebarSeparator as Na, SidebarTrigger as Pa, useSidebar as Fa } from "./components/ui/atoms/sidebar.js";
|
|
211
|
+
import { t as Ia } from "./slider-CN3uEkeD.js";
|
|
212
|
+
import { DS_SPARKLE_DURATION_MS as La, SparkleBurst as Ra } from "./components/ui/atoms/sparkle-burst.js";
|
|
213
|
+
import { StepIndicator as za, stepIndicatorIconVariants as Ba, stepIndicatorLabelVariants as Va } from "./components/ui/atoms/step-indicator.js";
|
|
214
|
+
import { t as Ha } from "./switch-CP9j-8px.js";
|
|
215
|
+
import { Table as Ua, TableBody as Wa, TableCaption as Ga, TableCell as Ka, TableFooter as qa, TableHead as Ja, TableHeader as Ya, TableRow as Xa } from "./components/ui/atoms/table.js";
|
|
216
|
+
import { a as Za, i as Qa, n as $a, r as eo, t as to } from "./tabs-C7JA8G0W.js";
|
|
217
|
+
import { Toggle as no, toggleVariants as ro } from "./components/ui/atoms/toggle.js";
|
|
218
|
+
import { n as io, t as ao } from "./toggle-group-CDYMBO0F.js";
|
|
219
|
+
import { ViewToolsControl as oo } from "./components/ui/atoms/view-tools-control.js";
|
|
220
|
+
import { t as so } from "./virtualized-grid-BQNJg029.js";
|
|
221
|
+
import { ConfirmPopover as co } from "./components/ui/molecules/confirm-popover.js";
|
|
222
|
+
import { ChatHistoryItem as lo } from "./components/ui/molecules/chat-history-item.js";
|
|
223
|
+
import { Message as uo, MessageAction as fo, MessageActions as po, MessageAvatar as mo, MessageContent as ho } from "./components/ui/molecules/message.js";
|
|
224
|
+
import { ChatAssistantMessage as go, ChatMessageList as _o, ChatMessageListSkeleton as vo, ChatStreamingIndicator as yo, ChatUserMessage as bo } from "./components/ui/molecules/chat-message-list.js";
|
|
225
|
+
import { ClientSecretInput as xo } from "./components/ui/molecules/client-secret-field.js";
|
|
226
|
+
import { CommandBar as So } from "./components/ui/molecules/command-bar.js";
|
|
227
|
+
import { DateTimePicker as Co } from "./components/ui/molecules/date-time-picker.js";
|
|
228
|
+
import { EmptyState as wo } from "./components/ui/molecules/empty-state.js";
|
|
229
|
+
import { ErrorState as To } from "./components/ui/molecules/error-state.js";
|
|
230
|
+
import { FlowDiagram as Eo } from "./components/ui/molecules/flow-diagram.js";
|
|
231
|
+
import { McpCategoryFilter as Do } from "./components/ui/molecules/mcp-server-picker/category-filter.js";
|
|
232
|
+
import { McpCategoryFilterMenu as Oo } from "./components/ui/molecules/mcp-server-picker/category-filter-menu.js";
|
|
233
|
+
import { McpSectionCallout as ko } from "./components/ui/molecules/mcp-server-picker/section-callout.js";
|
|
234
|
+
import { McpRecommendedToolsCallout as Ao, McpRecommendedToolsDeactivateDialog as jo, McpRecommendedToolsOptOutDialog as Mo } from "./components/ui/molecules/mcp-server-picker/recommended-tools.js";
|
|
235
|
+
import { McpReviewCountChip as No } from "./components/ui/molecules/mcp-server-picker/review-count-chip.js";
|
|
236
|
+
import { McpSearchScopeTabs as Po } from "./components/ui/molecules/mcp-server-picker/search-scope-tabs.js";
|
|
237
|
+
import { McpSectionNavHeader as Fo } from "./components/ui/molecules/mcp-server-picker/section-nav-header.js";
|
|
238
|
+
import { PUBLIC_ICON_URL as Io, PUBLIC_VIDEO_URL as Lo } from "./metadata/constants.js";
|
|
239
|
+
import { MCP_OAUTH2_PROVIDER as Ro, OAUTH2_PROVIDER as zo, OAUTH_PROVIDERS as Bo, OAUTH_PROVIDER_CATALOGUE as Vo, OAuthId as Ho, OAuthProviderId as Uo, OTHER_OAUTH_PROVIDERS as Wo, PREBUILT_OAUTH_PROVIDERS as Go } from "./metadata/oauth-providers.js";
|
|
240
|
+
import { CATEGORIES as Ko, TOOLKITS as qo, TOOLKIT_CATALOGUE as Jo } from "./metadata/toolkits.js";
|
|
241
|
+
import { findPrebuiltProviderById as Yo, findPrebuiltProviderByProviderId as Xo, findToolkitByName as Zo, isKnownToolkit as Qo, isPrebuiltProvider as $o } from "./metadata/utils.js";
|
|
242
|
+
import { TOOLKIT_ICON_MAP as es, getToolIconByToolkitName as ts, getToolkitIcon as ns, getToolkitIconByName as rs, hasToolkitIcon as is, resolveToolkitIcon as as } from "./metadata/toolkit-icons.js";
|
|
243
|
+
import { McpToolkitAvatar as os, mcpToolkitAvatarVariants as ss } from "./components/ui/molecules/mcp-server-picker/toolkit-avatar.js";
|
|
244
|
+
import { McpServerAvatarStack as cs } from "./components/ui/molecules/mcp-server-picker/server-avatar-stack.js";
|
|
245
|
+
import { McpServerCard as ls, mcpServerCardShellVariants as us } from "./components/ui/molecules/mcp-server-picker/server-card.js";
|
|
246
|
+
import { McpToolCard as ds } from "./components/ui/molecules/mcp-server-picker/tool-card.js";
|
|
247
|
+
import { McpToolSearchBand as fs } from "./components/ui/molecules/mcp-server-picker/tool-search-band.js";
|
|
248
|
+
import { McpToolkitChip as ps } from "./components/ui/molecules/mcp-server-picker/toolkit-chip.js";
|
|
249
|
+
import { McpToolkitGroupHeader as ms } from "./components/ui/molecules/mcp-server-picker/toolkit-group-header.js";
|
|
250
|
+
import { McpUnoptimizedMatchCard as hs } from "./components/ui/molecules/mcp-server-picker/unoptimized-match-card.js";
|
|
251
|
+
import { PromptInput as gs, PromptInputAction as _s, PromptInputActions as vs, PromptInputTextarea as ys } from "./components/ui/molecules/prompt-input.js";
|
|
252
|
+
import { r as bs, t as xs } from "./ui-BaLLCKkd.js";
|
|
253
|
+
import { StepsProgress as Ss } from "./components/ui/molecules/steps-progress.js";
|
|
254
|
+
import { SuggestionCard as Cs, SuggestionCardSkeleton as ws } from "./components/ui/molecules/suggestion-card.js";
|
|
255
|
+
import { TagsInput as Ts, TagsInputValue as Es } from "./components/ui/molecules/tags-input.js";
|
|
256
|
+
import { ToolAuthorization as Ds, ToolAuthorizationArgs as Os, ToolAuthorizationContent as ks, ToolAuthorizationHeader as As, ToolAuthorizationMessage as js } from "./components/ui/molecules/tool-authorization.js";
|
|
257
|
+
import { ToolCallAccordion as Ms, ToolCallAccordionContent as Ns, ToolCallAccordionItem as Ps, ToolCallAccordionTrigger as Fs } from "./components/ui/molecules/tool-call-accordion.js";
|
|
258
|
+
import { ToolCard as Is } from "./components/ui/molecules/tool-card.js";
|
|
259
|
+
import { UserNav as Ls } from "./components/ui/molecules/user-nav.js";
|
|
260
|
+
import { McpSelectionSummaryBar as Rs } from "./components/ui/organisms/mcp-selection-summary-bar.js";
|
|
261
|
+
import { McpServerPicker as zs, McpServerPickerGrid as Bs, McpServerPickerHeader as Vs, McpServerPickerToolGrid as Hs } from "./components/ui/organisms/mcp-server-picker.js";
|
|
262
|
+
import { ChatTemplate as Us, ChatTemplateBody as Ws, ChatTemplateFooter as Gs, ChatTemplateHeader as Ks, ChatTemplateHeaderGroup as qs, ChatTemplateOverview as Js, ChatTemplateOverviewSubtitle as Ys, ChatTemplateOverviewTitle as Xs, ChatTemplateSuggestions as Zs } from "./components/ui/templates/chat-template.js";
|
|
263
|
+
import { ChatBodySkeleton as Qs, ChatContentSkeleton as $s, ChatFooterSkeleton as ec, ChatHeaderSkeleton as tc, ChatSidebarSkeleton as nc } from "./components/ui/templates/chat-template-skeletons.js";
|
|
264
|
+
import { ChatPageSkeleton as rc } from "./components/ui/pages/chat-page-skeleton.js";
|
|
265
|
+
import { AuthTemplate as ic, AuthTemplateCard as ac, AuthTemplateContent as oc, AuthTemplateDefaultBackground as sc, AuthTemplateDescription as cc, AuthTemplateFooter as lc, AuthTemplateGridOverlay as uc, AuthTemplateHeader as dc, AuthTemplateLegal as fc, AuthTemplateLegalLink as pc, AuthTemplateLogo as mc, AuthTemplatePrompt as hc, AuthTemplatePromptLink as gc, AuthTemplateTitle as _c, AuthTemplateVideoBackground as vc } from "./components/ui/templates/auth-template.js";
|
|
266
|
+
import { LoginPage as yc } from "./components/ui/pages/login-page.js";
|
|
267
|
+
import { ErrorTemplate as bc, ErrorTemplateActions as xc, ErrorTemplateContent as Sc, ErrorTemplateDescription as Cc, ErrorTemplateIcon as wc, ErrorTemplateLogo as Tc, ErrorTemplateTitle as Ec, ErrorTemplateUrl as Dc } from "./components/ui/templates/error-template.js";
|
|
268
|
+
import { MCP_CLIENT_METADATA as Oc } from "./metadata/mcp-clients.js";
|
|
269
|
+
import { DEFAULT_MCP_CLIENT_IDS as kc, DEFAULT_MCP_SERVER_IDS as Ac, GatewayDiagram as jc } from "./components/ui/templates/gateway-diagram.js";
|
|
269
270
|
import "./components/index.js";
|
|
270
271
|
import "./metadata/index.js";
|
|
271
|
-
export { r as Accordion, t as AccordionContent, n as AccordionItem, e as AccordionTrigger, Tt as Adp, Et as Aha, Dt as Airtable, i as Alert, a as AlertAction, o as AlertDescription, T as AlertDialog, x as AlertDialogAction, C as AlertDialogCancel, y as AlertDialogContent, h as AlertDialogDescription, S as AlertDialogFooter, w as AlertDialogHeader, g as AlertDialogMedia, b as AlertDialogOverlay, E as AlertDialogPortal, _ as AlertDialogTitle, v as AlertDialogTrigger, s as AlertTitle, Ot as Amplitude, kt as Apollo, At as Arcade, k as ArcadeGradient, A as ArcadeGrid, jt as ArcadeLogo, Mt as Asana, Nt as Ashby, Pt as Atlassian, Ft as Attio, It as Auth0, rc as AuthTemplate, ic as AuthTemplateCard, ac as AuthTemplateContent, oc as AuthTemplateDefaultBackground, sc as AuthTemplateDescription, cc as AuthTemplateFooter, lc as AuthTemplateGridOverlay, uc as AuthTemplateHeader, dc as AuthTemplateLegal, fc as AuthTemplateLegalLink, pc as AuthTemplateLogo, mc as AuthTemplatePrompt, hc as AuthTemplatePromptLink, gc as AuthTemplateTitle, _c as AuthTemplateVideoBackground, I as Avatar, N as AvatarBadge, F as AvatarFallback, M as AvatarGroup, j as AvatarGroupCount, P as AvatarImage, L as AvatarNotificationBadge, Lt as Azure, z as Badge, Rt as Bamboohr, zt as Basecamp, Bt as Bill, Vt as Bitbucket, Ht as Bluesky, Ut as Box, V as BrandChip, Wt as Braze, H as Breadcrumb, U as BreadcrumbEllipsis, W as BreadcrumbItem, G as BreadcrumbLink, K as BreadcrumbList, q as BreadcrumbPage, J as BreadcrumbSeparator, Gt as Brex, Kt as Brightdata, qt as Buffer, O as Button, he as ByocBadge, Wo as CATEGORIES, _e as Calendar, ge as CalendarDayButton, Jt as Calendly, ve as Card, ye as CardAction, be as CardContent, xe as CardDescription, Se as CardFooter, Ce as CardHeader, we as CardTitle, Te as ChartContainer, Ee as ChartLegend, De as ChartLegendContent, Oe as ChartStyle, ke as ChartTooltip, Ae as ChartTooltipContent, mo as ChatAssistantMessage, Zs as ChatBodySkeleton, je as ChatContainerContent, Me as ChatContainerRoot, Ne as ChatContainerScrollAnchor, Qs as ChatContentSkeleton, $s as ChatFooterSkeleton, ec as ChatHeaderSkeleton, so as ChatHistoryItem, ho as ChatMessageList, go as ChatMessageListSkeleton, nc as ChatPageSkeleton, tc as ChatSidebarSkeleton, _o as ChatStreamingIndicator, Hs as ChatTemplate, Us as ChatTemplateBody, Ws as ChatTemplateFooter, Gs as ChatTemplateHeader, Ks as ChatTemplateHeaderGroup, qs as ChatTemplateOverview, Js as ChatTemplateOverviewSubtitle, Ys as ChatTemplateOverviewTitle, Xs as ChatTemplateSuggestions, vo as ChatUserMessage, Pe as Checkbox, Yt as Claude, Xt as ClaudeCodeLogotype, Zt as Clickhouse, Qt as Clickup, yo as ClientSecretInput, $t as Cline, en as Closeio, Ie as CodeBlock, Le as CodeBlockCode, Re as CodeBlockGroup, tn as Codesandbox, nn as Coinbase, Ve as Collapsible, ze as CollapsibleContent, Be as CollapsibleTrigger, Xe as Command, bo as CommandBar, Ke as CommandDialog, Je as CommandEmpty, We as CommandGroup, He as CommandInput, qe as CommandItem, Ye as CommandList, Ue as CommandSeparator, Ge as CommandShortcut, oo as ConfirmPopover, rn as Confluence, st as CopyButton, an as Cursor, on as CursorInstallDark, sn as CursorInstallLight, cn as CursorLogotype, ln as Customerio, Oc as DEFAULT_MCP_CLIENT_IDS, kc as DEFAULT_MCP_SERVER_IDS, Fa as DS_SPARKLE_DURATION_MS, un as Datadog, xo as DateTimePicker, dn as Daytona, Ze as Dialog, Qe as DialogClose, $e as DialogContent, et as DialogDescription, tt as DialogFooter, nt as DialogHeader, rt as DialogOverlay, it as DialogPortal, at as DialogTitle, ot as DialogTrigger, fn as DigitalOcean, pn as Discord, mn as Dropbox, xt as DropdownMenu, gt as DropdownMenuCheckboxItem, yt as DropdownMenuContent, pt as DropdownMenuGroup, ct as DropdownMenuItem, _t as DropdownMenuLabel, bt as DropdownMenuPortal, lt as DropdownMenuRadioGroup, mt as DropdownMenuRadioItem, St as DropdownMenuSeparator, ut as DropdownMenuShortcut, dt as DropdownMenuSub, vt as DropdownMenuSubContent, ht as DropdownMenuSubTrigger, ft as DropdownMenuTrigger, hn as E2b, gn as Ebay, So as EmptyState, Co as ErrorState, yc as ErrorTemplate, bc as ErrorTemplateActions, xc as ErrorTemplateContent, Sc as ErrorTemplateDescription, Cc as ErrorTemplateIcon, wc as ErrorTemplateLogo, Tc as ErrorTemplateTitle, Ec as ErrorTemplateUrl, _n as Evernote, vn as Exa, yn as Factorial, bn as Figma, Ct as FilterChip, xn as Firecrawl, Sn as Fireflies, wo as FlowDiagram, Cn as FlyIo, wn as Forkable, Tn as Freshdesk, En as Freshservice, Ac as GatewayDiagram, Dn as Gemini, On as Generic, kn as Github, An as Gitlab, jn as Glean, Mn as Gmail, Nn as Google, Pn as GoogleCalendar, Fn as GoogleContacts, In as GoogleDocs, Ln as GoogleDrive, Rn as GoogleFinance, zn as GoogleFlight, Bn as GoogleFlights, Vn as GoogleHotels, Hn as GoogleJobs, Un as GoogleMaps, Wn as GoogleNews, Gn as GoogleSheets, Kn as GoogleShopping, qn as GoogleSlides, Jn as Goose, Yn as Granola, Xn as Heroku, Zn as Hootsuite, m as HoverCard, f as HoverCardContent, p as HoverCardTrigger, Qn as Hubspot, $n as Imgflip, Mi as Input, Pi as InputGroup, Fi as InputGroupAddon, Ii as InputGroupButton, Li as InputGroupInput, Ri as InputGroupText, zi as InputGroupTextarea, er as Insightly, tr as Intercom, nr as Jira, Bi as JsonHighlight, Hi as Label, rr as Langchain, ir as LangchainLogotype, ar as Linear, or as Linkedin, Ui as Loader, vc as LoginPage, sr as Luma, Dc as MCP_CLIENT_METADATA, Io as MCP_OAUTH2_PROVIDER, cr as Mailchimp, Fe as Markdown, lr as Mastra, ur as MastraLogotype, dr as MathToolkit, fr as Mcp, To as McpCategoryFilter, Eo as McpCategoryFilterMenu, Oo as McpRecommendedToolsCallout, ko as McpRecommendedToolsDeactivateDialog, Ao as McpRecommendedToolsOptOutDialog, jo as McpReviewCountChip, Mo as McpSearchScopeTabs, Do as McpSectionCallout, No as McpSectionNavHeader, Ls as McpSelectionSummaryBar, os as McpServerAvatarStack, ss as McpServerCard, Rs as McpServerPicker, zs as McpServerPickerGrid, Bs as McpServerPickerHeader, Vs as McpServerPickerToolGrid, ls as McpToolCard, us as McpToolSearchBand, is as McpToolkitAvatar, ds as McpToolkitChip, fs as McpToolkitGroupHeader, ps as McpUnoptimizedMatchCard, co as Message, lo as MessageAction, uo as MessageActions, fo as MessageAvatar, po as MessageContent, pr as Microsoft, mr as MicrosoftDynamics, hr as MicrosoftExcel, gr as MicrosoftOnedrive, _r as MicrosoftOutlookCalendar, vr as MicrosoftOutlookMail, yr as MicrosoftPowerpoint, br as MicrosoftSharepoint, xr as MicrosoftTeams, Sr as MicrosoftWord, Cr as Miro, de as MobileTooltip, fe as MobileTooltipContent, pe as MobileTooltipProvider, me as MobileTooltipTrigger, wr as Monday, Tr as MongoDB, Er as Netsuite, Dr as Notion, Lo as OAUTH2_PROVIDER, Ro as OAUTH_PROVIDERS, zo as OAUTH_PROVIDER_CATALOGUE, Bo as OAuthId, Vo as OAuthProviderId, Ho as OTHER_OAUTH_PROVIDERS, Or as Oauth, kr as Obsidian, Ar as Okta, jr as Openai, Uo as PREBUILT_OAUTH_PROVIDERS, Po as PUBLIC_ICON_URL, Fo as PUBLIC_VIDEO_URL, Mr as Pagerduty, Nr as Pinecone, Pr as Pinterest, Fr as Pipedrive, Ir as Plaid, ee as Popover, Z as PopoverContent, $ as PopoverDescription, X as PopoverHeader, Y as PopoverTitle, Q as PopoverTrigger, Lr as Postgres, Rr as Posthog, Wi as ProBadge, ji as Progress, ki as ProgressIndicator, Ai as ProgressLabel, Oi as ProgressTrack, Di as ProgressValue, ms as PromptInput, hs as PromptInputAction, gs as PromptInputActions, _s as PromptInputTextarea, zr as Pylon, Br as Quickbooks, Ei as RadioGroup, Ti as RadioGroupItem, Vr as Railway, Hr as Reddit, Gi as RemovableChip, Ki as RemovableChipButton, vs as RequirementBadges, Ur as Resend, Xi as ResizableHandle, Ji as ResizablePanel, Yi as ResizablePanelGroup, Wr as Salesforce, Qi as ScrollArea, Zi as ScrollBar, $i as ScrollButton, bs as ScrollFadeArea, le as Select, ae as SelectContent, se as SelectGroup, re as SelectItem, te as SelectLabel, oe as SelectScrollDownButton, ce as SelectScrollUpButton, ne as SelectSeparator, ie as SelectTrigger, ue as SelectValue, ea as Separator, ta as Sheet, na as SheetClose, ra as SheetContent, ia as SheetDescription, aa as SheetFooter, oa as SheetHeader, sa as SheetTitle, ca as SheetTrigger, Gr as Shopify, ua as Sidebar, da as SidebarContent, fa as SidebarFooter, pa as SidebarGroup, ma as SidebarGroupAction, ha as SidebarGroupContent, ga as SidebarGroupLabel, _a as SidebarHeader, va as SidebarInput, ya as SidebarInset, ba as SidebarMenu, xa as SidebarMenuAction, Sa as SidebarMenuBadge, Ca as SidebarMenuButton, wa as SidebarMenuItem, Ta as SidebarMenuSkeleton, Ea as SidebarMenuSub, Da as SidebarMenuSubButton, Oa as SidebarMenuSubItem, ka as SidebarProvider, Aa as SidebarRail, ja as SidebarSeparator, Ma as SidebarTrigger, Kr as Singlestore, la as Skeleton, qr as Slack, Pa as Slider, Jr as Snowflake, Ia as SparkleBurst, Yr as Splunk, Xr as Spotify, Zr as Square, Qr as Squarespace, $r as Squareup, La as StepIndicator, xs as StepsProgress, ei as Stripe, Ss as SuggestionCard, Cs as SuggestionCardSkeleton, Ba as Switch, Go as TOOLKITS, Ko as TOOLKIT_CATALOGUE, Qo as TOOLKIT_ICON_MAP, Va as Table, Ha as TableBody, Ua as TableCaption, Wa as TableCell, Ga as TableFooter, Ka as TableHead, qa as TableHeader, Ja as TableRow, $a as Tabs, Za as TabsContent, Qa as TabsList, Xa as TabsTrigger, ws as TagsInput, Ts as TagsInputValue, ti as Telegram, ni as Tesla, Ni as Textarea, ri as Ticktick, ii as Tiktok, eo as Toggle, ro as ToggleGroup, no as ToggleGroupChip, Es as ToolAuthorization, Ds as ToolAuthorizationArgs, Os as ToolAuthorizationContent, ks as ToolAuthorizationHeader, As as ToolAuthorizationMessage, js as ToolCallAccordion, Ms as ToolCallAccordionContent, Ns as ToolCallAccordionItem, Ps as ToolCallAccordionTrigger, Fs as ToolCard, ys as ToolkitCard, d as Tooltip, l as TooltipContent, u as TooltipProvider, c as TooltipTrigger, ai as Trello, oi as Twilio, si as Twitch, Is as UserNav, ci as Vercel, li as VercelLogotype, io as ViewToolsControl, ao as VirtualizedGrid, ui as Vscode, di as Walmart, fi as Weaviate, pi as Windsurf, mi as Workday, hi as Wrike, gi as X, _i as Xero, vi as Youtube, yi as Yugabytedb, bi as Zendesk, xi as Zoho, Si as ZohoBooks, Ci as ZohoCreator, wi as Zoom, R as avatarBadgeVariants, B as badgeVariants, D as buttonVariants, wt as filterChipVariants, qo as findPrebuiltProviderById, Jo as findPrebuiltProviderByProviderId, Yo as findToolkitByName, $o as getToolIconByToolkitName, es as getToolkitIcon, ts as getToolkitIconByName, ns as hasToolkitIcon, Xo as isKnownToolkit, Zo as isPrebuiltProvider, Vi as jsonHighlightVariants, cs as mcpServerCardShellVariants, as as mcpToolkitAvatarVariants, qi as removableChipButtonClass, rs as resolveToolkitIcon, Ra as stepIndicatorIconVariants, za as stepIndicatorLabelVariants, Ya as tabsListVariants, to as toggleVariants, Na as useSidebar };
|
|
272
|
+
export { r as Accordion, t as AccordionContent, n as AccordionItem, e as AccordionTrigger, Tt as Adp, Et as Aha, Dt as Airtable, i as Alert, a as AlertAction, o as AlertDescription, T as AlertDialog, x as AlertDialogAction, C as AlertDialogCancel, y as AlertDialogContent, h as AlertDialogDescription, S as AlertDialogFooter, w as AlertDialogHeader, g as AlertDialogMedia, b as AlertDialogOverlay, E as AlertDialogPortal, _ as AlertDialogTitle, v as AlertDialogTrigger, s as AlertTitle, Ot as Amplitude, kt as Apollo, At as Arcade, k as ArcadeGradient, A as ArcadeGrid, jt as ArcadeLogo, Mt as Asana, Nt as Ashby, Pt as Atlassian, Ft as Attio, It as Auth0, ic as AuthTemplate, ac as AuthTemplateCard, oc as AuthTemplateContent, sc as AuthTemplateDefaultBackground, cc as AuthTemplateDescription, lc as AuthTemplateFooter, uc as AuthTemplateGridOverlay, dc as AuthTemplateHeader, fc as AuthTemplateLegal, pc as AuthTemplateLegalLink, mc as AuthTemplateLogo, hc as AuthTemplatePrompt, gc as AuthTemplatePromptLink, _c as AuthTemplateTitle, vc as AuthTemplateVideoBackground, I as Avatar, N as AvatarBadge, F as AvatarFallback, M as AvatarGroup, j as AvatarGroupCount, P as AvatarImage, L as AvatarNotificationBadge, Lt as Azure, z as Badge, Rt as Bamboohr, zt as Basecamp, Bt as Bill, Vt as Bitbucket, Ht as Bluesky, Ut as Box, V as BrandChip, Wt as Braze, H as Breadcrumb, U as BreadcrumbEllipsis, W as BreadcrumbItem, G as BreadcrumbLink, K as BreadcrumbList, q as BreadcrumbPage, J as BreadcrumbSeparator, Gt as Brex, Kt as Brightdata, qt as Buffer, O as Button, he as ByocBadge, Ko as CATEGORIES, _e as Calendar, ge as CalendarDayButton, Jt as Calendly, ve as Card, ye as CardAction, be as CardContent, xe as CardDescription, Se as CardFooter, Ce as CardHeader, we as CardTitle, Te as ChartContainer, Ee as ChartLegend, De as ChartLegendContent, Oe as ChartStyle, ke as ChartTooltip, Ae as ChartTooltipContent, go as ChatAssistantMessage, Qs as ChatBodySkeleton, je as ChatContainerContent, Me as ChatContainerRoot, Ne as ChatContainerScrollAnchor, $s as ChatContentSkeleton, ec as ChatFooterSkeleton, tc as ChatHeaderSkeleton, lo as ChatHistoryItem, _o as ChatMessageList, vo as ChatMessageListSkeleton, rc as ChatPageSkeleton, nc as ChatSidebarSkeleton, yo as ChatStreamingIndicator, Us as ChatTemplate, Ws as ChatTemplateBody, Gs as ChatTemplateFooter, Ks as ChatTemplateHeader, qs as ChatTemplateHeaderGroup, Js as ChatTemplateOverview, Ys as ChatTemplateOverviewSubtitle, Xs as ChatTemplateOverviewTitle, Zs as ChatTemplateSuggestions, bo as ChatUserMessage, Pe as Checkbox, Yt as Claude, Xt as ClaudeCodeLogotype, Zt as Clickhouse, Qt as Clickup, xo as ClientSecretInput, $t as Cline, en as Closeio, Ie as CodeBlock, Le as CodeBlockCode, Re as CodeBlockGroup, tn as Codesandbox, nn as Coinbase, Ve as Collapsible, ze as CollapsibleContent, Be as CollapsibleTrigger, Xe as Command, So as CommandBar, Ke as CommandDialog, Je as CommandEmpty, We as CommandGroup, He as CommandInput, qe as CommandItem, Ye as CommandList, Ue as CommandSeparator, Ge as CommandShortcut, co as ConfirmPopover, rn as Confluence, st as CopyButton, an as Cursor, on as CursorInstallDark, sn as CursorInstallLight, cn as CursorLogotype, ln as Customerio, kc as DEFAULT_MCP_CLIENT_IDS, Ac as DEFAULT_MCP_SERVER_IDS, La as DS_SPARKLE_DURATION_MS, un as Datadog, Co as DateTimePicker, dn as Daytona, Ze as Dialog, Qe as DialogClose, $e as DialogContent, et as DialogDescription, tt as DialogFooter, nt as DialogHeader, rt as DialogOverlay, it as DialogPortal, at as DialogTitle, ot as DialogTrigger, fn as DigitalOcean, pn as Discord, mn as Dropbox, xt as DropdownMenu, gt as DropdownMenuCheckboxItem, yt as DropdownMenuContent, pt as DropdownMenuGroup, ct as DropdownMenuItem, _t as DropdownMenuLabel, bt as DropdownMenuPortal, lt as DropdownMenuRadioGroup, mt as DropdownMenuRadioItem, St as DropdownMenuSeparator, ut as DropdownMenuShortcut, dt as DropdownMenuSub, vt as DropdownMenuSubContent, ht as DropdownMenuSubTrigger, ft as DropdownMenuTrigger, hn as E2b, gn as Ebay, wo as EmptyState, To as ErrorState, bc as ErrorTemplate, xc as ErrorTemplateActions, Sc as ErrorTemplateContent, Cc as ErrorTemplateDescription, wc as ErrorTemplateIcon, Tc as ErrorTemplateLogo, Ec as ErrorTemplateTitle, Dc as ErrorTemplateUrl, _n as Evernote, vn as Exa, yn as Factorial, bn as Figma, Ct as FilterChip, xn as Firecrawl, Sn as Fireflies, Eo as FlowDiagram, Cn as FlyIo, wn as Forkable, Tn as Freshdesk, En as Freshservice, jc as GatewayDiagram, Dn as Gemini, On as Generic, kn as Github, An as Gitlab, jn as Glean, Mn as Gmail, Nn as Google, Pn as GoogleCalendar, Fn as GoogleContacts, In as GoogleDocs, Ln as GoogleDrive, Rn as GoogleFinance, zn as GoogleFlight, Bn as GoogleFlights, Vn as GoogleForms, Hn as GoogleHotels, Un as GoogleJobs, Wn as GoogleMaps, Gn as GoogleNews, Kn as GoogleSheets, qn as GoogleShopping, Jn as GoogleSlides, Yn as Goose, Xn as Granola, Zn as Heroku, Qn as Hootsuite, m as HoverCard, f as HoverCardContent, p as HoverCardTrigger, $n as Hubspot, er as Imgflip, Pi as Input, Ii as InputGroup, Li as InputGroupAddon, Ri as InputGroupButton, zi as InputGroupInput, Bi as InputGroupText, Vi as InputGroupTextarea, tr as Insightly, nr as Intercom, rr as Jira, Hi as JsonHighlight, Wi as Label, ir as Langchain, ar as LangchainLogotype, or as Linear, sr as Linkedin, Gi as Loader, yc as LoginPage, cr as Luma, Oc as MCP_CLIENT_METADATA, Ro as MCP_OAUTH2_PROVIDER, lr as Mailchimp, Fe as Markdown, ur as Mastra, dr as MastraLogotype, fr as MathToolkit, pr as Mcp, Do as McpCategoryFilter, Oo as McpCategoryFilterMenu, Ao as McpRecommendedToolsCallout, jo as McpRecommendedToolsDeactivateDialog, Mo as McpRecommendedToolsOptOutDialog, No as McpReviewCountChip, Po as McpSearchScopeTabs, ko as McpSectionCallout, Fo as McpSectionNavHeader, Rs as McpSelectionSummaryBar, cs as McpServerAvatarStack, ls as McpServerCard, zs as McpServerPicker, Bs as McpServerPickerGrid, Vs as McpServerPickerHeader, Hs as McpServerPickerToolGrid, ds as McpToolCard, fs as McpToolSearchBand, os as McpToolkitAvatar, ps as McpToolkitChip, ms as McpToolkitGroupHeader, hs as McpUnoptimizedMatchCard, uo as Message, fo as MessageAction, po as MessageActions, mo as MessageAvatar, ho as MessageContent, mr as Microsoft, hr as MicrosoftDynamics, gr as MicrosoftExcel, _r as MicrosoftOnedrive, vr as MicrosoftOutlookCalendar, yr as MicrosoftOutlookMail, br as MicrosoftPowerpoint, xr as MicrosoftSharepoint, Sr as MicrosoftTeams, Cr as MicrosoftWord, wr as Miro, de as MobileTooltip, fe as MobileTooltipContent, pe as MobileTooltipProvider, me as MobileTooltipTrigger, Tr as Monday, Er as MongoDB, Dr as Netsuite, Or as Notion, zo as OAUTH2_PROVIDER, Bo as OAUTH_PROVIDERS, Vo as OAUTH_PROVIDER_CATALOGUE, Ho as OAuthId, Uo as OAuthProviderId, Wo as OTHER_OAUTH_PROVIDERS, kr as Oauth, Ar as Obsidian, jr as Okta, Mr as Openai, Go as PREBUILT_OAUTH_PROVIDERS, Io as PUBLIC_ICON_URL, Lo as PUBLIC_VIDEO_URL, Nr as Pagerduty, Pr as Pinecone, Fr as Pinterest, Ir as Pipedrive, Lr as Plaid, ee as Popover, Z as PopoverContent, $ as PopoverDescription, X as PopoverHeader, Y as PopoverTitle, Q as PopoverTrigger, Rr as Postgres, zr as Posthog, Br as Postman, Ki as ProBadge, Ni as Progress, ji as ProgressIndicator, Mi as ProgressLabel, Ai as ProgressTrack, ki as ProgressValue, gs as PromptInput, _s as PromptInputAction, vs as PromptInputActions, ys as PromptInputTextarea, Vr as Pylon, Hr as Quickbooks, Oi as RadioGroup, Di as RadioGroupItem, Ur as Railway, Wr as Reddit, qi as RemovableChip, Ji as RemovableChipButton, bs as RequirementBadges, Gr as Resend, Qi as ResizableHandle, Xi as ResizablePanel, Zi as ResizablePanelGroup, Kr as Salesforce, ea as ScrollArea, $i as ScrollBar, ta as ScrollButton, le as Select, ae as SelectContent, se as SelectGroup, re as SelectItem, te as SelectLabel, oe as SelectScrollDownButton, ce as SelectScrollUpButton, ne as SelectSeparator, ie as SelectTrigger, ue as SelectValue, na as Separator, ra as Sheet, ia as SheetClose, aa as SheetContent, oa as SheetDescription, sa as SheetFooter, ca as SheetHeader, la as SheetTitle, ua as SheetTrigger, qr as Shopify, fa as Sidebar, pa as SidebarContent, ma as SidebarFooter, ha as SidebarGroup, ga as SidebarGroupAction, _a as SidebarGroupContent, va as SidebarGroupLabel, ya as SidebarHeader, ba as SidebarInput, xa as SidebarInset, Sa as SidebarMenu, Ca as SidebarMenuAction, wa as SidebarMenuBadge, Ta as SidebarMenuButton, Ea as SidebarMenuItem, Da as SidebarMenuSkeleton, Oa as SidebarMenuSub, ka as SidebarMenuSubButton, Aa as SidebarMenuSubItem, ja as SidebarProvider, Ma as SidebarRail, Na as SidebarSeparator, Pa as SidebarTrigger, Jr as Singlestore, da as Skeleton, Yr as Slack, Ia as Slider, Xr as Snowflake, Ra as SparkleBurst, Zr as Splunk, Qr as Spotify, $r as Square, ei as Squarespace, ti as Squareup, za as StepIndicator, Ss as StepsProgress, ni as Stripe, Cs as SuggestionCard, ws as SuggestionCardSkeleton, Ha as Switch, qo as TOOLKITS, Jo as TOOLKIT_CATALOGUE, es as TOOLKIT_ICON_MAP, Ua as Table, Wa as TableBody, Ga as TableCaption, Ka as TableCell, qa as TableFooter, Ja as TableHead, Ya as TableHeader, Xa as TableRow, to as Tabs, $a as TabsContent, eo as TabsList, Qa as TabsTrigger, Ts as TagsInput, Es as TagsInputValue, ri as Telegram, ii as Tesla, Fi as Textarea, ai as Ticktick, oi as Tiktok, no as Toggle, ao as ToggleGroup, io as ToggleGroupChip, Ds as ToolAuthorization, Os as ToolAuthorizationArgs, ks as ToolAuthorizationContent, As as ToolAuthorizationHeader, js as ToolAuthorizationMessage, Ms as ToolCallAccordion, Ns as ToolCallAccordionContent, Ps as ToolCallAccordionItem, Fs as ToolCallAccordionTrigger, Is as ToolCard, xs as ToolkitCard, d as Tooltip, l as TooltipContent, u as TooltipProvider, c as TooltipTrigger, si as Trello, ci as Twilio, li as Twitch, Ls as UserNav, ui as Vercel, di as VercelLogotype, oo as ViewToolsControl, so as VirtualizedGrid, fi as Vscode, pi as Walmart, mi as Weaviate, hi as Windsurf, gi as Workday, _i as Wrike, vi as X, yi as Xero, bi as Youtube, xi as Yugabytedb, Si as Zendesk, Ci as Zoho, wi as ZohoBooks, Ti as ZohoCreator, Ei as Zoom, R as avatarBadgeVariants, B as badgeVariants, D as buttonVariants, wt as filterChipVariants, Yo as findPrebuiltProviderById, Xo as findPrebuiltProviderByProviderId, Zo as findToolkitByName, ts as getToolIconByToolkitName, ns as getToolkitIcon, rs as getToolkitIconByName, is as hasToolkitIcon, Qo as isKnownToolkit, $o as isPrebuiltProvider, Ui as jsonHighlightVariants, us as mcpServerCardShellVariants, ss as mcpToolkitAvatarVariants, Yi as removableChipButtonClass, as as resolveToolkitIcon, Ba as stepIndicatorIconVariants, Va as stepIndicatorLabelVariants, Za as tabsListVariants, ro as toggleVariants, Fa as useSidebar };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"toolkit-icons.d.ts","sourceRoot":"","sources":["../../lib/metadata/toolkit-icons.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AAItC,MAAM,MAAM,qBAAqB,GAAG;IAClC,KAAK,EAAE,MAAM,CAAC;CACf,CAAC;AAGF,eAAO,MAAM,gBAAgB,EAAE,MAAM,CACnC,MAAM,EACN,CAAC,KAAK,EAAE,QAAQ,CAAC,aAAa,CAAC,KAAK,KAAK,CAAC,GAAG,CAAC,OAAO,
|
|
1
|
+
{"version":3,"file":"toolkit-icons.d.ts","sourceRoot":"","sources":["../../lib/metadata/toolkit-icons.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AAItC,MAAM,MAAM,qBAAqB,GAAG;IAClC,KAAK,EAAE,MAAM,CAAC;CACf,CAAC;AAGF,eAAO,MAAM,gBAAgB,EAAE,MAAM,CACnC,MAAM,EACN,CAAC,KAAK,EAAE,QAAQ,CAAC,aAAa,CAAC,KAAK,KAAK,CAAC,GAAG,CAAC,OAAO,CA6KtD,CAAC;AAaF;;;;GAIG;AACH,eAAO,MAAM,kBAAkB,GAC7B,WAAW,MAAM,GAAG,SAAS,KAC5B;IACD,IAAI,EAAE,CAAC,KAAK,EAAE,QAAQ,CAAC,aAAa,CAAC,KAAK,KAAK,CAAC,GAAG,CAAC,OAAO,CAAC;IAC5D,YAAY,EAAE,OAAO,CAAC;CAMvB,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,cAAc,GACzB,WAAW,MAAM,GAAG,SAAS,KAC5B,CAAC,CAAC,KAAK,EAAE,QAAQ,CAAC,aAAa,CAAC,KAAK,KAAK,CAAC,GAAG,CAAC,OAAO,CACrB,CAAC;AAErC;;;;GAIG;AACH,eAAO,MAAM,cAAc,GAAI,WAAW,MAAM,GAAG,SAAS,KAAG,OACnB,CAAC;AAE7C;;;;GAIG;AACH,eAAO,MAAM,oBAAoB,GAC/B,aAAa,MAAM,KAClB,CAAC,CAAC,KAAK,EAAE;IAAE,SAAS,CAAC,EAAE,MAAM,CAAA;CAAE,KAAK,KAAK,CAAC,YAAY,CAQxD,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,wBAAwB,GACnC,aAAa,MAAM,KAClB,CAAC,CAAC,KAAK,EAAE;IAAE,SAAS,CAAC,EAAE,MAAM,CAAA;CAAE,KAAK,KAAK,CAAC,YAAY,CAQxD,CAAC"}
|