@mx-cartographer/experiences 6.26.32 → 6.26.33-alpha.mm0
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 +5 -0
- package/dist/common/components/WidgetContainer.d.ts +1 -1
- package/dist/common/components/charts/LineChart.d.ts +1 -0
- package/dist/common/constants/Analytics.d.ts +20 -10
- package/dist/index.es.js +6369 -6313
- package/dist/index.es.js.map +1 -1
- package/dist/microinsights/components/carouselheader/CarouselHeader.d.ts +1 -0
- package/dist/microinsights/components/microBeatCarousel/MicroBeatCarousel.d.ts +1 -0
- package/dist/trends/constants/TrendsWidget.d.ts +3 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,3 +1,8 @@
|
|
1
|
+
## [6.26.33] - 09-12-2025
|
2
|
+
|
3
|
+
- **ADDED** - Analytics events for new trends widget
|
4
|
+
- **UPDATED** - `InsightsMicroWidget` with optional analytics metadata prop
|
5
|
+
|
1
6
|
## [6.26.32] - 09-12-2025
|
2
7
|
|
3
8
|
- **FIXED** - Inconsistent totals in `Spending` widget when switching date ranges
|
@@ -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;
|
@@ -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,27 @@ 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_INSIGHT_CAROUSEL_LEFT: string;
|
107
|
+
TRENDS_CLICK_INSIGHT_CAROUSEL_RIGHT: string;
|
108
|
+
TRENDS_CLICK_INSIGHT_CAROUSEL_VIEW_MORE: string;
|
109
|
+
TRENDS_CLICK_LEGEND: string;
|
110
|
+
TRENDS_CLICK_LIST_ITEM: string;
|
111
|
+
TRENDS_CLICK_TABLE_ROW: string;
|
112
|
+
TRENDS_CLICK_TABLE_SORT: string;
|
113
|
+
TRENDS_CLICK_TIME_WINDOW: string;
|
114
|
+
TRENDS_CLICK_TOGGLE_VIEW: string;
|
110
115
|
TRENDS_CLICK_VIEW_MORE: string;
|
116
|
+
TRENDS_CLICK_VIEW_TRANSACTIONS: string;
|
117
|
+
TRENDS_HOVER_AREA: string;
|
118
|
+
TRENDS_HOVER_POINT: string;
|
119
|
+
TRENDS_HOVER_LEGEND: string;
|
111
120
|
TRENDS_LOAD_WIDGET: string;
|
121
|
+
TRENDS_VIEW_TRANSACTIONS: string;
|
112
122
|
};
|