32 lines
657 B
JavaScript
32 lines
657 B
JavaScript
|
'use strict';
|
||
|
|
||
|
Object.defineProperty(exports, '__esModule', {
|
||
|
value: true
|
||
|
});
|
||
|
var defaultParams = {
|
||
|
title: '',
|
||
|
text: '',
|
||
|
type: null,
|
||
|
allowOutsideClick: false,
|
||
|
showConfirmButton: true,
|
||
|
showCancelButton: false,
|
||
|
closeOnConfirm: true,
|
||
|
closeOnCancel: true,
|
||
|
confirmButtonText: 'OK',
|
||
|
confirmButtonColor: '#8CD4F5',
|
||
|
cancelButtonText: 'Cancel',
|
||
|
imageUrl: null,
|
||
|
imageSize: null,
|
||
|
timer: null,
|
||
|
customClass: '',
|
||
|
html: false,
|
||
|
animation: true,
|
||
|
allowEscapeKey: true,
|
||
|
inputType: 'text',
|
||
|
inputPlaceholder: '',
|
||
|
inputValue: '',
|
||
|
showLoaderOnConfirm: false
|
||
|
};
|
||
|
|
||
|
exports['default'] = defaultParams;
|
||
|
module.exports = exports['default'];
|