react-dockable-desktop 5.1.1 → 5.1.2

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/styles.css CHANGED
@@ -860,7 +860,10 @@ body.rdd-resizing-col-active * {
860
860
  .rdd-dock-drop-zone-overlay {
861
861
  position: absolute;
862
862
  inset: 0;
863
- z-index: 100;
863
+ /* Must outrank .rdd-workspace-edge-trigger (+8999) and .rdd-corner-zone (+9000) —
864
+ a leaf's cross commonly falls within the outer edge band or a corner region,
865
+ and the more specific per-leaf target should win the hover/drop hit-test there. */
866
+ z-index: calc(var(--rdd-z-base, 1000) + 9001);
864
867
  display: flex;
865
868
  align-items: center;
866
869
  justify-content: center;
@@ -903,7 +906,9 @@ body.rdd-resizing-col-active * {
903
906
  color: var(--rdd-text-secondary);
904
907
  }
905
908
 
906
- .rdd-dock-target-box:hover {
909
+ /* State-driven (activeDropZone), not :hover-driven — :hover never reliably
910
+ updates during an active drag in Safari, and doesn't exist on touch at all. */
911
+ .rdd-dock-target-box--active {
907
912
  background-color: var(--rdd-accent-color) !important;
908
913
  border-color: #ffffff !important;
909
914
  color: #090b11 !important;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-dockable-desktop",
3
- "version": "5.1.1",
3
+ "version": "5.1.2",
4
4
  "description": "A premium, state-of-the-art window manager and dockable layout engine for React. Supports fluid grid splits, tabbed groups, floating resizable windows, zero-unmount state preservation, context menus, and internationalization.",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.js",