@praxisui/core 9.0.45 → 9.0.47
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 +8 -0
- package/ai/component-registry.json +188 -152
- package/fesm2022/praxisui-core.mjs +128 -14
- package/package.json +1 -1
- package/types/praxisui-core.d.ts +7 -0
package/README.md
CHANGED
|
@@ -221,6 +221,14 @@ the dynamic-page cycle has no lifecycle-aware asynchronous continuation or
|
|
|
221
221
|
batch boundary. Canonical ingress rejects those removed values instead of
|
|
222
222
|
silently treating them as synchronous.
|
|
223
223
|
|
|
224
|
+
A successful state delivery schedules every canonical link sourced from that
|
|
225
|
+
exact state path and layer in the same causal cycle. The runtime executes each
|
|
226
|
+
scheduled link at most once per cycle, preserves deterministic document order,
|
|
227
|
+
updates `matchedLinkIds`, link telemetry and trace, and relies on semantic cycle
|
|
228
|
+
validation to block unguarded feedback graphs. This makes
|
|
229
|
+
`component/global-action -> state -> component` an executable chain rather than
|
|
230
|
+
a bootstrap-only projection.
|
|
231
|
+
|
|
224
232
|
`policy.errorPolicy` governs runtime condition, transform and delivery failures:
|
|
225
233
|
|
|
226
234
|
- `diagnostic` (the default) keeps the structured failure evidence and allows
|