jodit 4.2.35 → 4.2.38

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 (70) hide show
  1. package/CHANGELOG.md +17 -5
  2. package/es2015/jodit.css +4 -3
  3. package/es2015/jodit.fat.min.css +1 -1
  4. package/es2015/jodit.fat.min.js +2 -2
  5. package/es2015/jodit.js +32 -9
  6. package/es2015/jodit.min.css +1 -1
  7. package/es2015/jodit.min.js +2 -2
  8. package/es2015/plugins/debug/debug.js +1 -1
  9. package/es2015/plugins/debug/debug.min.js +1 -1
  10. package/es2015/plugins/speech-recognize/speech-recognize.css +1 -1
  11. package/es2015/plugins/speech-recognize/speech-recognize.js +1 -1
  12. package/es2015/plugins/speech-recognize/speech-recognize.min.js +1 -1
  13. package/es2018/jodit.css +4 -3
  14. package/es2018/jodit.fat.min.css +1 -1
  15. package/es2018/jodit.fat.min.js +2 -2
  16. package/es2018/jodit.js +32 -9
  17. package/es2018/jodit.min.css +1 -1
  18. package/es2018/jodit.min.js +2 -2
  19. package/es2018/plugins/debug/debug.js +1 -1
  20. package/es2018/plugins/debug/debug.min.js +1 -1
  21. package/es2018/plugins/speech-recognize/speech-recognize.css +1 -1
  22. package/es2018/plugins/speech-recognize/speech-recognize.js +1 -1
  23. package/es2018/plugins/speech-recognize/speech-recognize.min.js +1 -1
  24. package/es2021/jodit.css +4 -3
  25. package/es2021/jodit.fat.min.css +1 -1
  26. package/es2021/jodit.fat.min.js +2 -2
  27. package/es2021/jodit.js +31 -9
  28. package/es2021/jodit.min.css +1 -1
  29. package/es2021/jodit.min.js +2 -2
  30. package/es2021/plugins/debug/debug.js +1 -1
  31. package/es2021/plugins/debug/debug.min.js +1 -1
  32. package/es2021/plugins/speech-recognize/speech-recognize.css +1 -1
  33. package/es2021/plugins/speech-recognize/speech-recognize.js +1 -1
  34. package/es2021/plugins/speech-recognize/speech-recognize.min.js +1 -1
  35. package/es2021.en/jodit.css +4 -3
  36. package/es2021.en/jodit.fat.min.css +1 -1
  37. package/es2021.en/jodit.fat.min.js +2 -2
  38. package/es2021.en/jodit.js +31 -9
  39. package/es2021.en/jodit.min.css +1 -1
  40. package/es2021.en/jodit.min.js +2 -2
  41. package/es2021.en/plugins/debug/debug.js +1 -1
  42. package/es2021.en/plugins/debug/debug.min.js +1 -1
  43. package/es2021.en/plugins/speech-recognize/speech-recognize.css +1 -1
  44. package/es2021.en/plugins/speech-recognize/speech-recognize.js +1 -1
  45. package/es2021.en/plugins/speech-recognize/speech-recognize.min.js +1 -1
  46. package/es5/164.fat.min.js +1 -1
  47. package/es5/164.min.js +1 -1
  48. package/es5/5.fat.min.js +1 -1
  49. package/es5/5.min.js +1 -1
  50. package/es5/jodit.css +4 -4
  51. package/es5/jodit.fat.min.css +1 -1
  52. package/es5/jodit.fat.min.js +2 -2
  53. package/es5/jodit.js +34 -9
  54. package/es5/jodit.min.css +3 -3
  55. package/es5/jodit.min.js +2 -2
  56. package/es5/plugins/debug/debug.js +1 -1
  57. package/es5/plugins/debug/debug.min.js +1 -1
  58. package/es5/plugins/speech-recognize/speech-recognize.css +1 -1
  59. package/es5/plugins/speech-recognize/speech-recognize.js +1 -1
  60. package/es5/plugins/speech-recognize/speech-recognize.min.js +1 -1
  61. package/esm/core/constants.js +1 -1
  62. package/esm/core/selection/selection.js +3 -7
  63. package/esm/core/ui/form/form.js +1 -0
  64. package/esm/core/ui/form/inputs/input/input.d.ts +1 -0
  65. package/esm/core/ui/form/inputs/input/input.js +13 -1
  66. package/esm/plugins/resizer/resizer.d.ts +1 -0
  67. package/esm/plugins/resizer/resizer.js +13 -0
  68. package/package.json +1 -1
  69. package/types/core/ui/form/inputs/input/input.d.ts +1 -0
  70. package/types/plugins/resizer/resizer.d.ts +1 -0
package/CHANGELOG.md CHANGED
@@ -9,6 +9,18 @@
9
9
  > - :house: [Internal]
10
10
  > - :nail_care: [Polish]
11
11
 
12
+ ## 4.2.38
13
+
14
+ ### :bug: Bug Fix
15
+
16
+ - Fixed behavior of form submit with its own validation
17
+
18
+ ## 4.2.37
19
+
20
+ ### :bug: Bug Fix
21
+
22
+ - [Bug: this.j.o.resizer is undefined in jodit version 4 #1166](https://github.com/xdan/jodit/issues/1166)
23
+
12
24
  ## 4.2.35
13
25
 
14
26
  ### :bug: Bug Fix
@@ -2847,11 +2859,11 @@ Related with https://github.com/xdan/jodit/issues/574. In some cases need to lim
2847
2859
  - @property {IUIOption[]} link.selectOptionsClassName=[] The list of the option for the select (to use with
2848
2860
  modeClassName="select")
2849
2861
  - ex: [
2850
- - { value: "", text: "" },
2851
- - { value: "val1", text: "text1" },
2852
- - { value: "val2", text: "text2" },
2853
- - { value: "val3", text: "text3" }
2854
- - ]
2862
+ - { value: "", text: "" },
2863
+ - { value: "val1", text: "text1" },
2864
+ - { value: "val2", text: "text2" },
2865
+ - { value: "val3", text: "text3" }
2866
+ - ]
2855
2867
  PR: https://github.com/xdan/jodit/pull/577 Thanks @s-renier-taonix-fr
2856
2868
 
2857
2869
  ##### New option `statusbar: boolean = true`
package/es2015/jodit.css 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.2.35
4
+ * Version: v4.2.38
5
5
  * Url: https://xdsoft.net/jodit/
6
6
  * License(s): MIT
7
7
  */
@@ -1237,6 +1237,7 @@
1237
1237
  :root {
1238
1238
  --jd-popup-box-shadow: 0 4px 1px -2px rgba(76, 76, 76, 0.2),
1239
1239
  0 3px 3px 0 rgb(76 76 76 / 15%), 0 1px 4px 0 rgb(76 76 76 / 13%);
1240
+ --jd-popup-max-height: max(50vh, 350px);
1240
1241
  }
1241
1242
  .jodit-popup {
1242
1243
  position: static;
@@ -1259,7 +1260,7 @@
1259
1260
  font-family: var(--jd-font-default);
1260
1261
  font-size: var(--jd-font-size-default);
1261
1262
  overflow: auto;
1262
- max-height: 300px;
1263
+ max-height: var(--jd-popup-max-height, 400px);
1263
1264
  padding: var(--jd-padding-default);
1264
1265
  background: var(--jd-color-background-default);
1265
1266
  overflow-scrolling: touch;
@@ -2673,7 +2674,7 @@
2673
2674
  font-family: var(--jd-font-default);
2674
2675
  font-size: var(--jd-font-size-default);
2675
2676
  overflow: auto;
2676
- max-height: 300px;
2677
+ max-height: var(--jd-popup-max-height, 400px);
2677
2678
  padding: var(--jd-padding-default);
2678
2679
  background: var(--jd-color-background-default);
2679
2680
  overflow-scrolling: touch;