@praxisui/charts 9.0.28 → 9.0.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 +3 -0
- package/ai/component-registry.json +81 -48
- package/fesm2022/praxisui-charts.mjs +55 -22
- package/package.json +3 -3
- package/types/praxisui-charts.d.ts +1 -0
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/charts",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.0.30",
|
|
4
4
|
"description": "Metadata-driven charts library for Praxis UI Angular with engine adapters and Apache ECharts as the initial renderer.",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/common": "^21.0.0",
|
|
7
7
|
"@angular/core": "^21.0.0",
|
|
8
|
-
"@praxisui/core": "^9.0.
|
|
8
|
+
"@praxisui/core": "^9.0.30",
|
|
9
9
|
"@angular/forms": "^21.0.0",
|
|
10
10
|
"@angular/material": "^21.0.0",
|
|
11
|
-
"@praxisui/table": "^9.0.
|
|
11
|
+
"@praxisui/table": "^9.0.30",
|
|
12
12
|
"rxjs": "~7.8.0"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
@@ -1417,6 +1417,7 @@ declare class PraxisChartConfigEditor implements SettingsValueProvider {
|
|
|
1417
1417
|
eventMappingText(eventKey: ChartEventKey): string;
|
|
1418
1418
|
dimensions(): PraxisXUiChartDimension[];
|
|
1419
1419
|
metrics(): PraxisXUiChartMetric[];
|
|
1420
|
+
canAddMetric(): boolean;
|
|
1420
1421
|
fieldOptions(role: ChartFieldRole): ChartEditorFieldOption[];
|
|
1421
1422
|
metricAggregationOptions(fieldName: string | undefined): PraxisXUiChartAggregation[];
|
|
1422
1423
|
fieldOptionLabel(field: ChartEditorFieldOption): string;
|