| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 | 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;
 |