jodit 4.6.15 → 4.6.18
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 +15 -0
- package/es2015/jodit.css +1 -1
- package/es2015/jodit.fat.min.js +2 -2
- package/es2015/jodit.js +25 -5
- 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.css +1 -1
- package/es2018/jodit.fat.min.js +2 -2
- package/es2018/jodit.js +25 -5
- package/es2018/jodit.min.js +2 -2
- package/es2018/plugins/debug/debug.css +1 -1
- package/es2018/plugins/debug/debug.js +1 -1
- package/es2018/plugins/debug/debug.min.js +1 -1
- package/es2018/plugins/speech-recognize/speech-recognize.css +1 -1
- package/es2018/plugins/speech-recognize/speech-recognize.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 +2 -2
- package/es2021/jodit.js +25 -5
- package/es2021/jodit.min.js +2 -2
- 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 +2 -2
- package/es2021.en/jodit.js +25 -5
- package/es2021.en/jodit.min.js +2 -2
- 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/415.fat.min.js +1 -1
- package/es5/415.min.js +1 -1
- package/es5/5.fat.min.js +1 -1
- package/es5/5.min.js +1 -1
- package/es5/jodit.css +2 -2
- package/es5/jodit.fat.min.js +2 -2
- package/es5/jodit.js +29 -5
- 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/esm/core/constants.js +1 -1
- package/esm/core/selection/selection.js +11 -0
- package/esm/plugins/link/link.js +12 -3
- package/package.json +1 -1
package/es2018/jodit.js
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.6.
|
|
4
|
+
* Version: v4.6.18
|
|
5
5
|
* Url: https://xdsoft.net/jodit/
|
|
6
6
|
* License(s): MIT
|
|
7
7
|
*/
|
|
@@ -8389,7 +8389,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
8389
8389
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
8390
8390
|
* Copyright (c) 2013-2025 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
8391
8391
|
*/
|
|
8392
|
-
const APP_VERSION = "4.6.
|
|
8392
|
+
const APP_VERSION = "4.6.18";
|
|
8393
8393
|
// prettier-ignore
|
|
8394
8394
|
const ES = "es2018";
|
|
8395
8395
|
const IS_ES_MODERN = true;
|
|
@@ -21786,7 +21786,12 @@ function writeClasses(modeClassName, className_input, className_select, a) {
|
|
|
21786
21786
|
for (let i = 0; i < className_select.selectedOptions.length; i++) {
|
|
21787
21787
|
const className = (_a = className_select.selectedOptions.item(i)) === null || _a === void 0 ? void 0 : _a.value;
|
|
21788
21788
|
if (className) {
|
|
21789
|
-
|
|
21789
|
+
className
|
|
21790
|
+
.split(/\s+/)
|
|
21791
|
+
.filter(cn => cn.trim().length > 0)
|
|
21792
|
+
.forEach(cn => {
|
|
21793
|
+
a.classList.add(cn);
|
|
21794
|
+
});
|
|
21790
21795
|
}
|
|
21791
21796
|
}
|
|
21792
21797
|
}
|
|
@@ -21808,11 +21813,15 @@ function readClassnames(modeClassName, className_input, link, className_select)
|
|
|
21808
21813
|
}
|
|
21809
21814
|
}
|
|
21810
21815
|
const classNames = (0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_4__.attr)(link, 'class') || '';
|
|
21811
|
-
classNames
|
|
21816
|
+
classNames
|
|
21817
|
+
.split(/\s+/)
|
|
21818
|
+
.filter(cn => cn.trim().length > 0)
|
|
21819
|
+
.forEach(className => {
|
|
21812
21820
|
if (className) {
|
|
21813
21821
|
for (let i = 0; i < className_select.options.length; i++) {
|
|
21814
21822
|
const option = className_select.options.item(i);
|
|
21815
|
-
if ((option === null || option === void 0 ? void 0 : option.value) &&
|
|
21823
|
+
if ((option === null || option === void 0 ? void 0 : option.value) &&
|
|
21824
|
+
option.value === className) {
|
|
21816
21825
|
option.selected = true;
|
|
21817
21826
|
}
|
|
21818
21827
|
}
|
|
@@ -37812,12 +37821,23 @@ class Selection {
|
|
|
37812
37821
|
this.j.e.fire('beforeInsertNode', node);
|
|
37813
37822
|
if (sel && sel.rangeCount) {
|
|
37814
37823
|
const range = sel.getRangeAt(0);
|
|
37824
|
+
const { firstChild } = node;
|
|
37815
37825
|
if (jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_3__/* .Dom */ .J.isOrContains(this.area, range.commonAncestorContainer)) {
|
|
37816
37826
|
jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_3__/* .Dom */ .J.safeInsertNode(range, node);
|
|
37817
37827
|
}
|
|
37818
37828
|
else {
|
|
37819
37829
|
this.area.appendChild(node);
|
|
37820
37830
|
}
|
|
37831
|
+
[
|
|
37832
|
+
() => firstChild === null || firstChild === void 0 ? void 0 : firstChild.previousSibling,
|
|
37833
|
+
() => firstChild === null || firstChild === void 0 ? void 0 : firstChild.previousSibling,
|
|
37834
|
+
() => { var _a; return (_a = firstChild === null || firstChild === void 0 ? void 0 : firstChild.previousSibling) === null || _a === void 0 ? void 0 : _a.lastChild; }
|
|
37835
|
+
].forEach(getChildNode => {
|
|
37836
|
+
const childNode = getChildNode();
|
|
37837
|
+
if (childNode && jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_3__/* .Dom */ .J.isEmptyTextNode(childNode)) {
|
|
37838
|
+
jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_3__/* .Dom */ .J.safeRemove(childNode);
|
|
37839
|
+
}
|
|
37840
|
+
});
|
|
37821
37841
|
}
|
|
37822
37842
|
else {
|
|
37823
37843
|
this.area.appendChild(node);
|