@mx-cartographer/experiences 6.18.2 → 6.18.4

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,3 +1,11 @@
1
+ ## [6.18.4] - 07-22-2025
2
+
3
+ - **ADDED** - Trends Store & detailedCategories to new trends widget
4
+
5
+ ## [6.18.3] - 07-22-2025
6
+
7
+ - **UPDATED** - Support multiple card view in `InsightsMicroWidget`
8
+
1
9
  ## [6.18.2] - 07-22-2025
2
10
 
3
11
  - **ADDED** - Email and mobile phone fields to Notifications
@@ -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);