alytus-ff 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.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "alytus-ff",
3
3
  "private": false,
4
- "version": "0.1.22",
4
+ "version": "0.1.23",
5
5
  "type": "module",
6
6
  "files": [
7
7
  "dist",
@@ -1,7 +1,15 @@
1
1
  <template>
2
- <v-dialog :model-value="value" max-width="960" :persistent="persistent" :fullscreen="$vuetify.display.smAndDown" class="ff-dialog" @update:modelValue="$emit('close')">
2
+ <v-dialog
3
+ :model-value="value"
4
+ max-width="960"
5
+ :persistent="persistent"
6
+ :fullscreen="$vuetify.display.smAndDown"
7
+ :class="[fullHeight ? 'ff-dialog' : 'ff-dialog ff-full-height']"
8
+ :content-class="fullHeight ? 'ff-full-height' : ''"
9
+ @update:modelValue="$emit('close')"
10
+ >
3
11
  <slot name="card">
4
- <v-card :title="title">
12
+ <v-card :title="title" :class="fullHeight ? 'ff-full-height' : ''">
5
13
  <template v-slot:append>
6
14
  <div class="close-btn">
7
15
  <v-btn variant="text" :icon="mdiClose()" @click="$emit('close')" />
@@ -47,6 +55,10 @@ export default defineComponent({
47
55
  noFooter: {
48
56
  type: Boolean,
49
57
  default: false
58
+ },
59
+ fullHeight: {
60
+ type: Boolean,
61
+ default: false
50
62
  }
51
63
  }
52
64
  })