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
@@ -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
  }
@@ -39202,10 +39208,26 @@ class UISearch extends jodit_core_ui__WEBPACK_IMPORTED_MODULE_6__.UIElement {
39202
39208
  this.replaceButton = replaceBtn;
39203
39209
  this.currentBox = current;
39204
39210
  this.countBox = count;
39211
+ const closeAction = ()=>this.close();
39212
+ const replaceAction = ()=>void jodit.e.fire(this, 'pressReplaceButton');
39213
+ const nextAction = ()=>void jodit.e.fire('searchNext');
39214
+ const prevAction = ()=>void jodit.e.fire('searchPrevious');
39215
+ // Pointer activation is handled on `pointerdown` (returning `false`
39216
+ // there keeps the focus and selection intact), but activating a
39217
+ // native button from the keyboard (Enter/Space) fires only `click`
39218
+ // with `detail === 0` — handle that path separately. Pointer clicks
39219
+ // arrive with `detail >= 1`, so the action does not run twice.
39220
+ // See https://github.com/xdan/jodit/issues/1440
39221
+ const onKeyboardActivate = (action)=>(e)=>{
39222
+ if (!e.detail) {
39223
+ e.preventDefault();
39224
+ action();
39225
+ }
39226
+ };
39205
39227
  jodit.e.on(this.closeButton, 'pointerdown', ()=>{
39206
- this.close();
39228
+ closeAction();
39207
39229
  return false;
39208
- }).on(this.queryInput, 'input', ()=>{
39230
+ }).on(this.closeButton, 'click', onKeyboardActivate(closeAction)).on(this.queryInput, 'input', ()=>{
39209
39231
  this.currentIndex = 0;
39210
39232
  }).on(this.queryInput, 'pointerdown', ()=>{
39211
39233
  if (jodit.s.isFocused()) {
@@ -39213,15 +39235,15 @@ class UISearch extends jodit_core_ui__WEBPACK_IMPORTED_MODULE_6__.UIElement {
39213
39235
  this.selInfo = jodit.s.save();
39214
39236
  }
39215
39237
  }).on(this.replaceButton, 'pointerdown', ()=>{
39216
- jodit.e.fire(this, 'pressReplaceButton');
39238
+ replaceAction();
39217
39239
  return false;
39218
- }).on(next, 'pointerdown', ()=>{
39219
- void jodit.e.fire('searchNext');
39240
+ }).on(this.replaceButton, 'click', onKeyboardActivate(replaceAction)).on(next, 'pointerdown', ()=>{
39241
+ nextAction();
39220
39242
  return false;
39221
- }).on(prev, 'pointerdown', ()=>{
39222
- jodit.e.fire('searchPrevious');
39243
+ }).on(next, 'click', onKeyboardActivate(nextAction)).on(prev, 'pointerdown', ()=>{
39244
+ prevAction();
39223
39245
  return false;
39224
- }).on(this.queryInput, 'input', ()=>{
39246
+ }).on(prev, 'click', onKeyboardActivate(prevAction)).on(this.queryInput, 'input', ()=>{
39225
39247
  this.setMod('empty-query', !(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_5__.trim)(this.queryInput.value).length);
39226
39248
  }).on(this.queryInput, 'keydown', (()=>{
39227
39249
  const debounced = this.j.async.debounce(async (e)=>{