@homebound/beam 2.271.0 → 2.271.1
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.
|
@@ -9,7 +9,7 @@ const Css_1 = require("../../../Css");
|
|
|
9
9
|
/** Renders our default cell element, i.e. if no row links and no custom renderCell are used. */
|
|
10
10
|
const defaultRenderFn = (as) => (key, css, content, row, rowStyle, classNames, onClick, tooltip) => {
|
|
11
11
|
const Cell = as === "table" ? "td" : "div";
|
|
12
|
-
return ((0, jsx_runtime_1.jsx)(Cell, { css: { ...css, ...(0, TableStyles_1.tableRowStyles)(as) }, className: classNames, onClick: onClick, children: content }, key));
|
|
12
|
+
return ((0, jsx_runtime_1.jsx)(Cell, { css: { ...css, ...(0, TableStyles_1.tableRowStyles)(as), ...Css_1.Css.cursor("default").$ }, className: classNames, onClick: onClick, children: content }, key));
|
|
13
13
|
};
|
|
14
14
|
exports.defaultRenderFn = defaultRenderFn;
|
|
15
15
|
/**
|