@tutti-os/workbench-surface 0.0.222 → 0.0.223

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tutti-os/workbench-surface",
3
- "version": "0.0.222",
3
+ "version": "0.0.223",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "types": "./dist/index.d.ts",
@@ -36,10 +36,10 @@
36
36
  "@tutti-os/config-tsconfig": "0.0.0"
37
37
  },
38
38
  "dependencies": {
39
- "@tutti-os/ui-i18n-runtime": "0.0.222",
40
- "@tutti-os/ui-react-hooks": "0.0.222",
41
- "@tutti-os/workbench-snapshot": "0.0.222",
42
- "@tutti-os/ui-system": "0.0.222"
39
+ "@tutti-os/ui-i18n-runtime": "0.0.223",
40
+ "@tutti-os/ui-react-hooks": "0.0.223",
41
+ "@tutti-os/workbench-snapshot": "0.0.223",
42
+ "@tutti-os/ui-system": "0.0.223"
43
43
  },
44
44
  "peerDependencies": {
45
45
  "react": "^19.1.0",
@@ -1,14 +0,0 @@
1
- import assert from "node:assert/strict";
2
- import { readFileSync } from "node:fs";
3
- import test from "node:test";
4
-
5
- const css = readFileSync(new URL("./workbench.css", import.meta.url), "utf8");
6
-
7
- test("workbench structural selectors use explicit subject state", () => {
8
- assert.doesNotMatch(css, /:has\(/);
9
- assert.match(
10
- css,
11
- /\.workbench-window\[data-window-header-overflow="visible"\]/
12
- );
13
- assert.match(css, /\.desktop-dock-plate\[data-dock-pointer-active="true"\]/);
14
- });