Skip to content

Commit c3aafd2

Browse files
committed
chore: update tinymce to v7.7.2
1 parent bba4a68 commit c3aafd2

File tree

105 files changed

+1944
-1747
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

105 files changed

+1944
-1747
lines changed

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/ext/tinymce/CHANGELOG.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,47 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
66
and is generated by [Changie](https://github.com/miniscruff/changie).
77

8+
## 7.7.2 - 2025-03-19
9+
10+
### Fixed
11+
- Error was thrown when pressing tab in the last cell of a non-editable table. #TINY-11797
12+
- Error was thrown when trying to use the context form API after a component was detached. #TINY-11781
13+
- Deleting an empty block within an <li> element would move cursor to the end of the <li>. #TINY-11763
14+
- Deleting an empty block that was between two lists would throw an Error when all three elements were nested inside a list. #TINY-11763
15+
16+
## 7.7.1 - 2025-03-05
17+
18+
### Fixed
19+
- Skin UI content CSS was truncated when bundling, causing CSS styles to be missing. #TINY-11875
20+
- Context forms used to disappear if their input was disabled in the `onSetup` API. #TINY-11890
21+
22+
## 7.7.0 - 2025-02-20
23+
24+
### Added
25+
- `link_attributes_postprocess` option that allows overriding attributes of a link that would be inserted through the link dialog. #TINY-11707
26+
27+
### Improved
28+
- Improved visual indication of keyboard focus in annotations that contain an image. #TINY-11596
29+
- The type now defaults to `info` when `editor.notificationManager.open()` is used without a specified type or with an invalid one. #TINY-11661
30+
31+
### Changed
32+
- Updated the `link` plugin behavior to move the cursor outside of the link when inserted or edited via the UI. Patch contributed by Philipp91. #GH-9998
33+
34+
### Fixed
35+
- Keyboard navigation for size inputs in context forms. #TINY-11394
36+
- Keyboard navigation for context form sliders. #TINY-11482
37+
- The `insertContent` API was not replacing selected non-editable elements correctly. #TINY-11714
38+
- Context toolbar inputs had incorrect margins. #TINY-11624
39+
- Iframe aria text no longer suggests opening the help dialog when the help plugin is not enabled. #TINY-11672
40+
- Preview dialog no longer opens anchor links in a new tab. #TINY-11740
41+
- The `float` property was not properly removed on the image when converting a image into a captioned image. #TINY-11670
42+
- Expanding selection to word didn't work inside inline editing host elements. #TINY-11304
43+
- The `semantics` element in MathML was not properly retained when `annotation` elements were allowed. #TINY-11755
44+
- It was possible to tab to a toolbar group that had all children disabled. #TINY-11665
45+
- Keyboard navigation would get stuck on the 'more' toolbar button. #TINY-11762
46+
- Toolbar groups had both a `title` attribute and a custom tooltip, causing overlapping tooltips #TINY-11768
47+
- Toolbar text field did not render focus correctly. #TINY-11658
48+
849
## 7.6.1 - 2025-01-22
950

1051
### Fixed

public/ext/tinymce/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tinymce/tinymce",
3-
"version": "7.6.1",
3+
"version": "7.7.2",
44
"description": "Web based JavaScript HTML WYSIWYG editor control.",
55
"license": [
66
"GPL-2.0-or-later"

public/ext/tinymce/models/dom/model.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* TinyMCE version 7.6.1 (2025-01-22)
2+
* TinyMCE version 7.7.2 (2025-03-19)
33
*/
44

55
(function () {
@@ -6565,7 +6565,7 @@
65656565
} else if (selection.extend) {
65666566
try {
65676567
setLegacyRtlRange(win, selection, start, soffset, finish, foffset);
6568-
} catch (e) {
6568+
} catch (_a) {
65696569
doSetRange(win, finish, foffset, start, soffset);
65706570
}
65716571
} else {

public/ext/tinymce/models/dom/model.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/ext/tinymce/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tinymce",
3-
"version": "7.6.1",
3+
"version": "7.7.2",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/tinymce/tinymce.git",

public/ext/tinymce/plugins/accordion/plugin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* TinyMCE version 7.6.1 (2025-01-22)
2+
* TinyMCE version 7.7.2 (2025-03-19)
33
*/
44

55
(function () {

public/ext/tinymce/plugins/accordion/plugin.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/ext/tinymce/plugins/advlist/plugin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* TinyMCE version 7.6.1 (2025-01-22)
2+
* TinyMCE version 7.7.2 (2025-03-19)
33
*/
44

55
(function () {

public/ext/tinymce/plugins/advlist/plugin.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)