@epilot/volt-ui 1.1.9 → 1.1.10
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/components/dialog/dialog.d.ts +4 -1
- package/dist/index.cjs.js +15 -15
- package/dist/index.es.js +1938 -1923
- package/package.json +1 -1
|
@@ -2,7 +2,10 @@ import * as React from "react";
|
|
|
2
2
|
import * as DialogPrimitive from "@radix-ui/react-dialog";
|
|
3
3
|
declare const Dialog: ({ ...props }: React.ComponentProps<typeof DialogPrimitive.Root>) => import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
declare const DialogTrigger: ({ ...props }: React.ComponentProps<typeof DialogPrimitive.Trigger>) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
-
|
|
5
|
+
type DialogPortalProps = Omit<React.ComponentProps<typeof DialogPrimitive.Portal>, "container"> & {
|
|
6
|
+
container: NonNullable<React.ComponentProps<typeof DialogPrimitive.Portal>["container"]>;
|
|
7
|
+
};
|
|
8
|
+
declare const DialogPortal: ({ ...props }: DialogPortalProps) => import("react/jsx-runtime").JSX.Element;
|
|
6
9
|
declare const DialogClose: ({ className, ...props }: React.ComponentProps<typeof DialogPrimitive.Close>) => import("react/jsx-runtime").JSX.Element;
|
|
7
10
|
declare const DialogOverlay: ({ className, ...props }: React.ComponentProps<typeof DialogPrimitive.Overlay>) => import("react/jsx-runtime").JSX.Element;
|
|
8
11
|
type DialogContentSize = "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "full-width";
|