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