@mx-cartographer/experiences 6.24.17 → 6.24.19
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 +8 -0
- package/dist/common/components/charts/LineChart.d.ts +7 -0
- package/dist/common/components/charts/linechart/CustomLegend.d.ts +3 -1
- package/dist/common/components/charts/linechart/CustomMark.d.ts +3 -0
- package/dist/finstrong/components/ManageCreditScore.d.ts +8 -0
- package/dist/finstrong/components/ManageDOB.d.ts +6 -0
- package/dist/finstrong/components/ProfileDrawer.d.ts +8 -0
- package/dist/finstrong/components/ProfileList.d.ts +20 -0
- package/dist/finstrong/components/ProfileProgressBar.d.ts +6 -0
- package/dist/index.es.js +4841 -4564
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## [6.24.19] - 08-19-2025
|
|
2
|
+
|
|
3
|
+
- **ADDED** - `Profile` drawer skeleton with key actions for `Finstrong`
|
|
4
|
+
|
|
5
|
+
## [6.24.18] - 08-19-2025
|
|
6
|
+
|
|
7
|
+
- **UPDATED** - Modified existing LineChart component to support Finstrong requirements.
|
|
8
|
+
|
|
1
9
|
## [6.24.17] - 08-18-2025
|
|
2
10
|
|
|
3
11
|
- **FIXED** - Mini Goals track type null check fix
|
|
@@ -3,12 +3,18 @@ import { MarkHandlers } from './linechart/CustomMark';
|
|
|
3
3
|
interface LineChartProps {
|
|
4
4
|
baseline?: string;
|
|
5
5
|
colors: (string | undefined)[];
|
|
6
|
+
curveType?: string;
|
|
6
7
|
datasets: {
|
|
7
8
|
x: string;
|
|
8
9
|
y: number;
|
|
9
10
|
}[][];
|
|
11
|
+
disableXAxis?: boolean;
|
|
10
12
|
height?: number;
|
|
13
|
+
isValuesFormatted?: boolean;
|
|
14
|
+
isGraphClippingXAxis?: boolean;
|
|
11
15
|
labels: string[];
|
|
16
|
+
labelBackgroundColor?: string;
|
|
17
|
+
labelFontColor?: string;
|
|
12
18
|
margin?: {
|
|
13
19
|
top?: number;
|
|
14
20
|
right?: number;
|
|
@@ -21,6 +27,7 @@ interface LineChartProps {
|
|
|
21
27
|
showAverage?: boolean;
|
|
22
28
|
showBars?: boolean;
|
|
23
29
|
showMarkLabel?: boolean;
|
|
30
|
+
title?: string;
|
|
24
31
|
useCustomMark?: boolean;
|
|
25
32
|
valueFormatterString?: string;
|
|
26
33
|
width?: number;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
declare const _default: (({
|
|
1
|
+
declare const _default: (({ average, isValuesFormatted, series, style, title, }: {
|
|
2
2
|
average: number;
|
|
3
|
+
isValuesFormatted: boolean;
|
|
3
4
|
series: any[];
|
|
5
|
+
title?: string;
|
|
4
6
|
style: any;
|
|
5
7
|
}) => import("react/jsx-runtime").JSX.Element) & {
|
|
6
8
|
displayName: string;
|
|
@@ -9,6 +9,9 @@ interface CustomMarkProps extends MarkElementProps {
|
|
|
9
9
|
handlers?: MarkHandlers;
|
|
10
10
|
showLabel: boolean;
|
|
11
11
|
yData: number[];
|
|
12
|
+
isValuesFormatted?: boolean;
|
|
13
|
+
labelBackgroundColor?: string;
|
|
14
|
+
labelFontColor?: string;
|
|
12
15
|
}
|
|
13
16
|
export declare const CustomMark: React.FC<CustomMarkProps>;
|
|
14
17
|
export {};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
export declare enum Action {
|
|
3
|
+
Connections = "connections",
|
|
4
|
+
CreditScore = "credit_score",
|
|
5
|
+
DateOfBirth = "date_of_birth",
|
|
6
|
+
MonthlyIncome = "monthly_income"
|
|
7
|
+
}
|
|
8
|
+
interface ProfileListItem {
|
|
9
|
+
icon: React.ReactNode;
|
|
10
|
+
isComplete: boolean;
|
|
11
|
+
key: Action;
|
|
12
|
+
primaryText: string;
|
|
13
|
+
secondaryText: string;
|
|
14
|
+
}
|
|
15
|
+
interface ProfileListProps {
|
|
16
|
+
list: ProfileListItem[];
|
|
17
|
+
onClickItem: (action: Action) => void;
|
|
18
|
+
}
|
|
19
|
+
declare const ProfileList: ({ list, onClickItem }: ProfileListProps) => import("react/jsx-runtime").JSX.Element;
|
|
20
|
+
export default ProfileList;
|