jodit 4.5.8 → 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 +76 -29
- 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 +79 -29
- 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 +79 -28
- 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 +79 -28
- 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 +10 -0
- package/es5/{975.js → 415.js} +604 -604
- package/es5/415.min.js +10 -0
- package/es5/5.fat.min.js +2 -2
- package/es5/5.js +5 -5
- package/es5/5.min.js +2 -2
- package/es5/jodit.css +2 -2
- package/es5/jodit.fat.min.js +2 -2
- package/es5/jodit.js +79 -29
- 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 +59 -11
- 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/es5/975.fat.min.js +0 -10
- package/es5/975.min.js +0 -10
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,27 @@
|
|
|
9
9
|
> - :house: [Internal]
|
|
10
10
|
> - :nail_care: [Polish]
|
|
11
11
|
|
|
12
|
+
## 4.5.10
|
|
13
|
+
|
|
14
|
+
#### :house: Internal
|
|
15
|
+
|
|
16
|
+
- Shit of the Chai JS module to the browser because the developers decided not to support the assembly for browsers anymore
|
|
17
|
+
|
|
18
|
+
### :rocket: New Feature
|
|
19
|
+
|
|
20
|
+
- Added API launching tasks for schedule with a reference on https://wicg.github.io/scheduling-apis/
|
|
21
|
+
- [LazyWalker](https://xdsoft.net/jodit/docs/modules/dom.html#lazywalker) module now uses the new API for scheduling tasks
|
|
22
|
+
|
|
23
|
+
```js
|
|
24
|
+
const editor = Jodit.make('#editor');
|
|
25
|
+
editor.schedulePostTask(
|
|
26
|
+
() => {
|
|
27
|
+
console.log('Task 1');
|
|
28
|
+
},
|
|
29
|
+
{ priority: 'user-blocking' }
|
|
30
|
+
);
|
|
31
|
+
```
|
|
32
|
+
|
|
12
33
|
## 4.5.5
|
|
13
34
|
|
|
14
35
|
### :rocket: New Feature
|
|
@@ -1661,7 +1682,7 @@ Jodit.make('#editor', {
|
|
|
1661
1682
|
|
|
1662
1683
|
- Separate plugin for voice recognition and input of recognized text into the editor.
|
|
1663
1684
|
[Feature Request: Add ability for user to dictate using local device microphone as input #828](https://github.com/xdan/jodit/issues/828)
|
|
1664
|
-
> This plugin is not included in the main Jodit build. It must be connected separately [
|
|
1685
|
+
> This plugin is not included in the main Jodit build. It must be connected separately [Read more](./src/plugins/speech-recognize/README.md)
|
|
1665
1686
|
|
|
1666
1687
|
## 3.18.5
|
|
1667
1688
|
|
|
@@ -2530,7 +2551,7 @@ while (!next2.done) {
|
|
|
2530
2551
|
|
|
2531
2552
|
#### :rocket: New Feature
|
|
2532
2553
|
|
|
2533
|
-
-
|
|
2554
|
+
- The methods added to Eventemitter:
|
|
2534
2555
|
- `mute(event?: string)` Doesn't start any handler;
|
|
2535
2556
|
- `isMuted(event?: string)` No handlers are triggered for the event
|
|
2536
2557
|
- `unmute(event?: string)` Returns event handling
|
package/es2015/jodit.css
CHANGED