@kurot/ui-runtime 0.4.2 → 0.5.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.
Files changed (2) hide show
  1. package/README.md +10 -6
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -4,6 +4,9 @@ Runtime materialization layer for validated Kurot UI documents. It converts
4
4
  canonical `kui.*` nodes into real `@kurot/ui` components without moving
5
5
  document semantics into the component library.
6
6
 
7
+ > **Current release: 0.5.1.** Requires `@kurot/ui@^2.0.0` and uses its atomic
8
+ > complete-skin lifecycle for materialized appearances.
9
+
7
10
  ```ts
8
11
  import { createKurotUI } from '@kurot/ui-runtime';
9
12
 
@@ -22,12 +25,13 @@ bindings, variants, part overrides, and projected Slot content. Appearance
22
25
  assets become native Kurot skins and states, including the selected appearance
23
26
  variant.
24
27
 
25
- Version 0.4 completes the first bounded visual-semantics slice with component
26
- capability validation and transactional data updates. Contract data
27
- fields drive declared one-way property bindings, semantic actions expose
28
- declared `tap` and `change` events, and numeric appearance overrides may use
29
- bounded transitions. The package still performs full-tree creation; incremental
30
- preview reconciliation belongs to the next phase.
28
+ Version 0.5 carries the first bounded visual-semantics slice onto the typed,
29
+ atomic UI 2.0 skin lifecycle while retaining component capability validation
30
+ and transactional data updates. Contract data fields drive declared one-way
31
+ property bindings, semantic actions expose declared `tap` and `change` events,
32
+ and numeric appearance overrides may use bounded transitions. The package still
33
+ performs full-tree creation; incremental preview reconciliation belongs to the
34
+ next phase.
31
35
 
32
36
  The result also provides a stable node lookup for editor selection and event
33
37
  wiring:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kurot/ui-runtime",
3
- "version": "0.4.2",
3
+ "version": "0.5.1",
4
4
  "description": "Runtime materialization layer for validated Kurot UI documents",
5
5
  "author": "Kelvin <kyia.x52@gmail.com>",
6
6
  "license": "MIT",
@@ -30,13 +30,13 @@
30
30
  },
31
31
  "peerDependencies": {
32
32
  "@kurot/core": "^1.0.15",
33
- "@kurot/ui": "^1.1.8",
34
- "@kurot/ui-document": "^0.5.0"
33
+ "@kurot/ui": "^2.0.0",
34
+ "@kurot/ui-document": "^0.6.0"
35
35
  },
36
36
  "devDependencies": {
37
37
  "@kurot/core": "^1.0.15",
38
- "@kurot/ui": "^1.1.9",
39
- "@kurot/ui-document": "^0.5.1",
38
+ "@kurot/ui": "^2.0.0",
39
+ "@kurot/ui-document": "^0.6.0",
40
40
  "@types/node": "^22.0.0",
41
41
  "happy-dom": "^20.8.9",
42
42
  "typescript": "^5.6.0",