@6thbridge/hexa 0.0.0-pr54-69 → 0.0.0-pr57-81
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 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -4
- package/dist/index.mjs.map +1 -1
- package/dist/output.css +8 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -566,8 +566,11 @@ type CalendarInputProps = {
|
|
|
566
566
|
optional?: boolean;
|
|
567
567
|
onChange: (value: string | null) => void;
|
|
568
568
|
value?: string;
|
|
569
|
+
maxDate?: Date | string;
|
|
570
|
+
closeOnSelect?: boolean;
|
|
571
|
+
modal?: boolean;
|
|
569
572
|
};
|
|
570
|
-
declare const CalendarInput: ({ label, optional, onChange, error, helpText, value, }: CalendarInputProps) => react_jsx_runtime.JSX.Element;
|
|
573
|
+
declare const CalendarInput: ({ label, optional, onChange, error, helpText, value, maxDate, closeOnSelect, modal, }: CalendarInputProps) => react_jsx_runtime.JSX.Element;
|
|
571
574
|
|
|
572
575
|
declare const RadioGroup: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
573
576
|
className?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -566,8 +566,11 @@ type CalendarInputProps = {
|
|
|
566
566
|
optional?: boolean;
|
|
567
567
|
onChange: (value: string | null) => void;
|
|
568
568
|
value?: string;
|
|
569
|
+
maxDate?: Date | string;
|
|
570
|
+
closeOnSelect?: boolean;
|
|
571
|
+
modal?: boolean;
|
|
569
572
|
};
|
|
570
|
-
declare const CalendarInput: ({ label, optional, onChange, error, helpText, value, }: CalendarInputProps) => react_jsx_runtime.JSX.Element;
|
|
573
|
+
declare const CalendarInput: ({ label, optional, onChange, error, helpText, value, maxDate, closeOnSelect, modal, }: CalendarInputProps) => react_jsx_runtime.JSX.Element;
|
|
571
574
|
|
|
572
575
|
declare const RadioGroup: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
573
576
|
className?: string;
|