@cryptofi/core-ui 0.18.0 → 0.19.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/README.md +4 -2
- package/dist/index.js +5 -5
- package/dist/index.js.map +1 -1
- package/dist/types/index.d.ts +1 -2
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -257,7 +257,7 @@ declare const uiColors: {
|
|
|
257
257
|
};
|
|
258
258
|
//# sourceMappingURL=uiColors.d.ts.map
|
|
259
259
|
|
|
260
|
-
declare const CfAreaChart: ({ data, dataKey, width, height, areaType, showTooltip, isAnimated,
|
|
260
|
+
declare const CfAreaChart: ({ data, dataKey, width, height, areaType, showTooltip, isAnimated, }: {
|
|
261
261
|
data: any[] | undefined;
|
|
262
262
|
dataKey: string;
|
|
263
263
|
width?: string | undefined;
|
|
@@ -265,7 +265,6 @@ declare const CfAreaChart: ({ data, dataKey, width, height, areaType, showToolti
|
|
|
265
265
|
areaType?: CurveType | undefined;
|
|
266
266
|
showTooltip?: boolean | undefined;
|
|
267
267
|
isAnimated?: boolean | undefined;
|
|
268
|
-
formatter?: ((value: number) => string) | undefined;
|
|
269
268
|
}) => react_jsx_runtime.JSX.Element;
|
|
270
269
|
//# sourceMappingURL=AreaChart.d.ts.map
|
|
271
270
|
|