main repo

This commit is contained in:
Basilosaurusrex
2025-11-24 18:09:40 +01:00
parent b636ee5e70
commit f027651f9b
34146 changed files with 4436636 additions and 0 deletions

40
node_modules/input-otp/dist/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,40 @@
import * as React$1 from 'react';
interface SlotProps {
isActive: boolean;
char: string | null;
hasFakeCaret: boolean;
}
interface RenderProps {
slots: SlotProps[];
isFocused: boolean;
isHovering: boolean;
}
type OverrideProps<T, R> = Omit<T, keyof R> & R;
type OTPInputBaseProps = OverrideProps<React.InputHTMLAttributes<HTMLInputElement>, {
value?: string;
onChange?: (newValue: string) => unknown;
maxLength: number;
textAlign?: 'left' | 'center' | 'right';
onComplete?: (...args: any[]) => unknown;
pushPasswordManagerStrategy?: 'increase-width' | 'none';
containerClassName?: string;
noScriptCSSFallback?: string | null;
}>;
type InputOTPRenderFn = (props: RenderProps) => React.ReactNode;
type OTPInputProps = OTPInputBaseProps & ({
render: InputOTPRenderFn;
children?: never;
} | {
render?: never;
children: React.ReactNode;
});
declare const OTPInputContext: React$1.Context<RenderProps>;
declare const OTPInput: React$1.ForwardRefExoticComponent<OTPInputProps & React$1.RefAttributes<HTMLInputElement>>;
declare const REGEXP_ONLY_DIGITS = "^\\d+$";
declare const REGEXP_ONLY_CHARS = "^[a-zA-Z]+$";
declare const REGEXP_ONLY_DIGITS_AND_CHARS = "^[a-zA-Z0-9]+$";
export { OTPInput, OTPInputContext, type OTPInputProps, REGEXP_ONLY_CHARS, REGEXP_ONLY_DIGITS, REGEXP_ONLY_DIGITS_AND_CHARS, type RenderProps, type SlotProps };