@mx-cartographer/experiences 3.8.0 → 3.9.0-alpha.al1
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/common/components/charts/LineChart.d.ts +1 -0
- package/dist/common/context/hooks.d.ts +1 -0
- package/dist/common/context/index.d.ts +1 -1
- package/dist/common/stores/GlobalStore.d.ts +2 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.es.js +2629 -2535
- package/dist/index.es.js.map +1 -1
- package/dist/networth/NetWorthWidget.d.ts +5 -0
- package/dist/networth/api/NetWorthApi.d.ts +9 -0
- package/dist/networth/components/NetWorthChart.d.ts +7 -0
- package/dist/networth/components/NetWorthList.d.ts +7 -0
- package/dist/networth/components/NetWorthRow.d.ts +6 -0
- package/dist/networth/index.d.ts +3 -0
- package/dist/networth/stores/NetWorthStore.d.ts +15 -0
- package/dist/networth/types/NetWorth.d.ts +37 -0
- package/dist/networth/utils/NetWorth.d.ts +3 -0
- package/package.json +1 -1
@@ -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