@mx-cartographer/experiences 6.26.33-alpha.mm0 → 6.26.33
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 +2 -3
- package/dist/common/components/WidgetContainer.d.ts +1 -1
- package/dist/common/components/charts/LineChart.d.ts +0 -1
- package/dist/common/components/listitems/ToggleButtonListItem.d.ts +2 -1
- package/dist/common/constants/Analytics.d.ts +10 -20
- package/dist/index.es.js +6329 -6373
- package/dist/index.es.js.map +1 -1
- package/dist/microinsights/components/carouselheader/CarouselHeader.d.ts +0 -1
- package/dist/microinsights/components/microBeatCarousel/MicroBeatCarousel.d.ts +0 -1
- package/package.json +1 -1
- package/dist/trends/constants/TrendsWidget.d.ts +0 -3
package/CHANGELOG.md
CHANGED
@@ -1,7 +1,6 @@
|
|
1
|
-
## [6.26.33] - 09-
|
1
|
+
## [6.26.33] - 09-15-2025
|
2
2
|
|
3
|
-
- **
|
4
|
-
- **UPDATED** - `InsightsMicroWidget` with optional analytics metadata prop
|
3
|
+
- **FIXED** - Added Truncation/Bold to Notification Type Account Names.
|
5
4
|
|
6
5
|
## [6.26.32] - 09-12-2025
|
7
6
|
|
@@ -19,7 +19,7 @@ interface WidgetContainerProps {
|
|
19
19
|
dateRangeVariant?: 'outlined' | 'text' | 'readonly' | 'timeframebuttons' | 'timeframetabs';
|
20
20
|
hasDivider?: boolean;
|
21
21
|
onBackClick?: () => void;
|
22
|
-
onAccountsFilterClick?: (
|
22
|
+
onAccountsFilterClick?: () => void;
|
23
23
|
showDividerAboveDateSelector?: boolean;
|
24
24
|
sx?: SxProps;
|
25
25
|
title?: string;
|
@@ -4,10 +4,11 @@ interface ToggleButtonListItemProps {
|
|
4
4
|
endIcon?: React.ReactNode;
|
5
5
|
isChecked: boolean;
|
6
6
|
isDisabled?: boolean;
|
7
|
+
isPrimaryTextBold?: boolean;
|
7
8
|
onClick: () => void;
|
8
9
|
onToggle: () => void;
|
9
10
|
primaryText: string;
|
10
11
|
secondaryText?: string;
|
11
12
|
}
|
12
|
-
export declare const ToggleButtonListItem: ({ avatar, endIcon, isChecked, isDisabled, onClick, onToggle, primaryText, secondaryText, }: ToggleButtonListItemProps) => import("react/jsx-runtime").JSX.Element;
|
13
|
+
export declare const ToggleButtonListItem: ({ avatar, endIcon, isChecked, isDisabled, isPrimaryTextBold, onClick, onToggle, primaryText, secondaryText, }: ToggleButtonListItemProps) => import("react/jsx-runtime").JSX.Element;
|
13
14
|
export {};
|
@@ -86,6 +86,16 @@ 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;
|
89
99
|
WIDGET_BACK_CLICK: string;
|
90
100
|
GOALS_CLICK_GET_STARTED: string;
|
91
101
|
GOALS_CLICK_VIEW_DETAILS: string;
|
@@ -96,27 +106,7 @@ export declare const ANALYTICS_EVENTS: {
|
|
96
106
|
RECURRING_TRANSACTIONS_CLICK_GET_STARTED: string;
|
97
107
|
RECURRING_TRANSACTIONS_CLICK_VIEW_ALL: string;
|
98
108
|
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;
|
104
109
|
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;
|
115
110
|
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;
|
120
111
|
TRENDS_LOAD_WIDGET: string;
|
121
|
-
TRENDS_VIEW_TRANSACTIONS: string;
|
122
112
|
};
|