@burh/nuxt-core 1.0.401 → 1.0.402

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.
@@ -191,58 +191,29 @@
191
191
  />
192
192
  </validation-provider>
193
193
 
194
- <validation-provider
195
- tag="div"
196
- name="Telefone"
197
- :vid="`send-phone-${idx}`"
198
- rules="required"
199
- v-slot="{ errors }"
200
- >
201
- <label for="phone">Telefone</label>
202
- <base-input
203
- type="text"
204
- v-model="contact.phone_number"
205
- :mask="['(##) ####-####']"
206
- placeholder="Telefone com DDD"
207
- :error="errors[0]"
208
- :valid="errors.length ? true : false"
209
- />
210
- </validation-provider>
211
-
212
- <validation-provider
213
- tag="div"
214
- name="Celular"
215
- :vid="`send-cellphone-${idx}`"
216
- rules="required"
217
- v-slot="{ errors }"
218
- >
219
- <label for="cellphone">Celular</label>
220
- <base-input
221
- type="text"
222
- v-model="contact.cellphone_number"
223
- :mask="['(##) ####-####', '(##) #####-####']"
224
- placeholder="Celular com DDD"
225
- :error="errors[0]"
226
- :valid="errors.length ? true : false"
227
- />
228
- </validation-provider>
194
+ <label for="phone">Telefone</label>
195
+ <base-input
196
+ type="text"
197
+ v-model="contact.phone_number"
198
+ :mask="['(##) ####-####']"
199
+ placeholder="Telefone com DDD"
200
+ />
201
+
202
+ <label for="cellphone">Celular</label>
203
+ <base-input
204
+ type="text"
205
+ v-model="contact.cellphone_number"
206
+ :mask="['(##) ####-####', '(##) #####-####']"
207
+ placeholder="Celular com DDD"
208
+ />
209
+
210
+ <label for="note">Observações</label>
211
+ <base-input
212
+ type="text"
213
+ v-model="contact.note"
214
+ placeholder="Observações"
215
+ />
229
216
 
230
- <validation-provider
231
- tag="div"
232
- name="Observações"
233
- :vid="`send-note-${idx}`"
234
- rules="required"
235
- v-slot="{ errors }"
236
- >
237
- <label for="note">Observações</label>
238
- <base-input
239
- type="text"
240
- v-model="contact.note"
241
- placeholder="Observações"
242
- :error="errors[0]"
243
- :valid="errors.length ? true : false"
244
- />
245
- </validation-provider>
246
217
  <div class="col-1 pt-2">
247
218
  <i
248
219
  v-if="idx !== contacts.length - 1"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@burh/nuxt-core",
3
- "version": "1.0.401",
3
+ "version": "1.0.402",
4
4
  "description": "Design System and Components.",
5
5
  "author": "Burh",
6
6
  "scripts": {