@afeefa/vue-app 0.0.247 → 0.0.249

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.247
1
+ 0.0.249
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@afeefa/vue-app",
3
- "version": "0.0.247",
3
+ "version": "0.0.249",
4
4
  "description": "",
5
5
  "author": "Afeefa Kollektiv <kollektiv@afeefa.de>",
6
6
  "license": "MIT",
@@ -60,7 +60,7 @@ export default class DetailProperty extends Vue {
60
60
  }
61
61
 
62
62
  .iconPlaceholder {
63
- width: 3.5rem;
63
+ width: 3.75rem;
64
64
  }
65
65
 
66
66
  .label {
@@ -61,8 +61,8 @@
61
61
 
62
62
  <a-icon-button
63
63
  v-if="buttonCreate"
64
- small
65
- class="mt-4"
64
+ :class="buttonSize === 'small' ? 'mt-4' : 'mt-2'"
65
+ :x-small="buttonSize === 'x-small'"
66
66
  icon="$plusIcon"
67
67
  :text="label"
68
68
  @click="showForm = true"
@@ -86,7 +86,8 @@ import { Component, Vue } from '@a-vue'
86
86
  buttonEdit: false,
87
87
  buttonAdd: false,
88
88
  buttonCreate: false,
89
- modalWidth: 'auto'
89
+ modalWidth: 'auto',
90
+ buttonSize: 'small'
90
91
  }
91
92
  ]
92
93
  })