diff --git a/src/FormularioField.vue b/src/FormularioField.vue index 3f11259..1ed6977 100644 --- a/src/FormularioField.vue +++ b/src/FormularioField.vue @@ -149,10 +149,11 @@ export default class FormularioField extends Vue { if (!this.hasModel && !shallowEquals(newValue, oldValue)) { this.model = newValue } + if (this.validationBehavior === VALIDATION_BEHAVIOR.LIVE) { this.runValidation() } else { - this.violations = [] + this.resetValidation() } } diff --git a/src/FormularioFieldGroup.vue b/src/FormularioFieldGroup.vue index 5dd9190..c60ddc6 100644 --- a/src/FormularioFieldGroup.vue +++ b/src/FormularioFieldGroup.vue @@ -20,20 +20,19 @@ export default class FormularioFieldGroup extends Vue { @Prop({ required: true }) readonly name!: string - @Prop({ default: false }) - readonly isArrayItem!: boolean - @Provide('__Formulario_path') get fullPath (): string { - if (this.isArrayItem) { - return `${this.__Formulario_path}[${this.name}]` + const name = `${this.name}` + + if (parseInt(name).toString() === name) { + return `${this.__Formulario_path}[${name}]` } if (this.__Formulario_path === '') { - return this.name + return name } - return `${this.__Formulario_path}.${this.name}` + return `${this.__Formulario_path}.${name}` } } diff --git a/storybook/stories/ExampleAddressList.tale.vue b/storybook/stories/ExampleAddressList.tale.vue index 629207b..b5708bc 100644 --- a/storybook/stories/ExampleAddressList.tale.vue +++ b/storybook/stories/ExampleAddressList.tale.vue @@ -11,7 +11,6 @@ v-for="(address, addressIndex) in addressList.context.model" :key="'address-' + addressIndex" :name="addressIndex" - :is-array-item="true" class="row mx-n2" >