@arcadeai/design-system 3.3.1 → 3.5.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.
@@ -148,7 +148,7 @@ import { Textarea as Qm } from "./ui/atoms/textarea.js";
148
148
  import { Toggle as Ym, toggleVariants as jm } from "./ui/atoms/toggle.js";
149
149
  import { Tooltip as _m, TooltipContent as $m, TooltipProvider as oi, TooltipTrigger as ri } from "./ui/atoms/tooltip.js";
150
150
  import { EmptyState as ti } from "./ui/molecules/empty-state.js";
151
- import { R as ai, T as mi } from "../toolkit-card-nuE_5OvN.js";
151
+ import { R as ai, T as mi } from "../toolkit-card-BzIa8ZXI.js";
152
152
  import { ToolCard as li } from "./ui/molecules/tool-card.js";
153
153
  import { ToolkitPickerTrigger as xi } from "./ui/molecules/toolkit-picker-trigger.js";
154
154
  import { ToolkitSelectionSummary as di } from "./ui/molecules/toolkit-selection-summary.js";
@@ -1,5 +1,7 @@
1
- import * as React from 'react';
2
- declare const Table: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLTableElement> & React.RefAttributes<HTMLTableElement>>;
1
+ import type * as React from 'react';
2
+ declare function Table({ className, ref, ...props }: React.HTMLAttributes<HTMLTableElement> & {
3
+ ref?: React.Ref<HTMLTableElement>;
4
+ }): import("react/jsx-runtime").JSX.Element;
3
5
  declare function TableHeader({ className, ...props }: React.ComponentProps<'thead'>): import("react/jsx-runtime").JSX.Element;
4
6
  declare function TableBody({ className, ...props }: React.ComponentProps<'tbody'>): import("react/jsx-runtime").JSX.Element;
5
7
  declare function TableFooter({ className, ...props }: React.ComponentProps<'tfoot'>): import("react/jsx-runtime").JSX.Element;
@@ -1,20 +1,24 @@
1
1
  import { jsxs as l, jsx as a } from "react/jsx-runtime";
2
- import * as s from "react";
3
2
  import { c as o } from "../../../utils-Db4QWi-E.js";
4
- import { ScrollArea as n, ScrollBar as c } from "./scroll-area.js";
5
- const d = s.forwardRef(({ className: t, ...e }, r) => /* @__PURE__ */ l(n, { className: "relative w-full", viewPortClassName: "px-0", children: [
6
- /* @__PURE__ */ a(
7
- "table",
8
- {
9
- className: o("w-full caption-bottom text-sm", t),
10
- ref: r,
11
- ...e
12
- }
13
- ),
14
- /* @__PURE__ */ a(c, { orientation: "horizontal" })
15
- ] }));
16
- d.displayName = "Table";
17
- function u({ className: t, ...e }) {
3
+ import { ScrollArea as n, ScrollBar as s } from "./scroll-area.js";
4
+ function i({
5
+ className: t,
6
+ ref: e,
7
+ ...r
8
+ }) {
9
+ return /* @__PURE__ */ l(n, { className: "relative w-full", viewPortClassName: "px-0", children: [
10
+ /* @__PURE__ */ a(
11
+ "table",
12
+ {
13
+ className: o("w-full caption-bottom text-sm", t),
14
+ ref: e,
15
+ ...r
16
+ }
17
+ ),
18
+ /* @__PURE__ */ a(s, { orientation: "horizontal" })
19
+ ] });
20
+ }
21
+ function m({ className: t, ...e }) {
18
22
  return /* @__PURE__ */ a(
19
23
  "thead",
20
24
  {
@@ -24,7 +28,7 @@ function u({ className: t, ...e }) {
24
28
  }
25
29
  );
26
30
  }
27
- function f({ className: t, ...e }) {
31
+ function u({ className: t, ...e }) {
28
32
  return /* @__PURE__ */ a(
29
33
  "tbody",
30
34
  {
@@ -34,7 +38,7 @@ function f({ className: t, ...e }) {
34
38
  }
35
39
  );
36
40
  }
37
- function p({ className: t, ...e }) {
41
+ function f({ className: t, ...e }) {
38
42
  return /* @__PURE__ */ a(
39
43
  "tfoot",
40
44
  {
@@ -47,7 +51,7 @@ function p({ className: t, ...e }) {
47
51
  }
48
52
  );
49
53
  }
50
- function h({ className: t, ...e }) {
54
+ function p({ className: t, ...e }) {
51
55
  return /* @__PURE__ */ a(
52
56
  "tr",
53
57
  {
@@ -60,7 +64,7 @@ function h({ className: t, ...e }) {
60
64
  }
61
65
  );
62
66
  }
63
- function x({ className: t, ...e }) {
67
+ function h({ className: t, ...e }) {
64
68
  return /* @__PURE__ */ a(
65
69
  "th",
66
70
  {
@@ -73,7 +77,7 @@ function x({ className: t, ...e }) {
73
77
  }
74
78
  );
75
79
  }
76
- function N({ className: t, ...e }) {
80
+ function x({ className: t, ...e }) {
77
81
  return /* @__PURE__ */ a(
78
82
  "td",
79
83
  {
@@ -86,7 +90,7 @@ function N({ className: t, ...e }) {
86
90
  }
87
91
  );
88
92
  }
89
- function w({
93
+ function N({
90
94
  className: t,
91
95
  ...e
92
96
  }) {
@@ -100,12 +104,12 @@ function w({
100
104
  );
101
105
  }
102
106
  export {
103
- d as Table,
104
- f as TableBody,
105
- w as TableCaption,
106
- N as TableCell,
107
- p as TableFooter,
108
- x as TableHead,
109
- u as TableHeader,
110
- h as TableRow
107
+ i as Table,
108
+ u as TableBody,
109
+ N as TableCaption,
110
+ x as TableCell,
111
+ f as TableFooter,
112
+ h as TableHead,
113
+ m as TableHeader,
114
+ p as TableRow
111
115
  };
@@ -148,7 +148,7 @@ import { Textarea as Qm } from "./atoms/textarea.js";
148
148
  import { Toggle as Ym, toggleVariants as jm } from "./atoms/toggle.js";
149
149
  import { Tooltip as _m, TooltipContent as $m, TooltipProvider as oi, TooltipTrigger as ri } from "./atoms/tooltip.js";
150
150
  import { EmptyState as ti } from "./molecules/empty-state.js";
151
- import { R as ai, T as mi } from "../../toolkit-card-nuE_5OvN.js";
151
+ import { R as ai, T as mi } from "../../toolkit-card-BzIa8ZXI.js";
152
152
  import { ToolCard as li } from "./molecules/tool-card.js";
153
153
  import { ToolkitPickerTrigger as xi } from "./molecules/toolkit-picker-trigger.js";
154
154
  import { ToolkitSelectionSummary as di } from "./molecules/toolkit-selection-summary.js";
@@ -1,5 +1,5 @@
1
1
  import { EmptyState as e } from "./empty-state.js";
2
- import { R as m, T as a } from "../../../toolkit-card-nuE_5OvN.js";
2
+ import { R as m, T as a } from "../../../toolkit-card-BzIa8ZXI.js";
3
3
  import { ToolCard as p } from "./tool-card.js";
4
4
  import { ToolkitPickerTrigger as f } from "./toolkit-picker-trigger.js";
5
5
  import { ToolkitSelectionSummary as x } from "./toolkit-selection-summary.js";
@@ -9,16 +9,15 @@ import "../atoms/mobile-tooltip.js";
9
9
  import "../atoms/pro-badge.js";
10
10
  import "../../../react-resizable-panels.browser-31wAXhAV.js";
11
11
  import "../atoms/sidebar.js";
12
- import "../atoms/table.js";
13
12
  import "../atoms/tooltip.js";
14
- import { O as q, R as x, S as A } from "../../../toolkit-card-nuE_5OvN.js";
13
+ import { O as n, R as q, S as x } from "../../../toolkit-card-BzIa8ZXI.js";
15
14
  import "./tool-card.js";
16
15
  import "../../../metadata/oauth-providers.js";
17
16
  import "../../../metadata/toolkits.js";
18
17
  import "../organisms/toolkit-picker/hooks/use-toolkit-picker.js";
19
18
  import "../utils/memo.js";
20
19
  export {
21
- q as OAuthBadge,
22
- x as RequirementBadges,
23
- A as SecretsBadge
20
+ n as OAuthBadge,
21
+ q as RequirementBadges,
22
+ x as SecretsBadge
24
23
  };
@@ -6,7 +6,7 @@ import "../atoms/card.js";
6
6
  import "../atoms/checkbox.js";
7
7
  import "../atoms/view-tools-control.js";
8
8
  import "../../../utils-Db4QWi-E.js";
9
- import { T as k } from "../../../toolkit-card-nuE_5OvN.js";
9
+ import { T as k } from "../../../toolkit-card-BzIa8ZXI.js";
10
10
  import "../utils/memo.js";
11
11
  export {
12
12
  k as ToolkitCard
@@ -6,13 +6,12 @@ import "../atoms/chart.js";
6
6
  import "../../../react-resizable-panels.browser-31wAXhAV.js";
7
7
  import "../atoms/sidebar.js";
8
8
  import "react";
9
- import "../atoms/table.js";
10
- import "../../../toolkit-card-nuE_5OvN.js";
9
+ import "../../../toolkit-card-BzIa8ZXI.js";
11
10
  import "./tool-card.js";
12
11
  import { getToolkitIcon as z } from "../../../metadata/toolkit-icons.js";
13
12
  import "../organisms/toolkit-picker/hooks/use-toolkit-picker.js";
14
13
  const j = 3;
15
- function D({
14
+ function _({
16
15
  selectedToolkits: s,
17
16
  selectedTools: n,
18
17
  onClear: N,
@@ -112,5 +111,5 @@ function D({
112
111
  );
113
112
  }
114
113
  export {
115
- D as ToolkitSelectionSummary
114
+ _ as ToolkitSelectionSummary
116
115
  };
@@ -6,13 +6,12 @@ import "../../../atoms/chart.js";
6
6
  import { Input as k } from "../../../atoms/input.js";
7
7
  import "../../../../../react-resizable-panels.browser-31wAXhAV.js";
8
8
  import "../../../atoms/sidebar.js";
9
- import "../../../atoms/table.js";
10
- import "../../../../../toolkit-card-nuE_5OvN.js";
9
+ import "../../../../../toolkit-card-BzIa8ZXI.js";
11
10
  import "../../../molecules/tool-card.js";
12
11
  import "../../../../../metadata/oauth-providers.js";
13
12
  import "../../../../../metadata/toolkits.js";
14
13
  import { useToolkitPicker as g } from "../hooks/use-toolkit-picker.js";
15
- function C() {
14
+ function z() {
16
15
  const r = T(null), {
17
16
  state: {
18
17
  searchQuery: o,
@@ -23,21 +22,21 @@ function C() {
23
22
  },
24
23
  setSearchQuery: n,
25
24
  toggleToolkit: c,
26
- toggleTool: m,
27
- setActiveTab: u,
28
- setToolkitFilter: p
29
- } = g(), f = () => {
25
+ toggleTool: u,
26
+ setActiveTab: m,
27
+ setToolkitFilter: f
28
+ } = g(), p = () => {
30
29
  const t = Array.from(s)[0];
31
30
  if (t) {
32
31
  if (a === "single") {
33
- p(t.name), u("tools");
32
+ f(t.name), m("tools");
34
33
  return;
35
34
  }
36
35
  c(t);
37
36
  }
38
37
  }, h = () => {
39
38
  const t = Array.from(l)[0];
40
- t && m(t);
39
+ t && u(t);
41
40
  };
42
41
  return /* @__PURE__ */ d("div", { className: "relative flex-1", children: [
43
42
  /* @__PURE__ */ e(y, { className: "-translate-y-1/2 absolute top-1/2 left-3.5 size-4 text-gray-400" }),
@@ -52,7 +51,7 @@ function C() {
52
51
  onKeyDown: (t) => {
53
52
  if (!(t.key !== "Enter" || !(o.trim().length > 0))) {
54
53
  if (t.preventDefault(), t.stopPropagation(), i === "toolkits") {
55
- f();
54
+ p();
56
55
  return;
57
56
  }
58
57
  h();
@@ -66,5 +65,5 @@ function C() {
66
65
  ] });
67
66
  }
68
67
  export {
69
- C as SearchInput
68
+ z as SearchInput
70
69
  };
@@ -6,13 +6,12 @@ import "../../../atoms/chart.js";
6
6
  import "../../../../../react-resizable-panels.browser-31wAXhAV.js";
7
7
  import "../../../atoms/sidebar.js";
8
8
  import "react";
9
- import "../../../atoms/table.js";
10
- import "../../../../../toolkit-card-nuE_5OvN.js";
9
+ import "../../../../../toolkit-card-BzIa8ZXI.js";
11
10
  import "../../../molecules/tool-card.js";
12
11
  import "../../../../../metadata/oauth-providers.js";
13
12
  import "../../../../../metadata/toolkits.js";
14
13
  import "../hooks/use-toolkit-picker.js";
15
- function $({
14
+ function L({
16
15
  selectionMode: t,
17
16
  selectedCount: o,
18
17
  onCommit: r,
@@ -31,5 +30,5 @@ function $({
31
30
  );
32
31
  }
33
32
  export {
34
- $ as SelectButton
33
+ L as SelectButton
35
34
  };
@@ -1,5 +1,5 @@
1
1
  import { jsx as m } from "react/jsx-runtime";
2
- import { T as c } from "../../../../../toolkit-card-nuE_5OvN.js";
2
+ import { T as c } from "../../../../../toolkit-card-BzIa8ZXI.js";
3
3
  import { getToolkitIcon as d } from "../../../../../metadata/toolkit-icons.js";
4
4
  function g({
5
5
  toolkit: e,
@@ -1,6 +1,6 @@
1
1
  import { jsx as t, jsxs as l } from "react/jsx-runtime";
2
2
  import { EmptyState as k } from "../../../molecules/empty-state.js";
3
- import "../../../../../toolkit-card-nuE_5OvN.js";
3
+ import "../../../../../toolkit-card-BzIa8ZXI.js";
4
4
  import "../../../molecules/tool-card.js";
5
5
  import "lucide-react";
6
6
  import "../../../../../metadata/oauth-providers.js";
@@ -11,9 +11,8 @@ import "../../../atoms/chart.js";
11
11
  import "../../../../../react-resizable-panels.browser-31wAXhAV.js";
12
12
  import "../../../atoms/sidebar.js";
13
13
  import "react";
14
- import "../../../atoms/table.js";
15
14
  import { ToolkitCardWithSelection as h } from "./toolkit-card-with-selection.js";
16
- function L({ selectionMode: s }) {
15
+ function F({ selectionMode: s }) {
17
16
  const {
18
17
  state: { filteredToolkits: i, selectedToolkits: r, selectedTools: a },
19
18
  toggleToolkit: x,
@@ -87,5 +86,5 @@ function L({ selectionMode: s }) {
87
86
  ] });
88
87
  }
89
88
  export {
90
- L as ToolkitList
89
+ F as ToolkitList
91
90
  };
@@ -1,6 +1,6 @@
1
1
  import { jsx as t, jsxs as a } from "react/jsx-runtime";
2
2
  import { EmptyState as h } from "../../../molecules/empty-state.js";
3
- import "../../../../../toolkit-card-nuE_5OvN.js";
3
+ import "../../../../../toolkit-card-BzIa8ZXI.js";
4
4
  import { ToolCard as p } from "../../../molecules/tool-card.js";
5
5
  import "lucide-react";
6
6
  import { getToolkitIcon as g } from "../../../../../metadata/toolkit-icons.js";
@@ -10,8 +10,7 @@ import "../../../atoms/chart.js";
10
10
  import "../../../../../react-resizable-panels.browser-31wAXhAV.js";
11
11
  import "../../../atoms/sidebar.js";
12
12
  import "react";
13
- import "../../../atoms/table.js";
14
- function $({ selectionMode: n }) {
13
+ function j({ selectionMode: n }) {
15
14
  const {
16
15
  state: { filteredTools: m, filteredToolkits: o, selectedTools: l },
17
16
  toggleTool: c
@@ -93,5 +92,5 @@ function $({ selectionMode: n }) {
93
92
  ] });
94
93
  }
95
94
  export {
96
- $ as ToolsList
95
+ j as ToolsList
97
96
  };
package/dist/main.js CHANGED
@@ -148,7 +148,7 @@ import { Textarea as Jm } from "./components/ui/atoms/textarea.js";
148
148
  import { Toggle as Zm, toggleVariants as Qm } from "./components/ui/atoms/toggle.js";
149
149
  import { Tooltip as jm, TooltipContent as $m, TooltipProvider as oi, TooltipTrigger as ri } from "./components/ui/atoms/tooltip.js";
150
150
  import { EmptyState as ti } from "./components/ui/molecules/empty-state.js";
151
- import { R as ai, T as mi } from "./toolkit-card-nuE_5OvN.js";
151
+ import { R as ai, T as mi } from "./toolkit-card-BzIa8ZXI.js";
152
152
  import { ToolCard as li } from "./components/ui/molecules/tool-card.js";
153
153
  import { ToolkitPickerTrigger as ni } from "./components/ui/molecules/toolkit-picker-trigger.js";
154
154
  import { ToolkitSelectionSummary as di } from "./components/ui/molecules/toolkit-selection-summary.js";
@@ -1234,16 +1234,16 @@ const a = [
1234
1234
  isHidden: !1
1235
1235
  },
1236
1236
  {
1237
- id: "Trello",
1238
- label: "Trello",
1237
+ id: "TrelloAPI",
1238
+ label: "Trello API",
1239
1239
  isBYOC: !1,
1240
1240
  isPro: !1,
1241
1241
  publicIconUrl: `${e}/trello.svg`,
1242
- docsLink: "https://docs.arcade.dev/en/mcp-servers/productivity/trello",
1243
- relativeDocsLink: "/en/mcp-servers/productivity/trello",
1242
+ docsLink: "https://docs.arcade.dev/en/mcp-servers/productivity/trello-api",
1243
+ relativeDocsLink: "/en/mcp-servers/productivity/trello-api",
1244
1244
  category: "productivity",
1245
- type: "arcade",
1246
- isComingSoon: !0,
1245
+ type: "arcade_starter",
1246
+ isComingSoon: !1,
1247
1247
  isHidden: !1
1248
1248
  },
1249
1249
  {
@@ -13,7 +13,6 @@ import "./components/ui/atoms/mobile-tooltip.js";
13
13
  import { ProBadge as U } from "./components/ui/atoms/pro-badge.js";
14
14
  import "./react-resizable-panels.browser-31wAXhAV.js";
15
15
  import "./components/ui/atoms/sidebar.js";
16
- import "./components/ui/atoms/table.js";
17
16
  import { Tooltip as y, TooltipTrigger as w, TooltipContent as C } from "./components/ui/atoms/tooltip.js";
18
17
  import "./components/ui/molecules/tool-card.js";
19
18
  import { areStringArraysEqual as x, createPropsComparator as B } from "./components/ui/utils/memo.js";
@@ -292,7 +291,7 @@ const Y = B([
292
291
  "isByoc",
293
292
  "isPro",
294
293
  "hideCheckbox"
295
- ]), ke = f.memo(
294
+ ]), be = f.memo(
296
295
  X,
297
296
  Y
298
297
  );
@@ -300,5 +299,5 @@ export {
300
299
  H as O,
301
300
  J as R,
302
301
  G as S,
303
- ke as T
302
+ be as T
304
303
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@arcadeai/design-system",
3
3
  "private": false,
4
- "version": "3.3.1",
4
+ "version": "3.5.0",
5
5
  "type": "module",
6
6
  "main": "dist/main.js",
7
7
  "types": "dist/main.d.ts",
@@ -107,9 +107,9 @@
107
107
  "@testing-library/jest-dom": "6.9.1",
108
108
  "@testing-library/react": "^16.3.0",
109
109
  "@testing-library/user-event": "^14.6.1",
110
- "@types/node": "24.6.2",
111
- "@types/react": "19.2.0",
112
- "@types/react-dom": "19.2.0",
110
+ "@types/node": "24.7.0",
111
+ "@types/react": "19.2.2",
112
+ "@types/react-dom": "19.2.1",
113
113
  "@vitejs/plugin-react-swc": "4.1.0",
114
114
  "@vitest/browser": "3.2.4",
115
115
  "@vitest/coverage-v8": "3.2.4",
@@ -119,11 +119,11 @@
119
119
  "happy-dom": "^19.0.2",
120
120
  "husky": "9.1.7",
121
121
  "lint-staged": "16.2.3",
122
- "lucide-react": "0.544.0",
123
- "playwright": "1.55.1",
122
+ "lucide-react": "0.545.0",
123
+ "playwright": "1.56.0",
124
124
  "react": "19.2.0",
125
125
  "react-dom": "19.2.0",
126
- "react-hook-form": "7.63.0",
126
+ "react-hook-form": "7.64.0",
127
127
  "recharts": "3.2.1",
128
128
  "semantic-release": "24.2.9",
129
129
  "storybook": "9.1.10",
@@ -131,11 +131,11 @@
131
131
  "tailwindcss": "4.1.14",
132
132
  "tw-animate-css": "1.4.0",
133
133
  "typescript": "~5.9.3",
134
- "ultracite": "5.5.0",
135
- "vite": "7.1.8",
134
+ "ultracite": "5.6.1",
135
+ "vite": "7.1.9",
136
136
  "vite-plugin-dts": "4.5.4",
137
137
  "vitest": "3.2.4",
138
- "zod": "4.1.11"
138
+ "zod": "4.1.12"
139
139
  },
140
140
  "dependencies": {
141
141
  "@arcadeai/arcadejs": "^1.10.0",