@sciol/xyzen 0.3.15 → 0.3.17
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/animate-ui/components/radix/sheet.d.ts +2 -2
- package/dist/xyzen.es.js +1282 -1283
- package/dist/xyzen.umd.js +59 -59
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SheetCloseProps as SheetClosePrimitiveProps, SheetContentProps as SheetContentPrimitiveProps, SheetDescriptionProps as SheetDescriptionPrimitiveProps, SheetFooterProps as SheetFooterPrimitiveProps, SheetHeaderProps as SheetHeaderPrimitiveProps, SheetProps as SheetPrimitiveProps, SheetTitleProps as SheetTitlePrimitiveProps, SheetTriggerProps as SheetTriggerPrimitiveProps } from '../../primitives/radix/sheet';
|
|
2
2
|
type SheetProps = SheetPrimitiveProps;
|
|
3
3
|
declare function Sheet(props: SheetProps): import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
type SheetTriggerProps = SheetTriggerPrimitiveProps;
|
|
@@ -17,4 +17,4 @@ type SheetTitleProps = SheetTitlePrimitiveProps;
|
|
|
17
17
|
declare function SheetTitle({ className, ...props }: SheetTitleProps): import("react/jsx-runtime").JSX.Element;
|
|
18
18
|
type SheetDescriptionProps = SheetDescriptionPrimitiveProps;
|
|
19
19
|
declare function SheetDescription({ className, ...props }: SheetDescriptionProps): import("react/jsx-runtime").JSX.Element;
|
|
20
|
-
export { Sheet,
|
|
20
|
+
export { Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, type SheetCloseProps, type SheetContentProps, type SheetDescriptionProps, type SheetFooterProps, type SheetHeaderProps, type SheetProps, type SheetTitleProps, type SheetTriggerProps, };
|