@6thbridge/hexa 0.0.83 → 0.0.84
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 +4 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -4
- package/dist/index.mjs.map +1 -1
- package/dist/output.css +18 -4
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -324,8 +324,9 @@ type DrawerPropsType = {
|
|
|
324
324
|
asChild?: boolean;
|
|
325
325
|
onOpenAutoFocus?: (e: Event) => void;
|
|
326
326
|
onCloseAutoFocus?: (e: Event) => void;
|
|
327
|
+
modal?: boolean;
|
|
327
328
|
};
|
|
328
|
-
declare const Drawer: ({ trigger, children, open, onOpenChange, hideCloseButton, footer, title, description, contentClassName, headerClassName, titleClassName, descriptionClassName, footerClassName, asChild, onOpenAutoFocus, drawerContentClassName, onCloseAutoFocus, id, }: Omit<DrawerRootType, "value"> & DrawerPropsType) => react_jsx_runtime.JSX.Element;
|
|
329
|
+
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_jsx_runtime.JSX.Element;
|
|
329
330
|
|
|
330
331
|
type LocaleOption = {
|
|
331
332
|
key: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -324,8 +324,9 @@ type DrawerPropsType = {
|
|
|
324
324
|
asChild?: boolean;
|
|
325
325
|
onOpenAutoFocus?: (e: Event) => void;
|
|
326
326
|
onCloseAutoFocus?: (e: Event) => void;
|
|
327
|
+
modal?: boolean;
|
|
327
328
|
};
|
|
328
|
-
declare const Drawer: ({ trigger, children, open, onOpenChange, hideCloseButton, footer, title, description, contentClassName, headerClassName, titleClassName, descriptionClassName, footerClassName, asChild, onOpenAutoFocus, drawerContentClassName, onCloseAutoFocus, id, }: Omit<DrawerRootType, "value"> & DrawerPropsType) => react_jsx_runtime.JSX.Element;
|
|
329
|
+
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_jsx_runtime.JSX.Element;
|
|
329
330
|
|
|
330
331
|
type LocaleOption = {
|
|
331
332
|
key: string;
|