@ashley-shrok/viewmodel-shell 0.4.1 → 0.4.2
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/README.md +2 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -35,16 +35,14 @@ For other backends, implement the same JSON shape: a `GET` returning `{ vm, stat
|
|
|
35
35
|
|
|
36
36
|
## Themes
|
|
37
37
|
|
|
38
|
-
The base stylesheet ships a
|
|
38
|
+
The base stylesheet ships a **light** default (purple accent). To use a different look — including the prior dark-purple default — import a theme file on top:
|
|
39
39
|
|
|
40
40
|
```ts
|
|
41
41
|
import "@ashley-shrok/viewmodel-shell/styles.css";
|
|
42
42
|
import "@ashley-shrok/viewmodel-shell/themes/dark-blue.css";
|
|
43
43
|
```
|
|
44
44
|
|
|
45
|
-
|
|
46
|
-
`dark-blue`, `dark-green`, `dark-rose`, `dark-amber`, `dark-teal`,
|
|
47
|
-
`light-purple`, `light-blue`, `light-green`, `light-rose`, `light-amber`, `light-teal`.
|
|
45
|
+
The prior (pre-0.4.0) dark default is preserved byte-exact as `themes/dark-purple.css`. The current, authoritative theme set is the files under [`styles/themes/`](https://github.com/ashley-shrok/ViewModelShell/tree/main/viewmodel-shell/styles/themes) — not listed here, so this README can't go stale as themes are added or renamed.
|
|
48
46
|
|
|
49
47
|
## Docs
|
|
50
48
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ashley-shrok/viewmodel-shell",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.2",
|
|
4
4
|
"description": "A server-driven UI framework where the wire format is structured enough that agents can build full-stack apps without ever opening a browser and all UI tests are pure unit tests with no browser runtime. Server returns a JSON tree of typed nodes; a thin TypeScript adapter renders it to DOM. Backend-agnostic — a .NET reference backend ships with the repo, but any language can produce the JSON contract.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|