@tutti-os/workbench-surface 0.0.105 → 0.0.107
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 +1 -2
- package/dist/index.js.map +1 -1
- package/dist/styles/workbench.css +5 -3
- package/package.json +5 -5
package/dist/index.js
CHANGED
|
@@ -8040,9 +8040,8 @@ function resolveDockMagnificationHitBounds(slotRects, dockPlacement, crossAxisPa
|
|
|
8040
8040
|
crossEnd = Math.max(crossEnd, rect.bottom);
|
|
8041
8041
|
}
|
|
8042
8042
|
}
|
|
8043
|
-
const effectiveCrossAxisEndPadding = dockPlacement === "left" ? crossAxisPadding + (DOCK_ICON_PEAK_SIZE - DOCK_ICON_BASE_SIZE) : crossAxisPadding;
|
|
8044
8043
|
return {
|
|
8045
|
-
crossEnd: crossEnd +
|
|
8044
|
+
crossEnd: crossEnd + crossAxisPadding,
|
|
8046
8045
|
crossStart: crossStart - crossAxisPadding,
|
|
8047
8046
|
mainEnd,
|
|
8048
8047
|
mainStart
|