@praxisui/table 9.0.0-beta.88 → 9.0.0-beta.90
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 +6 -0
- package/ai/component-registry.json +2994 -340
- package/docs/resource-events.md +8 -0
- package/fesm2022/{praxisui-table-praxisui-table-IDepR7JN.mjs → praxisui-table-praxisui-table-CWBFPs1H.mjs} +545 -200
- package/fesm2022/{praxisui-table-table-agentic-authoring-turn-flow-Dk7mU6l2.mjs → praxisui-table-table-agentic-authoring-turn-flow-BLNUMwu5.mjs} +1 -1
- package/fesm2022/{praxisui-table-table-ai.adapter-DjfE591p.mjs → praxisui-table-table-ai.adapter-CeH1iTVt.mjs} +1 -1
- package/fesm2022/praxisui-table.mjs +1 -1
- package/package.json +10 -10
- package/types/praxisui-table.d.ts +4 -1
package/docs/resource-events.md
CHANGED
|
@@ -21,6 +21,14 @@
|
|
|
21
21
|
|
|
22
22
|
`selectionChange` can also be emitted with `trigger: "data-reconcile"` when a data update removes identities from the effective selection. Rehydrating the same selected identities does not emit a new selection event. With `persistSelection`, identities may remain selected outside the current page; `persistOnDataUpdate` only reconciles selection against the current visible dataset.
|
|
23
23
|
|
|
24
|
+
Record-oriented events may carry `resourceIdentity`. Resolution prefers a valid
|
|
25
|
+
explicit `x-ui.resource.identity`, then a key-only fallback from a valid
|
|
26
|
+
`x-ui.resource.idField`, then the effective host `idField` when that field is
|
|
27
|
+
present in the filtered response schema. Fallback identities expose `source`
|
|
28
|
+
and structured `diagnostics`; they never infer a title from property names. If
|
|
29
|
+
the configured field has no displayable row value, the event carries
|
|
30
|
+
`resourceIdentity: null` and the runtime emits a deduplicated diagnostic.
|
|
31
|
+
|
|
24
32
|
## Surface Rules
|
|
25
33
|
|
|
26
34
|
For catalog-backed surfaces, `resourceEvent.surface` carries the canonical `ResourceSurfaceCatalogItem`, including `relatedResource` when the backend publishes it. For fallback dynamic-page requests, the payload still carries the requested surface context, but `surface` may be `null` because no full catalog item is available.
|