@konstructio/ui 0.1.2-alpha.66 → 0.1.2-alpha.67
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/{DayPicker-PUEUVAST.js → DayPicker-CaeUXRCF.js} +475 -470
- package/dist/components/DateRangePicker/components/CalendarPanel/components/CalendarMonth/CalendarMonth.js +1 -1
- package/dist/components/Datepicker/DatePicker.js +1 -1
- package/dist/components/VirtualizedTable/VirtualizedTable.d.ts +5 -0
- package/dist/components/VirtualizedTable/VirtualizedTable.js +86 -80
- package/dist/components/VirtualizedTable/components/Body/Body.js +51 -49
- package/dist/components/VirtualizedTable/contexts/table.context.d.ts +2 -0
- package/dist/components/VirtualizedTable/contexts/table.provider.js +69 -67
- package/dist/components/VirtualizedTable/events/index.d.ts +3 -3
- package/dist/components/VirtualizedTable/events/index.js +22 -16
- package/dist/package.json +21 -21
- package/dist/styles.css +1 -1
- package/package.json +21 -21
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { jsx as
|
|
1
|
+
import { jsx as O } from "react/jsx-runtime";
|
|
2
2
|
import { V as Le } from "../../../index-BKjcReYh.js";
|
|
3
3
|
import { useQuery as Te } from "@tanstack/react-query";
|
|
4
4
|
import { u as Ae, g as Fe, a as Me } from "../../../index-CSWGJT-v.js";
|
|
5
|
-
import { useState as r, useMemo as
|
|
6
|
-
import { cn as
|
|
5
|
+
import { useState as r, useMemo as m, useCallback as b, useEffect as N } from "react";
|
|
6
|
+
import { cn as L } from "../../../utils/index.js";
|
|
7
7
|
import { VirtualizedTableEvent as W } from "../events/index.js";
|
|
8
8
|
import { TableContext as Pe } from "./table.context.js";
|
|
9
9
|
import { C as je } from "../../../chevron-right-DvXGOiS_.js";
|
|
@@ -16,7 +16,7 @@ const Re = ({
|
|
|
16
16
|
classNameExpandedHeader: D,
|
|
17
17
|
classNameActiveExpandedRow: ee,
|
|
18
18
|
classNameHoverRow: te,
|
|
19
|
-
columns:
|
|
19
|
+
columns: T = [],
|
|
20
20
|
data: G = [],
|
|
21
21
|
defaultExpanded: ne,
|
|
22
22
|
enableExpandedRow: i,
|
|
@@ -32,14 +32,14 @@ const Re = ({
|
|
|
32
32
|
renderExpandedRow: x,
|
|
33
33
|
keepExpandColumnVisible: a
|
|
34
34
|
}) => {
|
|
35
|
-
const [H, R] = r([]), [ae, ie] = r(!!l), [
|
|
36
|
-
() => Math.ceil(
|
|
37
|
-
[
|
|
38
|
-
), [I, fe] = r({}),
|
|
35
|
+
const [H, R] = r([]), [ae, ie] = r(!!l), [A, U] = r(0), [C, le] = r(), [g, ce] = r(_e), [de, ue] = r(B), F = l ? de : B, me = m(
|
|
36
|
+
() => Math.ceil(F / g),
|
|
37
|
+
[F, g]
|
|
38
|
+
), [I, fe] = r({}), M = Te({
|
|
39
39
|
queryKey: (() => {
|
|
40
40
|
const e = typeof s == "string" || typeof s == "number" ? [s] : s;
|
|
41
|
-
return re && e.push(
|
|
42
|
-
e.push(`${t}:${
|
|
41
|
+
return re && e.push(A, g), C && e.push(C), Object.entries(I).forEach(([t, u]) => {
|
|
42
|
+
e.push(`${t}:${u.join(",")}`);
|
|
43
43
|
}), e;
|
|
44
44
|
})(),
|
|
45
45
|
refetchOnMount: !1,
|
|
@@ -47,53 +47,53 @@ const Re = ({
|
|
|
47
47
|
initialData: G,
|
|
48
48
|
enabled: !!l,
|
|
49
49
|
queryFn: async () => l({
|
|
50
|
-
page: Math.max(
|
|
50
|
+
page: Math.max(A + 1, 1),
|
|
51
51
|
pageSize: g,
|
|
52
52
|
termOfSearch: C,
|
|
53
53
|
...Object.keys(I).length > 0 ? I : {}
|
|
54
54
|
}).then(({ data: e, totalItemsCount: t }) => (ie(!1), t && ue(t), e)),
|
|
55
55
|
...se
|
|
56
|
-
}), h = l ?
|
|
56
|
+
}), h = l ? M.data : G, ge = l ? M.isLoading : !1, P = l ? M.isFetching : !1, he = b((e) => {
|
|
57
57
|
le(e), U(0);
|
|
58
58
|
}, []), pe = b((e, t) => {
|
|
59
|
-
const
|
|
59
|
+
const u = e.toLowerCase().replace(/\s+/g, "_");
|
|
60
60
|
fe((q) => ({
|
|
61
61
|
...q,
|
|
62
|
-
[
|
|
62
|
+
[u]: t
|
|
63
63
|
}));
|
|
64
64
|
}, []), ye = b((e) => U(e), []), be = b(
|
|
65
65
|
(e) => ce(e),
|
|
66
66
|
[]
|
|
67
67
|
), [xe, Ce] = r(
|
|
68
68
|
ne ?? {}
|
|
69
|
-
),
|
|
69
|
+
), j = Q !== void 0, c = j ? Q : xe, p = b(
|
|
70
70
|
(e) => {
|
|
71
71
|
const t = typeof e == "function" ? e(c) : e;
|
|
72
|
-
|
|
72
|
+
j || Ce(t), $?.(e);
|
|
73
73
|
},
|
|
74
|
-
[c,
|
|
74
|
+
[c, j, $]
|
|
75
75
|
);
|
|
76
76
|
N(() => {
|
|
77
77
|
if (!i) return;
|
|
78
|
-
const e = Array.isArray(s) ? s.join(",") : String(s), t = new AbortController(),
|
|
78
|
+
const e = Array.isArray(s) ? s.join(",") : String(s), t = new AbortController(), u = (y) => {
|
|
79
79
|
const { detail: n } = y;
|
|
80
80
|
n.tableId === e && p((o) => typeof o == "boolean" ? { [n.rowId]: !0 } : { ...o, [n.rowId]: !0 });
|
|
81
81
|
}, q = (y) => {
|
|
82
82
|
const { detail: n } = y;
|
|
83
83
|
n.tableId === e && p((o) => {
|
|
84
84
|
if (typeof o == "boolean") return {};
|
|
85
|
-
const
|
|
86
|
-
return delete
|
|
85
|
+
const E = { ...o };
|
|
86
|
+
return delete E[n.rowId], E;
|
|
87
87
|
});
|
|
88
88
|
}, Oe = (y) => {
|
|
89
89
|
const { detail: n } = y;
|
|
90
90
|
n.tableId === e && p((o) => {
|
|
91
91
|
if (typeof o == "boolean") return { [n.rowId]: !o };
|
|
92
|
-
const
|
|
93
|
-
return
|
|
92
|
+
const E = !!o[n.rowId], z = { ...o };
|
|
93
|
+
return E ? delete z[n.rowId] : z[n.rowId] = !0, z;
|
|
94
94
|
});
|
|
95
95
|
};
|
|
96
|
-
return document.addEventListener(W.EXPAND_ROW,
|
|
96
|
+
return document.addEventListener(W.EXPAND_ROW, u, {
|
|
97
97
|
signal: t.signal
|
|
98
98
|
}), document.addEventListener(
|
|
99
99
|
W.COLLAPSE_ROW,
|
|
@@ -103,48 +103,48 @@ const Re = ({
|
|
|
103
103
|
signal: t.signal
|
|
104
104
|
}), () => t.abort();
|
|
105
105
|
}, [i, s, p]);
|
|
106
|
-
const
|
|
106
|
+
const _ = m(
|
|
107
107
|
() => h.some((e) => !!e.meta?.expandedRow),
|
|
108
108
|
[h]
|
|
109
|
-
), S =
|
|
110
|
-
() =>
|
|
109
|
+
), S = m(
|
|
110
|
+
() => P ? [] : h.map(
|
|
111
111
|
(e, t) => f ? f(e, t) : String(t)
|
|
112
112
|
),
|
|
113
|
-
[h, f,
|
|
114
|
-
), Ie =
|
|
113
|
+
[h, f, P]
|
|
114
|
+
), Ie = m(() => typeof c == "boolean" ? c : S.some((e) => !!c[e]), [c, S]), Se = m(() => typeof a == "boolean" ? a : typeof a == "object" ? S.some((e) => !!a[e]) : !1, [a, S]), v = _ || x && (Ie || Se), [d, V] = r(!!v);
|
|
115
115
|
N(() => {
|
|
116
|
-
if (
|
|
116
|
+
if (v) {
|
|
117
117
|
const e = requestAnimationFrame(() => V(!0));
|
|
118
118
|
return () => cancelAnimationFrame(e);
|
|
119
119
|
} else
|
|
120
120
|
V(!1);
|
|
121
|
-
}, [
|
|
122
|
-
const [
|
|
123
|
-
!
|
|
121
|
+
}, [v]);
|
|
122
|
+
const [w, X] = r(
|
|
123
|
+
!d
|
|
124
124
|
);
|
|
125
125
|
N(() => {
|
|
126
|
-
if (
|
|
126
|
+
if (d)
|
|
127
127
|
X(!1);
|
|
128
128
|
else {
|
|
129
129
|
const e = setTimeout(() => X(!0), 300);
|
|
130
130
|
return () => clearTimeout(e);
|
|
131
131
|
}
|
|
132
|
-
}, [
|
|
133
|
-
const K =
|
|
132
|
+
}, [d]);
|
|
133
|
+
const K = m(() => !i || !_ && !x ? null : {
|
|
134
134
|
id: "__expand",
|
|
135
|
-
header: () => /* @__PURE__ */
|
|
135
|
+
header: () => /* @__PURE__ */ O(Le, { children: "Expand Column" }),
|
|
136
136
|
cell: ({ row: e }) => {
|
|
137
|
-
const { meta: t } = e.original,
|
|
138
|
-
return !t?.expandedRow && !e.getIsExpanded() && !
|
|
137
|
+
const { meta: t } = e.original, u = typeof a == "object" && !!a[e.id];
|
|
138
|
+
return !t?.expandedRow && !e.getIsExpanded() && !u ? null : /* @__PURE__ */ O(
|
|
139
139
|
"button",
|
|
140
140
|
{
|
|
141
141
|
className: "hover:cursor-pointer",
|
|
142
142
|
onClick: () => e.toggleExpanded(),
|
|
143
143
|
"aria-label": e.getIsExpanded() ? "Collapse row" : "Expand row",
|
|
144
|
-
children: /* @__PURE__ */
|
|
144
|
+
children: /* @__PURE__ */ O(
|
|
145
145
|
je,
|
|
146
146
|
{
|
|
147
|
-
className:
|
|
147
|
+
className: L(
|
|
148
148
|
"size-4 transition-transform text-slate-400 dark:text-metal-400",
|
|
149
149
|
{
|
|
150
150
|
"-rotate-90": e.getIsExpanded()
|
|
@@ -157,27 +157,27 @@ const Re = ({
|
|
|
157
157
|
},
|
|
158
158
|
enableSorting: !1,
|
|
159
159
|
meta: {
|
|
160
|
-
headerClassName:
|
|
160
|
+
headerClassName: L(
|
|
161
161
|
"transition-[width,max-width,padding] duration-300 ease-in-out overflow-hidden",
|
|
162
162
|
// Width: immediate change, CSS transition handles animation
|
|
163
|
-
|
|
163
|
+
d ? "w-10 max-w-10 px-2" : "w-0 max-w-0 !p-0",
|
|
164
164
|
// Border/radius: deferred on collapse so border stays during exit
|
|
165
|
-
|
|
165
|
+
w && "!border-0 !rounded-none [&+th]:rounded-tl-lg dark:[&+th]:border-l"
|
|
166
166
|
),
|
|
167
|
-
className:
|
|
167
|
+
className: L(
|
|
168
168
|
"transition-[width,max-width,padding] duration-300 ease-in-out overflow-hidden",
|
|
169
|
-
|
|
170
|
-
|
|
169
|
+
d ? L("w-10 max-w-10 px-1 text-center", D) : "w-0 max-w-0 !p-0",
|
|
170
|
+
w && "!border-0 dark:[&+td]:border-l"
|
|
171
171
|
)
|
|
172
172
|
}
|
|
173
173
|
}, [
|
|
174
174
|
i,
|
|
175
|
-
|
|
175
|
+
_,
|
|
176
176
|
x,
|
|
177
|
-
|
|
178
|
-
|
|
177
|
+
d,
|
|
178
|
+
w,
|
|
179
179
|
a
|
|
180
|
-
]), we =
|
|
180
|
+
]), we = m(() => K ? [K, ...T] : T, [T, K]), Ee = Ae({
|
|
181
181
|
data: h,
|
|
182
182
|
columns: we,
|
|
183
183
|
...f ? { getRowId: f } : {},
|
|
@@ -193,34 +193,36 @@ const Re = ({
|
|
|
193
193
|
getCoreRowModel: Me(),
|
|
194
194
|
getSortedRowModel: Fe()
|
|
195
195
|
});
|
|
196
|
-
return /* @__PURE__ */
|
|
196
|
+
return /* @__PURE__ */ O(
|
|
197
197
|
Pe.Provider,
|
|
198
198
|
{
|
|
199
199
|
value: {
|
|
200
|
+
classNameActiveExpandedRow: ee,
|
|
201
|
+
classNameExpandedCell: J,
|
|
202
|
+
classNameExpandedContent: Y,
|
|
203
|
+
classNameExpandedRow: k,
|
|
204
|
+
classNameHoverRow: te,
|
|
205
|
+
enableExpandedRow: i,
|
|
206
|
+
enableHoverRow: oe,
|
|
207
|
+
isBorderOnAdjacentCell: w,
|
|
208
|
+
isExpandColumnVisible: d,
|
|
209
|
+
isFirstLoad: ae,
|
|
210
|
+
multiselectSelected: I,
|
|
211
|
+
page: A,
|
|
212
|
+
pageSize: g,
|
|
200
213
|
sortedData: H,
|
|
201
214
|
table: Ee,
|
|
202
|
-
tableFetching:
|
|
215
|
+
tableFetching: P,
|
|
203
216
|
tableLoading: ge,
|
|
204
|
-
totalItems: A,
|
|
205
217
|
termOfSearch: C,
|
|
206
|
-
|
|
207
|
-
multiselectSelected: I,
|
|
208
|
-
pageSize: g,
|
|
218
|
+
totalItems: F,
|
|
209
219
|
totalPages: me,
|
|
210
|
-
isFirstLoad: ae,
|
|
211
|
-
enableExpandedRow: i,
|
|
212
|
-
classNameExpandedRow: k,
|
|
213
|
-
classNameExpandedCell: J,
|
|
214
|
-
classNameExpandedContent: Y,
|
|
215
|
-
classNameActiveExpandedRow: ee,
|
|
216
|
-
renderExpandedRow: x,
|
|
217
|
-
enableHoverRow: oe,
|
|
218
|
-
classNameHoverRow: te,
|
|
219
220
|
handlePage: ye,
|
|
220
|
-
onPageSize: be,
|
|
221
221
|
onChangeTermOfSearch: he,
|
|
222
|
+
onPageSize: be,
|
|
223
|
+
onSelectMultiselect: pe,
|
|
222
224
|
onSorting: R,
|
|
223
|
-
|
|
225
|
+
renderExpandedRow: x
|
|
224
226
|
},
|
|
225
227
|
children: Z
|
|
226
228
|
}
|
|
@@ -7,6 +7,6 @@ export type VirtualizedTableEventDetail = {
|
|
|
7
7
|
tableId: string;
|
|
8
8
|
rowId: string;
|
|
9
9
|
};
|
|
10
|
-
export declare const sendExpandRowEvent: (tableId: string, rowId: string) =>
|
|
11
|
-
export declare const sendCollapseRowEvent: (tableId: string, rowId: string) =>
|
|
12
|
-
export declare const sendToggleRowEvent: (tableId: string, rowId: string) =>
|
|
10
|
+
export declare const sendExpandRowEvent: (tableId: string, rowId: string) => void;
|
|
11
|
+
export declare const sendCollapseRowEvent: (tableId: string, rowId: string) => void;
|
|
12
|
+
export declare const sendToggleRowEvent: (tableId: string, rowId: string) => void;
|
|
@@ -1,20 +1,26 @@
|
|
|
1
1
|
var n = /* @__PURE__ */ ((t) => (t.EXPAND_ROW = "@konstructio/VirtualizedTable/event-EXPAND_ROW", t.COLLAPSE_ROW = "@konstructio/VirtualizedTable/event-COLLAPSE_ROW", t.TOGGLE_ROW = "@konstructio/VirtualizedTable/event-TOGGLE_ROW", t))(n || {});
|
|
2
|
-
const o = (t, e) =>
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
)
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
2
|
+
const o = (t, e) => {
|
|
3
|
+
document.dispatchEvent(
|
|
4
|
+
new CustomEvent(
|
|
5
|
+
"@konstructio/VirtualizedTable/event-EXPAND_ROW",
|
|
6
|
+
{ detail: { tableId: t, rowId: e } }
|
|
7
|
+
)
|
|
8
|
+
);
|
|
9
|
+
}, i = (t, e) => {
|
|
10
|
+
document.dispatchEvent(
|
|
11
|
+
new CustomEvent(
|
|
12
|
+
"@konstructio/VirtualizedTable/event-COLLAPSE_ROW",
|
|
13
|
+
{ detail: { tableId: t, rowId: e } }
|
|
14
|
+
)
|
|
15
|
+
);
|
|
16
|
+
}, s = (t, e) => {
|
|
17
|
+
document.dispatchEvent(
|
|
18
|
+
new CustomEvent(
|
|
19
|
+
"@konstructio/VirtualizedTable/event-TOGGLE_ROW",
|
|
20
|
+
{ detail: { tableId: t, rowId: e } }
|
|
21
|
+
)
|
|
22
|
+
);
|
|
23
|
+
};
|
|
18
24
|
export {
|
|
19
25
|
n as VirtualizedTableEvent,
|
|
20
26
|
i as sendCollapseRowEvent,
|
package/dist/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@konstructio/ui",
|
|
3
3
|
"description": "A set of reusable and customizable React components built for konstruct.io",
|
|
4
4
|
"private": false,
|
|
5
|
-
"version": "0.1.2-alpha.
|
|
5
|
+
"version": "0.1.2-alpha.66",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"main": "dist/index.js",
|
|
@@ -88,25 +88,25 @@
|
|
|
88
88
|
"@radix-ui/react-visually-hidden": "^1.2.4",
|
|
89
89
|
"@react-input/mask": "^2.0.4",
|
|
90
90
|
"@tanstack/react-table": "^8.21.3",
|
|
91
|
-
"@tanstack/react-virtual": "^3.13.
|
|
91
|
+
"@tanstack/react-virtual": "^3.13.19",
|
|
92
92
|
"chart.js": "^4.5.1",
|
|
93
93
|
"class-variance-authority": "^0.7.1",
|
|
94
94
|
"clsx": "^2.1.1",
|
|
95
95
|
"cmdk": "^1.1.1",
|
|
96
96
|
"countries-and-timezones": "^3.8.0",
|
|
97
|
-
"country-flag-icons": "^1.6.
|
|
97
|
+
"country-flag-icons": "^1.6.15",
|
|
98
98
|
"country-locale-map": "^1.9.12",
|
|
99
99
|
"google-libphonenumber": "^3.2.44",
|
|
100
100
|
"i18n-iso-countries": "^7.14.0",
|
|
101
101
|
"js-cookie": "^3.0.5",
|
|
102
|
-
"lucide-react": "^0.
|
|
103
|
-
"motion": "^12.34.
|
|
102
|
+
"lucide-react": "^0.576.0",
|
|
103
|
+
"motion": "^12.34.3",
|
|
104
104
|
"react-chartjs-2": "^5.3.1",
|
|
105
|
-
"react-day-picker": "^9.
|
|
105
|
+
"react-day-picker": "^9.14.0",
|
|
106
106
|
"react-feather": "^2.0.10",
|
|
107
107
|
"react-focus-lock": "^2.13.7",
|
|
108
108
|
"react-remove-scroll": "^2.7.2",
|
|
109
|
-
"tailwind-merge": "^3.
|
|
109
|
+
"tailwind-merge": "^3.5.0"
|
|
110
110
|
},
|
|
111
111
|
"peerDependencies": {
|
|
112
112
|
"@tanstack/react-query": "^5.90",
|
|
@@ -143,10 +143,10 @@
|
|
|
143
143
|
"devDependencies": {
|
|
144
144
|
"@faker-js/faker": "^10.3.0",
|
|
145
145
|
"@rollup/plugin-alias": "^6.0.0",
|
|
146
|
-
"@storybook/addon-docs": "^10.2.
|
|
147
|
-
"@storybook/addon-links": "^10.2.
|
|
148
|
-
"@storybook/react-vite": "^10.2.
|
|
149
|
-
"@tailwindcss/vite": "^4.1
|
|
146
|
+
"@storybook/addon-docs": "^10.2.14",
|
|
147
|
+
"@storybook/addon-links": "^10.2.14",
|
|
148
|
+
"@storybook/react-vite": "^10.2.14",
|
|
149
|
+
"@tailwindcss/vite": "^4.2.1",
|
|
150
150
|
"@tanstack/react-query": "^5.90.21",
|
|
151
151
|
"@testing-library/jest-dom": "^6.9.1",
|
|
152
152
|
"@testing-library/react": "^16.3.2",
|
|
@@ -154,21 +154,21 @@
|
|
|
154
154
|
"@types/google-libphonenumber": "^7.4.30",
|
|
155
155
|
"@types/jest-axe": "^3.5.9",
|
|
156
156
|
"@types/js-cookie": "^3.0.6",
|
|
157
|
-
"@types/lodash": "^4.17.
|
|
157
|
+
"@types/lodash": "^4.17.24",
|
|
158
158
|
"@types/react": "^19.2.14",
|
|
159
159
|
"@types/react-dom": "^19.2.3",
|
|
160
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
161
|
-
"@typescript-eslint/parser": "^8.
|
|
160
|
+
"@typescript-eslint/eslint-plugin": "^8.56.1",
|
|
161
|
+
"@typescript-eslint/parser": "^8.56.1",
|
|
162
162
|
"@vitejs/plugin-react": "^5.1.4",
|
|
163
163
|
"@vitest/coverage-v8": "^4.0.18",
|
|
164
|
-
"autoprefixer": "^10.4.
|
|
165
|
-
"eslint": "^9.39.
|
|
164
|
+
"autoprefixer": "^10.4.27",
|
|
165
|
+
"eslint": "^9.39.3",
|
|
166
166
|
"eslint-plugin-react": "^7.37.5",
|
|
167
167
|
"eslint-plugin-react-hooks": "^7.0.1",
|
|
168
|
-
"eslint-plugin-react-refresh": "^0.5.
|
|
169
|
-
"eslint-plugin-storybook": "^10.2.
|
|
168
|
+
"eslint-plugin-react-refresh": "^0.5.2",
|
|
169
|
+
"eslint-plugin-storybook": "^10.2.14",
|
|
170
170
|
"eslint-plugin-vitest": "^0.5.4",
|
|
171
|
-
"glob": "^13.0.
|
|
171
|
+
"glob": "^13.0.6",
|
|
172
172
|
"husky": "^9.1.7",
|
|
173
173
|
"jest-axe": "^10.0.0",
|
|
174
174
|
"jsdom": "^28.1.0",
|
|
@@ -176,8 +176,8 @@
|
|
|
176
176
|
"postcss": "^8.5.6",
|
|
177
177
|
"prettier": "^3.8.1",
|
|
178
178
|
"rimraf": "^6.1.3",
|
|
179
|
-
"storybook": "^10.2.
|
|
180
|
-
"tailwindcss": "^4.1
|
|
179
|
+
"storybook": "^10.2.14",
|
|
180
|
+
"tailwindcss": "^4.2.1",
|
|
181
181
|
"ts-node": "^10.9.2",
|
|
182
182
|
"typescript": "^5.9.3",
|
|
183
183
|
"vite": "^7.3.1",
|