@praxisui/core 9.0.3 → 9.0.4-rc.10
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 +3 -1
- package/ai/component-registry.json +394 -83
- package/fesm2022/praxisui-core.mjs +357 -60
- package/package.json +1 -1
- package/types/praxisui-core.d.ts +151 -4
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ Use this package directly when a host application or library needs Praxis UI typ
|
|
|
20
20
|
## Install
|
|
21
21
|
|
|
22
22
|
```bash
|
|
23
|
-
npm i @praxisui/core@
|
|
23
|
+
npm i @praxisui/core@rc
|
|
24
24
|
```
|
|
25
25
|
|
|
26
26
|
Peer dependencies:
|
|
@@ -259,6 +259,8 @@ export const appConfig = {
|
|
|
259
259
|
|
|
260
260
|
Use `GlobalActionRef` and the catalog helpers when declaring or validating action payloads. The host remains responsible for registered executors and policy.
|
|
261
261
|
|
|
262
|
+
Resource action discovery also carries an optional `execution` contract. Consumers must materialize its interaction, idempotency, correlation, resource-version, selection, outcome and refresh policies instead of inferring command behavior from labels or HTTP methods. `ResourceActionOpenAdapterService` projects form-based actions into Dynamic Form inputs and fails closed when a required `If-Match` version cannot be supplied or bound at runtime.
|
|
263
|
+
|
|
262
264
|
## Collection Export
|
|
263
265
|
|
|
264
266
|
`PraxisCollectionExportService` is the shared export contract used by table, list, and future collection components.
|