@mx-cartographer/experiences 6.26.33 → 6.26.35-alpha.mega1

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,12 @@
1
+ ## [6.26.35] - 09-16-2025
2
+
3
+ - **ADDED** - Transactions widget supports account-specific requests
4
+
5
+ ## [6.26.34] - 09-15-2025
6
+
7
+ - **ADDED** - Analytics events for new trends widget
8
+ - **UPDATED** - `InsightsMicroWidget` with optional analytics metadata prop
9
+
1
10
  ## [6.26.33] - 09-15-2025
2
11
 
3
12
  - **FIXED** - Added Truncation/Bold to Notification Type Account Names.
@@ -19,7 +19,7 @@ interface WidgetContainerProps {
19
19
  dateRangeVariant?: 'outlined' | 'text' | 'readonly' | 'timeframebuttons' | 'timeframetabs';
20
20
  hasDivider?: boolean;
21
21
  onBackClick?: () => void;
22
- onAccountsFilterClick?: () => void;
22
+ onAccountsFilterClick?: (selectedAccountGuids: string[]) => void;
23
23
  showDividerAboveDateSelector?: boolean;
24
24
  sx?: SxProps;
25
25
  title?: string;
@@ -34,6 +34,7 @@ interface LineChartProps {
34
34
  };
35
35
  markHandlers?: MarkHandlers;
36
36
  markStyles?: (markIndex: number) => CSSProperties;
37
+ onItemClick?: () => void;
37
38
  showArea?: boolean;
38
39
  showAverage?: boolean;
39
40
  showAxisHighlight?: boolean;
@@ -86,16 +86,6 @@ export declare const ANALYTICS_EVENTS: {
86
86
  TRANSACTION_DETAILS_CLICK_TAGS: string;
87
87
  TRANSACTION_DETAILS_CLICK_UNSPLIT: string;
88
88
  TRANSACTION_DETAILS_VIEW: string;
89
- TRENDS_CLICK_DATE: string;
90
- TRENDS_CLICK_FILTER: string;
91
- TRENDS_CLICK_LEGEND: string;
92
- TRENDS_CLICK_TABLE_ROW: string;
93
- TRENDS_CLICK_TABLE_SORT: string;
94
- TRENDS_CLICK_TOGGLE: string;
95
- TRENDS_HOVER_AREA: string;
96
- TRENDS_HOVER_LEGEND: string;
97
- TRENDS_HOVER_POINT: string;
98
- TRENDS_VIEW_TRANSACTIONS: string;
99
89
  WIDGET_BACK_CLICK: string;
100
90
  GOALS_CLICK_GET_STARTED: string;
101
91
  GOALS_CLICK_VIEW_DETAILS: string;
@@ -106,7 +96,23 @@ export declare const ANALYTICS_EVENTS: {
106
96
  RECURRING_TRANSACTIONS_CLICK_GET_STARTED: string;
107
97
  RECURRING_TRANSACTIONS_CLICK_VIEW_ALL: string;
108
98
  RECURRING_TRANSACTIONS_LOAD_WIDGET: string;
99
+ TRENDS_CLICK_ALL_CATEGORIES: string;
100
+ TRENDS_CLICK_BACK: string;
101
+ TRENDS_CLICK_CHART: string;
102
+ TRENDS_CLICK_EXPORT_CSV: string;
103
+ TRENDS_CLICK_FILTER: string;
109
104
  TRENDS_CLICK_GET_STARTED: string;
105
+ TRENDS_CLICK_INSIGHT: string;
106
+ TRENDS_CLICK_LEGEND: string;
107
+ TRENDS_CLICK_LIST_ITEM: string;
108
+ TRENDS_CLICK_TABLE_SORT: string;
109
+ TRENDS_CLICK_TIME_WINDOW: string;
110
+ TRENDS_CLICK_TOGGLE_VIEW: string;
110
111
  TRENDS_CLICK_VIEW_MORE: string;
112
+ TRENDS_CLICK_VIEW_TRANSACTIONS: string;
113
+ TRENDS_HOVER_AREA: string;
114
+ TRENDS_HOVER_POINT: string;
115
+ TRENDS_HOVER_LEGEND: string;
111
116
  TRENDS_LOAD_WIDGET: string;
117
+ TRENDS_VIEW_TRANSACTIONS: string;
112
118
  };
@@ -28,9 +28,13 @@ export interface Banner {
28
28
  image_url?: string;
29
29
  redirect_url?: string;
30
30
  }
31
+ interface TransactionConfig {
32
+ selected_account_guid?: string;
33
+ }
31
34
  export interface ClientConfig {
32
35
  color_scheme?: 'light' | 'dark' | 'browser';
33
36
  master?: MasterConfig;
37
+ transactions?: TransactionConfig;
34
38
  [key: string]: any;
35
39
  }
36
40
  export interface MasterConfig {
@@ -143,3 +147,4 @@ export interface Options {
143
147
  subtype?: string;
144
148
  type?: string;
145
149
  }
150
+ export {};