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/es2015/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
  */
@@ -1849,7 +1849,7 @@ __webpack_require__.r(__webpack_exports__);
1849
1849
  * ```
1850
1850
  * @packageDocumentation
1851
1851
  * @module constants
1852
- */ const APP_VERSION = "4.13.19";
1852
+ */ const APP_VERSION = "4.13.21";
1853
1853
  // prettier-ignore
1854
1854
  const ES = "es2015";
1855
1855
  const IS_ES_MODERN = true;
@@ -9137,7 +9137,13 @@ const map = {};
9137
9137
  root.scrollTop = root.scrollTop < alignBottom ? alignBottom : elm.offsetTop;
9138
9138
  }
9139
9139
  if (!inView(elm, root, doc)) {
9140
- elm.scrollIntoView();
9140
+ // `block: 'nearest'` scrolls the page the minimal distance (one
9141
+ // line while typing), while the default `block: 'start'` aligns
9142
+ // the element to the viewport top and the page jumps like
9143
+ // PageDown was pressed
9144
+ elm.scrollIntoView({
9145
+ block: 'nearest'
9146
+ });
9141
9147
  }
9142
9148
  }
9143
9149
  }
@@ -40273,10 +40279,26 @@ class UISearch extends jodit_core_ui__WEBPACK_IMPORTED_MODULE_7__.UIElement {
40273
40279
  this.replaceButton = replaceBtn;
40274
40280
  this.currentBox = current;
40275
40281
  this.countBox = count;
40282
+ const closeAction = ()=>this.close();
40283
+ const replaceAction = ()=>void jodit.e.fire(this, 'pressReplaceButton');
40284
+ const nextAction = ()=>void jodit.e.fire('searchNext');
40285
+ const prevAction = ()=>void jodit.e.fire('searchPrevious');
40286
+ // Pointer activation is handled on `pointerdown` (returning `false`
40287
+ // there keeps the focus and selection intact), but activating a
40288
+ // native button from the keyboard (Enter/Space) fires only `click`
40289
+ // with `detail === 0` — handle that path separately. Pointer clicks
40290
+ // arrive with `detail >= 1`, so the action does not run twice.
40291
+ // See https://github.com/xdan/jodit/issues/1440
40292
+ const onKeyboardActivate = (action)=>(e)=>{
40293
+ if (!e.detail) {
40294
+ e.preventDefault();
40295
+ action();
40296
+ }
40297
+ };
40276
40298
  jodit.e.on(this.closeButton, 'pointerdown', ()=>{
40277
- this.close();
40299
+ closeAction();
40278
40300
  return false;
40279
- }).on(this.queryInput, 'input', ()=>{
40301
+ }).on(this.closeButton, 'click', onKeyboardActivate(closeAction)).on(this.queryInput, 'input', ()=>{
40280
40302
  this.currentIndex = 0;
40281
40303
  }).on(this.queryInput, 'pointerdown', ()=>{
40282
40304
  if (jodit.s.isFocused()) {
@@ -40284,15 +40306,15 @@ class UISearch extends jodit_core_ui__WEBPACK_IMPORTED_MODULE_7__.UIElement {
40284
40306
  this.selInfo = jodit.s.save();
40285
40307
  }
40286
40308
  }).on(this.replaceButton, 'pointerdown', ()=>{
40287
- jodit.e.fire(this, 'pressReplaceButton');
40309
+ replaceAction();
40288
40310
  return false;
40289
- }).on(next, 'pointerdown', ()=>{
40290
- void jodit.e.fire('searchNext');
40311
+ }).on(this.replaceButton, 'click', onKeyboardActivate(replaceAction)).on(next, 'pointerdown', ()=>{
40312
+ nextAction();
40291
40313
  return false;
40292
- }).on(prev, 'pointerdown', ()=>{
40293
- jodit.e.fire('searchPrevious');
40314
+ }).on(next, 'click', onKeyboardActivate(nextAction)).on(prev, 'pointerdown', ()=>{
40315
+ prevAction();
40294
40316
  return false;
40295
- }).on(this.queryInput, 'input', ()=>{
40317
+ }).on(prev, 'click', onKeyboardActivate(prevAction)).on(this.queryInput, 'input', ()=>{
40296
40318
  this.setMod('empty-query', !(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_6__.trim)(this.queryInput.value).length);
40297
40319
  }).on(this.queryInput, 'keydown', (()=>{
40298
40320
  const debounced = this.j.async.debounce((e)=>(0,_swc_helpers_async_to_generator__WEBPACK_IMPORTED_MODULE_0__._)(function*() {