@mx-cartographer/experiences 6.18.5-alpha.al0 → 6.18.6
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 +8 -0
- package/dist/common/hooks/index.d.ts +1 -0
- package/dist/common/hooks/useInsightsEnabled.d.ts +1 -0
- package/dist/common/types/localization/SettingsCopy.d.ts +2 -0
- package/dist/index.es.js +2680 -2653
- package/dist/index.es.js.map +1 -1
- package/dist/insights/store/BeatStore.d.ts +1 -0
- package/dist/settings/components/notifications/NotificationSettings.d.ts +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## [6.18.6] - 07-25-2025
|
|
2
|
+
|
|
3
|
+
- **ADDED** - move useInsightsEnabled hook from MoneyDashboard
|
|
4
|
+
|
|
5
|
+
## [6.18.5] - 07-23-2025
|
|
6
|
+
|
|
7
|
+
- **UPDATED** - Notification profile settings with design recommendations
|
|
8
|
+
|
|
1
9
|
## [6.18.4] - 07-22-2025
|
|
2
10
|
|
|
3
11
|
- **ADDED** - Trends Store & detailedCategories to new trends widget
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const useInsightsEnabled: () => boolean;
|
|
@@ -71,9 +71,11 @@ export interface SettingsCopy {
|
|
|
71
71
|
mobile_number: string;
|
|
72
72
|
notification_budget_exceeded: string;
|
|
73
73
|
notification_budget_off_target: string;
|
|
74
|
+
notification_enabled: string;
|
|
74
75
|
notification_debt_payment_date: string;
|
|
75
76
|
notification_debt_payment_reminder: string;
|
|
76
77
|
notification_debt_payment_zero_state: string;
|
|
78
|
+
notification_disabled: string;
|
|
77
79
|
notification_duplicate_payment: string;
|
|
78
80
|
notification_large_deposit: string;
|
|
79
81
|
notification_large_expense: string;
|