@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.
@@ -0,0 +1,3 @@
1
+ export declare const NetWorthMicroWidget: (() => import("react/jsx-runtime").JSX.Element) & {
2
+ displayName: string;
3
+ };
@@ -0,0 +1,7 @@
1
+ import { NetWorthCopy } from '../../../common';
2
+ interface HeaderProps {
3
+ copy: NetWorthCopy;
4
+ isDark: boolean;
5
+ }
6
+ declare const Header: ({ copy, isDark }: HeaderProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default Header;
@@ -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;
@@ -0,0 +1,7 @@
1
+ import { NetWorthCopy } from '../../../common';
2
+ interface ZeroStateProps {
3
+ copy: NetWorthCopy;
4
+ isDark: boolean;
5
+ }
6
+ declare const ZeroState: ({ copy, isDark }: ZeroStateProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default ZeroState;
@@ -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';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mx-cartographer/experiences",
3
- "version": "6.5.8",
3
+ "version": "6.6.0",
4
4
  "description": "Library containing experience widgets",
5
5
  "main": "dist/index.es.js",
6
6
  "types": "dist/index.d.ts",