Rocky_Mountain_Vending/.pnpm-store/v10/files/7f/657a47db7710beac62fda3882bcb6105a8a7f473edd3b619898118aee3bd6ecd2503bd2a0497adc6714751e16b40ff5ac8a5e9489874dbbfe66d0b29477edd
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

42 lines
1.5 KiB
Text

import * as React$1 from 'react';
interface SlotProps {
isActive: boolean;
char: string | null;
placeholderChar: 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';
pasteTransformer?: (pasted: string) => string;
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 };