@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.
- package/CHANGELOG.md +12 -0
- package/dist/accounts/AccountsMiniWidget.d.ts +1 -1
- package/dist/accounts/components/AccountListItem.d.ts +1 -1
- package/dist/common/context/GlobalDataProvider.d.ts +1 -1
- package/dist/common/hooks/useCombineEvents.d.ts +1 -1
- package/dist/common/stores/GlobalStore.d.ts +11 -11
- package/dist/index.es.js +19936 -18126
- package/dist/index.es.js.map +1 -1
- package/dist/microinsights/analytics.d.ts +1 -1
- package/dist/microinsights/components/beatCard/BeatCard.d.ts +2 -2
- package/dist/microinsights/components/beaticons/BeatIcon.d.ts +2 -2
- package/dist/microinsights/components/beaticons/MonthlySpendComparisonIcon.d.ts +1 -1
- package/dist/microinsights/components/carouselheader/CarouselHeader.d.ts +2 -2
- package/dist/microinsights/components/insightsmicrowidget/InsightsMicroWidget.d.ts +2 -2
- package/dist/microinsights/components/microBeatCarousel/CarouselControls.d.ts +1 -1
- package/dist/microinsights/components/microBeatCarousel/MicroBeatCarousel.d.ts +2 -2
- package/dist/microinsights/components/microInsightCard/MicroInsightCard.d.ts +1 -1
- package/dist/microinsights/components/noRelevantInsightsCard/NoRelevantInsightsCard.d.ts +1 -1
- package/dist/microinsights/components/viewMoreMicroCard/ViewMoreMicroCard.d.ts +1 -1
- package/dist/microinsights/components/zeroStateCard/ZeroStateCard.d.ts +1 -1
- package/dist/microinsights/constants/Analytics.d.ts +1 -1
- package/dist/microinsights/interfaces.d.ts +1 -1
- package/dist/microinsights/stores/CopyStore.d.ts +1 -2
- package/dist/microinsights/stores/InsightsMicroWidgetStore.d.ts +1 -1
- package/dist/microinsights/types/BeatUIComponent.d.ts +1 -1
- package/dist/microinsights/utils/DataSeries.d.ts +1 -1
- package/package.json +3 -18
- package/dist/Dialog-DXlin6Ig.mjs +0 -70
- package/dist/Dialog-DXlin6Ig.mjs.map +0 -1
- package/dist/Dialog.d.ts +0 -1
- package/dist/Dialog.es.js +0 -5
- package/dist/Dialog.es.js.map +0 -1
- package/dist/Drawer-D4y0MIo3.mjs +0 -113
- package/dist/Drawer-D4y0MIo3.mjs.map +0 -1
- package/dist/Drawer.d.ts +0 -1
- package/dist/Drawer.es.js +0 -5
- package/dist/Drawer.es.js.map +0 -1
- package/dist/InsightsMicroWidget-C1X8hjQ_.mjs +0 -1659
- package/dist/InsightsMicroWidget-C1X8hjQ_.mjs.map +0 -1
- package/dist/InsightsMicroWidget.d.ts +0 -1
- package/dist/InsightsMicroWidget.es.js +0 -5
- 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,6 +1,6 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
2
|
import { ListItemOwnProps } from '@mui/material/ListItem';
|
|
3
|
-
import { Account } from '../../common
|
|
3
|
+
import { Account } from '../../common';
|
|
4
4
|
interface AccountListItemProps {
|
|
5
5
|
account: Account;
|
|
6
6
|
onRowClick?: () => void;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { AnalyticEventFunction, AnalyticPageviewFunction } from '../types
|
|
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
|
|
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
|
|
6
|
-
import { CategoryStore } from '../../categories
|
|
5
|
+
import { CashflowStore } from '../../cashflow';
|
|
6
|
+
import { CategoryStore } from '../../categories';
|
|
7
7
|
import { ConnectStore } from './ConnectStore';
|
|
8
|
-
import { DebtsStore } from '../../debts
|
|
8
|
+
import { DebtsStore } from '../../debts';
|
|
9
9
|
import { GlobalCopyStore } from './GlobalCopyStore';
|
|
10
10
|
import { GlobalUiStore } from './GlobalUiStore';
|
|
11
|
-
import { GoalStore } from '../../goals
|
|
11
|
+
import { GoalStore } from '../../goals';
|
|
12
12
|
import { HelpStore } from '../../help/store/HelpStore';
|
|
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
|
|
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;
|