@bitrise/bitkit-v2 0.3.140 → 0.3.142
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/BitkitCombobox/BitkitCombobox.d.ts +21 -0
- package/dist/components/BitkitCombobox/BitkitCombobox.js +107 -0
- package/dist/components/BitkitControlButton/BitkitControlButton.d.ts +14 -0
- package/dist/components/BitkitControlButton/BitkitControlButton.js +23 -0
- package/dist/components/BitkitSelect/BitkitSelect.js +20 -20
- package/dist/components/BitkitSelectMenu/BitkitSelectMenu.js +16 -16
- package/dist/components/index.d.ts +2 -0
- package/dist/main.js +582 -578
- package/dist/theme/common/ComboboxAndSelect.common.d.ts +3 -0
- package/dist/theme/common/ComboboxAndSelect.common.js +85 -0
- package/dist/theme/{recipes/common → common}/InputAndTextarea.common.js +1 -1
- package/dist/theme/recipes/ControlButton.recipe.d.ts +50 -0
- package/dist/theme/recipes/ControlButton.recipe.js +67 -0
- package/dist/theme/recipes/Input.recipe.js +1 -1
- package/dist/theme/recipes/Textarea.recipe.js +1 -1
- package/dist/theme/recipes/index.d.ts +49 -0
- package/dist/theme/recipes/index.js +18 -16
- package/dist/theme/slot-recipes/Combobox.recipe.d.ts +11 -0
- package/dist/theme/slot-recipes/Combobox.recipe.js +53 -0
- package/dist/theme/slot-recipes/DatePickerSelect.recipe.d.ts +1 -18
- package/dist/theme/slot-recipes/NativeSelect.recipe.js +10 -22
- package/dist/theme/slot-recipes/Select.recipe.d.ts +3 -19
- package/dist/theme/slot-recipes/Select.recipe.js +25 -91
- package/dist/theme/slot-recipes/index.d.ts +14 -37
- package/dist/theme/slot-recipes/index.js +36 -34
- package/dist/utilities/AssetSelectChevron.js +21 -13
- package/package.json +8 -8
- /package/dist/theme/{recipes/common → common}/InputAndTextarea.common.d.ts +0 -0
|
@@ -1,21 +1,22 @@
|
|
|
1
|
-
import { selectAnatomy as
|
|
2
|
-
import { defineSlotRecipe as
|
|
1
|
+
import { selectAnatomy as o } from "@chakra-ui/react/anatomy";
|
|
2
|
+
import { defineSlotRecipe as r } from "@chakra-ui/react/styled-system";
|
|
3
|
+
import { variants as t, base as n } from "../common/ComboboxAndSelect.common.js";
|
|
3
4
|
import { rem as e } from "../themeUtils.js";
|
|
4
|
-
const
|
|
5
|
+
const c = r({
|
|
5
6
|
className: "select",
|
|
6
|
-
slots: [...
|
|
7
|
+
slots: [...o.keys(), "searchInputGroup", "searchInput", "createItemContainer", "createItem"],
|
|
7
8
|
base: {
|
|
8
9
|
trigger: {
|
|
9
10
|
display: "flex",
|
|
10
11
|
alignItems: "center",
|
|
11
12
|
borderWidth: e(1),
|
|
12
13
|
borderColor: "border/strong",
|
|
13
|
-
|
|
14
|
+
background: "bg.muted",
|
|
14
15
|
color: "input/text/inputValue",
|
|
15
16
|
gap: "8",
|
|
16
17
|
justifyContent: "space-between",
|
|
17
|
-
|
|
18
|
-
|
|
18
|
+
paddingInline: "16",
|
|
19
|
+
paddingBlock: e(11),
|
|
19
20
|
borderRadius: "4",
|
|
20
21
|
userSelect: "none",
|
|
21
22
|
textAlign: "start",
|
|
@@ -26,24 +27,24 @@ const a = o({
|
|
|
26
27
|
},
|
|
27
28
|
_disabled: {
|
|
28
29
|
color: "text/disabled",
|
|
29
|
-
|
|
30
|
+
background: "background/disabled"
|
|
30
31
|
},
|
|
31
32
|
_invalid: {
|
|
32
33
|
borderColor: "border/error"
|
|
33
34
|
},
|
|
34
35
|
_readOnly: {
|
|
35
|
-
|
|
36
|
+
background: "background/disabled"
|
|
36
37
|
}
|
|
37
38
|
},
|
|
38
39
|
indicatorGroup: {
|
|
39
40
|
display: "flex",
|
|
40
41
|
alignItems: "center",
|
|
41
42
|
gap: "8",
|
|
42
|
-
|
|
43
|
+
position: "absolute",
|
|
43
44
|
insetEnd: "0",
|
|
44
45
|
top: "0",
|
|
45
46
|
bottom: "0",
|
|
46
|
-
|
|
47
|
+
paddingInline: "16",
|
|
47
48
|
pointerEvents: "none"
|
|
48
49
|
},
|
|
49
50
|
indicator: {
|
|
@@ -58,62 +59,10 @@ const a = o({
|
|
|
58
59
|
color: "icon/on-disabled"
|
|
59
60
|
}
|
|
60
61
|
},
|
|
61
|
-
|
|
62
|
-
background: "background/primary",
|
|
63
|
-
display: "flex",
|
|
64
|
-
flexDirection: "column",
|
|
65
|
-
zIndex: "select",
|
|
66
|
-
overflowY: "auto",
|
|
67
|
-
boxShadow: "large",
|
|
68
|
-
_open: {
|
|
69
|
-
animationStyle: "slide-fade-in",
|
|
70
|
-
animationDuration: "fast"
|
|
71
|
-
},
|
|
72
|
-
_closed: {
|
|
73
|
-
animationStyle: "slide-fade-out",
|
|
74
|
-
animationDuration: "fastest"
|
|
75
|
-
}
|
|
76
|
-
},
|
|
77
|
-
item: {
|
|
78
|
-
position: "relative",
|
|
79
|
-
userSelect: "none",
|
|
80
|
-
display: "flex",
|
|
81
|
-
alignItems: "center",
|
|
82
|
-
gap: "12",
|
|
83
|
-
cursor: "option",
|
|
84
|
-
justifyContent: "space-between",
|
|
85
|
-
flex: "1",
|
|
86
|
-
px: "16",
|
|
87
|
-
py: "12",
|
|
88
|
-
textAlign: "start",
|
|
89
|
-
textStyle: "body/lg/regular",
|
|
90
|
-
lineHeight: e(24),
|
|
91
|
-
_highlighted: {
|
|
92
|
-
bg: "neutral.95"
|
|
93
|
-
},
|
|
94
|
-
_selected: {
|
|
95
|
-
textStyle: "body/lg/semibold",
|
|
96
|
-
bg: "background/selected"
|
|
97
|
-
}
|
|
98
|
-
},
|
|
99
|
-
itemIndicator: {
|
|
100
|
-
alignItems: "center",
|
|
101
|
-
color: "icon/interactive",
|
|
102
|
-
display: "flex",
|
|
103
|
-
justifyContent: "center",
|
|
104
|
-
width: "24",
|
|
105
|
-
height: "24"
|
|
106
|
-
},
|
|
107
|
-
itemGroupLabel: {
|
|
108
|
-
alignItems: "center",
|
|
109
|
-
display: "flex",
|
|
110
|
-
gap: "16",
|
|
111
|
-
py: "12",
|
|
112
|
-
px: "16"
|
|
113
|
-
},
|
|
62
|
+
...n,
|
|
114
63
|
control: {
|
|
115
|
-
|
|
116
|
-
width: "100%
|
|
64
|
+
position: "relative",
|
|
65
|
+
width: "100%"
|
|
117
66
|
},
|
|
118
67
|
searchInput: {
|
|
119
68
|
border: "none",
|
|
@@ -138,7 +87,7 @@ const a = o({
|
|
|
138
87
|
gap: "12",
|
|
139
88
|
paddingInlineEnd: "24",
|
|
140
89
|
paddingInlineStart: "16",
|
|
141
|
-
|
|
90
|
+
paddingBlock: "20",
|
|
142
91
|
color: "text/primary",
|
|
143
92
|
textStyle: "body/lg/regular",
|
|
144
93
|
textDecoration: "none",
|
|
@@ -146,14 +95,14 @@ const a = o({
|
|
|
146
95
|
cursor: "pointer",
|
|
147
96
|
textAlign: "start",
|
|
148
97
|
_hover: {
|
|
149
|
-
|
|
98
|
+
background: "button/secondary/bg-hover",
|
|
150
99
|
textDecoration: "none",
|
|
151
100
|
_active: {
|
|
152
|
-
|
|
101
|
+
background: "button/secondary/bg-active"
|
|
153
102
|
}
|
|
154
103
|
},
|
|
155
104
|
_active: {
|
|
156
|
-
|
|
105
|
+
background: "button/secondary/bg-active"
|
|
157
106
|
},
|
|
158
107
|
_focusVisible: {
|
|
159
108
|
outlineOffset: "-3px"
|
|
@@ -162,23 +111,9 @@ const a = o({
|
|
|
162
111
|
},
|
|
163
112
|
variants: {
|
|
164
113
|
size: {
|
|
114
|
+
lg: t.size.lg,
|
|
165
115
|
md: {
|
|
166
|
-
|
|
167
|
-
py: "8",
|
|
168
|
-
px: "16",
|
|
169
|
-
textStyle: "body/md/regular",
|
|
170
|
-
_selected: {
|
|
171
|
-
textStyle: "body/md/semibold"
|
|
172
|
-
}
|
|
173
|
-
},
|
|
174
|
-
itemIndicator: {
|
|
175
|
-
width: "16",
|
|
176
|
-
height: "16"
|
|
177
|
-
},
|
|
178
|
-
itemGroupLabel: {
|
|
179
|
-
py: "12",
|
|
180
|
-
px: "16"
|
|
181
|
-
},
|
|
116
|
+
...t.size.md,
|
|
182
117
|
searchInput: {
|
|
183
118
|
paddingBlock: "12",
|
|
184
119
|
textStyle: "body/md/regular",
|
|
@@ -186,15 +121,14 @@ const a = o({
|
|
|
186
121
|
},
|
|
187
122
|
createItem: {
|
|
188
123
|
color: "text/primary",
|
|
189
|
-
|
|
124
|
+
paddingBlock: "16",
|
|
190
125
|
textStyle: "body/md/regular"
|
|
191
126
|
},
|
|
192
127
|
trigger: {
|
|
193
128
|
textStyle: "body/md/regular",
|
|
194
|
-
|
|
129
|
+
paddingBlock: e(9)
|
|
195
130
|
}
|
|
196
|
-
}
|
|
197
|
-
lg: {}
|
|
131
|
+
}
|
|
198
132
|
}
|
|
199
133
|
},
|
|
200
134
|
defaultVariants: {
|
|
@@ -202,5 +136,5 @@ const a = o({
|
|
|
202
136
|
}
|
|
203
137
|
});
|
|
204
138
|
export {
|
|
205
|
-
|
|
139
|
+
c as selectSlotRecipe
|
|
206
140
|
};
|
|
@@ -263,7 +263,6 @@ declare const slotRecipes: {
|
|
|
263
263
|
trigger: {
|
|
264
264
|
paddingBlock: "6";
|
|
265
265
|
textStyle?: "body/md/regular" | undefined;
|
|
266
|
-
py?: string | undefined;
|
|
267
266
|
};
|
|
268
267
|
indicator: {
|
|
269
268
|
_icon: {
|
|
@@ -271,22 +270,6 @@ declare const slotRecipes: {
|
|
|
271
270
|
height: "16";
|
|
272
271
|
};
|
|
273
272
|
};
|
|
274
|
-
item?: {
|
|
275
|
-
py: "8";
|
|
276
|
-
px: "16";
|
|
277
|
-
textStyle: "body/md/regular";
|
|
278
|
-
_selected: {
|
|
279
|
-
textStyle: "body/md/semibold";
|
|
280
|
-
};
|
|
281
|
-
} | undefined;
|
|
282
|
-
itemIndicator?: {
|
|
283
|
-
width: "16";
|
|
284
|
-
height: "16";
|
|
285
|
-
} | undefined;
|
|
286
|
-
itemGroupLabel?: {
|
|
287
|
-
py: "12";
|
|
288
|
-
px: "16";
|
|
289
|
-
} | undefined;
|
|
290
273
|
searchInput?: {
|
|
291
274
|
paddingBlock: "12";
|
|
292
275
|
textStyle: "body/md/regular";
|
|
@@ -294,7 +277,7 @@ declare const slotRecipes: {
|
|
|
294
277
|
} | undefined;
|
|
295
278
|
createItem?: {
|
|
296
279
|
color: "text/primary";
|
|
297
|
-
|
|
280
|
+
paddingBlock: "16";
|
|
298
281
|
textStyle: "body/md/regular";
|
|
299
282
|
} | undefined;
|
|
300
283
|
};
|
|
@@ -330,6 +313,16 @@ declare const slotRecipes: {
|
|
|
330
313
|
};
|
|
331
314
|
};
|
|
332
315
|
}>;
|
|
316
|
+
combobox: import('@chakra-ui/react').SlotRecipeDefinition<"content" | "input" | "label" | "root" | "item" | "itemIndicator" | "trigger" | "positioner" | "list" | "clearTrigger" | "control" | "itemText" | "itemGroup" | "itemGroupLabel" | "indicatorGroup" | "empty" | "emptyHelperText", {
|
|
317
|
+
size: {
|
|
318
|
+
md: {
|
|
319
|
+
input: import('@chakra-ui/react').SystemStyleObject;
|
|
320
|
+
};
|
|
321
|
+
lg: {
|
|
322
|
+
input: import('@chakra-ui/react').SystemStyleObject;
|
|
323
|
+
};
|
|
324
|
+
};
|
|
325
|
+
}>;
|
|
333
326
|
emptyState: import('@chakra-ui/react').SlotRecipeDefinition<"content" | "title" | "root" | "description" | "indicator", {
|
|
334
327
|
colorScheme: {
|
|
335
328
|
white: {
|
|
@@ -506,23 +499,8 @@ declare const slotRecipes: {
|
|
|
506
499
|
}>;
|
|
507
500
|
select: import('@chakra-ui/react').SlotRecipeDefinition<"content" | "label" | "root" | "item" | "itemIndicator" | "trigger" | "positioner" | "indicator" | "list" | "clearTrigger" | "control" | "valueText" | "itemText" | "itemGroup" | "itemGroupLabel" | "indicatorGroup" | "searchInputGroup" | "searchInput" | "createItemContainer" | "createItem", {
|
|
508
501
|
size: {
|
|
502
|
+
lg: Record<string, import('@chakra-ui/react').SystemStyleObject>;
|
|
509
503
|
md: {
|
|
510
|
-
item: {
|
|
511
|
-
py: "8";
|
|
512
|
-
px: "16";
|
|
513
|
-
textStyle: "body/md/regular";
|
|
514
|
-
_selected: {
|
|
515
|
-
textStyle: "body/md/semibold";
|
|
516
|
-
};
|
|
517
|
-
};
|
|
518
|
-
itemIndicator: {
|
|
519
|
-
width: "16";
|
|
520
|
-
height: "16";
|
|
521
|
-
};
|
|
522
|
-
itemGroupLabel: {
|
|
523
|
-
py: "12";
|
|
524
|
-
px: "16";
|
|
525
|
-
};
|
|
526
504
|
searchInput: {
|
|
527
505
|
paddingBlock: "12";
|
|
528
506
|
textStyle: "body/md/regular";
|
|
@@ -530,15 +508,14 @@ declare const slotRecipes: {
|
|
|
530
508
|
};
|
|
531
509
|
createItem: {
|
|
532
510
|
color: "text/primary";
|
|
533
|
-
|
|
511
|
+
paddingBlock: "16";
|
|
534
512
|
textStyle: "body/md/regular";
|
|
535
513
|
};
|
|
536
514
|
trigger: {
|
|
537
515
|
textStyle: "body/md/regular";
|
|
538
|
-
|
|
516
|
+
paddingBlock: string;
|
|
539
517
|
};
|
|
540
518
|
};
|
|
541
|
-
lg: {};
|
|
542
519
|
};
|
|
543
520
|
}>;
|
|
544
521
|
switch: import('@chakra-ui/react').SlotRecipeDefinition<"label" | "root" | "indicator" | "control" | "thumb", {
|
|
@@ -1,49 +1,51 @@
|
|
|
1
1
|
import e from "./Accordion.recipe.js";
|
|
2
|
-
import
|
|
3
|
-
import
|
|
2
|
+
import o from "./ActionBar.recipe.js";
|
|
3
|
+
import t from "./Alert.recipe.js";
|
|
4
4
|
import r from "./Avatar.recipe.js";
|
|
5
5
|
import i from "./Breadcrumb.recipe.js";
|
|
6
6
|
import p from "./Card.recipe.js";
|
|
7
|
-
import
|
|
8
|
-
import
|
|
7
|
+
import m from "./Checkbox.recipe.js";
|
|
8
|
+
import c from "./Combobox.recipe.js";
|
|
9
|
+
import l from "./DatePicker.recipe.js";
|
|
9
10
|
import a from "./DatePickerSelect.recipe.js";
|
|
10
|
-
import
|
|
11
|
-
import
|
|
12
|
-
import
|
|
13
|
-
import
|
|
14
|
-
import
|
|
15
|
-
import
|
|
16
|
-
import
|
|
17
|
-
import { selectSlotRecipe as
|
|
18
|
-
import
|
|
11
|
+
import S from "./EmptyState.recipe.js";
|
|
12
|
+
import f from "./ExpandableCard.recipe.js";
|
|
13
|
+
import R from "./Field.recipe.js";
|
|
14
|
+
import d from "./Fieldset.recipe.js";
|
|
15
|
+
import b from "./NativeSelect.recipe.js";
|
|
16
|
+
import n from "./NumberInput.recipe.js";
|
|
17
|
+
import s from "./RadioGroup.recipe.js";
|
|
18
|
+
import { selectSlotRecipe as u } from "./Select.recipe.js";
|
|
19
|
+
import x from "./Switch.recipe.js";
|
|
19
20
|
import k from "./Table.recipe.js";
|
|
20
|
-
import
|
|
21
|
-
import
|
|
22
|
-
import
|
|
23
|
-
const
|
|
24
|
-
actionBar:
|
|
21
|
+
import h from "./Tabs.recipe.js";
|
|
22
|
+
import v from "./Tag.recipe.js";
|
|
23
|
+
import P from "./Tooltip.recipe.js";
|
|
24
|
+
const U = {
|
|
25
|
+
actionBar: o,
|
|
25
26
|
avatar: r,
|
|
26
27
|
breadcrumb: i,
|
|
27
28
|
card: p,
|
|
28
|
-
datePicker:
|
|
29
|
+
datePicker: l,
|
|
29
30
|
datePickerSelect: a,
|
|
30
|
-
checkbox:
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
31
|
+
checkbox: m,
|
|
32
|
+
combobox: c,
|
|
33
|
+
emptyState: S,
|
|
34
|
+
expandableCard: f,
|
|
35
|
+
field: R,
|
|
36
|
+
fieldset: d,
|
|
37
|
+
nativeSelect: b,
|
|
38
|
+
alert: t,
|
|
39
|
+
numberInput: n,
|
|
40
|
+
radioGroup: s,
|
|
41
|
+
select: u,
|
|
42
|
+
switch: x,
|
|
41
43
|
table: k,
|
|
42
|
-
tabs:
|
|
43
|
-
tag:
|
|
44
|
-
tooltip:
|
|
44
|
+
tabs: h,
|
|
45
|
+
tag: v,
|
|
46
|
+
tooltip: P,
|
|
45
47
|
accordion: e
|
|
46
48
|
};
|
|
47
49
|
export {
|
|
48
|
-
|
|
50
|
+
U as default
|
|
49
51
|
};
|
|
@@ -1,20 +1,28 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import { Icon as
|
|
3
|
-
import { forwardRef as
|
|
4
|
-
const
|
|
5
|
-
|
|
1
|
+
import { jsx as o } from "react/jsx-runtime";
|
|
2
|
+
import { Icon as i } from "@chakra-ui/react/icon";
|
|
3
|
+
import { forwardRef as l } from "react";
|
|
4
|
+
const t = l((r, e) => /* @__PURE__ */ o(
|
|
5
|
+
i,
|
|
6
6
|
{
|
|
7
7
|
asChild: !0,
|
|
8
|
-
ref:
|
|
9
|
-
|
|
10
|
-
height: "24",
|
|
11
|
-
transition: "transform 0.2s ease",
|
|
8
|
+
ref: e,
|
|
9
|
+
transition: "0.2s ease",
|
|
12
10
|
_open: {
|
|
13
11
|
transform: "rotate(180deg)"
|
|
14
12
|
},
|
|
13
|
+
_disabled: {
|
|
14
|
+
cursor: "not-allowed",
|
|
15
|
+
color: "icon/disabled"
|
|
16
|
+
},
|
|
15
17
|
color: "icon/secondary",
|
|
16
|
-
|
|
17
|
-
|
|
18
|
+
_groupFocusWithin: {
|
|
19
|
+
color: "icon/primary"
|
|
20
|
+
},
|
|
21
|
+
_groupHover: {
|
|
22
|
+
color: "icon/primary"
|
|
23
|
+
},
|
|
24
|
+
...r,
|
|
25
|
+
children: /* @__PURE__ */ o("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", width: "24", height: "24", children: /* @__PURE__ */ o(
|
|
18
26
|
"path",
|
|
19
27
|
{
|
|
20
28
|
fillRule: "evenodd",
|
|
@@ -25,7 +33,7 @@ const l = s((o, r) => /* @__PURE__ */ e(
|
|
|
25
33
|
) })
|
|
26
34
|
}
|
|
27
35
|
));
|
|
28
|
-
|
|
36
|
+
t.displayName = "AssetSelectChevron";
|
|
29
37
|
export {
|
|
30
|
-
|
|
38
|
+
t as default
|
|
31
39
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bitrise/bitkit-v2",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.3.
|
|
4
|
+
"version": "0.3.142",
|
|
5
5
|
"description": "Bitrise Design System Components built with Chakra UI V3",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"react",
|
|
@@ -56,14 +56,14 @@
|
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"@bitrise/eslint-plugin": "^4.1.0",
|
|
58
58
|
"@chakra-ui/cli": "^3.34.0",
|
|
59
|
-
"@figma-export/cli": "^6.
|
|
60
|
-
"@figma-export/output-components-as-svg": "^6.
|
|
61
|
-
"@figma-export/transform-svg-with-svgo": "^6.
|
|
59
|
+
"@figma-export/cli": "^6.4.0",
|
|
60
|
+
"@figma-export/output-components-as-svg": "^6.4.0",
|
|
61
|
+
"@figma-export/transform-svg-with-svgo": "^6.4.0",
|
|
62
62
|
"@google-cloud/storage": "^7.19.0",
|
|
63
|
-
"@storybook/addon-docs": "10.2.
|
|
64
|
-
"@storybook/react-vite": "10.2.
|
|
63
|
+
"@storybook/addon-docs": "10.2.16",
|
|
64
|
+
"@storybook/react-vite": "10.2.16",
|
|
65
65
|
"@svgr/plugin-jsx": "^8.1.0",
|
|
66
|
-
"@types/node": "^24.
|
|
66
|
+
"@types/node": "^24.12.0",
|
|
67
67
|
"@types/react": "^19.2.14",
|
|
68
68
|
"@types/react-dom": "^19.2.3",
|
|
69
69
|
"@vitejs/plugin-react": "^5.1.4",
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"react": "^19.2.4",
|
|
73
73
|
"react-dom": "^19.2.4",
|
|
74
74
|
"release-it": "^19.2.4",
|
|
75
|
-
"storybook": "10.2.
|
|
75
|
+
"storybook": "10.2.16",
|
|
76
76
|
"tsx": "^4.21.0",
|
|
77
77
|
"typescript": "^5.9.3",
|
|
78
78
|
"vite": "^7.3.1",
|
|
File without changes
|