diff --git a/packages/react/components/Dialog.tsx b/packages/react/components/Dialog.tsx index 7343fcf..d293879 100644 --- a/packages/react/components/Dialog.tsx +++ b/packages/react/components/Dialog.tsx @@ -113,13 +113,17 @@ interface DialogOverlay const DialogOverlay = React.forwardRef( (props, ref) => { const [{ opened }, setContext] = useDialogContext(); - const [variantProps, { children, closeOnClick, onClick, ...otherProps }] = - resolveDialogOverlayVariant({ ...props, opened }); + const [variantProps, otherPropsCompressed] = resolveDialogOverlayVariant({ + ...props, + opened, + }); + const { children, closeOnClick, onClick, ...otherPropsExtracted } = + otherPropsCompressed; return ( <> {ReactDOM.createPortal(
{ @@ -192,11 +196,14 @@ interface DialogContent const DialogContent = React.forwardRef( (props, ref) => { const [{ opened }] = useDialogContext(); - const [variantProps, { children, ...otherProps }] = - resolveDialogContentVariant({ ...props, opened }); + const [variantProps, otherPropsCompressed] = resolveDialogContentVariant({ + ...props, + opened, + }); + const { children, ...otherPropsExtracted } = otherPropsCompressed; return (
@@ -254,11 +261,12 @@ interface DialogHeaderProps const DialogHeader = React.forwardRef( (props, ref) => { - const [variantProps, { children, ...otherProps }] = + const [variantProps, otherPropsCompressed] = resolveDialogHeaderVariant(props); + const { children, ...otherPropsExtracted } = otherPropsCompressed; return (
@@ -328,11 +336,12 @@ interface DialogSubtitleProps const DialogTitle = React.forwardRef( (props, ref) => { - const [variantProps, { children, ...otherProps }] = + const [variantProps, otherPropsCompressed] = resolveDialogTitleVariant(props); + const { children, ...otherPropsExtracted } = otherPropsCompressed; return (

@@ -346,11 +355,12 @@ const DialogSubtitle = React.forwardRef< HTMLHeadingElement, DialogSubtitleProps >((props, ref) => { - const [variantProps, { children, ...otherProps }] = + const [variantProps, otherPropsCompressed] = resolveDialogSubtitleVariant(props); + const { children, ...otherPropsExtracted } = otherPropsCompressed; return (

@@ -385,11 +395,12 @@ interface DialogFooterProps const DialogFooter = React.forwardRef( (props, ref) => { - const [variantProps, { children, ...otherProps }] = + const [variantProps, otherPropsCompressed] = resolveDialogFooterVariant(props); + const { children, ...otherPropsExtracted } = otherPropsCompressed; return (