@praxisui/charts 9.0.26 → 9.0.28
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/ai/component-registry.json +31 -16
- package/fesm2022/praxisui-charts.mjs +860 -783
- package/package.json +3 -3
- package/types/praxisui-charts.d.ts +21 -6
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/charts",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.0.28",
|
|
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.28",
|
|
9
9
|
"@angular/forms": "^21.0.0",
|
|
10
10
|
"@angular/material": "^21.0.0",
|
|
11
|
-
"@praxisui/table": "^9.0.
|
|
11
|
+
"@praxisui/table": "^9.0.28",
|
|
12
12
|
"rxjs": "~7.8.0"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
@@ -718,10 +718,10 @@ declare class PraxisAnalyticsPresentationComponent {
|
|
|
718
718
|
private readonly tableAdapter;
|
|
719
719
|
private readonly tableStats;
|
|
720
720
|
private readonly temporaryFamily;
|
|
721
|
-
readonly
|
|
722
|
-
private readonly
|
|
723
|
-
private readonly
|
|
724
|
-
private
|
|
721
|
+
readonly resultRows: _angular_core.WritableSignal<AnalyticsTableRow[]>;
|
|
722
|
+
private readonly resultState;
|
|
723
|
+
private readonly resultDiagnostic;
|
|
724
|
+
private resultRequestGeneration;
|
|
725
725
|
private previousProjectionId;
|
|
726
726
|
readonly resolved: _angular_core.Signal<ResolvedPresentation>;
|
|
727
727
|
readonly activeFamily: _angular_core.Signal<AnalyticsPresentationFamily | null>;
|
|
@@ -729,15 +729,30 @@ declare class PraxisAnalyticsPresentationComponent {
|
|
|
729
729
|
readonly diagnostic: _angular_core.Signal<string | null>;
|
|
730
730
|
readonly chartConfig: _angular_core.Signal<_praxisui_charts.PraxisChartConfig | null>;
|
|
731
731
|
readonly tableConfig: _angular_core.Signal<_praxisui_core.TableConfigModern | null>;
|
|
732
|
-
readonly
|
|
733
|
-
readonly
|
|
732
|
+
readonly isResultLoading: _angular_core.Signal<boolean>;
|
|
733
|
+
readonly isResultEmpty: _angular_core.Signal<boolean>;
|
|
734
|
+
readonly kpiTitle: _angular_core.Signal<string | null>;
|
|
735
|
+
readonly kpiSubtitle: _angular_core.Signal<string | null>;
|
|
736
|
+
readonly kpiItems: _angular_core.Signal<{
|
|
737
|
+
trackId: string;
|
|
738
|
+
label: string;
|
|
739
|
+
metricLabel: string;
|
|
740
|
+
value: number;
|
|
741
|
+
formattedValue: string;
|
|
742
|
+
row: AnalyticsTableRow;
|
|
743
|
+
}[]>;
|
|
734
744
|
constructor();
|
|
735
745
|
selectFamily(family: AnalyticsPresentationFamily): void;
|
|
736
746
|
handleTableRowClick(event: {
|
|
737
747
|
row?: AnalyticsTableRow;
|
|
738
748
|
} | null): void;
|
|
749
|
+
handleKpiClick(row: AnalyticsTableRow, label: string, value: number): void;
|
|
750
|
+
kpiItemAriaLabel(category: string, formattedValue: string, metric: string): string;
|
|
739
751
|
private resolvePresentation;
|
|
740
752
|
private isEligible;
|
|
753
|
+
private isKpiEligible;
|
|
754
|
+
private usesRemoteRows;
|
|
755
|
+
private resolveText;
|
|
741
756
|
t(key: string, fallback: string): string;
|
|
742
757
|
private message;
|
|
743
758
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PraxisAnalyticsPresentationComponent, never>;
|