@mx-cartographer/experiences 6.7.0 → 6.9.0-alpha.bb1

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,15 +1,14 @@
1
- ## [6.7.0] - 06-18-2025
1
+ ## [6.9.0] - 06-18-2025
2
2
 
3
- - **UPDATED** - `HelpWidget` to be wrapped in `WidgetContainer` in order to be used as a standalone widget
3
+ - **ADDED** - `TransactionRulesWidget`
4
4
 
5
- ## [6.6.5] - 06-19-2025
5
+ ## [6.8.0] - 06-18-2025
6
6
 
7
- - **FIXED** - Dashboard CardHeader Button
7
+ - **ADDED** - `NoticationSettingsWidget`
8
8
 
9
- ## [6.6.4] - 06-19-2025
9
+ ## [6.7.0] - 06-18-2025
10
10
 
11
- - **ADDED** - `MicroWidgetContainer` and `Analytics` for `NetWorthMicroWidget`
12
- - **UPDATED** - Cosmetic updates to `NetWorthMicroWidget` based on Figma and updated Default/Zero state logic.
11
+ - **UPDATED** - `HelpWidget` to be wrapped in `WidgetContainer` in order to be used as a standalone widget
13
12
 
14
13
  ## [6.6.3] - 06-18-2025
15
14
 
@@ -7,7 +7,6 @@ export * from './dialog';
7
7
  export * from './donuts';
8
8
  export * from './drawer';
9
9
  export { default as ErrorBoundary } from './ErrorBoundary';
10
- export { default as MicroWidgetContainer } from './MicroWidgetContainer';
11
10
  export { default as MiniWidgetContainer } from './MiniWidgetContainer';
12
11
  export { default as WidgetContainer } from './WidgetContainer';
13
12
  export { default as ConnectDrawer } from './ConnectDrawer';
@@ -40,7 +40,6 @@ 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;
44
43
  NET_WORTH_WIDGET_CLICK_ASSETS_LIABILITIES: string;
45
44
  NET_WORTH_WIDGET_CLICK_FILTER: string;
46
45
  NET_WORTH_WIDGET_CLICK_TIMEFRAME: string;
@@ -6,4 +6,5 @@ export interface MiniWidgetProps {
6
6
  export interface WidgetProps {
7
7
  onBackClick?: () => void;
8
8
  sx?: SxProps;
9
+ title?: string;
9
10
  }