jodit 4.0.0-beta.87 → 4.0.0-beta.88

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 (58) hide show
  1. package/CHANGELOG.md +15 -8
  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 +42 -42
  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 +42 -42
  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 +39 -42
  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 +39 -42
  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 +40 -42
  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/constants.js +1 -1
  50. package/esm/core/selection/interface.d.ts +5 -0
  51. package/esm/core/selection/interface.js +6 -1
  52. package/esm/core/selection/style/commit-style.js +2 -0
  53. package/esm/jodit.js +1 -10
  54. package/esm/plugins/backspace/interface.d.ts +9 -8
  55. package/esm/plugins/wrap-nodes/wrap-nodes.js +34 -30
  56. package/package.json +1 -1
  57. package/types/core/selection/interface.d.ts +5 -0
  58. package/types/plugins/backspace/interface.d.ts +9 -8
package/CHANGELOG.md CHANGED
@@ -9,9 +9,16 @@
9
9
  > - :house: [Internal]
10
10
  > - :nail_care: [Polish]
11
11
 
12
+ ## 4.0.0-beta.88
13
+
14
+ ### :bug: Bug Fix
15
+
16
+ - Fixed a bug where the cursor, when positioned at the start of the h1 tag and a style was applied to the h1 tag, would move up one tag level.
17
+ - [Firefox specific execCommands no longer needed #1028](https://github.com/xdan/jodit/issues/1028)
18
+
12
19
  ## 4.0.0-beta.78
13
20
 
14
- - Update
21
+ - Update
15
22
 
16
23
  ```
17
24
  @types/ace ^0.0.48 → ^0.0.49
@@ -35,10 +42,10 @@
35
42
 
36
43
  ```
37
44
 
38
-
39
45
  ## 4.0.0-beta.78
40
46
 
41
- - Update
47
+ - Update
48
+
42
49
  ```
43
50
  @types/karma ^6.3.3 → ^6.3.4
44
51
  @types/node ^20.1.0 → ^20.5.0
@@ -2247,11 +2254,11 @@ Related with https://github.com/xdan/jodit/issues/574. In some cases need to lim
2247
2254
  - @property {IUIOption[]} link.selectOptionsClassName=[] The list of the option for the select (to use with
2248
2255
  modeClassName="select")
2249
2256
  - ex: [
2250
- - { value: "", text: "" },
2251
- - { value: "val1", text: "text1" },
2252
- - { value: "val2", text: "text2" },
2253
- - { value: "val3", text: "text3" }
2254
- - ]
2257
+ - { value: "", text: "" },
2258
+ - { value: "val1", text: "text1" },
2259
+ - { value: "val2", text: "text2" },
2260
+ - { value: "val3", text: "text3" }
2261
+ - ]
2255
2262
  PR: https://github.com/xdan/jodit/pull/577 Thanks @s-renier-taonix-fr
2256
2263
 
2257
2264
  ##### 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.87/es2021/jodit.min.css"
112
+ href="https://cdnjs.cloudflare.com/ajax/libs/jodit/4.0.0-beta.88/es2021/jodit.min.css"
113
113
  />
114
- <script src="https://cdnjs.cloudflare.com/ajax/libs/jodit/4.0.0-beta.87/es2021/jodit.min.js"></script>
114
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/jodit/4.0.0-beta.88/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.87/es2021/jodit.min.css"
122
+ href="https://unpkg.com/jodit@4.0.0-beta.88/es2021/jodit.min.css"
123
123
  />
124
- <script src="https://unpkg.com/jodit@4.0.0-beta.87/es2021/jodit.min.js"></script>
124
+ <script src="https://unpkg.com/jodit@4.0.0-beta.88/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.87
4
+ * Version: v4.0.0-beta.88
5
5
  * Url: https://xdsoft.net/jodit/
6
6
  * License(s): MIT
7
7
  */