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