@6thbridge/hexa 0.0.0-pr73-126 → 0.0.0-pr73-127

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.d.mts CHANGED
@@ -211,9 +211,10 @@ type DialogPropsType = {
211
211
  onInteractOutside?: (e: Event) => void;
212
212
  onPointerDownOutside?: (e: Event) => void;
213
213
  onEscapeKeyDown?: (e: KeyboardEvent) => void;
214
+ closeOnOutsideClick?: boolean;
214
215
  };
215
216
  declare const Dialog: {
216
- ({ trigger, children, open, onOpenChange, hideCloseButton, footer, title, description, contentClassName, headerClassName, titleClassName, descriptionClassName, footerClassName, asChild, onOpenAutoFocus, onCloseAutoFocus, onEscapeKeyDown, onInteractOutside, onPointerDownOutside, ...props }: React$1.ComponentPropsWithoutRef<typeof DialogPrimitive.Root> & DialogPropsType): React$1.JSX.Element;
217
+ ({ trigger, children, open, onOpenChange, hideCloseButton, footer, title, description, contentClassName, headerClassName, titleClassName, descriptionClassName, footerClassName, asChild, onOpenAutoFocus, onCloseAutoFocus, onEscapeKeyDown, onInteractOutside, onPointerDownOutside, closeOnOutsideClick, ...props }: React$1.ComponentPropsWithoutRef<typeof DialogPrimitive.Root> & DialogPropsType): React$1.JSX.Element;
217
218
  displayName: string | undefined;
218
219
  };
219
220
 
package/dist/index.d.ts CHANGED
@@ -211,9 +211,10 @@ type DialogPropsType = {
211
211
  onInteractOutside?: (e: Event) => void;
212
212
  onPointerDownOutside?: (e: Event) => void;
213
213
  onEscapeKeyDown?: (e: KeyboardEvent) => void;
214
+ closeOnOutsideClick?: boolean;
214
215
  };
215
216
  declare const Dialog: {
216
- ({ trigger, children, open, onOpenChange, hideCloseButton, footer, title, description, contentClassName, headerClassName, titleClassName, descriptionClassName, footerClassName, asChild, onOpenAutoFocus, onCloseAutoFocus, onEscapeKeyDown, onInteractOutside, onPointerDownOutside, ...props }: React$1.ComponentPropsWithoutRef<typeof DialogPrimitive.Root> & DialogPropsType): React$1.JSX.Element;
217
+ ({ trigger, children, open, onOpenChange, hideCloseButton, footer, title, description, contentClassName, headerClassName, titleClassName, descriptionClassName, footerClassName, asChild, onOpenAutoFocus, onCloseAutoFocus, onEscapeKeyDown, onInteractOutside, onPointerDownOutside, closeOnOutsideClick, ...props }: React$1.ComponentPropsWithoutRef<typeof DialogPrimitive.Root> & DialogPropsType): React$1.JSX.Element;
217
218
  displayName: string | undefined;
218
219
  };
219
220