@praxisui/charts 9.0.0-beta.3 → 9.0.0-beta.30
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 +19 -3
- package/ai/component-registry.json +1809 -0
- package/fesm2022/praxisui-charts.mjs +922 -7
- package/package.json +8 -4
- package/types/praxisui-charts.d.ts +64 -2
package/README.md
CHANGED
|
@@ -19,8 +19,8 @@ npm i @praxisui/charts@latest
|
|
|
19
19
|
Peer dependencies:
|
|
20
20
|
|
|
21
21
|
- `@angular/common`, `@angular/core`, `@angular/forms`, `@angular/material` `^21.0.0`
|
|
22
|
-
- `@praxisui/core` `^9.0.0-beta.
|
|
23
|
-
- `@praxisui/table` `^9.0.0-beta.
|
|
22
|
+
- `@praxisui/core` `^9.0.0-beta.12`
|
|
23
|
+
- `@praxisui/table` `^9.0.0-beta.12`
|
|
24
24
|
- `rxjs` `~7.8.0`
|
|
25
25
|
|
|
26
26
|
Runtime dependency included by the package:
|
|
@@ -134,13 +134,29 @@ const chartDocument: PraxisXUiChartContract = {
|
|
|
134
134
|
|
|
135
135
|
Supported sizing modes are `fixed`, `fill-container` and `auto`. Prefer `fill-container` inside dashboard widget shells. Supported surface modes are `auto`, `embedded` and `contained`; prefer `embedded` when another shell owns the card, header or border.
|
|
136
136
|
|
|
137
|
+
## Micro Visualizations
|
|
138
|
+
|
|
139
|
+
`PraxisMicroVisualizationComponent` renders the first renderer-neutral presentation visualizations from `@praxisui/core`.
|
|
140
|
+
It is intended for compact presentation surfaces, especially table cells, list items and read-only form summaries.
|
|
141
|
+
|
|
142
|
+
The initial table-safe kinds are:
|
|
143
|
+
|
|
144
|
+
- `comparison`
|
|
145
|
+
- `stackedBar`
|
|
146
|
+
- `bullet`
|
|
147
|
+
- `delta`
|
|
148
|
+
|
|
149
|
+
The component does not instantiate ECharts. It renders lightweight HTML/CSS from `PraxisPresentationVisualizationConfig`
|
|
150
|
+
and falls back to `fallbackText` when the visualization kind is not supported by this first cut.
|
|
151
|
+
For `comparison`, use `points` as the canonical numeric series; `items` remains reserved for item/step-oriented visualizations such as process flow.
|
|
152
|
+
|
|
137
153
|
## Authoring Surface
|
|
138
154
|
|
|
139
155
|
`PraxisChartConfigEditor` is the initial editor shell for canonical `x-ui.chart` documents. It expects governed resources, fields and targets from the host and emits structured apply/save/reset events. The authoring manifest is exported as `PRAXIS_CHARTS_AUTHORING_MANIFEST` for backend/tooling workflows that need executable chart-edit operations.
|
|
140
156
|
|
|
141
157
|
## Public API Snapshot
|
|
142
158
|
|
|
143
|
-
Main exports include `PraxisChartComponent`, `PraxisChartConfigEditor`, chart event/config models, `PraxisXUiChartContract`, engine adapter tokens, `providePraxisCharts`, canonical mapping/normalization/validation services, analytics chart services, chart metadata and `PRAXIS_CHARTS_AUTHORING_MANIFEST`.
|
|
159
|
+
Main exports include `PraxisChartComponent`, `PraxisMicroVisualizationComponent`, `PraxisChartConfigEditor`, chart event/config models, `PraxisXUiChartContract`, engine adapter tokens, `providePraxisCharts`, canonical mapping/normalization/validation services, analytics chart services, chart metadata and `PRAXIS_CHARTS_AUTHORING_MANIFEST`.
|
|
144
160
|
|
|
145
161
|
## Official Links
|
|
146
162
|
|