bolt-table 0.1.31 → 0.1.32

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.js CHANGED
@@ -3432,7 +3432,6 @@ function BoltTable({
3432
3432
  whiteSpace: "nowrap",
3433
3433
  boxSizing: "border-box",
3434
3434
  border: "none",
3435
- boxShadow: groupEndsAtLastCol ? "inset 0 -1px 0 0 rgba(128,128,128,0.35)" : "inset -1px 0 0 0 rgba(128,128,128,0.35), inset 0 -1px 0 0 rgba(128,128,128,0.35)",
3436
3435
  fontWeight: 500,
3437
3436
  userSelect: "none",
3438
3437
  ...group.style,
@@ -3469,7 +3468,6 @@ function BoltTable({
3469
3468
  whiteSpace: "nowrap",
3470
3469
  boxSizing: "border-box",
3471
3470
  border: "none",
3472
- boxShadow: "inset -1px 0 0 0 rgba(128,128,128,0.35), inset 0 -1px 0 0 rgba(128,128,128,0.35)",
3473
3471
  position: "sticky",
3474
3472
  left: columnOffsets.get("__select__") ?? 0,
3475
3473
  top: 0,
package/dist/index.mjs CHANGED
@@ -3404,7 +3404,6 @@ function BoltTable({
3404
3404
  whiteSpace: "nowrap",
3405
3405
  boxSizing: "border-box",
3406
3406
  border: "none",
3407
- boxShadow: groupEndsAtLastCol ? "inset 0 -1px 0 0 rgba(128,128,128,0.35)" : "inset -1px 0 0 0 rgba(128,128,128,0.35), inset 0 -1px 0 0 rgba(128,128,128,0.35)",
3408
3407
  fontWeight: 500,
3409
3408
  userSelect: "none",
3410
3409
  ...group.style,
@@ -3441,7 +3440,6 @@ function BoltTable({
3441
3440
  whiteSpace: "nowrap",
3442
3441
  boxSizing: "border-box",
3443
3442
  border: "none",
3444
- boxShadow: "inset -1px 0 0 0 rgba(128,128,128,0.35), inset 0 -1px 0 0 rgba(128,128,128,0.35)",
3445
3443
  position: "sticky",
3446
3444
  left: columnOffsets.get("__select__") ?? 0,
3447
3445
  top: 0,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bolt-table",
3
- "version": "0.1.31",
3
+ "version": "0.1.32",
4
4
  "description": "Virtualized React table with column drag & drop, pinning, resizing, sorting, filtering, and pagination.",
5
5
  "license": "MIT",
6
6
  "main": "./dist/index.js",