@dxos/react-ui 0.6.5 → 0.6.6-main.e1a6e1f
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.
|
@@ -1285,6 +1285,11 @@ var TreegridRow = /* @__PURE__ */ forwardRef16(({ __treegridRowScope, asChild, c
|
|
|
1285
1285
|
defaultProp: defaultOpen
|
|
1286
1286
|
});
|
|
1287
1287
|
const focusableGroupAttrs = useFocusableGroup();
|
|
1288
|
+
const arrowGroupAttrs = useArrowNavigationGroup({
|
|
1289
|
+
axis: "horizontal",
|
|
1290
|
+
tabbable: true,
|
|
1291
|
+
circular: false
|
|
1292
|
+
});
|
|
1288
1293
|
return /* @__PURE__ */ React19.createElement(TreegridRowProvider, {
|
|
1289
1294
|
open,
|
|
1290
1295
|
onOpenChange,
|
|
@@ -1304,7 +1309,11 @@ var TreegridRow = /* @__PURE__ */ forwardRef16(({ __treegridRowScope, asChild, c
|
|
|
1304
1309
|
...props,
|
|
1305
1310
|
id,
|
|
1306
1311
|
ref: forwardedRef
|
|
1307
|
-
},
|
|
1312
|
+
}, /* @__PURE__ */ React19.createElement("div", {
|
|
1313
|
+
role: "none",
|
|
1314
|
+
className: "contents",
|
|
1315
|
+
...arrowGroupAttrs
|
|
1316
|
+
}, children)));
|
|
1308
1317
|
});
|
|
1309
1318
|
var TreegridCell = /* @__PURE__ */ forwardRef16(({ classNames, children, indent, ...props }, forwardedRef) => {
|
|
1310
1319
|
const { tx } = useThemeContext();
|