@mx-cartographer/experiences 3.7.1 → 3.8.0-alpha.al1

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,8 +1,3 @@
1
- ## [3.7.1] - 10-15-2024
2
-
3
- - **FIXED** - Mitigate `StackedLineChart` line area crossing and overlap
4
- - **FIXED** - Improve `StackedLineChart` legend hover styles
5
-
6
1
  ## [3.7.0] - 10-15-2024
7
2
 
8
3
  - **CHANGED** - Pull Accounts copy from GlobalCopyStore
@@ -1,6 +1,7 @@
1
1
  import { default as React } from 'react';
2
2
 
3
3
  interface LineChartProps {
4
+ baseline?: string;
4
5
  colors: (string | undefined)[];
5
6
  datasets: {
6
7
  x: string;
@@ -9,6 +9,7 @@ export declare const useGlobalUiStore: () => import('../stores/GlobalUiStore').G
9
9
  export declare const useGlobalCopyStore: () => import('..').GlobalCopy;
10
10
  export declare const useGoalStore: () => import('..').GlobalStore;
11
11
  export declare const useMerchantStore: () => import('../..').MerchantStore;
12
+ export declare const useNetWorthStore: () => import('../../networth/stores/NetWorthStore').NetWorthStore;
12
13
  export declare const useNotificationStore: () => import('../..').NotificationStore;
13
14
  export declare const useRecurringActivityStore: () => import('../..').RecurringActivityStore;
14
15
  export declare const useTransactionStore: () => import('../..').TransactionStore;
@@ -1,3 +1,3 @@
1
- export { useAccountStore, useBudgetsStore, useCashflowStore, useCategoryStore, useEvent, useGlobalStore, useGlobalUiStore, useGlobalCopyStore, useMerchantStore, useNotificationStore, usePageView, useRecurringActivityStore, useTransactionStore, useUserStore, useWidgetContainerProvider, } from './hooks';
1
+ export { useAccountStore, useBudgetsStore, useCashflowStore, useCategoryStore, useEvent, useGlobalStore, useGlobalUiStore, useGlobalCopyStore, useMerchantStore, useNetWorthStore, useNotificationStore, usePageView, useRecurringActivityStore, useTransactionStore, useUserStore, useWidgetContainerProvider, } from './hooks';
2
2
  export { GlobalDataContext, GlobalDataProvider } from './GlobalDataProvider';
3
3
  export { WidgetContainerContext, WidgetContainerProvider } from './WidgetContainerProvider';
@@ -11,6 +11,7 @@ import { RecurringActivityStore } from '../../recurringactivity';
11
11
  import { TransactionStore } from '../../transactions';
12
12
  import { UserStore } from './UserStore';
13
13
  import { GlobalCopyStore } from './GlobalCopyStore';
14
+ import { NetWorthStore } from '../../networth/stores/NetWorthStore';
14
15
 
15
16
  export declare class GlobalStore {
16
17
  accountStore: AccountStore;
@@ -21,6 +22,7 @@ export declare class GlobalStore {
21
22
  connectStore: ConnectStore;
22
23
  copyStore: GlobalCopyStore;
23
24
  merchantStore: MerchantStore;
25
+ netWorthStore: NetWorthStore;
24
26
  notificationStore: NotificationStore;
25
27
  recurringActivityStore: RecurringActivityStore;
26
28
  transactionStore: TransactionStore;
package/dist/index.d.ts CHANGED
@@ -8,6 +8,7 @@ export * from './goals';
8
8
  export * from './insights';
9
9
  export * from './merchants';
10
10
  export * from './microinsights';
11
+ export * from './networth';
11
12
  export * from './notifications';
12
13
  export * from './recurringactivity';
13
14
  export * from './spending';