jodit 4.13.18 → 4.13.20
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.
- package/CHANGELOG.md +18 -0
- package/es2015/jodit.css +1 -1
- package/es2015/jodit.fat.min.js +5 -5
- package/es2015/jodit.js +205 -115
- package/es2015/jodit.min.js +9 -9
- package/es2015/plugins/debug/debug.css +1 -1
- package/es2015/plugins/debug/debug.js +1 -1
- package/es2015/plugins/debug/debug.min.js +1 -1
- package/es2015/plugins/speech-recognize/speech-recognize.css +1 -1
- package/es2015/plugins/speech-recognize/speech-recognize.js +1 -1
- package/es2015/plugins/speech-recognize/speech-recognize.min.js +1 -1
- package/es2018/jodit.fat.min.js +9 -9
- package/es2018/jodit.min.js +5 -5
- package/es2018/plugins/debug/debug.min.js +1 -1
- package/es2018/plugins/speech-recognize/speech-recognize.min.js +1 -1
- package/es2021/jodit.css +1 -1
- package/es2021/jodit.fat.min.js +15 -15
- package/es2021/jodit.js +201 -111
- package/es2021/jodit.min.js +8 -8
- package/es2021/plugins/debug/debug.css +1 -1
- package/es2021/plugins/debug/debug.js +1 -1
- package/es2021/plugins/debug/debug.min.js +1 -1
- package/es2021/plugins/speech-recognize/speech-recognize.css +1 -1
- package/es2021/plugins/speech-recognize/speech-recognize.js +1 -1
- package/es2021/plugins/speech-recognize/speech-recognize.min.js +1 -1
- package/es2021.en/jodit.css +1 -1
- package/es2021.en/jodit.fat.min.js +8 -8
- package/es2021.en/jodit.js +201 -111
- package/es2021.en/jodit.min.js +8 -8
- package/es2021.en/plugins/debug/debug.css +1 -1
- package/es2021.en/plugins/debug/debug.js +1 -1
- package/es2021.en/plugins/debug/debug.min.js +1 -1
- package/es2021.en/plugins/speech-recognize/speech-recognize.css +1 -1
- package/es2021.en/plugins/speech-recognize/speech-recognize.js +1 -1
- package/es2021.en/plugins/speech-recognize/speech-recognize.min.js +1 -1
- package/es5/jodit.css +2 -2
- package/es5/jodit.fat.min.js +2 -2
- package/es5/jodit.js +501 -407
- package/es5/jodit.min.css +2 -2
- package/es5/jodit.min.js +2 -2
- package/es5/plugins/debug/debug.css +1 -1
- package/es5/plugins/debug/debug.js +1 -1
- package/es5/plugins/debug/debug.min.js +1 -1
- package/es5/plugins/speech-recognize/speech-recognize.css +1 -1
- package/es5/plugins/speech-recognize/speech-recognize.js +6 -6
- package/es5/plugins/speech-recognize/speech-recognize.min.js +2 -2
- package/es5/polyfills.fat.min.js +1 -1
- package/es5/polyfills.js +13 -19
- package/es5/polyfills.min.js +1 -1
- package/esm/core/constants.js +1 -1
- package/esm/modules/toolbar/button/button.d.ts +1 -0
- package/esm/modules/toolbar/button/button.js +13 -0
- package/esm/plugins/search/ui/search.js +24 -4
- package/esm/plugins/table/config.js +79 -19
- package/package.json +1 -1
- 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.20
|
|
13
|
+
|
|
14
|
+
#### :bug: Bug Fix
|
|
15
|
+
|
|
16
|
+
- **Search**: the next/previous/close/replace buttons of the search bar could be reached with Tab but did nothing on Enter/Space — the handlers listened only to `pointerdown`, while keyboard activation of a native button fires `click`. Keyboard-initiated clicks (`detail === 0`, which also covers screen readers) are now handled; pointer behaviour is unchanged. Fixes [#1440](https://github.com/xdan/jodit/issues/1440).
|
|
17
|
+
|
|
18
|
+
## 4.13.19
|
|
19
|
+
|
|
20
|
+
#### :bug: Bug Fix
|
|
21
|
+
|
|
22
|
+
- **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)).
|
|
23
|
+
- **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)).
|
|
24
|
+
|
|
25
|
+
#### :house: Internal
|
|
26
|
+
|
|
27
|
+
- **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`).
|
|
28
|
+
- **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)).
|
|
29
|
+
|
|
12
30
|
## 4.13.18
|
|
13
31
|
|
|
14
32
|
#### :bug: Bug Fix
|
package/es2015/jodit.css
CHANGED