@adamosuiteservices/ui 2.10.2 → 2.10.4
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/ui/dialog/dialog.d.ts +1 -1
- package/dist/custom-layered-styles.css +1 -1
- package/dist/dialog.cjs +10 -9
- package/dist/dialog.js +38 -37
- package/dist/styles.css +1 -1
- package/package.json +1 -1
|
@@ -14,5 +14,5 @@ declare function DialogHeader({ className, ...props }: React.ComponentProps<"div
|
|
|
14
14
|
declare function DialogFooter({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
|
|
15
15
|
declare function DialogTitle({ className, ...props }: React.ComponentProps<typeof DialogPrimitive.Title>): import("react/jsx-runtime").JSX.Element;
|
|
16
16
|
declare function DialogDescription({ className, ...props }: React.ComponentProps<typeof DialogPrimitive.Description>): import("react/jsx-runtime").JSX.Element;
|
|
17
|
-
declare function DialogBody({ className, ...props }: React.ComponentProps<
|
|
17
|
+
declare function DialogBody({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
|
|
18
18
|
export { Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogBody, DialogTrigger, };
|