@6thbridge/hexa 0.0.77 → 0.0.78
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 +63 -8
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -220,7 +220,7 @@ type OTPInputProps = DefailtInputProps & VariantProps<typeof otpInputVariants> &
|
|
|
220
220
|
declare const OTPInput: ({ numInputs, inputStyle, containerStyle, placeholder, status, ...props }: OTPInputProps) => react_jsx_runtime.JSX.Element;
|
|
221
221
|
|
|
222
222
|
declare const PopoverRoot: React$1.FC<PopoverPrimitive.PopoverProps>;
|
|
223
|
-
declare const PopoverTrigger: React$1.ForwardRefExoticComponent<PopoverPrimitive.PopoverTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
223
|
+
declare const PopoverTrigger: React$1.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
224
224
|
declare const PopoverContent: React$1.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
225
225
|
portal?: boolean;
|
|
226
226
|
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
@@ -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
|
@@ -220,7 +220,7 @@ type OTPInputProps = DefailtInputProps & VariantProps<typeof otpInputVariants> &
|
|
|
220
220
|
declare const OTPInput: ({ numInputs, inputStyle, containerStyle, placeholder, status, ...props }: OTPInputProps) => react_jsx_runtime.JSX.Element;
|
|
221
221
|
|
|
222
222
|
declare const PopoverRoot: React$1.FC<PopoverPrimitive.PopoverProps>;
|
|
223
|
-
declare const PopoverTrigger: React$1.ForwardRefExoticComponent<PopoverPrimitive.PopoverTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
223
|
+
declare const PopoverTrigger: React$1.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
224
224
|
declare const PopoverContent: React$1.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
225
225
|
portal?: boolean;
|
|
226
226
|
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
@@ -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;
|