@westartcom/bread-quasar-fields 0.1.22 → 0.1.23

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.
@@ -22,6 +22,7 @@
22
22
  :id="id + '-input'"
23
23
  :accept="allowedMimeTypes"
24
24
  :multiple="allowMultiple"
25
+ :disabled="disable"
25
26
  @change="onFileSelect($event.target.files)">
26
27
  </div>
27
28
 
@@ -89,6 +90,11 @@ export default defineComponent({
89
90
  type: String,
90
91
  required: true
91
92
  },
93
+ disable: {
94
+ type: Boolean,
95
+ required: false,
96
+ default: false
97
+ },
92
98
  field: {
93
99
  type: Object as PropType<FileUploadFieldDefinition>,
94
100
  required: true
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@westartcom/bread-quasar-fields",
3
- "version": "0.1.22",
3
+ "version": "0.1.23",
4
4
  "description": "Quasar compatible fields for bread package",
5
5
  "main": "index.js",
6
6
  "scripts": {