jodit 4.13.14 → 4.13.16
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 +8 -8
- package/es2015/jodit.js +32 -12
- package/es2015/jodit.min.js +4 -4
- 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 +4 -4
- package/es2018/jodit.min.js +4 -4
- 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 +5 -5
- package/es2021/jodit.js +32 -12
- package/es2021/jodit.min.js +5 -5
- 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 +5 -5
- package/es2021.en/jodit.js +32 -12
- package/es2021.en/jodit.min.js +5 -5
- 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 +32 -12
- 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/helpers/utils/scroll-into-view.js +18 -7
- package/esm/modules/uploader/config.js +1 -0
- package/esm/modules/widget/file-selector/file-selector.js +1 -0
- package/esm/plugins/enter/helpers/split-fragment.js +11 -2
- package/esm/types/uploader.d.ts +16 -0
- package/package.json +1 -1
- package/types/types/uploader.d.ts +16 -0
package/es2015/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.13.
|
|
4
|
+
* Version: v4.13.16
|
|
5
5
|
* Url: https://xdsoft.net/jodit/
|
|
6
6
|
* License(s): MIT
|
|
7
7
|
*/
|
|
@@ -1849,7 +1849,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
1849
1849
|
* ```
|
|
1850
1850
|
* @packageDocumentation
|
|
1851
1851
|
* @module constants
|
|
1852
|
-
*/ const APP_VERSION = "4.13.
|
|
1852
|
+
*/ const APP_VERSION = "4.13.16";
|
|
1853
1853
|
// prettier-ignore
|
|
1854
1854
|
const ES = "es2015";
|
|
1855
1855
|
const IS_ES_MODERN = true;
|
|
@@ -9096,7 +9096,12 @@ const map = {};
|
|
|
9096
9096
|
while(el && el !== root && el.parentNode){
|
|
9097
9097
|
el = el.parentNode;
|
|
9098
9098
|
rect = el.getBoundingClientRect();
|
|
9099
|
-
|
|
9099
|
+
// The element's bottom is clipped by the container's bottom edge: a
|
|
9100
|
+
// caret sitting on that line is invisible, so the element is not in
|
|
9101
|
+
// view even though its top still fits. The `top > rect.top` guard keeps
|
|
9102
|
+
// elements taller than the container (which can never fully fit) from
|
|
9103
|
+
// being treated as always out of view. See #1300
|
|
9104
|
+
if (top + height > rect.bottom && top > rect.top) {
|
|
9100
9105
|
return false;
|
|
9101
9106
|
}
|
|
9102
9107
|
// Check if the element is out of view due to a container scrolling
|
|
@@ -9104,19 +9109,24 @@ const map = {};
|
|
|
9104
9109
|
return false;
|
|
9105
9110
|
}
|
|
9106
9111
|
}
|
|
9107
|
-
// Check it's within the document viewport: the element must
|
|
9108
|
-
//
|
|
9109
|
-
// the latter guard was missing, so an
|
|
9110
|
-
// wrongly reported as visible and never
|
|
9112
|
+
// Check it's within the document viewport: the element must fit above the
|
|
9113
|
+
// viewport bottom (same clipped-bottom rule as above), and its bottom must
|
|
9114
|
+
// not be above the viewport top — the latter guard was missing, so an
|
|
9115
|
+
// element scrolled above the top was wrongly reported as visible and never
|
|
9116
|
+
// scrolled to. See #1279
|
|
9111
9117
|
const clientHeight = doc.documentElement && doc.documentElement.clientHeight || 0;
|
|
9112
|
-
return top <= clientHeight && top + height >= 0;
|
|
9118
|
+
return (top + height <= clientHeight || top <= 0) && top + height >= 0;
|
|
9113
9119
|
}
|
|
9114
9120
|
/**
|
|
9115
9121
|
* Scroll element into view if it is not in view
|
|
9116
9122
|
*/ function scrollIntoViewIfNeeded(elm, root, doc) {
|
|
9117
9123
|
if (jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_0__.Dom.isHTMLElement(elm) && !inView(elm, root, doc)) {
|
|
9118
9124
|
if (root.clientHeight !== root.scrollHeight) {
|
|
9119
|
-
|
|
9125
|
+
// Scroll the minimal distance: when the element is below the
|
|
9126
|
+
// visible area align it to the bottom (natural typing flow),
|
|
9127
|
+
// otherwise align it to the top. See #1300
|
|
9128
|
+
const alignBottom = elm.offsetTop + elm.offsetHeight - root.clientHeight;
|
|
9129
|
+
root.scrollTop = root.scrollTop < alignBottom ? alignBottom : elm.offsetTop;
|
|
9120
9130
|
}
|
|
9121
9131
|
if (!inView(elm, root, doc)) {
|
|
9122
9132
|
elm.scrollIntoView();
|
|
@@ -24822,6 +24832,7 @@ function makeSelect(view, control, target = null) {
|
|
|
24822
24832
|
jodit_config__WEBPACK_IMPORTED_MODULE_2__.Config.prototype.uploader = {
|
|
24823
24833
|
url: '',
|
|
24824
24834
|
insertImageAsBase64URI: false,
|
|
24835
|
+
showTabInFileSelector: true,
|
|
24825
24836
|
imagesExtensions: [
|
|
24826
24837
|
'jpg',
|
|
24827
24838
|
'jpeg',
|
|
@@ -25650,7 +25661,7 @@ jodit_core_ui__WEBPACK_IMPORTED_MODULE_2__.Icon.set('palette', (_palette_svg__WE
|
|
|
25650
25661
|
let currentImage;
|
|
25651
25662
|
const tabs = [];
|
|
25652
25663
|
const options = editor.o.uploader;
|
|
25653
|
-
if (callbacks.upload && (options.url || options.insertImageAsBase64URI || options.customUploadFunction)) {
|
|
25664
|
+
if (callbacks.upload && options.showTabInFileSelector !== false && (options.url || options.insertImageAsBase64URI || options.customUploadFunction)) {
|
|
25654
25665
|
const dragBox = editor.c.fromHTML('<div class="jodit-drag-and-drop__file-box">' + `<strong>${editor.i18n(isImage ? 'Drop image' : 'Drop file')}</strong>` + `<span><br>${editor.i18n('or click')}</span>` + `<input type="file" accept="${isImage ? 'image/*' : '*'}" tabindex="-1" dir="auto" multiple=""/>` + '</div>');
|
|
25655
25666
|
editor.uploader.bind(dragBox, (resp)=>{
|
|
25656
25667
|
const handler = (0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_1__.isFunction)(callbacks.upload) ? callbacks.upload : options.defaultHandlerSuccess;
|
|
@@ -31296,8 +31307,17 @@ function brBefore(start) {
|
|
|
31296
31307
|
}
|
|
31297
31308
|
return;
|
|
31298
31309
|
}
|
|
31299
|
-
|
|
31300
|
-
|
|
31310
|
+
// Inserting the left half above the caret can trigger the browser's
|
|
31311
|
+
// scroll anchoring and shift the visible area — keep it stable. See #1300
|
|
31312
|
+
const { scrollTop } = jodit.editor;
|
|
31313
|
+
sel.splitSelection(block, fake);
|
|
31314
|
+
if (jodit.editor.scrollTop !== scrollTop) {
|
|
31315
|
+
jodit.editor.scrollTop = scrollTop;
|
|
31316
|
+
}
|
|
31317
|
+
// After the split the caret stays inside `block` (the right half) —
|
|
31318
|
+
// `splitSelection` returns the left half, which is above the caret and
|
|
31319
|
+
// usually already visible. Follow the caret, not the left half. See #1300
|
|
31320
|
+
(0,jodit_core_helpers_utils_scroll_into_view__WEBPACK_IMPORTED_MODULE_1__.scrollIntoViewIfNeeded)(block, jodit.editor, jodit.ed);
|
|
31301
31321
|
}
|
|
31302
31322
|
|
|
31303
31323
|
|