@6thbridge/hexa 0.0.81 → 0.0.83
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 -2
- package/dist/index.d.ts +4 -2
- 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 -10
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -222,8 +222,10 @@ declare const otpInputVariants: (props?: ({
|
|
|
222
222
|
status?: "loading" | "default" | "error" | null | undefined;
|
|
223
223
|
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
224
224
|
type DefailtInputProps = Omit<OTPInputProps$1, "renderInput">;
|
|
225
|
-
type OTPInputProps = DefailtInputProps & VariantProps<typeof otpInputVariants> & {
|
|
226
|
-
|
|
225
|
+
type OTPInputProps = DefailtInputProps & VariantProps<typeof otpInputVariants> & {
|
|
226
|
+
inputMode?: React.HTMLAttributes<HTMLInputElement>["inputMode"];
|
|
227
|
+
};
|
|
228
|
+
declare const OTPInput: ({ numInputs, inputStyle, containerStyle, placeholder, status, inputMode, inputType, ...props }: OTPInputProps) => react_jsx_runtime.JSX.Element;
|
|
227
229
|
|
|
228
230
|
declare const PopoverRoot: React$1.FC<PopoverPrimitive.PopoverProps>;
|
|
229
231
|
declare const PopoverTrigger: React$1.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
package/dist/index.d.ts
CHANGED
|
@@ -222,8 +222,10 @@ declare const otpInputVariants: (props?: ({
|
|
|
222
222
|
status?: "loading" | "default" | "error" | null | undefined;
|
|
223
223
|
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
224
224
|
type DefailtInputProps = Omit<OTPInputProps$1, "renderInput">;
|
|
225
|
-
type OTPInputProps = DefailtInputProps & VariantProps<typeof otpInputVariants> & {
|
|
226
|
-
|
|
225
|
+
type OTPInputProps = DefailtInputProps & VariantProps<typeof otpInputVariants> & {
|
|
226
|
+
inputMode?: React.HTMLAttributes<HTMLInputElement>["inputMode"];
|
|
227
|
+
};
|
|
228
|
+
declare const OTPInput: ({ numInputs, inputStyle, containerStyle, placeholder, status, inputMode, inputType, ...props }: OTPInputProps) => react_jsx_runtime.JSX.Element;
|
|
227
229
|
|
|
228
230
|
declare const PopoverRoot: React$1.FC<PopoverPrimitive.PopoverProps>;
|
|
229
231
|
declare const PopoverTrigger: React$1.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|