@mx-cartographer/experiences 6.25.3 → 6.25.4
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/CHANGELOG.md +4 -0
- package/dist/common/components/charts/LineChart.d.ts +2 -0
- package/dist/common/components/charts/linechart/CustomLegend.d.ts +4 -2
- package/dist/common/components/charts/linechart/CustomMark.d.ts +1 -0
- package/dist/common/types/localization/FinstrongCopy.d.ts +3 -0
- package/dist/index.es.js +3107 -3050
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -14,12 +14,14 @@ interface LineChartProps {
|
|
|
14
14
|
baseline?: string;
|
|
15
15
|
colors: (string | undefined)[];
|
|
16
16
|
curveType?: LineChartCurve;
|
|
17
|
+
customLegendVariant?: string;
|
|
17
18
|
datasets: LineChartDataset[];
|
|
18
19
|
height?: number;
|
|
19
20
|
isGraphClippingXAxis?: boolean;
|
|
20
21
|
labels: LineChartLabel[];
|
|
21
22
|
labelBackgroundColor?: string;
|
|
22
23
|
labelFontColor?: string;
|
|
24
|
+
labelFontSize?: number;
|
|
23
25
|
margin?: {
|
|
24
26
|
top?: number;
|
|
25
27
|
right?: number;
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import { LineChartLabel } from '../LineChart';
|
|
2
|
-
export declare const CustomLegendLabel: ({ label }: {
|
|
2
|
+
export declare const CustomLegendLabel: ({ label, customLegendVariant, }: {
|
|
3
3
|
label: LineChartLabel;
|
|
4
|
+
customLegendVariant?: string;
|
|
4
5
|
}) => import("react/jsx-runtime").JSX.Element | null;
|
|
5
|
-
declare const _default: (({ average, labels, series, style, title, valueFormatterString, }: {
|
|
6
|
+
declare const _default: (({ average, customLegendVariant, labels, series, style, title, valueFormatterString, }: {
|
|
6
7
|
average?: number;
|
|
8
|
+
customLegendVariant?: string;
|
|
7
9
|
labels?: LineChartLabel[];
|
|
8
10
|
series: any[];
|
|
9
11
|
title?: string;
|
|
@@ -11,6 +11,7 @@ interface CustomMarkProps extends MarkElementProps {
|
|
|
11
11
|
yData: number[];
|
|
12
12
|
labelBackgroundColor?: string;
|
|
13
13
|
labelFontColor?: string;
|
|
14
|
+
labelFontSize?: number;
|
|
14
15
|
valueFormatterString?: string;
|
|
15
16
|
}
|
|
16
17
|
export declare const CustomMark: React.FC<CustomMarkProps>;
|
|
@@ -74,6 +74,7 @@ export interface FinstrongCopy {
|
|
|
74
74
|
key_indicators_fair: string;
|
|
75
75
|
key_indicators_good: string;
|
|
76
76
|
key_indicators_missing: string;
|
|
77
|
+
key_indicators_label: string;
|
|
77
78
|
key_indicators_off_track: string;
|
|
78
79
|
key_indicators_save: KeyIndicatorSave;
|
|
79
80
|
key_indicators_spend: KeyIndicatorSpend;
|
|
@@ -82,6 +83,7 @@ export interface FinstrongCopy {
|
|
|
82
83
|
monthly_income: string;
|
|
83
84
|
profile: string;
|
|
84
85
|
score_rubric: string;
|
|
86
|
+
peer_average: string;
|
|
85
87
|
see_whats_possible: string;
|
|
86
88
|
see_whats_possible_description: string;
|
|
87
89
|
stable: string;
|
|
@@ -93,6 +95,7 @@ export interface FinstrongCopy {
|
|
|
93
95
|
we_ask_questions: string;
|
|
94
96
|
we_ask_questions_description_1: string;
|
|
95
97
|
we_ask_questions_description_2: string;
|
|
98
|
+
whats_changed: string;
|
|
96
99
|
your_financial_profile: string;
|
|
97
100
|
your_path_to_financial_freedom: string;
|
|
98
101
|
}
|