1
0
mirror of synced 2024-11-25 14:56:03 +03:00

Updates build files

This commit is contained in:
Justin Schroeder 2020-05-08 23:55:43 -04:00
parent 07165d4d97
commit 27272e6582
6 changed files with 9 additions and 7 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

2
dist/snow.css vendored
View File

@ -304,6 +304,8 @@
margin-right: .5em; }
.formulate-input[data-classification='group'] .formulate-input-group-item {
margin-bottom: .5em; }
.formulate-input[data-classification='group'] > .formulate-input-wrapper > .formulate-input-label {
margin-bottom: .5em; }
.formulate-input[data-classification='group'] [data-is-repeatable] {
padding: 1em;
border: 1px solid #efefef;

2
dist/snow.min.css vendored

File diff suppressed because one or more lines are too long

View File

@ -40,7 +40,7 @@ export default {
return Array.isArray(this.context.model) ? this.context.model : [{}]
},
providers () {
return this.items.map((...[ , i ]) => Array.isArray(this.$refs[`provider-${i}`]) ? this.$refs[`provider-${i}`][0] : false)
return this.items.map((item, i) => Array.isArray(this.$refs[`provider-${i}`]) ? this.$refs[`provider-${i}`][0] : false)
},
formShouldShowErrors () {
return this.context.formShouldShowErrors