@mx-cartographer/experiences 3.9.0-alpha.al1 → 3.9.0-alpha.j1

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## [3.9.0] - 10-18-2024
2
+
3
+ - **ADDED** - Use the common `ConnectDrawer` component instead of the LinkAccounts from Money Dashboard in ConnectMiniWidget
4
+
1
5
  ## [3.8.0] - 10-15-2024
2
6
 
3
7
  - **UPDATED** - `Fetch` requests throw errors to be caught and handled upstream
@@ -1,5 +1,9 @@
1
1
  import { default as React } from 'react';
2
- import { MiniWidgetProps } from '../common';
2
+ import { SxProps } from '@mui/material/styles';
3
3
 
4
- declare const _default: React.FunctionComponent<MiniWidgetProps>;
4
+ interface LinkAccountsProps {
5
+ onPrimaryCtaClick?: () => void;
6
+ sx?: SxProps;
7
+ }
8
+ declare const _default: React.FunctionComponent<LinkAccountsProps>;
5
9
  export default _default;
@@ -0,0 +1,5 @@
1
+ import { default as React } from 'react';
2
+ import { MiniWidgetProps } from '../../common';
3
+
4
+ declare const _default: React.FunctionComponent<MiniWidgetProps>;
5
+ export default _default;
@@ -1,7 +1,6 @@
1
1
  import { default as React } from 'react';
2
2
 
3
3
  interface LineChartProps {
4
- baseline?: string;
5
4
  colors: (string | undefined)[];
6
5
  datasets: {
7
6
  x: string;
@@ -9,6 +9,7 @@ export * from './drawer';
9
9
  export { default as MiniWidgetContainer } from './MiniWidgetContainer';
10
10
  export { default as WidgetContainer } from './WidgetContainer';
11
11
  export { default as CurrencyInput } from './CurrencyInput';
12
+ export { default as ConnectDrawer } from './ConnectDrawer';
12
13
  export { default as Loader } from './Loader';
13
14
  export { default as ResponsiveButton } from './ResponsiveButton';
14
15
  export { default as SearchBox } from './SearchBox';
@@ -9,7 +9,6 @@ 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;
13
12
  export declare const useNotificationStore: () => import('../..').NotificationStore;
14
13
  export declare const useRecurringActivityStore: () => import('../..').RecurringActivityStore;
15
14
  export declare const useTransactionStore: () => import('../..').TransactionStore;
@@ -1,3 +1,3 @@
1
- export { useAccountStore, useBudgetsStore, useCashflowStore, useCategoryStore, useEvent, useGlobalStore, useGlobalUiStore, useGlobalCopyStore, useMerchantStore, useNetWorthStore, useNotificationStore, usePageView, useRecurringActivityStore, useTransactionStore, useUserStore, useWidgetContainerProvider, } from './hooks';
1
+ export { useAccountStore, useBudgetsStore, useCashflowStore, useCategoryStore, useEvent, useGlobalStore, useGlobalUiStore, useGlobalCopyStore, useMerchantStore, useNotificationStore, usePageView, useRecurringActivityStore, useTransactionStore, useUserStore, useWidgetContainerProvider, } from './hooks';
2
2
  export { GlobalDataContext, GlobalDataProvider } from './GlobalDataProvider';
3
3
  export { WidgetContainerContext, WidgetContainerProvider } from './WidgetContainerProvider';
@@ -11,7 +11,6 @@ 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';
15
14
 
16
15
  export declare class GlobalStore {
17
16
  accountStore: AccountStore;
@@ -22,7 +21,6 @@ export declare class GlobalStore {
22
21
  connectStore: ConnectStore;
23
22
  copyStore: GlobalCopyStore;
24
23
  merchantStore: MerchantStore;
25
- netWorthStore: NetWorthStore;
26
24
  notificationStore: NotificationStore;
27
25
  recurringActivityStore: RecurringActivityStore;
28
26
  transactionStore: TransactionStore;
package/dist/index.d.ts CHANGED
@@ -8,7 +8,6 @@ export * from './goals';
8
8
  export * from './insights';
9
9
  export * from './merchants';
10
10
  export * from './microinsights';
11
- export * from './networth';
12
11
  export * from './notifications';
13
12
  export * from './recurringactivity';
14
13
  export * from './spending';