@engr-lukman/vue-secure-pin
Version:
A secure PIN input component for Vue.js applications with virtual keyboard and PIN masking, designed for financial applications
16 lines (15 loc) • 411 B
TypeScript
/**
* Default configuration for the SecurePin component
* These values can be overridden by passing props to the component
*/
export interface SecurePinDefaults {
maxLength: number;
isError: boolean;
errorMessage: string;
placeholder: string;
isEnableShuffle: boolean;
showKeyboard: boolean;
title: string;
clearLabel: string;
}
export declare const PROPS: SecurePinDefaults;