@mx-cartographer/experiences 6.21.2-alpha.al2 → 6.21.2

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,7 @@
1
+ ## [6.21.2] - 11-05-2025
2
+
3
+ - **ADDED** - `Finstrong` - keyIndicators Drawer Component
4
+
1
5
  ## [6.21.1] - 08-05-2025
2
6
 
3
7
  - **FIXED** - `Spending` and `Budgets` now update based on `selectedAccounts`
@@ -1,20 +1,14 @@
1
1
  import { default as React, CSSProperties } from 'react';
2
2
  import { MarkHandlers } from './linechart/CustomMark';
3
- export type LineChartDataset = {
4
- x: string;
5
- y: number;
6
- }[];
7
- export type LineChartLabel = string | {
8
- label: string;
9
- amount: number;
10
- };
11
3
  interface LineChartProps {
12
4
  baseline?: string;
13
5
  colors: (string | undefined)[];
14
- curve?: 'catmullRom' | 'linear' | 'monotoneX' | 'monotoneY' | 'natural' | 'step' | 'stepBefore' | 'stepAfter' | 'bump' | 'bumpX' | 'bumpY';
15
- datasets: LineChartDataset[];
6
+ datasets: {
7
+ x: string;
8
+ y: number;
9
+ }[][];
16
10
  height?: number;
17
- labels: LineChartLabel[];
11
+ labels: string[];
18
12
  margin?: {
19
13
  top?: number;
20
14
  right?: number;
@@ -25,9 +19,7 @@ interface LineChartProps {
25
19
  markStyles?: (markIndex: number) => CSSProperties;
26
20
  showArea?: boolean;
27
21
  showAverage?: boolean;
28
- showAxis?: boolean;
29
22
  showBars?: boolean;
30
- showLegend?: boolean;
31
23
  showMarkLabel?: boolean;
32
24
  useCustomMark?: boolean;
33
25
  valueFormatterString?: string;
@@ -1,10 +1,5 @@
1
- import { LineChartLabel } from '../LineChart';
2
- export declare const CustomLegendLabel: ({ label }: {
3
- label: LineChartLabel;
4
- }) => import("react/jsx-runtime").JSX.Element | null;
5
- declare const _default: (({ average, labels, series, style, }: {
6
- average?: number;
7
- labels?: LineChartLabel[];
1
+ declare const _default: (({ series, average, style, }: {
2
+ average: number;
8
3
  series: any[];
9
4
  style: any;
10
5
  }) => import("react/jsx-runtime").JSX.Element) & {
@@ -1,4 +1,3 @@
1
- import { Transaction } from './Transaction';
2
1
  export interface Category {
3
2
  guid: string;
4
3
  income: boolean;
@@ -55,14 +54,6 @@ export interface DetailedCategory extends Category {
55
54
  totalAverageAmount: number;
56
55
  totalMonthlyAmounts: MonthlyAmount[];
57
56
  }
58
- export interface CategoryListItem {
59
- guid: string;
60
- name: string;
61
- amount: number;
62
- isIncome?: boolean;
63
- transactions?: Transaction[];
64
- transactionCount?: number;
65
- }
66
57
  export interface CategoryTotal {
67
58
  amount: number;
68
59
  category: Category;
@@ -6,7 +6,7 @@ export type { Beat, DataSeries } from './Beat';
6
6
  export { UserVerification } from './Beat';
7
7
  export type { Budget, BudgetColors, DetailedBudget } from './Budget';
8
8
  export type { CashflowEvent, CashflowSequence, RepeatDay, RepeatInterval, RepeatMonth, RepeatWeekday, } from './Cashflow';
9
- export type { Category, CategoryListItem, CategoryTotal, DateRangeCategoryTotals, DetailedCategory, MonthlyAmount, MonthlyCategoryTotals, } from './Category';
9
+ export type { Category, CategoryTotal, DateRangeCategoryTotals, DetailedCategory, MonthlyAmount, MonthlyCategoryTotals, } from './Category';
10
10
  export type { Client, ClientColorScheme, ClientCommunicationProfile, ClientInsightProfile, ClientProfile, ClientStyleProfile, } from './Client';
11
11
  export type { DateType, DateRange } from './Date';
12
12
  export type { Expense } from './Expense';
@@ -1,5 +1,8 @@
1
1
  export interface FinstrongCopy {
2
- connect_more_accounts_title: string;
3
- connect_more_accounts_description: string;
4
2
  connect_more_accounts_button: string;
3
+ connect_more_accounts_description: string;
4
+ connect_more_accounts_title: string;
5
+ connect_more_accounts_to_view_more_accurate_financial_picture: string;
6
+ dont_see_all_your_accounts: string;
7
+ key_indicators: string;
5
8
  }
@@ -1,7 +1,7 @@
1
1
  interface ConnectMoreAccountsCardProps {
2
2
  isDashboard?: boolean;
3
- title: string;
4
- description: string;
3
+ title?: string;
4
+ description?: string;
5
5
  }
6
6
  export declare const ConnectMoreAccountsCard: ({ isDashboard, title, description, }: ConnectMoreAccountsCardProps) => import("react/jsx-runtime").JSX.Element;
7
7
  export {};
@@ -0,0 +1,12 @@
1
+ import { default as React } from 'react';
2
+ interface KeyIndicatorsDrawerProps {
3
+ additionalContent?: React.ReactNode;
4
+ children?: React.ReactNode;
5
+ description?: string;
6
+ isOpen: boolean;
7
+ onClose: () => void;
8
+ stickyComponent?: React.ReactNode;
9
+ title?: string;
10
+ }
11
+ declare const _default: React.FunctionComponent<React.PropsWithChildren<KeyIndicatorsDrawerProps>>;
12
+ export default _default;