@epilot/volt-ui 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.
@@ -5,7 +5,9 @@ declare const AlertDialog: ({ ...props }: React.ComponentProps<typeof AlertDialo
5
5
  declare const AlertDialogTrigger: ({ ...props }: React.ComponentProps<typeof AlertDialogPrimitive.Trigger>) => import("react/jsx-runtime").JSX.Element;
6
6
  declare const AlertDialogPortal: ({ ...props }: React.ComponentProps<typeof AlertDialogPrimitive.Portal>) => import("react/jsx-runtime").JSX.Element;
7
7
  declare const AlertDialogOverlay: ({ className, ...props }: React.ComponentProps<typeof AlertDialogPrimitive.Overlay>) => import("react/jsx-runtime").JSX.Element;
8
- declare const AlertDialogContent: ({ className, ...props }: React.ComponentProps<typeof AlertDialogPrimitive.Content>) => import("react/jsx-runtime").JSX.Element;
8
+ declare const AlertDialogContent: ({ className, size, ...props }: React.ComponentProps<typeof AlertDialogPrimitive.Content> & {
9
+ size?: "xl" | "lg" | "md" | "sm";
10
+ }) => import("react/jsx-runtime").JSX.Element;
9
11
  declare const AlertDialogHeader: ({ className, ...props }: React.ComponentProps<"div">) => import("react/jsx-runtime").JSX.Element;
10
12
  declare const AlertDialogFooter: ({ className, ...props }: React.ComponentProps<"div">) => import("react/jsx-runtime").JSX.Element;
11
13
  declare const AlertDialogTitle: ({ className, ...props }: React.ComponentProps<typeof AlertDialogPrimitive.Title>) => import("react/jsx-runtime").JSX.Element;
@@ -15,7 +17,7 @@ declare const AlertDialogAction: ({ className, variant, size, destructive, ...pr
15
17
  size?: ButtonSize;
16
18
  destructive?: boolean;
17
19
  }) => import("react/jsx-runtime").JSX.Element;
18
- declare const AlertDialogCancel: ({ className, variant, size, ...props }: React.ComponentProps<typeof AlertDialogPrimitive.Cancel> & {
20
+ declare const AlertDialogCancel: ({ className, variant, size, destructive, ...props }: React.ComponentProps<typeof AlertDialogPrimitive.Cancel> & {
19
21
  variant?: ButtonVariant;
20
22
  size?: ButtonSize;
21
23
  destructive?: boolean;