@mx-cartographer/experiences 6.3.2 → 6.3.4-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 CHANGED
@@ -1,3 +1,7 @@
1
+ ## [6.3.3] - 06-05-2025
2
+
3
+ - **ADDED** - EmptyState component for `Notifications`.
4
+
1
5
  ## [6.3.2] - 06-04-2025
2
6
 
3
7
  - **FIXED** - `CashflowWidget` to show 90 days of transactions in Settings
@@ -66,6 +66,7 @@ export interface Config {
66
66
  enable_mark_account_duplicate_for_held_accounts: boolean;
67
67
  enable_renaming_home_accounts: boolean;
68
68
  enable_support_requests: boolean;
69
+ is_mobile_webview?: boolean;
69
70
  language?: string;
70
71
  product_name?: string;
71
72
  session_token?: string;
@@ -114,6 +115,7 @@ export interface Options {
114
115
  brokaw_websocket_url?: string;
115
116
  bundle?: string;
116
117
  custom_copy_namespace?: string;
118
+ is_mobile_webview?: boolean;
117
119
  language?: string;
118
120
  product_name?: string;
119
121
  session_token?: string;
@@ -4,4 +4,9 @@ export interface NotificationsCopy {
4
4
  loading: string;
5
5
  no_notifications: string;
6
6
  notifications_title: string;
7
+ notification_empty_state: {
8
+ no_new_notifications: string;
9
+ notification_description: string;
10
+ manage_notifications: string;
11
+ };
7
12
  }