@modelforms/fontawesome-vuetify 3.7.2 → 3.8.1

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.
@@ -37,7 +37,7 @@
37
37
 
38
38
  <script lang="ts">
39
39
  import { faArrowAltCircleDown, faSquare } from '@fortawesome/free-regular-svg-icons';
40
- import { faCheck } from '@fortawesome/free-solid-svg-icons';
40
+ import { faCheck, faChevronDown } from '@fortawesome/free-solid-svg-icons';
41
41
  import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome';
42
42
  import { empty, defaultIcon, valueEvent, searchError, validationEvent } from '../helpers/resources';
43
43
  import { FilterOptions } from '../models/formModels';
@@ -105,7 +105,7 @@
105
105
  rule: this.rule.rules,
106
106
  value: this.value,
107
107
  itemValue: this.itemValue,
108
- arrowDown: faArrowAltCircleDown,
108
+ arrowDown: faChevronDown,
109
109
  square: faSquare,
110
110
  check: faCheck,
111
111
  items: this.items,
@@ -1,7 +1,7 @@
1
1
  <template>
2
2
  <v-container fluid>
3
3
  <v-file-input
4
- label="File input"
4
+ :label="label"
5
5
  :accept="accept"
6
6
  prepend-icon=""
7
7
  @update:model-value="blur($event)"
@@ -56,6 +56,7 @@
56
56
  rule: this.rules.rules!,
57
57
  faFile: faFile,
58
58
  isValid: true,
59
+ label: this.label,
59
60
  accept: this.accept
60
61
  }
61
62
  },