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