default-params.js 535 B

1234567891011121314151617181920212223242526
  1. var defaultParams = {
  2. title: '',
  3. text: '',
  4. type: null,
  5. allowOutsideClick: false,
  6. showConfirmButton: true,
  7. showCancelButton: false,
  8. closeOnConfirm: true,
  9. closeOnCancel: true,
  10. confirmButtonText: 'OK',
  11. confirmButtonColor: '#8CD4F5',
  12. cancelButtonText: 'Cancel',
  13. imageUrl: null,
  14. imageSize: null,
  15. timer: null,
  16. customClass: '',
  17. html: false,
  18. animation: true,
  19. allowEscapeKey: true,
  20. inputType: 'text',
  21. inputPlaceholder: '',
  22. inputValue: '',
  23. showLoaderOnConfirm: false
  24. };
  25. export default defaultParams;