vxui-react 1.3.1 → 1.3.3

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.
@@ -20,8 +20,10 @@ export interface DialogProps extends Pick<DialogPrimitive.DialogProps, 'defaultO
20
20
  scrollable?: boolean;
21
21
  /** Show the close (×) button. Default: true */
22
22
  closable?: boolean;
23
+ /** When true, the dialog will be displayed in fullscreen mode. Default: false */
24
+ fullscreen?: boolean;
23
25
  }
24
- export declare function Dialog({ trigger, title, description, children, footer, className, size, padding, placement, scrollable, closable, ...props }: DialogProps): import("react/jsx-runtime").JSX.Element;
26
+ export declare function Dialog({ trigger, title, description, children, footer, className, size, padding, placement, scrollable, closable, fullscreen, ...props }: DialogProps): import("react/jsx-runtime").JSX.Element;
25
27
  /**
26
28
  * Wraps any child element so that clicking it closes the parent Dialog.
27
29
  * Usage: <DialogClose asChild><Button>Cancel</Button></DialogClose>