@mx-cartographer/experiences 6.6.5 → 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 +4 -0
- package/dist/common/components/index.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/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 +5248 -5251
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
- package/dist/help/HelpList.d.ts +0 -3
- 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
|
@@ -6,6 +6,7 @@ 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';
|
|
9
10
|
export { default as MicroWidgetContainer } from './MicroWidgetContainer';
|
|
10
11
|
export { default as MiniWidgetContainer } from './MiniWidgetContainer';
|
|
11
12
|
export { default as WidgetContainer } from './WidgetContainer';
|
|
@@ -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';
|
|
@@ -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';
|