@cryptofi/core-ui 1.2.3 → 1.2.4
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 +2 -2
- package/dist/index.js.map +1 -1
- package/dist/types/index.d.ts +4 -1
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -348,7 +348,10 @@ declare const CfAreaChart: ({ data, dataKey, width, height, areaType, showToolti
|
|
|
348
348
|
*
|
|
349
349
|
* @description Use this component to visualize Chakra's breakpoints for debugging responsive styles.
|
|
350
350
|
*/
|
|
351
|
-
declare const CfBreakpointDebugger: (
|
|
351
|
+
declare const CfBreakpointDebugger: ({ isCloseable, onClick }: {
|
|
352
|
+
isCloseable?: boolean;
|
|
353
|
+
onClick?: () => void;
|
|
354
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
352
355
|
//# sourceMappingURL=BreakpointDebugger.d.ts.map
|
|
353
356
|
|
|
354
357
|
declare const CfButtonGroup: ({ children, ...rest }: ButtonGroupProps) => react_jsx_runtime.JSX.Element;
|