v-phone-input
Version:
International phone field for Vuetify 3 and Vue 3.
10 lines (9 loc) • 702 B
TypeScript
import { makeVTextFieldProps } from 'vuetify/lib/components/VTextField/VTextField.js';
import { VPhoneCountryInputComponent, VPhoneInputCountryObject } from '../types.ts';
import { default as makePhoneInputProps } from './makePhoneInputProps.ts';
/**
* Make phone input properties definition, with inherited `VTextField` props.
*
* @internal
*/
export default function makePhoneInputCompleteProps<Country extends VPhoneInputCountryObject, CountryInputComponent extends VPhoneCountryInputComponent>(): Omit<ReturnType<typeof makeVTextFieldProps>, keyof ReturnType<typeof makePhoneInputProps<Country, CountryInputComponent>>> & ReturnType<typeof makePhoneInputProps<Country, CountryInputComponent>>;