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

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,35 @@
1
+ ## [6.19.0] - 07-31-2025
2
+
3
+ - **ADDED** - Connect More Accounts Card for `Finstrong`.
4
+
5
+ ## [6.18.12] - 07-30-2025
6
+
7
+ - **ADDED** - Added `session_timeout`, `session_timeout_url`, `keepalive_url` and `ping_id` to AppData
8
+
9
+ ## [6.18.11] - 07-29-2025
10
+
11
+ - **FIXED** - Content variable name from `notifications_settings_title` to `notification_settings_title`
12
+
13
+ ## [6.18.10] - 07-29-2025
14
+
15
+ - **ADDED** - New carousel animation in Insights Micro Widget
16
+
17
+ ## [6.18.9] - 07-29-2025
18
+
19
+ - **UPDATED** - "Export CSV" button is now visible only on desktop and larger screens
20
+
21
+ ## [6.18.8] - 07-28-2025
22
+
23
+ - **FIXED** - `NotificationSettings` opens in new drawer from `Notifications`
24
+
25
+ ## [6.18.7] - 07-28-2025
26
+
27
+ - **UPDATED** - Hide "Export CSV" button when `is_mobile_webview` or `isSmallTablet` is true
28
+
29
+ ## [6.18.6] - 07-25-2025
30
+
31
+ - **ADDED** - move useInsightsEnabled hook from MoneyDashboard
32
+
1
33
  ## [6.18.5] - 07-23-2025
2
34
 
3
35
  - **UPDATED** - Notification profile settings with design recommendations
@@ -1,4 +1,3 @@
1
- import { Theme } from '@mui/material';
2
1
  import { Category, DateRangeCategoryTotals, DetailedCategory, MonthlyCategoryTotals } from '../../common';
3
2
  /**
4
3
  * Augment categories
@@ -7,5 +6,3 @@ import { Category, DateRangeCategoryTotals, DetailedCategory, MonthlyCategoryTot
7
6
  * @param currentCategoryTotals - Current month category totals
8
7
  */
9
8
  export declare const augmentCategories: (categories: Category[], currentCategoryTotals: DateRangeCategoryTotals[], monthlyCategoryTotals: MonthlyCategoryTotals[]) => DetailedCategory[];
10
- export declare const getCategoryColor: (guid: string, theme: Theme) => string;
11
- export declare const getCategoryIcon: (guid: string) => string | undefined;
@@ -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;
@@ -83,8 +83,11 @@ export interface Config {
83
83
  enable_mark_account_duplicate_for_held_accounts: boolean;
84
84
  enable_renaming_home_accounts: boolean;
85
85
  enable_support_requests: boolean;
86
+ keepalive_url?: string;
86
87
  language?: string;
87
88
  product_name?: string;
89
+ session_timeout?: number;
90
+ session_timeout_url?: string;
88
91
  session_token?: string;
89
92
  show_account_nicknames_in_master: boolean;
90
93
  show_accounts_widget_in_master: boolean;
@@ -133,6 +136,7 @@ export interface Options {
133
136
  custom_copy_namespace?: string;
134
137
  language?: string;
135
138
  product_name?: string;
139
+ ping_id?: string;
136
140
  session_token?: string;
137
141
  subtype?: string;
138
142
  type?: string;
@@ -1,4 +1,4 @@
1
- import { AccountsCopy, AnalyticsCopy, BudgetsCopy, CashflowCopy, CategoryCopy, CommonCopy, ConnectCopy, DebtsCopy, GoalsCopy, HelpCopy, InsightsFeedCopy, InvestmentsCopy, MicroInsightsCopy, NetWorthCopy, NotificationsCopy, RecurringCopy, SettingsCopy, SpendingCopy, TransactionsCopy, TrendsCopy } from './localization';
1
+ import { AccountsCopy, AnalyticsCopy, BudgetsCopy, CashflowCopy, CategoryCopy, CommonCopy, ConnectCopy, DebtsCopy, FinstrongCopy, GoalsCopy, HelpCopy, InsightsFeedCopy, InvestmentsCopy, MicroInsightsCopy, NetWorthCopy, NotificationsCopy, RecurringCopy, SettingsCopy, SpendingCopy, TransactionsCopy, TrendsCopy } from './localization';
2
2
  export interface GlobalCopy {
3
3
  accounts: AccountsCopy;
4
4
  analytics: AnalyticsCopy;
@@ -9,6 +9,7 @@ export interface GlobalCopy {
9
9
  connect: ConnectCopy;
10
10
  debts: DebtsCopy;
11
11
  goals: GoalsCopy;
12
+ finstrong: FinstrongCopy;
12
13
  help: HelpCopy;
13
14
  insights_feed: InsightsFeedCopy;
14
15
  investments: InvestmentsCopy;
@@ -0,0 +1,5 @@
1
+ export interface FinstrongCopy {
2
+ connect_more_accounts_title: string;
3
+ connect_more_accounts_description: string;
4
+ connect_more_accounts_button: string;
5
+ }
@@ -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
  }
@@ -10,6 +10,7 @@ export type { ConnectCopy } from './ConnectCopy';
10
10
  export type { CurrencyInputCopy } from './CurrencyInputCopy';
11
11
  export type { DateRangePickerCopy } from './DateRangePickerCopy';
12
12
  export type { DebtsCopy } from './DebtsCopy';
13
+ export type { FinstrongCopy } from './FinstrongCopy';
13
14
  export type { GoalsCopy } from './GoalsCopy';
14
15
  export type { HelpCopy, HelpByCategoryList } from './HelpCopy';
15
16
  export type { InsightsFeedCopy } from './InsightsFeedCopy';
@@ -0,0 +1,7 @@
1
+ interface ConnectMoreAccountsCardProps {
2
+ isDashboard?: boolean;
3
+ title: string;
4
+ description: string;
5
+ }
6
+ export declare const ConnectMoreAccountsCard: ({ isDashboard, title, description, }: ConnectMoreAccountsCardProps) => import("react/jsx-runtime").JSX.Element;
7
+ export {};