jodit 4.1.11 → 4.1.14

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 (69) hide show
  1. package/CHANGELOG.md +27 -5
  2. package/es2015/jodit.css +2 -1
  3. package/es2015/jodit.fat.min.css +1 -1
  4. package/es2015/jodit.fat.min.js +2 -2
  5. package/es2015/jodit.js +145 -105
  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 +3 -3
  12. package/es2015/plugins/speech-recognize/speech-recognize.min.js +2 -2
  13. package/es2018/jodit.css +2 -1
  14. package/es2018/jodit.fat.min.css +1 -1
  15. package/es2018/jodit.fat.min.js +2 -2
  16. package/es2018/jodit.js +144 -104
  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 +3 -3
  23. package/es2018/plugins/speech-recognize/speech-recognize.min.js +2 -2
  24. package/es2021/jodit.css +2 -1
  25. package/es2021/jodit.fat.min.css +1 -1
  26. package/es2021/jodit.fat.min.js +2 -2
  27. package/es2021/jodit.js +143 -104
  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 +3 -3
  34. package/es2021/plugins/speech-recognize/speech-recognize.min.js +2 -2
  35. package/es2021.en/jodit.css +2 -1
  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 +143 -104
  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 +3 -3
  45. package/es2021.en/plugins/speech-recognize/speech-recognize.min.js +2 -2
  46. package/es5/jodit.css +3 -2
  47. package/es5/jodit.fat.min.css +1 -1
  48. package/es5/jodit.fat.min.js +2 -2
  49. package/es5/jodit.js +156 -108
  50. package/es5/jodit.min.css +3 -3
  51. package/es5/jodit.min.js +2 -2
  52. package/es5/plugins/debug/debug.js +1 -1
  53. package/es5/plugins/debug/debug.min.js +1 -1
  54. package/es5/plugins/speech-recognize/speech-recognize.css +1 -1
  55. package/es5/plugins/speech-recognize/speech-recognize.js +3 -3
  56. package/es5/plugins/speech-recognize/speech-recognize.min.js +2 -2
  57. package/esm/core/constants.js +1 -1
  58. package/esm/core/decorators/watch/watch.d.ts +0 -1
  59. package/esm/core/decorators/watch/watch.js +0 -1
  60. package/esm/modules/file-browser/data-provider.js +1 -0
  61. package/esm/modules/file-browser/file-browser.d.ts +3 -0
  62. package/esm/modules/file-browser/file-browser.js +27 -1
  63. package/esm/plugins/ai-assistant/ai-assistant.d.ts +2 -0
  64. package/esm/plugins/ai-assistant/ai-assistant.js +40 -29
  65. package/esm/plugins/ai-assistant/ui/ui-ai-assistant.js +1 -1
  66. package/package.json +1 -1
  67. package/types/core/decorators/watch/watch.d.ts +0 -1
  68. package/types/modules/file-browser/file-browser.d.ts +3 -0
  69. package/types/plugins/ai-assistant/ai-assistant.d.ts +2 -0
package/CHANGELOG.md CHANGED
@@ -9,6 +9,28 @@
9
9
  > - :house: [Internal]
10
10
  > - :nail_care: [Polish]
11
11
 
12
+ ## 4.1.12
13
+
14
+ #### :boom: Breaking Change
15
+
16
+ - Removed the default export from the watch decorator. We refrain from using default exports in this project (refer to CONTRIBUTING.md for more details).
17
+
18
+ Before:
19
+
20
+ ```js
21
+ import watch, { watch as watch2 } from 'jodit/core/decorators/watch/watch';
22
+ ```
23
+
24
+ Now only:
25
+
26
+ ```js
27
+ import { watch } from 'jodit/core/decorators/watch/watch';
28
+ ```
29
+
30
+ ### :bug: Bug Fix
31
+
32
+ - [FileBrowser - Permissions Incorrect during Open of Dialog #1095](https://github.com/xdan/jodit/issues/1095)
33
+
12
34
  ## 4.1.11
13
35
 
14
36
  - Fixed a bug within the FileBrowser module. The issue was due to the import order; the Ajax configuration was applied after the module had been initialized.
@@ -2557,11 +2579,11 @@ Related with https://github.com/xdan/jodit/issues/574. In some cases need to lim
2557
2579
  - @property {IUIOption[]} link.selectOptionsClassName=[] The list of the option for the select (to use with
2558
2580
  modeClassName="select")
2559
2581
  - ex: [
2560
- - { value: "", text: "" },
2561
- - { value: "val1", text: "text1" },
2562
- - { value: "val2", text: "text2" },
2563
- - { value: "val3", text: "text3" }
2564
- - ]
2582
+ - { value: "", text: "" },
2583
+ - { value: "val1", text: "text1" },
2584
+ - { value: "val2", text: "text2" },
2585
+ - { value: "val3", text: "text3" }
2586
+ - ]
2565
2587
  PR: https://github.com/xdan/jodit/pull/577 Thanks @s-renier-taonix-fr
2566
2588
 
2567
2589
  ##### 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.1.11
4
+ * Version: v4.1.14
5
5
  * Url: https://xdsoft.net/jodit/
6
6
  * License(s): MIT
7
7
  */
@@ -4221,6 +4221,7 @@ html.jodit_fullsize-box_true {
4221
4221
  min-width: 100%;
4222
4222
  overflow: auto;
4223
4223
  line-height: 1.5;
4224
+ max-width: 460px;
4224
4225
  }
4225
4226
  .jodit-ui-ai-assistant__results p {
4226
4227
  margin: 0 0 10px;