@fy-/fws-vue 2.1.34 → 2.1.35

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -315,6 +315,9 @@ onMounted(async () => {
315
315
  || field.type === 'password'
316
316
  || field.type === 'email'
317
317
  || field.type === 'mask'
318
+ || field.type === 'tel'
319
+ || field.type === 'number'
320
+ || field.type === 'phone'
318
321
  "
319
322
  >
320
323
  <DefaultInput
@@ -132,6 +132,7 @@ defineExpose({ focus, blur, getInputRef })
132
132
  'textarea-grow',
133
133
  'select',
134
134
  'phone',
135
+ 'tel',
135
136
  'range',
136
137
  'chips',
137
138
  'tags',
@@ -146,6 +147,7 @@ defineExpose({ focus, blur, getInputRef })
146
147
  [
147
148
  'text',
148
149
  'phone',
150
+ 'tel',
149
151
  'password',
150
152
  'range',
151
153
  'email',
@@ -170,7 +172,7 @@ defineExpose({ focus, blur, getInputRef })
170
172
  :id="id"
171
173
  ref="inputRef"
172
174
  v-model="model"
173
- :type="type === 'datepicker' ? 'date' : type"
175
+ :type="type === 'datepicker' ? 'date' : type === 'phone' ? 'tel' : type"
174
176
  :name="id"
175
177
  :class="{
176
178
  'error': checkErrors,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fy-/fws-vue",
3
- "version": "2.1.34",
3
+ "version": "2.1.35",
4
4
  "author": "Florian 'Fy' Gasquez <m@fy.to>",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/fy-to/FWJS#readme",