jodit 4.5.9 → 4.5.11
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 +23 -2
- package/es2015/jodit.css +1 -1
- package/es2015/jodit.fat.min.js +2 -2
- package/es2015/jodit.js +71 -24
- package/es2015/jodit.min.js +2 -2
- 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.css +1 -1
- package/es2018/jodit.fat.min.js +2 -2
- package/es2018/jodit.js +74 -24
- package/es2018/jodit.min.js +2 -2
- package/es2018/plugins/debug/debug.css +1 -1
- package/es2018/plugins/debug/debug.js +1 -1
- package/es2018/plugins/debug/debug.min.js +1 -1
- package/es2018/plugins/speech-recognize/speech-recognize.css +1 -1
- package/es2018/plugins/speech-recognize/speech-recognize.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.js +2 -2
- package/es2021/jodit.js +74 -23
- package/es2021/jodit.min.js +2 -2
- 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.js +2 -2
- package/es2021.en/jodit.js +74 -23
- package/es2021.en/jodit.min.js +2 -2
- 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/415.fat.min.js +1 -1
- package/es5/415.min.js +1 -1
- package/es5/5.fat.min.js +1 -1
- package/es5/5.min.js +1 -1
- package/es5/jodit.css +2 -2
- package/es5/jodit.fat.min.js +2 -2
- package/es5/jodit.js +73 -24
- package/es5/jodit.min.css +2 -2
- 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/esm/core/async/async.d.ts +13 -3
- package/esm/core/async/async.js +58 -10
- package/esm/core/constants.js +1 -1
- package/esm/core/dom/lazy-walker.d.ts +4 -3
- package/esm/core/dom/lazy-walker.js +14 -12
- package/esm/types/async.d.ts +6 -0
- package/package.json +1 -1
- package/types/core/async/async.d.ts +13 -3
- package/types/core/dom/lazy-walker.d.ts +4 -3
- package/types/types/async.d.ts +6 -0
package/es2018/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.5.
|
|
4
|
+
* Version: v4.5.11
|
|
5
5
|
* Url: https://xdsoft.net/jodit/
|
|
6
6
|
* License(s): MIT
|
|
7
7
|
*/
|
|
@@ -1067,9 +1067,10 @@ class Async {
|
|
|
1067
1067
|
this.__callbacks = new Map();
|
|
1068
1068
|
this.__queueMicrotaskNative = (_a = queueMicrotask === null || queueMicrotask === void 0 ? void 0 : queueMicrotask.bind(window)) !== null && _a !== void 0 ? _a : Promise.resolve().then.bind(Promise.resolve());
|
|
1069
1069
|
this.promisesRejections = new Set();
|
|
1070
|
-
this.
|
|
1071
|
-
this.
|
|
1072
|
-
this.
|
|
1070
|
+
this.__requestsIdle = new Set();
|
|
1071
|
+
this.__controllers = new Set();
|
|
1072
|
+
this.__requestsRaf = new Set();
|
|
1073
|
+
this.__requestIdleCallbackNative = (_c = (_b = window['requestIdleCallback']) === null || _b === void 0 ? void 0 : _b.bind(window)) !== null && _c !== void 0 ? _c : ((callback, options) => {
|
|
1073
1074
|
var _a;
|
|
1074
1075
|
const start = Date.now();
|
|
1075
1076
|
return this.setTimeout(() => {
|
|
@@ -1299,8 +1300,8 @@ class Async {
|
|
|
1299
1300
|
return Promise.race([p, t]).then(v => (v === t ? 'pending' : 'fulfilled'), () => 'rejected');
|
|
1300
1301
|
}
|
|
1301
1302
|
requestIdleCallback(callback, options = { timeout: 100 }) {
|
|
1302
|
-
const request = this.
|
|
1303
|
-
this.
|
|
1303
|
+
const request = this.__requestIdleCallbackNative(callback, options);
|
|
1304
|
+
this.__requestsIdle.add(request);
|
|
1304
1305
|
return request;
|
|
1305
1306
|
}
|
|
1306
1307
|
requestIdlePromise(options) {
|
|
@@ -1308,22 +1309,69 @@ class Async {
|
|
|
1308
1309
|
const request = this.requestIdleCallback(() => res(request), options);
|
|
1309
1310
|
});
|
|
1310
1311
|
}
|
|
1312
|
+
/**
|
|
1313
|
+
* Try to use scheduler.postTask if it is available https://wicg.github.io/scheduling-apis/
|
|
1314
|
+
*/
|
|
1315
|
+
schedulerPostTask(task, options = {
|
|
1316
|
+
delay: 0,
|
|
1317
|
+
priority: 'user-visible'
|
|
1318
|
+
}) {
|
|
1319
|
+
const controller = new AbortController();
|
|
1320
|
+
if (options.signal) {
|
|
1321
|
+
options.signal.addEventListener('abort', () => controller.abort());
|
|
1322
|
+
}
|
|
1323
|
+
this.__controllers.add(controller);
|
|
1324
|
+
// @ts-ignore
|
|
1325
|
+
if (typeof globalThis.scheduler !== 'undefined') {
|
|
1326
|
+
const scheduler = globalThis.scheduler;
|
|
1327
|
+
const promise = scheduler.postTask(task, {
|
|
1328
|
+
...options,
|
|
1329
|
+
signal: controller.signal
|
|
1330
|
+
});
|
|
1331
|
+
promise
|
|
1332
|
+
.finally(() => {
|
|
1333
|
+
this.__controllers.delete(controller);
|
|
1334
|
+
})
|
|
1335
|
+
.catch(() => null);
|
|
1336
|
+
return promise;
|
|
1337
|
+
}
|
|
1338
|
+
return this.promise((resolve, reject) => {
|
|
1339
|
+
const timeout = this.setTimeout(() => {
|
|
1340
|
+
try {
|
|
1341
|
+
resolve(task());
|
|
1342
|
+
}
|
|
1343
|
+
catch (e) {
|
|
1344
|
+
reject(e);
|
|
1345
|
+
}
|
|
1346
|
+
this.__controllers.delete(controller);
|
|
1347
|
+
}, options.delay || 1);
|
|
1348
|
+
controller.signal.addEventListener('abort', () => {
|
|
1349
|
+
this.clearTimeout(timeout);
|
|
1350
|
+
this.__controllers.delete(controller);
|
|
1351
|
+
reject((0,jodit_core_helpers_utils_error_errors_abort_error__WEBPACK_IMPORTED_MODULE_10__/* .abort */ .h)());
|
|
1352
|
+
});
|
|
1353
|
+
});
|
|
1354
|
+
}
|
|
1355
|
+
schedulerYield() {
|
|
1356
|
+
return this.schedulerPostTask(() => { }, { priority: 'user-visible' });
|
|
1357
|
+
}
|
|
1311
1358
|
cancelIdleCallback(request) {
|
|
1312
|
-
this.
|
|
1359
|
+
this.__requestsIdle.delete(request);
|
|
1313
1360
|
return this.__cancelIdleCallbackNative(request);
|
|
1314
1361
|
}
|
|
1315
1362
|
requestAnimationFrame(callback) {
|
|
1316
1363
|
const request = requestAnimationFrame(callback);
|
|
1317
|
-
this.
|
|
1364
|
+
this.__requestsRaf.add(request);
|
|
1318
1365
|
return request;
|
|
1319
1366
|
}
|
|
1320
1367
|
cancelAnimationFrame(request) {
|
|
1321
|
-
this.
|
|
1368
|
+
this.__requestsRaf.delete(request);
|
|
1322
1369
|
cancelAnimationFrame(request);
|
|
1323
1370
|
}
|
|
1324
1371
|
clear() {
|
|
1325
|
-
this.
|
|
1326
|
-
this.
|
|
1372
|
+
this.__requestsIdle.forEach(key => this.cancelIdleCallback(key));
|
|
1373
|
+
this.__requestsRaf.forEach(key => this.cancelAnimationFrame(key));
|
|
1374
|
+
this.__controllers.forEach(controller => controller.abort());
|
|
1327
1375
|
this.timers.forEach(key => (0,jodit_core_helpers_async__WEBPACK_IMPORTED_MODULE_1__/* .clearTimeout */ .D)(this.timers.get(key)));
|
|
1328
1376
|
this.timers.clear();
|
|
1329
1377
|
this.promisesRejections.forEach(reject => reject());
|
|
@@ -1742,7 +1790,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
1742
1790
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
1743
1791
|
* Copyright (c) 2013-2025 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
1744
1792
|
*/
|
|
1745
|
-
const APP_VERSION = "4.5.
|
|
1793
|
+
const APP_VERSION = "4.5.11";
|
|
1746
1794
|
// prettier-ignore
|
|
1747
1795
|
const ES = "es2018";
|
|
1748
1796
|
const IS_ES_MODERN = true;
|
|
@@ -3654,7 +3702,7 @@ class LazyWalker extends jodit_core_event_emitter_eventify__WEBPACK_IMPORTED_MOD
|
|
|
3654
3702
|
}
|
|
3655
3703
|
this.workNodes = jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_1__/* .Dom */ .J.eachGen(root, !this.options.reverse);
|
|
3656
3704
|
this.isFinished = false;
|
|
3657
|
-
this.
|
|
3705
|
+
this._requestStarting();
|
|
3658
3706
|
return this;
|
|
3659
3707
|
}
|
|
3660
3708
|
constructor(async, options = {}) {
|
|
@@ -3666,12 +3714,16 @@ class LazyWalker extends jodit_core_event_emitter_eventify__WEBPACK_IMPORTED_MOD
|
|
|
3666
3714
|
this.isWorked = false;
|
|
3667
3715
|
this.isFinished = false;
|
|
3668
3716
|
this.idleId = 0;
|
|
3717
|
+
this.__schedulerController = null;
|
|
3669
3718
|
}
|
|
3670
|
-
|
|
3671
|
-
|
|
3672
|
-
this.
|
|
3673
|
-
|
|
3674
|
-
|
|
3719
|
+
_requestStarting() {
|
|
3720
|
+
this.__schedulerController = new AbortController();
|
|
3721
|
+
this.async
|
|
3722
|
+
.schedulerPostTask(this.__workPerform, {
|
|
3723
|
+
delay: this.options.timeout,
|
|
3724
|
+
signal: this.__schedulerController.signal
|
|
3725
|
+
})
|
|
3726
|
+
.catch(() => null);
|
|
3675
3727
|
}
|
|
3676
3728
|
break(reason) {
|
|
3677
3729
|
if (this.isWorked) {
|
|
@@ -3696,15 +3748,13 @@ class LazyWalker extends jodit_core_event_emitter_eventify__WEBPACK_IMPORTED_MOD
|
|
|
3696
3748
|
super.destruct();
|
|
3697
3749
|
this.stop();
|
|
3698
3750
|
}
|
|
3699
|
-
|
|
3751
|
+
__workPerform() {
|
|
3700
3752
|
var _a;
|
|
3701
3753
|
if (this.workNodes) {
|
|
3702
3754
|
this.isWorked = true;
|
|
3703
3755
|
let count = 0;
|
|
3704
3756
|
const chunkSize = (_a = this.options.timeoutChunkSize) !== null && _a !== void 0 ? _a : 50;
|
|
3705
|
-
while (!this.isFinished &&
|
|
3706
|
-
(deadline.timeRemaining() > 0 ||
|
|
3707
|
-
(deadline.didTimeout && count <= chunkSize))) {
|
|
3757
|
+
while (!this.isFinished && count <= chunkSize) {
|
|
3708
3758
|
const item = this.workNodes.next();
|
|
3709
3759
|
count += 1;
|
|
3710
3760
|
if (this.visitNode(item.value)) {
|
|
@@ -3720,7 +3770,7 @@ class LazyWalker extends jodit_core_event_emitter_eventify__WEBPACK_IMPORTED_MOD
|
|
|
3720
3770
|
this.end();
|
|
3721
3771
|
}
|
|
3722
3772
|
if (!this.isFinished) {
|
|
3723
|
-
this.
|
|
3773
|
+
this._requestStarting();
|
|
3724
3774
|
}
|
|
3725
3775
|
}
|
|
3726
3776
|
visitNode(nodeElm) {
|
|
@@ -3735,7 +3785,7 @@ class LazyWalker extends jodit_core_event_emitter_eventify__WEBPACK_IMPORTED_MOD
|
|
|
3735
3785
|
}
|
|
3736
3786
|
(0,tslib__WEBPACK_IMPORTED_MODULE_3__/* .__decorate */ .Cg)([
|
|
3737
3787
|
jodit_core_decorators__WEBPACK_IMPORTED_MODULE_0__.autobind
|
|
3738
|
-
], LazyWalker.prototype, "
|
|
3788
|
+
], LazyWalker.prototype, "__workPerform", null);
|
|
3739
3789
|
|
|
3740
3790
|
|
|
3741
3791
|
/***/ }),
|