@6thbridge/hexa 0.0.0-pr86-180 → 0.0.0-pr87-182
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/index.d.mts +4 -3
- package/dist/index.d.ts +4 -3
- package/dist/index.js +9 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +9 -3
- package/dist/index.mjs.map +1 -1
- package/dist/output.css +9 -17
- package/package.json +3 -3
- package/tsup.config.ts +11 -0
package/dist/index.d.mts
CHANGED
|
@@ -409,8 +409,6 @@ type DrawerPropsType = {
|
|
|
409
409
|
description?: React$1.ReactNode;
|
|
410
410
|
footer?: React$1.ReactNode;
|
|
411
411
|
hideCloseButton?: boolean;
|
|
412
|
-
full?: boolean;
|
|
413
|
-
containerRelative?: boolean;
|
|
414
412
|
contentClassName?: string;
|
|
415
413
|
drawerContentClassName?: string;
|
|
416
414
|
headerClassName?: string;
|
|
@@ -421,8 +419,11 @@ type DrawerPropsType = {
|
|
|
421
419
|
onOpenAutoFocus?: (e: Event) => void;
|
|
422
420
|
onCloseAutoFocus?: (e: Event) => void;
|
|
423
421
|
modal?: boolean;
|
|
422
|
+
size?: "default" | "full";
|
|
423
|
+
usePortal?: boolean;
|
|
424
|
+
showOverlay?: boolean;
|
|
424
425
|
};
|
|
425
|
-
declare const Drawer: ({ trigger, children, open, onOpenChange, hideCloseButton,
|
|
426
|
+
declare const Drawer: ({ trigger, children, open, onOpenChange, hideCloseButton, footer, title, description, contentClassName, headerClassName, titleClassName, descriptionClassName, footerClassName, asChild, onOpenAutoFocus, drawerContentClassName, onCloseAutoFocus, id, modal, size, usePortal, showOverlay, }: Omit<DrawerRootType, "value"> & DrawerPropsType) => React$1.JSX.Element;
|
|
426
427
|
|
|
427
428
|
type LocaleOption = {
|
|
428
429
|
key: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -409,8 +409,6 @@ type DrawerPropsType = {
|
|
|
409
409
|
description?: React$1.ReactNode;
|
|
410
410
|
footer?: React$1.ReactNode;
|
|
411
411
|
hideCloseButton?: boolean;
|
|
412
|
-
full?: boolean;
|
|
413
|
-
containerRelative?: boolean;
|
|
414
412
|
contentClassName?: string;
|
|
415
413
|
drawerContentClassName?: string;
|
|
416
414
|
headerClassName?: string;
|
|
@@ -421,8 +419,11 @@ type DrawerPropsType = {
|
|
|
421
419
|
onOpenAutoFocus?: (e: Event) => void;
|
|
422
420
|
onCloseAutoFocus?: (e: Event) => void;
|
|
423
421
|
modal?: boolean;
|
|
422
|
+
size?: "default" | "full";
|
|
423
|
+
usePortal?: boolean;
|
|
424
|
+
showOverlay?: boolean;
|
|
424
425
|
};
|
|
425
|
-
declare const Drawer: ({ trigger, children, open, onOpenChange, hideCloseButton,
|
|
426
|
+
declare const Drawer: ({ trigger, children, open, onOpenChange, hideCloseButton, footer, title, description, contentClassName, headerClassName, titleClassName, descriptionClassName, footerClassName, asChild, onOpenAutoFocus, drawerContentClassName, onCloseAutoFocus, id, modal, size, usePortal, showOverlay, }: Omit<DrawerRootType, "value"> & DrawerPropsType) => React$1.JSX.Element;
|
|
426
427
|
|
|
427
428
|
type LocaleOption = {
|
|
428
429
|
key: string;
|