libphonenumber-js
, can be overridden by this prop',\n inDemo: false,\n },\n {\n name: 'autoFormat',\n type: Boolean,\n default: true,\n description: 'Auto update the input to the formatted phone number when it\\'s valid',\n inDemo: true,\n },\n {\n name: 'customValidate',\n type: [Boolean, RegExp],\n default: false,\n description: 'Custom validation RegExp for input',\n inDemo: false,\n },\n {\n name: 'defaultCountry',\n default: 'us',\n type: String,\n description: 'Default country, will override the country fetched from IP address of user',\n inDemo: false,\n },\n {\n name: 'disabled',\n default: false,\n type: Boolean,\n description: 'Disable vue-tel-input
, including the input & flag dropdown',\n inDemo: false,\n },\n {\n name: 'autoDefaultCountry',\n default: true,\n type: Boolean,\n description: 'To fetch default country based on IP address of user',\n inDemo: false,\n },\n {\n name: 'dropdownOptions',\n type: Object,\n description: 'Options for dropdown, see below',\n inDemo: false,\n },\n {\n name: 'dropdownOptions.showDialCodeInList',\n default: true,\n type: Boolean,\n description: 'Show dial code in the dropdown list',\n inDemo: true,\n },\n {\n name: 'dropdownOptions.showDialCodeInSelection',\n default: false,\n type: Boolean,\n description: 'Show dial code in the dropdown selection',\n inDemo: true,\n },\n {\n name: 'dropdownOptions.showFlags',\n default: true,\n type: Boolean,\n description: 'Show flags in the dropdown selection and list',\n inDemo: true,\n },\n {\n name: 'dropdownOptions.tabindex',\n default: 0,\n type: Number,\n description: 'Native dropdown tabindex
attribute',\n inDemo: false,\n },\n {\n name: 'ignoredCountries',\n default: [],\n type: Array,\n description: 'List of countries will NOT be shown on the dropdown',\n inDemo: false,\n },\n {\n name: 'inputOptions',\n type: Object,\n description: 'Options for input, see below',\n inDemo: false,\n },\n {\n name: 'inputOptions.autocomplete',\n type: String,\n default: 'on',\n description: 'Native input autocomplete
attribute',\n inDemo: false,\n },\n {\n name: 'inputOptions.autofocus',\n type: Boolean,\n default: false,\n description: 'Native input autofocus
attribute',\n inDemo: false,\n },\n // {\n // name: 'inputOptions.dynamicPlaceholder',\n // default: false,\n // type: Boolean,\n // description: 'Placeholder as a sample phone number in the current country',\n // inDemo: false,\n // },\n {\n name: 'inputOptions.id',\n default: '',\n type: String,\n description: 'Native input id
attribute',\n inDemo: false,\n },\n {\n name: 'inputOptions.maxlength',\n default: 25,\n type: Number,\n description: 'Native input maxlength
attribute',\n inDemo: false,\n },\n {\n name: 'inputOptions.name',\n default: 'telephone',\n type: String,\n description: 'Native input name
attribute',\n inDemo: false,\n },\n {\n name: 'inputOptions.placeholder',\n default: 'Enter a phone number',\n type: String,\n description: 'Placeholder for the input',\n inDemo: false,\n },\n {\n name: 'inputOptions.readonly',\n default: false,\n type: Boolean,\n description: 'Native input readonly
attribute',\n inDemo: false,\n },\n {\n name: 'inputOptions.required',\n default: false,\n type: Boolean,\n description: 'Native input required
attribute',\n inDemo: false,\n },\n {\n name: 'inputOptions.tabindex',\n default: 0,\n type: Number,\n description: 'Native input tabindex
attribute',\n inDemo: false,\n },\n {\n name: 'inputOptions.type',\n default: 'tel',\n type: String,\n description: 'Native input type
attribute',\n inDemo: false,\n },\n {\n name: 'inputOptions.styleClasses',\n default: '',\n type: [String, Array, Object],\n description: 'Custom classes for the input
',\n inDemo: false,\n },\n {\n name: 'invalidMsg',\n default: '',\n type: String,\n description: '',\n inDemo: false,\n },\n {\n name: 'mode',\n default: 'auto',\n type: String,\n description: 'Allowed values: \\'auto\\'
(Default set by phone), \\'international\\'
(Format number with the dial code i.e. + 61), \\'national\\'
(Format number without dial code i.e. 0321232)',\n inDemo: true,\n options: ['auto', 'national', 'international'],\n },\n {\n name: 'onlyCountries',\n default: [],\n type: Array,\n description: 'List of countries will be shown on the dropdown',\n inDemo: false,\n },\n {\n name: 'preferredCountries',\n default: [],\n type: Array,\n description: 'Preferred countries list, will be on top of the dropdown',\n inDemo: false,\n },\n {\n name: 'styleClasses',\n default: '',\n type: [String, Array, Object],\n description: 'Custom classes for the wrapper',\n inDemo: false,\n },\n {\n name: 'validCharactersOnly',\n default: false,\n type: Boolean,\n description: 'Only allow valid characters in a phone number (will also verify in mounted
, so phone number with invalid characters will be shown as an empty string)',\n inDemo: false,\n },\n];\n\nexport const defaultOptions = [...allProps]\n .reduce((prv, crr) => {\n if (crr.name.includes('.')) {\n const [key, nestedKey] = crr.name.split('.');\n if (prv[key]) {\n Object.assign(prv[key], { [nestedKey]: crr.default });\n } else {\n Object.assign(prv, { [key]: { [nestedKey]: crr.default } });\n }\n } else {\n Object.assign(prv, { [crr.name]: crr.default });\n }\n return prv;\n }, {});\n\nexport default {\n options: { ...defaultOptions },\n};","\r\n