@club-employes/utopia
Version:
🎨 Modern Vue 3 design system with multi-brand theming, design tokens, and 30+ components. Supports Club Employés & Gifteo brands with light/dark modes.
14 lines (13 loc) • 405 B
TypeScript
export interface InputCodeProps {
modelValue?: string;
label?: string;
length?: number;
type?: 'text' | 'number';
inputmode?: 'none' | 'text' | 'decimal' | 'numeric' | 'tel' | 'search' | 'email' | 'url';
size?: 'small' | 'medium' | 'large';
state?: 'default' | 'error' | 'valid';
disabled?: boolean;
message?: string;
required?: boolean;
autoFocus?: boolean;
}