@arcadeai/design-system 3.39.4 → 3.41.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/forkable.js +10 -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 +470 -465
- package/dist/components/ui/atoms/badge.js +5 -5
- package/dist/components/ui/atoms/button.js +1 -1
- package/dist/components/ui/atoms/icons/forkable.d.ts +4 -0
- package/dist/components/ui/atoms/icons/forkable.d.ts.map +1 -0
- package/dist/components/ui/atoms/icons/forkable.js +31 -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 +220 -218
- package/dist/components/ui/atoms/index.js +369 -367
- package/dist/components/ui/atoms/switch.js +19 -19
- package/dist/components/ui/index.js +470 -465
- package/dist/components/ui/molecules/date-time-picker.js +1 -1
- package/dist/components/ui/molecules/index.d.ts +2 -0
- package/dist/components/ui/molecules/index.d.ts.map +1 -1
- package/dist/components/ui/molecules/index.js +30 -27
- package/dist/components/ui/molecules/steps-progress.d.ts +3 -1
- package/dist/components/ui/molecules/steps-progress.d.ts.map +1 -1
- package/dist/components/ui/molecules/steps-progress.js +153 -112
- package/dist/components/ui/molecules/tags-input.d.ts +44 -0
- package/dist/components/ui/molecules/tags-input.d.ts.map +1 -0
- package/dist/components/ui/molecules/tags-input.js +139 -0
- package/dist/components/ui/molecules/tool-card.d.ts.map +1 -1
- package/dist/components/ui/molecules/tool-card.js +19 -22
- package/dist/components/ui/pages/login-page.js +13 -13
- package/dist/main.js +487 -482
- package/dist/metadata/toolkit-icons.d.ts.map +1 -1
- package/dist/metadata/toolkit-icons.js +158 -156
- package/dist/metadata/toolkits.d.ts.map +1 -1
- package/dist/metadata/toolkits.js +13 -0
- package/package.json +7 -7
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import { c as
|
|
3
|
-
import { cn as
|
|
2
|
+
import { c as n } from "../../../index-UgeK3A8s.js";
|
|
3
|
+
import { cn as a } from "../../../lib/utils.js";
|
|
4
4
|
import { u as o } from "../../../useRender-BNXBkp2o.js";
|
|
5
5
|
import { m as s } from "../../../useRenderElement-DNB2vtF1.js";
|
|
6
|
-
const d =
|
|
6
|
+
const d = n(
|
|
7
7
|
"group/badge inline-flex h-5 w-fit shrink-0 items-center justify-center gap-1 overflow-hidden whitespace-nowrap rounded-md border border-transparent px-2 py-0.5 font-medium text-xs transition-all focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 has-data-[icon=inline-end]:pr-1.5 has-data-[icon=inline-start]:pl-1.5 aria-invalid:border-destructive aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 [&>svg]:pointer-events-none [&>svg]:size-3!",
|
|
8
8
|
{
|
|
9
9
|
variants: {
|
|
@@ -13,7 +13,7 @@ const d = a(
|
|
|
13
13
|
destructive: "bg-destructive/10 text-destructive focus-visible:ring-destructive/20 dark:bg-destructive/20 dark:focus-visible:ring-destructive/40 [a]:hover:bg-destructive/20",
|
|
14
14
|
outline: "border-border text-foreground [a]:hover:bg-muted [a]:hover:text-muted-foreground",
|
|
15
15
|
ghost: "hover:bg-muted hover:text-muted-foreground dark:hover:bg-muted/50",
|
|
16
|
-
link: "text-
|
|
16
|
+
link: "text-link underline-offset-4 hover:underline",
|
|
17
17
|
success: "bg-success text-success-foreground [a]:hover:bg-success/90",
|
|
18
18
|
warning: "bg-warning text-warning-foreground [a]:hover:bg-warning/90"
|
|
19
19
|
}
|
|
@@ -33,7 +33,7 @@ function f({
|
|
|
33
33
|
defaultTagName: "span",
|
|
34
34
|
props: s(
|
|
35
35
|
{
|
|
36
|
-
className:
|
|
36
|
+
className: a(d({ variant: e }), r)
|
|
37
37
|
},
|
|
38
38
|
i
|
|
39
39
|
),
|
|
@@ -41,7 +41,7 @@ const m = c(
|
|
|
41
41
|
ghost: "hover:bg-muted hover:text-foreground aria-expanded:bg-muted aria-expanded:text-foreground dark:hover:bg-muted/50",
|
|
42
42
|
destructive: "bg-destructive/10 text-destructive hover:bg-destructive/20 focus-visible:border-destructive/40 focus-visible:ring-destructive/20 dark:bg-destructive/20 dark:focus-visible:ring-destructive/40 dark:hover:bg-destructive/30",
|
|
43
43
|
tertiary: "bg-tertiary text-tertiary-foreground hover:bg-tertiary/80",
|
|
44
|
-
link: "text-
|
|
44
|
+
link: "text-link underline-offset-4 hover:underline",
|
|
45
45
|
warning: "bg-warning text-warning-foreground hover:bg-warning/90"
|
|
46
46
|
},
|
|
47
47
|
size: {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"forkable.d.ts","sourceRoot":"","sources":["../../../../../lib/components/ui/atoms/icons/forkable.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AAEtC,eAAO,MAAM,QAAQ,GAAI,OAAO,QAAQ,CAAC,aAAa,CAAC,4CAkBtD,CAAC;AAEF,eAAe,QAAQ,CAAC"}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { jsxs as e, jsx as t } from "react/jsx-runtime";
|
|
2
|
+
const L = (l) => /* @__PURE__ */ e(
|
|
3
|
+
"svg",
|
|
4
|
+
{
|
|
5
|
+
fill: "none",
|
|
6
|
+
height: "1em",
|
|
7
|
+
viewBox: "0 0 60 60",
|
|
8
|
+
width: "1em",
|
|
9
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
+
...l,
|
|
11
|
+
children: [
|
|
12
|
+
/* @__PURE__ */ t("title", { children: "Forkable" }),
|
|
13
|
+
" ",
|
|
14
|
+
/* @__PURE__ */ e("g", { transform: "translate(0, 18)", children: [
|
|
15
|
+
" ",
|
|
16
|
+
/* @__PURE__ */ t(
|
|
17
|
+
"path",
|
|
18
|
+
{
|
|
19
|
+
d: "M24 8.8418L60 5.14258V18.8564L24 15.1572V24H0L0 20.5713H20.5713L20.5713 3.42871L0 3.42871L0 0L24 0V8.8418ZM15.4287 17.1426H0L0 13.7139H15.4287L15.4287 17.1426ZM27.4287 11.9502V12.0498L56.5713 14.666V9.33301L27.4287 11.9502ZM15.4287 10.2861H0L0 6.85742H15.4287V10.2861Z",
|
|
20
|
+
fill: "#2D2D2D"
|
|
21
|
+
}
|
|
22
|
+
),
|
|
23
|
+
" "
|
|
24
|
+
] })
|
|
25
|
+
]
|
|
26
|
+
}
|
|
27
|
+
);
|
|
28
|
+
export {
|
|
29
|
+
L as Forkable,
|
|
30
|
+
L as default
|
|
31
|
+
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../lib/components/ui/atoms/icons/index.tsx"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../lib/components/ui/atoms/icons/index.tsx"],"names":[],"mappings":"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"}
|
|
@@ -8,12 +8,12 @@ import { Asana as g } from "./asana.js";
|
|
|
8
8
|
import { Ashby as d } from "./ashby.js";
|
|
9
9
|
import { Atlassian as k } from "./atlassian.js";
|
|
10
10
|
import { Attio as C } from "./attio.js";
|
|
11
|
-
import { Auth0 as
|
|
11
|
+
import { Auth0 as b } from "./auth0.js";
|
|
12
12
|
import { Azure as S } from "./azure.js";
|
|
13
13
|
import { Bamboohr as B } from "./bamboohr.js";
|
|
14
14
|
import { Basecamp as D } from "./basecamp.js";
|
|
15
15
|
import { Bill as T } from "./bill.js";
|
|
16
|
-
import { Bitbucket as
|
|
16
|
+
import { Bitbucket as O } from "./bitbucket.js";
|
|
17
17
|
import { Bluesky as v } from "./bluesky.js";
|
|
18
18
|
import { Box as E } from "./box.js";
|
|
19
19
|
import { Braze as H } from "./braze.js";
|
|
@@ -35,122 +35,123 @@ import { CursorInstallDark as go } from "./cursor-install-dark.js";
|
|
|
35
35
|
import { CursorInstallLight as ho } from "./cursor-install-light.js";
|
|
36
36
|
import { CursorLogotype as Go } from "./cursor-logotype.js";
|
|
37
37
|
import { Customerio as Mo } from "./customerio.js";
|
|
38
|
-
import { Datadog as
|
|
38
|
+
import { Datadog as yo } from "./datadog.js";
|
|
39
39
|
import { Daytona as Ao } from "./daytona.js";
|
|
40
40
|
import { DigitalOcean as Lo } from "./digital-ocean.js";
|
|
41
41
|
import { Discord as Po } from "./discord.js";
|
|
42
|
-
import { Dropbox as
|
|
43
|
-
import { E2b as
|
|
42
|
+
import { Dropbox as Fo } from "./dropbox.js";
|
|
43
|
+
import { E2b as wo } from "./e2b.js";
|
|
44
44
|
import { Ebay as Wo } from "./ebay.js";
|
|
45
45
|
import { Evernote as Zo } from "./evernote.js";
|
|
46
46
|
import { Exa as Io } from "./exa.js";
|
|
47
47
|
import { Factorial as No } from "./factorial.js";
|
|
48
48
|
import { Figma as zo } from "./figma.js";
|
|
49
49
|
import { Firecrawl as Ro } from "./firecrawl.js";
|
|
50
|
-
import {
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
54
|
-
import {
|
|
55
|
-
import {
|
|
56
|
-
import {
|
|
57
|
-
import {
|
|
58
|
-
import {
|
|
59
|
-
import {
|
|
60
|
-
import {
|
|
61
|
-
import {
|
|
62
|
-
import {
|
|
63
|
-
import {
|
|
64
|
-
import {
|
|
65
|
-
import {
|
|
66
|
-
import {
|
|
67
|
-
import {
|
|
68
|
-
import {
|
|
69
|
-
import {
|
|
70
|
-
import {
|
|
71
|
-
import {
|
|
72
|
-
import {
|
|
73
|
-
import {
|
|
74
|
-
import {
|
|
75
|
-
import {
|
|
76
|
-
import {
|
|
77
|
-
import {
|
|
78
|
-
import {
|
|
79
|
-
import {
|
|
80
|
-
import {
|
|
81
|
-
import {
|
|
82
|
-
import {
|
|
83
|
-
import {
|
|
84
|
-
import {
|
|
85
|
-
import {
|
|
86
|
-
import {
|
|
87
|
-
import {
|
|
88
|
-
import {
|
|
89
|
-
import {
|
|
90
|
-
import {
|
|
91
|
-
import {
|
|
92
|
-
import {
|
|
93
|
-
import {
|
|
94
|
-
import {
|
|
95
|
-
import {
|
|
96
|
-
import {
|
|
97
|
-
import {
|
|
98
|
-
import {
|
|
99
|
-
import {
|
|
100
|
-
import {
|
|
101
|
-
import {
|
|
102
|
-
import {
|
|
103
|
-
import {
|
|
104
|
-
import {
|
|
105
|
-
import {
|
|
106
|
-
import {
|
|
107
|
-
import {
|
|
108
|
-
import {
|
|
109
|
-
import {
|
|
110
|
-
import {
|
|
111
|
-
import {
|
|
112
|
-
import {
|
|
113
|
-
import {
|
|
114
|
-
import {
|
|
115
|
-
import {
|
|
116
|
-
import {
|
|
117
|
-
import {
|
|
118
|
-
import {
|
|
119
|
-
import {
|
|
120
|
-
import {
|
|
121
|
-
import {
|
|
122
|
-
import {
|
|
123
|
-
import {
|
|
124
|
-
import {
|
|
125
|
-
import {
|
|
126
|
-
import {
|
|
127
|
-
import {
|
|
128
|
-
import {
|
|
129
|
-
import {
|
|
130
|
-
import {
|
|
131
|
-
import {
|
|
132
|
-
import {
|
|
133
|
-
import {
|
|
134
|
-
import {
|
|
135
|
-
import {
|
|
136
|
-
import {
|
|
137
|
-
import {
|
|
138
|
-
import {
|
|
139
|
-
import {
|
|
140
|
-
import {
|
|
141
|
-
import {
|
|
142
|
-
import {
|
|
143
|
-
import {
|
|
144
|
-
import {
|
|
145
|
-
import {
|
|
146
|
-
import {
|
|
147
|
-
import {
|
|
148
|
-
import {
|
|
149
|
-
import {
|
|
150
|
-
import {
|
|
151
|
-
import {
|
|
152
|
-
import {
|
|
153
|
-
import {
|
|
50
|
+
import { Forkable as Yo } from "./forkable.js";
|
|
51
|
+
import { Freshservice as jo } from "./freshservice.js";
|
|
52
|
+
import { Gemini as Uo } from "./gemini.js";
|
|
53
|
+
import { Generic as $o } from "./generic.js";
|
|
54
|
+
import { Github as rr } from "./github.js";
|
|
55
|
+
import { Gitlab as tr } from "./gitlab.js";
|
|
56
|
+
import { Gmail as fr } from "./gmail.js";
|
|
57
|
+
import { Google as xr } from "./google.js";
|
|
58
|
+
import { GoogleCalendar as ir } from "./google-calendar.js";
|
|
59
|
+
import { GoogleContacts as sr } from "./google-contacts.js";
|
|
60
|
+
import { GoogleDocs as cr } from "./google-docs.js";
|
|
61
|
+
import { GoogleDrive as ur } from "./google-drive.js";
|
|
62
|
+
import { GoogleFinance as hr } from "./google-finance.js";
|
|
63
|
+
import { GoogleFlight as Gr } from "./google-flight.js";
|
|
64
|
+
import { GoogleFlights as Mr } from "./google-flights.js";
|
|
65
|
+
import { GoogleHotels as yr } from "./google-hotels.js";
|
|
66
|
+
import { GoogleJobs as Ar } from "./google-jobs.js";
|
|
67
|
+
import { GoogleMaps as Lr } from "./google-maps.js";
|
|
68
|
+
import { GoogleNews as Pr } from "./google-news.js";
|
|
69
|
+
import { GoogleSheets as Fr } from "./google-sheets.js";
|
|
70
|
+
import { GoogleShopping as wr } from "./google-shopping.js";
|
|
71
|
+
import { GoogleSlides as Wr } from "./google-slides.js";
|
|
72
|
+
import { Goose as Zr } from "./goose.js";
|
|
73
|
+
import { Granola as Ir } from "./granola.js";
|
|
74
|
+
import { Heroku as Nr } from "./heroku.js";
|
|
75
|
+
import { Hootsuite as zr } from "./hootsuite.js";
|
|
76
|
+
import { Hubspot as Rr } from "./hubspot.js";
|
|
77
|
+
import { Imgflip as Yr } from "./imgflip.js";
|
|
78
|
+
import { Intercom as jr } from "./intercom.js";
|
|
79
|
+
import { Jira as Ur } from "./jira.js";
|
|
80
|
+
import { Langchain as $r } from "./langchain.js";
|
|
81
|
+
import { LangchainLogotype as re } from "./langchain-logotype.js";
|
|
82
|
+
import { Linear as te } from "./linear.js";
|
|
83
|
+
import { Linkedin as fe } from "./linkedin.js";
|
|
84
|
+
import { Luma as xe } from "./luma.js";
|
|
85
|
+
import { Mailchimp as ie } from "./mailchimp.js";
|
|
86
|
+
import { Mastra as se } from "./mastra.js";
|
|
87
|
+
import { MastraLogotype as ce } from "./mastra-logotype.js";
|
|
88
|
+
import { MathToolkit as ue } from "./math-toolkit.js";
|
|
89
|
+
import { Mcp as he } from "./mcp.js";
|
|
90
|
+
import { Microsoft as Ge } from "./microsoft.js";
|
|
91
|
+
import { MicrosoftDynamics as Me } from "./microsoft-dynamics.js";
|
|
92
|
+
import { MicrosoftExcel as ye } from "./microsoft-excel.js";
|
|
93
|
+
import { MicrosoftOnedrive as Ae } from "./microsoft-onedrive.js";
|
|
94
|
+
import { MicrosoftOutlookCalendar as Le } from "./microsoft-outlook-calendar.js";
|
|
95
|
+
import { MicrosoftOutlookMail as Pe } from "./microsoft-outlook-mail.js";
|
|
96
|
+
import { MicrosoftPowerpoint as Fe } from "./microsoft-powerpoint.js";
|
|
97
|
+
import { MicrosoftSharepoint as we } from "./microsoft-sharepoint.js";
|
|
98
|
+
import { MicrosoftTeams as We } from "./microsoft-teams.js";
|
|
99
|
+
import { MicrosoftWord as Ze } from "./microsoft-word.js";
|
|
100
|
+
import { Miro as Ie } from "./miro.js";
|
|
101
|
+
import { Monday as Ne } from "./monday.js";
|
|
102
|
+
import { MongoDB as ze } from "./mongodb.js";
|
|
103
|
+
import { Netsuite as Re } from "./netsuite.js";
|
|
104
|
+
import { Notion as Ye } from "./notion.js";
|
|
105
|
+
import { Oauth as je } from "./oauth.js";
|
|
106
|
+
import { Obsidian as Ue } from "./obsidian.js";
|
|
107
|
+
import { Okta as $e } from "./okta.js";
|
|
108
|
+
import { Openai as rt } from "./openai.js";
|
|
109
|
+
import { Pagerduty as tt } from "./pagerduty.js";
|
|
110
|
+
import { Pinecone as ft } from "./pinecone.js";
|
|
111
|
+
import { Pinterest as xt } from "./pinterest.js";
|
|
112
|
+
import { Pipedrive as it } from "./pipedrive.js";
|
|
113
|
+
import { Plaid as st } from "./plaid.js";
|
|
114
|
+
import { Postgres as ct } from "./postgres.js";
|
|
115
|
+
import { Posthog as ut } from "./posthog.js";
|
|
116
|
+
import { Pylon as ht } from "./pylon.js";
|
|
117
|
+
import { Quickbooks as Gt } from "./quickbooks.js";
|
|
118
|
+
import { Railway as Mt } from "./railway.js";
|
|
119
|
+
import { Reddit as yt } from "./reddit.js";
|
|
120
|
+
import { Salesforce as At } from "./salesforce.js";
|
|
121
|
+
import { Shopify as Lt } from "./shopify.js";
|
|
122
|
+
import { Singlestore as Pt } from "./singlestore.js";
|
|
123
|
+
import { Slack as Ft } from "./slack.js";
|
|
124
|
+
import { Snowflake as wt } from "./snowflake.js";
|
|
125
|
+
import { Splunk as Wt } from "./splunk.js";
|
|
126
|
+
import { Spotify as Zt } from "./spotify.js";
|
|
127
|
+
import { Square as It } from "./square.js";
|
|
128
|
+
import { Squarespace as Nt } from "./squarespace.js";
|
|
129
|
+
import { Squareup as zt } from "./squareup.js";
|
|
130
|
+
import { Stripe as Rt } from "./stripe.js";
|
|
131
|
+
import { Telegram as Yt } from "./telegram.js";
|
|
132
|
+
import { Tesla as jt } from "./tesla.js";
|
|
133
|
+
import { Ticktick as Ut } from "./ticktick.js";
|
|
134
|
+
import { Tiktok as $t } from "./tiktok.js";
|
|
135
|
+
import { Trello as rp } from "./trello.js";
|
|
136
|
+
import { Twilio as tp } from "./twilio.js";
|
|
137
|
+
import { Twitch as fp } from "./twitch.js";
|
|
138
|
+
import { Vercel as xp } from "./vercel.js";
|
|
139
|
+
import { VercelLogotype as ip } from "./vercel-logotype.js";
|
|
140
|
+
import { Vscode as sp } from "./vscode.js";
|
|
141
|
+
import { Walmart as cp } from "./walmart.js";
|
|
142
|
+
import { Weaviate as up } from "./weaviate.js";
|
|
143
|
+
import { Windsurf as hp } from "./windsurf.js";
|
|
144
|
+
import { Workday as Gp } from "./workday.js";
|
|
145
|
+
import { Wrike as Mp } from "./wrike.js";
|
|
146
|
+
import { X as yp } from "./x.js";
|
|
147
|
+
import { Xero as Ap } from "./xero.js";
|
|
148
|
+
import { Youtube as Lp } from "./youtube.js";
|
|
149
|
+
import { Yugabytedb as Pp } from "./yugabytedb.js";
|
|
150
|
+
import { Zendesk as Fp } from "./zendesk.js";
|
|
151
|
+
import { Zoho as wp } from "./zoho.js";
|
|
152
|
+
import { ZohoBooks as Wp } from "./zoho-books.js";
|
|
153
|
+
import { ZohoCreator as Zp } from "./zoho-creator.js";
|
|
154
|
+
import { Zoom as Ip } from "./zoom.js";
|
|
154
155
|
export {
|
|
155
156
|
e as Adp,
|
|
156
157
|
p as Aha,
|
|
@@ -162,12 +163,12 @@ export {
|
|
|
162
163
|
d as Ashby,
|
|
163
164
|
k as Atlassian,
|
|
164
165
|
C as Attio,
|
|
165
|
-
|
|
166
|
+
b as Auth0,
|
|
166
167
|
S as Azure,
|
|
167
168
|
B as Bamboohr,
|
|
168
169
|
D as Basecamp,
|
|
169
170
|
T as Bill,
|
|
170
|
-
|
|
171
|
+
O as Bitbucket,
|
|
171
172
|
v as Bluesky,
|
|
172
173
|
E as Box,
|
|
173
174
|
H as Braze,
|
|
@@ -189,120 +190,121 @@ export {
|
|
|
189
190
|
ho as CursorInstallLight,
|
|
190
191
|
Go as CursorLogotype,
|
|
191
192
|
Mo as Customerio,
|
|
192
|
-
|
|
193
|
+
yo as Datadog,
|
|
193
194
|
Ao as Daytona,
|
|
194
195
|
Lo as DigitalOcean,
|
|
195
196
|
Po as Discord,
|
|
196
|
-
|
|
197
|
-
|
|
197
|
+
Fo as Dropbox,
|
|
198
|
+
wo as E2b,
|
|
198
199
|
Wo as Ebay,
|
|
199
200
|
Zo as Evernote,
|
|
200
201
|
Io as Exa,
|
|
201
202
|
No as Factorial,
|
|
202
203
|
zo as Figma,
|
|
203
204
|
Ro as Firecrawl,
|
|
204
|
-
Yo as
|
|
205
|
-
jo as
|
|
206
|
-
Uo as
|
|
207
|
-
$o as
|
|
208
|
-
rr as
|
|
209
|
-
tr as
|
|
210
|
-
fr as
|
|
211
|
-
xr as
|
|
212
|
-
ir as
|
|
213
|
-
sr as
|
|
214
|
-
cr as
|
|
215
|
-
ur as
|
|
216
|
-
hr as
|
|
217
|
-
Gr as
|
|
218
|
-
Mr as
|
|
219
|
-
|
|
220
|
-
Ar as
|
|
221
|
-
Lr as
|
|
222
|
-
Pr as
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
Wr as
|
|
226
|
-
Zr as
|
|
227
|
-
Ir as
|
|
228
|
-
Nr as
|
|
229
|
-
zr as
|
|
230
|
-
Rr as
|
|
231
|
-
Yr as
|
|
232
|
-
jr as
|
|
233
|
-
Ur as
|
|
234
|
-
$r as
|
|
235
|
-
re as
|
|
236
|
-
te as
|
|
237
|
-
fe as
|
|
238
|
-
xe as
|
|
239
|
-
ie as
|
|
240
|
-
se as
|
|
241
|
-
ce as
|
|
242
|
-
ue as
|
|
243
|
-
he as
|
|
244
|
-
Ge as
|
|
245
|
-
Me as
|
|
246
|
-
|
|
247
|
-
Ae as
|
|
248
|
-
Le as
|
|
249
|
-
Pe as
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
We as
|
|
253
|
-
Ze as
|
|
254
|
-
Ie as
|
|
255
|
-
Ne as
|
|
256
|
-
ze as
|
|
257
|
-
Re as
|
|
258
|
-
Ye as
|
|
259
|
-
je as
|
|
260
|
-
Ue as
|
|
261
|
-
$e as
|
|
262
|
-
rt as
|
|
263
|
-
tt as
|
|
264
|
-
ft as
|
|
265
|
-
xt as
|
|
266
|
-
it as
|
|
267
|
-
st as
|
|
268
|
-
ct as
|
|
269
|
-
ut as
|
|
270
|
-
ht as
|
|
271
|
-
Gt as
|
|
272
|
-
Mt as
|
|
273
|
-
|
|
274
|
-
At as
|
|
275
|
-
Lt as
|
|
276
|
-
Pt as
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
Wt as
|
|
280
|
-
Zt as
|
|
281
|
-
It as
|
|
282
|
-
Nt as
|
|
283
|
-
zt as
|
|
284
|
-
Rt as
|
|
285
|
-
Yt as
|
|
286
|
-
jt as
|
|
287
|
-
Ut as
|
|
288
|
-
$t as
|
|
289
|
-
rp as
|
|
290
|
-
tp as
|
|
291
|
-
fp as
|
|
292
|
-
xp as
|
|
293
|
-
ip as
|
|
294
|
-
sp as
|
|
295
|
-
cp as
|
|
296
|
-
up as
|
|
297
|
-
hp as
|
|
298
|
-
Gp as
|
|
299
|
-
Mp as
|
|
300
|
-
|
|
301
|
-
Ap as
|
|
302
|
-
Lp as
|
|
303
|
-
Pp as
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
Wp as
|
|
307
|
-
Zp as
|
|
205
|
+
Yo as Forkable,
|
|
206
|
+
jo as Freshservice,
|
|
207
|
+
Uo as Gemini,
|
|
208
|
+
$o as Generic,
|
|
209
|
+
rr as Github,
|
|
210
|
+
tr as Gitlab,
|
|
211
|
+
fr as Gmail,
|
|
212
|
+
xr as Google,
|
|
213
|
+
ir as GoogleCalendar,
|
|
214
|
+
sr as GoogleContacts,
|
|
215
|
+
cr as GoogleDocs,
|
|
216
|
+
ur as GoogleDrive,
|
|
217
|
+
hr as GoogleFinance,
|
|
218
|
+
Gr as GoogleFlight,
|
|
219
|
+
Mr as GoogleFlights,
|
|
220
|
+
yr as GoogleHotels,
|
|
221
|
+
Ar as GoogleJobs,
|
|
222
|
+
Lr as GoogleMaps,
|
|
223
|
+
Pr as GoogleNews,
|
|
224
|
+
Fr as GoogleSheets,
|
|
225
|
+
wr as GoogleShopping,
|
|
226
|
+
Wr as GoogleSlides,
|
|
227
|
+
Zr as Goose,
|
|
228
|
+
Ir as Granola,
|
|
229
|
+
Nr as Heroku,
|
|
230
|
+
zr as Hootsuite,
|
|
231
|
+
Rr as Hubspot,
|
|
232
|
+
Yr as Imgflip,
|
|
233
|
+
jr as Intercom,
|
|
234
|
+
Ur as Jira,
|
|
235
|
+
$r as Langchain,
|
|
236
|
+
re as LangchainLogotype,
|
|
237
|
+
te as Linear,
|
|
238
|
+
fe as Linkedin,
|
|
239
|
+
xe as Luma,
|
|
240
|
+
ie as Mailchimp,
|
|
241
|
+
se as Mastra,
|
|
242
|
+
ce as MastraLogotype,
|
|
243
|
+
ue as MathToolkit,
|
|
244
|
+
he as Mcp,
|
|
245
|
+
Ge as Microsoft,
|
|
246
|
+
Me as MicrosoftDynamics,
|
|
247
|
+
ye as MicrosoftExcel,
|
|
248
|
+
Ae as MicrosoftOnedrive,
|
|
249
|
+
Le as MicrosoftOutlookCalendar,
|
|
250
|
+
Pe as MicrosoftOutlookMail,
|
|
251
|
+
Fe as MicrosoftPowerpoint,
|
|
252
|
+
we as MicrosoftSharepoint,
|
|
253
|
+
We as MicrosoftTeams,
|
|
254
|
+
Ze as MicrosoftWord,
|
|
255
|
+
Ie as Miro,
|
|
256
|
+
Ne as Monday,
|
|
257
|
+
ze as MongoDB,
|
|
258
|
+
Re as Netsuite,
|
|
259
|
+
Ye as Notion,
|
|
260
|
+
je as Oauth,
|
|
261
|
+
Ue as Obsidian,
|
|
262
|
+
$e as Okta,
|
|
263
|
+
rt as Openai,
|
|
264
|
+
tt as Pagerduty,
|
|
265
|
+
ft as Pinecone,
|
|
266
|
+
xt as Pinterest,
|
|
267
|
+
it as Pipedrive,
|
|
268
|
+
st as Plaid,
|
|
269
|
+
ct as Postgres,
|
|
270
|
+
ut as Posthog,
|
|
271
|
+
ht as Pylon,
|
|
272
|
+
Gt as Quickbooks,
|
|
273
|
+
Mt as Railway,
|
|
274
|
+
yt as Reddit,
|
|
275
|
+
At as Salesforce,
|
|
276
|
+
Lt as Shopify,
|
|
277
|
+
Pt as Singlestore,
|
|
278
|
+
Ft as Slack,
|
|
279
|
+
wt as Snowflake,
|
|
280
|
+
Wt as Splunk,
|
|
281
|
+
Zt as Spotify,
|
|
282
|
+
It as Square,
|
|
283
|
+
Nt as Squarespace,
|
|
284
|
+
zt as Squareup,
|
|
285
|
+
Rt as Stripe,
|
|
286
|
+
Yt as Telegram,
|
|
287
|
+
jt as Tesla,
|
|
288
|
+
Ut as Ticktick,
|
|
289
|
+
$t as Tiktok,
|
|
290
|
+
rp as Trello,
|
|
291
|
+
tp as Twilio,
|
|
292
|
+
fp as Twitch,
|
|
293
|
+
xp as Vercel,
|
|
294
|
+
ip as VercelLogotype,
|
|
295
|
+
sp as Vscode,
|
|
296
|
+
cp as Walmart,
|
|
297
|
+
up as Weaviate,
|
|
298
|
+
hp as Windsurf,
|
|
299
|
+
Gp as Workday,
|
|
300
|
+
Mp as Wrike,
|
|
301
|
+
yp as X,
|
|
302
|
+
Ap as Xero,
|
|
303
|
+
Lp as Youtube,
|
|
304
|
+
Pp as Yugabytedb,
|
|
305
|
+
Fp as Zendesk,
|
|
306
|
+
wp as Zoho,
|
|
307
|
+
Wp as ZohoBooks,
|
|
308
|
+
Zp as ZohoCreator,
|
|
309
|
+
Ip as Zoom
|
|
308
310
|
};
|