@praxisui/table 9.0.0-beta.21 → 9.0.0-beta.22
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 -0
- package/ai/component-registry.json +26 -4
- package/fesm2022/{praxisui-table-praxisui-table-DLIk6S-_.mjs → praxisui-table-praxisui-table-D07QUesj.mjs} +197 -11
- package/fesm2022/{praxisui-table-table-ai.adapter-CLgnfQRq.mjs → praxisui-table-table-ai.adapter-ZTsWHvrL.mjs} +28 -1
- package/fesm2022/praxisui-table.mjs +1 -1
- package/package.json +11 -10
- package/src/lib/praxis-table.json-api.md +11 -1
- package/types/praxisui-table.d.ts +17 -2
package/README.md
CHANGED
|
@@ -122,6 +122,10 @@ Common outputs:
|
|
|
122
122
|
|
|
123
123
|
The table owns table orchestration and rendering. It does not own backend resource semantics, form payloads, page composition, or business rules outside the table contract.
|
|
124
124
|
|
|
125
|
+
Fields generated from backend schema metadata can render compact corporate indicators when `field.presentation.presenter` is `microVisualization` and `field.presentation.visualization.surface` is `table-cell`. The canonical visualization shape is `PraxisPresentationVisualizationConfig` from `@praxisui/core`; the table only hosts the compact cell renderer.
|
|
126
|
+
|
|
127
|
+
For row-specific corporate indicators, declare `*Expr` properties inside the visualization, such as `valueExpr`, `targetExpr`, `segmentsExpr`, `toneExpr`, and `fallbackTextExpr`. In `PraxisTable`, string expressions are row-context paths like `row.slaAtual`; structured expressions use Json Logic. For `kind: 'comparison'`, use `points` or `pointsExpr` as the canonical numeric series.
|
|
128
|
+
|
|
125
129
|
Use `config.ai.assistant.enabled = false` when a host needs to disable the embedded AI assistant entrypoint for a table instance. The default is enabled, so existing AI-enabled tables keep the current behavior without extra config. When the value changes to `false`, the component closes the assistant and removes the table assistant session from the shared assistant registry.
|
|
126
130
|
|
|
127
131
|
## Filtering And Row Actions
|