ng-otp-input
Version:
A fully customizable, one-time password input component for the web built with Angular.
20 lines (19 loc) • 450 B
TypeScript
export declare class Config {
inputStyles?: {
[key: string]: any;
};
containerStyles?: {
[key: string]: any;
};
length: number;
allowNumbersOnly?: boolean;
inputClass?: string;
inputMode?: string;
containerClass?: string;
isPasswordInput?: boolean;
disableAutoFocus?: boolean;
placeholder?: string;
letterCase?: "Upper" | "Lower";
separator?: string;
showError?: boolean;
}