@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 +4 -0
- package/dist/accounts/ConnectMiniWidget.d.ts +6 -2
- package/dist/accounts/components/ConnectMiniWidgetCard.d.ts +5 -0
- package/dist/common/components/charts/LineChart.d.ts +0 -1
- package/dist/common/components/index.d.ts +1 -0
- package/dist/common/context/hooks.d.ts +0 -1
- package/dist/common/context/index.d.ts +1 -1
- package/dist/common/stores/GlobalStore.d.ts +0 -2
- package/dist/index.d.ts +0 -1
- package/dist/index.es.js +2493 -2570
- package/dist/index.es.js.map +1 -1
- package/package.json +2 -2
- package/dist/networth/NetWorthWidget.d.ts +0 -5
- package/dist/networth/api/NetWorthApi.d.ts +0 -9
- package/dist/networth/components/NetWorthChart.d.ts +0 -7
- package/dist/networth/components/NetWorthList.d.ts +0 -7
- package/dist/networth/components/NetWorthRow.d.ts +0 -6
- package/dist/networth/index.d.ts +0 -3
- package/dist/networth/stores/NetWorthStore.d.ts +0 -15
- package/dist/networth/types/NetWorth.d.ts +0 -37
- package/dist/networth/utils/NetWorth.d.ts +0 -3
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,9 @@
|
|
1
1
|
import { default as React } from 'react';
|
2
|
-
import {
|
2
|
+
import { SxProps } from '@mui/material/styles';
|
3
3
|
|
4
|
-
|
4
|
+
interface LinkAccountsProps {
|
5
|
+
onPrimaryCtaClick?: () => void;
|
6
|
+
sx?: SxProps;
|
7
|
+
}
|
8
|
+
declare const _default: React.FunctionComponent<LinkAccountsProps>;
|
5
9
|
export default _default;
|
@@ -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,
|
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