jodit 4.0.0-beta.98 → 4.0.0-beta.99

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.
Files changed (53) hide show
  1. package/CHANGELOG.md +18 -6
  2. package/README.md +4 -4
  3. package/es2015/jodit.css +1 -1
  4. package/es2015/jodit.fat.min.js +2 -2
  5. package/es2015/jodit.js +24 -19
  6. package/es2015/jodit.min.js +2 -2
  7. package/es2015/plugins/debug/debug.js +1 -1
  8. package/es2015/plugins/debug/debug.min.js +1 -1
  9. package/es2015/plugins/speech-recognize/speech-recognize.css +1 -1
  10. package/es2015/plugins/speech-recognize/speech-recognize.js +1 -1
  11. package/es2015/plugins/speech-recognize/speech-recognize.min.js +1 -1
  12. package/es2018/jodit.css +1 -1
  13. package/es2018/jodit.fat.min.js +2 -2
  14. package/es2018/jodit.js +24 -19
  15. package/es2018/jodit.min.js +2 -2
  16. package/es2018/plugins/debug/debug.js +1 -1
  17. package/es2018/plugins/debug/debug.min.js +1 -1
  18. package/es2018/plugins/speech-recognize/speech-recognize.css +1 -1
  19. package/es2018/plugins/speech-recognize/speech-recognize.js +1 -1
  20. package/es2018/plugins/speech-recognize/speech-recognize.min.js +1 -1
  21. package/es2021/jodit.css +1 -1
  22. package/es2021/jodit.fat.min.js +2 -2
  23. package/es2021/jodit.js +24 -19
  24. package/es2021/jodit.min.js +2 -2
  25. package/es2021/plugins/debug/debug.js +1 -1
  26. package/es2021/plugins/debug/debug.min.js +1 -1
  27. package/es2021/plugins/speech-recognize/speech-recognize.css +1 -1
  28. package/es2021/plugins/speech-recognize/speech-recognize.js +1 -1
  29. package/es2021/plugins/speech-recognize/speech-recognize.min.js +1 -1
  30. package/es2021.en/jodit.css +1 -1
  31. package/es2021.en/jodit.fat.min.js +2 -2
  32. package/es2021.en/jodit.js +24 -19
  33. package/es2021.en/jodit.min.js +2 -2
  34. package/es2021.en/plugins/debug/debug.js +1 -1
  35. package/es2021.en/plugins/debug/debug.min.js +1 -1
  36. package/es2021.en/plugins/speech-recognize/speech-recognize.css +1 -1
  37. package/es2021.en/plugins/speech-recognize/speech-recognize.js +1 -1
  38. package/es2021.en/plugins/speech-recognize/speech-recognize.min.js +1 -1
  39. package/es5/jodit.css +2 -2
  40. package/es5/jodit.fat.min.js +2 -2
  41. package/es5/jodit.js +33 -28
  42. package/es5/jodit.min.css +2 -2
  43. package/es5/jodit.min.js +2 -2
  44. package/es5/plugins/debug/debug.js +1 -1
  45. package/es5/plugins/debug/debug.min.js +1 -1
  46. package/es5/plugins/speech-recognize/speech-recognize.css +1 -1
  47. package/es5/plugins/speech-recognize/speech-recognize.js +1 -1
  48. package/es5/plugins/speech-recognize/speech-recognize.min.js +1 -1
  49. package/esm/core/async/async.d.ts +1 -1
  50. package/esm/core/async/async.js +4 -0
  51. package/esm/core/constants.js +1 -1
  52. package/package.json +1 -1
  53. package/types/core/async/async.d.ts +1 -1
package/CHANGELOG.md CHANGED
@@ -9,16 +9,28 @@
9
9
  > - :house: [Internal]
10
10
  > - :nail_care: [Polish]
11
11
 
12
+ ## 4.0.0-beta.97
13
+
14
+ #### :house: Internal
15
+
16
+ - Calls to setTimout without the async module have been removed from autotests, and most of the asynchronous tests have been rewritten from done to async/await
17
+
12
18
  ## 4.0.0-beta.96
13
19
 
14
- - Removed `Jodit.modules.Helpers.val` method
20
+ #### :boom: Breaking Change
21
+
22
+ - Removed `Jodit.modules.Helpers.val` method
15
23
 
16
24
  ## 4.0.0-beta.95
17
25
 
26
+ ### :bug: Bug Fix
27
+
18
28
  - Fixed the logic of the file upload module. When HTTP errors were simply ignored.
19
29
 
20
30
  ## 4.0.0-beta.93
21
31
 
32
+ ### :bug: Bug Fix
33
+
22
34
  - Fixed a bug with the `editor.selection.setCursorIn(box)` method, which could set the cursor inside a <br>.
23
35
 
24
36
  ## 4.0.0-beta.91
@@ -2316,11 +2328,11 @@ Related with https://github.com/xdan/jodit/issues/574. In some cases need to lim
2316
2328
  - @property {IUIOption[]} link.selectOptionsClassName=[] The list of the option for the select (to use with
2317
2329
  modeClassName="select")
2318
2330
  - ex: [
2319
- - { value: "", text: "" },
2320
- - { value: "val1", text: "text1" },
2321
- - { value: "val2", text: "text2" },
2322
- - { value: "val3", text: "text3" }
2323
- - ]
2331
+ - { value: "", text: "" },
2332
+ - { value: "val1", text: "text1" },
2333
+ - { value: "val2", text: "text2" },
2334
+ - { value: "val3", text: "text3" }
2335
+ - ]
2324
2336
  PR: https://github.com/xdan/jodit/pull/577 Thanks @s-renier-taonix-fr
2325
2337
 
2326
2338
  ##### New option `statusbar: boolean = true`
package/README.md CHANGED
@@ -109,9 +109,9 @@ You can manually include additional plugins and languages as needed.
109
109
  ```html
110
110
  <link
111
111
  rel="stylesheet"
112
- href="https://cdnjs.cloudflare.com/ajax/libs/jodit/4.0.0-beta.98/es2021/jodit.min.css"
112
+ href="https://cdnjs.cloudflare.com/ajax/libs/jodit/4.0.0-beta.99/es2021/jodit.min.css"
113
113
  />
114
- <script src="https://cdnjs.cloudflare.com/ajax/libs/jodit/4.0.0-beta.98/es2021/jodit.min.js"></script>
114
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/jodit/4.0.0-beta.99/es2021/jodit.min.js"></script>
115
115
  ```
116
116
 
117
117
  #### unpkg
@@ -119,9 +119,9 @@ You can manually include additional plugins and languages as needed.
119
119
  ```html
120
120
  <link
121
121
  rel="stylesheet"
122
- href="https://unpkg.com/jodit@4.0.0-beta.98/es2021/jodit.min.css"
122
+ href="https://unpkg.com/jodit@4.0.0-beta.99/es2021/jodit.min.css"
123
123
  />
124
- <script src="https://unpkg.com/jodit@4.0.0-beta.98/es2021/jodit.min.js"></script>
124
+ <script src="https://unpkg.com/jodit@4.0.0-beta.99/es2021/jodit.min.js"></script>
125
125
  ```
126
126
 
127
127
  ### Usage
package/es2015/jodit.css CHANGED
@@ -1,7 +1,7 @@
1
1
  /*!
2
2
  * jodit - Jodit is awesome and usefully wysiwyg editor with filebrowser
3
3
  * Author: Chupurnov <chupurnov@gmail.com> (https://xdsoft.net/jodit/)
4
- * Version: v4.0.0-beta.98
4
+ * Version: v4.0.0-beta.99
5
5
  * Url: https://xdsoft.net/jodit/
6
6
  * License(s): MIT
7
7
  */