@arcadeai/design-system 3.42.6 → 3.43.1
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/apollo.js +10 -0
- package/dist/components/index.js +553 -551
- package/dist/components/ui/atoms/icons/apollo.d.ts +4 -0
- package/dist/components/ui/atoms/icons/apollo.d.ts.map +1 -0
- package/dist/components/ui/atoms/icons/apollo.js +27 -0
- package/dist/components/ui/atoms/icons/index.d.ts +1 -0
- package/dist/components/ui/atoms/icons/index.d.ts.map +1 -1
- package/dist/components/ui/atoms/icons/index.js +306 -304
- package/dist/components/ui/atoms/index.js +452 -450
- package/dist/components/ui/index.js +553 -551
- package/dist/main.js +582 -580
- package/dist/metadata/mcp-clients.d.ts +8 -0
- package/dist/metadata/mcp-clients.d.ts.map +1 -1
- package/dist/metadata/mcp-clients.js +15 -12
- package/dist/metadata/toolkit-icons.d.ts.map +1 -1
- package/dist/metadata/toolkit-icons.js +224 -222
- package/dist/metadata/toolkits.d.ts.map +1 -1
- package/dist/metadata/toolkits.js +13 -0
- package/package.json +1 -1
|
@@ -49,6 +49,14 @@ export declare const MCP_CLIENT_METADATA: {
|
|
|
49
49
|
readonly label: "Codex";
|
|
50
50
|
readonly Icon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
|
|
51
51
|
};
|
|
52
|
+
readonly chatgpt: {
|
|
53
|
+
readonly label: "ChatGPT";
|
|
54
|
+
readonly Icon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
|
|
55
|
+
};
|
|
56
|
+
readonly mcp_url: {
|
|
57
|
+
readonly label: "MCP URL";
|
|
58
|
+
readonly Icon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
|
|
59
|
+
};
|
|
52
60
|
};
|
|
53
61
|
export type McpClientId = keyof typeof MCP_CLIENT_METADATA;
|
|
54
62
|
//# sourceMappingURL=mcp-clients.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mcp-clients.d.ts","sourceRoot":"","sources":["../../lib/metadata/mcp-clients.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AAGtC;;;;;;;;;;;;GAYG;AACH,eAAO,MAAM,mBAAmB
|
|
1
|
+
{"version":3,"file":"mcp-clients.d.ts","sourceRoot":"","sources":["../../lib/metadata/mcp-clients.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AAGtC;;;;;;;;;;;;GAYG;AACH,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkB/B,CAAC;AAEF,MAAM,MAAM,WAAW,GAAG,MAAM,OAAO,mBAAmB,CAAC"}
|
|
@@ -1,23 +1,26 @@
|
|
|
1
1
|
import "react/jsx-runtime";
|
|
2
2
|
import { Claude as o } from "../components/ui/atoms/icons/claude.js";
|
|
3
|
-
import { Cline as
|
|
4
|
-
import { Cursor as
|
|
5
|
-
import { Gemini as
|
|
3
|
+
import { Cline as l } from "../components/ui/atoms/icons/cline.js";
|
|
4
|
+
import { Cursor as r } from "../components/ui/atoms/icons/cursor.js";
|
|
5
|
+
import { Gemini as c } from "../components/ui/atoms/icons/gemini.js";
|
|
6
6
|
import { Goose as i } from "../components/ui/atoms/icons/goose.js";
|
|
7
|
-
import {
|
|
7
|
+
import { Mcp as m } from "../components/ui/atoms/icons/mcp.js";
|
|
8
|
+
import { Openai as e } from "../components/ui/atoms/icons/openai.js";
|
|
8
9
|
import { Vscode as n } from "../components/ui/atoms/icons/vscode.js";
|
|
9
|
-
import { Windsurf as
|
|
10
|
-
const
|
|
11
|
-
cursor: { label: "Cursor", Icon:
|
|
10
|
+
import { Windsurf as a } from "../components/ui/atoms/icons/windsurf.js";
|
|
11
|
+
const G = {
|
|
12
|
+
cursor: { label: "Cursor", Icon: r },
|
|
12
13
|
vscode: { label: "VS Code", Icon: n },
|
|
13
14
|
claude_code: { label: "Claude Code", Icon: o },
|
|
14
15
|
claude_desktop: { label: "Claude Desktop", Icon: o },
|
|
15
16
|
goose: { label: "Goose", Icon: i },
|
|
16
|
-
windsurf: { label: "Windsurf", Icon:
|
|
17
|
-
cline: { label: "Cline", Icon:
|
|
18
|
-
gemini_cli: { label: "Gemini CLI", Icon:
|
|
19
|
-
codex: { label: "Codex", Icon:
|
|
17
|
+
windsurf: { label: "Windsurf", Icon: a },
|
|
18
|
+
cline: { label: "Cline", Icon: l },
|
|
19
|
+
gemini_cli: { label: "Gemini CLI", Icon: c },
|
|
20
|
+
codex: { label: "Codex", Icon: e },
|
|
21
|
+
chatgpt: { label: "ChatGPT", Icon: e },
|
|
22
|
+
mcp_url: { label: "MCP URL", Icon: m }
|
|
20
23
|
};
|
|
21
24
|
export {
|
|
22
|
-
|
|
25
|
+
G as MCP_CLIENT_METADATA
|
|
23
26
|
};
|
|
@@ -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,CAmKtD,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,CAYxD,CAAC;AAEF;;;;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"}
|
|
@@ -3,134 +3,135 @@ import { Adp as O } from "../components/ui/atoms/icons/adp.js";
|
|
|
3
3
|
import { Aha as w } from "../components/ui/atoms/icons/aha.js";
|
|
4
4
|
import { Airtable as f } from "../components/ui/atoms/icons/airtable.js";
|
|
5
5
|
import { Amplitude as F } from "../components/ui/atoms/icons/amplitude.js";
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
6
|
+
import { Apollo as H } from "../components/ui/atoms/icons/apollo.js";
|
|
7
|
+
import { Arcade as x } from "../components/ui/atoms/icons/arcade.js";
|
|
8
|
+
import { Asana as v } from "../components/ui/atoms/icons/asana.js";
|
|
8
9
|
import { Ashby as a } from "../components/ui/atoms/icons/ashby.js";
|
|
9
|
-
import { Attio as
|
|
10
|
-
import { Auth0 as
|
|
11
|
-
import { Bamboohr as
|
|
12
|
-
import { Basecamp as
|
|
13
|
-
import { Bill as
|
|
14
|
-
import { Bitbucket as
|
|
15
|
-
import { Bluesky as
|
|
16
|
-
import { Box as
|
|
17
|
-
import { Braze as
|
|
18
|
-
import { Brex as
|
|
19
|
-
import { Brightdata as
|
|
20
|
-
import { Buffer as
|
|
21
|
-
import { Calendly as
|
|
22
|
-
import { Clickhouse as
|
|
23
|
-
import { Clickup as
|
|
24
|
-
import { Closeio as
|
|
25
|
-
import { Codesandbox as
|
|
26
|
-
import { Coinbase as
|
|
27
|
-
import { Confluence as
|
|
28
|
-
import { Cursor as
|
|
10
|
+
import { Attio as E } from "../components/ui/atoms/icons/attio.js";
|
|
11
|
+
import { Auth0 as I } from "../components/ui/atoms/icons/auth0.js";
|
|
12
|
+
import { Bamboohr as N } from "../components/ui/atoms/icons/bamboohr.js";
|
|
13
|
+
import { Basecamp as W } from "../components/ui/atoms/icons/basecamp.js";
|
|
14
|
+
import { Bill as L } from "../components/ui/atoms/icons/bill.js";
|
|
15
|
+
import { Bitbucket as q } from "../components/ui/atoms/icons/bitbucket.js";
|
|
16
|
+
import { Bluesky as Z } from "../components/ui/atoms/icons/bluesky.js";
|
|
17
|
+
import { Box as l } from "../components/ui/atoms/icons/box.js";
|
|
18
|
+
import { Braze as R } from "../components/ui/atoms/icons/braze.js";
|
|
19
|
+
import { Brex as X } from "../components/ui/atoms/icons/brex.js";
|
|
20
|
+
import { Brightdata as J } from "../components/ui/atoms/icons/brightdata.js";
|
|
21
|
+
import { Buffer as Y } from "../components/ui/atoms/icons/buffer.js";
|
|
22
|
+
import { Calendly as s } from "../components/ui/atoms/icons/calendly.js";
|
|
23
|
+
import { Clickhouse as z } from "../components/ui/atoms/icons/clickhouse.js";
|
|
24
|
+
import { Clickup as U } from "../components/ui/atoms/icons/clickup.js";
|
|
25
|
+
import { Closeio as j } from "../components/ui/atoms/icons/closeio.js";
|
|
26
|
+
import { Codesandbox as K } from "../components/ui/atoms/icons/codesandbox.js";
|
|
27
|
+
import { Coinbase as Q } from "../components/ui/atoms/icons/coinbase.js";
|
|
28
|
+
import { Confluence as V } from "../components/ui/atoms/icons/confluence.js";
|
|
29
|
+
import { Cursor as _ } from "../components/ui/atoms/icons/cursor.js";
|
|
29
30
|
import { Customerio as e } from "../components/ui/atoms/icons/customerio.js";
|
|
30
|
-
import { Datadog as
|
|
31
|
-
import { Daytona as
|
|
32
|
-
import { DigitalOcean as
|
|
33
|
-
import { Discord as
|
|
34
|
-
import { Dropbox as
|
|
35
|
-
import { E2b as
|
|
36
|
-
import { Ebay as
|
|
37
|
-
import { Evernote as
|
|
38
|
-
import { Exa as
|
|
39
|
-
import { Factorial as
|
|
31
|
+
import { Datadog as $ } from "../components/ui/atoms/icons/datadog.js";
|
|
32
|
+
import { Daytona as oo } from "../components/ui/atoms/icons/daytona.js";
|
|
33
|
+
import { DigitalOcean as ro } from "../components/ui/atoms/icons/digital-ocean.js";
|
|
34
|
+
import { Discord as io } from "../components/ui/atoms/icons/discord.js";
|
|
35
|
+
import { Dropbox as mo } from "../components/ui/atoms/icons/dropbox.js";
|
|
36
|
+
import { E2b as to } from "../components/ui/atoms/icons/e2b.js";
|
|
37
|
+
import { Ebay as eo } from "../components/ui/atoms/icons/ebay.js";
|
|
38
|
+
import { Evernote as po } from "../components/ui/atoms/icons/evernote.js";
|
|
39
|
+
import { Exa as fo } from "../components/ui/atoms/icons/exa.js";
|
|
40
|
+
import { Factorial as ao } from "../components/ui/atoms/icons/factorial.js";
|
|
40
41
|
import { Figma as n } from "../components/ui/atoms/icons/figma.js";
|
|
41
|
-
import { Firecrawl as
|
|
42
|
+
import { Firecrawl as lo } from "../components/ui/atoms/icons/firecrawl.js";
|
|
42
43
|
import { Forkable as so } from "../components/ui/atoms/icons/forkable.js";
|
|
43
|
-
import { Freshdesk as
|
|
44
|
-
import { Freshservice as
|
|
44
|
+
import { Freshdesk as no } from "../components/ui/atoms/icons/freshdesk.js";
|
|
45
|
+
import { Freshservice as co } from "../components/ui/atoms/icons/freshservice.js";
|
|
45
46
|
import { Generic as c } from "../components/ui/atoms/icons/generic.js";
|
|
46
|
-
import { Github as
|
|
47
|
-
import { Gitlab as
|
|
48
|
-
import { Gmail as
|
|
49
|
-
import { Google as
|
|
50
|
-
import { GoogleCalendar as
|
|
51
|
-
import { GoogleContacts as
|
|
52
|
-
import { GoogleDocs as
|
|
53
|
-
import { GoogleDrive as
|
|
54
|
-
import { GoogleFinance as
|
|
55
|
-
import { GoogleFlights as
|
|
56
|
-
import { GoogleHotels as
|
|
57
|
-
import { GoogleJobs as
|
|
58
|
-
import { GoogleMaps as
|
|
59
|
-
import { GoogleNews as
|
|
60
|
-
import { GoogleSheets as
|
|
61
|
-
import { GoogleShopping as
|
|
62
|
-
import { GoogleSlides as
|
|
63
|
-
import { Granola as
|
|
64
|
-
import { Heroku as
|
|
65
|
-
import { Hootsuite as
|
|
47
|
+
import { Github as uo } from "../components/ui/atoms/icons/github.js";
|
|
48
|
+
import { Gitlab as go } from "../components/ui/atoms/icons/gitlab.js";
|
|
49
|
+
import { Gmail as ko } from "../components/ui/atoms/icons/gmail.js";
|
|
50
|
+
import { Google as Ao } from "../components/ui/atoms/icons/google.js";
|
|
51
|
+
import { GoogleCalendar as bo } from "../components/ui/atoms/icons/google-calendar.js";
|
|
52
|
+
import { GoogleContacts as ho } from "../components/ui/atoms/icons/google-contacts.js";
|
|
53
|
+
import { GoogleDocs as Mo } from "../components/ui/atoms/icons/google-docs.js";
|
|
54
|
+
import { GoogleDrive as Co } from "../components/ui/atoms/icons/google-drive.js";
|
|
55
|
+
import { GoogleFinance as yo } from "../components/ui/atoms/icons/google-finance.js";
|
|
56
|
+
import { GoogleFlights as Go } from "../components/ui/atoms/icons/google-flights.js";
|
|
57
|
+
import { GoogleHotels as So } from "../components/ui/atoms/icons/google-hotels.js";
|
|
58
|
+
import { GoogleJobs as Bo } from "../components/ui/atoms/icons/google-jobs.js";
|
|
59
|
+
import { GoogleMaps as Po } from "../components/ui/atoms/icons/google-maps.js";
|
|
60
|
+
import { GoogleNews as To } from "../components/ui/atoms/icons/google-news.js";
|
|
61
|
+
import { GoogleSheets as Do } from "../components/ui/atoms/icons/google-sheets.js";
|
|
62
|
+
import { GoogleShopping as Oo } from "../components/ui/atoms/icons/google-shopping.js";
|
|
63
|
+
import { GoogleSlides as wo } from "../components/ui/atoms/icons/google-slides.js";
|
|
64
|
+
import { Granola as Fo } from "../components/ui/atoms/icons/granola.js";
|
|
65
|
+
import { Heroku as Ho } from "../components/ui/atoms/icons/heroku.js";
|
|
66
|
+
import { Hootsuite as xo } from "../components/ui/atoms/icons/hootsuite.js";
|
|
66
67
|
import { Hubspot as o } from "../components/ui/atoms/icons/hubspot.js";
|
|
67
|
-
import { Imgflip as
|
|
68
|
-
import { Intercom as
|
|
69
|
-
import { Jira as
|
|
70
|
-
import { Linear as
|
|
71
|
-
import { Linkedin as
|
|
72
|
-
import { Luma as
|
|
68
|
+
import { Imgflip as vo } from "../components/ui/atoms/icons/imgflip.js";
|
|
69
|
+
import { Intercom as Eo } from "../components/ui/atoms/icons/intercom.js";
|
|
70
|
+
import { Jira as Io } from "../components/ui/atoms/icons/jira.js";
|
|
71
|
+
import { Linear as No } from "../components/ui/atoms/icons/linear.js";
|
|
72
|
+
import { Linkedin as Wo } from "../components/ui/atoms/icons/linkedin.js";
|
|
73
|
+
import { Luma as Lo } from "../components/ui/atoms/icons/luma.js";
|
|
73
74
|
import { Mailchimp as u } from "../components/ui/atoms/icons/mailchimp.js";
|
|
74
|
-
import { MathToolkit as
|
|
75
|
-
import { Mcp as
|
|
76
|
-
import { MicrosoftDynamics as
|
|
77
|
-
import { MicrosoftExcel as
|
|
78
|
-
import { MicrosoftOnedrive as
|
|
75
|
+
import { MathToolkit as qo } from "../components/ui/atoms/icons/math-toolkit.js";
|
|
76
|
+
import { Mcp as Zo } from "../components/ui/atoms/icons/mcp.js";
|
|
77
|
+
import { MicrosoftDynamics as Ro } from "../components/ui/atoms/icons/microsoft-dynamics.js";
|
|
78
|
+
import { MicrosoftExcel as Xo } from "../components/ui/atoms/icons/microsoft-excel.js";
|
|
79
|
+
import { MicrosoftOnedrive as Jo } from "../components/ui/atoms/icons/microsoft-onedrive.js";
|
|
79
80
|
import { MicrosoftOutlookCalendar as g } from "../components/ui/atoms/icons/microsoft-outlook-calendar.js";
|
|
80
81
|
import { MicrosoftOutlookMail as k } from "../components/ui/atoms/icons/microsoft-outlook-mail.js";
|
|
81
|
-
import { MicrosoftPowerpoint as
|
|
82
|
+
import { MicrosoftPowerpoint as Yo } from "../components/ui/atoms/icons/microsoft-powerpoint.js";
|
|
82
83
|
import { MicrosoftSharepoint as A } from "../components/ui/atoms/icons/microsoft-sharepoint.js";
|
|
83
|
-
import { MicrosoftTeams as
|
|
84
|
-
import { MicrosoftWord as
|
|
84
|
+
import { MicrosoftTeams as zo } from "../components/ui/atoms/icons/microsoft-teams.js";
|
|
85
|
+
import { MicrosoftWord as Uo } from "../components/ui/atoms/icons/microsoft-word.js";
|
|
85
86
|
import { Miro as d } from "../components/ui/atoms/icons/miro.js";
|
|
86
|
-
import { Monday as
|
|
87
|
-
import { MongoDB as
|
|
88
|
-
import { Netsuite as
|
|
87
|
+
import { Monday as jo } from "../components/ui/atoms/icons/monday.js";
|
|
88
|
+
import { MongoDB as Ko } from "../components/ui/atoms/icons/mongodb.js";
|
|
89
|
+
import { Netsuite as Qo } from "../components/ui/atoms/icons/netsuite.js";
|
|
89
90
|
import { Notion as b } from "../components/ui/atoms/icons/notion.js";
|
|
90
|
-
import { Obsidian as
|
|
91
|
-
import { Okta as
|
|
91
|
+
import { Obsidian as Vo } from "../components/ui/atoms/icons/obsidian.js";
|
|
92
|
+
import { Okta as _o } from "../components/ui/atoms/icons/okta.js";
|
|
92
93
|
import { Pagerduty as h } from "../components/ui/atoms/icons/pagerduty.js";
|
|
93
|
-
import { Pinecone as
|
|
94
|
-
import { Pinterest as
|
|
95
|
-
import { Pipedrive as
|
|
96
|
-
import { Plaid as
|
|
97
|
-
import { Postgres as
|
|
94
|
+
import { Pinecone as $o } from "../components/ui/atoms/icons/pinecone.js";
|
|
95
|
+
import { Pinterest as or } from "../components/ui/atoms/icons/pinterest.js";
|
|
96
|
+
import { Pipedrive as rr } from "../components/ui/atoms/icons/pipedrive.js";
|
|
97
|
+
import { Plaid as ir } from "../components/ui/atoms/icons/plaid.js";
|
|
98
|
+
import { Postgres as mr } from "../components/ui/atoms/icons/postgres.js";
|
|
98
99
|
import { Posthog as M } from "../components/ui/atoms/icons/posthog.js";
|
|
99
100
|
import { Pylon as C } from "../components/ui/atoms/icons/pylon.js";
|
|
100
|
-
import { Quickbooks as
|
|
101
|
-
import { Railway as
|
|
102
|
-
import { Reddit as
|
|
103
|
-
import { Resend as
|
|
104
|
-
import { Salesforce as
|
|
105
|
-
import { Shopify as
|
|
101
|
+
import { Quickbooks as tr } from "../components/ui/atoms/icons/quickbooks.js";
|
|
102
|
+
import { Railway as er } from "../components/ui/atoms/icons/railway.js";
|
|
103
|
+
import { Reddit as pr } from "../components/ui/atoms/icons/reddit.js";
|
|
104
|
+
import { Resend as fr } from "../components/ui/atoms/icons/resend.js";
|
|
105
|
+
import { Salesforce as ar } from "../components/ui/atoms/icons/salesforce.js";
|
|
106
|
+
import { Shopify as lr } from "../components/ui/atoms/icons/shopify.js";
|
|
106
107
|
import { Singlestore as sr } from "../components/ui/atoms/icons/singlestore.js";
|
|
107
108
|
import { Slack as y } from "../components/ui/atoms/icons/slack.js";
|
|
108
|
-
import { Snowflake as
|
|
109
|
-
import { Splunk as
|
|
110
|
-
import { Spotify as
|
|
109
|
+
import { Snowflake as nr } from "../components/ui/atoms/icons/snowflake.js";
|
|
110
|
+
import { Splunk as cr } from "../components/ui/atoms/icons/splunk.js";
|
|
111
|
+
import { Spotify as ur } from "../components/ui/atoms/icons/spotify.js";
|
|
111
112
|
import { Square as p } from "../components/ui/atoms/icons/square.js";
|
|
112
|
-
import { Squarespace as
|
|
113
|
-
import { Squareup as
|
|
113
|
+
import { Squarespace as gr } from "../components/ui/atoms/icons/squarespace.js";
|
|
114
|
+
import { Squareup as kr } from "../components/ui/atoms/icons/squareup.js";
|
|
114
115
|
import { Stripe as G } from "../components/ui/atoms/icons/stripe.js";
|
|
115
|
-
import { Telegram as
|
|
116
|
-
import { Ticktick as
|
|
117
|
-
import { Tiktok as
|
|
118
|
-
import { Trello as
|
|
119
|
-
import { Twilio as
|
|
120
|
-
import { Twitch as
|
|
121
|
-
import { Vercel as
|
|
122
|
-
import { Walmart as
|
|
123
|
-
import { Weaviate as
|
|
124
|
-
import { Workday as
|
|
125
|
-
import { Wrike as
|
|
126
|
-
import { X as
|
|
116
|
+
import { Telegram as Ar } from "../components/ui/atoms/icons/telegram.js";
|
|
117
|
+
import { Ticktick as dr } from "../components/ui/atoms/icons/ticktick.js";
|
|
118
|
+
import { Tiktok as br } from "../components/ui/atoms/icons/tiktok.js";
|
|
119
|
+
import { Trello as hr } from "../components/ui/atoms/icons/trello.js";
|
|
120
|
+
import { Twilio as Mr } from "../components/ui/atoms/icons/twilio.js";
|
|
121
|
+
import { Twitch as Cr } from "../components/ui/atoms/icons/twitch.js";
|
|
122
|
+
import { Vercel as yr } from "../components/ui/atoms/icons/vercel.js";
|
|
123
|
+
import { Walmart as Gr } from "../components/ui/atoms/icons/walmart.js";
|
|
124
|
+
import { Weaviate as Sr } from "../components/ui/atoms/icons/weaviate.js";
|
|
125
|
+
import { Workday as Br } from "../components/ui/atoms/icons/workday.js";
|
|
126
|
+
import { Wrike as Pr } from "../components/ui/atoms/icons/wrike.js";
|
|
127
|
+
import { X as Tr } from "../components/ui/atoms/icons/x.js";
|
|
127
128
|
import { Xero as S } from "../components/ui/atoms/icons/xero.js";
|
|
128
|
-
import { Youtube as
|
|
129
|
-
import { Yugabytedb as
|
|
130
|
-
import { Zendesk as
|
|
131
|
-
import { ZohoBooks as
|
|
132
|
-
import { ZohoCreator as
|
|
133
|
-
import { Zoom as
|
|
129
|
+
import { Youtube as Dr } from "../components/ui/atoms/icons/youtube.js";
|
|
130
|
+
import { Yugabytedb as Or } from "../components/ui/atoms/icons/yugabytedb.js";
|
|
131
|
+
import { Zendesk as wr } from "../components/ui/atoms/icons/zendesk.js";
|
|
132
|
+
import { ZohoBooks as Fr } from "../components/ui/atoms/icons/zoho-books.js";
|
|
133
|
+
import { ZohoCreator as Hr } from "../components/ui/atoms/icons/zoho-creator.js";
|
|
134
|
+
import { Zoom as xr } from "../components/ui/atoms/icons/zoom.js";
|
|
134
135
|
import { findToolkitByName as T } from "./utils.js";
|
|
135
136
|
const B = {
|
|
136
137
|
ADPWorkforceNow: O,
|
|
@@ -138,71 +139,72 @@ const B = {
|
|
|
138
139
|
Airtable: f,
|
|
139
140
|
AirtableApi: f,
|
|
140
141
|
Amplitude: F,
|
|
141
|
-
|
|
142
|
-
|
|
142
|
+
Apollo: H,
|
|
143
|
+
ArcadeEngineApi: x,
|
|
144
|
+
Asana: v,
|
|
143
145
|
Ashby: a,
|
|
144
146
|
AshbyApi: a,
|
|
145
|
-
Attio:
|
|
146
|
-
Auth0:
|
|
147
|
-
BambooHR:
|
|
148
|
-
Basecamp:
|
|
149
|
-
BillCom:
|
|
150
|
-
Bitbucket:
|
|
151
|
-
Bluesky:
|
|
152
|
-
Box:
|
|
153
|
-
BoxApi:
|
|
154
|
-
Braze:
|
|
155
|
-
Brex:
|
|
156
|
-
Brightdata:
|
|
157
|
-
Buffer:
|
|
158
|
-
Calendly:
|
|
159
|
-
CalendlyApi:
|
|
160
|
-
Clickhouse:
|
|
161
|
-
ClickUp:
|
|
162
|
-
CloseIO:
|
|
163
|
-
Codesandbox:
|
|
164
|
-
Coinbase:
|
|
165
|
-
Confluence:
|
|
166
|
-
CursorAgentsApi:
|
|
147
|
+
Attio: E,
|
|
148
|
+
Auth0: I,
|
|
149
|
+
BambooHR: N,
|
|
150
|
+
Basecamp: W,
|
|
151
|
+
BillCom: L,
|
|
152
|
+
Bitbucket: q,
|
|
153
|
+
Bluesky: Z,
|
|
154
|
+
Box: l,
|
|
155
|
+
BoxApi: l,
|
|
156
|
+
Braze: R,
|
|
157
|
+
Brex: X,
|
|
158
|
+
Brightdata: J,
|
|
159
|
+
Buffer: Y,
|
|
160
|
+
Calendly: s,
|
|
161
|
+
CalendlyApi: s,
|
|
162
|
+
Clickhouse: z,
|
|
163
|
+
ClickUp: U,
|
|
164
|
+
CloseIO: j,
|
|
165
|
+
Codesandbox: K,
|
|
166
|
+
Coinbase: Q,
|
|
167
|
+
Confluence: V,
|
|
168
|
+
CursorAgentsApi: _,
|
|
167
169
|
CustomerioApi: e,
|
|
168
170
|
CustomerioPipelinesApi: e,
|
|
169
171
|
CustomerioTrackApi: e,
|
|
170
|
-
DatadogApi:
|
|
171
|
-
Daytona:
|
|
172
|
-
DigitalOcean:
|
|
173
|
-
Discord:
|
|
174
|
-
Dropbox:
|
|
175
|
-
E2b:
|
|
176
|
-
EBay:
|
|
177
|
-
Evernote:
|
|
178
|
-
ExaApi:
|
|
179
|
-
Factorial:
|
|
172
|
+
DatadogApi: $,
|
|
173
|
+
Daytona: oo,
|
|
174
|
+
DigitalOcean: ro,
|
|
175
|
+
Discord: io,
|
|
176
|
+
Dropbox: mo,
|
|
177
|
+
E2b: to,
|
|
178
|
+
EBay: eo,
|
|
179
|
+
Evernote: po,
|
|
180
|
+
ExaApi: fo,
|
|
181
|
+
Factorial: ao,
|
|
180
182
|
Figma: n,
|
|
181
183
|
FigmaApi: n,
|
|
182
|
-
Firecrawl:
|
|
184
|
+
Firecrawl: lo,
|
|
183
185
|
Forkable: so,
|
|
184
|
-
Freshdesk:
|
|
185
|
-
FreshserviceApi:
|
|
186
|
-
Github:
|
|
187
|
-
GitLab:
|
|
188
|
-
Gmail:
|
|
189
|
-
GoogleCalendar:
|
|
190
|
-
GoogleContacts:
|
|
191
|
-
GoogleDocs:
|
|
192
|
-
GoogleDrive:
|
|
193
|
-
GoogleFinance:
|
|
194
|
-
GoogleFlights:
|
|
195
|
-
GoogleHotels:
|
|
196
|
-
GoogleJobs:
|
|
197
|
-
GoogleMaps:
|
|
198
|
-
GoogleNews:
|
|
199
|
-
GoogleSearch:
|
|
200
|
-
GoogleSheets:
|
|
201
|
-
GoogleShopping:
|
|
202
|
-
GoogleSlides:
|
|
203
|
-
Granola:
|
|
204
|
-
Heroku:
|
|
205
|
-
Hootsuite:
|
|
186
|
+
Freshdesk: no,
|
|
187
|
+
FreshserviceApi: co,
|
|
188
|
+
Github: uo,
|
|
189
|
+
GitLab: go,
|
|
190
|
+
Gmail: ko,
|
|
191
|
+
GoogleCalendar: bo,
|
|
192
|
+
GoogleContacts: ho,
|
|
193
|
+
GoogleDocs: Mo,
|
|
194
|
+
GoogleDrive: Co,
|
|
195
|
+
GoogleFinance: yo,
|
|
196
|
+
GoogleFlights: Go,
|
|
197
|
+
GoogleHotels: So,
|
|
198
|
+
GoogleJobs: Bo,
|
|
199
|
+
GoogleMaps: Po,
|
|
200
|
+
GoogleNews: To,
|
|
201
|
+
GoogleSearch: Ao,
|
|
202
|
+
GoogleSheets: Do,
|
|
203
|
+
GoogleShopping: Oo,
|
|
204
|
+
GoogleSlides: wo,
|
|
205
|
+
Granola: Fo,
|
|
206
|
+
Heroku: Ho,
|
|
207
|
+
Hootsuite: xo,
|
|
206
208
|
Hubspot: o,
|
|
207
209
|
HubspotAutomationApi: o,
|
|
208
210
|
HubspotCmsApi: o,
|
|
@@ -212,87 +214,87 @@ const B = {
|
|
|
212
214
|
HubspotMarketingApi: o,
|
|
213
215
|
HubspotMeetingsApi: o,
|
|
214
216
|
HubspotUsersApi: o,
|
|
215
|
-
Imgflip:
|
|
216
|
-
IntercomApi:
|
|
217
|
-
Jira:
|
|
218
|
-
Linear:
|
|
219
|
-
Linkedin:
|
|
220
|
-
LumaApi:
|
|
217
|
+
Imgflip: vo,
|
|
218
|
+
IntercomApi: Eo,
|
|
219
|
+
Jira: Io,
|
|
220
|
+
Linear: No,
|
|
221
|
+
Linkedin: Wo,
|
|
222
|
+
LumaApi: Lo,
|
|
221
223
|
Mailchimp: u,
|
|
222
224
|
MailchimpMarketingApi: u,
|
|
223
|
-
Math:
|
|
224
|
-
MCP:
|
|
225
|
-
MicrosoftDynamics:
|
|
226
|
-
MicrosoftExcel:
|
|
225
|
+
Math: qo,
|
|
226
|
+
MCP: Zo,
|
|
227
|
+
MicrosoftDynamics: Ro,
|
|
228
|
+
MicrosoftExcel: Xo,
|
|
227
229
|
MicrosoftOutlookCalendar: g,
|
|
228
230
|
MicrosoftOutlookMail: k,
|
|
229
|
-
MicrosoftPowerpoint:
|
|
231
|
+
MicrosoftPowerpoint: Yo,
|
|
230
232
|
MicrosoftSharePoint: A,
|
|
231
233
|
Sharepoint: A,
|
|
232
|
-
MicrosoftTeams:
|
|
233
|
-
MicrosoftWord:
|
|
234
|
+
MicrosoftTeams: zo,
|
|
235
|
+
MicrosoftWord: Uo,
|
|
234
236
|
Miro: d,
|
|
235
237
|
MiroApi: d,
|
|
236
|
-
Monday:
|
|
237
|
-
MongoDB:
|
|
238
|
-
Netsuite:
|
|
238
|
+
Monday: jo,
|
|
239
|
+
MongoDB: Ko,
|
|
240
|
+
Netsuite: Qo,
|
|
239
241
|
Notion: b,
|
|
240
242
|
NotionToolkit: b,
|
|
241
|
-
Obsidian:
|
|
242
|
-
Okta:
|
|
243
|
-
MicrosoftOnedrive:
|
|
243
|
+
Obsidian: Vo,
|
|
244
|
+
Okta: _o,
|
|
245
|
+
MicrosoftOnedrive: Jo,
|
|
244
246
|
OutlookCalendar: g,
|
|
245
247
|
OutlookMail: k,
|
|
246
248
|
PagerDuty: h,
|
|
247
249
|
PagerDutyApi: h,
|
|
248
|
-
Pinecone:
|
|
249
|
-
Pinterest:
|
|
250
|
-
Pipedrive:
|
|
251
|
-
Plaid:
|
|
250
|
+
Pinecone: $o,
|
|
251
|
+
Pinterest: or,
|
|
252
|
+
Pipedrive: rr,
|
|
253
|
+
Plaid: ir,
|
|
252
254
|
Posthog: M,
|
|
253
255
|
PosthogApi: M,
|
|
254
|
-
Postgres:
|
|
256
|
+
Postgres: mr,
|
|
255
257
|
Pylon: C,
|
|
256
258
|
PylonApi: C,
|
|
257
|
-
Quickbooks:
|
|
258
|
-
Railway:
|
|
259
|
-
Reddit:
|
|
260
|
-
Resend:
|
|
261
|
-
Salesforce:
|
|
262
|
-
Shopify:
|
|
259
|
+
Quickbooks: tr,
|
|
260
|
+
Railway: er,
|
|
261
|
+
Reddit: pr,
|
|
262
|
+
Resend: fr,
|
|
263
|
+
Salesforce: ar,
|
|
264
|
+
Shopify: lr,
|
|
263
265
|
Singlestore: sr,
|
|
264
266
|
Slack: y,
|
|
265
267
|
SlackApi: y,
|
|
266
|
-
Snowflake:
|
|
267
|
-
Splunk:
|
|
268
|
-
Spotify:
|
|
268
|
+
Snowflake: nr,
|
|
269
|
+
Splunk: cr,
|
|
270
|
+
Spotify: ur,
|
|
269
271
|
Square: p,
|
|
270
|
-
Squareup:
|
|
272
|
+
Squareup: kr,
|
|
271
273
|
SquareupApi: p,
|
|
272
274
|
SquareUpApi: p,
|
|
273
|
-
Squarespace:
|
|
275
|
+
Squarespace: gr,
|
|
274
276
|
Stripe: G,
|
|
275
277
|
StripeApi: G,
|
|
276
|
-
Telegram:
|
|
277
|
-
Tiktok:
|
|
278
|
-
TickTickApi:
|
|
279
|
-
TrelloApi:
|
|
280
|
-
Twilio:
|
|
281
|
-
Twitch:
|
|
282
|
-
Vercel:
|
|
283
|
-
Walmart:
|
|
284
|
-
WeaviateApi:
|
|
285
|
-
Workday:
|
|
286
|
-
Wrike:
|
|
287
|
-
X:
|
|
278
|
+
Telegram: Ar,
|
|
279
|
+
Tiktok: br,
|
|
280
|
+
TickTickApi: dr,
|
|
281
|
+
TrelloApi: hr,
|
|
282
|
+
Twilio: Mr,
|
|
283
|
+
Twitch: Cr,
|
|
284
|
+
Vercel: yr,
|
|
285
|
+
Walmart: Gr,
|
|
286
|
+
WeaviateApi: Sr,
|
|
287
|
+
Workday: Br,
|
|
288
|
+
Wrike: Pr,
|
|
289
|
+
X: Tr,
|
|
288
290
|
Xero: S,
|
|
289
291
|
XeroApi: S,
|
|
290
|
-
YugabyteDB:
|
|
291
|
-
ZohoBooksApi:
|
|
292
|
-
ZohoCreatorApi:
|
|
293
|
-
Youtube:
|
|
294
|
-
Zendesk:
|
|
295
|
-
Zoom:
|
|
292
|
+
YugabyteDB: Or,
|
|
293
|
+
ZohoBooksApi: Fr,
|
|
294
|
+
ZohoCreatorApi: Hr,
|
|
295
|
+
Youtube: Dr,
|
|
296
|
+
Zendesk: wr,
|
|
297
|
+
Zoom: xr
|
|
296
298
|
}, D = (r) => {
|
|
297
299
|
if (!r)
|
|
298
300
|
return c;
|
|
@@ -300,16 +302,16 @@ const B = {
|
|
|
300
302
|
(t) => t.toLowerCase() === m
|
|
301
303
|
);
|
|
302
304
|
return i ? B[i] : c;
|
|
303
|
-
},
|
|
305
|
+
}, ft = (r) => {
|
|
304
306
|
const m = T(r), i = D(m?.id);
|
|
305
307
|
return ({ className: t }) => /* @__PURE__ */ P(i, { className: t });
|
|
306
|
-
},
|
|
308
|
+
}, at = (r) => {
|
|
307
309
|
const m = T(r), i = D(m?.id);
|
|
308
310
|
return ({ className: t }) => /* @__PURE__ */ P(i, { className: t });
|
|
309
311
|
};
|
|
310
312
|
export {
|
|
311
313
|
B as TOOLKIT_ICON_MAP,
|
|
312
|
-
|
|
314
|
+
at as getToolIconByToolkitName,
|
|
313
315
|
D as getToolkitIcon,
|
|
314
|
-
|
|
316
|
+
ft as getToolkitIconByName
|
|
315
317
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"toolkits.d.ts","sourceRoot":"","sources":["../../lib/metadata/toolkits.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,QAAQ,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAEjD,eAAO,MAAM,UAAU,EAAE,QAAQ,EAWhC,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,OAAO,
|
|
1
|
+
{"version":3,"file":"toolkits.d.ts","sourceRoot":"","sources":["../../lib/metadata/toolkits.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,QAAQ,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAEjD,eAAO,MAAM,UAAU,EAAE,QAAQ,EAWhC,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,OAAO,EAgoE7B,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAMrD,CAAC"}
|