jodit 4.13.25 → 4.13.26
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 +7 -0
- package/es2015/jodit.css +1 -1
- package/es2015/jodit.fat.min.js +4 -4
- package/es2015/jodit.js +36 -11
- 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 +4 -4
- package/es2021/jodit.js +36 -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 +36 -11
- package/es2021.en/jodit.min.js +25 -25
- 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 +36 -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/ui/popup/popup.js +13 -1
- package/esm/modules/toolbar/button/button.js +19 -11
- package/esm/modules/widget/color-picker/color-picker.js +8 -0
- package/package.json +1 -1
package/es2021/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.26
|
|
5
5
|
* Url: https://xdsoft.net/jodit/
|
|
6
6
|
* License(s): MIT
|
|
7
7
|
*/
|
|
@@ -1843,7 +1843,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
1843
1843
|
* ```
|
|
1844
1844
|
* @packageDocumentation
|
|
1845
1845
|
* @module constants
|
|
1846
|
-
*/ const APP_VERSION = "4.13.
|
|
1846
|
+
*/ const APP_VERSION = "4.13.26";
|
|
1847
1847
|
// prettier-ignore
|
|
1848
1848
|
const ES = "es2021";
|
|
1849
1849
|
const IS_ES_MODERN = true;
|
|
@@ -16465,6 +16465,15 @@ class Popup extends jodit_core_ui_group_group__WEBPACK_IMPORTED_MODULE_9__.UIGro
|
|
|
16465
16465
|
this.j.e.fire(this, 'beforeClose');
|
|
16466
16466
|
this.j.e.fire('beforePopupClose', this);
|
|
16467
16467
|
this.__removeGlobalListeners();
|
|
16468
|
+
// Blur a focused control (e.g. the color picker hex input) before
|
|
16469
|
+
// the container goes away. Chrome fires `blur`/`change` for a
|
|
16470
|
+
// removed focused element in the middle of `removeChild`, Firefox
|
|
16471
|
+
// does not fire them at all. Blurring first makes both browsers
|
|
16472
|
+
// run those handlers while the popup is still in the DOM. See #1458
|
|
16473
|
+
const { activeElement } = this.od;
|
|
16474
|
+
if (activeElement && activeElement !== this.container && jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_4__.Dom.isOrContains(this.container, activeElement) && (0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_6__.isFunction)(activeElement.blur)) {
|
|
16475
|
+
activeElement.blur();
|
|
16476
|
+
}
|
|
16468
16477
|
jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_4__.Dom.safeRemove(this.container);
|
|
16469
16478
|
return this;
|
|
16470
16479
|
}
|
|
@@ -24094,15 +24103,23 @@ class ToolbarButton extends jodit_core_ui_button__WEBPACK_IMPORTED_MODULE_19__.U
|
|
|
24094
24103
|
return this.openedPopup;
|
|
24095
24104
|
}
|
|
24096
24105
|
__closePopup() {
|
|
24097
|
-
|
|
24098
|
-
|
|
24099
|
-
|
|
24100
|
-
|
|
24101
|
-
|
|
24102
|
-
|
|
24103
|
-
|
|
24104
|
-
|
|
24105
|
-
|
|
24106
|
+
const popup = this.openedPopup;
|
|
24107
|
+
if (!popup) {
|
|
24108
|
+
return;
|
|
24109
|
+
}
|
|
24110
|
+
// Detach first: removing a popup that holds the focused element
|
|
24111
|
+
// makes Chrome fire `blur`/`change` on it synchronously, and a
|
|
24112
|
+
// handler there may call the popup's `close` callback again.
|
|
24113
|
+
// A re-entrant call must be a no-op, otherwise it destructs the
|
|
24114
|
+
// popup while the outer `removeChild` is still running and Chrome
|
|
24115
|
+
// throws NotFoundError. See #1458
|
|
24116
|
+
this.openedPopup = null;
|
|
24117
|
+
this.j.e.off(this.ow, 'mousedown touchstart', this.onOutsideClick).off('escape closeAllPopups', this.onOutsideClick);
|
|
24118
|
+
this.state.activated = false;
|
|
24119
|
+
popup.close();
|
|
24120
|
+
popup.destruct();
|
|
24121
|
+
if (this.trigger) {
|
|
24122
|
+
(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_17__.attr)(this.trigger, 'aria-expanded', false);
|
|
24106
24123
|
}
|
|
24107
24124
|
}
|
|
24108
24125
|
/**
|
|
@@ -25449,8 +25466,15 @@ jodit_core_ui__WEBPACK_IMPORTED_MODULE_2__.Icon.set('palette', (_palette_svg__WE
|
|
|
25449
25466
|
const { extra } = (0,jodit_core_helpers___WEBPACK_IMPORTED_MODULE_1__.refs)(form);
|
|
25450
25467
|
extra.appendChild(editor.c.fromHTML(`<div class="${cn}__hex"><input data-ref="hexInput" type="text" spellcheck="false" aria-label="HEX" placeholder="#FF0000" value="${valueHex || ''}"/></div>`));
|
|
25451
25468
|
const { hexInput } = (0,jodit_core_helpers___WEBPACK_IMPORTED_MODULE_1__.refs)(form);
|
|
25469
|
+
// Enter applies the value and closes the popup; removing the focused
|
|
25470
|
+
// input then makes Chrome fire `change` on it, which would apply the
|
|
25471
|
+
// same color a second time and toggle it off again. See #1459
|
|
25472
|
+
let appliedHexValue = null;
|
|
25452
25473
|
const applyHexInput = ()=>{
|
|
25453
25474
|
const raw = hexInput.value.trim();
|
|
25475
|
+
if (raw === appliedHexValue) {
|
|
25476
|
+
return;
|
|
25477
|
+
}
|
|
25454
25478
|
const isHex = /^#?[0-9a-f]{3}(?:[0-9a-f]{3})?$/i.test(raw);
|
|
25455
25479
|
const isRgb = /^rgba?\([\d\s.,%]+\)$/i.test(raw);
|
|
25456
25480
|
if (!isHex && !isRgb) {
|
|
@@ -25458,6 +25482,7 @@ jodit_core_ui__WEBPACK_IMPORTED_MODULE_2__.Icon.set('palette', (_palette_svg__WE
|
|
|
25458
25482
|
}
|
|
25459
25483
|
const color = (0,jodit_core_helpers___WEBPACK_IMPORTED_MODULE_1__.normalizeColor)(isHex && !raw.startsWith('#') ? '#' + raw : raw);
|
|
25460
25484
|
if (color && (0,jodit_core_helpers___WEBPACK_IMPORTED_MODULE_1__.isFunction)(callback)) {
|
|
25485
|
+
appliedHexValue = raw;
|
|
25461
25486
|
callback(color);
|
|
25462
25487
|
}
|
|
25463
25488
|
};
|