Skip to content

Commit

Permalink
add fullscreen option parameters to modal
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanseifert committed Nov 19, 2023
1 parent 1d7a360 commit 6a9c486
Showing 1 changed file with 31 additions and 1 deletion.
32 changes: 31 additions & 1 deletion src/components/structure/ModalDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,13 @@
'modal-dialog-scrollable': scrollable,
'modal-sm': sizeSm,
'modal-lg': sizeLg,
'modal-xl': sizeXl
'modal-xl': sizeXl,
'modal-fullscreen': fullscreen,
'modal-fullscreen-sm-down': fullscreenSmDown,
'modal-fullscreen-md-down': fullscreenMdDown,
'modal-fullscreen-lg-down': fullscreenLgDown,
'modal-fullscreen-xl-down': fullscreenXlDown,
'modal-fullscreen-xxl-down': fullscreenXxlDown
}">
<div class="modal-content">
<div class="modal-header">
Expand Down Expand Up @@ -67,6 +73,30 @@ export default defineComponent({
type: Boolean,
required: false
},
fullscreen: {
type: Boolean,
required: false
},
fullscreenSmDown: {
type: Boolean,
required: false
},
fullscreenMdDown: {
type: Boolean,
required: false
},
fullscreenLgDown: {
type: Boolean,
required: false
},
fullscreenXlDown: {
type: Boolean,
required: false
},
fullscreenXxlDown: {
type: Boolean,
required: false
},
closeI18nKey: {
type: String,
required: false,
Expand Down

0 comments on commit 6a9c486

Please sign in to comment.