127 lines
2.6 KiB
Vue
127 lines
2.6 KiB
Vue
<script>
|
|
import BaseComponent from 'primevue/basecomponent';
|
|
import DialogStyle from 'primevue/dialog/style';
|
|
|
|
export default {
|
|
name: 'BaseDialog',
|
|
extends: BaseComponent,
|
|
props: {
|
|
header: {
|
|
type: null,
|
|
default: null
|
|
},
|
|
footer: {
|
|
type: null,
|
|
default: null
|
|
},
|
|
visible: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
modal: {
|
|
type: Boolean,
|
|
default: null
|
|
},
|
|
contentStyle: {
|
|
type: null,
|
|
default: null
|
|
},
|
|
contentClass: {
|
|
type: String,
|
|
default: null
|
|
},
|
|
contentProps: {
|
|
type: null,
|
|
default: null
|
|
},
|
|
rtl: {
|
|
type: Boolean,
|
|
default: null
|
|
},
|
|
maximizable: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
dismissableMask: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
closable: {
|
|
type: Boolean,
|
|
default: true
|
|
},
|
|
closeOnEscape: {
|
|
type: Boolean,
|
|
default: true
|
|
},
|
|
showHeader: {
|
|
type: Boolean,
|
|
default: true
|
|
},
|
|
blockScroll: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
baseZIndex: {
|
|
type: Number,
|
|
default: 0
|
|
},
|
|
autoZIndex: {
|
|
type: Boolean,
|
|
default: true
|
|
},
|
|
position: {
|
|
type: String,
|
|
default: 'center'
|
|
},
|
|
breakpoints: {
|
|
type: Object,
|
|
default: null
|
|
},
|
|
draggable: {
|
|
type: Boolean,
|
|
default: true
|
|
},
|
|
keepInViewport: {
|
|
type: Boolean,
|
|
default: true
|
|
},
|
|
minX: {
|
|
type: Number,
|
|
default: 0
|
|
},
|
|
minY: {
|
|
type: Number,
|
|
default: 0
|
|
},
|
|
appendTo: {
|
|
type: String,
|
|
default: 'body'
|
|
},
|
|
closeIcon: {
|
|
type: String,
|
|
default: undefined
|
|
},
|
|
maximizeIcon: {
|
|
type: String,
|
|
default: undefined
|
|
},
|
|
minimizeIcon: {
|
|
type: String,
|
|
default: undefined
|
|
},
|
|
closeButtonProps: {
|
|
type: null,
|
|
default: null
|
|
},
|
|
_instance: null
|
|
},
|
|
style: DialogStyle,
|
|
provide() {
|
|
return {
|
|
$parentInstance: this
|
|
};
|
|
}
|
|
};
|
|
</script>
|