@homebound/beam 3.44.0 → 3.45.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/index.cjs +4 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -7843,7 +7843,7 @@ function PinToggle({ rowId }) {
|
|
|
7843
7843
|
{
|
|
7844
7844
|
...tid[rowId],
|
|
7845
7845
|
icon: "pin",
|
|
7846
|
-
|
|
7846
|
+
color: isPinned ? "rgba(37, 99, 235, 1)" /* Blue600 */ : void 0,
|
|
7847
7847
|
label: isPinned ? "Unpin row" : "Pin row",
|
|
7848
7848
|
onClick: () => tableState.togglePinned(rowId)
|
|
7849
7849
|
}
|
|
@@ -8975,11 +8975,11 @@ function memoizedTableStyles() {
|
|
|
8975
8975
|
keptLastRowCss: {
|
|
8976
8976
|
boxShadow: "boxShadow_inset_0px_14px_8px_11px_rgba_63_63_63_18"
|
|
8977
8977
|
},
|
|
8978
|
-
// Pinned rows get a
|
|
8978
|
+
// Pinned rows get a blue highlight; the standard `betweenRowsCss` bottom border (not a
|
|
8979
8979
|
// shadow) already separates the pinned section from the body.
|
|
8980
8980
|
pinnedRowCss: {
|
|
8981
8981
|
backgroundColor: ["bgColor_var", {
|
|
8982
|
-
"--backgroundColor": (0, import_runtime20.maybeCssVar)("rgba(
|
|
8982
|
+
"--backgroundColor": (0, import_runtime20.maybeCssVar)("rgba(239, 246, 255, 1)" /* Blue50 */)
|
|
8983
8983
|
}]
|
|
8984
8984
|
}
|
|
8985
8985
|
};
|
|
@@ -9395,7 +9395,7 @@ function RowImpl(props) {
|
|
|
9395
9395
|
...isGridCellContent(maybeContent) && maybeContent.css ? maybeContent.css : {},
|
|
9396
9396
|
// Apply kept last row styling per-cell
|
|
9397
9397
|
...isLastKeptRow && style.keptLastRowCss,
|
|
9398
|
-
// Apply the
|
|
9398
|
+
// Apply the blue highlight to every runtime-pinned row's cells (wins over `isActive`)
|
|
9399
9399
|
...pinned && style.pinnedRowCss,
|
|
9400
9400
|
// Apply cell highlight styles to active cell and hover
|
|
9401
9401
|
...{
|