@cryptofi/core-ui 0.17.0 → 0.18.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/dist/index.js +4 -4
- package/dist/types/index.d.ts +2 -1
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -294,7 +294,7 @@ interface CfInputProps<T extends FieldValues> extends InputProps {
|
|
|
294
294
|
}
|
|
295
295
|
declare const CfInput: <T extends FieldValues>(props: CfInputProps<T>) => react_jsx_runtime.JSX.Element;
|
|
296
296
|
|
|
297
|
-
declare const CfLineChart: ({ data, dataKey, width, height, lineType, showTooltip, isAnimated, }: {
|
|
297
|
+
declare const CfLineChart: ({ data, dataKey, width, height, lineType, showTooltip, isAnimated, formatter, }: {
|
|
298
298
|
data: any[] | undefined;
|
|
299
299
|
dataKey: string;
|
|
300
300
|
width?: string | undefined;
|
|
@@ -302,6 +302,7 @@ declare const CfLineChart: ({ data, dataKey, width, height, lineType, showToolti
|
|
|
302
302
|
lineType?: CurveType | undefined;
|
|
303
303
|
showTooltip?: boolean | undefined;
|
|
304
304
|
isAnimated?: boolean | undefined;
|
|
305
|
+
formatter?: ((value: number) => string) | undefined;
|
|
305
306
|
}) => react_jsx_runtime.JSX.Element;
|
|
306
307
|
//# sourceMappingURL=LineChart.d.ts.map
|
|
307
308
|
|