jodit 4.13.19 → 4.13.21

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 +12 -0
  2. package/es2015/jodit.css +1 -1
  3. package/es2015/jodit.fat.min.js +3 -3
  4. package/es2015/jodit.js +33 -11
  5. package/es2015/jodit.min.js +9 -9
  6. package/es2015/plugins/debug/debug.css +1 -1
  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.fat.min.js +3 -3
  13. package/es2018/jodit.min.js +3 -3
  14. package/es2018/plugins/debug/debug.min.js +1 -1
  15. package/es2018/plugins/speech-recognize/speech-recognize.min.js +1 -1
  16. package/es2021/jodit.css +1 -1
  17. package/es2021/jodit.fat.min.js +4 -4
  18. package/es2021/jodit.js +33 -11
  19. package/es2021/jodit.min.js +4 -4
  20. package/es2021/plugins/debug/debug.css +1 -1
  21. package/es2021/plugins/debug/debug.js +1 -1
  22. package/es2021/plugins/debug/debug.min.js +1 -1
  23. package/es2021/plugins/speech-recognize/speech-recognize.css +1 -1
  24. package/es2021/plugins/speech-recognize/speech-recognize.js +1 -1
  25. package/es2021/plugins/speech-recognize/speech-recognize.min.js +1 -1
  26. package/es2021.en/jodit.css +1 -1
  27. package/es2021.en/jodit.fat.min.js +4 -4
  28. package/es2021.en/jodit.js +33 -11
  29. package/es2021.en/jodit.min.js +4 -4
  30. package/es2021.en/plugins/debug/debug.css +1 -1
  31. package/es2021.en/plugins/debug/debug.js +1 -1
  32. package/es2021.en/plugins/debug/debug.min.js +1 -1
  33. package/es2021.en/plugins/speech-recognize/speech-recognize.css +1 -1
  34. package/es2021.en/plugins/speech-recognize/speech-recognize.js +1 -1
  35. package/es2021.en/plugins/speech-recognize/speech-recognize.min.js +1 -1
  36. package/es5/jodit.css +2 -2
  37. package/es5/jodit.fat.min.js +2 -2
  38. package/es5/jodit.js +43 -11
  39. package/es5/jodit.min.css +2 -2
  40. package/es5/jodit.min.js +2 -2
  41. package/es5/plugins/debug/debug.css +1 -1
  42. package/es5/plugins/debug/debug.js +1 -1
  43. package/es5/plugins/debug/debug.min.js +1 -1
  44. package/es5/plugins/speech-recognize/speech-recognize.css +1 -1
  45. package/es5/plugins/speech-recognize/speech-recognize.js +1 -1
  46. package/es5/plugins/speech-recognize/speech-recognize.min.js +1 -1
  47. package/es5/polyfills.fat.min.js +1 -1
  48. package/es5/polyfills.js +1 -1
  49. package/es5/polyfills.min.js +1 -1
  50. package/esm/core/constants.js +1 -1
  51. package/esm/core/helpers/utils/scroll-into-view.js +5 -1
  52. package/esm/plugins/search/ui/search.js +24 -4
  53. package/package.json +1 -1
package/es2021/jodit.js 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.13.19
4
+ * Version: v4.13.21
5
5
  * Url: https://xdsoft.net/jodit/
6
6
  * License(s): MIT
7
7
  */
@@ -1843,7 +1843,7 @@ __webpack_require__.r(__webpack_exports__);
1843
1843
  * ```
1844
1844
  * @packageDocumentation
1845
1845
  * @module constants
1846
- */ const APP_VERSION = "4.13.19";
1846
+ */ const APP_VERSION = "4.13.21";
1847
1847
  // prettier-ignore
1848
1848
  const ES = "es2021";
1849
1849
  const IS_ES_MODERN = true;
@@ -9108,7 +9108,13 @@ const map = {};
9108
9108
  root.scrollTop = root.scrollTop < alignBottom ? alignBottom : elm.offsetTop;
9109
9109
  }
9110
9110
  if (!inView(elm, root, doc)) {
9111
- elm.scrollIntoView();
9111
+ // `block: 'nearest'` scrolls the page the minimal distance (one
9112
+ // line while typing), while the default `block: 'start'` aligns
9113
+ // the element to the viewport top and the page jumps like
9114
+ // PageDown was pressed
9115
+ elm.scrollIntoView({
9116
+ block: 'nearest'
9117
+ });
9112
9118
  }
9113
9119
  }
9114
9120
  }
@@ -39975,10 +39981,26 @@ class UISearch extends jodit_core_ui__WEBPACK_IMPORTED_MODULE_6__.UIElement {
39975
39981
  this.replaceButton = replaceBtn;
39976
39982
  this.currentBox = current;
39977
39983
  this.countBox = count;
39984
+ const closeAction = ()=>this.close();
39985
+ const replaceAction = ()=>void jodit.e.fire(this, 'pressReplaceButton');
39986
+ const nextAction = ()=>void jodit.e.fire('searchNext');
39987
+ const prevAction = ()=>void jodit.e.fire('searchPrevious');
39988
+ // Pointer activation is handled on `pointerdown` (returning `false`
39989
+ // there keeps the focus and selection intact), but activating a
39990
+ // native button from the keyboard (Enter/Space) fires only `click`
39991
+ // with `detail === 0` — handle that path separately. Pointer clicks
39992
+ // arrive with `detail >= 1`, so the action does not run twice.
39993
+ // See https://github.com/xdan/jodit/issues/1440
39994
+ const onKeyboardActivate = (action)=>(e)=>{
39995
+ if (!e.detail) {
39996
+ e.preventDefault();
39997
+ action();
39998
+ }
39999
+ };
39978
40000
  jodit.e.on(this.closeButton, 'pointerdown', ()=>{
39979
- this.close();
40001
+ closeAction();
39980
40002
  return false;
39981
- }).on(this.queryInput, 'input', ()=>{
40003
+ }).on(this.closeButton, 'click', onKeyboardActivate(closeAction)).on(this.queryInput, 'input', ()=>{
39982
40004
  this.currentIndex = 0;
39983
40005
  }).on(this.queryInput, 'pointerdown', ()=>{
39984
40006
  if (jodit.s.isFocused()) {
@@ -39986,15 +40008,15 @@ class UISearch extends jodit_core_ui__WEBPACK_IMPORTED_MODULE_6__.UIElement {
39986
40008
  this.selInfo = jodit.s.save();
39987
40009
  }
39988
40010
  }).on(this.replaceButton, 'pointerdown', ()=>{
39989
- jodit.e.fire(this, 'pressReplaceButton');
40011
+ replaceAction();
39990
40012
  return false;
39991
- }).on(next, 'pointerdown', ()=>{
39992
- void jodit.e.fire('searchNext');
40013
+ }).on(this.replaceButton, 'click', onKeyboardActivate(replaceAction)).on(next, 'pointerdown', ()=>{
40014
+ nextAction();
39993
40015
  return false;
39994
- }).on(prev, 'pointerdown', ()=>{
39995
- jodit.e.fire('searchPrevious');
40016
+ }).on(next, 'click', onKeyboardActivate(nextAction)).on(prev, 'pointerdown', ()=>{
40017
+ prevAction();
39996
40018
  return false;
39997
- }).on(this.queryInput, 'input', ()=>{
40019
+ }).on(prev, 'click', onKeyboardActivate(prevAction)).on(this.queryInput, 'input', ()=>{
39998
40020
  this.setMod('empty-query', !(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_5__.trim)(this.queryInput.value).length);
39999
40021
  }).on(this.queryInput, 'keydown', (()=>{
40000
40022
  const debounced = this.j.async.debounce(async (e)=>{