@tutti-os/workbench-surface 0.0.107 → 0.0.109

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.
@@ -1984,7 +1984,10 @@
1984
1984
  }
1985
1985
 
1986
1986
  .desktop-dock-popup-root[data-dock-placement="bottom"] {
1987
- transform: translate(-50%, -100%);
1987
+ transform: translate(
1988
+ -50%,
1989
+ calc(-100% + var(--desktop-dock-popup-clamp-offset, 0px))
1990
+ );
1988
1991
  }
1989
1992
 
1990
1993
  .desktop-dock-popup-root[data-popup-variant="minimized-stack"] {
@@ -1993,7 +1996,10 @@
1993
1996
  }
1994
1997
 
1995
1998
  .desktop-dock-popup-root[data-dock-placement="left"] {
1996
- transform: translate(0, -50%);
1999
+ transform: translate(
2000
+ 0,
2001
+ calc(-50% + var(--desktop-dock-popup-clamp-offset, 0px))
2002
+ );
1997
2003
  }
1998
2004
 
1999
2005
  .desktop-dock-popup-root[data-dock-placement="left"][data-popup-variant="minimized-stack"] {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tutti-os/workbench-surface",
3
- "version": "0.0.107",
3
+ "version": "0.0.109",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "types": "./dist/index.d.ts",
@@ -34,10 +34,10 @@
34
34
  "@tutti-os/config-tsconfig": "0.0.0"
35
35
  },
36
36
  "dependencies": {
37
- "@tutti-os/ui-i18n-runtime": "0.0.107",
38
- "@tutti-os/ui-react-hooks": "0.0.107",
39
- "@tutti-os/workbench-snapshot": "0.0.107",
40
- "@tutti-os/ui-system": "0.0.107"
37
+ "@tutti-os/ui-i18n-runtime": "0.0.109",
38
+ "@tutti-os/ui-react-hooks": "0.0.109",
39
+ "@tutti-os/workbench-snapshot": "0.0.109",
40
+ "@tutti-os/ui-system": "0.0.109"
41
41
  },
42
42
  "peerDependencies": {
43
43
  "react": "^19.1.0",