@afeefa/vue-app 0.0.122 → 0.0.124

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.122
1
+ 0.0.124
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@afeefa/vue-app",
3
- "version": "0.0.122",
3
+ "version": "0.0.124",
4
4
  "description": "",
5
5
  "author": "Afeefa Kollektiv <kollektiv@afeefa.de>",
6
6
  "license": "MIT",
@@ -29,6 +29,7 @@
29
29
  no-title
30
30
  :type="type"
31
31
  v-bind="$attrs"
32
+ :first-day-of-week="1"
32
33
  @input="dateChanged"
33
34
  />
34
35
  </v-menu>
@@ -27,7 +27,7 @@
27
27
  v-if="icon"
28
28
  color="#FFFFFF"
29
29
  size="2rem"
30
- class="ml-n1 mr-2"
30
+ class="mr-2 ml-n1"
31
31
  >
32
32
  <v-icon
33
33
  :color="icon.color"
@@ -64,7 +64,7 @@ export default class ADialog extends Mixins(UsesPositionServiceMixin, ComponentW
64
64
  modal = false
65
65
  position = null
66
66
 
67
- cwm_maxWidth_ = 600
67
+ cwm_maxWidth_ = 1000
68
68
 
69
69
  created () {
70
70
  this.modal = this.show
@@ -81,6 +81,16 @@
81
81
  Nichts gefunden.
82
82
  </div>
83
83
  </div>
84
+ <div
85
+ v-if="$has.filters"
86
+ class="filters"
87
+ >
88
+ <slot
89
+ name="filters-below"
90
+ :filters="filters"
91
+ :count="count"
92
+ />
93
+ </div>
84
94
  </div>
85
95
  </template>
86
96