jodit 4.13.17 → 4.13.19

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 (58) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/es2015/jodit.css +1 -1
  3. package/es2015/jodit.fat.min.js +4 -4
  4. package/es2015/jodit.js +191 -109
  5. package/es2015/jodit.min.js +4 -4
  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 +9 -9
  13. package/es2018/jodit.min.js +4 -4
  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 +15 -15
  18. package/es2021/jodit.js +187 -105
  19. package/es2021/jodit.min.js +8 -8
  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 +8 -8
  28. package/es2021.en/jodit.js +187 -105
  29. package/es2021.en/jodit.min.js +8 -8
  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 +477 -401
  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 +6 -6
  46. package/es5/plugins/speech-recognize/speech-recognize.min.js +2 -2
  47. package/es5/polyfills.fat.min.js +1 -1
  48. package/es5/polyfills.js +13 -19
  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.d.ts +0 -3
  52. package/esm/core/helpers/utils/scroll-into-view.js +12 -2
  53. package/esm/modules/toolbar/button/button.d.ts +1 -0
  54. package/esm/modules/toolbar/button/button.js +13 -0
  55. package/esm/plugins/table/config.js +79 -19
  56. package/package.json +1 -1
  57. package/types/core/helpers/utils/scroll-into-view.d.ts +0 -3
  58. package/types/modules/toolbar/button/button.d.ts +1 -0
package/CHANGELOG.md CHANGED
@@ -9,6 +9,24 @@
9
9
  > - :house: [Internal]
10
10
  > - :nail_care: [Polish]
11
11
 
12
+ ## 4.13.19
13
+
14
+ #### :bug: Bug Fix
15
+
16
+ - **Accessibility / toolbar**: split-button dropdown triggers (list type, color, etc.) now participate in Tab navigation and open with Enter/Space, as their `role="button"` promises. Thanks [@Sakshamm-Goyal](https://github.com/Sakshamm-Goyal) ([#1420](https://github.com/xdan/jodit/pull/1420), fixes [#1419](https://github.com/xdan/jodit/issues/1419)).
17
+ - **Accessibility / table**: the table-size picker is exposed as an ARIA grid with a single Tab stop — move the active cell with bounded arrow keys (the size preview stays in sync), insert the table with Enter, close the picker with Escape. Mouse and touch keep the same insertion path. Thanks [@Sakshamm-Goyal](https://github.com/Sakshamm-Goyal) ([#1421](https://github.com/xdan/jodit/pull/1421), fixes [#1418](https://github.com/xdan/jodit/issues/1418)).
18
+
19
+ #### :house: Internal
20
+
21
+ - **CI**: the greeting workflow failed on every new issue/PR — `actions/first-interaction` v3 renamed its inputs to snake_case (`issue_message`/`pr_message`/`repo_token`).
22
+ - **Dependencies (dev/build only)**: `webpack-cli` 7.2.2, `less` 4.8.1, `@swc/core` 1.15.47, `@playwright/test` 1.62.1, `js-yaml` 4.3.1, `@tony.ganchev/eslint-plugin-header` 3.4.4, `mini-css-extract-plugin` 2.10.2, `axios` 1.19.0, `dotenv` 17.4.2, `serialize-javascript` 7.0.7 ([#1424](https://github.com/xdan/jodit/pull/1424)–[#1439](https://github.com/xdan/jodit/pull/1439)); GitHub Actions: `actions/checkout` v7, `actions/stale` v11, `actions/labeler` v7, `softprops/action-gh-release` v3. The `@eslint/js` 10 bump was declined — it pairs with ESLint 10 while the repo is on ESLint 9 ([#1432](https://github.com/xdan/jodit/pull/1432)).
23
+
24
+ ## 4.13.18
25
+
26
+ #### :bug: Bug Fix
27
+
28
+ - **Helpers/`inView`**: `getBoundingClientRect` returns fractional values while scroll offsets are integers, so a container scrolled right up to its limit could still appear to clip the element by a fraction of a pixel — `scrollIntoViewIfNeeded` then needlessly fell through to `elm.scrollIntoView()` and scrolled the whole page (breaking e.g. Perfect Scrollbar integrations). Elements clipped by less than a pixel are now treated as visible. Reported by Ralf Pichler (Uniquare, Jodit OEM).
29
+
12
30
  ## 4.13.17
13
31
 
14
32
  #### :bug: Bug Fix
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.13.17
4
+ * Version: v4.13.19
5
5
  * Url: https://xdsoft.net/jodit/
6
6
  * License(s): MIT
7
7
  */