@praxisui/charts 8.0.0-beta.31 → 8.0.0-beta.32
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/fesm2022/praxisui-charts.mjs +171 -173
- package/package.json +11 -10
- package/{index.d.ts → types/praxisui-charts.d.ts} +15 -15
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/charts",
|
|
3
|
-
"version": "8.0.0-beta.
|
|
3
|
+
"version": "8.0.0-beta.32",
|
|
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
|
-
"@angular/common": "^
|
|
7
|
-
"@angular/core": "^
|
|
8
|
-
"@praxisui/core": "^8.0.0-beta.
|
|
9
|
-
"@angular/forms": "^
|
|
10
|
-
"@angular/material": "^
|
|
11
|
-
"@praxisui/table": "^8.0.0-beta.
|
|
6
|
+
"@angular/common": "^21.0.0",
|
|
7
|
+
"@angular/core": "^21.0.0",
|
|
8
|
+
"@praxisui/core": "^8.0.0-beta.32",
|
|
9
|
+
"@angular/forms": "^21.0.0",
|
|
10
|
+
"@angular/material": "^21.0.0",
|
|
11
|
+
"@praxisui/table": "^8.0.0-beta.32",
|
|
12
12
|
"rxjs": "~7.8.0"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
@@ -37,14 +37,15 @@
|
|
|
37
37
|
],
|
|
38
38
|
"sideEffects": false,
|
|
39
39
|
"module": "fesm2022/praxisui-charts.mjs",
|
|
40
|
-
"typings": "
|
|
40
|
+
"typings": "types/praxisui-charts.d.ts",
|
|
41
41
|
"exports": {
|
|
42
42
|
"./package.json": {
|
|
43
43
|
"default": "./package.json"
|
|
44
44
|
},
|
|
45
45
|
".": {
|
|
46
|
-
"types": "./
|
|
46
|
+
"types": "./types/praxisui-charts.d.ts",
|
|
47
47
|
"default": "./fesm2022/praxisui-charts.mjs"
|
|
48
48
|
}
|
|
49
|
-
}
|
|
49
|
+
},
|
|
50
|
+
"type": "module"
|
|
50
51
|
}
|
|
@@ -1056,19 +1056,6 @@ declare class PraxisChartCompositionShowcaseComponent {
|
|
|
1056
1056
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PraxisChartCompositionShowcaseComponent, "praxis-chart-composition-showcase", never, { "enableCustomization": { "alias": "enableCustomization"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1057
1057
|
}
|
|
1058
1058
|
|
|
1059
|
-
interface ChartEditorPreviewPayload {
|
|
1060
|
-
config: PraxisChartConfig;
|
|
1061
|
-
data: PraxisChartDataRow[];
|
|
1062
|
-
}
|
|
1063
|
-
declare class ChartEditorPreviewMapperService {
|
|
1064
|
-
private readonly mapper;
|
|
1065
|
-
constructor(mapper: PraxisChartCanonicalContractMapperService);
|
|
1066
|
-
build(document: PraxisXUiChartContract): ChartEditorPreviewPayload;
|
|
1067
|
-
private buildRows;
|
|
1068
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ChartEditorPreviewMapperService, never>;
|
|
1069
|
-
static ɵprov: _angular_core.ɵɵInjectableDeclaration<ChartEditorPreviewMapperService>;
|
|
1070
|
-
}
|
|
1071
|
-
|
|
1072
1059
|
interface ChartConfigEditorApplyEvent {
|
|
1073
1060
|
document: PraxisXUiChartContract;
|
|
1074
1061
|
issues: ChartContractValidationIssue[];
|
|
@@ -1133,12 +1120,12 @@ declare class PraxisChartConfigEditor implements SettingsValueProvider {
|
|
|
1133
1120
|
private readonly initialDocument;
|
|
1134
1121
|
private lastExternalSignature;
|
|
1135
1122
|
readonly normalizedDocument: _angular_core.Signal<PraxisXUiChartContract>;
|
|
1136
|
-
readonly validation: _angular_core.Signal<ChartContractValidationResult>;
|
|
1123
|
+
readonly validation: _angular_core.Signal<_praxisui_charts.ChartContractValidationResult>;
|
|
1137
1124
|
readonly issues: _angular_core.Signal<ChartContractValidationIssue[]>;
|
|
1138
1125
|
readonly availableResources: _angular_core.Signal<ChartEditorResourceOption[]>;
|
|
1139
1126
|
readonly availableFields: _angular_core.Signal<ChartEditorFieldOption[]>;
|
|
1140
1127
|
readonly availableTargets: _angular_core.Signal<ChartEditorTargetOption[]>;
|
|
1141
|
-
readonly preview: _angular_core.Signal<ChartEditorPreviewPayload | null>;
|
|
1128
|
+
readonly preview: _angular_core.Signal<_praxisui_charts.ChartEditorPreviewPayload | null>;
|
|
1142
1129
|
constructor();
|
|
1143
1130
|
getSettingsValue(): PraxisXUiChartContract;
|
|
1144
1131
|
onSave(): PraxisXUiChartContract;
|
|
@@ -1290,6 +1277,19 @@ declare class ChartEditorDefaultsService {
|
|
|
1290
1277
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<ChartEditorDefaultsService>;
|
|
1291
1278
|
}
|
|
1292
1279
|
|
|
1280
|
+
interface ChartEditorPreviewPayload {
|
|
1281
|
+
config: PraxisChartConfig;
|
|
1282
|
+
data: PraxisChartDataRow[];
|
|
1283
|
+
}
|
|
1284
|
+
declare class ChartEditorPreviewMapperService {
|
|
1285
|
+
private readonly mapper;
|
|
1286
|
+
constructor(mapper: PraxisChartCanonicalContractMapperService);
|
|
1287
|
+
build(document: PraxisXUiChartContract): ChartEditorPreviewPayload;
|
|
1288
|
+
private buildRows;
|
|
1289
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ChartEditorPreviewMapperService, never>;
|
|
1290
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<ChartEditorPreviewMapperService>;
|
|
1291
|
+
}
|
|
1292
|
+
|
|
1293
1293
|
type PraxisChartsText = PraxisTextValue;
|
|
1294
1294
|
interface PraxisChartsI18nOptions {
|
|
1295
1295
|
locale?: string;
|