@mx-cartographer/experiences 6.18.3 → 6.18.5-alpha.al0
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 +4 -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.es.js +10642 -10625
- package/dist/index.es.js.map +1 -1
- package/dist/trends/index.d.ts +1 -0
- package/dist/trends/stores/TrendsStore.d.ts +16 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -19,6 +19,7 @@ export declare const useNotificationStore: () => import('../..').NotificationSto
|
|
|
19
19
|
export declare const useRecurringTransactionsStore: () => import('../..').RecurringTransactionsStore;
|
|
20
20
|
export declare const useSettingsStore: () => import('../..').SettingsStore;
|
|
21
21
|
export declare const useTransactionStore: () => import('../..').TransactionStore;
|
|
22
|
+
export declare const useTrendsStore: () => import('../..').TrendsStore;
|
|
22
23
|
export declare const useUserStore: () => import('..').UserStore;
|
|
23
24
|
export declare const useEvent: () => {
|
|
24
25
|
onEvent: (event: string, props?: object) => void;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { useAccountStore, useAppConfig, useBudgetsStore, useCashflowStore, useCategoryStore, useDebtStore, useEvent, useGlobalStore, useGlobalUiStore, useGlobalCopyStore, useGoalStore, useHelpStore, useHoldingStore, useMerchantStore, useNetWorthStore, useNotificationStore, usePageView, useRecurringTransactionsStore, useSettingsStore, useTransactionStore, useUserStore, useWidgetContainerProvider, } from './hooks';
|
|
1
|
+
export { useAccountStore, useAppConfig, useBudgetsStore, useCashflowStore, useCategoryStore, useDebtStore, useEvent, useGlobalStore, useGlobalUiStore, useGlobalCopyStore, useGoalStore, useHelpStore, useHoldingStore, useMerchantStore, useNetWorthStore, useNotificationStore, usePageView, useRecurringTransactionsStore, useSettingsStore, useTransactionStore, useTrendsStore, useUserStore, useWidgetContainerProvider, } from './hooks';
|
|
2
2
|
export { GlobalDataContext, GlobalDataProvider } from './GlobalDataProvider';
|
|
3
3
|
export { WidgetContainerContext, WidgetContainerProvider } from './WidgetContainerProvider';
|
|
@@ -14,6 +14,7 @@ import { NotificationStore } from '../../notifications';
|
|
|
14
14
|
import { SettingsStore } from '../../settings';
|
|
15
15
|
import { TransactionStore } from '../../transactions';
|
|
16
16
|
import { RecurringTransactionsStore } from '../../recurringtransactions';
|
|
17
|
+
import { TrendsStore } from '../../trends';
|
|
17
18
|
import { AppDataStore } from './AppDataStore';
|
|
18
19
|
import { ConnectStore } from './ConnectStore';
|
|
19
20
|
import { GlobalCopyStore } from './GlobalCopyStore';
|
|
@@ -43,6 +44,7 @@ export declare class GlobalStore {
|
|
|
43
44
|
recurringTransactionsStore: RecurringTransactionsStore;
|
|
44
45
|
settingsStore: SettingsStore;
|
|
45
46
|
transactionStore: TransactionStore;
|
|
47
|
+
trendsStore: TrendsStore;
|
|
46
48
|
userStore: UserStore;
|
|
47
49
|
globalUiStore: GlobalUiStore;
|
|
48
50
|
constructor(appConfig?: AppConfig, endpoint?: string);
|