tinymce-rails 8.3.1 → 8.3.2
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.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 10e69183d506cda983b121b12f86c4b7d19f2cd675ddd0583c3c953f24688d56
|
|
4
|
+
data.tar.gz: a17d5f648be6e81958c85841ad72465f39b09964a74fb32622a6593ce0f80766
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b772ad603fb52cdcd143f265aac03a6a25e0117403affe89aebf544cb818c87089cc0a3746e30d02016184162c8e88d86894b10f07151e26800f786727c9100f
|
|
7
|
+
data.tar.gz: 1b3cabb68065117e568acc1d15b607793c18bfaa34135a698a1f8e66a38d8a9d6ed61a232017d73222f90d1d893029bb7ba7466d25c5bf784467861aa52dfa64
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* TinyMCE version 8.3.
|
|
2
|
+
* TinyMCE version 8.3.2 (2026-01-14)
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
5
|
(function () {
|
|
@@ -22713,7 +22713,7 @@
|
|
|
22713
22713
|
// We need to create a temporary document instead of using the global document since
|
|
22714
22714
|
// innerHTML on a detached element will still make http requests to the images
|
|
22715
22715
|
const lazyTempDocument = cached(() => document.implementation.createHTMLDocument('undo'));
|
|
22716
|
-
const
|
|
22716
|
+
const shouldBeFragmented = (body) => body.querySelector(`iframe, ${ucVideoNodeName}`) !== null;
|
|
22717
22717
|
const createFragmentedLevel = (fragments) => {
|
|
22718
22718
|
return {
|
|
22719
22719
|
type: 'fragmented',
|
|
@@ -22735,7 +22735,7 @@
|
|
|
22735
22735
|
const createFromEditor = (editor) => {
|
|
22736
22736
|
const tempAttrs = editor.serializer.getTempAttrs();
|
|
22737
22737
|
const body = trim$1(editor.getBody(), tempAttrs);
|
|
22738
|
-
return
|
|
22738
|
+
return shouldBeFragmented(body) ? createFragmentedLevel(read$2(body, true)) : createCompleteLevel(trim$2(body.innerHTML));
|
|
22739
22739
|
};
|
|
22740
22740
|
const applyToEditor = (editor, level, before) => {
|
|
22741
22741
|
const bookmark = before ? level.beforeBookmark : level.bookmark;
|
|
@@ -40581,14 +40581,14 @@
|
|
|
40581
40581
|
* @property minorVersion
|
|
40582
40582
|
* @type String
|
|
40583
40583
|
*/
|
|
40584
|
-
minorVersion: '3.
|
|
40584
|
+
minorVersion: '3.2',
|
|
40585
40585
|
/**
|
|
40586
40586
|
* Release date of TinyMCE build.
|
|
40587
40587
|
*
|
|
40588
40588
|
* @property releaseDate
|
|
40589
40589
|
* @type String
|
|
40590
40590
|
*/
|
|
40591
|
-
releaseDate: '
|
|
40591
|
+
releaseDate: '2026-01-14',
|
|
40592
40592
|
/**
|
|
40593
40593
|
* Collection of language pack data.
|
|
40594
40594
|
*
|