@tutti-os/workbench-surface 0.0.106 → 0.0.108
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 +60 -8
- package/dist/index.js.map +1 -1
- package/dist/styles/workbench.css +13 -5
- package/package.json +5 -5
|
@@ -465,7 +465,7 @@
|
|
|
465
465
|
|
|
466
466
|
.workbench-dock-frame {
|
|
467
467
|
--workbench-left-dock-bottom-inset: 24px;
|
|
468
|
-
--workbench-left-dock-left-inset:
|
|
468
|
+
--workbench-left-dock-left-inset: 0px;
|
|
469
469
|
--workbench-left-dock-top-inset: 54px;
|
|
470
470
|
position: absolute;
|
|
471
471
|
right: 0;
|
|
@@ -1448,8 +1448,10 @@
|
|
|
1448
1448
|
will-change: transform;
|
|
1449
1449
|
}
|
|
1450
1450
|
|
|
1451
|
+
/* Grow magnified icons in place; growing from the left edge would push the
|
|
1452
|
+
icon's hit area over windows sitting flush against the dock. */
|
|
1451
1453
|
.desktop-dock[data-dock-placement="left"] .desktop-dock__icon-shell {
|
|
1452
|
-
transform-origin:
|
|
1454
|
+
transform-origin: center;
|
|
1453
1455
|
}
|
|
1454
1456
|
|
|
1455
1457
|
.desktop-dock__slot[data-entry-state="disabled"] .desktop-dock__icon-shell,
|
|
@@ -1648,7 +1650,7 @@
|
|
|
1648
1650
|
}
|
|
1649
1651
|
|
|
1650
1652
|
.desktop-dock[data-dock-placement="left"] .desktop-dock__minimized-preview {
|
|
1651
|
-
transform-origin:
|
|
1653
|
+
transform-origin: center;
|
|
1652
1654
|
}
|
|
1653
1655
|
|
|
1654
1656
|
.desktop-dock__minimized-preview-image {
|
|
@@ -1982,7 +1984,10 @@
|
|
|
1982
1984
|
}
|
|
1983
1985
|
|
|
1984
1986
|
.desktop-dock-popup-root[data-dock-placement="bottom"] {
|
|
1985
|
-
transform: translate(
|
|
1987
|
+
transform: translate(
|
|
1988
|
+
-50%,
|
|
1989
|
+
calc(-100% + var(--desktop-dock-popup-clamp-offset, 0px))
|
|
1990
|
+
);
|
|
1986
1991
|
}
|
|
1987
1992
|
|
|
1988
1993
|
.desktop-dock-popup-root[data-popup-variant="minimized-stack"] {
|
|
@@ -1991,7 +1996,10 @@
|
|
|
1991
1996
|
}
|
|
1992
1997
|
|
|
1993
1998
|
.desktop-dock-popup-root[data-dock-placement="left"] {
|
|
1994
|
-
transform: translate(
|
|
1999
|
+
transform: translate(
|
|
2000
|
+
0,
|
|
2001
|
+
calc(-50% + var(--desktop-dock-popup-clamp-offset, 0px))
|
|
2002
|
+
);
|
|
1995
2003
|
}
|
|
1996
2004
|
|
|
1997
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.
|
|
3
|
+
"version": "0.0.108",
|
|
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.
|
|
38
|
-
"@tutti-os/ui-react-hooks": "0.0.
|
|
39
|
-
"@tutti-os/workbench-snapshot": "0.0.
|
|
40
|
-
"@tutti-os/ui-system": "0.0.
|
|
37
|
+
"@tutti-os/ui-i18n-runtime": "0.0.108",
|
|
38
|
+
"@tutti-os/ui-react-hooks": "0.0.108",
|
|
39
|
+
"@tutti-os/workbench-snapshot": "0.0.108",
|
|
40
|
+
"@tutti-os/ui-system": "0.0.108"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
43
43
|
"react": "^19.1.0",
|