jodit 4.12.27 → 4.12.29
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 +12 -0
- package/es2015/jodit.css +1 -1
- package/es2015/jodit.fat.min.js +2 -2
- package/es2015/jodit.js +44 -8
- package/es2015/jodit.min.js +2 -2
- 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 +2 -2
- package/es2018/jodit.min.js +2 -2
- 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 +3 -3
- package/es2021/jodit.js +44 -8
- package/es2021/jodit.min.js +3 -3
- 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 +3 -3
- package/es2021.en/jodit.js +44 -8
- package/es2021.en/jodit.min.js +3 -3
- 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 +44 -8
- 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 +1 -1
- package/es5/plugins/speech-recognize/speech-recognize.min.js +1 -1
- package/es5/polyfills.fat.min.js +1 -1
- package/es5/polyfills.js +1 -1
- package/es5/polyfills.min.js +1 -1
- package/esm/core/constants.js +1 -1
- package/esm/core/event-emitter/event-emitter.js +6 -6
- package/esm/core/helpers/html/safe-html.js +39 -0
- package/package.json +1 -1
package/es5/polyfills.fat.min.js
CHANGED
package/es5/polyfills.js
CHANGED
package/es5/polyfills.min.js
CHANGED
package/esm/core/constants.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4
4
|
* Copyright (c) 2013-2026 Valerii Chupurnov. All rights reserved. https://xdsoft.net
|
|
5
5
|
*/
|
|
6
|
-
export const APP_VERSION = "4.12.
|
|
6
|
+
export const APP_VERSION = "4.12.29";
|
|
7
7
|
// prettier-ignore
|
|
8
8
|
export const ES = "es2020";
|
|
9
9
|
export const IS_ES_MODERN = true;
|
|
@@ -53,12 +53,12 @@ export class EventEmitter {
|
|
|
53
53
|
}
|
|
54
54
|
__removeStoreFromSubject(subject) {
|
|
55
55
|
if (subject[this.__key] !== undefined) {
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
56
|
+
// Fully remove the namespaces store key instead of just setting it to
|
|
57
|
+
// `undefined`. On long-lived subjects — e.g. `window` in an SPA where
|
|
58
|
+
// editors are repeatedly created and destroyed — leftover `undefined`
|
|
59
|
+
// keys would otherwise pile up on the object. The property is defined
|
|
60
|
+
// as `configurable`, so `delete` removes it cleanly.
|
|
61
|
+
delete subject[this.__key];
|
|
62
62
|
}
|
|
63
63
|
}
|
|
64
64
|
__triggerNativeEvent(element, event) {
|
|
@@ -8,6 +8,37 @@
|
|
|
8
8
|
*/
|
|
9
9
|
import { Dom } from "../../dom/dom.js";
|
|
10
10
|
import { attr } from "../utils/index.js";
|
|
11
|
+
const HTML_NAMESPACE = 'http://www.w3.org/1999/xhtml';
|
|
12
|
+
/**
|
|
13
|
+
* Integration points where HTML is legitimately allowed inside MathML/SVG foreign content.
|
|
14
|
+
*/
|
|
15
|
+
const HTML_INTEGRATION_POINTS = new Set([
|
|
16
|
+
'foreignobject',
|
|
17
|
+
'annotation-xml',
|
|
18
|
+
'desc',
|
|
19
|
+
'title'
|
|
20
|
+
]);
|
|
21
|
+
/**
|
|
22
|
+
* True for an HTML element the parser placed inside MathML/SVG outside an integration point - smuggled
|
|
23
|
+
* HTML (e.g. `mglyph` / `style` under `<math>`) that a reparse can hoist into a live node. Legitimate
|
|
24
|
+
* MathML/SVG children and HTML below an integration point are kept.
|
|
25
|
+
*/
|
|
26
|
+
function isSmuggledForeignHtml(elm) {
|
|
27
|
+
if (elm.namespaceURI !== HTML_NAMESPACE ||
|
|
28
|
+
elm.closest('math,svg') == null) {
|
|
29
|
+
return false;
|
|
30
|
+
}
|
|
31
|
+
for (let parent = elm.parentElement; parent; parent = parent.parentElement) {
|
|
32
|
+
const name = parent.nodeName.toLowerCase();
|
|
33
|
+
if (name === 'math' || name === 'svg') {
|
|
34
|
+
break;
|
|
35
|
+
}
|
|
36
|
+
if (HTML_INTEGRATION_POINTS.has(name)) {
|
|
37
|
+
return false;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
return true;
|
|
41
|
+
}
|
|
11
42
|
/**
|
|
12
43
|
* Removes dangerous constructs from HTML
|
|
13
44
|
*/
|
|
@@ -16,6 +47,14 @@ export function safeHTML(box, options) {
|
|
|
16
47
|
if (!Dom.isElement(box) && !Dom.isFragment(box)) {
|
|
17
48
|
return;
|
|
18
49
|
}
|
|
50
|
+
// Drop HTML smuggled into MathML/SVG before the walk: a reparse would otherwise hoist its hidden
|
|
51
|
+
// markup into a live node.
|
|
52
|
+
const foreign = box.querySelectorAll('math *, svg *');
|
|
53
|
+
for (let i = 0; i < foreign.length; i++) {
|
|
54
|
+
if (foreign[i].isConnected && isSmuggledForeignHtml(foreign[i])) {
|
|
55
|
+
Dom.safeRemove(foreign[i]);
|
|
56
|
+
}
|
|
57
|
+
}
|
|
19
58
|
const removeEvents = (_a = options.removeEventAttributes) !== null && _a !== void 0 ? _a : options.removeOnError;
|
|
20
59
|
// Single synchronous traversal of the subtree. Besides removing event
|
|
21
60
|
// handlers and `javascript:` links, `sanitizeHTMLElement` neutralises
|