@epilot/volt-ui 1.3.10 → 1.3.11
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/drawer/drawer.d.ts +2 -1
- package/dist/index.cjs.js +10 -10
- package/dist/index.es.js +1076 -1062
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -9,9 +9,10 @@ type DrawerPortalProps = Omit<React.ComponentProps<typeof DialogPrimitive.Portal
|
|
|
9
9
|
declare const DrawerPortal: ({ ...props }: DrawerPortalProps) => import("react/jsx-runtime").JSX.Element;
|
|
10
10
|
declare const DrawerClose: ({ className, ...props }: React.ComponentProps<typeof DialogPrimitive.Close>) => import("react/jsx-runtime").JSX.Element;
|
|
11
11
|
declare const DrawerOverlay: ({ className, ...props }: React.ComponentProps<typeof DialogPrimitive.Overlay>) => import("react/jsx-runtime").JSX.Element;
|
|
12
|
-
declare const DrawerContent: ({ className, children, showCloseButton, side, ...props }: React.ComponentProps<typeof DialogPrimitive.Content> & {
|
|
12
|
+
declare const DrawerContent: ({ className, children, showCloseButton, side, flush, ...props }: React.ComponentProps<typeof DialogPrimitive.Content> & {
|
|
13
13
|
showCloseButton?: boolean;
|
|
14
14
|
side?: DrawerSide;
|
|
15
|
+
flush?: boolean;
|
|
15
16
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
16
17
|
declare const DrawerHeader: ({ className, ...props }: React.ComponentProps<"div">) => import("react/jsx-runtime").JSX.Element;
|
|
17
18
|
declare const DrawerFooter: ({ className, ...props }: React.ComponentProps<"div">) => import("react/jsx-runtime").JSX.Element;
|