@epilot/volt-ui 1.1.12 → 1.1.14

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 * as React from "react";
2
2
  import * as AlertDialogPrimitive from "@radix-ui/react-alert-dialog";
3
+ import { ButtonSize } from "../button/button";
3
4
  declare const AlertDialog: ({ ...props }: React.ComponentProps<typeof AlertDialogPrimitive.Root>) => import("react/jsx-runtime").JSX.Element;
4
5
  declare const AlertDialogTrigger: ({ ...props }: React.ComponentProps<typeof AlertDialogPrimitive.Trigger>) => import("react/jsx-runtime").JSX.Element;
5
6
  declare const AlertDialogPortal: ({ ...props }: React.ComponentProps<typeof AlertDialogPrimitive.Portal>) => import("react/jsx-runtime").JSX.Element;
@@ -9,10 +10,12 @@ declare const AlertDialogHeader: ({ className, ...props }: React.ComponentProps<
9
10
  declare const AlertDialogFooter: ({ className, ...props }: React.ComponentProps<"div">) => import("react/jsx-runtime").JSX.Element;
10
11
  declare const AlertDialogTitle: ({ className, ...props }: React.ComponentProps<typeof AlertDialogPrimitive.Title>) => import("react/jsx-runtime").JSX.Element;
11
12
  declare const AlertDialogDescription: ({ className, ...props }: React.ComponentProps<typeof AlertDialogPrimitive.Description>) => import("react/jsx-runtime").JSX.Element;
12
- declare const AlertDialogAction: ({ className, variant, ...props }: React.ComponentProps<typeof AlertDialogPrimitive.Action> & {
13
+ declare const AlertDialogAction: ({ className, variant, size, ...props }: React.ComponentProps<typeof AlertDialogPrimitive.Action> & {
13
14
  variant?: "primary" | "secondary" | "tertiary" | "destructive";
15
+ size?: ButtonSize;
14
16
  }) => import("react/jsx-runtime").JSX.Element;
15
- declare const AlertDialogCancel: ({ className, variant, ...props }: React.ComponentProps<typeof AlertDialogPrimitive.Cancel> & {
17
+ declare const AlertDialogCancel: ({ className, variant, size, ...props }: React.ComponentProps<typeof AlertDialogPrimitive.Cancel> & {
16
18
  variant?: "primary" | "secondary" | "tertiary" | "destructive";
19
+ size?: ButtonSize;
17
20
  }) => import("react/jsx-runtime").JSX.Element;
18
21
  export { AlertDialog, AlertDialogPortal, AlertDialogOverlay, AlertDialogTrigger, AlertDialogContent, AlertDialogHeader, AlertDialogFooter, AlertDialogTitle, AlertDialogDescription, AlertDialogAction, AlertDialogCancel, };