@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 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: (({ series, average, style, }: {
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,8 @@
1
+ interface ManageCreditScoreProps {
2
+ isOpen: boolean;
3
+ onClose: () => void;
4
+ }
5
+ declare const _default: (({ isOpen, onClose }: ManageCreditScoreProps) => import("react/jsx-runtime").JSX.Element) & {
6
+ displayName: string;
7
+ };
8
+ export default _default;
@@ -0,0 +1,6 @@
1
+ interface ManageDOBProps {
2
+ isOpen: boolean;
3
+ onClose: () => void;
4
+ }
5
+ declare const ManageDOB: ({ isOpen, onClose }: ManageDOBProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default ManageDOB;
@@ -0,0 +1,8 @@
1
+ interface ProfileDrawerProps {
2
+ isOpen: boolean;
3
+ onClose: () => void;
4
+ }
5
+ declare const _default: (({ isOpen, onClose }: ProfileDrawerProps) => import("react/jsx-runtime").JSX.Element) & {
6
+ displayName: string;
7
+ };
8
+ export default _default;
@@ -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;
@@ -0,0 +1,6 @@
1
+ interface ProfileProgressBarProps {
2
+ completeCopy: string;
3
+ value: number;
4
+ }
5
+ declare const ProfileProgressBar: ({ value, completeCopy }: ProfileProgressBarProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default ProfileProgressBar;