@arcadeai/design-system 3.4.0 → 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.
- package/dist/components/index.js +1 -1
- package/dist/components/ui/atoms/table.d.ts +4 -2
- package/dist/components/ui/atoms/table.js +33 -29
- package/dist/components/ui/index.js +1 -1
- package/dist/components/ui/molecules/index.js +1 -1
- package/dist/components/ui/molecules/requirement-badges.js +4 -5
- package/dist/components/ui/molecules/toolkit-card.js +1 -1
- package/dist/components/ui/molecules/toolkit-selection-summary.js +3 -4
- package/dist/components/ui/organisms/toolkit-picker/components/search-input.js +10 -11
- package/dist/components/ui/organisms/toolkit-picker/components/select-button.js +3 -4
- package/dist/components/ui/organisms/toolkit-picker/components/toolkit-card-with-selection.js +1 -1
- package/dist/components/ui/organisms/toolkit-picker/components/toolkit-list.js +3 -4
- package/dist/components/ui/organisms/toolkit-picker/components/tools-list.js +3 -4
- package/dist/main.js +1 -1
- package/dist/{toolkit-card-nuE_5OvN.js → toolkit-card-BzIa8ZXI.js} +2 -3
- package/package.json +10 -10
package/dist/components/index.js
CHANGED
|
@@ -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-
|
|
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
|
|
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
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
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-
|
|
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-
|
|
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
|
|
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
|
-
|
|
22
|
-
|
|
23
|
-
|
|
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-
|
|
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 "
|
|
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
|
|
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
|
-
|
|
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 "
|
|
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
|
|
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:
|
|
27
|
-
setActiveTab:
|
|
28
|
-
setToolkitFilter:
|
|
29
|
-
} = g(),
|
|
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
|
-
|
|
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 &&
|
|
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
|
-
|
|
54
|
+
p();
|
|
56
55
|
return;
|
|
57
56
|
}
|
|
58
57
|
h();
|
|
@@ -66,5 +65,5 @@ function C() {
|
|
|
66
65
|
] });
|
|
67
66
|
}
|
|
68
67
|
export {
|
|
69
|
-
|
|
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 "
|
|
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
|
-
|
|
33
|
+
L as SelectButton
|
|
35
34
|
};
|
package/dist/components/ui/organisms/toolkit-picker/components/toolkit-card-with-selection.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx as m } from "react/jsx-runtime";
|
|
2
|
-
import { T as c } from "../../../../../toolkit-card-
|
|
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-
|
|
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
|
|
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
|
-
|
|
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-
|
|
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
|
-
|
|
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
|
-
|
|
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-
|
|
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";
|
|
@@ -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
|
-
]),
|
|
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
|
-
|
|
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.
|
|
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.
|
|
111
|
-
"@types/react": "19.2.
|
|
112
|
-
"@types/react-dom": "19.2.
|
|
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.
|
|
123
|
-
"playwright": "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.
|
|
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.
|
|
135
|
-
"vite": "7.1.
|
|
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.
|
|
138
|
+
"zod": "4.1.12"
|
|
139
139
|
},
|
|
140
140
|
"dependencies": {
|
|
141
141
|
"@arcadeai/arcadejs": "^1.10.0",
|