@mx-cartographer/experiences 6.3.2 → 6.4.0-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
@@ -10,6 +10,7 @@ export declare class AppDataStore {
10
10
  banner: Banner;
11
11
  constructor(globalStore: GlobalStore);
12
12
  get appConfig(): AppConfig;
13
+ get isMobileWebview(): boolean;
13
14
  get clientCommunicationProfile(): import('../types').ClientCommunicationProfile;
14
15
  get user(): User;
15
16
  get userCommunicationProfile(): UserCommunicationProfile;
@@ -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;
@@ -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
  }