@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
|
@@ -1,3 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
interface NetWorthMicroWidgetProps {
|
|
2
|
+
onCTAClick: () => void;
|
|
3
|
+
}
|
|
4
|
+
export declare const NetWorthMicroWidget: (({ onCTAClick }: NetWorthMicroWidgetProps) => import("react/jsx-runtime").JSX.Element) & {
|
|
2
5
|
displayName: string;
|
|
3
6
|
};
|
|
7
|
+
export {};
|
|
@@ -2,8 +2,7 @@ import { NetWorthCopy } from '../../../common';
|
|
|
2
2
|
interface NetworthDataProps {
|
|
3
3
|
amount: number;
|
|
4
4
|
copy: NetWorthCopy;
|
|
5
|
-
isDark: boolean;
|
|
6
5
|
trendValue: number;
|
|
7
6
|
}
|
|
8
|
-
declare const NetworthData: ({ amount, copy,
|
|
7
|
+
declare const NetworthData: ({ amount, copy, trendValue }: NetworthDataProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
8
|
export default NetworthData;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { NetWorthCopy } from '../../../common';
|
|
2
2
|
interface ZeroStateProps {
|
|
3
3
|
copy: NetWorthCopy;
|
|
4
|
-
isDark: boolean;
|
|
5
4
|
}
|
|
6
|
-
declare const ZeroState: ({ copy
|
|
5
|
+
declare const ZeroState: ({ copy }: ZeroStateProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
6
|
export default ZeroState;
|
package/package.json
CHANGED