@praxisui/charts 3.0.0-beta.3 → 3.0.0-beta.5

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 CHANGED
@@ -11,6 +11,8 @@
11
11
  ## What this package provides
12
12
 
13
13
  - `PraxisChartComponent` for standalone chart rendering
14
+ - `PraxisChartConfigEditor` as the initial authoring shell for canonical `x-ui.chart` documents
15
+ - optional runtime authoring bridge from `PraxisChartComponent` into the chart config editor when the host provides a settings-panel bridge
14
16
  - typed chart contracts for config, datasets, events and widget mapping
15
17
  - internal Apache ECharts adapter behind a Praxis engine interface
16
18
  - built-in `loading`, `empty` and `error` states
@@ -32,7 +34,7 @@ npm i @praxisui/charts
32
34
  Peer dependencies (Angular v20):
33
35
  - `@angular/core` `^20.0.0`
34
36
  - `@angular/common` `^20.0.0`
35
- - `@praxisui/core` `^1.0.0-beta.68`
37
+ - `@praxisui/core` `^3.0.0-beta.2`
36
38
 
37
39
  Runtime dependency included by this package:
38
40
  - `echarts` `^6.0.0`
@@ -104,6 +106,7 @@ export class ChartDemoComponent {
104
106
  ## Public Surface Highlights
105
107
 
106
108
  - standalone components for charts, drilldown panel and runtime probe
109
+ - the initial standalone chart config editor shell for `x-ui.chart`
107
110
  - chart contracts such as `PraxisChartConfig`, `PraxisChartDataSource` and `PraxisChartPointEvent`
108
111
  - providers and tokens for chart engine composition
109
112
  - services for canonical mapping, backend payload adaptation and option building
@@ -237,6 +240,8 @@ This first published version is focused on the core runtime:
237
240
  - the initial ECharts-based engine adapter
238
241
  - metadata and mapping hooks for registry and dynamic widget composition
239
242
  - remote execution focused on canonical `praxis.stats`
243
+ - basic settings-panel-compatible authoring shell focused on canonical `x-ui.chart`
244
+ - optional runtime edit affordance in `PraxisChartComponent` when `chartDocument` and a settings-panel bridge are available
240
245
 
241
246
  ## Current Non-Goals
242
247