@westartcom/bread-quasar-fields 0.1.13 → 0.1.15

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.
@@ -118,7 +118,8 @@ export default defineComponent({
118
118
 
119
119
  computed : {
120
120
  allowMultiple() {
121
- return (this.field.extra_data && this.field.extra_data.multiple);
121
+ // return (this.field.extra_data && this.field.extra_data.multiple);
122
+ return true;
122
123
  },
123
124
 
124
125
  allowedMimeTypes() {
@@ -756,6 +756,8 @@ export default defineComponent({
756
756
  margin-top: -10px;
757
757
 
758
758
  .search {
759
+ border-bottom: 1px solid $grey-3;
760
+
759
761
  .query-too-short {
760
762
  display: block;
761
763
  padding: 10px 15px;
@@ -763,7 +765,6 @@ export default defineComponent({
763
765
  color: $negative;
764
766
  border-top: 1px solid $negative;
765
767
  }
766
- border-bottom: 1px solid $grey-3;
767
768
  }
768
769
 
769
770
  .loading {
@@ -11,6 +11,7 @@
11
11
  ['undo', 'redo']
12
12
  ]"
13
13
  min-height="10rem"
14
+ :label="(showLabel) ? field.label + ((field.required) ? ' *' : '') : undefined"
14
15
  :name="field.name"
15
16
  :id="id + '-input'"
16
17
  :placeholder="field.placeholder"
@@ -28,6 +29,7 @@
28
29
  />
29
30
  <q-input
30
31
  v-else
32
+ :label="(showLabel) ? field.label + ((field.required) ? ' *' : '') : undefined"
31
33
  :name="field.name"
32
34
  :id="id + '-input'"
33
35
  :placeholder="field.placeholder"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@westartcom/bread-quasar-fields",
3
- "version": "0.1.13",
3
+ "version": "0.1.15",
4
4
  "description": "Quasar compatible fields for bread package",
5
5
  "main": "index.js",
6
6
  "scripts": {