@phreshos/client 0.1.11 → 0.1.12

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/theme.d.ts CHANGED
@@ -8,7 +8,6 @@ export default class ClientTheme extends Events {
8
8
  accent: string;
9
9
  spacing: number;
10
10
  radius: number;
11
- glass: import("@phreshos/core").ThemeGlass;
12
11
  surface: import("@phreshos/core").ThemeSurface;
13
12
  }>>;
14
13
  }
package/dist/theme.js CHANGED
@@ -26,7 +26,6 @@ function isObject(value) {
26
26
  const surface = theme.surface;
27
27
  return typeof theme.background === "string" && typeof theme.foreground === "string" && typeof theme.accent === "string"
28
28
  && typeof theme.spacing === "number" && typeof theme.radius === "number"
29
- && typeof theme.glass === "object" && theme.glass !== null
30
29
  && typeof surface === "object" && surface !== null
31
30
  && typeof surface.grain === "number" && typeof surface.animation === "number"
32
31
  && typeof surface.backdrop === "number" && typeof surface.opacity === "number";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@phreshos/client",
3
- "version": "0.1.11",
3
+ "version": "0.1.12",
4
4
  "description": "The SDK used by a Program's client endpoint.",
5
5
  "type": "module",
6
6
  "main": "dist/main.js",
@@ -46,13 +46,13 @@
46
46
  "prepack": "node --run build"
47
47
  },
48
48
  "peerDependencies": {
49
- "@phreshos/core": "^0.1.7"
49
+ "@phreshos/core": "^0.1.8"
50
50
  },
51
51
  "dependencies": {
52
52
  "@msgpack/msgpack": "^3.1.3"
53
53
  },
54
54
  "devDependencies": {
55
- "@phreshos/core": "^0.1.7",
55
+ "@phreshos/core": "^0.1.8",
56
56
  "typescript": "^6.0.3"
57
57
  }
58
58
  }