@mx-cartographer/experiences 6.6.3 → 6.6.4
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/MicroWidgetContainer.d.ts +10 -0
- package/dist/common/components/index.d.ts +1 -0
- package/dist/common/constants/Analytics.d.ts +1 -0
- package/dist/index.es.js +2043 -2028
- package/dist/index.es.js.map +1 -1
- package/dist/networth/NetWorthMicroWidget.d.ts +5 -1
- package/dist/networth/components/micro/NetworthData.d.ts +1 -2
- package/dist/networth/components/micro/ZeroState.d.ts +1 -2
- package/package.json +1 -1
- package/dist/networth/components/micro/Header.d.ts +0 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
## [6.6.4] - 06-19-2025
|
|
2
|
+
|
|
3
|
+
- **ADDED** - `MicroWidgetContainer` and `Analytics` for `NetWorthMicroWidget`
|
|
4
|
+
- **UPDATED** - Cosmetic updates to `NetWorthMicroWidget` based on Figma and updated Default/Zero state logic.
|
|
5
|
+
|
|
1
6
|
## [6.6.3] - 06-18-2025
|
|
2
7
|
|
|
3
8
|
- **FIXED** - Budgets widget column layout breakpoints
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { SxProps } from '@mui/material/styles';
|
|
2
|
+
interface MicroWidgetContainerProps {
|
|
3
|
+
className?: string;
|
|
4
|
+
ctaLabel: string;
|
|
5
|
+
onCTAClick: () => void;
|
|
6
|
+
sx?: SxProps;
|
|
7
|
+
title: string;
|
|
8
|
+
}
|
|
9
|
+
declare const MicroWidgetContainer: React.FC<React.PropsWithChildren<MicroWidgetContainerProps>>;
|
|
10
|
+
export default MicroWidgetContainer;
|
|
@@ -6,6 +6,7 @@ export * from './daterangeselector';
|
|
|
6
6
|
export * from './dialog';
|
|
7
7
|
export * from './donuts';
|
|
8
8
|
export * from './drawer';
|
|
9
|
+
export { default as MicroWidgetContainer } from './MicroWidgetContainer';
|
|
9
10
|
export { default as MiniWidgetContainer } from './MiniWidgetContainer';
|
|
10
11
|
export { default as WidgetContainer } from './WidgetContainer';
|
|
11
12
|
export { default as ConnectDrawer } from './ConnectDrawer';
|
|
@@ -40,6 +40,7 @@ export declare const ANALYTICS_EVENTS: {
|
|
|
40
40
|
INVESTMENT_WIDGET_ANALYSIS_CLICK: string;
|
|
41
41
|
INVESTMENT_WIDGET_DETAILS_CLICK: string;
|
|
42
42
|
NET_WORTH_VIEW: string;
|
|
43
|
+
NETWORTH_MICRO_WIDGET_CTA: string;
|
|
43
44
|
NET_WORTH_WIDGET_CLICK_ASSETS_LIABILITIES: string;
|
|
44
45
|
NET_WORTH_WIDGET_CLICK_FILTER: string;
|
|
45
46
|
NET_WORTH_WIDGET_CLICK_TIMEFRAME: string;
|