@praxisui/charts 8.0.0-beta.2 → 8.0.0-beta.21
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 +33 -0
- package/fesm2022/praxisui-charts.mjs +4044 -3467
- package/index.d.ts +43 -4
- package/package.json +6 -2
package/README.md
CHANGED
|
@@ -378,6 +378,39 @@ This first published version is focused on the core runtime:
|
|
|
378
378
|
- declarative `selectionChange` and `crossFilter` actions emitted from selected chart points
|
|
379
379
|
- `distinct-count` aggregation mapped to canonical `praxis.stats` `DISTINCT_COUNT`
|
|
380
380
|
- host-owned remote data resolution through `remoteDataResolver`
|
|
381
|
+
- executable agentic authoring manifest for `praxis-chart`, exported as `PRAXIS_CHARTS_AUTHORING_MANIFEST`
|
|
382
|
+
|
|
383
|
+
## Agentic Authoring Contract
|
|
384
|
+
|
|
385
|
+
`@praxisui/charts` publishes a component-level authoring manifest for `praxis-chart`.
|
|
386
|
+
The manifest is an executable backend/tooling contract for canonical
|
|
387
|
+
`PraxisXUiChartContract` documents, not prompt-routing documentation.
|
|
388
|
+
|
|
389
|
+
The governed authoring targets are:
|
|
390
|
+
|
|
391
|
+
- `chartType`
|
|
392
|
+
- `series`
|
|
393
|
+
- `axis`
|
|
394
|
+
- `dataBinding`
|
|
395
|
+
- `queryContext`
|
|
396
|
+
- `crossFilter`
|
|
397
|
+
- `drilldown`
|
|
398
|
+
- `selection`
|
|
399
|
+
- `legend`
|
|
400
|
+
- `tooltip`
|
|
401
|
+
|
|
402
|
+
Remote resource and field binding must come from governed API metadata,
|
|
403
|
+
`availableResources` and `availableFields`. Cross-filter, drilldown and
|
|
404
|
+
selection authoring persists structured `events.*` actions instead of command
|
|
405
|
+
strings or raw prompt examples. The visual editor remains the canonical
|
|
406
|
+
round-trip surface for this document: open, edit, apply/save, reset and reopen
|
|
407
|
+
must preserve the same `x-ui.chart` shape consumed by the runtime.
|
|
408
|
+
|
|
409
|
+
Each manifest operation declares its own editable target, resolver,
|
|
410
|
+
ambiguity policy, preconditions, validators, affected paths, effects and
|
|
411
|
+
`submissionImpact`. Chart document, type, series and axis changes are
|
|
412
|
+
`config-only`; remote data binding, query context and event mappings
|
|
413
|
+
`affect-remote-binding`; legend and tooltip changes are `visual-only`.
|
|
381
414
|
|
|
382
415
|
## Current Non-Goals
|
|
383
416
|
|