@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 +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,CA6JtD,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"}
|
|
@@ -1,114 +1,114 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import { Adp as
|
|
3
|
-
import { Aha as
|
|
1
|
+
import { jsx as B } from "react/jsx-runtime";
|
|
2
|
+
import { Adp as D } from "../components/ui/atoms/icons/adp.js";
|
|
3
|
+
import { Aha as O } from "../components/ui/atoms/icons/aha.js";
|
|
4
4
|
import { Airtable as f } from "../components/ui/atoms/icons/airtable.js";
|
|
5
|
-
import { Amplitude as
|
|
6
|
-
import { Arcade as
|
|
7
|
-
import { Asana as
|
|
8
|
-
import { Ashby as
|
|
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
|
|
5
|
+
import { Amplitude as w } from "../components/ui/atoms/icons/amplitude.js";
|
|
6
|
+
import { Arcade as H } from "../components/ui/atoms/icons/arcade.js";
|
|
7
|
+
import { Asana as x } from "../components/ui/atoms/icons/asana.js";
|
|
8
|
+
import { Ashby as v } from "../components/ui/atoms/icons/ashby.js";
|
|
9
|
+
import { Attio as F } from "../components/ui/atoms/icons/attio.js";
|
|
10
|
+
import { Auth0 as E } from "../components/ui/atoms/icons/auth0.js";
|
|
11
|
+
import { Bamboohr as I } from "../components/ui/atoms/icons/bamboohr.js";
|
|
12
|
+
import { Basecamp as N } from "../components/ui/atoms/icons/basecamp.js";
|
|
13
|
+
import { Bill as W } from "../components/ui/atoms/icons/bill.js";
|
|
14
|
+
import { Bitbucket as L } from "../components/ui/atoms/icons/bitbucket.js";
|
|
15
|
+
import { Bluesky as q } from "../components/ui/atoms/icons/bluesky.js";
|
|
16
16
|
import { Box as a } from "../components/ui/atoms/icons/box.js";
|
|
17
|
-
import { Braze as
|
|
18
|
-
import { Brex as
|
|
19
|
-
import { Brightdata as
|
|
20
|
-
import { Buffer as
|
|
17
|
+
import { Braze as Z } from "../components/ui/atoms/icons/braze.js";
|
|
18
|
+
import { Brex as R } from "../components/ui/atoms/icons/brex.js";
|
|
19
|
+
import { Brightdata as X } from "../components/ui/atoms/icons/brightdata.js";
|
|
20
|
+
import { Buffer as J } from "../components/ui/atoms/icons/buffer.js";
|
|
21
21
|
import { Calendly as l } from "../components/ui/atoms/icons/calendly.js";
|
|
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
|
|
22
|
+
import { Clickhouse as Y } from "../components/ui/atoms/icons/clickhouse.js";
|
|
23
|
+
import { Clickup as z } from "../components/ui/atoms/icons/clickup.js";
|
|
24
|
+
import { Closeio as U } from "../components/ui/atoms/icons/closeio.js";
|
|
25
|
+
import { Codesandbox as j } from "../components/ui/atoms/icons/codesandbox.js";
|
|
26
|
+
import { Coinbase as K } from "../components/ui/atoms/icons/coinbase.js";
|
|
27
|
+
import { Confluence as Q } from "../components/ui/atoms/icons/confluence.js";
|
|
28
|
+
import { Cursor as V } from "../components/ui/atoms/icons/cursor.js";
|
|
29
29
|
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
|
|
30
|
+
import { Datadog as _ } from "../components/ui/atoms/icons/datadog.js";
|
|
31
|
+
import { Daytona as $ } from "../components/ui/atoms/icons/daytona.js";
|
|
32
|
+
import { DigitalOcean as oo } from "../components/ui/atoms/icons/digital-ocean.js";
|
|
33
|
+
import { Discord as ro } from "../components/ui/atoms/icons/discord.js";
|
|
34
|
+
import { Dropbox as io } from "../components/ui/atoms/icons/dropbox.js";
|
|
35
|
+
import { E2b as to } from "../components/ui/atoms/icons/e2b.js";
|
|
36
|
+
import { Ebay as mo } from "../components/ui/atoms/icons/ebay.js";
|
|
37
|
+
import { Evernote as eo } from "../components/ui/atoms/icons/evernote.js";
|
|
38
|
+
import { Exa as po } from "../components/ui/atoms/icons/exa.js";
|
|
39
|
+
import { Factorial as fo } from "../components/ui/atoms/icons/factorial.js";
|
|
40
40
|
import { Figma as s } from "../components/ui/atoms/icons/figma.js";
|
|
41
|
-
import { Firecrawl as
|
|
42
|
-
import { Freshservice as
|
|
41
|
+
import { Firecrawl as ao } from "../components/ui/atoms/icons/firecrawl.js";
|
|
42
|
+
import { Freshservice as lo } from "../components/ui/atoms/icons/freshservice.js";
|
|
43
43
|
import { Generic as n } from "../components/ui/atoms/icons/generic.js";
|
|
44
|
-
import { Github as
|
|
45
|
-
import { Gitlab as
|
|
46
|
-
import { Gmail as
|
|
47
|
-
import { Google as
|
|
48
|
-
import { GoogleCalendar as
|
|
49
|
-
import { GoogleContacts as
|
|
50
|
-
import { GoogleDocs as
|
|
51
|
-
import { GoogleDrive as
|
|
52
|
-
import { GoogleFinance as
|
|
53
|
-
import { GoogleFlights as
|
|
54
|
-
import { GoogleHotels as
|
|
55
|
-
import { GoogleJobs as
|
|
56
|
-
import { GoogleMaps as
|
|
57
|
-
import { GoogleNews as
|
|
58
|
-
import { GoogleSheets as
|
|
59
|
-
import { GoogleShopping as
|
|
60
|
-
import { GoogleSlides as
|
|
61
|
-
import { Granola as
|
|
62
|
-
import { Heroku as
|
|
63
|
-
import { Hootsuite as
|
|
44
|
+
import { Github as so } from "../components/ui/atoms/icons/github.js";
|
|
45
|
+
import { Gitlab as no } from "../components/ui/atoms/icons/gitlab.js";
|
|
46
|
+
import { Gmail as co } from "../components/ui/atoms/icons/gmail.js";
|
|
47
|
+
import { Google as uo } from "../components/ui/atoms/icons/google.js";
|
|
48
|
+
import { GoogleCalendar as go } from "../components/ui/atoms/icons/google-calendar.js";
|
|
49
|
+
import { GoogleContacts as Ao } from "../components/ui/atoms/icons/google-contacts.js";
|
|
50
|
+
import { GoogleDocs as ko } from "../components/ui/atoms/icons/google-docs.js";
|
|
51
|
+
import { GoogleDrive as bo } from "../components/ui/atoms/icons/google-drive.js";
|
|
52
|
+
import { GoogleFinance as ho } from "../components/ui/atoms/icons/google-finance.js";
|
|
53
|
+
import { GoogleFlights as Mo } from "../components/ui/atoms/icons/google-flights.js";
|
|
54
|
+
import { GoogleHotels as Co } from "../components/ui/atoms/icons/google-hotels.js";
|
|
55
|
+
import { GoogleJobs as Go } from "../components/ui/atoms/icons/google-jobs.js";
|
|
56
|
+
import { GoogleMaps as yo } from "../components/ui/atoms/icons/google-maps.js";
|
|
57
|
+
import { GoogleNews as So } from "../components/ui/atoms/icons/google-news.js";
|
|
58
|
+
import { GoogleSheets as Bo } from "../components/ui/atoms/icons/google-sheets.js";
|
|
59
|
+
import { GoogleShopping as Po } from "../components/ui/atoms/icons/google-shopping.js";
|
|
60
|
+
import { GoogleSlides as To } from "../components/ui/atoms/icons/google-slides.js";
|
|
61
|
+
import { Granola as Do } from "../components/ui/atoms/icons/granola.js";
|
|
62
|
+
import { Heroku as Oo } from "../components/ui/atoms/icons/heroku.js";
|
|
63
|
+
import { Hootsuite as wo } from "../components/ui/atoms/icons/hootsuite.js";
|
|
64
64
|
import { Hubspot as o } from "../components/ui/atoms/icons/hubspot.js";
|
|
65
|
-
import { Imgflip as
|
|
66
|
-
import { Intercom as
|
|
67
|
-
import { Jira as
|
|
68
|
-
import { Linear as
|
|
69
|
-
import { Linkedin as
|
|
70
|
-
import { Luma as
|
|
65
|
+
import { Imgflip as Ho } from "../components/ui/atoms/icons/imgflip.js";
|
|
66
|
+
import { Intercom as xo } from "../components/ui/atoms/icons/intercom.js";
|
|
67
|
+
import { Jira as vo } from "../components/ui/atoms/icons/jira.js";
|
|
68
|
+
import { Linear as Fo } from "../components/ui/atoms/icons/linear.js";
|
|
69
|
+
import { Linkedin as Eo } from "../components/ui/atoms/icons/linkedin.js";
|
|
70
|
+
import { Luma as Io } from "../components/ui/atoms/icons/luma.js";
|
|
71
71
|
import { Mailchimp as c } from "../components/ui/atoms/icons/mailchimp.js";
|
|
72
|
-
import { MathToolkit as
|
|
73
|
-
import { Mcp as
|
|
74
|
-
import { MicrosoftDynamics as
|
|
75
|
-
import { MicrosoftExcel as
|
|
76
|
-
import { MicrosoftOnedrive as
|
|
72
|
+
import { MathToolkit as No } from "../components/ui/atoms/icons/math-toolkit.js";
|
|
73
|
+
import { Mcp as Wo } from "../components/ui/atoms/icons/mcp.js";
|
|
74
|
+
import { MicrosoftDynamics as Lo } from "../components/ui/atoms/icons/microsoft-dynamics.js";
|
|
75
|
+
import { MicrosoftExcel as qo } from "../components/ui/atoms/icons/microsoft-excel.js";
|
|
76
|
+
import { MicrosoftOnedrive as Zo } from "../components/ui/atoms/icons/microsoft-onedrive.js";
|
|
77
77
|
import { MicrosoftOutlookCalendar as u } from "../components/ui/atoms/icons/microsoft-outlook-calendar.js";
|
|
78
78
|
import { MicrosoftOutlookMail as g } from "../components/ui/atoms/icons/microsoft-outlook-mail.js";
|
|
79
|
-
import { MicrosoftPowerpoint as
|
|
79
|
+
import { MicrosoftPowerpoint as Ro } from "../components/ui/atoms/icons/microsoft-powerpoint.js";
|
|
80
80
|
import { MicrosoftSharepoint as A } from "../components/ui/atoms/icons/microsoft-sharepoint.js";
|
|
81
|
-
import { MicrosoftTeams as
|
|
82
|
-
import { MicrosoftWord as
|
|
81
|
+
import { MicrosoftTeams as Xo } from "../components/ui/atoms/icons/microsoft-teams.js";
|
|
82
|
+
import { MicrosoftWord as Jo } from "../components/ui/atoms/icons/microsoft-word.js";
|
|
83
83
|
import { Miro as k } from "../components/ui/atoms/icons/miro.js";
|
|
84
|
-
import { Monday as
|
|
85
|
-
import { MongoDB as
|
|
86
|
-
import { Netsuite as
|
|
84
|
+
import { Monday as Yo } from "../components/ui/atoms/icons/monday.js";
|
|
85
|
+
import { MongoDB as zo } from "../components/ui/atoms/icons/mongodb.js";
|
|
86
|
+
import { Netsuite as Uo } from "../components/ui/atoms/icons/netsuite.js";
|
|
87
87
|
import { Notion as d } from "../components/ui/atoms/icons/notion.js";
|
|
88
|
-
import { Obsidian as
|
|
89
|
-
import { Okta as
|
|
88
|
+
import { Obsidian as jo } from "../components/ui/atoms/icons/obsidian.js";
|
|
89
|
+
import { Okta as Ko } from "../components/ui/atoms/icons/okta.js";
|
|
90
90
|
import { Pagerduty as b } from "../components/ui/atoms/icons/pagerduty.js";
|
|
91
|
-
import { Pinecone as
|
|
92
|
-
import { Pinterest as
|
|
93
|
-
import { Pipedrive as
|
|
94
|
-
import { Plaid as
|
|
95
|
-
import { Postgres as
|
|
96
|
-
import { Posthog as
|
|
97
|
-
import { Pylon as
|
|
91
|
+
import { Pinecone as Qo } from "../components/ui/atoms/icons/pinecone.js";
|
|
92
|
+
import { Pinterest as Vo } from "../components/ui/atoms/icons/pinterest.js";
|
|
93
|
+
import { Pipedrive as _o } from "../components/ui/atoms/icons/pipedrive.js";
|
|
94
|
+
import { Plaid as $o } from "../components/ui/atoms/icons/plaid.js";
|
|
95
|
+
import { Postgres as or } from "../components/ui/atoms/icons/postgres.js";
|
|
96
|
+
import { Posthog as h } from "../components/ui/atoms/icons/posthog.js";
|
|
97
|
+
import { Pylon as M } from "../components/ui/atoms/icons/pylon.js";
|
|
98
98
|
import { Quickbooks as rr } from "../components/ui/atoms/icons/quickbooks.js";
|
|
99
99
|
import { Railway as ir } from "../components/ui/atoms/icons/railway.js";
|
|
100
100
|
import { Reddit as tr } from "../components/ui/atoms/icons/reddit.js";
|
|
101
101
|
import { Salesforce as mr } from "../components/ui/atoms/icons/salesforce.js";
|
|
102
102
|
import { Shopify as er } from "../components/ui/atoms/icons/shopify.js";
|
|
103
103
|
import { Singlestore as pr } from "../components/ui/atoms/icons/singlestore.js";
|
|
104
|
-
import { Slack as
|
|
104
|
+
import { Slack as C } from "../components/ui/atoms/icons/slack.js";
|
|
105
105
|
import { Snowflake as fr } from "../components/ui/atoms/icons/snowflake.js";
|
|
106
106
|
import { Splunk as ar } from "../components/ui/atoms/icons/splunk.js";
|
|
107
107
|
import { Spotify as lr } from "../components/ui/atoms/icons/spotify.js";
|
|
108
108
|
import { Square as p } from "../components/ui/atoms/icons/square.js";
|
|
109
109
|
import { Squarespace as sr } from "../components/ui/atoms/icons/squarespace.js";
|
|
110
110
|
import { Squareup as nr } from "../components/ui/atoms/icons/squareup.js";
|
|
111
|
-
import { Stripe as
|
|
111
|
+
import { Stripe as G } from "../components/ui/atoms/icons/stripe.js";
|
|
112
112
|
import { Ticktick as cr } from "../components/ui/atoms/icons/ticktick.js";
|
|
113
113
|
import { Tiktok as ur } from "../components/ui/atoms/icons/tiktok.js";
|
|
114
114
|
import { Trello as gr } from "../components/ui/atoms/icons/trello.js";
|
|
@@ -120,82 +120,82 @@ import { Weaviate as hr } from "../components/ui/atoms/icons/weaviate.js";
|
|
|
120
120
|
import { Workday as Mr } from "../components/ui/atoms/icons/workday.js";
|
|
121
121
|
import { Wrike as Cr } from "../components/ui/atoms/icons/wrike.js";
|
|
122
122
|
import { X as Gr } from "../components/ui/atoms/icons/x.js";
|
|
123
|
-
import { Xero as
|
|
123
|
+
import { Xero as y } from "../components/ui/atoms/icons/xero.js";
|
|
124
124
|
import { Youtube as yr } from "../components/ui/atoms/icons/youtube.js";
|
|
125
125
|
import { Yugabytedb as Sr } from "../components/ui/atoms/icons/yugabytedb.js";
|
|
126
126
|
import { Zendesk as Br } from "../components/ui/atoms/icons/zendesk.js";
|
|
127
127
|
import { ZohoBooks as Pr } from "../components/ui/atoms/icons/zoho-books.js";
|
|
128
128
|
import { ZohoCreator as Tr } from "../components/ui/atoms/icons/zoho-creator.js";
|
|
129
129
|
import { Zoom as Dr } from "../components/ui/atoms/icons/zoom.js";
|
|
130
|
-
import { findToolkitByName as
|
|
131
|
-
const
|
|
132
|
-
ADPWorkforceNow:
|
|
133
|
-
Aha:
|
|
130
|
+
import { findToolkitByName as P } from "./utils.js";
|
|
131
|
+
const S = {
|
|
132
|
+
ADPWorkforceNow: D,
|
|
133
|
+
Aha: O,
|
|
134
134
|
Airtable: f,
|
|
135
135
|
AirtableApi: f,
|
|
136
|
-
Amplitude:
|
|
137
|
-
ArcadeEngineApi:
|
|
138
|
-
Asana:
|
|
139
|
-
AshbyApi:
|
|
140
|
-
Attio:
|
|
141
|
-
Auth0:
|
|
142
|
-
BambooHR:
|
|
143
|
-
Basecamp:
|
|
144
|
-
BillCom:
|
|
145
|
-
Bitbucket:
|
|
146
|
-
Bluesky:
|
|
136
|
+
Amplitude: w,
|
|
137
|
+
ArcadeEngineApi: H,
|
|
138
|
+
Asana: x,
|
|
139
|
+
AshbyApi: v,
|
|
140
|
+
Attio: F,
|
|
141
|
+
Auth0: E,
|
|
142
|
+
BambooHR: I,
|
|
143
|
+
Basecamp: N,
|
|
144
|
+
BillCom: W,
|
|
145
|
+
Bitbucket: L,
|
|
146
|
+
Bluesky: q,
|
|
147
147
|
Box: a,
|
|
148
148
|
BoxApi: a,
|
|
149
|
-
Braze:
|
|
150
|
-
Brex:
|
|
151
|
-
Brightdata:
|
|
152
|
-
Buffer:
|
|
149
|
+
Braze: Z,
|
|
150
|
+
Brex: R,
|
|
151
|
+
Brightdata: X,
|
|
152
|
+
Buffer: J,
|
|
153
153
|
Calendly: l,
|
|
154
154
|
CalendlyApi: l,
|
|
155
|
-
Clickhouse:
|
|
156
|
-
ClickUp:
|
|
157
|
-
CloseIO:
|
|
158
|
-
Codesandbox:
|
|
159
|
-
Coinbase:
|
|
160
|
-
Confluence:
|
|
161
|
-
CursorAgentsApi:
|
|
155
|
+
Clickhouse: Y,
|
|
156
|
+
ClickUp: z,
|
|
157
|
+
CloseIO: U,
|
|
158
|
+
Codesandbox: j,
|
|
159
|
+
Coinbase: K,
|
|
160
|
+
Confluence: Q,
|
|
161
|
+
CursorAgentsApi: V,
|
|
162
162
|
CustomerioApi: e,
|
|
163
163
|
CustomerioPipelinesApi: e,
|
|
164
164
|
CustomerioTrackApi: e,
|
|
165
|
-
DatadogApi:
|
|
166
|
-
Daytona:
|
|
167
|
-
DigitalOcean:
|
|
168
|
-
Discord:
|
|
169
|
-
Dropbox:
|
|
170
|
-
E2b:
|
|
171
|
-
EBay:
|
|
172
|
-
Evernote:
|
|
173
|
-
ExaApi:
|
|
174
|
-
Factorial:
|
|
165
|
+
DatadogApi: _,
|
|
166
|
+
Daytona: $,
|
|
167
|
+
DigitalOcean: oo,
|
|
168
|
+
Discord: ro,
|
|
169
|
+
Dropbox: io,
|
|
170
|
+
E2b: to,
|
|
171
|
+
EBay: mo,
|
|
172
|
+
Evernote: eo,
|
|
173
|
+
ExaApi: po,
|
|
174
|
+
Factorial: fo,
|
|
175
175
|
Figma: s,
|
|
176
176
|
FigmaApi: s,
|
|
177
|
-
Firecrawl:
|
|
178
|
-
FreshserviceApi:
|
|
179
|
-
Github:
|
|
180
|
-
GitLab:
|
|
181
|
-
Gmail:
|
|
182
|
-
GoogleCalendar:
|
|
183
|
-
GoogleContacts:
|
|
184
|
-
GoogleDocs:
|
|
185
|
-
GoogleDrive:
|
|
186
|
-
GoogleFinance:
|
|
187
|
-
GoogleFlights:
|
|
188
|
-
GoogleHotels:
|
|
189
|
-
GoogleJobs:
|
|
190
|
-
GoogleMaps:
|
|
191
|
-
GoogleNews:
|
|
192
|
-
GoogleSearch:
|
|
193
|
-
GoogleSheets:
|
|
194
|
-
GoogleShopping:
|
|
195
|
-
GoogleSlides:
|
|
196
|
-
Granola:
|
|
197
|
-
Heroku:
|
|
198
|
-
Hootsuite:
|
|
177
|
+
Firecrawl: ao,
|
|
178
|
+
FreshserviceApi: lo,
|
|
179
|
+
Github: so,
|
|
180
|
+
GitLab: no,
|
|
181
|
+
Gmail: co,
|
|
182
|
+
GoogleCalendar: go,
|
|
183
|
+
GoogleContacts: Ao,
|
|
184
|
+
GoogleDocs: ko,
|
|
185
|
+
GoogleDrive: bo,
|
|
186
|
+
GoogleFinance: ho,
|
|
187
|
+
GoogleFlights: Mo,
|
|
188
|
+
GoogleHotels: Co,
|
|
189
|
+
GoogleJobs: Go,
|
|
190
|
+
GoogleMaps: yo,
|
|
191
|
+
GoogleNews: So,
|
|
192
|
+
GoogleSearch: uo,
|
|
193
|
+
GoogleSheets: Bo,
|
|
194
|
+
GoogleShopping: Po,
|
|
195
|
+
GoogleSlides: To,
|
|
196
|
+
Granola: Do,
|
|
197
|
+
Heroku: Oo,
|
|
198
|
+
Hootsuite: wo,
|
|
199
199
|
Hubspot: o,
|
|
200
200
|
HubspotAutomationApi: o,
|
|
201
201
|
HubspotCmsApi: o,
|
|
@@ -205,55 +205,56 @@ const y = {
|
|
|
205
205
|
HubspotMarketingApi: o,
|
|
206
206
|
HubspotMeetingsApi: o,
|
|
207
207
|
HubspotUsersApi: o,
|
|
208
|
-
Imgflip:
|
|
209
|
-
IntercomApi:
|
|
210
|
-
Jira:
|
|
211
|
-
Linear:
|
|
212
|
-
Linkedin:
|
|
213
|
-
LumaApi:
|
|
208
|
+
Imgflip: Ho,
|
|
209
|
+
IntercomApi: xo,
|
|
210
|
+
Jira: vo,
|
|
211
|
+
Linear: Fo,
|
|
212
|
+
Linkedin: Eo,
|
|
213
|
+
LumaApi: Io,
|
|
214
214
|
Mailchimp: c,
|
|
215
215
|
MailchimpMarketingApi: c,
|
|
216
|
-
Math:
|
|
217
|
-
MCP:
|
|
218
|
-
MicrosoftDynamics:
|
|
219
|
-
MicrosoftExcel:
|
|
216
|
+
Math: No,
|
|
217
|
+
MCP: Wo,
|
|
218
|
+
MicrosoftDynamics: Lo,
|
|
219
|
+
MicrosoftExcel: qo,
|
|
220
220
|
MicrosoftOutlookCalendar: u,
|
|
221
221
|
MicrosoftOutlookMail: g,
|
|
222
|
-
MicrosoftPowerpoint:
|
|
222
|
+
MicrosoftPowerpoint: Ro,
|
|
223
223
|
MicrosoftSharePoint: A,
|
|
224
224
|
Sharepoint: A,
|
|
225
|
-
MicrosoftTeams:
|
|
226
|
-
MicrosoftWord:
|
|
225
|
+
MicrosoftTeams: Xo,
|
|
226
|
+
MicrosoftWord: Jo,
|
|
227
227
|
Miro: k,
|
|
228
228
|
MiroApi: k,
|
|
229
|
-
Monday:
|
|
230
|
-
MongoDB:
|
|
231
|
-
Netsuite:
|
|
229
|
+
Monday: Yo,
|
|
230
|
+
MongoDB: zo,
|
|
231
|
+
Netsuite: Uo,
|
|
232
232
|
Notion: d,
|
|
233
233
|
NotionToolkit: d,
|
|
234
|
-
Obsidian:
|
|
235
|
-
Okta:
|
|
236
|
-
MicrosoftOnedrive:
|
|
234
|
+
Obsidian: jo,
|
|
235
|
+
Okta: Ko,
|
|
236
|
+
MicrosoftOnedrive: Zo,
|
|
237
237
|
OutlookCalendar: u,
|
|
238
238
|
OutlookMail: g,
|
|
239
239
|
PagerDuty: b,
|
|
240
240
|
PagerDutyApi: b,
|
|
241
|
-
Pinecone:
|
|
242
|
-
Pinterest:
|
|
243
|
-
Pipedrive:
|
|
244
|
-
Plaid:
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
241
|
+
Pinecone: Qo,
|
|
242
|
+
Pinterest: Vo,
|
|
243
|
+
Pipedrive: _o,
|
|
244
|
+
Plaid: $o,
|
|
245
|
+
Posthog: h,
|
|
246
|
+
PosthogApi: h,
|
|
247
|
+
Postgres: or,
|
|
248
|
+
Pylon: M,
|
|
249
|
+
PylonApi: M,
|
|
249
250
|
Quickbooks: rr,
|
|
250
251
|
Railway: ir,
|
|
251
252
|
Reddit: tr,
|
|
252
253
|
Salesforce: mr,
|
|
253
254
|
Shopify: er,
|
|
254
255
|
Singlestore: pr,
|
|
255
|
-
Slack:
|
|
256
|
-
SlackApi:
|
|
256
|
+
Slack: C,
|
|
257
|
+
SlackApi: C,
|
|
257
258
|
Snowflake: fr,
|
|
258
259
|
Splunk: ar,
|
|
259
260
|
Spotify: lr,
|
|
@@ -262,8 +263,8 @@ const y = {
|
|
|
262
263
|
SquareupApi: p,
|
|
263
264
|
SquareUpApi: p,
|
|
264
265
|
Squarespace: sr,
|
|
265
|
-
Stripe:
|
|
266
|
-
StripeApi:
|
|
266
|
+
Stripe: G,
|
|
267
|
+
StripeApi: G,
|
|
267
268
|
Tiktok: ur,
|
|
268
269
|
TickTickApi: cr,
|
|
269
270
|
TrelloApi: gr,
|
|
@@ -275,31 +276,31 @@ const y = {
|
|
|
275
276
|
Workday: Mr,
|
|
276
277
|
Wrike: Cr,
|
|
277
278
|
X: Gr,
|
|
278
|
-
Xero:
|
|
279
|
-
XeroApi:
|
|
279
|
+
Xero: y,
|
|
280
|
+
XeroApi: y,
|
|
280
281
|
YugabyteDB: Sr,
|
|
281
282
|
ZohoBooksApi: Pr,
|
|
282
283
|
ZohoCreatorApi: Tr,
|
|
283
284
|
Youtube: yr,
|
|
284
285
|
Zendesk: Br,
|
|
285
286
|
Zoom: Dr
|
|
286
|
-
},
|
|
287
|
+
}, T = (r) => {
|
|
287
288
|
if (!r)
|
|
288
289
|
return n;
|
|
289
|
-
const t = r.toLowerCase(), i = Object.keys(
|
|
290
|
+
const t = r.toLowerCase(), i = Object.keys(S).find(
|
|
290
291
|
(m) => m.toLowerCase() === t
|
|
291
292
|
);
|
|
292
|
-
return i ?
|
|
293
|
+
return i ? S[i] : n;
|
|
293
294
|
}, Vt = (r) => {
|
|
294
|
-
const t =
|
|
295
|
-
return ({ className: m }) => /* @__PURE__ */
|
|
295
|
+
const t = P(r), i = T(t?.id);
|
|
296
|
+
return ({ className: m }) => /* @__PURE__ */ B(i, { className: m });
|
|
296
297
|
}, _t = (r) => {
|
|
297
|
-
const t =
|
|
298
|
-
return ({ className: m }) => /* @__PURE__ */
|
|
298
|
+
const t = P(r), i = T(t?.id);
|
|
299
|
+
return ({ className: m }) => /* @__PURE__ */ B(i, { className: m });
|
|
299
300
|
};
|
|
300
301
|
export {
|
|
301
|
-
|
|
302
|
+
S as TOOLKIT_ICON_MAP,
|
|
302
303
|
_t as getToolIconByToolkitName,
|
|
303
|
-
|
|
304
|
+
T as getToolkitIcon,
|
|
304
305
|
Vt as getToolkitIconByName
|
|
305
306
|
};
|
|
@@ -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,EA4iE7B,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAMrD,CAAC"}
|
|
@@ -1441,6 +1441,19 @@ const r = [
|
|
|
1441
1441
|
isComingSoon: !0,
|
|
1442
1442
|
isHidden: !1
|
|
1443
1443
|
},
|
|
1444
|
+
{
|
|
1445
|
+
id: "Posthog",
|
|
1446
|
+
label: "PostHog",
|
|
1447
|
+
isBYOC: !1,
|
|
1448
|
+
isPro: !1,
|
|
1449
|
+
publicIconUrl: `${e}/posthog.svg`,
|
|
1450
|
+
docsLink: "https://docs.arcade.dev/en/resources/integrations/development/posthog",
|
|
1451
|
+
relativeDocsLink: "/en/resources/integrations/development/posthog",
|
|
1452
|
+
category: "development",
|
|
1453
|
+
type: "arcade",
|
|
1454
|
+
isComingSoon: !1,
|
|
1455
|
+
isHidden: !1
|
|
1456
|
+
},
|
|
1444
1457
|
{
|
|
1445
1458
|
id: "PosthogApi",
|
|
1446
1459
|
label: "PostHog API",
|
|
@@ -18,7 +18,6 @@ import { Tooltip as v, TooltipTrigger as y, TooltipContent as w } from "./compon
|
|
|
18
18
|
import "./components/ui/atoms/sidebar.js";
|
|
19
19
|
import "./components/ui/molecules/date-time-picker.js";
|
|
20
20
|
import "./components/ui/molecules/prompt-input.js";
|
|
21
|
-
import "./components/ui/molecules/switcher.js";
|
|
22
21
|
import "./components/ui/molecules/tool-call-accordion.js";
|
|
23
22
|
import "./components/ui/molecules/tool-card.js";
|
|
24
23
|
import { areStringArraysEqual as h, createPropsComparator as C } from "./components/ui/utils/memo.js";
|
|
@@ -300,7 +299,7 @@ const Y = C([
|
|
|
300
299
|
"isByoc",
|
|
301
300
|
"isPro",
|
|
302
301
|
"hideCheckbox"
|
|
303
|
-
]),
|
|
302
|
+
]), Ne = f.memo(
|
|
304
303
|
X,
|
|
305
304
|
Y
|
|
306
305
|
);
|
|
@@ -308,5 +307,5 @@ export {
|
|
|
308
307
|
H as O,
|
|
309
308
|
J as R,
|
|
310
309
|
G as S,
|
|
311
|
-
|
|
310
|
+
Ne as T
|
|
312
311
|
};
|