@mx-cartographer/experiences 6.4.3-alpha.mega2 → 6.5.0-alpha.bb1

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.
Files changed (46) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/dist/cashflow/components/DetailsExpenseRow.d.ts +2 -2
  3. package/dist/cashflow/components/DetailsFooter.d.ts +1 -1
  4. package/dist/cashflow/components/RemainingCash.d.ts +3 -1
  5. package/dist/cashflow/stores/UiStore.d.ts +6 -6
  6. package/dist/cashflow/util/Filters.d.ts +4 -4
  7. package/dist/common/context/hooks.d.ts +0 -1
  8. package/dist/common/context/index.d.ts +1 -1
  9. package/dist/common/stores/GlobalStore.d.ts +1 -3
  10. package/dist/common/types/index.d.ts +0 -1
  11. package/dist/common/utils/Theme.d.ts +3 -3
  12. package/dist/index.d.ts +0 -1
  13. package/dist/index.es.js +9699 -11286
  14. package/dist/index.es.js.map +1 -1
  15. package/dist/recurringtransactions/index.d.ts +5 -0
  16. package/dist/recurringtransactions/stores/RecurringTransactionsStore.d.ts +13 -0
  17. package/package.json +1 -1
  18. package/dist/common/types/Activity.d.ts +0 -28
  19. package/dist/recurringactivity/RecurringActivityMiniWidget.d.ts +0 -4
  20. package/dist/recurringactivity/RecurringActivityWidget.d.ts +0 -4
  21. package/dist/recurringactivity/components/ActivityBadges.d.ts +0 -16
  22. package/dist/recurringactivity/components/ActivityDetails.d.ts +0 -8
  23. package/dist/recurringactivity/components/ActivityList.d.ts +0 -13
  24. package/dist/recurringactivity/components/ActivityRow.d.ts +0 -10
  25. package/dist/recurringactivity/components/ActivityStatus.d.ts +0 -11
  26. package/dist/recurringactivity/components/MiniWidgetContent.d.ts +0 -4
  27. package/dist/recurringactivity/components/RecurringActivity.d.ts +0 -4
  28. package/dist/recurringactivity/components/actions/FrequencyAction.d.ts +0 -7
  29. package/dist/recurringactivity/components/actions/PaymentDateAction.d.ts +0 -7
  30. package/dist/recurringactivity/components/activitycalendar/ActivityCalendar.d.ts +0 -4
  31. package/dist/recurringactivity/components/activitycalendar/ActivityDay.d.ts +0 -4
  32. package/dist/recurringactivity/components/activitycalendar/Legend.d.ts +0 -4
  33. package/dist/recurringactivity/components/shared/ActivitySettings.d.ts +0 -4
  34. package/dist/recurringactivity/components/shared/activitysettings/AddActivity.d.ts +0 -8
  35. package/dist/recurringactivity/components/shared/activitysettings/AddActivityDetails.d.ts +0 -13
  36. package/dist/recurringactivity/components/shared/activitysettings/ManageExpenses.d.ts +0 -4
  37. package/dist/recurringactivity/components/shared/activitysettings/ManageIncome.d.ts +0 -4
  38. package/dist/recurringactivity/components/shared/activitysettings/SelectTransaction.d.ts +0 -9
  39. package/dist/recurringactivity/index.d.ts +0 -5
  40. package/dist/recurringactivity/stores/RecurringActivityStore.d.ts +0 -39
  41. package/dist/recurringactivity/util/RecurringActivityUtils.d.ts +0 -5
  42. package/dist/recurringactivity/util/buildActivities.d.ts +0 -3
  43. package/dist/recurringactivity/util/buildNewActivity.d.ts +0 -4
  44. package/dist/recurringactivity/util/getRecurrence.d.ts +0 -8
  45. package/dist/recurringactivity/util/getStatus.d.ts +0 -2
  46. package/dist/recurringactivity/util/updateActivity.d.ts +0 -3
package/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## [6.5.0] - 06-15-2025
2
+
3
+ - **REMOVED** - `RecuringActivityWidget` and `RecuringActivityMiniWidget`
4
+
1
5
  ## [6.4.2] - 06-13-2025
2
6
 
3
7
  - **UPDATED** - CSS Bug fixing - Budgets Empty State
@@ -1,11 +1,11 @@
1
1
  import { default as React } from 'react';
2
- import { Activity } from '../../common';
2
+ import { Recurrence } from '../../common';
3
3
  export declare enum ExpenseType {
4
4
  EXPENSE = "expense",
5
5
  INCOME = "income"
6
6
  }
7
7
  interface DetailsExpenseRowType {
8
- activity: Activity;
8
+ recurrence: Recurrence;
9
9
  }
10
10
  declare const _default: React.FunctionComponent<DetailsExpenseRowType>;
11
11
  export default _default;
@@ -1,5 +1,5 @@
1
1
  interface DetailsFooterProps {
2
2
  remaining: number;
3
3
  }
4
- declare const DetailsFooter: React.FC<DetailsFooterProps>;
4
+ declare const DetailsFooter: ({ remaining }: DetailsFooterProps) => import("react/jsx-runtime").JSX.Element;
5
5
  export default DetailsFooter;
@@ -1,5 +1,7 @@
1
1
  interface RemainingCashProps {
2
2
  remaining: number;
3
3
  }
4
- declare const _default: import('react').FunctionComponent<RemainingCashProps>;
4
+ declare const _default: (({ remaining }: RemainingCashProps) => import("react/jsx-runtime").JSX.Element) & {
5
+ displayName: string;
6
+ };
5
7
  export default _default;
@@ -1,17 +1,17 @@
1
- import { Account, Activity } from '../../common';
1
+ import { Account, Recurrence } from '../../common';
2
2
  export declare class UiStore {
3
3
  dateRange: {
4
4
  start: Date;
5
5
  end: Date;
6
6
  };
7
7
  isDirty: boolean;
8
- nextIncome: Activity | undefined;
9
- upcomingExpenses: Activity[];
8
+ nextIncome: Recurrence | undefined;
9
+ upcomingExpenses: Recurrence[];
10
10
  selectedCashAccounts: Account[];
11
11
  constructor();
12
12
  get daysUntilNextIncome(): number;
13
- get expensesTilNextIncome(): Activity[];
14
- setNextIncome: (nextIncome: Activity) => void;
15
- setUpcomingExpenses: (expenses: Activity[]) => void;
13
+ get expensesTilNextIncome(): Recurrence[];
14
+ setNextIncome: (nextIncome: Recurrence) => void;
15
+ setUpcomingExpenses: (expenses: Recurrence[]) => void;
16
16
  setSelectedCashAccounts: (accounts: Account[]) => Account[];
17
17
  }
@@ -1,10 +1,10 @@
1
- import { Account, Activity } from '../../common';
1
+ import { Account, Recurrence } from '../../common';
2
2
  /**
3
- * Returns activities that match the given account and date range
3
+ * Returns recurrences that match the given account and date range
4
4
  * @param account The account
5
5
  * @param dateRange The date range
6
6
  */
7
- export declare const activityFilter: (account: Account, dateRange: {
7
+ export declare const recurrenceFilter: (account: Account, dateRange: {
8
8
  start: Date;
9
9
  end: Date;
10
- }) => (a: Activity) => boolean;
10
+ }) => (r: Recurrence) => boolean;
@@ -16,7 +16,6 @@ export declare const useHoldingStore: () => import('../../investments/stores/Hol
16
16
  export declare const useMerchantStore: () => import('../..').MerchantStore;
17
17
  export declare const useNetWorthStore: () => import('../..').NetWorthStore;
18
18
  export declare const useNotificationStore: () => import('../..').NotificationStore;
19
- export declare const useRecurringActivityStore: () => import('../..').RecurringActivityStore;
20
19
  export declare const useRecurringTransactionsStore: () => import('../..').RecurringTransactionsStore;
21
20
  export declare const useSettingsStore: () => import('../..').SettingsStore;
22
21
  export declare const useTransactionStore: () => import('../..').TransactionStore;
@@ -1,3 +1,3 @@
1
- export { useAccountStore, useAppConfig, useBudgetsStore, useCashflowStore, useCategoryStore, useDebtStore, useEvent, useGlobalStore, useGlobalUiStore, useGlobalCopyStore, useGoalStore, useHelpStore, useHoldingStore, useMerchantStore, useNetWorthStore, useNotificationStore, usePageView, useRecurringActivityStore, 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, useUserStore, useWidgetContainerProvider, } from './hooks';
2
2
  export { GlobalDataContext, GlobalDataProvider } from './GlobalDataProvider';
3
3
  export { WidgetContainerContext, WidgetContainerProvider } from './WidgetContainerProvider';
@@ -11,10 +11,9 @@ import { HoldingStore } from '../../investments/stores/HoldingStore';
11
11
  import { MerchantStore } from '../../merchants';
12
12
  import { NetWorthStore } from '../../networth';
13
13
  import { NotificationStore } from '../../notifications';
14
- import { RecurringActivityStore } from '../../recurringactivity';
15
14
  import { SettingsStore } from '../../settings';
16
15
  import { TransactionStore } from '../../transactions';
17
- import { RecurringTransactionsStore } from '../../recurringtransactions/stores/RecurringTransactionsStore';
16
+ import { RecurringTransactionsStore } from '../../recurringtransactions';
18
17
  import { AppDataStore } from './AppDataStore';
19
18
  import { ConnectStore } from './ConnectStore';
20
19
  import { GlobalCopyStore } from './GlobalCopyStore';
@@ -42,7 +41,6 @@ export declare class GlobalStore {
42
41
  netWorthStore: NetWorthStore;
43
42
  notificationStore: NotificationStore;
44
43
  recurringTransactionsStore: RecurringTransactionsStore;
45
- recurringActivityStore: RecurringActivityStore;
46
44
  settingsStore: SettingsStore;
47
45
  transactionStore: TransactionStore;
48
46
  userStore: UserStore;
@@ -1,6 +1,5 @@
1
1
  export type { Account, DetailedAccount, Member, MonthlyAccountBalance } from './Account';
2
2
  export { AccountIcon, AccountIconVariants, AccountSubType, AccountType, AccountTypeName, ConnectionStatus, ConnectionStatusEnums, ErrorStatuses, MfaStatuses, NonConnectedStatuses, ProcessingStatuses, PropertyType, PropertyTypeName, StatusName, } from './Account';
3
- export { type Activity, ActivityStatus, ActivityType } from './Activity';
4
3
  export type { AnalyticsEvent, AnalyticsPageview, BasicAnalyticsEvent, BasicAnalyticsPageview, AnalyticsSession, AnalyticEventFunction, AnalyticPageviewFunction, } from './Analytics';
5
4
  export type { AppConfig, AppData, Banner, Config, Options } from './AppData';
6
5
  export type { Beat, DataSeries } from './Beat';
@@ -112,21 +112,21 @@ export declare const getClientTheme: (theme: Theme, clientStyleProfile: ClientSt
112
112
  MuiCard?: {
113
113
  styleOverrides: {
114
114
  root: {
115
- borderRadius: number;
115
+ borderRadius: string;
116
116
  };
117
117
  };
118
118
  } | undefined;
119
119
  MuiPaper?: {
120
120
  styleOverrides: {
121
121
  root: {
122
- borderRadius: number;
122
+ borderRadius: string;
123
123
  };
124
124
  };
125
125
  } | undefined;
126
126
  MuiButton?: {
127
127
  styleOverrides: {
128
128
  root: {
129
- borderRadius: number;
129
+ borderRadius: string;
130
130
  };
131
131
  };
132
132
  } | undefined;
package/dist/index.d.ts CHANGED
@@ -13,7 +13,6 @@ export * from './merchants';
13
13
  export * from './microinsights';
14
14
  export * from './networth';
15
15
  export * from './notifications';
16
- export * from './recurringactivity';
17
16
  export * from './recurringtransactions';
18
17
  export * from './spending';
19
18
  export * from './settings';