@afeefa/vue-app 0.0.192 → 0.0.194

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.
@@ -1 +1 @@
1
- 0.0.192
1
+ 0.0.194
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@afeefa/vue-app",
3
- "version": "0.0.192",
3
+ "version": "0.0.194",
4
4
  "description": "",
5
5
  "author": "Afeefa Kollektiv <kollektiv@afeefa.de>",
6
6
  "license": "MIT",
@@ -20,6 +20,7 @@
20
20
  :rules="validationRules"
21
21
  placeholder="Mausklick oder Space/↓-Taste zum Auswählen"
22
22
  :clearable="!!selectedItems.length"
23
+ appendIcon="$dropdown"
23
24
  @keydown.space.prevent="open"
24
25
  @keydown.down.prevent="open"
25
26
  @keydown.enter.prevent="open"
@@ -22,6 +22,10 @@ export default class FormFieldSelect extends Mixins(FormFieldMixin) {
22
22
  items = null
23
23
 
24
24
  created () {
25
+ this.reloadOptions()
26
+ }
27
+
28
+ reloadOptions () {
25
29
  if (this.fieldHasOptionsRequest()) {
26
30
  this.items = this.getSelectOptions()
27
31
  } else if (this.fieldHasOptions()) {
@@ -19,6 +19,7 @@
19
19
  :label="label"
20
20
  placeholder="Mausklick oder Space/↓-Taste zum Auswählen"
21
21
  :clearable="!!selectedItems.length"
22
+ appendIcon="$dropdown"
22
23
  hide-details
23
24
  @keydown.space.prevent="open"
24
25
  @keydown.down.prevent="open"