@6thbridge/hexa 0.0.83 → 0.0.85
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 +5 -2
- package/dist/index.d.ts +5 -2
- package/dist/index.js +5 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -5
- package/dist/index.mjs.map +1 -1
- package/dist/output.css +38 -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;
|
|
@@ -577,8 +578,10 @@ type CalendarInputProps = {
|
|
|
577
578
|
maxDate?: Date | string;
|
|
578
579
|
closeOnSelect?: boolean;
|
|
579
580
|
modal?: boolean;
|
|
581
|
+
minDate?: Date | string;
|
|
582
|
+
showTime?: boolean;
|
|
580
583
|
};
|
|
581
|
-
declare const CalendarInput: ({ label, optional, onChange, error, helpText, value, maxDate, closeOnSelect, modal, }: CalendarInputProps) => react_jsx_runtime.JSX.Element;
|
|
584
|
+
declare const CalendarInput: ({ label, optional, onChange, error, helpText, value, maxDate, closeOnSelect, modal, minDate, showTime, }: CalendarInputProps) => react_jsx_runtime.JSX.Element;
|
|
582
585
|
|
|
583
586
|
declare const RadioGroup: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
584
587
|
className?: 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;
|
|
@@ -577,8 +578,10 @@ type CalendarInputProps = {
|
|
|
577
578
|
maxDate?: Date | string;
|
|
578
579
|
closeOnSelect?: boolean;
|
|
579
580
|
modal?: boolean;
|
|
581
|
+
minDate?: Date | string;
|
|
582
|
+
showTime?: boolean;
|
|
580
583
|
};
|
|
581
|
-
declare const CalendarInput: ({ label, optional, onChange, error, helpText, value, maxDate, closeOnSelect, modal, }: CalendarInputProps) => react_jsx_runtime.JSX.Element;
|
|
584
|
+
declare const CalendarInput: ({ label, optional, onChange, error, helpText, value, maxDate, closeOnSelect, modal, minDate, showTime, }: CalendarInputProps) => react_jsx_runtime.JSX.Element;
|
|
582
585
|
|
|
583
586
|
declare const RadioGroup: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
584
587
|
className?: string;
|