@arcadeai/design-system 1.2.0 → 1.3.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/arcade-49z5mR1G.js +1541 -0
- package/dist/assets/icons/arcade.d.ts +3 -0
- package/dist/assets/icons/arcade.js +33 -0
- package/dist/assets/icons/google-docs.js +110 -120
- package/dist/assets/icons/index.d.ts +1 -0
- package/dist/assets/icons/index.js +124 -122
- package/dist/assets/icons/utils.d.ts +26 -0
- package/dist/assets/icons/utils.js +155 -138
- package/dist/components/index.js +62 -48
- package/dist/components/ui/atoms/accordion.js +1 -1
- package/dist/components/ui/atoms/alert.js +2 -2
- package/dist/components/ui/atoms/avatar.js +1 -1
- package/dist/components/ui/atoms/badge.js +2 -2
- package/dist/components/ui/atoms/breadcrumb.js +13 -15
- package/dist/components/ui/atoms/button.js +2 -2
- package/dist/components/ui/atoms/byoc-badge.js +2 -2
- package/dist/components/ui/atoms/card.js +1 -1
- package/dist/components/ui/atoms/chart.js +1 -1
- package/dist/components/ui/atoms/checkbox.js +1 -1
- package/dist/components/ui/atoms/command.js +2 -2
- package/dist/components/ui/atoms/dialog.js +8 -8
- package/dist/components/ui/atoms/dropdown-menu.js +2 -2
- package/dist/components/ui/atoms/form.d.ts +1 -1
- package/dist/components/ui/atoms/form.js +8 -7
- package/dist/components/ui/atoms/hover-card.js +2 -2
- package/dist/components/ui/atoms/index.js +14 -13
- package/dist/components/ui/atoms/input.js +1 -1
- package/dist/components/ui/atoms/label.js +1 -1
- package/dist/components/ui/atoms/popover.js +2 -2
- package/dist/components/ui/atoms/pro-badge.js +2 -2
- package/dist/components/ui/atoms/progress.js +1 -1
- package/dist/components/ui/atoms/radio-group.js +1 -1
- package/dist/components/ui/atoms/resizable.js +24 -1527
- package/dist/components/ui/atoms/scroll-area.js +1 -1
- package/dist/components/ui/atoms/select.js +2 -2
- package/dist/components/ui/atoms/separator.js +1 -1
- package/dist/components/ui/atoms/sheet.js +2 -2
- package/dist/components/ui/atoms/sidebar.js +3 -3
- package/dist/components/ui/atoms/skeleton.js +1 -1
- package/dist/components/ui/atoms/slider.js +1 -1
- package/dist/components/ui/atoms/switch.js +1 -1
- package/dist/components/ui/atoms/table.js +1 -1
- package/dist/components/ui/atoms/tabs.js +1 -1
- package/dist/components/ui/atoms/textarea.js +1 -1
- package/dist/components/ui/atoms/toggle.js +2 -2
- package/dist/components/ui/atoms/tooltip.js +60 -60
- package/dist/components/ui/atoms/view-tools-control.d.ts +12 -0
- package/dist/components/ui/atoms/view-tools-control.js +53 -0
- package/dist/components/ui/index.d.ts +2 -0
- package/dist/components/ui/index.js +62 -48
- package/dist/components/ui/molecules/empty-state.d.ts +5 -0
- package/dist/components/ui/molecules/empty-state.js +25 -0
- package/dist/components/ui/molecules/index.d.ts +6 -0
- package/dist/components/ui/molecules/index.js +13 -0
- package/dist/components/ui/molecules/requirement-badges.d.ts +29 -0
- package/dist/components/ui/molecules/requirement-badges.js +24 -0
- package/dist/components/ui/molecules/tool-card.d.ts +17 -0
- package/dist/components/ui/molecules/tool-card.js +127 -0
- package/dist/components/ui/molecules/toolkit-card.d.ts +24 -0
- package/dist/components/ui/molecules/toolkit-card.js +13 -0
- package/dist/components/ui/molecules/toolkit-picker-trigger.d.ts +8 -0
- package/dist/components/ui/molecules/toolkit-picker-trigger.js +96 -0
- package/dist/components/ui/molecules/toolkit-selection-summary.d.ts +10 -0
- package/dist/components/ui/molecules/toolkit-selection-summary.js +117 -0
- package/dist/components/ui/organisms/index.d.ts +1 -0
- package/dist/components/ui/organisms/index.js +4 -0
- package/dist/components/ui/organisms/toolkit-picker/components/footer-summary.d.ts +1 -0
- package/dist/components/ui/organisms/toolkit-picker/components/footer-summary.js +36 -0
- package/dist/components/ui/organisms/toolkit-picker/components/mobile-filter-badges.d.ts +1 -0
- package/dist/components/ui/organisms/toolkit-picker/components/mobile-filter-badges.js +96 -0
- package/dist/components/ui/organisms/toolkit-picker/components/search-input.d.ts +1 -0
- package/dist/components/ui/organisms/toolkit-picker/components/search-input.js +36 -0
- package/dist/components/ui/organisms/toolkit-picker/components/select-button.d.ts +9 -0
- package/dist/components/ui/organisms/toolkit-picker/components/select-button.js +35 -0
- package/dist/components/ui/organisms/toolkit-picker/components/toolkit-card-with-selection.d.ts +9 -0
- package/dist/components/ui/organisms/toolkit-picker/components/toolkit-card-with-selection.js +36 -0
- package/dist/components/ui/organisms/toolkit-picker/hooks/use-toolkit-picker-filter.test.d.ts +1 -0
- package/dist/components/ui/organisms/toolkit-picker/hooks/use-toolkit-picker-filter.test.js +44 -0
- package/dist/components/ui/organisms/toolkit-picker/hooks/use-toolkit-picker-search.test.d.ts +1 -0
- package/dist/components/ui/organisms/toolkit-picker/hooks/use-toolkit-picker-search.test.js +46 -0
- package/dist/components/ui/organisms/toolkit-picker/hooks/use-toolkit-picker-selection.test.d.ts +1 -0
- package/dist/components/ui/organisms/toolkit-picker/hooks/use-toolkit-picker-selection.test.js +28 -0
- package/dist/components/ui/organisms/toolkit-picker/hooks/use-toolkit-picker.d.ts +40 -0
- package/dist/components/ui/organisms/toolkit-picker/hooks/use-toolkit-picker.js +267 -0
- package/dist/components/ui/organisms/toolkit-picker/index.d.ts +14 -0
- package/dist/components/ui/organisms/toolkit-picker/index.js +16 -0
- package/dist/components/ui/organisms/toolkit-picker/mocks/toolkit-collection.d.ts +7 -0
- package/dist/components/ui/organisms/toolkit-picker/mocks/toolkit-collection.js +432 -0
- package/dist/components/ui/organisms/toolkit-picker/toolkit-picker.d.ts +2 -0
- package/dist/components/ui/organisms/toolkit-picker/toolkit-picker.js +395 -0
- package/dist/components/ui/organisms/toolkit-picker/toolkit-picker.test.d.ts +0 -0
- package/dist/components/ui/organisms/toolkit-picker/toolkit-picker.test.js +12832 -0
- package/dist/components/ui/utils/memo.d.ts +2 -0
- package/dist/components/ui/utils/memo.js +25 -0
- package/dist/{index-CQhYMnjT.js → index-BDE30rcJ.js} +1 -1
- package/dist/{index-PlrlSrPo.js → index-DEJd-dpa.js} +1 -1
- package/dist/{index-BSWzylXR.js → index-Ez2mlmzx.js} +2 -2
- package/dist/lib/arcade/arcade.d.ts +100 -0
- package/dist/lib/arcade/arcade.js +5 -0
- package/dist/lib/arcade/arcade.test.d.ts +1 -0
- package/dist/lib/arcade/arcade.test.js +299 -0
- package/dist/lib/arcade/mocks.d.ts +2 -0
- package/dist/lib/arcade/mocks.js +547 -0
- package/dist/lib/utils.d.ts +1 -0
- package/dist/lib/utils.js +3 -2
- package/dist/magic-string.es-BQ9KnLz-.js +659 -0
- package/dist/main.js +62 -48
- package/dist/react-resizable-panels.browser-ZHjTH32c.js +1509 -0
- package/dist/react.esm-369wBsAv.js +35565 -0
- package/dist/toolkit-card-GhM_oj4G.js +304 -0
- package/dist/{utils-CRiPKpXj.js → utils-Db4QWi-E.js} +204 -189
- package/dist/vi.bdSIJ99Y-CZgZQPWH.js +11996 -0
- package/package.json +49 -39
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { jsxs as e, jsx as L } from "react/jsx-runtime";
|
|
2
|
+
const l = (t) => /* @__PURE__ */ e(
|
|
3
|
+
"svg",
|
|
4
|
+
{
|
|
5
|
+
fill: "none",
|
|
6
|
+
height: "315",
|
|
7
|
+
viewBox: "0 0 309 315",
|
|
8
|
+
width: "309",
|
|
9
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
+
...t,
|
|
11
|
+
children: [
|
|
12
|
+
/* @__PURE__ */ L("title", { children: "Arcade" }),
|
|
13
|
+
/* @__PURE__ */ L(
|
|
14
|
+
"path",
|
|
15
|
+
{
|
|
16
|
+
d: "M267.074 293.931L266.955 0L231.402 15.9321L45.0407 294.83L9.86791 299.653L0 314.989H98.1906L109.035 299.653L72.3429 293.963L109.535 234.191L171.521 206.478C177.611 203.757 184.212 202.348 190.877 202.348H221.339L221.306 212.98V213.024L221.089 293.974L191.843 298.266L180.705 315H296.993L308.25 298.212M171.293 187.977L125.145 209.176L221.86 60L221.881 86.3042L221.382 158.996L221.339 183.685L190.063 183.652C183.202 183.652 177.514 185.116 171.293 187.977Z",
|
|
17
|
+
fill: "white"
|
|
18
|
+
}
|
|
19
|
+
),
|
|
20
|
+
/* @__PURE__ */ L(
|
|
21
|
+
"path",
|
|
22
|
+
{
|
|
23
|
+
d: "M267.074 293.931L266.955 0L231.402 15.9321L45.0407 294.83L9.86791 299.653L0 314.989H98.1906L109.035 299.653L72.3429 293.963L109.535 234.191L171.521 206.478C177.611 203.757 184.212 202.348 190.877 202.348H221.339L221.306 212.98V213.024L221.089 293.974L191.843 298.266L180.705 315H296.993L308.25 298.212M171.293 187.977L125.145 209.176L221.86 60L221.881 86.3042L221.382 158.996L221.339 183.685L190.063 183.652C183.202 183.652 177.514 185.116 171.293 187.977Z",
|
|
24
|
+
fill: "white"
|
|
25
|
+
}
|
|
26
|
+
)
|
|
27
|
+
]
|
|
28
|
+
}
|
|
29
|
+
);
|
|
30
|
+
export {
|
|
31
|
+
l as Arcade,
|
|
32
|
+
l as default
|
|
33
|
+
};
|
|
@@ -90,136 +90,126 @@ const d = (e) => /* @__PURE__ */ l(
|
|
|
90
90
|
}
|
|
91
91
|
)
|
|
92
92
|
] }),
|
|
93
|
-
/* @__PURE__ */ i(
|
|
93
|
+
/* @__PURE__ */ i("g", { fill: "none", fillRule: "evenodd", id: "Page-1", stroke: "none", strokeWidth: "1", children: /* @__PURE__ */ i(
|
|
94
94
|
"g",
|
|
95
95
|
{
|
|
96
|
-
|
|
97
|
-
"
|
|
98
|
-
id: "
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
{
|
|
104
|
-
id: "Consumer-Apps-Docs-Large-VD-R8",
|
|
105
|
-
transform: "translate(-451.000000, -463.000000)",
|
|
106
|
-
children: /* @__PURE__ */ i("g", { id: "Hero", transform: "translate(0.000000, 63.000000)", children: /* @__PURE__ */ i("g", { id: "Personal", transform: "translate(277.000000, 309.000000)", children: /* @__PURE__ */ l("g", { id: "Docs-icon", transform: "translate(174.000000, 91.000000)", children: [
|
|
107
|
-
/* @__PURE__ */ l("g", { id: "Group", children: [
|
|
108
|
-
/* @__PURE__ */ l("g", { id: "Clipped", children: [
|
|
109
|
-
/* @__PURE__ */ i("mask", { fill: "white", id: "mask-2", children: /* @__PURE__ */ i("use", { xlinkHref: "#path-1" }) }),
|
|
110
|
-
/* @__PURE__ */ i("g", { id: "SVGID_1_" }),
|
|
111
|
-
/* @__PURE__ */ i(
|
|
112
|
-
"path",
|
|
113
|
-
{
|
|
114
|
-
d: "M29.375,0 L4.40625,0 C1.9828125,0 0,1.99431818 0,4.43181818 L0,60.5681818 C0,63.0056818 1.9828125,65 4.40625,65 L42.59375,65 C45.0171875,65 47,63.0056818 47,60.5681818 L47,17.7272727 L36.71875,10.3409091 L29.375,0 Z",
|
|
115
|
-
fill: "#4285F4",
|
|
116
|
-
"fill-rule": "nonzero",
|
|
117
|
-
id: "Path",
|
|
118
|
-
mask: "url(#mask-2)"
|
|
119
|
-
}
|
|
120
|
-
)
|
|
121
|
-
] }),
|
|
122
|
-
/* @__PURE__ */ l("g", { id: "Clipped", children: [
|
|
123
|
-
/* @__PURE__ */ i("mask", { fill: "white", id: "mask-4", children: /* @__PURE__ */ i("use", { xlinkHref: "#path-3" }) }),
|
|
124
|
-
/* @__PURE__ */ i("g", { id: "SVGID_1_" }),
|
|
125
|
-
/* @__PURE__ */ i(
|
|
126
|
-
"polygon",
|
|
127
|
-
{
|
|
128
|
-
fill: "url(#linearGradient-5)",
|
|
129
|
-
fillRule: "nonzero",
|
|
130
|
-
id: "Path",
|
|
131
|
-
mask: "url(#mask-4)",
|
|
132
|
-
points: "30.6638281 16.4309659 47 32.8582386 47 17.7272727"
|
|
133
|
-
}
|
|
134
|
-
)
|
|
135
|
-
] }),
|
|
136
|
-
/* @__PURE__ */ l("g", { id: "Clipped", children: [
|
|
137
|
-
/* @__PURE__ */ i("mask", { fill: "white", id: "mask-7", children: /* @__PURE__ */ i("use", { xlinkHref: "#path-6" }) }),
|
|
138
|
-
/* @__PURE__ */ i("g", { id: "SVGID_1_" }),
|
|
139
|
-
/* @__PURE__ */ i(
|
|
140
|
-
"path",
|
|
141
|
-
{
|
|
142
|
-
d: "M11.75,47.2727273 L35.25,47.2727273 L35.25,44.3181818 L11.75,44.3181818 L11.75,47.2727273 Z M11.75,53.1818182 L29.375,53.1818182 L29.375,50.2272727 L11.75,50.2272727 L11.75,53.1818182 Z M11.75,32.5 L11.75,35.4545455 L35.25,35.4545455 L35.25,32.5 L11.75,32.5 Z M11.75,41.3636364 L35.25,41.3636364 L35.25,38.4090909 L11.75,38.4090909 L11.75,41.3636364 Z",
|
|
143
|
-
fill: "#F1F1F1",
|
|
144
|
-
fillRule: "nonzero",
|
|
145
|
-
id: "Shape",
|
|
146
|
-
mask: "url(#mask-7)"
|
|
147
|
-
}
|
|
148
|
-
)
|
|
149
|
-
] }),
|
|
150
|
-
/* @__PURE__ */ l("g", { id: "Clipped", children: [
|
|
151
|
-
/* @__PURE__ */ i("mask", { fill: "white", id: "mask-9", children: /* @__PURE__ */ i("use", { xlinkHref: "#path-8" }) }),
|
|
152
|
-
/* @__PURE__ */ i("g", { id: "SVGID_1_" }),
|
|
153
|
-
/* @__PURE__ */ i("g", { id: "Group", mask: "url(#mask-9)", children: /* @__PURE__ */ i("g", { transform: "translate(26.437500, -2.954545)", children: /* @__PURE__ */ i(
|
|
154
|
-
"path",
|
|
155
|
-
{
|
|
156
|
-
d: "M2.9375,2.95454545 L2.9375,16.25 C2.9375,18.6985795 4.90929688,20.6818182 7.34375,20.6818182 L20.5625,20.6818182 L2.9375,2.95454545 Z",
|
|
157
|
-
fill: "#A1C2FA",
|
|
158
|
-
fillRule: "nonzero",
|
|
159
|
-
id: "Path"
|
|
160
|
-
}
|
|
161
|
-
) }) })
|
|
162
|
-
] }),
|
|
163
|
-
/* @__PURE__ */ l("g", { id: "Clipped", children: [
|
|
164
|
-
/* @__PURE__ */ i("mask", { fill: "white", id: "mask-11", children: /* @__PURE__ */ i("use", { xlinkHref: "#path-10" }) }),
|
|
165
|
-
/* @__PURE__ */ i("g", { id: "SVGID_1_" }),
|
|
166
|
-
/* @__PURE__ */ i(
|
|
167
|
-
"path",
|
|
168
|
-
{
|
|
169
|
-
d: "M4.40625,0 C1.9828125,0 0,1.99431818 0,4.43181818 L0,4.80113636 C0,2.36363636 1.9828125,0.369318182 4.40625,0.369318182 L29.375,0.369318182 L29.375,0 L4.40625,0 Z",
|
|
170
|
-
fill: "#FFFFFF",
|
|
171
|
-
fillOpacity: "0.2",
|
|
172
|
-
fillRule: "nonzero",
|
|
173
|
-
id: "Path",
|
|
174
|
-
mask: "url(#mask-11)"
|
|
175
|
-
}
|
|
176
|
-
)
|
|
177
|
-
] }),
|
|
178
|
-
/* @__PURE__ */ l("g", { id: "Clipped", children: [
|
|
179
|
-
/* @__PURE__ */ i("mask", { fill: "white", id: "mask-13", children: /* @__PURE__ */ i("use", { xlinkHref: "#path-12" }) }),
|
|
180
|
-
/* @__PURE__ */ i("g", { id: "SVGID_1_" }),
|
|
181
|
-
/* @__PURE__ */ i(
|
|
182
|
-
"path",
|
|
183
|
-
{
|
|
184
|
-
d: "M42.59375,64.6306818 L4.40625,64.6306818 C1.9828125,64.6306818 0,62.6363636 0,60.1988636 L0,60.5681818 C0,63.0056818 1.9828125,65 4.40625,65 L42.59375,65 C45.0171875,65 47,63.0056818 47,60.5681818 L47,60.1988636 C47,62.6363636 45.0171875,64.6306818 42.59375,64.6306818 Z",
|
|
185
|
-
fill: "#1A237E",
|
|
186
|
-
fillOpacity: "0.2",
|
|
187
|
-
fillRule: "nonzero",
|
|
188
|
-
id: "Path",
|
|
189
|
-
mask: "url(#mask-13)"
|
|
190
|
-
}
|
|
191
|
-
)
|
|
192
|
-
] }),
|
|
193
|
-
/* @__PURE__ */ l("g", { id: "Clipped", children: [
|
|
194
|
-
/* @__PURE__ */ i("mask", { fill: "white", id: "mask-15", children: /* @__PURE__ */ i("use", { xlinkHref: "#path-14" }) }),
|
|
195
|
-
/* @__PURE__ */ i("g", { id: "SVGID_1_" }),
|
|
196
|
-
/* @__PURE__ */ i(
|
|
197
|
-
"path",
|
|
198
|
-
{
|
|
199
|
-
d: "M33.78125,17.7272727 C31.3467969,17.7272727 29.375,15.7440341 29.375,13.2954545 L29.375,13.6647727 C29.375,16.1133523 31.3467969,18.0965909 33.78125,18.0965909 L47,18.0965909 L47,17.7272727 L33.78125,17.7272727 Z",
|
|
200
|
-
fill: "#1A237E",
|
|
201
|
-
fillOpacity: "0.1",
|
|
202
|
-
fillRule: "nonzero",
|
|
203
|
-
id: "Path",
|
|
204
|
-
mask: "url(#mask-15)"
|
|
205
|
-
}
|
|
206
|
-
)
|
|
207
|
-
] })
|
|
208
|
-
] }),
|
|
96
|
+
id: "Consumer-Apps-Docs-Large-VD-R8",
|
|
97
|
+
transform: "translate(-451.000000, -463.000000)",
|
|
98
|
+
children: /* @__PURE__ */ i("g", { id: "Hero", transform: "translate(0.000000, 63.000000)", children: /* @__PURE__ */ i("g", { id: "Personal", transform: "translate(277.000000, 309.000000)", children: /* @__PURE__ */ l("g", { id: "Docs-icon", transform: "translate(174.000000, 91.000000)", children: [
|
|
99
|
+
/* @__PURE__ */ l("g", { id: "Group", children: [
|
|
100
|
+
/* @__PURE__ */ l("g", { id: "Clipped", children: [
|
|
101
|
+
/* @__PURE__ */ i("mask", { fill: "white", id: "mask-2", children: /* @__PURE__ */ i("use", { xlinkHref: "#path-1" }) }),
|
|
102
|
+
/* @__PURE__ */ i("g", { id: "SVGID_1_" }),
|
|
209
103
|
/* @__PURE__ */ i(
|
|
210
104
|
"path",
|
|
211
105
|
{
|
|
212
|
-
d: "M29.375,0 L4.40625,0 C1.9828125,0 0,1.99431818 0,4.43181818 L0,60.5681818 C0,63.0056818 1.9828125,65 4.40625,65 L42.59375,65 C45.0171875,65 47,63.0056818 47,60.5681818 L47,17.7272727 L29.375,0 Z",
|
|
213
|
-
fill: "
|
|
106
|
+
d: "M29.375,0 L4.40625,0 C1.9828125,0 0,1.99431818 0,4.43181818 L0,60.5681818 C0,63.0056818 1.9828125,65 4.40625,65 L42.59375,65 C45.0171875,65 47,63.0056818 47,60.5681818 L47,17.7272727 L36.71875,10.3409091 L29.375,0 Z",
|
|
107
|
+
fill: "#4285F4",
|
|
108
|
+
fillRule: "nonzero",
|
|
109
|
+
id: "Path",
|
|
110
|
+
mask: "url(#mask-2)"
|
|
111
|
+
}
|
|
112
|
+
)
|
|
113
|
+
] }),
|
|
114
|
+
/* @__PURE__ */ l("g", { id: "Clipped", children: [
|
|
115
|
+
/* @__PURE__ */ i("mask", { fill: "white", id: "mask-4", children: /* @__PURE__ */ i("use", { xlinkHref: "#path-3" }) }),
|
|
116
|
+
/* @__PURE__ */ i("g", { id: "SVGID_1_" }),
|
|
117
|
+
/* @__PURE__ */ i(
|
|
118
|
+
"polygon",
|
|
119
|
+
{
|
|
120
|
+
fill: "url(#linearGradient-5)",
|
|
121
|
+
fillRule: "nonzero",
|
|
122
|
+
id: "Path",
|
|
123
|
+
mask: "url(#mask-4)",
|
|
124
|
+
points: "30.6638281 16.4309659 47 32.8582386 47 17.7272727"
|
|
125
|
+
}
|
|
126
|
+
)
|
|
127
|
+
] }),
|
|
128
|
+
/* @__PURE__ */ l("g", { id: "Clipped", children: [
|
|
129
|
+
/* @__PURE__ */ i("mask", { fill: "white", id: "mask-7", children: /* @__PURE__ */ i("use", { xlinkHref: "#path-6" }) }),
|
|
130
|
+
/* @__PURE__ */ i("g", { id: "SVGID_1_" }),
|
|
131
|
+
/* @__PURE__ */ i(
|
|
132
|
+
"path",
|
|
133
|
+
{
|
|
134
|
+
d: "M11.75,47.2727273 L35.25,47.2727273 L35.25,44.3181818 L11.75,44.3181818 L11.75,47.2727273 Z M11.75,53.1818182 L29.375,53.1818182 L29.375,50.2272727 L11.75,50.2272727 L11.75,53.1818182 Z M11.75,32.5 L11.75,35.4545455 L35.25,35.4545455 L35.25,32.5 L11.75,32.5 Z M11.75,41.3636364 L35.25,41.3636364 L35.25,38.4090909 L11.75,38.4090909 L11.75,41.3636364 Z",
|
|
135
|
+
fill: "#F1F1F1",
|
|
136
|
+
fillRule: "nonzero",
|
|
137
|
+
id: "Shape",
|
|
138
|
+
mask: "url(#mask-7)"
|
|
139
|
+
}
|
|
140
|
+
)
|
|
141
|
+
] }),
|
|
142
|
+
/* @__PURE__ */ l("g", { id: "Clipped", children: [
|
|
143
|
+
/* @__PURE__ */ i("mask", { fill: "white", id: "mask-9", children: /* @__PURE__ */ i("use", { xlinkHref: "#path-8" }) }),
|
|
144
|
+
/* @__PURE__ */ i("g", { id: "SVGID_1_" }),
|
|
145
|
+
/* @__PURE__ */ i("g", { id: "Group", mask: "url(#mask-9)", children: /* @__PURE__ */ i("g", { transform: "translate(26.437500, -2.954545)", children: /* @__PURE__ */ i(
|
|
146
|
+
"path",
|
|
147
|
+
{
|
|
148
|
+
d: "M2.9375,2.95454545 L2.9375,16.25 C2.9375,18.6985795 4.90929688,20.6818182 7.34375,20.6818182 L20.5625,20.6818182 L2.9375,2.95454545 Z",
|
|
149
|
+
fill: "#A1C2FA",
|
|
214
150
|
fillRule: "nonzero",
|
|
215
151
|
id: "Path"
|
|
216
152
|
}
|
|
153
|
+
) }) })
|
|
154
|
+
] }),
|
|
155
|
+
/* @__PURE__ */ l("g", { id: "Clipped", children: [
|
|
156
|
+
/* @__PURE__ */ i("mask", { fill: "white", id: "mask-11", children: /* @__PURE__ */ i("use", { xlinkHref: "#path-10" }) }),
|
|
157
|
+
/* @__PURE__ */ i("g", { id: "SVGID_1_" }),
|
|
158
|
+
/* @__PURE__ */ i(
|
|
159
|
+
"path",
|
|
160
|
+
{
|
|
161
|
+
d: "M4.40625,0 C1.9828125,0 0,1.99431818 0,4.43181818 L0,4.80113636 C0,2.36363636 1.9828125,0.369318182 4.40625,0.369318182 L29.375,0.369318182 L29.375,0 L4.40625,0 Z",
|
|
162
|
+
fill: "#FFFFFF",
|
|
163
|
+
fillOpacity: "0.2",
|
|
164
|
+
fillRule: "nonzero",
|
|
165
|
+
id: "Path",
|
|
166
|
+
mask: "url(#mask-11)"
|
|
167
|
+
}
|
|
168
|
+
)
|
|
169
|
+
] }),
|
|
170
|
+
/* @__PURE__ */ l("g", { id: "Clipped", children: [
|
|
171
|
+
/* @__PURE__ */ i("mask", { fill: "white", id: "mask-13", children: /* @__PURE__ */ i("use", { xlinkHref: "#path-12" }) }),
|
|
172
|
+
/* @__PURE__ */ i("g", { id: "SVGID_1_" }),
|
|
173
|
+
/* @__PURE__ */ i(
|
|
174
|
+
"path",
|
|
175
|
+
{
|
|
176
|
+
d: "M42.59375,64.6306818 L4.40625,64.6306818 C1.9828125,64.6306818 0,62.6363636 0,60.1988636 L0,60.5681818 C0,63.0056818 1.9828125,65 4.40625,65 L42.59375,65 C45.0171875,65 47,63.0056818 47,60.5681818 L47,60.1988636 C47,62.6363636 45.0171875,64.6306818 42.59375,64.6306818 Z",
|
|
177
|
+
fill: "#1A237E",
|
|
178
|
+
fillOpacity: "0.2",
|
|
179
|
+
fillRule: "nonzero",
|
|
180
|
+
id: "Path",
|
|
181
|
+
mask: "url(#mask-13)"
|
|
182
|
+
}
|
|
183
|
+
)
|
|
184
|
+
] }),
|
|
185
|
+
/* @__PURE__ */ l("g", { id: "Clipped", children: [
|
|
186
|
+
/* @__PURE__ */ i("mask", { fill: "white", id: "mask-15", children: /* @__PURE__ */ i("use", { xlinkHref: "#path-14" }) }),
|
|
187
|
+
/* @__PURE__ */ i("g", { id: "SVGID_1_" }),
|
|
188
|
+
/* @__PURE__ */ i(
|
|
189
|
+
"path",
|
|
190
|
+
{
|
|
191
|
+
d: "M33.78125,17.7272727 C31.3467969,17.7272727 29.375,15.7440341 29.375,13.2954545 L29.375,13.6647727 C29.375,16.1133523 31.3467969,18.0965909 33.78125,18.0965909 L47,18.0965909 L47,17.7272727 L33.78125,17.7272727 Z",
|
|
192
|
+
fill: "#1A237E",
|
|
193
|
+
fillOpacity: "0.1",
|
|
194
|
+
fillRule: "nonzero",
|
|
195
|
+
id: "Path",
|
|
196
|
+
mask: "url(#mask-15)"
|
|
197
|
+
}
|
|
217
198
|
)
|
|
218
|
-
] })
|
|
219
|
-
}
|
|
220
|
-
|
|
199
|
+
] })
|
|
200
|
+
] }),
|
|
201
|
+
/* @__PURE__ */ i(
|
|
202
|
+
"path",
|
|
203
|
+
{
|
|
204
|
+
d: "M29.375,0 L4.40625,0 C1.9828125,0 0,1.99431818 0,4.43181818 L0,60.5681818 C0,63.0056818 1.9828125,65 4.40625,65 L42.59375,65 C45.0171875,65 47,63.0056818 47,60.5681818 L47,17.7272727 L29.375,0 Z",
|
|
205
|
+
fill: "url(#radialGradient-16)",
|
|
206
|
+
fillRule: "nonzero",
|
|
207
|
+
id: "Path"
|
|
208
|
+
}
|
|
209
|
+
)
|
|
210
|
+
] }) }) })
|
|
221
211
|
}
|
|
222
|
-
)
|
|
212
|
+
) })
|
|
223
213
|
]
|
|
224
214
|
}
|
|
225
215
|
);
|
|
@@ -1,126 +1,128 @@
|
|
|
1
1
|
import { Airtable as e } from "./airtable.js";
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import {
|
|
36
|
-
import {
|
|
37
|
-
import {
|
|
38
|
-
import {
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
import {
|
|
43
|
-
import {
|
|
44
|
-
import {
|
|
45
|
-
import {
|
|
46
|
-
import {
|
|
47
|
-
import {
|
|
48
|
-
import {
|
|
49
|
-
import {
|
|
50
|
-
import {
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
54
|
-
import {
|
|
55
|
-
import {
|
|
56
|
-
import {
|
|
57
|
-
import {
|
|
58
|
-
import {
|
|
59
|
-
import {
|
|
60
|
-
import {
|
|
61
|
-
import {
|
|
62
|
-
import {
|
|
2
|
+
import { Arcade as p } from "./arcade.js";
|
|
3
|
+
import { Asana as m } from "./asana.js";
|
|
4
|
+
import { Atlassian as l } from "./atlassian.js";
|
|
5
|
+
import { Auth0 as i } from "./auth0.js";
|
|
6
|
+
import { Azure as g } from "./azure.js";
|
|
7
|
+
import { Bluesky as G } from "./bluesky.js";
|
|
8
|
+
import { Box as u } from "./box.js";
|
|
9
|
+
import { Calendly as k } from "./calendly.js";
|
|
10
|
+
import { ClickUp as b } from "./clickup.js";
|
|
11
|
+
import { Coinbase as A } from "./coinbase.js";
|
|
12
|
+
import { Confluence as y } from "./confluence.js";
|
|
13
|
+
import { Datadog as T } from "./datadog.js";
|
|
14
|
+
import { Discord as F } from "./discord.js";
|
|
15
|
+
import { Dropbox as H } from "./dropbox.js";
|
|
16
|
+
import { E2B as N } from "./e2b.js";
|
|
17
|
+
import { Ebay as E } from "./ebay.js";
|
|
18
|
+
import { Figma as P } from "./figma.js";
|
|
19
|
+
import { Firecrawl as v } from "./firecrawl.js";
|
|
20
|
+
import { Github as I } from "./github.js";
|
|
21
|
+
import { Gitlab as R } from "./gitlab.js";
|
|
22
|
+
import { Gmail as V } from "./gmail.js";
|
|
23
|
+
import { Google as Y } from "./google.js";
|
|
24
|
+
import { GoogleCalendar as j } from "./google-calendar.js";
|
|
25
|
+
import { GoogleContacts as K } from "./google-contacts.js";
|
|
26
|
+
import { GoogleDocs as _ } from "./google-docs.js";
|
|
27
|
+
import { GoogleDrive as oo } from "./google-drive.js";
|
|
28
|
+
import { GoogleFinance as eo } from "./google-finance.js";
|
|
29
|
+
import { GoogleFlight as po } from "./google-flight.js";
|
|
30
|
+
import { GoogleHotels as mo } from "./google-hotels.js";
|
|
31
|
+
import { GoogleMaps as lo } from "./google-maps.js";
|
|
32
|
+
import { GoogleNews as io } from "./google-news.js";
|
|
33
|
+
import { GoogleSheets as go } from "./google-sheets.js";
|
|
34
|
+
import { GoogleShopping as Go } from "./google-shopping.js";
|
|
35
|
+
import { Heroku as uo } from "./heroku.js";
|
|
36
|
+
import { HubSpot as So } from "./hubspot.js";
|
|
37
|
+
import { Jira as ho } from "./jira.js";
|
|
38
|
+
import { Linear as Co } from "./linear.js";
|
|
39
|
+
import { LinkedIn as Do } from "./linkedin.js";
|
|
40
|
+
import { Microsoft as wo } from "./microsoft.js";
|
|
41
|
+
import { NetSuite as Bo } from "./netsuite.js";
|
|
42
|
+
import { Notion as Mo } from "./notion.js";
|
|
43
|
+
import { OAuth as Oo } from "./oauth.js";
|
|
44
|
+
import { OutlookCalendar as Lo } from "./outlook-calendar.js";
|
|
45
|
+
import { OutlookMail as Xo } from "./outlook-mail.js";
|
|
46
|
+
import { Pinterest as zo } from "./pinterest.js";
|
|
47
|
+
import { Postgres as Jo } from "./postgres.js";
|
|
48
|
+
import { Reddit as Uo } from "./reddit.js";
|
|
49
|
+
import { Salesforce as Wo } from "./salesforce.js";
|
|
50
|
+
import { Shopify as Zo } from "./shopify.js";
|
|
51
|
+
import { Slack as qo } from "./slack.js";
|
|
52
|
+
import { Spotify as Qo } from "./spotify.js";
|
|
53
|
+
import { Stripe as $o } from "./stripe.js";
|
|
54
|
+
import { Tesla as rr } from "./tesla.js";
|
|
55
|
+
import { Tiktok as tr } from "./tiktok.js";
|
|
56
|
+
import { Twilio as fr } from "./twilio.js";
|
|
57
|
+
import { Twitch as xr } from "./twitch.js";
|
|
58
|
+
import { Vercel as ar } from "./vercel.js";
|
|
59
|
+
import { Walmart as sr } from "./walmart.js";
|
|
60
|
+
import { X as nr } from "./x.js";
|
|
61
|
+
import { Xero as cr } from "./xero.js";
|
|
62
|
+
import { YouTube as dr } from "./youtube.js";
|
|
63
|
+
import { Zoom as Sr } from "./zoom.js";
|
|
63
64
|
export {
|
|
64
65
|
e as Airtable,
|
|
65
|
-
p as
|
|
66
|
-
m as
|
|
67
|
-
l as
|
|
68
|
-
|
|
69
|
-
g as
|
|
70
|
-
G as
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
y as
|
|
76
|
-
T as
|
|
77
|
-
F as
|
|
78
|
-
H as
|
|
79
|
-
N as
|
|
80
|
-
E as
|
|
81
|
-
P as
|
|
82
|
-
v as
|
|
83
|
-
I as
|
|
84
|
-
R as
|
|
85
|
-
V as
|
|
86
|
-
Y as
|
|
87
|
-
j as
|
|
88
|
-
K as
|
|
89
|
-
_ as
|
|
90
|
-
oo as
|
|
91
|
-
eo as
|
|
92
|
-
po as
|
|
93
|
-
mo as
|
|
94
|
-
lo as
|
|
95
|
-
|
|
96
|
-
go as
|
|
97
|
-
Go as
|
|
98
|
-
|
|
99
|
-
So as
|
|
100
|
-
ho as
|
|
101
|
-
|
|
102
|
-
Do as
|
|
103
|
-
wo as
|
|
104
|
-
Bo as
|
|
105
|
-
Mo as
|
|
106
|
-
Oo as
|
|
107
|
-
Lo as
|
|
108
|
-
Xo as
|
|
109
|
-
zo as
|
|
110
|
-
Jo as
|
|
111
|
-
Uo as
|
|
112
|
-
Wo as
|
|
113
|
-
Zo as
|
|
114
|
-
qo as
|
|
115
|
-
Qo as
|
|
116
|
-
$o as
|
|
117
|
-
rr as
|
|
118
|
-
tr as
|
|
119
|
-
fr as
|
|
120
|
-
xr as
|
|
121
|
-
|
|
122
|
-
sr as
|
|
123
|
-
nr as
|
|
124
|
-
|
|
125
|
-
|
|
66
|
+
p as Arcade,
|
|
67
|
+
m as Asana,
|
|
68
|
+
l as Atlassian,
|
|
69
|
+
i as Auth0,
|
|
70
|
+
g as Azure,
|
|
71
|
+
G as Bluesky,
|
|
72
|
+
u as Box,
|
|
73
|
+
k as Calendly,
|
|
74
|
+
b as ClickUp,
|
|
75
|
+
A as Coinbase,
|
|
76
|
+
y as Confluence,
|
|
77
|
+
T as Datadog,
|
|
78
|
+
F as Discord,
|
|
79
|
+
H as Dropbox,
|
|
80
|
+
N as E2B,
|
|
81
|
+
E as Ebay,
|
|
82
|
+
P as Figma,
|
|
83
|
+
v as Firecrawl,
|
|
84
|
+
I as Github,
|
|
85
|
+
R as Gitlab,
|
|
86
|
+
V as Gmail,
|
|
87
|
+
Y as Google,
|
|
88
|
+
j as GoogleCalendar,
|
|
89
|
+
K as GoogleContacts,
|
|
90
|
+
_ as GoogleDocs,
|
|
91
|
+
oo as GoogleDrive,
|
|
92
|
+
eo as GoogleFinance,
|
|
93
|
+
po as GoogleFlight,
|
|
94
|
+
mo as GoogleHotels,
|
|
95
|
+
lo as GoogleMaps,
|
|
96
|
+
io as GoogleNews,
|
|
97
|
+
go as GoogleSheets,
|
|
98
|
+
Go as GoogleShopping,
|
|
99
|
+
uo as Heroku,
|
|
100
|
+
So as HubSpot,
|
|
101
|
+
ho as Jira,
|
|
102
|
+
Co as Linear,
|
|
103
|
+
Do as LinkedIn,
|
|
104
|
+
wo as Microsoft,
|
|
105
|
+
Bo as NetSuite,
|
|
106
|
+
Mo as Notion,
|
|
107
|
+
Oo as OAuth,
|
|
108
|
+
Lo as OutlookCalendar,
|
|
109
|
+
Xo as OutlookMail,
|
|
110
|
+
zo as Pinterest,
|
|
111
|
+
Jo as Postgres,
|
|
112
|
+
Uo as Reddit,
|
|
113
|
+
Wo as Salesforce,
|
|
114
|
+
Zo as Shopify,
|
|
115
|
+
qo as Slack,
|
|
116
|
+
Qo as Spotify,
|
|
117
|
+
$o as Stripe,
|
|
118
|
+
rr as Tesla,
|
|
119
|
+
tr as Tiktok,
|
|
120
|
+
fr as Twilio,
|
|
121
|
+
xr as Twitch,
|
|
122
|
+
ar as Vercel,
|
|
123
|
+
sr as Walmart,
|
|
124
|
+
nr as X,
|
|
125
|
+
cr as Xero,
|
|
126
|
+
dr as YouTube,
|
|
127
|
+
Sr as Zoom
|
|
126
128
|
};
|
|
@@ -407,3 +407,29 @@ export declare const TOOLKIT_CATALOGUE: {
|
|
|
407
407
|
readonly label: "YouTube";
|
|
408
408
|
};
|
|
409
409
|
};
|
|
410
|
+
export type ToolkitCatalogueEntry = {
|
|
411
|
+
icon: React.ComponentType<{
|
|
412
|
+
className?: string;
|
|
413
|
+
}>;
|
|
414
|
+
label: string;
|
|
415
|
+
};
|
|
416
|
+
/**
|
|
417
|
+
* Find a toolkit by its name, with case-insensitive matching
|
|
418
|
+
*/
|
|
419
|
+
export declare const findToolkitByName: (toolkitName: string) => ToolkitCatalogueEntry | undefined;
|
|
420
|
+
/**
|
|
421
|
+
* Check if a toolkit name exists in the catalogue
|
|
422
|
+
*/
|
|
423
|
+
export declare const isKnownToolkit: (toolkitName: string) => boolean;
|
|
424
|
+
/**
|
|
425
|
+
* Get a toolkit icon component by toolkit name, with fallback to Package icon
|
|
426
|
+
*/
|
|
427
|
+
export declare const getToolkitIconByName: (toolkitName: string) => ((props: {
|
|
428
|
+
className?: string;
|
|
429
|
+
}) => React.ReactElement);
|
|
430
|
+
/**
|
|
431
|
+
* Get a tool icon component by toolkit name, with fallback to Wrench icon
|
|
432
|
+
*/
|
|
433
|
+
export declare const getToolIconByToolkitName: (toolkitName: string) => ((props: {
|
|
434
|
+
className?: string;
|
|
435
|
+
}) => React.ReactElement);
|