@cryptofi/core-ui 0.66.0 → 1.0.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 +1 -1
- package/dist/index.js.map +1 -1
- package/dist/types/index.d.ts +4 -2
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _chakra_ui_react from '@chakra-ui/react';
|
|
2
|
-
import { IconProps, ButtonGroupProps, ButtonProps, CardProps, FlexProps, CheckboxProps, SystemStyleObject, InputProps as InputProps$1, ModalProps, LayoutProps, LinkProps, SelectProps, TagProps, ChakraComponent, UseToastOptions } from '@chakra-ui/react';
|
|
2
|
+
import { IconProps, ButtonGroupProps, ButtonProps, CardProps, FlexProps, CheckboxProps, SystemStyleObject, InputProps as InputProps$1, ModalProps, LayoutProps, ModalBodyProps, ModalContentProps, LinkProps, SelectProps, TagProps, ChakraComponent, UseToastOptions } from '@chakra-ui/react';
|
|
3
3
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
4
4
|
import React, { SVGProps, CSSProperties, ReactElement, ReactNode, FormEvent, Dispatch, SetStateAction } from 'react';
|
|
5
5
|
import { CurveType } from 'recharts/types/shape/Curve';
|
|
@@ -431,8 +431,10 @@ interface Props$2 extends ModalProps {
|
|
|
431
431
|
bodyBackground?: string;
|
|
432
432
|
isDisabledCloseButton?: boolean;
|
|
433
433
|
maxHeight?: LayoutProps['maxH'];
|
|
434
|
+
bodyProps?: ModalBodyProps;
|
|
435
|
+
contentProps?: ModalContentProps;
|
|
434
436
|
}
|
|
435
|
-
declare const CfModal: ({ isOpen, onClose, headerContent, footerContent, children, isCentered, size,
|
|
437
|
+
declare const CfModal: ({ isOpen, onClose, headerContent, footerContent, children, isCentered, size, isDisabledCloseButton, bodyProps, contentProps, ...rest }: Props$2) => react_jsx_runtime.JSX.Element;
|
|
436
438
|
//# sourceMappingURL=Modal.d.ts.map
|
|
437
439
|
|
|
438
440
|
interface CfNavLinkProps extends LinkProps {
|