@mx-cartographer/experiences 6.5.8 → 6.6.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 +4 -0
- package/dist/index.es.js +2624 -2549
- package/dist/index.es.js.map +1 -1
- package/dist/networth/NetWorthMicroWidget.d.ts +3 -0
- package/dist/networth/components/micro/Header.d.ts +7 -0
- package/dist/networth/components/micro/NetworthData.d.ts +9 -0
- package/dist/networth/components/micro/ZeroState.d.ts +7 -0
- package/dist/networth/index.d.ts +2 -1
- package/package.json +1 -1
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { NetWorthCopy } from '../../../common';
|
|
2
|
+
interface NetworthDataProps {
|
|
3
|
+
amount: number;
|
|
4
|
+
copy: NetWorthCopy;
|
|
5
|
+
isDark: boolean;
|
|
6
|
+
trendValue: number;
|
|
7
|
+
}
|
|
8
|
+
declare const NetworthData: ({ amount, copy, isDark, trendValue }: NetworthDataProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export default NetworthData;
|
package/dist/networth/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
export { NetWorthStore } from './stores/NetWorthStore';
|
|
2
1
|
export { default as NetWorthChart } from './components/NetWorthChart';
|
|
3
2
|
export { default as NetWorthList } from './components/NetWorthList';
|
|
4
3
|
export { default as NetWorthSummary } from './components/NetWorthSummary';
|
|
4
|
+
export { NetWorthStore } from './stores/NetWorthStore';
|
|
5
|
+
export { NetWorthMicroWidget } from './NetWorthMicroWidget';
|
|
5
6
|
export { NetWorthWidget } from './NetWorthWidget';
|