@tutti-os/workbench-surface 0.0.46 → 0.0.48

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.
@@ -225,6 +225,12 @@
225
225
  user-select: auto;
226
226
  }
227
227
 
228
+ .workbench-window__header--custom:has(
229
+ [data-workbench-custom-header-border="none"]
230
+ ) {
231
+ border-bottom-color: transparent;
232
+ }
233
+
228
234
  .workbench-window__header--custom:active {
229
235
  cursor: default;
230
236
  }
@@ -1100,6 +1106,8 @@
1100
1106
 
1101
1107
  .desktop-dock[data-dock-pointer-active="true"]
1102
1108
  .desktop-dock__btn[data-interactive="true"],
1109
+ .desktop-dock[data-dock-pointer-active="true"]
1110
+ .desktop-dock__btn[data-dock-hover-panel-trigger="true"],
1103
1111
  .desktop-dock[data-dock-pointer-active="true"]
1104
1112
  .desktop-dock__scroll-button:not(:disabled) {
1105
1113
  pointer-events: auto;
@@ -171,6 +171,10 @@ test("dock transparent hover padding lets clicks reach windows behind it", () =>
171
171
  );
172
172
  assert.match(css, /\.desktop-dock__items\s*{[^}]*pointer-events:\s*none;/s);
173
173
  assert.match(css, /\.desktop-dock__slot\s*{[^}]*pointer-events:\s*auto;/s);
174
+ assert.match(
175
+ css,
176
+ /\.desktop-dock\[data-dock-pointer-active="true"\]\s+\.desktop-dock__btn\[data-dock-hover-panel-trigger="true"\],[\s\S]*?pointer-events:\s*auto;/s
177
+ );
174
178
  assert.match(
175
179
  css,
176
180
  /\.desktop-dock__hover-panel\s*{[^}]*pointer-events:\s*auto;/s
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tutti-os/workbench-surface",
3
- "version": "0.0.46",
3
+ "version": "0.0.48",
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.46",
38
- "@tutti-os/ui-react-hooks": "0.0.46",
39
- "@tutti-os/workbench-snapshot": "0.0.46",
40
- "@tutti-os/ui-system": "0.0.46"
37
+ "@tutti-os/ui-i18n-runtime": "0.0.48",
38
+ "@tutti-os/ui-react-hooks": "0.0.48",
39
+ "@tutti-os/workbench-snapshot": "0.0.48",
40
+ "@tutti-os/ui-system": "0.0.48"
41
41
  },
42
42
  "peerDependencies": {
43
43
  "react": "^19.1.0",