@praxisui/table 9.0.68-rc.1 → 9.0.68-rc.2
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 +14 -0
- package/ai/component-registry.json +2 -2
- package/fesm2022/{praxisui-table-praxisui-table-Cxa4T7sm.mjs → praxisui-table-praxisui-table-EGWwY1dR.mjs} +223 -115
- package/fesm2022/{praxisui-table-table-agentic-authoring-turn-flow-ujl2U5u7.mjs → praxisui-table-table-agentic-authoring-turn-flow-DyL8eJ1l.mjs} +1 -1
- package/fesm2022/{praxisui-table-table-ai.adapter-B2hfkjTX.mjs → praxisui-table-table-ai.adapter-B2LTkMdM.mjs} +1 -1
- package/fesm2022/praxisui-table.mjs +1 -1
- package/package.json +10 -10
- package/types/praxisui-table.d.ts +13 -0
package/README.md
CHANGED
|
@@ -84,6 +84,20 @@ only failed rows selected for correction, while successful execution follows the
|
|
|
84
84
|
policy. Missing identity or version metadata fails visibly instead of silently degrading
|
|
85
85
|
concurrency control.
|
|
86
86
|
|
|
87
|
+
`PER_ITEM` responses with `details[{id, ok, error}]` also produce a persistent,
|
|
88
|
+
expandable result summary above the table. It names records using their existing
|
|
89
|
+
resource identity and shows each failure reason as text. Results are transient:
|
|
90
|
+
reloading/navigating away or changing resources clears them; the next completed
|
|
91
|
+
selection-bound action replaces them. They do not constitute an audit trail or
|
|
92
|
+
create a new workflow contract. A retry uses the current selection and published
|
|
93
|
+
action availability; a state conflict is not automatically repairable. Configure
|
|
94
|
+
`selection.persistOnDataUpdate: true` when failed visible rows must survive the
|
|
95
|
+
action's collection refresh with their newly returned versions.
|
|
96
|
+
|
|
97
|
+
The host demonstrates this at `/dynamic-page-lab/archetypes/bulk-partial`, using
|
|
98
|
+
`praxis-dynamic-page.bulk-partial.ui-composition-plan.artifact.json`. The real
|
|
99
|
+
backend proof creates and removes exclusive payroll-event fixtures.
|
|
100
|
+
|
|
87
101
|
## LLM Recommendation Guide
|
|
88
102
|
|
|
89
103
|
- Recommend when: Angular apps need metadata-driven data grids with TableConfig, filtering, sorting, pagination, row actions, visual rules, detail rows, export, and AI-assisted authoring.
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": "1.0.0",
|
|
3
|
-
"generatedAt": "2026-09-
|
|
3
|
+
"generatedAt": "2026-09-10T01:25:13.157Z",
|
|
4
4
|
"packageName": "@praxisui/table",
|
|
5
|
-
"packageVersion": "9.0.68-rc.
|
|
5
|
+
"packageVersion": "9.0.68-rc.2",
|
|
6
6
|
"sourceRegistry": "praxis-component-registry-ingestion",
|
|
7
7
|
"sourceRegistryVersion": "1.0.0",
|
|
8
8
|
"componentCount": 3,
|