@mx-cartographer/experiences 6.1.0-alpha.bb6 → 6.1.2-alpha.san1

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.1.1] - 05-20-2025
2
+
3
+ - **ADDED** - Overview Component | Investments Widget
4
+
5
+ ## [6.1.0] - 05-19-2025
6
+
7
+ - **ADDED** - `RecurringTransactionsWidget` & `RecurringTransactionsMiniWidget` using Repeating Transactions API
8
+
9
+ ## [6.0.25] - 05-19-2025
10
+
11
+ - **FIXED** - Transactions Widget | Category Selector Drawer | reset search value
12
+
13
+ ## [6.0.24] - 05-16-2025
14
+
15
+ - **UPDATED** - Micro Widget carousel a11y
16
+
17
+ ## [6.0.23] - 05-15-2025
18
+
19
+ - **UPDATED** - Use `theme.palette.primary` in `InsightsMicroWidget`
20
+
21
+ ## [6.0.22] - 05-15-2025
22
+
23
+ - **UPDATED** - Micro Widget now displays keyboard focus
24
+
1
25
  ## [6.0.21] - 05-14-2025
2
26
 
3
27
  - **UPDATED** - Hide create button in `BudwgetsMiniWidget`
@@ -16,7 +16,7 @@ export declare const useMerchantStore: () => import('../..').MerchantStore;
16
16
  export declare const useNetWorthStore: () => import('../..').NetWorthStore;
17
17
  export declare const useNotificationStore: () => import('../..').NotificationStore;
18
18
  export declare const useRecurringActivityStore: () => import('../..').RecurringActivityStore;
19
- export declare const useRecurringTransactionsStore: () => import('../../recurringtransactions/stores/RecurringTransactionsStore').RecurringTransactionsStore;
19
+ export declare const useRecurringTransactionsStore: () => import('../..').RecurringTransactionsStore;
20
20
  export declare const useSettingsStore: () => import('../..').SettingsStore;
21
21
  export declare const useTransactionStore: () => import('../..').TransactionStore;
22
22
  export declare const useUserStore: () => import('..').UserStore;
@@ -3,4 +3,23 @@ export interface InvestmentsCopy {
3
3
  tab_analysis_title: string;
4
4
  tab_overview_title: string;
5
5
  title: string;
6
+ overview: {
7
+ qty_header: string;
8
+ holding_header: string;
9
+ cost_basis_header: string;
10
+ total_gain_loss_header: string;
11
+ market_value_header: string;
12
+ total_portfolio: string;
13
+ total_gain_Loss: string;
14
+ total_value: string;
15
+ investment_accounts_footer: string;
16
+ connect_more_accounts_description: string;
17
+ connect_accounts: string;
18
+ close_investment_drawer: string;
19
+ investment_details: string;
20
+ current_balance: string;
21
+ holding: string;
22
+ market_value: string;
23
+ quantity: string;
24
+ };
6
25
  }