@mx-cartographer/experiences 6.20.0-alpha.bb1 → 6.20.0
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,11 @@
|
|
|
1
|
+
## [6.20.0] - 07-31-2025
|
|
2
|
+
|
|
3
|
+
- **UPDATED** - to MXUI 1.2.1 to introduce updates colors and improved design consistency
|
|
4
|
+
|
|
5
|
+
## [6.19.1] - 08-01-2025
|
|
6
|
+
|
|
7
|
+
- **UPDATED** - Cleaned up BNC Micro Widget Container and configured variants
|
|
8
|
+
|
|
1
9
|
## [6.19.0] - 07-31-2025
|
|
2
10
|
|
|
3
11
|
- **ADDED** - Connect More Accounts Card for `Finstrong`.
|
|
@@ -6,6 +6,7 @@ interface MicroWidgetContainerProps {
|
|
|
6
6
|
subHeader?: string;
|
|
7
7
|
sx?: SxProps;
|
|
8
8
|
title: string;
|
|
9
|
+
variant?: 'borderless' | 'card';
|
|
9
10
|
}
|
|
10
11
|
declare const MicroWidgetContainer: React.FC<React.PropsWithChildren<MicroWidgetContainerProps>>;
|
|
11
12
|
export default MicroWidgetContainer;
|
|
@@ -4,5 +4,7 @@ interface EmptyWidgetProps {
|
|
|
4
4
|
subText: string;
|
|
5
5
|
sx?: SxProps;
|
|
6
6
|
}
|
|
7
|
-
export declare const GoalsMicroEmptyState: ({ header, subText, sx }: EmptyWidgetProps) => import("react/jsx-runtime").JSX.Element
|
|
7
|
+
export declare const GoalsMicroEmptyState: (({ header, subText, sx }: EmptyWidgetProps) => import("react/jsx-runtime").JSX.Element) & {
|
|
8
|
+
displayName: string;
|
|
9
|
+
};
|
|
8
10
|
export {};
|