gantt-task-react-v 1.7.5 → 1.7.6

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.
@@ -10485,7 +10485,13 @@ const TaskListTableRowInner = forwardRef(
10485
10485
  transform: "translateX(var(--pinned-translate-left, 0px))",
10486
10486
  zIndex: 2,
10487
10487
  backgroundColor: pinnedBg,
10488
- paddingRight: 8
10488
+ // box-shadow + clip-path create a bulletproof opaque cover that
10489
+ // extends 10px past the cell's right edge, hiding any content
10490
+ // that scrolls underneath. clip-path trims the shadow to
10491
+ // exactly the cell bounds plus the 10px overhang.
10492
+ boxShadow: `0 0 0 9999px ${pinnedBg}`,
10493
+ clipPath: "inset(0px -10px 0px 0px)",
10494
+ paddingRight: 10
10489
10495
  };
10490
10496
  }
10491
10497
  }
@@ -10496,7 +10502,9 @@ const TaskListTableRowInner = forwardRef(
10496
10502
  transform: "translateX(var(--pinned-translate-right, 0px))",
10497
10503
  zIndex: 2,
10498
10504
  backgroundColor: pinnedBg,
10499
- paddingLeft: 8
10505
+ boxShadow: `0 0 0 9999px ${pinnedBg}`,
10506
+ clipPath: "inset(0px 0px 0px -10px)",
10507
+ paddingLeft: 10
10500
10508
  };
10501
10509
  }
10502
10510
  }
@@ -10502,7 +10502,13 @@
10502
10502
  transform: "translateX(var(--pinned-translate-left, 0px))",
10503
10503
  zIndex: 2,
10504
10504
  backgroundColor: pinnedBg,
10505
- paddingRight: 8
10505
+ // box-shadow + clip-path create a bulletproof opaque cover that
10506
+ // extends 10px past the cell's right edge, hiding any content
10507
+ // that scrolls underneath. clip-path trims the shadow to
10508
+ // exactly the cell bounds plus the 10px overhang.
10509
+ boxShadow: `0 0 0 9999px ${pinnedBg}`,
10510
+ clipPath: "inset(0px -10px 0px 0px)",
10511
+ paddingRight: 10
10506
10512
  };
10507
10513
  }
10508
10514
  }
@@ -10513,7 +10519,9 @@
10513
10519
  transform: "translateX(var(--pinned-translate-right, 0px))",
10514
10520
  zIndex: 2,
10515
10521
  backgroundColor: pinnedBg,
10516
- paddingLeft: 8
10522
+ boxShadow: `0 0 0 9999px ${pinnedBg}`,
10523
+ clipPath: "inset(0px 0px 0px -10px)",
10524
+ paddingLeft: 10
10517
10525
  };
10518
10526
  }
10519
10527
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gantt-task-react-v",
3
- "version": "1.7.5",
3
+ "version": "1.7.6",
4
4
  "description": "Interactive Gantt Chart for React with TypeScript.",
5
5
  "author": "aguilanbon",
6
6
  "homepage": "https://github.com/aguilanbon/gantt-task-react-v",