@harmonia-core/ui 1.1.0 → 1.1.1
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 +4 -3
- package/package.json +2 -6
package/README.md
CHANGED
|
@@ -11,9 +11,9 @@ Instead of inferring or profiling users, Harmonia derives discrete interface mod
|
|
|
11
11
|
## Installation
|
|
12
12
|
|
|
13
13
|
```bash
|
|
14
|
-
npm install @harmonia-core/ui @renge-ui/tokens
|
|
14
|
+
npm install @harmonia-core/ui @renge-ui/tokens motion
|
|
15
15
|
# or
|
|
16
|
-
pnpm add @harmonia-core/ui @renge-ui/tokens
|
|
16
|
+
pnpm add @harmonia-core/ui @renge-ui/tokens motion
|
|
17
17
|
```
|
|
18
18
|
|
|
19
19
|
`@renge-ui/tokens` is a required peer dependency. It provides the `createRengeTheme()` function and the `--renge-*` CSS custom properties that the capacity system's motion and spacing utilities reference.
|
|
@@ -24,7 +24,8 @@ pnpm add @harmonia-core/ui @renge-ui/tokens
|
|
|
24
24
|
{
|
|
25
25
|
"react": ">=18.0.0",
|
|
26
26
|
"react-dom": ">=18.0.0",
|
|
27
|
-
"@renge-ui/tokens": "^
|
|
27
|
+
"@renge-ui/tokens": "^2.2.0",
|
|
28
|
+
"motion": ">=11.0.0"
|
|
28
29
|
}
|
|
29
30
|
```
|
|
30
31
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@harmonia-core/ui",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A capacity-adaptive UI framework that treats human cognitive, temporal, and emotional state as first-class inputs. Derives interface modes (density, motion, contrast, focus) from explicit user state — no inference, no profiling.",
|
|
6
6
|
"keywords": [
|
|
@@ -47,11 +47,7 @@
|
|
|
47
47
|
"react": ">=18.0.0",
|
|
48
48
|
"react-dom": ">=18.0.0"
|
|
49
49
|
},
|
|
50
|
-
"peerDependenciesMeta": {
|
|
51
|
-
"motion": {
|
|
52
|
-
"optional": true
|
|
53
|
-
}
|
|
54
|
-
},
|
|
50
|
+
"peerDependenciesMeta": {},
|
|
55
51
|
"dependencies": {},
|
|
56
52
|
"devDependencies": {
|
|
57
53
|
"@renge-ui/tokens": "^2.2.0",
|