@mx-cartographer/experiences 5.0.21-alpha.mega1 → 5.0.22-alpha.mega2

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 CHANGED
@@ -1,3 +1,7 @@
1
+ ## [5.0.21] - 03-26-2025
2
+
3
+ - **UPDATED** - Handled request support in the help content page.
4
+
1
5
  ## [5.0.20] - 03-26-2025
2
6
 
3
7
  - **FIXED** - Help Widget | Consistency fix for Accounts, Budgets, Cashflow, Debts pages
@@ -18,6 +18,7 @@ export interface HelpContentProps {
18
18
  copy: HelpCopy;
19
19
  hasRequestButton?: boolean;
20
20
  onNavigateToList: () => void;
21
+ onRequestSupport: () => void;
21
22
  topicInfo: SelectedTopic;
22
23
  }
23
24
  export interface HelpListProps {
@@ -3,6 +3,7 @@ interface HeaderProps {
3
3
  buttonCopy: string;
4
4
  hasRequestButton?: boolean;
5
5
  onNavigateToList: () => void;
6
+ onRequestSupport: () => void;
6
7
  title: string;
7
8
  topicTitle: string;
8
9
  }