@mx-cartographer/experiences 6.19.0-alpha.bb1 → 6.19.0-alpha.bb2

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,27 @@
1
+ ## [6.18.11] - 07-29-2025
2
+
3
+ - **FIXED** - Content variable name from `notifications_settings_title` to `notification_settings_title`
4
+
5
+ ## [6.18.10] - 07-29-2025
6
+
7
+ - **ADDED** - New carousel animation in Insights Micro Widget
8
+
9
+ ## [6.18.9] - 07-29-2025
10
+
11
+ - **UPDATED** - "Export CSV" button is now visible only on desktop and larger screens
12
+
13
+ ## [6.18.8] - 07-28-2025
14
+
15
+ - **FIXED** - `NotificationSettings` opens in new drawer from `Notifications`
16
+
17
+ ## [6.18.7] - 07-28-2025
18
+
19
+ - **UPDATED** - Hide "Export CSV" button when `is_mobile_webview` or `isSmallTablet` is true
20
+
21
+ ## [6.18.6] - 07-25-2025
22
+
23
+ - **ADDED** - move useInsightsEnabled hook from MoneyDashboard
24
+
1
25
  ## [6.18.5] - 07-23-2025
2
26
 
3
27
  - **UPDATED** - Notification profile settings with design recommendations
@@ -1,3 +1,4 @@
1
1
  export { useCombineEvents, useCombinePageviews } from './useCombineEvents';
2
+ export { useInsightsEnabled } from './useInsightsEnabled';
2
3
  export { useScreenSize } from './useScreenSize';
3
4
  export { usePrevious } from './usePrevious';
@@ -0,0 +1 @@
1
+ export declare const useInsightsEnabled: () => boolean;
@@ -128,4 +128,6 @@ export interface SettingsCopy {
128
128
  discovered_account: string;
129
129
  promotional_campaign_messages: string;
130
130
  transparent_overdraft: string;
131
+ notification_settings_title: string;
132
+ open_notification_settings_btn_aria: string;
131
133
  }