| 1 |
export default { |
| 2 |
title: '', |
| 3 |
titleText: '', |
| 4 |
text: '', |
| 5 |
html: '', |
| 6 |
type: null, |
| 7 |
customClass: '', |
| 8 |
target: 'body', |
| 9 |
animation: true, |
| 10 |
allowOutsideClick: true, |
| 11 |
allowEscapeKey: true, |
| 12 |
allowEnterKey: true, |
| 13 |
showConfirmButton: true, |
| 14 |
showCancelButton: false, |
| 15 |
preConfirm: null, |
| 16 |
confirmButtonText: 'OK', |
| 17 |
confirmButtonColor: '#3085d6', |
| 18 |
confirmButtonClass: null, |
| 19 |
cancelButtonText: 'Cancel', |
| 20 |
cancelButtonColor: '#aaa', |
| 21 |
cancelButtonClass: null, |
| 22 |
buttonsStyling: true, |
| 23 |
reverseButtons: false, |
| 24 |
focusCancel: false, |
| 25 |
showCloseButton: false, |
| 26 |
showLoaderOnConfirm: false, |
| 27 |
imageUrl: null, |
| 28 |
imageWidth: null, |
| 29 |
imageHeight: null, |
| 30 |
imageClass: null, |
| 31 |
timer: null, |
| 32 |
width: 500, |
| 33 |
padding: 20, |
| 34 |
background: '#fff', |
| 35 |
input: null, |
| 36 |
inputPlaceholder: '', |
| 37 |
inputValue: '', |
| 38 |
inputOptions: {}, |
| 39 |
inputAutoTrim: true, |
| 40 |
inputClass: null, |
| 41 |
inputAttributes: {}, |
| 42 |
inputValidator: null, |
| 43 |
progressSteps: [], |
| 44 |
currentProgressStep: null, |
| 45 |
progressStepsDistance: '40px', |
| 46 |
onOpen: null, |
| 47 |
onClose: null, |
| 48 |
useRejections: true |
| 49 |
} |
| 50 |
|