UNPKG

vue-bare

Version:

**Unstyled Vue components for frustration-free human interactions**

34 lines (33 loc) 1.31 kB
import { ClassValue } from './types'; export interface TelephoneInputBareProps { /** * @see [Apple Docs](https://developer.apple.com/documentation/security/password_autofill/enabling_password_autofill_on_an_html_input_element) * @see [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete) */ autocomplete: 'tel' | 'off'; id: string; name: string; placeholder: string; autofocus?: boolean; class?: ClassValue; disabled?: boolean; value?: string; } interface Props extends TelephoneInputBareProps { class: ClassValue; } type __VLS_Props = Props; declare const model: import('vue').ModelRef<string, string, string, string>; type __VLS_PublicProps = { modelValue?: typeof model['value']; } & __VLS_Props; declare const _default: import('vue').DefineComponent<__VLS_PublicProps, { focus: () => void; }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { "update:modelValue": (value: string) => any; }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ "onUpdate:modelValue"?: (value: string) => any; }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, { 'input-ref': HTMLInputElement; }, HTMLInputElement>; export default _default;