@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.
Files changed (34) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/dist/common/components/index.d.ts +1 -0
  3. package/dist/common/types/Help.d.ts +0 -9
  4. package/dist/common/types/index.d.ts +1 -0
  5. package/dist/common/types/localization/index.d.ts +1 -1
  6. package/dist/help/HelpWidget.d.ts +4 -7
  7. package/dist/help/components/Help.d.ts +6 -0
  8. package/dist/help/{HelpContent.d.ts → components/HelpContent.d.ts} +1 -1
  9. package/dist/help/components/HelpList.d.ts +12 -0
  10. package/dist/help/components/content/section/index.d.ts +15 -15
  11. package/dist/{requestsupport → help/components/requestsupport}/ContactSupport.d.ts +1 -2
  12. package/dist/{requestsupport → help/components/requestsupport}/HelpByCategoryList.d.ts +1 -1
  13. package/dist/{requestsupport → help/components/requestsupport}/MissingInstitution.d.ts +1 -2
  14. package/dist/{requestsupport → help/components/requestsupport}/PopularTopicsDrawer.d.ts +1 -1
  15. package/dist/{requestsupport → help/components/requestsupport}/PopularTopicsList.d.ts +1 -1
  16. package/dist/{requestsupport → help/components/requestsupport}/RequestSupport.d.ts +1 -1
  17. package/dist/{requestsupport → help/components/requestsupport}/RequestSupportFooter.d.ts +1 -1
  18. package/dist/{requestsupport → help/components/requestsupport}/RequestSupportInstitution.d.ts +1 -1
  19. package/dist/{requestsupport → help/components/requestsupport}/SupportSuccessMessage.d.ts +1 -1
  20. package/dist/help/constants/Help.d.ts +70 -0
  21. package/dist/help/constants/index.d.ts +1 -60
  22. package/dist/help/index.d.ts +2 -3
  23. package/dist/help/store/HelpStore.d.ts +1 -1
  24. package/dist/help/utils/getAccessibleHelpCategories.d.ts +3 -0
  25. package/dist/help/utils/index.d.ts +2 -3
  26. package/dist/index.es.js +5248 -5251
  27. package/dist/index.es.js.map +1 -1
  28. package/package.json +1 -1
  29. package/dist/help/HelpList.d.ts +0 -3
  30. package/dist/requestsupport/constants/index.d.ts +0 -10
  31. /package/dist/{requestsupport → help/components/requestsupport}/PopularTopicsRow.d.ts +0 -0
  32. /package/dist/{requestsupport → help/components/requestsupport}/RequestSupportHeader.d.ts +0 -0
  33. /package/dist/{requestsupport → help/components/requestsupport}/index.d.ts +0 -0
  34. /package/dist/{requestsupport/util → help/utils}/getInstitutionsBasedOnGuid.d.ts +0 -0
package/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## [6.7.0] - 06-18-2025
2
+
3
+ - **UPDATED** - `HelpWidget` to be wrapped in `WidgetContainer` in order to be used as a standalone widget
4
+
1
5
  ## [6.6.5] - 06-19-2025
2
6
 
3
7
  - **FIXED** - Dashboard CardHeader Button
@@ -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 { default as React } from 'react';
2
- import { SxProps } from '@mui/material/styles';
3
- interface HelpProps {
4
- sx?: SxProps;
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,6 @@
1
+ import { SxProps } from '@mui/material/styles';
2
+ interface HelpProps {
3
+ sx?: SxProps;
4
+ }
5
+ export declare const Help: ({ sx }: HelpProps) => import("react/jsx-runtime").JSX.Element;
6
+ export {};
@@ -1,3 +1,3 @@
1
1
  import { default as React } from 'react';
2
- import { HelpContentProps } from '../common/types/Help';
2
+ import { HelpContentProps } from '../../common';
3
3
  export declare const HelpContent: React.FC<HelpContentProps>;
@@ -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('../../../../common/types/Help').SectionProps>;
3
- alerts: import('react').FC<import('../../../../common/types/Help').SectionProps>;
4
- budgets: import('react').FC<import('../../../../common/types/Help').SectionProps>;
5
- cashflow: import('react').FC<import('../../../../common/types/Help').SectionProps>;
6
- debts: import('react').FC<import('../../../../common/types/Help').SectionProps>;
7
- general: import('react').FC<import('../../../../common/types/Help').SectionProps>;
8
- goals: import('react').FC<import('../../../../common/types/Help').SectionProps>;
9
- insights: import('react').FC<import('../../../../common/types/Help').SectionProps>;
10
- investments: import('react').FC<import('../../../../common/types/Help').SectionProps>;
11
- mobile: import('react').FC<import('../../../../common/types/Help').SectionProps>;
12
- networth: import('react').FC<import('../../../../common/types/Help').SectionProps>;
13
- recurring_transactions: import('react').FC<import('../../../../common/types/Help').SectionProps>;
14
- spending: import('react').FC<import('../../../../common/types/Help').SectionProps>;
15
- transactions: import('react').FC<import('../../../../common/types/Help').SectionProps>;
16
- trends: import('react').FC<import('../../../../common/types/Help').SectionProps>;
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 '../common';
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,5 +1,5 @@
1
1
  import { default as React } from 'react';
2
- import { HelpType } from '../common/types/Help';
2
+ import { HelpType } from '../../../common';
3
3
  interface HelpByCategory {
4
4
  guid: string;
5
5
  icon: string;
@@ -1,6 +1,5 @@
1
1
  import { default as React } from 'react';
2
- import { HelpCopy } from '../common';
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;
@@ -1,5 +1,5 @@
1
1
  import { default as React } from 'react';
2
- import { HelpCopy } from '../common';
2
+ import { HelpCopy } from '../../../common';
3
3
  interface PopularTopicsDrawerProps {
4
4
  copy: HelpCopy;
5
5
  isOpen: boolean;
@@ -1,5 +1,5 @@
1
1
  import { default as React, CSSProperties } from 'react';
2
- import { HelpType } from '../common/types/Help';
2
+ import { HelpType } from '../../../common';
3
3
  export interface ListItem {
4
4
  guid?: string;
5
5
  name: string;
@@ -1,5 +1,5 @@
1
1
  import { default as React } from 'react';
2
- import { HelpCopy } from '../common';
2
+ import { HelpCopy } from '../../../common';
3
3
  interface RequestSupportProps {
4
4
  copy: HelpCopy;
5
5
  isOpen: boolean;
@@ -1,5 +1,5 @@
1
1
  import { default as React } from 'react';
2
- import { HelpCopy } from '../common';
2
+ import { HelpCopy } from '../../../common';
3
3
  interface FooterProps {
4
4
  copy: HelpCopy;
5
5
  onButtonClick: () => void;
@@ -1,4 +1,4 @@
1
- import { HelpCopy } from '../common';
1
+ import { HelpCopy } from '../../../common';
2
2
  interface RequestSupportInstitutionProps {
3
3
  copy: HelpCopy;
4
4
  institution: string;
@@ -1,5 +1,5 @@
1
1
  import { default as React } from 'react';
2
- import { HelpCopy } from '../common';
2
+ import { HelpCopy } from '../../../common';
3
3
  interface SupportSuccessMessageProps {
4
4
  copy: HelpCopy;
5
5
  email: string;
@@ -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 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
- };
1
+ export { HELP_BY_CATEGORY_LIST, HELP_CATEGORIES, HELP_CONTENT, POPULAR_TOPICS_LIST } from './Help';
@@ -1,3 +1,2 @@
1
- export { HelpContent } from './HelpContent';
2
- export { HelpList } from './HelpList';
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/types/Help').HelpCategory[];
18
+ get helpCategories(): import('../../common').HelpCategory[];
19
19
  }
@@ -0,0 +1,3 @@
1
+ import { HelpCategory, Profile } from '../../common/types/Help';
2
+ import { CategoryList } from '../../common/types/localization/HelpCopy';
3
+ export declare const getAccessibleHelpCategories: (profile: Profile, categoryList: CategoryList) => HelpCategory[];
@@ -1,3 +1,2 @@
1
- import { HelpCategory, Profile } from '../../common/types/Help';
2
- import { CategoryList } from '../../common/types/localization/HelpCopy';
3
- export declare const getAccessibleHelpCategories: (profile: Profile, categoryList: CategoryList) => HelpCategory[];
1
+ export { getAccessibleHelpCategories } from './getAccessibleHelpCategories';
2
+ export { getInstitutionsBasedOnGuid } from './getInstitutionsBasedOnGuid';