jodit 4.13.21 → 4.13.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/es2015/jodit.css +1 -1
- package/es2015/jodit.fat.min.css +1 -1
- package/es2015/jodit.fat.min.js +4 -4
- package/es2015/jodit.js +20 -32
- package/es2015/jodit.min.css +1 -1
- package/es2015/jodit.min.js +4 -4
- package/es2015/plugins/debug/debug.css +1 -1
- package/es2015/plugins/debug/debug.js +1 -1
- package/es2015/plugins/debug/debug.min.js +1 -1
- package/es2015/plugins/speech-recognize/speech-recognize.css +1 -1
- package/es2015/plugins/speech-recognize/speech-recognize.js +1 -1
- package/es2015/plugins/speech-recognize/speech-recognize.min.js +1 -1
- package/es2018/jodit.fat.min.css +1 -1
- package/es2018/jodit.fat.min.js +4 -4
- package/es2018/jodit.min.css +1 -1
- package/es2018/jodit.min.js +4 -4
- package/es2018/plugins/debug/debug.min.js +1 -1
- package/es2018/plugins/speech-recognize/speech-recognize.min.js +1 -1
- package/es2021/jodit.css +1 -1
- package/es2021/jodit.fat.min.css +1 -1
- package/es2021/jodit.fat.min.js +4 -4
- package/es2021/jodit.js +18 -32
- package/es2021/jodit.min.css +1 -1
- package/es2021/jodit.min.js +4 -4
- package/es2021/plugins/debug/debug.css +1 -1
- package/es2021/plugins/debug/debug.js +1 -1
- package/es2021/plugins/debug/debug.min.js +1 -1
- package/es2021/plugins/speech-recognize/speech-recognize.css +1 -1
- package/es2021/plugins/speech-recognize/speech-recognize.js +1 -1
- package/es2021/plugins/speech-recognize/speech-recognize.min.js +1 -1
- package/es2021.en/jodit.css +1 -1
- package/es2021.en/jodit.fat.min.css +1 -1
- package/es2021.en/jodit.fat.min.js +4 -4
- package/es2021.en/jodit.js +18 -32
- package/es2021.en/jodit.min.css +1 -1
- package/es2021.en/jodit.min.js +4 -4
- package/es2021.en/plugins/debug/debug.css +1 -1
- package/es2021.en/plugins/debug/debug.js +1 -1
- package/es2021.en/plugins/debug/debug.min.js +1 -1
- package/es2021.en/plugins/speech-recognize/speech-recognize.css +1 -1
- package/es2021.en/plugins/speech-recognize/speech-recognize.js +1 -1
- package/es2021.en/plugins/speech-recognize/speech-recognize.min.js +1 -1
- package/es5/jodit.css +2 -2
- package/es5/jodit.fat.min.css +1 -1
- package/es5/jodit.fat.min.js +2 -2
- package/es5/jodit.js +46 -32
- package/es5/jodit.min.css +3 -3
- package/es5/jodit.min.js +2 -2
- package/es5/plugins/debug/debug.css +1 -1
- package/es5/plugins/debug/debug.js +1 -1
- package/es5/plugins/debug/debug.min.js +1 -1
- package/es5/plugins/speech-recognize/speech-recognize.css +1 -1
- package/es5/plugins/speech-recognize/speech-recognize.js +1 -1
- package/es5/plugins/speech-recognize/speech-recognize.min.js +1 -1
- package/es5/polyfills.fat.min.js +2 -2
- package/es5/polyfills.js +213 -87
- package/es5/polyfills.min.js +2 -2
- package/esm/core/constants.js +1 -1
- package/esm/modules/uploader/helpers/data-uri-to-blob.d.ts +3 -1
- package/esm/modules/uploader/helpers/data-uri-to-blob.js +7 -8
- package/esm/plugins/image-processor/image-processor.js +11 -19
- package/package.json +1 -1
- package/types/modules/uploader/helpers/data-uri-to-blob.d.ts +3 -1
package/es2015/jodit.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* jodit - Jodit is an awesome and useful wysiwyg editor with filebrowser
|
|
3
3
|
* Author: Chupurnov <chupurnov@gmail.com> (https://xdsoft.net/jodit/)
|
|
4
|
-
* Version: v4.13.
|
|
4
|
+
* Version: v4.13.22
|
|
5
5
|
* Url: https://xdsoft.net/jodit/
|
|
6
6
|
* License(s): MIT
|
|
7
7
|
*/
|
|
@@ -1849,7 +1849,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
1849
1849
|
* ```
|
|
1850
1850
|
* @packageDocumentation
|
|
1851
1851
|
* @module constants
|
|
1852
|
-
*/ const APP_VERSION = "4.13.
|
|
1852
|
+
*/ const APP_VERSION = "4.13.22";
|
|
1853
1853
|
// prettier-ignore
|
|
1854
1854
|
const ES = "es2015";
|
|
1855
1855
|
const IS_ES_MODERN = true;
|
|
@@ -25003,13 +25003,13 @@ function buildData(uploader, data) {
|
|
|
25003
25003
|
*/ /**
|
|
25004
25004
|
* @module modules/uploader
|
|
25005
25005
|
*/ /**
|
|
25006
|
-
* Convert dataURI to Blob
|
|
25006
|
+
* Convert dataURI to Blob. Both base64 and percent-encoded payloads are
|
|
25007
|
+
* supported — `data:image/svg+xml,%3Csvg...` is as valid as
|
|
25008
|
+
* `data:image/png;base64,...`
|
|
25007
25009
|
*/ function dataURItoBlob(dataURI) {
|
|
25008
|
-
|
|
25009
|
-
|
|
25010
|
-
const
|
|
25011
|
-
mimeString = dataURI.split(',')[0].split(':')[1].split(';')[0], // write the bytes of the string to an ArrayBuffer
|
|
25012
|
-
ab = new ArrayBuffer(byteString.length), ia = new Uint8Array(ab);
|
|
25010
|
+
var _ref;
|
|
25011
|
+
var _header_split_;
|
|
25012
|
+
const [header, ...rest] = dataURI.split(','), payload = rest.join(','), mimeString = (_ref = (_header_split_ = header.split(':')[1]) === null || _header_split_ === void 0 ? void 0 : _header_split_.split(';')[0]) !== null && _ref !== void 0 ? _ref : '', byteString = /;base64/i.test(header) ? atob(payload) : decodeURIComponent(payload), ab = new ArrayBuffer(byteString.length), ia = new Uint8Array(ab);
|
|
25013
25013
|
for(let i = 0; i < byteString.length; i += 1){
|
|
25014
25014
|
ia[i] = byteString.charCodeAt(i);
|
|
25015
25015
|
}
|
|
@@ -32526,7 +32526,8 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.imageProcessor = {
|
|
|
32526
32526
|
/* harmony import */ var jodit_core_global__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(28077);
|
|
32527
32527
|
/* harmony import */ var jodit_core_helpers__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(65946);
|
|
32528
32528
|
/* harmony import */ var jodit_core_plugin__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(91206);
|
|
32529
|
-
/* harmony import */ var
|
|
32529
|
+
/* harmony import */ var jodit_modules_uploader_helpers_data_uri_to_blob__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(23112);
|
|
32530
|
+
/* harmony import */ var _config__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(51034);
|
|
32530
32531
|
/*!
|
|
32531
32532
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
32532
32533
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
@@ -32543,6 +32544,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.imageProcessor = {
|
|
|
32543
32544
|
|
|
32544
32545
|
|
|
32545
32546
|
|
|
32547
|
+
|
|
32546
32548
|
const JODIT_IMAGE_PROCESSOR_BINDED = '__jodit_imageprocessor_binded';
|
|
32547
32549
|
const JODIT_IMAGE_BLOB_ID = JODIT_IMAGE_PROCESSOR_BINDED + 'blob-id';
|
|
32548
32550
|
/**
|
|
@@ -32628,7 +32630,15 @@ function replaceDataURIToBlobUUID(editor, elm) {
|
|
|
32628
32630
|
if (typeof ArrayBuffer === 'undefined' || typeof URL === 'undefined') {
|
|
32629
32631
|
return;
|
|
32630
32632
|
}
|
|
32631
|
-
const dataUri = elm.src
|
|
32633
|
+
const dataUri = elm.src;
|
|
32634
|
+
let blob;
|
|
32635
|
+
try {
|
|
32636
|
+
blob = (0,jodit_modules_uploader_helpers_data_uri_to_blob__WEBPACK_IMPORTED_MODULE_7__.dataURItoBlob)(dataUri);
|
|
32637
|
+
} catch (unused) {
|
|
32638
|
+
// A data URI the browser accepts but we cannot decode is not worth
|
|
32639
|
+
// breaking the editor over — keep the image as it is
|
|
32640
|
+
return;
|
|
32641
|
+
}
|
|
32632
32642
|
elm.src = URL.createObjectURL(blob);
|
|
32633
32643
|
editor.e.fire('internalUpdate');
|
|
32634
32644
|
const { buffer } = editor;
|
|
@@ -32636,28 +32646,6 @@ function replaceDataURIToBlobUUID(editor, elm) {
|
|
|
32636
32646
|
list[elm.src] = dataUri;
|
|
32637
32647
|
editor.buffer.set(JODIT_IMAGE_BLOB_ID, list);
|
|
32638
32648
|
}
|
|
32639
|
-
// https://stackoverflow.com/a/12300351
|
|
32640
|
-
function dataURItoBlob(dataURI) {
|
|
32641
|
-
// convert base64 to raw binary data held in a string
|
|
32642
|
-
// doesn't handle URLEncoded DataURIs - see SO answer #6850276 for code that does this
|
|
32643
|
-
const byteString = atob(dataURI.split(',')[1]);
|
|
32644
|
-
// separate out the mime component
|
|
32645
|
-
const mimeString = dataURI.split(',')[0].split(':')[1].split(';')[0];
|
|
32646
|
-
// write the bytes of the string to an ArrayBuffer
|
|
32647
|
-
const ab = new ArrayBuffer(byteString.length);
|
|
32648
|
-
// create a view into the buffer
|
|
32649
|
-
const ia = new Uint8Array(ab);
|
|
32650
|
-
// set the bytes of the buffer to the correct values
|
|
32651
|
-
for(let i = 0; i < byteString.length; i++){
|
|
32652
|
-
ia[i] = byteString.charCodeAt(i);
|
|
32653
|
-
}
|
|
32654
|
-
// write the ArrayBuffer to a blob, and you're done
|
|
32655
|
-
return new Blob([
|
|
32656
|
-
ab
|
|
32657
|
-
], {
|
|
32658
|
-
type: mimeString
|
|
32659
|
-
});
|
|
32660
|
-
}
|
|
32661
32649
|
jodit_core_global__WEBPACK_IMPORTED_MODULE_4__.pluginSystem.add('imageProcessor', imageProcessor);
|
|
32662
32650
|
|
|
32663
32651
|
|