mirror of https://github.com/ColorlibHQ/AdminLTE
updated plugins
- updated pdfmake to 0.1.59 - updated sweetalert2 to 8.17.3pull/2256/head
parent
8799b5497c
commit
483a58ce74
File diff suppressed because it is too large
Load Diff
|
@ -95,13 +95,13 @@
|
|||
"jszip": "^3.2.2",
|
||||
"moment": "^2.24.0",
|
||||
"overlayscrollbars": "^1.9.1",
|
||||
"pdfmake": "^0.1.58",
|
||||
"pdfmake": "^0.1.59",
|
||||
"popper.js": "^1.15.0",
|
||||
"raphael": "^2.3.0",
|
||||
"select2": "^4.0.10",
|
||||
"sparklines": "^1.2.0",
|
||||
"summernote": "^0.8.12",
|
||||
"sweetalert2": "^8.16.3",
|
||||
"sweetalert2": "^8.17.3",
|
||||
"tempusdominus-bootstrap-4": "^5.1.2",
|
||||
"toastr": "^2.1.4"
|
||||
},
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
|
@ -1,5 +1,5 @@
|
|||
/*!
|
||||
* sweetalert2 v8.16.3
|
||||
* sweetalert2 v8.17.3
|
||||
* Released under the MIT License.
|
||||
*/
|
||||
(function (global, factory) {
|
||||
|
@ -1218,6 +1218,10 @@ var render = function render(instance, params) {
|
|||
renderContent(instance, params);
|
||||
renderActions(instance, params);
|
||||
renderFooter(instance, params);
|
||||
|
||||
if (typeof params.onRender === 'function') {
|
||||
params.onRender(getPopup());
|
||||
}
|
||||
};
|
||||
|
||||
/*
|
||||
|
@ -1529,9 +1533,10 @@ var defaultParams = {
|
|||
currentProgressStep: null,
|
||||
progressStepsDistance: null,
|
||||
onBeforeOpen: null,
|
||||
onAfterClose: null,
|
||||
onOpen: null,
|
||||
onRender: null,
|
||||
onClose: null,
|
||||
onAfterClose: null,
|
||||
scrollbarPadding: true
|
||||
};
|
||||
var updatableParams = ['title', 'titleText', 'text', 'html', 'type', 'customClass', 'showConfirmButton', 'showCancelButton', 'confirmButtonText', 'confirmButtonAriaLabel', 'confirmButtonColor', 'confirmButtonClass', 'cancelButtonText', 'cancelButtonAriaLabel', 'cancelButtonColor', 'cancelButtonClass', 'buttonsStyling', 'reverseButtons', 'imageUrl', 'imageWidth', 'imageHeigth', 'imageAlt', 'imageClass', 'progressSteps', 'currentProgressStep'];
|
||||
|
@ -1964,12 +1969,12 @@ function disableButtons() {
|
|||
} // @deprecated
|
||||
|
||||
function enableConfirmButton() {
|
||||
warnAboutDepreation('Swal.disableConfirmButton()', "Swal.getConfirmButton().removeAttribute('disabled')");
|
||||
warnAboutDepreation('Swal.enableConfirmButton()', "Swal.getConfirmButton().removeAttribute('disabled')");
|
||||
setButtonsDisabled(this, ['confirmButton'], false);
|
||||
} // @deprecated
|
||||
|
||||
function disableConfirmButton() {
|
||||
warnAboutDepreation('Swal.enableConfirmButton()', "Swal.getConfirmButton().setAttribute('disabled', '')");
|
||||
warnAboutDepreation('Swal.disableConfirmButton()', "Swal.getConfirmButton().setAttribute('disabled', '')");
|
||||
setButtonsDisabled(this, ['confirmButton'], true);
|
||||
}
|
||||
function enableInput() {
|
||||
|
@ -2886,7 +2891,7 @@ Object.keys(instanceMethods).forEach(function (key) {
|
|||
};
|
||||
});
|
||||
SweetAlert.DismissReason = DismissReason;
|
||||
SweetAlert.version = '8.16.3';
|
||||
SweetAlert.version = '8.17.3';
|
||||
|
||||
var Swal = SweetAlert;
|
||||
Swal["default"] = Swal;
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue