@mx-cartographer/experiences 6.6.5-alpha.sms1 → 6.7.0
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 +11 -2
- package/dist/common/components/MicroWidgetContainer.d.ts +10 -0
- package/dist/common/components/index.d.ts +2 -0
- package/dist/common/constants/Analytics.d.ts +1 -0
- package/dist/common/types/Help.d.ts +0 -9
- package/dist/common/types/index.d.ts +1 -0
- package/dist/common/types/localization/AccountsCopy.d.ts +0 -2
- package/dist/common/types/localization/index.d.ts +1 -1
- package/dist/help/HelpWidget.d.ts +4 -7
- package/dist/help/components/Help.d.ts +6 -0
- package/dist/help/{HelpContent.d.ts → components/HelpContent.d.ts} +1 -1
- package/dist/help/components/HelpList.d.ts +12 -0
- package/dist/help/components/content/section/index.d.ts +15 -15
- package/dist/{requestsupport → help/components/requestsupport}/ContactSupport.d.ts +1 -2
- package/dist/{requestsupport → help/components/requestsupport}/HelpByCategoryList.d.ts +1 -1
- package/dist/{requestsupport → help/components/requestsupport}/MissingInstitution.d.ts +1 -2
- package/dist/{requestsupport → help/components/requestsupport}/PopularTopicsDrawer.d.ts +1 -1
- package/dist/{requestsupport → help/components/requestsupport}/PopularTopicsList.d.ts +1 -1
- package/dist/{requestsupport → help/components/requestsupport}/RequestSupport.d.ts +1 -1
- package/dist/{requestsupport → help/components/requestsupport}/RequestSupportFooter.d.ts +1 -1
- package/dist/{requestsupport → help/components/requestsupport}/RequestSupportInstitution.d.ts +1 -1
- package/dist/{requestsupport → help/components/requestsupport}/SupportSuccessMessage.d.ts +1 -1
- package/dist/help/constants/Help.d.ts +70 -0
- package/dist/help/constants/index.d.ts +1 -60
- package/dist/help/index.d.ts +2 -3
- package/dist/help/store/HelpStore.d.ts +1 -1
- package/dist/help/utils/getAccessibleHelpCategories.d.ts +3 -0
- package/dist/help/utils/index.d.ts +2 -3
- package/dist/index.es.js +7367 -7363
- package/dist/index.es.js.map +1 -1
- package/dist/networth/NetWorthMicroWidget.d.ts +5 -1
- package/dist/networth/components/micro/NetworthData.d.ts +1 -2
- package/dist/networth/components/micro/ZeroState.d.ts +1 -2
- package/package.json +1 -1
- package/dist/common/hooks/useUnsavedChangesWarning.d.ts +0 -1
- package/dist/help/HelpList.d.ts +0 -3
- package/dist/networth/components/micro/Header.d.ts +0 -7
- package/dist/requestsupport/constants/index.d.ts +0 -10
- /package/dist/{requestsupport → help/components/requestsupport}/PopularTopicsRow.d.ts +0 -0
- /package/dist/{requestsupport → help/components/requestsupport}/RequestSupportHeader.d.ts +0 -0
- /package/dist/{requestsupport → help/components/requestsupport}/index.d.ts +0 -0
- /package/dist/{requestsupport/util → help/utils}/getInstitutionsBasedOnGuid.d.ts +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,15 @@
|
|
|
1
|
-
## [6.
|
|
1
|
+
## [6.7.0] - 06-18-2025
|
|
2
2
|
|
|
3
|
-
- **UPDATED** -
|
|
3
|
+
- **UPDATED** - `HelpWidget` to be wrapped in `WidgetContainer` in order to be used as a standalone widget
|
|
4
|
+
|
|
5
|
+
## [6.6.5] - 06-19-2025
|
|
6
|
+
|
|
7
|
+
- **FIXED** - Dashboard CardHeader Button
|
|
8
|
+
|
|
9
|
+
## [6.6.4] - 06-19-2025
|
|
10
|
+
|
|
11
|
+
- **ADDED** - `MicroWidgetContainer` and `Analytics` for `NetWorthMicroWidget`
|
|
12
|
+
- **UPDATED** - Cosmetic updates to `NetWorthMicroWidget` based on Figma and updated Default/Zero state logic.
|
|
4
13
|
|
|
5
14
|
## [6.6.3] - 06-18-2025
|
|
6
15
|
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { SxProps } from '@mui/material/styles';
|
|
2
|
+
interface MicroWidgetContainerProps {
|
|
3
|
+
className?: string;
|
|
4
|
+
ctaLabel: string;
|
|
5
|
+
onCTAClick: () => void;
|
|
6
|
+
sx?: SxProps;
|
|
7
|
+
title: string;
|
|
8
|
+
}
|
|
9
|
+
declare const MicroWidgetContainer: React.FC<React.PropsWithChildren<MicroWidgetContainerProps>>;
|
|
10
|
+
export default MicroWidgetContainer;
|
|
@@ -6,6 +6,8 @@ export * from './daterangeselector';
|
|
|
6
6
|
export * from './dialog';
|
|
7
7
|
export * from './donuts';
|
|
8
8
|
export * from './drawer';
|
|
9
|
+
export { default as ErrorBoundary } from './ErrorBoundary';
|
|
10
|
+
export { default as MicroWidgetContainer } from './MicroWidgetContainer';
|
|
9
11
|
export { default as MiniWidgetContainer } from './MiniWidgetContainer';
|
|
10
12
|
export { default as WidgetContainer } from './WidgetContainer';
|
|
11
13
|
export { default as ConnectDrawer } from './ConnectDrawer';
|
|
@@ -40,6 +40,7 @@ export declare const ANALYTICS_EVENTS: {
|
|
|
40
40
|
INVESTMENT_WIDGET_ANALYSIS_CLICK: string;
|
|
41
41
|
INVESTMENT_WIDGET_DETAILS_CLICK: string;
|
|
42
42
|
NET_WORTH_VIEW: string;
|
|
43
|
+
NETWORTH_MICRO_WIDGET_CTA: string;
|
|
43
44
|
NET_WORTH_WIDGET_CLICK_ASSETS_LIABILITIES: string;
|
|
44
45
|
NET_WORTH_WIDGET_CLICK_FILTER: string;
|
|
45
46
|
NET_WORTH_WIDGET_CLICK_TIMEFRAME: string;
|
|
@@ -21,15 +21,6 @@ export interface HelpContentProps {
|
|
|
21
21
|
onRequestSupport: () => void;
|
|
22
22
|
topicInfo: SelectedTopic;
|
|
23
23
|
}
|
|
24
|
-
export interface HelpListProps {
|
|
25
|
-
buttonText: string;
|
|
26
|
-
hasRequestButton?: boolean;
|
|
27
|
-
helpCategories: HelpCategory[];
|
|
28
|
-
helpContent: string;
|
|
29
|
-
helpTitle: string;
|
|
30
|
-
onRequestHelp: () => void;
|
|
31
|
-
onTopicSelect: (topic: SelectedTopic) => void;
|
|
32
|
-
}
|
|
33
24
|
export interface HelpTopic {
|
|
34
25
|
label: string;
|
|
35
26
|
topicKey: string;
|
|
@@ -15,6 +15,7 @@ export type { DynamicCopyElement, GlobalCopy } from './GlobalCopy';
|
|
|
15
15
|
export { GoalType, MetaType, TrackType } from './Goal';
|
|
16
16
|
export type { Goal, MonthlyCashFlowProfile, RetirementGoalAccount } from './Goal';
|
|
17
17
|
export type { Debt } from './Debt';
|
|
18
|
+
export type { HelpAlertProps, HelpCategory, HelpContentProps, HelpTopic, HelpType, ImageContentProps, InstitutionData, NoImageContentProps, SectionProps, SelectedTopic, Ticket, } from './Help';
|
|
18
19
|
export type { Institution } from './Institution';
|
|
19
20
|
export * from './localization';
|
|
20
21
|
export type { LocalizedContent } from './LocalizedContent';
|
|
@@ -40,7 +40,6 @@ export interface AccountsCopy {
|
|
|
40
40
|
13: string;
|
|
41
41
|
};
|
|
42
42
|
actions: string;
|
|
43
|
-
add: string;
|
|
44
43
|
apr: string;
|
|
45
44
|
apy: string;
|
|
46
45
|
available_balance: string;
|
|
@@ -73,7 +72,6 @@ export interface AccountsCopy {
|
|
|
73
72
|
interest_rate: string;
|
|
74
73
|
is_closed: string;
|
|
75
74
|
is_hidden: string;
|
|
76
|
-
manage: string;
|
|
77
75
|
manage_connection: string;
|
|
78
76
|
manage_connections: string;
|
|
79
77
|
mark_as_closed: string;
|
|
@@ -11,7 +11,7 @@ export type { CurrencyInputCopy } from './CurrencyInputCopy';
|
|
|
11
11
|
export type { DateRangePickerCopy } from './DateRangePickerCopy';
|
|
12
12
|
export type { DebtsCopy } from './DebtsCopy';
|
|
13
13
|
export type { GoalsCopy } from './GoalsCopy';
|
|
14
|
-
export type { HelpCopy } from './HelpCopy';
|
|
14
|
+
export type { HelpCopy, HelpByCategoryList } from './HelpCopy';
|
|
15
15
|
export type { InsightsFeedCopy } from './InsightsFeedCopy';
|
|
16
16
|
export type { InvestmentsCopy } from './InvestmentsCopy';
|
|
17
17
|
export type { MicroInsightsCopy } from './MicroInsightsCopy';
|
|
@@ -1,7 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
}
|
|
6
|
-
declare const _default: React.FunctionComponent<HelpProps>;
|
|
7
|
-
export default _default;
|
|
1
|
+
import { WidgetProps } from '../common';
|
|
2
|
+
export declare const HelpWidget: (({ sx }: WidgetProps) => import("react/jsx-runtime").JSX.Element) & {
|
|
3
|
+
displayName: string;
|
|
4
|
+
};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { HelpCategory, SelectedTopic } from '../../common';
|
|
3
|
+
export interface HelpListProps {
|
|
4
|
+
buttonText: string;
|
|
5
|
+
hasRequestButton?: boolean;
|
|
6
|
+
helpCategories: HelpCategory[];
|
|
7
|
+
helpContent: string;
|
|
8
|
+
helpTitle: string;
|
|
9
|
+
onRequestHelp: () => void;
|
|
10
|
+
onTopicSelect: (topic: SelectedTopic) => void;
|
|
11
|
+
}
|
|
12
|
+
export declare const HelpList: React.FC<HelpListProps>;
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
declare const contentSection: {
|
|
2
|
-
accounts: import('react').FC<import('
|
|
3
|
-
alerts: import('react').FC<import('
|
|
4
|
-
budgets: import('react').FC<import('
|
|
5
|
-
cashflow: import('react').FC<import('
|
|
6
|
-
debts: import('react').FC<import('
|
|
7
|
-
general: import('react').FC<import('
|
|
8
|
-
goals: import('react').FC<import('
|
|
9
|
-
insights: import('react').FC<import('
|
|
10
|
-
investments: import('react').FC<import('
|
|
11
|
-
mobile: import('react').FC<import('
|
|
12
|
-
networth: import('react').FC<import('
|
|
13
|
-
recurring_transactions: import('react').FC<import('
|
|
14
|
-
spending: import('react').FC<import('
|
|
15
|
-
transactions: import('react').FC<import('
|
|
16
|
-
trends: import('react').FC<import('
|
|
2
|
+
accounts: import('react').FC<import('../../../..').SectionProps>;
|
|
3
|
+
alerts: import('react').FC<import('../../../..').SectionProps>;
|
|
4
|
+
budgets: import('react').FC<import('../../../..').SectionProps>;
|
|
5
|
+
cashflow: import('react').FC<import('../../../..').SectionProps>;
|
|
6
|
+
debts: import('react').FC<import('../../../..').SectionProps>;
|
|
7
|
+
general: import('react').FC<import('../../../..').SectionProps>;
|
|
8
|
+
goals: import('react').FC<import('../../../..').SectionProps>;
|
|
9
|
+
insights: import('react').FC<import('../../../..').SectionProps>;
|
|
10
|
+
investments: import('react').FC<import('../../../..').SectionProps>;
|
|
11
|
+
mobile: import('react').FC<import('../../../..').SectionProps>;
|
|
12
|
+
networth: import('react').FC<import('../../../..').SectionProps>;
|
|
13
|
+
recurring_transactions: import('react').FC<import('../../../..').SectionProps>;
|
|
14
|
+
spending: import('react').FC<import('../../../..').SectionProps>;
|
|
15
|
+
transactions: import('react').FC<import('../../../..').SectionProps>;
|
|
16
|
+
trends: import('react').FC<import('../../../..').SectionProps>;
|
|
17
17
|
};
|
|
18
18
|
export { contentSection };
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
import { HelpCopy } from '
|
|
3
|
-
import { HelpAlertProps } from '../common/types/Help';
|
|
2
|
+
import { HelpAlertProps, HelpCopy } from '../../../common';
|
|
4
3
|
interface ContactSupportProps {
|
|
5
4
|
alert: HelpAlertProps;
|
|
6
5
|
copy: HelpCopy;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
import { HelpCopy } from '
|
|
3
|
-
import { InstitutionData } from '../common/types/Help';
|
|
2
|
+
import { InstitutionData, HelpCopy } from '../../../common';
|
|
4
3
|
interface MissingInstitutionProps {
|
|
5
4
|
copy: HelpCopy;
|
|
6
5
|
isOpen: boolean;
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
export declare const HELP_CATEGORIES: ({
|
|
2
|
+
flags: string[];
|
|
3
|
+
guid: string;
|
|
4
|
+
icon: string;
|
|
5
|
+
title: string;
|
|
6
|
+
topics: {
|
|
7
|
+
topicKey: string;
|
|
8
|
+
}[];
|
|
9
|
+
} | {
|
|
10
|
+
flags: string[];
|
|
11
|
+
guid: string;
|
|
12
|
+
icon: string;
|
|
13
|
+
title: string;
|
|
14
|
+
topics: {
|
|
15
|
+
label: string;
|
|
16
|
+
topicKey: string;
|
|
17
|
+
}[];
|
|
18
|
+
} | {
|
|
19
|
+
guid: string;
|
|
20
|
+
icon: string;
|
|
21
|
+
title: string;
|
|
22
|
+
topics: {
|
|
23
|
+
topicKey: string;
|
|
24
|
+
}[];
|
|
25
|
+
flags?: undefined;
|
|
26
|
+
})[];
|
|
27
|
+
export declare const HELP_CONTENT: {
|
|
28
|
+
accounts: {
|
|
29
|
+
guid: string;
|
|
30
|
+
title: string;
|
|
31
|
+
topicTitle: string;
|
|
32
|
+
content: {
|
|
33
|
+
section1: {
|
|
34
|
+
description: string;
|
|
35
|
+
image: string;
|
|
36
|
+
title: string;
|
|
37
|
+
};
|
|
38
|
+
section2: {
|
|
39
|
+
description: string;
|
|
40
|
+
image: string;
|
|
41
|
+
listItems: string[];
|
|
42
|
+
listTitle: string;
|
|
43
|
+
subDescription: string;
|
|
44
|
+
subTitle: string;
|
|
45
|
+
title: string;
|
|
46
|
+
};
|
|
47
|
+
section3: {
|
|
48
|
+
description: string;
|
|
49
|
+
image: string;
|
|
50
|
+
listItems: string[];
|
|
51
|
+
listTitle: string;
|
|
52
|
+
title: string;
|
|
53
|
+
};
|
|
54
|
+
section4: {
|
|
55
|
+
description: string;
|
|
56
|
+
title: string;
|
|
57
|
+
};
|
|
58
|
+
};
|
|
59
|
+
};
|
|
60
|
+
};
|
|
61
|
+
export declare const HELP_BY_CATEGORY_LIST: {
|
|
62
|
+
guid: string;
|
|
63
|
+
icon: string;
|
|
64
|
+
topics: {
|
|
65
|
+
type: string;
|
|
66
|
+
}[];
|
|
67
|
+
}[];
|
|
68
|
+
export declare const POPULAR_TOPICS_LIST: {
|
|
69
|
+
type: string;
|
|
70
|
+
}[];
|
|
@@ -1,60 +1 @@
|
|
|
1
|
-
export
|
|
2
|
-
flags: string[];
|
|
3
|
-
guid: string;
|
|
4
|
-
icon: string;
|
|
5
|
-
title: string;
|
|
6
|
-
topics: {
|
|
7
|
-
topicKey: string;
|
|
8
|
-
}[];
|
|
9
|
-
} | {
|
|
10
|
-
flags: string[];
|
|
11
|
-
guid: string;
|
|
12
|
-
icon: string;
|
|
13
|
-
title: string;
|
|
14
|
-
topics: {
|
|
15
|
-
label: string;
|
|
16
|
-
topicKey: string;
|
|
17
|
-
}[];
|
|
18
|
-
} | {
|
|
19
|
-
guid: string;
|
|
20
|
-
icon: string;
|
|
21
|
-
title: string;
|
|
22
|
-
topics: {
|
|
23
|
-
topicKey: string;
|
|
24
|
-
}[];
|
|
25
|
-
flags?: undefined;
|
|
26
|
-
})[];
|
|
27
|
-
export declare const HELP_CONTENT: {
|
|
28
|
-
accounts: {
|
|
29
|
-
guid: string;
|
|
30
|
-
title: string;
|
|
31
|
-
topicTitle: string;
|
|
32
|
-
content: {
|
|
33
|
-
section1: {
|
|
34
|
-
description: string;
|
|
35
|
-
image: string;
|
|
36
|
-
title: string;
|
|
37
|
-
};
|
|
38
|
-
section2: {
|
|
39
|
-
description: string;
|
|
40
|
-
image: string;
|
|
41
|
-
listItems: string[];
|
|
42
|
-
listTitle: string;
|
|
43
|
-
subDescription: string;
|
|
44
|
-
subTitle: string;
|
|
45
|
-
title: string;
|
|
46
|
-
};
|
|
47
|
-
section3: {
|
|
48
|
-
description: string;
|
|
49
|
-
image: string;
|
|
50
|
-
listItems: string[];
|
|
51
|
-
listTitle: string;
|
|
52
|
-
title: string;
|
|
53
|
-
};
|
|
54
|
-
section4: {
|
|
55
|
-
description: string;
|
|
56
|
-
title: string;
|
|
57
|
-
};
|
|
58
|
-
};
|
|
59
|
-
};
|
|
60
|
-
};
|
|
1
|
+
export { HELP_BY_CATEGORY_LIST, HELP_CATEGORIES, HELP_CONTENT, POPULAR_TOPICS_LIST } from './Help';
|
package/dist/help/index.d.ts
CHANGED
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
export {
|
|
2
|
-
export {
|
|
3
|
-
export { default as HelpWidget } from './HelpWidget';
|
|
1
|
+
export { HelpWidget } from './HelpWidget';
|
|
2
|
+
export { Help } from './components/Help';
|
|
@@ -15,5 +15,5 @@ export declare class HelpStore {
|
|
|
15
15
|
severity: import('@mui/types').OverridableStringUnion<import('@mui/material').AlertColor, import('@mui/material').AlertPropsColorOverrides> | undefined;
|
|
16
16
|
};
|
|
17
17
|
get copy(): HelpCopy;
|
|
18
|
-
get helpCategories(): import('../../common
|
|
18
|
+
get helpCategories(): import('../../common').HelpCategory[];
|
|
19
19
|
}
|
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
export declare const getAccessibleHelpCategories: (profile: Profile, categoryList: CategoryList) => HelpCategory[];
|
|
1
|
+
export { getAccessibleHelpCategories } from './getAccessibleHelpCategories';
|
|
2
|
+
export { getInstitutionsBasedOnGuid } from './getInstitutionsBasedOnGuid';
|