@mx-cartographer/experiences 6.0.17-alpha.san1 → 6.1.0-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 +1 -21
- package/dist/analytics/components/SurveyMiniWidget.d.ts +4 -0
- package/dist/analytics/components/SurveyModal.d.ts +11 -0
- package/dist/common/constants/Analytics.d.ts +0 -1
- package/dist/common/constants/ApiEndpoints.d.ts +0 -1
- package/dist/common/context/hooks.d.ts +0 -1
- package/dist/common/context/index.d.ts +1 -1
- package/dist/common/stores/GlobalStore.d.ts +0 -2
- package/dist/common/types/Analytics.d.ts +16 -0
- package/dist/common/types/GlobalCopy.d.ts +1 -2
- package/dist/common/types/index.d.ts +0 -1
- package/dist/common/types/localization/index.d.ts +0 -1
- package/dist/dashboard/Dashboard.d.ts +2 -0
- package/dist/index.d.ts +0 -1
- package/dist/index.es.js +3108 -3174
- package/dist/index.es.js.map +1 -1
- package/dist/insights/store/BeatStore.d.ts +1 -1
- package/dist/microinsights/components/beatCard/BeatCard.d.ts +2 -2
- package/dist/microinsights/components/beaticons/BeatCategoryIcon.d.ts +2 -2
- package/dist/microinsights/components/beaticons/BeatMerchantLogo.d.ts +2 -2
- package/dist/microinsights/components/beaticons/MonthlySpendComparisonIcon.d.ts +2 -2
- package/dist/microinsights/constants/Insights.d.ts +3 -0
- package/dist/microinsights/constants/OnClickEvents.d.ts +3 -0
- package/dist/microinsights/interfaces.d.ts +0 -39
- package/dist/microinsights/types/BeatUIComponent.d.ts +38 -0
- package/dist/microinsights/utils/beatUtils.d.ts +1 -2
- package/package.json +1 -1
- package/dist/common/types/Holding.d.ts +0 -39
- package/dist/common/types/localization/InvestmentsCopy.d.ts +0 -6
- package/dist/investments/InvestmentsWidget.d.ts +0 -4
- package/dist/investments/api/HoldingApi.d.ts +0 -6
- package/dist/investments/components/Allocation.d.ts +0 -2
- package/dist/investments/components/Analysis.d.ts +0 -2
- package/dist/investments/components/Overview.d.ts +0 -2
- package/dist/investments/components/TabTitle.d.ts +0 -5
- package/dist/investments/index.d.ts +0 -1
- package/dist/investments/stores/HoldingStore.d.ts +0 -10
package/CHANGELOG.md
CHANGED
@@ -1,24 +1,4 @@
|
|
1
|
-
## [6.0.
|
2
|
-
|
3
|
-
- **ADDED** - Initial Investments layout
|
4
|
-
|
5
|
-
## [6.0.15] - 05-08-2025
|
6
|
-
|
7
|
-
- **UPDATED** - `Dashboard` to use updated MXUI breakpoints
|
8
|
-
|
9
|
-
## [6.0.14] - 05-08-2025
|
10
|
-
|
11
|
-
- **UPDATED** - `useScreenSize` hook to use updated MXUI breakpoints
|
12
|
-
|
13
|
-
## [6.0.13] - 05-07-2025
|
14
|
-
|
15
|
-
- **UPDATED** - InsightsMicroWidget Messaging Insights posthog events
|
16
|
-
|
17
|
-
## [6.0.12] - 05-07-2025
|
18
|
-
|
19
|
-
- **UPDATED** - CSS Bug fixes for Goals and Networth empty state scenario
|
20
|
-
|
21
|
-
## [6.0.11] - 05-06-2025
|
1
|
+
## [6.0.11] - 05-65-2025
|
22
2
|
|
23
3
|
- **UPDATED** - Remove barrel imports from InsightsMicroWidget files
|
24
4
|
|
@@ -0,0 +1,11 @@
|
|
1
|
+
import { default as React } from 'react';
|
2
|
+
import { SurveyQuestion } from '../../common/types/Analytics';
|
3
|
+
interface SurveyModalProps {
|
4
|
+
onContinue: () => void;
|
5
|
+
onDismiss: () => void;
|
6
|
+
onSelect: (value: number) => void;
|
7
|
+
onSubmit: () => void;
|
8
|
+
surveyQuestion: SurveyQuestion;
|
9
|
+
}
|
10
|
+
declare const _default: React.FunctionComponent<SurveyModalProps>;
|
11
|
+
export default _default;
|
@@ -34,7 +34,6 @@ export declare const ANALYTICS_EVENTS: {
|
|
34
34
|
GOALS_CLICK_ADD: string;
|
35
35
|
GOALS_CLICK_FILTER: string;
|
36
36
|
GOALS_VIEW: string;
|
37
|
-
INVESTMENTS: string;
|
38
37
|
NET_WORTH_VIEW: string;
|
39
38
|
NET_WORTH_WIDGET_CLICK_ASSETS_LIABILITIES: string;
|
40
39
|
NET_WORTH_WIDGET_CLICK_FILTER: string;
|
@@ -11,7 +11,6 @@ export declare const useGlobalUiStore: () => import('../stores/GlobalUiStore').G
|
|
11
11
|
export declare const useGlobalCopyStore: () => import('..').GlobalCopy;
|
12
12
|
export declare const useGoalStore: () => import('../..').GoalStore;
|
13
13
|
export declare const useHelpStore: () => import('../../help/store/HelpStore').HelpStore;
|
14
|
-
export declare const useHoldingStore: () => import('../../investments/stores/HoldingStore').HoldingStore;
|
15
14
|
export declare const useMerchantStore: () => import('../..').MerchantStore;
|
16
15
|
export declare const useNetWorthStore: () => import('../..').NetWorthStore;
|
17
16
|
export declare const useNotificationStore: () => import('../..').NotificationStore;
|
@@ -1,3 +1,3 @@
|
|
1
|
-
export { useAccountStore, useAppConfig, useBudgetsStore, useCashflowStore, useCategoryStore, useDebtStore, useEvent, useGlobalStore, useGlobalUiStore, useGlobalCopyStore, useGoalStore, useHelpStore,
|
1
|
+
export { useAccountStore, useAppConfig, useBudgetsStore, useCashflowStore, useCategoryStore, useDebtStore, useEvent, useGlobalStore, useGlobalUiStore, useGlobalCopyStore, useGoalStore, useHelpStore, useMerchantStore, useNetWorthStore, useNotificationStore, usePageView, useRecurringActivityStore, useSettingsStore, useTransactionStore, useUserStore, useWidgetContainerProvider, } from './hooks';
|
2
2
|
export { GlobalDataContext, GlobalDataProvider } from './GlobalDataProvider';
|
3
3
|
export { WidgetContainerContext, WidgetContainerProvider } from './WidgetContainerProvider';
|
@@ -6,7 +6,6 @@ import { CategoryStore } from '../../categories';
|
|
6
6
|
import { DebtsStore } from '../../debts';
|
7
7
|
import { GoalStore } from '../../goals';
|
8
8
|
import { HelpStore } from '../../help/store/HelpStore';
|
9
|
-
import { HoldingStore } from '../../investments/stores/HoldingStore';
|
10
9
|
import { MerchantStore } from '../../merchants';
|
11
10
|
import { NetWorthStore } from '../../networth';
|
12
11
|
import { NotificationStore } from '../../notifications';
|
@@ -34,7 +33,6 @@ export declare class GlobalStore {
|
|
34
33
|
debtsStore: DebtsStore;
|
35
34
|
goalStore: GoalStore;
|
36
35
|
helpStore: HelpStore;
|
37
|
-
holdingStore: HoldingStore;
|
38
36
|
merchantStore: MerchantStore;
|
39
37
|
netWorthStore: NetWorthStore;
|
40
38
|
notificationStore: NotificationStore;
|
@@ -48,3 +48,19 @@ export interface AnalyticsPageviewObjectType extends BasicAnalyticsPageview {
|
|
48
48
|
path: string;
|
49
49
|
value: string;
|
50
50
|
}
|
51
|
+
export interface SurveyQuestion {
|
52
|
+
id: string;
|
53
|
+
type: string;
|
54
|
+
scale?: number;
|
55
|
+
display?: string;
|
56
|
+
optional?: boolean;
|
57
|
+
question: string;
|
58
|
+
buttonText: string;
|
59
|
+
description: string;
|
60
|
+
lowerBoundLabel?: string;
|
61
|
+
upperBoundLabel?: string;
|
62
|
+
descriptionContentType?: string;
|
63
|
+
}
|
64
|
+
export interface SurveyWidgetProps {
|
65
|
+
surveyQuestions: SurveyQuestion[];
|
66
|
+
}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { AccountsCopy, BudgetsCopy, CashflowCopy, CategoryCopy, CommonCopy, ConnectCopy, DebtsCopy, GoalsCopy, HelpCopy, InsightsFeedCopy,
|
1
|
+
import { AccountsCopy, BudgetsCopy, CashflowCopy, CategoryCopy, CommonCopy, ConnectCopy, DebtsCopy, GoalsCopy, HelpCopy, InsightsFeedCopy, MicroInsightsCopy, NetWorthCopy, NotificationsCopy, RecurringCopy, SettingsCopy, SpendingCopy, TransactionsCopy, TrendsCopy } from './localization';
|
2
2
|
export interface GlobalCopy {
|
3
3
|
accounts: AccountsCopy;
|
4
4
|
budgets: BudgetsCopy;
|
@@ -10,7 +10,6 @@ export interface GlobalCopy {
|
|
10
10
|
goals: GoalsCopy;
|
11
11
|
help: HelpCopy;
|
12
12
|
insights_feed: InsightsFeedCopy;
|
13
|
-
investments: InvestmentsCopy;
|
14
13
|
micro_insights: MicroInsightsCopy;
|
15
14
|
net_worth: NetWorthCopy;
|
16
15
|
notifications: NotificationsCopy;
|
@@ -29,4 +29,3 @@ export { TransactionStatus, TransactionType } from './Transaction';
|
|
29
29
|
export type { Device, User, UserCommunicationProfile, UserFeature, UserProfile } from './User';
|
30
30
|
export { ScreenSize } from './ScreenSize';
|
31
31
|
export type { MiniWidgetProps, WidgetProps } from './Widgets';
|
32
|
-
export type { Holding } from './Holding';
|
@@ -12,7 +12,6 @@ export type { DebtsCopy } from './DebtsCopy';
|
|
12
12
|
export type { GoalsCopy } from './GoalsCopy';
|
13
13
|
export type { HelpCopy } from './HelpCopy';
|
14
14
|
export type { InsightsFeedCopy } from './InsightsFeedCopy';
|
15
|
-
export type { InvestmentsCopy } from './InvestmentsCopy';
|
16
15
|
export type { MicroInsightsCopy } from './MicroInsightsCopy';
|
17
16
|
export type { NetWorthCopy } from './NetWorthCopy';
|
18
17
|
export type { NotificationsCopy } from './NotificationsCopy';
|
@@ -1,8 +1,10 @@
|
|
1
1
|
import { default as React } from 'react';
|
2
2
|
import { DashboardWidget } from './types/DashboardTypes';
|
3
|
+
import { SurveyQuestion } from '../common/types/Analytics';
|
3
4
|
export interface DashboardProps {
|
4
5
|
widgets: DashboardWidget[];
|
5
6
|
isLoading: boolean;
|
7
|
+
surveyQuestions?: SurveyQuestion[];
|
6
8
|
}
|
7
9
|
declare const _default: React.FunctionComponent<DashboardProps>;
|
8
10
|
export default _default;
|
package/dist/index.d.ts
CHANGED