53 lines
863 B
JavaScript
53 lines
863 B
JavaScript
|
const props = {
|
||
|
actions: {
|
||
|
type: Array,
|
||
|
},
|
||
|
buttonLayout: {
|
||
|
type: String,
|
||
|
value: 'horizontal',
|
||
|
},
|
||
|
cancelBtn: {
|
||
|
type: null,
|
||
|
},
|
||
|
closeBtn: {
|
||
|
type: null,
|
||
|
value: false,
|
||
|
},
|
||
|
closeOnOverlayClick: {
|
||
|
type: Boolean,
|
||
|
value: undefined,
|
||
|
},
|
||
|
confirmBtn: {
|
||
|
type: null,
|
||
|
},
|
||
|
content: {
|
||
|
type: String,
|
||
|
},
|
||
|
externalClasses: {
|
||
|
type: Array,
|
||
|
},
|
||
|
overlayProps: {
|
||
|
type: Object,
|
||
|
value: {},
|
||
|
},
|
||
|
preventScrollThrough: {
|
||
|
type: Boolean,
|
||
|
value: true,
|
||
|
},
|
||
|
showOverlay: {
|
||
|
type: Boolean,
|
||
|
value: true,
|
||
|
},
|
||
|
title: {
|
||
|
type: String,
|
||
|
},
|
||
|
visible: {
|
||
|
type: Boolean,
|
||
|
},
|
||
|
zIndex: {
|
||
|
type: Number,
|
||
|
value: 11500,
|
||
|
},
|
||
|
};
|
||
|
export default props;
|