jodit 4.13.19 → 4.13.21
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 +3 -3
- package/es2015/jodit.js +33 -11
- package/es2015/jodit.min.js +9 -9
- 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 +3 -3
- package/es2018/jodit.min.js +3 -3
- 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 +4 -4
- package/es2021/jodit.js +33 -11
- package/es2021/jodit.min.js +4 -4
- 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 +4 -4
- package/es2021.en/jodit.js +33 -11
- package/es2021.en/jodit.min.js +4 -4
- 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 +43 -11
- 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 +5 -1
- package/esm/plugins/search/ui/search.js +24 -4
- package/package.json +1 -1
package/es5/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.21
|
|
5
5
|
* Url: https://xdsoft.net/jodit/
|
|
6
6
|
* License(s): MIT
|
|
7
7
|
*/
|
|
@@ -2107,7 +2107,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
2107
2107
|
* @packageDocumentation
|
|
2108
2108
|
* @module constants
|
|
2109
2109
|
*/
|
|
2110
|
-
var APP_VERSION = "4.13.
|
|
2110
|
+
var APP_VERSION = "4.13.21";
|
|
2111
2111
|
// prettier-ignore
|
|
2112
2112
|
var ES = "es5";
|
|
2113
2113
|
var IS_ES_MODERN = false;
|
|
@@ -10214,7 +10214,13 @@ var map = {};
|
|
|
10214
10214
|
root.scrollTop = root.scrollTop < alignBottom ? alignBottom : elm.offsetTop;
|
|
10215
10215
|
}
|
|
10216
10216
|
if (!inView(elm, root, doc)) {
|
|
10217
|
-
|
|
10217
|
+
// `block: 'nearest'` scrolls the page the minimal distance (one
|
|
10218
|
+
// line while typing), while the default `block: 'start'` aligns
|
|
10219
|
+
// the element to the viewport top and the page jumps like
|
|
10220
|
+
// PageDown was pressed
|
|
10221
|
+
elm.scrollIntoView({
|
|
10222
|
+
block: 'nearest'
|
|
10223
|
+
});
|
|
10218
10224
|
}
|
|
10219
10225
|
}
|
|
10220
10226
|
}
|
|
@@ -47491,10 +47497,36 @@ var UISearch = /*#__PURE__*/ function(UIElement) {
|
|
|
47491
47497
|
_this.replaceButton = replaceBtn;
|
|
47492
47498
|
_this.currentBox = current;
|
|
47493
47499
|
_this.countBox = count;
|
|
47500
|
+
var closeAction = function closeAction() {
|
|
47501
|
+
return _this.close();
|
|
47502
|
+
};
|
|
47503
|
+
var replaceAction = function replaceAction() {
|
|
47504
|
+
return void jodit.e.fire(_this, 'pressReplaceButton');
|
|
47505
|
+
};
|
|
47506
|
+
var nextAction = function nextAction() {
|
|
47507
|
+
return void jodit.e.fire('searchNext');
|
|
47508
|
+
};
|
|
47509
|
+
var prevAction = function prevAction() {
|
|
47510
|
+
return void jodit.e.fire('searchPrevious');
|
|
47511
|
+
};
|
|
47512
|
+
// Pointer activation is handled on `pointerdown` (returning `false`
|
|
47513
|
+
// there keeps the focus and selection intact), but activating a
|
|
47514
|
+
// native button from the keyboard (Enter/Space) fires only `click`
|
|
47515
|
+
// with `detail === 0` — handle that path separately. Pointer clicks
|
|
47516
|
+
// arrive with `detail >= 1`, so the action does not run twice.
|
|
47517
|
+
// See https://github.com/xdan/jodit/issues/1440
|
|
47518
|
+
var onKeyboardActivate = function onKeyboardActivate(action) {
|
|
47519
|
+
return function(e) {
|
|
47520
|
+
if (!e.detail) {
|
|
47521
|
+
e.preventDefault();
|
|
47522
|
+
action();
|
|
47523
|
+
}
|
|
47524
|
+
};
|
|
47525
|
+
};
|
|
47494
47526
|
jodit.e.on(_this.closeButton, 'pointerdown', function() {
|
|
47495
|
-
|
|
47527
|
+
closeAction();
|
|
47496
47528
|
return false;
|
|
47497
|
-
}).on(_this.queryInput, 'input', function() {
|
|
47529
|
+
}).on(_this.closeButton, 'click', onKeyboardActivate(closeAction)).on(_this.queryInput, 'input', function() {
|
|
47498
47530
|
_this.currentIndex = 0;
|
|
47499
47531
|
}).on(_this.queryInput, 'pointerdown', function() {
|
|
47500
47532
|
if (jodit.s.isFocused()) {
|
|
@@ -47502,15 +47534,15 @@ var UISearch = /*#__PURE__*/ function(UIElement) {
|
|
|
47502
47534
|
_this.selInfo = jodit.s.save();
|
|
47503
47535
|
}
|
|
47504
47536
|
}).on(_this.replaceButton, 'pointerdown', function() {
|
|
47505
|
-
|
|
47537
|
+
replaceAction();
|
|
47506
47538
|
return false;
|
|
47507
|
-
}).on(next, 'pointerdown', function() {
|
|
47508
|
-
|
|
47539
|
+
}).on(_this.replaceButton, 'click', onKeyboardActivate(replaceAction)).on(next, 'pointerdown', function() {
|
|
47540
|
+
nextAction();
|
|
47509
47541
|
return false;
|
|
47510
|
-
}).on(prev, 'pointerdown', function() {
|
|
47511
|
-
|
|
47542
|
+
}).on(next, 'click', onKeyboardActivate(nextAction)).on(prev, 'pointerdown', function() {
|
|
47543
|
+
prevAction();
|
|
47512
47544
|
return false;
|
|
47513
|
-
}).on(_this.queryInput, 'input', function() {
|
|
47545
|
+
}).on(prev, 'click', onKeyboardActivate(prevAction)).on(_this.queryInput, 'input', function() {
|
|
47514
47546
|
_this.setMod('empty-query', !(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_11__.trim)(_this.queryInput.value).length);
|
|
47515
47547
|
}).on(_this.queryInput, 'keydown', function() {
|
|
47516
47548
|
var debounced = _this.j.async.debounce(function(e) {
|
package/es5/jodit.min.css
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
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.21
|
|
5
5
|
* Url: https://xdsoft.net/jodit/
|
|
6
6
|
* License(s): MIT
|
|
7
7
|
*/
|
|
8
8
|
/*!
|
|
9
9
|
* jodit - Jodit is an awesome and useful wysiwyg editor with filebrowser
|
|
10
10
|
* Author: Chupurnov <chupurnov@gmail.com> (https://xdsoft.net/jodit/)
|
|
11
|
-
* Version: v4.13.
|
|
11
|
+
* Version: v4.13.21
|
|
12
12
|
* Url: https://xdsoft.net/jodit/
|
|
13
13
|
* License(s): MIT
|
|
14
14
|
*/
|