@blockscout/ui-toolkit 2.8.0-alpha.4 → 2.8.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.
@@ -1,5 +1,6 @@
1
1
  import { Dialog as ChakraDialog } from '@chakra-ui/react';
2
2
  import * as React from 'react';
3
+ export declare const DialogRoot: (props: ChakraDialog.RootProps) => React.JSX.Element;
3
4
  interface DialogContentProps extends ChakraDialog.ContentProps {
4
5
  portalled?: boolean;
5
6
  portalRef?: React.RefObject<HTMLElement>;
@@ -12,7 +13,6 @@ export interface DialogHeaderProps extends ChakraDialog.HeaderProps {
12
13
  onBackToClick?: () => void;
13
14
  }
14
15
  export declare const DialogHeader: React.ForwardRefExoticComponent<DialogHeaderProps & React.RefAttributes<HTMLDivElement>>;
15
- export declare const DialogRoot: React.FC<ChakraDialog.RootProps>;
16
16
  export declare const DialogFooter: React.ForwardRefExoticComponent<ChakraDialog.FooterProps & React.RefAttributes<HTMLDivElement>>;
17
17
  export declare const DialogBody: React.ForwardRefExoticComponent<ChakraDialog.BodyProps & React.RefAttributes<HTMLDivElement>>;
18
18
  export declare const DialogBackdrop: React.ForwardRefExoticComponent<ChakraDialog.BackdropProps & React.RefAttributes<HTMLDivElement>>;