@mx-cartographer/experiences 5.0.18-alpha.JB2 → 5.0.21-alpha.mega1

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 (42) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/dist/accounts/AccountsMiniWidget.d.ts +1 -1
  3. package/dist/accounts/components/AccountListItem.d.ts +1 -1
  4. package/dist/common/context/GlobalDataProvider.d.ts +1 -1
  5. package/dist/common/hooks/useCombineEvents.d.ts +1 -1
  6. package/dist/common/stores/GlobalStore.d.ts +11 -11
  7. package/dist/index.es.js +19936 -18126
  8. package/dist/index.es.js.map +1 -1
  9. package/dist/microinsights/analytics.d.ts +1 -1
  10. package/dist/microinsights/components/beatCard/BeatCard.d.ts +2 -2
  11. package/dist/microinsights/components/beaticons/BeatIcon.d.ts +2 -2
  12. package/dist/microinsights/components/beaticons/MonthlySpendComparisonIcon.d.ts +1 -1
  13. package/dist/microinsights/components/carouselheader/CarouselHeader.d.ts +2 -2
  14. package/dist/microinsights/components/insightsmicrowidget/InsightsMicroWidget.d.ts +2 -2
  15. package/dist/microinsights/components/microBeatCarousel/CarouselControls.d.ts +1 -1
  16. package/dist/microinsights/components/microBeatCarousel/MicroBeatCarousel.d.ts +2 -2
  17. package/dist/microinsights/components/microInsightCard/MicroInsightCard.d.ts +1 -1
  18. package/dist/microinsights/components/noRelevantInsightsCard/NoRelevantInsightsCard.d.ts +1 -1
  19. package/dist/microinsights/components/viewMoreMicroCard/ViewMoreMicroCard.d.ts +1 -1
  20. package/dist/microinsights/components/zeroStateCard/ZeroStateCard.d.ts +1 -1
  21. package/dist/microinsights/constants/Analytics.d.ts +1 -1
  22. package/dist/microinsights/interfaces.d.ts +1 -1
  23. package/dist/microinsights/stores/CopyStore.d.ts +1 -2
  24. package/dist/microinsights/stores/InsightsMicroWidgetStore.d.ts +1 -1
  25. package/dist/microinsights/types/BeatUIComponent.d.ts +1 -1
  26. package/dist/microinsights/utils/DataSeries.d.ts +1 -1
  27. package/package.json +3 -18
  28. package/dist/Dialog-DXlin6Ig.mjs +0 -70
  29. package/dist/Dialog-DXlin6Ig.mjs.map +0 -1
  30. package/dist/Dialog.d.ts +0 -1
  31. package/dist/Dialog.es.js +0 -5
  32. package/dist/Dialog.es.js.map +0 -1
  33. package/dist/Drawer-D4y0MIo3.mjs +0 -113
  34. package/dist/Drawer-D4y0MIo3.mjs.map +0 -1
  35. package/dist/Drawer.d.ts +0 -1
  36. package/dist/Drawer.es.js +0 -5
  37. package/dist/Drawer.es.js.map +0 -1
  38. package/dist/InsightsMicroWidget-C1X8hjQ_.mjs +0 -1659
  39. package/dist/InsightsMicroWidget-C1X8hjQ_.mjs.map +0 -1
  40. package/dist/InsightsMicroWidget.d.ts +0 -1
  41. package/dist/InsightsMicroWidget.es.js +0 -5
  42. package/dist/InsightsMicroWidget.es.js.map +0 -1
package/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ ## [5.0.20] - 03-26-2025
2
+
3
+ - **FIXED** - Help Widget | Consistency fix for Accounts, Budgets, Cashflow, Debts pages
4
+
5
+ ## [5.0.19] - 03-26-2025
6
+
7
+ - **FIXED** - Help Widget | Consistency fix for Spending, Transactions, Trends
8
+
9
+ ## [5.0.18] - 03-26-2025
10
+
11
+ - **UPDATED** - Navigated Back/Done button correctly and updated Topic/Institute position.
12
+
1
13
  ## [5.0.17] - 03-25-2025
2
14
 
3
15
  - **ADDED** - Help by Category navigates to support based on external/internal cases.
@@ -1,4 +1,4 @@
1
1
  import { default as React } from 'react';
2
- import { MiniWidgetProps } from '../common/types/Widgets';
2
+ import { MiniWidgetProps } from '../common';
3
3
  declare const _default: React.FunctionComponent<MiniWidgetProps>;
4
4
  export default _default;
@@ -1,6 +1,6 @@
1
1
  import { default as React } from 'react';
2
2
  import { ListItemOwnProps } from '@mui/material/ListItem';
3
- import { Account } from '../../common/types/Account';
3
+ import { Account } from '../../common';
4
4
  interface AccountListItemProps {
5
5
  account: Account;
6
6
  onRowClick?: () => void;
@@ -1,5 +1,5 @@
1
1
  import { default as React } from 'react';
2
- import { GlobalStore } from '../../common/stores/GlobalStore';
2
+ import { GlobalStore } from '..';
3
3
  export interface GlobalStoreContextTypes {
4
4
  children: React.ReactNode;
5
5
  onEvent: (event: string, props?: object) => void;
@@ -1,3 +1,3 @@
1
- import { AnalyticEventFunction, AnalyticPageviewFunction } from '../types/Analytics';
1
+ import { AnalyticEventFunction, AnalyticPageviewFunction } from '../types';
2
2
  export declare const useCombineEvents: (events: AnalyticEventFunction[], store: any) => (event: string) => void;
3
3
  export declare const useCombinePageviews: (pages: AnalyticPageviewFunction[], store: any) => (event: string) => void;
@@ -1,21 +1,21 @@
1
- import { AccountStore } from '../../accounts/stores/AccountStore';
1
+ import { AccountStore } from '../../accounts';
2
2
  import { AppDataStore } from './AppDataStore';
3
3
  import { BeatStore } from '../../insights/store/BeatStore';
4
4
  import { BudgetsStore } from '../../budgets/store/BudgetsStore';
5
- import { CashflowStore } from '../../cashflow/stores/CashflowStore';
6
- import { CategoryStore } from '../../categories/stores/CategoryStore';
5
+ import { CashflowStore } from '../../cashflow';
6
+ import { CategoryStore } from '../../categories';
7
7
  import { ConnectStore } from './ConnectStore';
8
- import { DebtsStore } from '../../debts/store/DebtsStore';
8
+ import { DebtsStore } from '../../debts';
9
9
  import { GlobalCopyStore } from './GlobalCopyStore';
10
10
  import { GlobalUiStore } from './GlobalUiStore';
11
- import { GoalStore } from '../../goals/stores/GoalStore';
11
+ import { GoalStore } from '../../goals';
12
12
  import { HelpStore } from '../../help/store/HelpStore';
13
- import { MerchantStore } from '../../merchants/stores/MerchantStore';
14
- import { NetWorthStore } from '../../networth/stores/NetWorthStore';
15
- import { NotificationStore } from '../../notifications/stores/NotificationStore';
16
- import { RecurringActivityStore } from '../../recurringactivity/stores/RecurringActivityStore';
17
- import { SettingsStore } from '../../settings/stores/SettingsStore';
18
- import { TransactionStore } from '../../transactions/stores/TransactionStore';
13
+ import { MerchantStore } from '../../merchants';
14
+ import { NetWorthStore } from '../../networth';
15
+ import { NotificationStore } from '../../notifications';
16
+ import { RecurringActivityStore } from '../../recurringactivity';
17
+ import { SettingsStore } from '../../settings';
18
+ import { TransactionStore } from '../../transactions';
19
19
  import { UserStore } from './UserStore';
20
20
  export declare class GlobalStore {
21
21
  accountStore: AccountStore;