updated plugins

- updated pdfmake to 0.1.59
- updated sweetalert2 to 8.17.3
This commit is contained in:
REJack 2019-09-17 11:37:57 +02:00
parent 8799b5497c
commit 483a58ce74
No known key found for this signature in database
GPG key ID: 9F3976CC630CC888
12 changed files with 8937 additions and 4951 deletions

1498
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -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

View file

@ -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