@praxisui/charts 9.0.51 → 9.0.52
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
|
@@ -150,7 +150,8 @@ The public contract is `PraxisChartConfig` or the canonical `PraxisXUiChartContr
|
|
|
150
150
|
- every ready chart offers a localized `Show chart data` / `Exibir dados do gráfico` control with a structured HTML table;
|
|
151
151
|
- each table point is a native button, so Enter and Space follow browser keyboard conventions and activate the same renderer-neutral `pointClick` path as the visual point;
|
|
152
152
|
- when single selection is configured, the point button publishes `aria-pressed` and preserves the existing select/deselect and cross-filter payloads;
|
|
153
|
-
- loading
|
|
153
|
+
- loading and empty are exposed as atomic status messages, error is exposed as an alert, and the chart shell reports `aria-busy` only while loading;
|
|
154
|
+
- all non-ready states remove the data controls, preventing stale chart values from remaining available to assistive technology.
|
|
154
155
|
|
|
155
156
|
The structured alternative is automatic. It does not add an accessibility field to `PraxisChartConfig` or `x-ui.chart`, and custom engines remain responsible for an accessible visual rendering while the component-level data alternative remains renderer-neutral.
|
|
156
157
|
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": "1.0.0",
|
|
3
|
-
"generatedAt": "2026-08-
|
|
3
|
+
"generatedAt": "2026-08-31T20:42:03.904Z",
|
|
4
4
|
"packageName": "@praxisui/charts",
|
|
5
|
-
"packageVersion": "9.0.
|
|
5
|
+
"packageVersion": "9.0.52",
|
|
6
6
|
"sourceRegistry": "praxis-component-registry-ingestion",
|
|
7
7
|
"sourceRegistryVersion": "1.0.0",
|
|
8
8
|
"componentCount": 3,
|
|
@@ -2040,6 +2040,7 @@ class PraxisChartComponent {
|
|
|
2040
2040
|
return config;
|
|
2041
2041
|
}, ...(ngDevMode ? [{ debugName: "renderConfig" }] : /* istanbul ignore next */ []));
|
|
2042
2042
|
loadingLabel = computed(() => this.i18n.resolve(this.renderConfig().state?.loadingLabel), ...(ngDevMode ? [{ debugName: "loadingLabel" }] : /* istanbul ignore next */ []));
|
|
2043
|
+
loadingDescription = computed(() => this.t('praxis.charts.runtime.loadingDescription', 'Publishing the analytics slice and preparing visual buckets.'), ...(ngDevMode ? [{ debugName: "loadingDescription" }] : /* istanbul ignore next */ []));
|
|
2043
2044
|
transformedData = computed(() => this.transformer.transform(this.renderConfig(), this.resolvedData()), ...(ngDevMode ? [{ debugName: "transformedData" }] : /* istanbul ignore next */ []));
|
|
2044
2045
|
accessiblePoints = computed(() => buildAccessibleChartPoints(this.renderConfig(), this.transformedData(), (value) => this.formatAccessibleValue(value), (index) => this.t('praxis.charts.runtime.accessibility.pointFallback', `Point ${index + 1}`, { index: index + 1 }), () => this.t('praxis.charts.runtime.accessibility.seriesFallback', 'Series')), ...(ngDevMode ? [{ debugName: "accessiblePoints" }] : /* istanbul ignore next */ []));
|
|
2045
2046
|
dataDiagnostic = computed(() => {
|
|
@@ -2865,6 +2866,7 @@ class PraxisChartComponent {
|
|
|
2865
2866
|
[style.--praxis-chart-config-surface-border-width]="surfaceBorderWidth()"
|
|
2866
2867
|
[style.--praxis-chart-config-surface-radius]="surfaceBorderRadius()"
|
|
2867
2868
|
[style.--praxis-chart-config-text-color]="surfaceTextColor()"
|
|
2869
|
+
[attr.aria-busy]="loadState() === 'loading' ? 'true' : null"
|
|
2868
2870
|
>
|
|
2869
2871
|
@if (canOpenConfigEditor()) {
|
|
2870
2872
|
<button
|
|
@@ -2898,7 +2900,11 @@ class PraxisChartComponent {
|
|
|
2898
2900
|
}
|
|
2899
2901
|
|
|
2900
2902
|
@if (loadState() === 'loading') {
|
|
2901
|
-
<div
|
|
2903
|
+
<div
|
|
2904
|
+
class="praxis-chart-state praxis-chart-state-loading"
|
|
2905
|
+
role="status"
|
|
2906
|
+
aria-atomic="true"
|
|
2907
|
+
>
|
|
2902
2908
|
<div class="praxis-chart-loading-hero" aria-hidden="true">
|
|
2903
2909
|
<div class="praxis-chart-loading-summary">
|
|
2904
2910
|
<span class="praxis-chart-loading-chip"></span>
|
|
@@ -2917,12 +2923,16 @@ class PraxisChartComponent {
|
|
|
2917
2923
|
<div class="praxis-chart-state-title">{{ loadingLabel() }}</div>
|
|
2918
2924
|
}
|
|
2919
2925
|
<div class="praxis-chart-state-description">
|
|
2920
|
-
|
|
2926
|
+
{{ loadingDescription() }}
|
|
2921
2927
|
</div>
|
|
2922
2928
|
</div>
|
|
2923
2929
|
</div>
|
|
2924
2930
|
} @else if (loadState() === 'error') {
|
|
2925
|
-
<div
|
|
2931
|
+
<div
|
|
2932
|
+
class="praxis-chart-state praxis-chart-state-error"
|
|
2933
|
+
role="alert"
|
|
2934
|
+
aria-atomic="true"
|
|
2935
|
+
>
|
|
2926
2936
|
@if (errorTitle()) {
|
|
2927
2937
|
<div class="praxis-chart-state-title">{{ errorTitle() }}</div>
|
|
2928
2938
|
}
|
|
@@ -2931,7 +2941,11 @@ class PraxisChartComponent {
|
|
|
2931
2941
|
}
|
|
2932
2942
|
</div>
|
|
2933
2943
|
} @else if (loadState() === 'empty') {
|
|
2934
|
-
<div
|
|
2944
|
+
<div
|
|
2945
|
+
class="praxis-chart-state praxis-chart-state-empty"
|
|
2946
|
+
role="status"
|
|
2947
|
+
aria-atomic="true"
|
|
2948
|
+
>
|
|
2935
2949
|
@if (emptyTitle()) {
|
|
2936
2950
|
<div class="praxis-chart-state-title">{{ emptyTitle() }}</div>
|
|
2937
2951
|
}
|
|
@@ -3007,6 +3021,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
3007
3021
|
[style.--praxis-chart-config-surface-border-width]="surfaceBorderWidth()"
|
|
3008
3022
|
[style.--praxis-chart-config-surface-radius]="surfaceBorderRadius()"
|
|
3009
3023
|
[style.--praxis-chart-config-text-color]="surfaceTextColor()"
|
|
3024
|
+
[attr.aria-busy]="loadState() === 'loading' ? 'true' : null"
|
|
3010
3025
|
>
|
|
3011
3026
|
@if (canOpenConfigEditor()) {
|
|
3012
3027
|
<button
|
|
@@ -3040,7 +3055,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
3040
3055
|
}
|
|
3041
3056
|
|
|
3042
3057
|
@if (loadState() === 'loading') {
|
|
3043
|
-
<div
|
|
3058
|
+
<div
|
|
3059
|
+
class="praxis-chart-state praxis-chart-state-loading"
|
|
3060
|
+
role="status"
|
|
3061
|
+
aria-atomic="true"
|
|
3062
|
+
>
|
|
3044
3063
|
<div class="praxis-chart-loading-hero" aria-hidden="true">
|
|
3045
3064
|
<div class="praxis-chart-loading-summary">
|
|
3046
3065
|
<span class="praxis-chart-loading-chip"></span>
|
|
@@ -3059,12 +3078,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
3059
3078
|
<div class="praxis-chart-state-title">{{ loadingLabel() }}</div>
|
|
3060
3079
|
}
|
|
3061
3080
|
<div class="praxis-chart-state-description">
|
|
3062
|
-
|
|
3081
|
+
{{ loadingDescription() }}
|
|
3063
3082
|
</div>
|
|
3064
3083
|
</div>
|
|
3065
3084
|
</div>
|
|
3066
3085
|
} @else if (loadState() === 'error') {
|
|
3067
|
-
<div
|
|
3086
|
+
<div
|
|
3087
|
+
class="praxis-chart-state praxis-chart-state-error"
|
|
3088
|
+
role="alert"
|
|
3089
|
+
aria-atomic="true"
|
|
3090
|
+
>
|
|
3068
3091
|
@if (errorTitle()) {
|
|
3069
3092
|
<div class="praxis-chart-state-title">{{ errorTitle() }}</div>
|
|
3070
3093
|
}
|
|
@@ -3073,7 +3096,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
3073
3096
|
}
|
|
3074
3097
|
</div>
|
|
3075
3098
|
} @else if (loadState() === 'empty') {
|
|
3076
|
-
<div
|
|
3099
|
+
<div
|
|
3100
|
+
class="praxis-chart-state praxis-chart-state-empty"
|
|
3101
|
+
role="status"
|
|
3102
|
+
aria-atomic="true"
|
|
3103
|
+
>
|
|
3077
3104
|
@if (emptyTitle()) {
|
|
3078
3105
|
<div class="praxis-chart-state-title">{{ emptyTitle() }}</div>
|
|
3079
3106
|
}
|
|
@@ -5886,6 +5913,7 @@ function pointData(category, value) {
|
|
|
5886
5913
|
|
|
5887
5914
|
const PRAXIS_CHARTS_EN_US = {
|
|
5888
5915
|
'praxis.charts.runtime.editChart': 'Edit chart settings',
|
|
5916
|
+
'praxis.charts.runtime.loadingDescription': 'Publishing the analytics slice and preparing visual buckets.',
|
|
5889
5917
|
'praxis.charts.runtime.invalidDocumentTitle': 'Invalid canonical configuration',
|
|
5890
5918
|
'praxis.charts.runtime.invalidDocumentDescription': 'The canonical chart document could not be mapped by Praxis Charts. Review the chart contract before continuing.',
|
|
5891
5919
|
'praxis.charts.runtime.remoteErrorTitle': 'Chart data could not be loaded',
|
|
@@ -6148,6 +6176,7 @@ const PRAXIS_CHARTS_EN_US = {
|
|
|
6148
6176
|
|
|
6149
6177
|
const PRAXIS_CHARTS_PT_BR = {
|
|
6150
6178
|
'praxis.charts.runtime.editChart': 'Editar configurações do gráfico',
|
|
6179
|
+
'praxis.charts.runtime.loadingDescription': 'Publicando o recorte analítico e preparando os buckets visuais.',
|
|
6151
6180
|
'praxis.charts.runtime.invalidDocumentTitle': 'Configuração canônica inválida',
|
|
6152
6181
|
'praxis.charts.runtime.invalidDocumentDescription': 'O documento canônico do gráfico não pode ser mapeado pelo Praxis Charts. Revise o contrato do gráfico antes de continuar.',
|
|
6153
6182
|
'praxis.charts.runtime.remoteErrorTitle': 'Não foi possível carregar os dados do gráfico',
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/charts",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.0.52",
|
|
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.52",
|
|
9
9
|
"@angular/forms": "^21.0.0",
|
|
10
10
|
"@angular/material": "^21.0.0",
|
|
11
|
-
"@praxisui/table": "^9.0.
|
|
11
|
+
"@praxisui/table": "^9.0.52",
|
|
12
12
|
"rxjs": "~7.8.0"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
@@ -630,6 +630,7 @@ declare class PraxisChartComponent {
|
|
|
630
630
|
readonly surfaceTextColor: _angular_core.Signal<string | null>;
|
|
631
631
|
readonly renderConfig: _angular_core.Signal<PraxisChartConfig>;
|
|
632
632
|
readonly loadingLabel: _angular_core.Signal<string>;
|
|
633
|
+
readonly loadingDescription: _angular_core.Signal<string>;
|
|
633
634
|
readonly transformedData: _angular_core.Signal<PraxisChartTransformedData>;
|
|
634
635
|
readonly accessiblePoints: _angular_core.Signal<PraxisChartAccessiblePoint[]>;
|
|
635
636
|
readonly dataDiagnostic: _angular_core.Signal<PraxisChartDataDiagnostic | null>;
|