@marigold/components 17.0.1 → 17.2.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/{Checkbox-D6DudF_g.mjs → Checkbox-CCWwHNw2.mjs} +64 -22
- package/dist/{Checkbox-DIbAWlSt.cjs → Checkbox-CZH5yLn1.cjs} +80 -38
- package/dist/index.cjs +2739 -1810
- package/dist/index.d.cts +12036 -299
- package/dist/index.d.mts +12036 -299
- package/dist/index.mjs +2607 -1682
- package/dist/legacy.cjs +55 -54
- package/dist/legacy.mjs +5 -5
- package/package.json +31 -31
package/dist/legacy.cjs
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
|
-
|
|
1
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
2
|
+
const require_Checkbox = require('./Checkbox-CZH5yLn1.cjs');
|
|
2
3
|
const require_index = require('./index.cjs');
|
|
3
|
-
let
|
|
4
|
+
let _marigold_system = require("@marigold/system");
|
|
4
5
|
let react = require("react");
|
|
5
6
|
let react_jsx_runtime = require("react/jsx-runtime");
|
|
6
|
-
let
|
|
7
|
-
let
|
|
8
|
-
let
|
|
9
|
-
let
|
|
10
|
-
let
|
|
7
|
+
let _react_aria_focus = require("@react-aria/focus");
|
|
8
|
+
let _react_aria_interactions = require("@react-aria/interactions");
|
|
9
|
+
let _react_aria_utils = require("@react-aria/utils");
|
|
10
|
+
let _react_aria_table = require("@react-aria/table");
|
|
11
|
+
let _react_stately_table = require("@react-stately/table");
|
|
11
12
|
|
|
12
13
|
//#region src/legacy/Table/Context.tsx
|
|
13
14
|
const TableContext = (0, react.createContext)({});
|
|
@@ -16,7 +17,7 @@ const useTableContext = () => (0, react.useContext)(TableContext);
|
|
|
16
17
|
//#endregion
|
|
17
18
|
//#region src/legacy/Table/TableBody.tsx
|
|
18
19
|
const TableBody = ({ children = void 0, className, emptyState }) => {
|
|
19
|
-
const { rowGroupProps } = (0,
|
|
20
|
+
const { rowGroupProps } = (0, _react_aria_table.useTableRowGroup)();
|
|
20
21
|
const { state, classNames } = useTableContext();
|
|
21
22
|
if (state.collection.size === 0 && emptyState) return /* @__PURE__ */ (0, react_jsx_runtime.jsx)("tbody", {
|
|
22
23
|
className,
|
|
@@ -48,21 +49,21 @@ const TableCell = ({ cell, align = "left", alignY = "middle" }) => {
|
|
|
48
49
|
const ref = (0, react.useRef)(null);
|
|
49
50
|
const { interactive, state, classNames } = useTableContext();
|
|
50
51
|
const disabled = state.disabledKeys.has(cell.parentKey);
|
|
51
|
-
const { gridCellProps } = (0,
|
|
52
|
+
const { gridCellProps } = (0, _react_aria_table.useTableCell)({ node: cell }, state, ref);
|
|
52
53
|
const cellProps = interactive ? gridCellProps : {
|
|
53
54
|
...gridCellProps,
|
|
54
55
|
onMouseDown: (e) => e.stopPropagation(),
|
|
55
56
|
onPointerDown: (e) => e.stopPropagation()
|
|
56
57
|
};
|
|
57
|
-
const { focusProps, isFocusVisible } = (0,
|
|
58
|
-
const stateProps = (0,
|
|
58
|
+
const { focusProps, isFocusVisible } = (0, _react_aria_focus.useFocusRing)();
|
|
59
|
+
const stateProps = (0, _marigold_system.useStateProps)({
|
|
59
60
|
disabled,
|
|
60
61
|
focusVisible: isFocusVisible
|
|
61
62
|
});
|
|
62
63
|
return /* @__PURE__ */ (0, react_jsx_runtime.jsx)("td", {
|
|
63
64
|
ref,
|
|
64
65
|
className: classNames?.cell,
|
|
65
|
-
...(0,
|
|
66
|
+
...(0, _react_aria_utils.mergeProps)(cellProps, focusProps),
|
|
66
67
|
...stateProps,
|
|
67
68
|
align,
|
|
68
69
|
valign: alignY,
|
|
@@ -92,17 +93,17 @@ const TableCheckboxCell = ({ cell, alignY = "middle" }) => {
|
|
|
92
93
|
const ref = (0, react.useRef)(null);
|
|
93
94
|
const { state, classNames } = useTableContext();
|
|
94
95
|
const disabled = state.disabledKeys.has(cell.parentKey);
|
|
95
|
-
const { gridCellProps } = (0,
|
|
96
|
-
const { checkboxProps } = mapCheckboxProps((0,
|
|
97
|
-
const { focusProps, isFocusVisible } = (0,
|
|
98
|
-
const stateProps = (0,
|
|
96
|
+
const { gridCellProps } = (0, _react_aria_table.useTableCell)({ node: cell }, state, ref);
|
|
97
|
+
const { checkboxProps } = mapCheckboxProps((0, _react_aria_table.useTableSelectionCheckbox)({ key: cell.parentKey }, state));
|
|
98
|
+
const { focusProps, isFocusVisible } = (0, _react_aria_focus.useFocusRing)();
|
|
99
|
+
const stateProps = (0, _marigold_system.useStateProps)({
|
|
99
100
|
disabled,
|
|
100
101
|
focusVisible: isFocusVisible
|
|
101
102
|
});
|
|
102
103
|
return /* @__PURE__ */ (0, react_jsx_runtime.jsx)("td", {
|
|
103
104
|
ref,
|
|
104
|
-
className: (0,
|
|
105
|
-
...(0,
|
|
105
|
+
className: (0, _marigold_system.cn)("leading-none", classNames?.cell),
|
|
106
|
+
...(0, _react_aria_utils.mergeProps)(gridCellProps, focusProps),
|
|
106
107
|
...stateProps,
|
|
107
108
|
valign: alignY,
|
|
108
109
|
"data-rac": true,
|
|
@@ -112,22 +113,22 @@ const TableCheckboxCell = ({ cell, alignY = "middle" }) => {
|
|
|
112
113
|
|
|
113
114
|
//#endregion
|
|
114
115
|
//#region src/icons/SortDown.tsx
|
|
115
|
-
const SortDown = ({ size = 24, className, ...props }) => /* @__PURE__ */ (0, react_jsx_runtime.jsx)(
|
|
116
|
+
const SortDown = ({ size = 24, className, ...props }) => /* @__PURE__ */ (0, react_jsx_runtime.jsx)(_marigold_system.SVG, {
|
|
116
117
|
width: size,
|
|
117
118
|
height: size,
|
|
118
119
|
viewBox: "0 0 24 24",
|
|
119
|
-
className: (0,
|
|
120
|
+
className: (0, _marigold_system.cn)("flex-none shrink-0 fill-current", className),
|
|
120
121
|
...props,
|
|
121
122
|
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17.3962 10.0496L12.5042 14.9416C12.3731 15.0727 12.1984 15.1492 12.0128 15.1492C11.8272 15.1492 11.6524 15.0727 11.5214 14.9416L6.62934 10.0496C6.49827 9.91854 6.42188 9.7439 6.42188 9.55816C6.42188 9.17606 6.73856 8.85938 7.12078 8.85938H16.9048C17.287 8.85938 17.6037 9.17606 17.6037 9.55816C17.6037 9.7439 17.5273 9.91854 17.3962 10.0496Z" })
|
|
122
123
|
});
|
|
123
124
|
|
|
124
125
|
//#endregion
|
|
125
126
|
//#region src/icons/SortUp.tsx
|
|
126
|
-
const SortUp = ({ size = 24, className, ...props }) => /* @__PURE__ */ (0, react_jsx_runtime.jsx)(
|
|
127
|
+
const SortUp = ({ size = 24, className, ...props }) => /* @__PURE__ */ (0, react_jsx_runtime.jsx)(_marigold_system.SVG, {
|
|
127
128
|
width: size,
|
|
128
129
|
height: size,
|
|
129
130
|
viewBox: "0 0 24 24",
|
|
130
|
-
className: (0,
|
|
131
|
+
className: (0, _marigold_system.cn)("flex-none shrink-0 fill-current", className),
|
|
131
132
|
...props,
|
|
132
133
|
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16.9048 15.1491H7.12078C6.73856 15.1491 6.42188 14.8324 6.42188 14.4503C6.42188 14.2645 6.49827 14.0899 6.62934 13.9588L11.5214 9.06684C11.6524 8.93577 11.8272 8.85938 12.0128 8.85938C12.1984 8.85938 12.3731 8.93577 12.5042 9.06684L17.3962 13.9588C17.5273 14.0899 17.6037 14.2645 17.6037 14.4503C17.6037 14.8324 17.287 15.1491 16.9048 15.1491Z" })
|
|
133
134
|
});
|
|
@@ -137,18 +138,18 @@ const SortUp = ({ size = 24, className, ...props }) => /* @__PURE__ */ (0, react
|
|
|
137
138
|
const TableColumnHeader = ({ column, width = "auto", align = "left" }) => {
|
|
138
139
|
const ref = (0, react.useRef)(null);
|
|
139
140
|
const { state, classNames } = useTableContext();
|
|
140
|
-
const { columnHeaderProps } = (0,
|
|
141
|
-
const { hoverProps, isHovered } = (0,
|
|
142
|
-
const { focusProps, isFocusVisible } = (0,
|
|
143
|
-
const stateProps = (0,
|
|
141
|
+
const { columnHeaderProps } = (0, _react_aria_table.useTableColumnHeader)({ node: column }, state, ref);
|
|
142
|
+
const { hoverProps, isHovered } = (0, _react_aria_interactions.useHover)({});
|
|
143
|
+
const { focusProps, isFocusVisible } = (0, _react_aria_focus.useFocusRing)();
|
|
144
|
+
const stateProps = (0, _marigold_system.useStateProps)({
|
|
144
145
|
hover: isHovered,
|
|
145
146
|
focusVisible: isFocusVisible
|
|
146
147
|
});
|
|
147
148
|
return /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("th", {
|
|
148
149
|
colSpan: column.colspan,
|
|
149
150
|
ref,
|
|
150
|
-
className: (0,
|
|
151
|
-
...(0,
|
|
151
|
+
className: (0, _marigold_system.cn)("whitespace-nowrap data-[react-aria-pressable=\"true\"]:cursor-pointer", _marigold_system.width[width], classNames?.header),
|
|
152
|
+
...(0, _react_aria_utils.mergeProps)(columnHeaderProps, hoverProps, focusProps),
|
|
152
153
|
...stateProps,
|
|
153
154
|
align,
|
|
154
155
|
"data-rac": true,
|
|
@@ -162,11 +163,11 @@ const TableColumnHeader = ({ column, width = "auto", align = "left" }) => {
|
|
|
162
163
|
//#endregion
|
|
163
164
|
//#region src/legacy/Table/TableHeader.tsx
|
|
164
165
|
const TableHeader = ({ stickyHeader, children }) => {
|
|
165
|
-
const { rowGroupProps } = (0,
|
|
166
|
+
const { rowGroupProps } = (0, _react_aria_table.useTableRowGroup)();
|
|
166
167
|
const { classNames } = useTableContext();
|
|
167
168
|
return /* @__PURE__ */ (0, react_jsx_runtime.jsx)("thead", {
|
|
168
169
|
...rowGroupProps,
|
|
169
|
-
className: (0,
|
|
170
|
+
className: (0, _marigold_system.cn)(classNames?.thead, stickyHeader ? "sticky [&_th]:sticky [&_th]:top-0" : ""),
|
|
170
171
|
"data-rac": true,
|
|
171
172
|
children
|
|
172
173
|
});
|
|
@@ -177,7 +178,7 @@ const TableHeader = ({ stickyHeader, children }) => {
|
|
|
177
178
|
const TableHeaderRow = ({ item, className, children }) => {
|
|
178
179
|
const { state } = useTableContext();
|
|
179
180
|
const ref = (0, react.useRef)(null);
|
|
180
|
-
const { rowProps } = (0,
|
|
181
|
+
const { rowProps } = (0, _react_aria_table.useTableHeaderRow)({ node: item }, state, ref);
|
|
181
182
|
return /* @__PURE__ */ (0, react_jsx_runtime.jsx)("tr", {
|
|
182
183
|
...rowProps,
|
|
183
184
|
className,
|
|
@@ -193,17 +194,17 @@ const TableRow = ({ children, row }) => {
|
|
|
193
194
|
const ref = (0, react.useRef)(null);
|
|
194
195
|
const { interactive, state, ...ctx } = useTableContext();
|
|
195
196
|
const { variant, size } = row.props;
|
|
196
|
-
const classNames = (0,
|
|
197
|
+
const classNames = (0, _marigold_system.useClassNames)({
|
|
197
198
|
component: "LegacyTable",
|
|
198
199
|
variant: variant || ctx.variant,
|
|
199
200
|
size: size || ctx.size
|
|
200
201
|
});
|
|
201
|
-
const { rowProps, isPressed } = (0,
|
|
202
|
+
const { rowProps, isPressed } = (0, _react_aria_table.useTableRow)({ node: row }, state, ref);
|
|
202
203
|
const disabled = state.disabledKeys.has(row.key);
|
|
203
204
|
const selected = state.selectionManager.isSelected(row.key);
|
|
204
|
-
const { focusProps, isFocusVisible } = (0,
|
|
205
|
-
const { hoverProps, isHovered } = (0,
|
|
206
|
-
const stateProps = (0,
|
|
205
|
+
const { focusProps, isFocusVisible } = (0, _react_aria_focus.useFocusRing)();
|
|
206
|
+
const { hoverProps, isHovered } = (0, _react_aria_interactions.useHover)({ isDisabled: disabled || !interactive });
|
|
207
|
+
const stateProps = (0, _marigold_system.useStateProps)({
|
|
207
208
|
disabled,
|
|
208
209
|
selected,
|
|
209
210
|
hover: isHovered,
|
|
@@ -212,8 +213,8 @@ const TableRow = ({ children, row }) => {
|
|
|
212
213
|
});
|
|
213
214
|
return /* @__PURE__ */ (0, react_jsx_runtime.jsx)("tr", {
|
|
214
215
|
ref,
|
|
215
|
-
className: (0,
|
|
216
|
-
...(0,
|
|
216
|
+
className: (0, _marigold_system.cn)([!interactive ? "cursor-text" : disabled ? "cursor-default" : "cursor-pointer"], classNames?.row),
|
|
217
|
+
...(0, _react_aria_utils.mergeProps)(rowProps, focusProps, hoverProps),
|
|
217
218
|
...stateProps,
|
|
218
219
|
"data-rac": true,
|
|
219
220
|
children
|
|
@@ -225,18 +226,18 @@ const TableRow = ({ children, row }) => {
|
|
|
225
226
|
const TableSelectAllCell = ({ column, width = "auto", align = "left" }) => {
|
|
226
227
|
const ref = (0, react.useRef)(null);
|
|
227
228
|
const { state, classNames } = useTableContext();
|
|
228
|
-
const { columnHeaderProps } = (0,
|
|
229
|
-
const { checkboxProps } = mapCheckboxProps((0,
|
|
230
|
-
const { hoverProps, isHovered } = (0,
|
|
231
|
-
const { focusProps, isFocusVisible } = (0,
|
|
232
|
-
const stateProps = (0,
|
|
229
|
+
const { columnHeaderProps } = (0, _react_aria_table.useTableColumnHeader)({ node: column }, state, ref);
|
|
230
|
+
const { checkboxProps } = mapCheckboxProps((0, _react_aria_table.useTableSelectAllCheckbox)(state));
|
|
231
|
+
const { hoverProps, isHovered } = (0, _react_aria_interactions.useHover)({});
|
|
232
|
+
const { focusProps, isFocusVisible } = (0, _react_aria_focus.useFocusRing)();
|
|
233
|
+
const stateProps = (0, _marigold_system.useStateProps)({
|
|
233
234
|
hover: isHovered,
|
|
234
235
|
focusVisible: isFocusVisible
|
|
235
236
|
});
|
|
236
237
|
return /* @__PURE__ */ (0, react_jsx_runtime.jsx)("th", {
|
|
237
238
|
ref,
|
|
238
|
-
className: (0,
|
|
239
|
-
...(0,
|
|
239
|
+
className: (0, _marigold_system.cn)(_marigold_system.width[width], ["leading-none"], classNames?.header),
|
|
240
|
+
...(0, _react_aria_utils.mergeProps)(columnHeaderProps, hoverProps, focusProps),
|
|
240
241
|
...stateProps,
|
|
241
242
|
align,
|
|
242
243
|
"data-rac": true,
|
|
@@ -249,7 +250,7 @@ const TableSelectAllCell = ({ column, width = "auto", align = "left" }) => {
|
|
|
249
250
|
const Table = ({ variant, size, stretch = false, selectionMode = "none", disableKeyboardNavigation = false, stickyHeader, emptyState, alignY = "middle", ...props }) => {
|
|
250
251
|
const interactive = selectionMode !== "none";
|
|
251
252
|
const tableRef = (0, react.useRef)(null);
|
|
252
|
-
const state = (0,
|
|
253
|
+
const state = (0, _react_stately_table.useTableState)({
|
|
253
254
|
...props,
|
|
254
255
|
selectionMode,
|
|
255
256
|
showSelectionCheckboxes: selectionMode === "multiple" && props.selectionBehavior !== "replace"
|
|
@@ -259,8 +260,8 @@ const Table = ({ variant, size, stretch = false, selectionMode = "none", disable
|
|
|
259
260
|
* so we test here for undefined here to be save.
|
|
260
261
|
*/
|
|
261
262
|
if (disableKeyboardNavigation !== void 0) state.isKeyboardNavigationDisabled = disableKeyboardNavigation;
|
|
262
|
-
const { gridProps } = (0,
|
|
263
|
-
const classNames = (0,
|
|
263
|
+
const { gridProps } = (0, _react_aria_table.useTable)(props, state, tableRef);
|
|
264
|
+
const classNames = (0, _marigold_system.useClassNames)({
|
|
264
265
|
component: "LegacyTable",
|
|
265
266
|
variant,
|
|
266
267
|
size
|
|
@@ -277,7 +278,7 @@ const Table = ({ variant, size, stretch = false, selectionMode = "none", disable
|
|
|
277
278
|
children: /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("table", {
|
|
278
279
|
ref: tableRef,
|
|
279
280
|
"data-rac": true,
|
|
280
|
-
className: (0,
|
|
281
|
+
className: (0, _marigold_system.cn)(
|
|
281
282
|
"group/table border-collapse",
|
|
282
283
|
/**
|
|
283
284
|
* Prevents wide tables from causing overlays to become scrollable on
|
|
@@ -324,11 +325,11 @@ const Table = ({ variant, size, stretch = false, selectionMode = "none", disable
|
|
|
324
325
|
})
|
|
325
326
|
});
|
|
326
327
|
};
|
|
327
|
-
Table.Body =
|
|
328
|
-
Table.Cell =
|
|
329
|
-
Table.Column =
|
|
330
|
-
Table.Header =
|
|
331
|
-
Table.Row =
|
|
328
|
+
Table.Body = _react_stately_table.TableBody;
|
|
329
|
+
Table.Cell = _react_stately_table.Cell;
|
|
330
|
+
Table.Column = _react_stately_table.Column;
|
|
331
|
+
Table.Header = _react_stately_table.TableHeader;
|
|
332
|
+
Table.Row = _react_stately_table.Row;
|
|
332
333
|
|
|
333
334
|
//#endregion
|
|
334
335
|
exports.Table = Table;
|
package/dist/legacy.mjs
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { t as _Checkbox } from "./Checkbox-
|
|
1
|
+
import { t as _Checkbox } from "./Checkbox-CCWwHNw2.mjs";
|
|
2
2
|
import { SVG, cn, useClassNames, useStateProps, width } from "@marigold/system";
|
|
3
3
|
import { createContext, useContext, useRef } from "react";
|
|
4
4
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
5
|
-
import { mergeProps } from "@react-aria/utils";
|
|
6
|
-
import { useHover } from "@react-aria/interactions";
|
|
7
5
|
import { useFocusRing } from "@react-aria/focus";
|
|
6
|
+
import { useHover } from "@react-aria/interactions";
|
|
7
|
+
import { mergeProps } from "@react-aria/utils";
|
|
8
8
|
import { useTable, useTableCell, useTableColumnHeader, useTableHeaderRow, useTableRow, useTableRowGroup, useTableSelectAllCheckbox, useTableSelectionCheckbox } from "@react-aria/table";
|
|
9
9
|
import { Cell, Column, Row, TableBody, TableHeader, useTableState } from "@react-stately/table";
|
|
10
10
|
|
|
@@ -133,7 +133,7 @@ const SortUp = ({ size = 24, className, ...props }) => /* @__PURE__ */ jsx(SVG,
|
|
|
133
133
|
|
|
134
134
|
//#endregion
|
|
135
135
|
//#region src/legacy/Table/TableColumnHeader.tsx
|
|
136
|
-
const TableColumnHeader = ({ column, width: width$
|
|
136
|
+
const TableColumnHeader = ({ column, width: width$2 = "auto", align = "left" }) => {
|
|
137
137
|
const ref = useRef(null);
|
|
138
138
|
const { state, classNames } = useTableContext();
|
|
139
139
|
const { columnHeaderProps } = useTableColumnHeader({ node: column }, state, ref);
|
|
@@ -146,7 +146,7 @@ const TableColumnHeader = ({ column, width: width$1 = "auto", align = "left" })
|
|
|
146
146
|
return /* @__PURE__ */ jsxs("th", {
|
|
147
147
|
colSpan: column.colspan,
|
|
148
148
|
ref,
|
|
149
|
-
className: cn("whitespace-nowrap data-[react-aria-pressable=\"true\"]:cursor-pointer", width[width$
|
|
149
|
+
className: cn("whitespace-nowrap data-[react-aria-pressable=\"true\"]:cursor-pointer", width[width$2], classNames?.header),
|
|
150
150
|
...mergeProps(columnHeaderProps, hoverProps, focusProps),
|
|
151
151
|
...stateProps,
|
|
152
152
|
align,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@marigold/components",
|
|
3
|
-
"version": "17.0
|
|
3
|
+
"version": "17.2.0",
|
|
4
4
|
"description": "Components for the Marigold Design System",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"keywords": [
|
|
@@ -45,31 +45,31 @@
|
|
|
45
45
|
"directory": "packages/components"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@internationalized/date": "^3.
|
|
49
|
-
"@react-aria/button": "^3.14.
|
|
50
|
-
"@react-aria/calendar": "^3.9.
|
|
51
|
-
"@react-aria/collections": "3.0.
|
|
52
|
-
"@react-aria/focus": "^3.21.
|
|
53
|
-
"@react-aria/i18n": "^3.12.
|
|
54
|
-
"@react-aria/interactions": "^3.27.
|
|
55
|
-
"@react-aria/label": "^3.7.
|
|
56
|
-
"@react-aria/landmark": "^3.0.
|
|
57
|
-
"@react-aria/overlays": "^3.31.
|
|
58
|
-
"@react-aria/selection": "^3.27.
|
|
48
|
+
"@internationalized/date": "^3.12.0",
|
|
49
|
+
"@react-aria/button": "^3.14.5",
|
|
50
|
+
"@react-aria/calendar": "^3.9.5",
|
|
51
|
+
"@react-aria/collections": "3.0.3",
|
|
52
|
+
"@react-aria/focus": "^3.21.5",
|
|
53
|
+
"@react-aria/i18n": "^3.12.16",
|
|
54
|
+
"@react-aria/interactions": "^3.27.1",
|
|
55
|
+
"@react-aria/label": "^3.7.25",
|
|
56
|
+
"@react-aria/landmark": "^3.0.10",
|
|
57
|
+
"@react-aria/overlays": "^3.31.2",
|
|
58
|
+
"@react-aria/selection": "^3.27.2",
|
|
59
59
|
"@react-aria/ssr": "^3.9.10",
|
|
60
|
-
"@react-aria/table": "^3.17.
|
|
61
|
-
"@react-aria/utils": "^3.33.
|
|
62
|
-
"@react-aria/visually-hidden": "^3.8.
|
|
63
|
-
"@react-stately/collections": "^3.12.
|
|
64
|
-
"@react-stately/data": "^3.15.
|
|
65
|
-
"@react-stately/table": "^3.15.
|
|
66
|
-
"@react-stately/tree": "^3.9.
|
|
67
|
-
"@react-types/shared": "^3.33.
|
|
68
|
-
"@react-types/table": "^3.13.
|
|
69
|
-
"motion": "12.
|
|
70
|
-
"react-aria-components": "^1.
|
|
71
|
-
"react-stately": "^3.
|
|
72
|
-
"@marigold/system": "17.0
|
|
60
|
+
"@react-aria/table": "^3.17.11",
|
|
61
|
+
"@react-aria/utils": "^3.33.1",
|
|
62
|
+
"@react-aria/visually-hidden": "^3.8.31",
|
|
63
|
+
"@react-stately/collections": "^3.12.10",
|
|
64
|
+
"@react-stately/data": "^3.15.2",
|
|
65
|
+
"@react-stately/table": "^3.15.4",
|
|
66
|
+
"@react-stately/tree": "^3.9.6",
|
|
67
|
+
"@react-types/shared": "^3.33.1",
|
|
68
|
+
"@react-types/table": "^3.13.6",
|
|
69
|
+
"motion": "12.34.3",
|
|
70
|
+
"react-aria-components": "^1.16.0",
|
|
71
|
+
"react-stately": "^3.45.0",
|
|
72
|
+
"@marigold/system": "17.2.0",
|
|
73
73
|
"@marigold/types": "1.4.0"
|
|
74
74
|
},
|
|
75
75
|
"peerDependencies": {
|
|
@@ -77,12 +77,12 @@
|
|
|
77
77
|
"react-dom": ">=17.0.0"
|
|
78
78
|
},
|
|
79
79
|
"devDependencies": {
|
|
80
|
-
"@types/react": "19.2.
|
|
81
|
-
"lucide-react": "0.
|
|
82
|
-
"react": "19.2.
|
|
83
|
-
"react-dom": "19.2.
|
|
84
|
-
"tsdown": "0.
|
|
85
|
-
"@marigold/icons": "1.3.
|
|
80
|
+
"@types/react": "19.2.14",
|
|
81
|
+
"lucide-react": "0.575.0",
|
|
82
|
+
"react": "19.2.4",
|
|
83
|
+
"react-dom": "19.2.4",
|
|
84
|
+
"tsdown": "0.20.3",
|
|
85
|
+
"@marigold/icons": "1.3.34",
|
|
86
86
|
"@marigold/tsconfig": "0.4.2"
|
|
87
87
|
},
|
|
88
88
|
"scripts": {
|