jodit 4.14.0 → 4.14.2
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.css +1 -1
- package/es2015/jodit.fat.min.js +11 -11
- package/es2015/jodit.js +632 -547
- package/es2015/jodit.min.css +1 -1
- 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 +11 -33
- package/es2015/plugins/speech-recognize/speech-recognize.min.js +2 -2
- package/es2018/jodit.fat.min.css +1 -1
- package/es2018/jodit.fat.min.js +11 -11
- package/es2018/jodit.min.css +1 -1
- package/es2018/jodit.min.js +9 -9
- package/es2018/plugins/debug/debug.min.js +1 -1
- package/es2018/plugins/speech-recognize/speech-recognize.min.js +2 -2
- package/es2021/jodit.css +1 -1
- package/es2021/jodit.fat.min.css +1 -1
- package/es2021/jodit.fat.min.js +16 -16
- package/es2021/jodit.js +638 -553
- package/es2021/jodit.min.css +1 -1
- package/es2021/jodit.min.js +14 -14
- 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 +11 -33
- package/es2021/plugins/speech-recognize/speech-recognize.min.js +2 -2
- package/es2021.en/jodit.css +1 -1
- package/es2021.en/jodit.fat.min.css +1 -1
- package/es2021.en/jodit.fat.min.js +55 -55
- package/es2021.en/jodit.js +638 -553
- package/es2021.en/jodit.min.css +1 -1
- package/es2021.en/jodit.min.js +55 -55
- 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 +11 -33
- package/es2021.en/plugins/speech-recognize/speech-recognize.min.js +2 -2
- package/es5/jodit.css +2 -2
- package/es5/jodit.fat.min.css +1 -1
- package/es5/jodit.fat.min.js +2 -2
- package/es5/jodit.js +314 -318
- package/es5/jodit.min.css +3 -3
- package/es5/jodit.min.js +2 -2
- package/es5/plugins/debug/debug.css +1 -1
- package/es5/plugins/debug/debug.js +2 -2
- 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 +3 -3
- package/es5/plugins/speech-recognize/speech-recognize.min.js +1 -1
- package/es5/polyfills.fat.min.js +2 -2
- package/es5/polyfills.js +20 -5
- package/es5/polyfills.min.js +2 -2
- package/esm/core/constants.js +1 -1
- package/esm/plugins/search/ui/search.js +1 -1
- package/package.json +1 -1
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.14.
|
|
4
|
+
* Version: v4.14.2
|
|
5
5
|
* Url: https://xdsoft.net/jodit/
|
|
6
6
|
* License(s): MIT
|
|
7
7
|
*/
|
|
@@ -150,7 +150,7 @@ let ConfigPrototype = {};
|
|
|
150
150
|
/**
|
|
151
151
|
* When enabled, the editor caches the results of expensive computations (e.g. toolbar rebuilds)
|
|
152
152
|
* to improve performance. Disable for debugging or when options change frequently at runtime.
|
|
153
|
-
*/ (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "cache", true);
|
|
153
|
+
*/ ;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "cache", true);
|
|
154
154
|
/**
|
|
155
155
|
* Timeout of all asynchronous methods
|
|
156
156
|
*/ (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "defaultTimeout", 100);
|
|
@@ -1067,7 +1067,7 @@ let ConfigPrototype = {};
|
|
|
1067
1067
|
Object.assign(this, ConfigPrototype);
|
|
1068
1068
|
}
|
|
1069
1069
|
}
|
|
1070
|
-
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(Config, "__defaultOptions", void 0);
|
|
1070
|
+
;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(Config, "__defaultOptions", void 0);
|
|
1071
1071
|
ConfigPrototype = Config.prototype;
|
|
1072
1072
|
Config.prototype.controls = {};
|
|
1073
1073
|
|
|
@@ -1145,7 +1145,7 @@ class Async {
|
|
|
1145
1145
|
return timer;
|
|
1146
1146
|
}
|
|
1147
1147
|
updateTimeout(label, timeout) {
|
|
1148
|
-
(0,jodit_core_helpers_utils_assert__WEBPACK_IMPORTED_MODULE_12__.assert)(label && this.timers.has(label), 'Label does not exist');
|
|
1148
|
+
;(0,jodit_core_helpers_utils_assert__WEBPACK_IMPORTED_MODULE_12__.assert)(label && this.timers.has(label), 'Label does not exist');
|
|
1149
1149
|
if (!label || !this.timers.has(label)) {
|
|
1150
1150
|
return null;
|
|
1151
1151
|
}
|
|
@@ -1167,7 +1167,7 @@ class Async {
|
|
|
1167
1167
|
if ((0,jodit_core_helpers_checker_is_string__WEBPACK_IMPORTED_MODULE_10__.isString)(timerOrLabel)) {
|
|
1168
1168
|
return this.clearLabel(timerOrLabel);
|
|
1169
1169
|
}
|
|
1170
|
-
(0,jodit_core_helpers_async__WEBPACK_IMPORTED_MODULE_4__.clearTimeout)(timerOrLabel);
|
|
1170
|
+
;(0,jodit_core_helpers_async__WEBPACK_IMPORTED_MODULE_4__.clearTimeout)(timerOrLabel);
|
|
1171
1171
|
this.timers.delete(timerOrLabel);
|
|
1172
1172
|
this.__callbacks.delete(timerOrLabel);
|
|
1173
1173
|
}
|
|
@@ -1207,7 +1207,7 @@ class Async {
|
|
|
1207
1207
|
if (!timer && firstCallImmediately) {
|
|
1208
1208
|
callFn(...args);
|
|
1209
1209
|
}
|
|
1210
|
-
(0,jodit_core_helpers_async__WEBPACK_IMPORTED_MODULE_4__.clearTimeout)(timer);
|
|
1210
|
+
;(0,jodit_core_helpers_async__WEBPACK_IMPORTED_MODULE_4__.clearTimeout)(timer);
|
|
1211
1211
|
timer = this.setTimeout(()=>callFn(...args), (0,jodit_core_helpers_checker_is_function__WEBPACK_IMPORTED_MODULE_6__.isFunction)(timeout) ? timeout() : timeout);
|
|
1212
1212
|
this.timers.set(fn, timer);
|
|
1213
1213
|
}
|
|
@@ -1641,7 +1641,7 @@ const StatusListHandlers = new Map();
|
|
|
1641
1641
|
return c instanceof constructorFunc;
|
|
1642
1642
|
}
|
|
1643
1643
|
constructor(){
|
|
1644
|
-
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "__componentName", void 0);
|
|
1644
|
+
;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "__componentName", void 0);
|
|
1645
1645
|
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "async", new jodit_core_async__WEBPACK_IMPORTED_MODULE_1__.Async());
|
|
1646
1646
|
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "uid", void 0);
|
|
1647
1647
|
/**
|
|
@@ -1651,7 +1651,7 @@ const StatusListHandlers = new Map();
|
|
|
1651
1651
|
this.uid = 'jodit-uid-' + (0,jodit_core_global__WEBPACK_IMPORTED_MODULE_3__.uniqueUid)();
|
|
1652
1652
|
}
|
|
1653
1653
|
}
|
|
1654
|
-
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(Component, "STATUSES", jodit_core_component_statuses__WEBPACK_IMPORTED_MODULE_2__.STATUSES);
|
|
1654
|
+
;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(Component, "STATUSES", jodit_core_component_statuses__WEBPACK_IMPORTED_MODULE_2__.STATUSES);
|
|
1655
1655
|
|
|
1656
1656
|
|
|
1657
1657
|
/***/ }),
|
|
@@ -1685,9 +1685,6 @@ const StatusListHandlers = new Map();
|
|
|
1685
1685
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
1686
1686
|
|
|
1687
1687
|
"use strict";
|
|
1688
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
1689
|
-
/* harmony export */ STATUSES: function() { return /* binding */ STATUSES; }
|
|
1690
|
-
/* harmony export */ });
|
|
1691
1688
|
/*!
|
|
1692
1689
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
1693
1690
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
@@ -1701,6 +1698,10 @@ const StatusListHandlers = new Map();
|
|
|
1701
1698
|
destructed: 'destructed'
|
|
1702
1699
|
};
|
|
1703
1700
|
|
|
1701
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
1702
|
+
/* harmony export */ "STATUSES", 0, /* binding */ STATUSES
|
|
1703
|
+
/* harmony export */ ]);
|
|
1704
|
+
|
|
1704
1705
|
|
|
1705
1706
|
/***/ }),
|
|
1706
1707
|
|
|
@@ -1769,72 +1770,7 @@ class ViewComponent extends _component__WEBPACK_IMPORTED_MODULE_1__.Component {
|
|
|
1769
1770
|
"use strict";
|
|
1770
1771
|
__webpack_require__.r(__webpack_exports__);
|
|
1771
1772
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
1772
|
-
/* harmony export */
|
|
1773
|
-
/* harmony export */ APP_VERSION: function() { return /* binding */ APP_VERSION; },
|
|
1774
|
-
/* harmony export */ BASE_PATH: function() { return /* binding */ BASE_PATH; },
|
|
1775
|
-
/* harmony export */ BASE_PATH_IS_MIN: function() { return /* binding */ BASE_PATH_IS_MIN; },
|
|
1776
|
-
/* harmony export */ BR: function() { return /* binding */ BR; },
|
|
1777
|
-
/* harmony export */ CLIPBOARD_ID: function() { return /* binding */ CLIPBOARD_ID; },
|
|
1778
|
-
/* harmony export */ COMMAND_KEYS: function() { return /* binding */ COMMAND_KEYS; },
|
|
1779
|
-
/* harmony export */ EMULATE_DBLCLICK_TIMEOUT: function() { return /* binding */ EMULATE_DBLCLICK_TIMEOUT; },
|
|
1780
|
-
/* harmony export */ ES: function() { return /* binding */ ES; },
|
|
1781
|
-
/* harmony export */ FAT_MODE: function() { return /* binding */ FAT_MODE; },
|
|
1782
|
-
/* harmony export */ HOMEPAGE: function() { return /* binding */ HOMEPAGE; },
|
|
1783
|
-
/* harmony export */ INSEPARABLE_TAGS: function() { return /* binding */ INSEPARABLE_TAGS; },
|
|
1784
|
-
/* harmony export */ INSERT_AS_HTML: function() { return /* binding */ INSERT_AS_HTML; },
|
|
1785
|
-
/* harmony export */ INSERT_AS_TEXT: function() { return /* binding */ INSERT_AS_TEXT; },
|
|
1786
|
-
/* harmony export */ INSERT_CLEAR_HTML: function() { return /* binding */ INSERT_CLEAR_HTML; },
|
|
1787
|
-
/* harmony export */ INSERT_ONLY_TEXT: function() { return /* binding */ INSERT_ONLY_TEXT; },
|
|
1788
|
-
/* harmony export */ INVISIBLE_SPACE: function() { return /* binding */ INVISIBLE_SPACE; },
|
|
1789
|
-
/* harmony export */ INVISIBLE_SPACE_REG_EXP: function() { return /* binding */ INVISIBLE_SPACE_REG_EXP; },
|
|
1790
|
-
/* harmony export */ INVISIBLE_SPACE_REG_EXP_END: function() { return /* binding */ INVISIBLE_SPACE_REG_EXP_END; },
|
|
1791
|
-
/* harmony export */ INVISIBLE_SPACE_REG_EXP_START: function() { return /* binding */ INVISIBLE_SPACE_REG_EXP_START; },
|
|
1792
|
-
/* harmony export */ IS_BLOCK: function() { return /* binding */ IS_BLOCK; },
|
|
1793
|
-
/* harmony export */ IS_ES_MODERN: function() { return /* binding */ IS_ES_MODERN; },
|
|
1794
|
-
/* harmony export */ IS_ES_NEXT: function() { return /* binding */ IS_ES_NEXT; },
|
|
1795
|
-
/* harmony export */ IS_IE: function() { return /* binding */ IS_IE; },
|
|
1796
|
-
/* harmony export */ IS_INLINE: function() { return /* binding */ IS_INLINE; },
|
|
1797
|
-
/* harmony export */ IS_MAC: function() { return /* binding */ IS_MAC; },
|
|
1798
|
-
/* harmony export */ IS_PROD: function() { return /* binding */ IS_PROD; },
|
|
1799
|
-
/* harmony export */ IS_TEST: function() { return /* binding */ IS_TEST; },
|
|
1800
|
-
/* harmony export */ KEY_ALIASES: function() { return /* binding */ KEY_ALIASES; },
|
|
1801
|
-
/* harmony export */ KEY_ALT: function() { return /* binding */ KEY_ALT; },
|
|
1802
|
-
/* harmony export */ KEY_BACKSPACE: function() { return /* binding */ KEY_BACKSPACE; },
|
|
1803
|
-
/* harmony export */ KEY_DELETE: function() { return /* binding */ KEY_DELETE; },
|
|
1804
|
-
/* harmony export */ KEY_DOWN: function() { return /* binding */ KEY_DOWN; },
|
|
1805
|
-
/* harmony export */ KEY_ENTER: function() { return /* binding */ KEY_ENTER; },
|
|
1806
|
-
/* harmony export */ KEY_ESC: function() { return /* binding */ KEY_ESC; },
|
|
1807
|
-
/* harmony export */ KEY_F3: function() { return /* binding */ KEY_F3; },
|
|
1808
|
-
/* harmony export */ KEY_LEFT: function() { return /* binding */ KEY_LEFT; },
|
|
1809
|
-
/* harmony export */ KEY_META: function() { return /* binding */ KEY_META; },
|
|
1810
|
-
/* harmony export */ KEY_RIGHT: function() { return /* binding */ KEY_RIGHT; },
|
|
1811
|
-
/* harmony export */ KEY_SPACE: function() { return /* binding */ KEY_SPACE; },
|
|
1812
|
-
/* harmony export */ KEY_TAB: function() { return /* binding */ KEY_TAB; },
|
|
1813
|
-
/* harmony export */ KEY_UP: function() { return /* binding */ KEY_UP; },
|
|
1814
|
-
/* harmony export */ LIST_TAGS: function() { return /* binding */ LIST_TAGS; },
|
|
1815
|
-
/* harmony export */ MARKER_CLASS: function() { return /* binding */ MARKER_CLASS; },
|
|
1816
|
-
/* harmony export */ MODE_SOURCE: function() { return /* binding */ MODE_SOURCE; },
|
|
1817
|
-
/* harmony export */ MODE_SPLIT: function() { return /* binding */ MODE_SPLIT; },
|
|
1818
|
-
/* harmony export */ MODE_WYSIWYG: function() { return /* binding */ MODE_WYSIWYG; },
|
|
1819
|
-
/* harmony export */ NBSP_SPACE: function() { return /* binding */ NBSP_SPACE; },
|
|
1820
|
-
/* harmony export */ NEARBY: function() { return /* binding */ NEARBY; },
|
|
1821
|
-
/* harmony export */ NO_EMPTY_TAGS: function() { return /* binding */ NO_EMPTY_TAGS; },
|
|
1822
|
-
/* harmony export */ PARAGRAPH: function() { return /* binding */ PARAGRAPH; },
|
|
1823
|
-
/* harmony export */ PASSIVE_EVENTS: function() { return /* binding */ PASSIVE_EVENTS; },
|
|
1824
|
-
/* harmony export */ SAFE_COUNT_CHANGE_CALL: function() { return /* binding */ SAFE_COUNT_CHANGE_CALL; },
|
|
1825
|
-
/* harmony export */ SET_TEST: function() { return /* binding */ SET_TEST; },
|
|
1826
|
-
/* harmony export */ SOURCE_CONSUMER: function() { return /* binding */ SOURCE_CONSUMER; },
|
|
1827
|
-
/* harmony export */ SPACE_REG_EXP: function() { return /* binding */ SPACE_REG_EXP; },
|
|
1828
|
-
/* harmony export */ SPACE_REG_EXP_END: function() { return /* binding */ SPACE_REG_EXP_END; },
|
|
1829
|
-
/* harmony export */ SPACE_REG_EXP_START: function() { return /* binding */ SPACE_REG_EXP_START; },
|
|
1830
|
-
/* harmony export */ TEMP_ATTR: function() { return /* binding */ TEMP_ATTR; },
|
|
1831
|
-
/* harmony export */ TEXT_HTML: function() { return /* binding */ TEXT_HTML; },
|
|
1832
|
-
/* harmony export */ TEXT_PLAIN: function() { return /* binding */ TEXT_PLAIN; },
|
|
1833
|
-
/* harmony export */ TEXT_RTF: function() { return /* binding */ TEXT_RTF; },
|
|
1834
|
-
/* harmony export */ TOKENS: function() { return /* binding */ TOKENS; },
|
|
1835
|
-
/* harmony export */ globalDocument: function() { return /* binding */ globalDocument; },
|
|
1836
|
-
/* harmony export */ globalWindow: function() { return /* binding */ globalWindow; },
|
|
1837
|
-
/* harmony export */ lang: function() { return /* binding */ lang; }
|
|
1773
|
+
/* harmony export */ IS_TEST: function() { return /* binding */ IS_TEST; }
|
|
1838
1774
|
/* harmony export */ });
|
|
1839
1775
|
/*!
|
|
1840
1776
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -1849,7 +1785,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
1849
1785
|
* ```
|
|
1850
1786
|
* @packageDocumentation
|
|
1851
1787
|
* @module constants
|
|
1852
|
-
*/ const APP_VERSION = "4.14.
|
|
1788
|
+
*/ const APP_VERSION = "4.14.2";
|
|
1853
1789
|
// prettier-ignore
|
|
1854
1790
|
const ES = "es2015";
|
|
1855
1791
|
const IS_ES_MODERN = true;
|
|
@@ -2060,6 +1996,74 @@ const PASSIVE_EVENTS = new Set([
|
|
|
2060
1996
|
'touchmove'
|
|
2061
1997
|
]);
|
|
2062
1998
|
|
|
1999
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
2000
|
+
/* harmony export */ "ACCURACY", 0, /* binding */ ACCURACY,
|
|
2001
|
+
/* harmony export */ "APP_VERSION", 0, /* binding */ APP_VERSION,
|
|
2002
|
+
/* harmony export */ "BASE_PATH", 0, /* binding */ BASE_PATH,
|
|
2003
|
+
/* harmony export */ "BASE_PATH_IS_MIN", 0, /* binding */ BASE_PATH_IS_MIN,
|
|
2004
|
+
/* harmony export */ "BR", 0, /* binding */ BR,
|
|
2005
|
+
/* harmony export */ "CLIPBOARD_ID", 0, /* binding */ CLIPBOARD_ID,
|
|
2006
|
+
/* harmony export */ "COMMAND_KEYS", 0, /* binding */ COMMAND_KEYS,
|
|
2007
|
+
/* harmony export */ "EMULATE_DBLCLICK_TIMEOUT", 0, /* binding */ EMULATE_DBLCLICK_TIMEOUT,
|
|
2008
|
+
/* harmony export */ "ES", 0, /* binding */ ES,
|
|
2009
|
+
/* harmony export */ "FAT_MODE", 0, /* binding */ FAT_MODE,
|
|
2010
|
+
/* harmony export */ "HOMEPAGE", 0, /* binding */ HOMEPAGE,
|
|
2011
|
+
/* harmony export */ "INSEPARABLE_TAGS", 0, /* binding */ INSEPARABLE_TAGS,
|
|
2012
|
+
/* harmony export */ "INSERT_AS_HTML", 0, /* binding */ INSERT_AS_HTML,
|
|
2013
|
+
/* harmony export */ "INSERT_AS_TEXT", 0, /* binding */ INSERT_AS_TEXT,
|
|
2014
|
+
/* harmony export */ "INSERT_CLEAR_HTML", 0, /* binding */ INSERT_CLEAR_HTML,
|
|
2015
|
+
/* harmony export */ "INSERT_ONLY_TEXT", 0, /* binding */ INSERT_ONLY_TEXT,
|
|
2016
|
+
/* harmony export */ "INVISIBLE_SPACE", 0, /* binding */ INVISIBLE_SPACE,
|
|
2017
|
+
/* harmony export */ "INVISIBLE_SPACE_REG_EXP", 0, /* binding */ INVISIBLE_SPACE_REG_EXP,
|
|
2018
|
+
/* harmony export */ "INVISIBLE_SPACE_REG_EXP_END", 0, /* binding */ INVISIBLE_SPACE_REG_EXP_END,
|
|
2019
|
+
/* harmony export */ "INVISIBLE_SPACE_REG_EXP_START", 0, /* binding */ INVISIBLE_SPACE_REG_EXP_START,
|
|
2020
|
+
/* harmony export */ "IS_BLOCK", 0, /* binding */ IS_BLOCK,
|
|
2021
|
+
/* harmony export */ "IS_ES_MODERN", 0, /* binding */ IS_ES_MODERN,
|
|
2022
|
+
/* harmony export */ "IS_ES_NEXT", 0, /* binding */ IS_ES_NEXT,
|
|
2023
|
+
/* harmony export */ "IS_IE", 0, /* binding */ IS_IE,
|
|
2024
|
+
/* harmony export */ "IS_INLINE", 0, /* binding */ IS_INLINE,
|
|
2025
|
+
/* harmony export */ "IS_MAC", 0, /* binding */ IS_MAC,
|
|
2026
|
+
/* harmony export */ "IS_PROD", 0, /* binding */ IS_PROD,
|
|
2027
|
+
/* harmony export */ "KEY_ALIASES", 0, /* binding */ KEY_ALIASES,
|
|
2028
|
+
/* harmony export */ "KEY_ALT", 0, /* binding */ KEY_ALT,
|
|
2029
|
+
/* harmony export */ "KEY_BACKSPACE", 0, /* binding */ KEY_BACKSPACE,
|
|
2030
|
+
/* harmony export */ "KEY_DELETE", 0, /* binding */ KEY_DELETE,
|
|
2031
|
+
/* harmony export */ "KEY_DOWN", 0, /* binding */ KEY_DOWN,
|
|
2032
|
+
/* harmony export */ "KEY_ENTER", 0, /* binding */ KEY_ENTER,
|
|
2033
|
+
/* harmony export */ "KEY_ESC", 0, /* binding */ KEY_ESC,
|
|
2034
|
+
/* harmony export */ "KEY_F3", 0, /* binding */ KEY_F3,
|
|
2035
|
+
/* harmony export */ "KEY_LEFT", 0, /* binding */ KEY_LEFT,
|
|
2036
|
+
/* harmony export */ "KEY_META", 0, /* binding */ KEY_META,
|
|
2037
|
+
/* harmony export */ "KEY_RIGHT", 0, /* binding */ KEY_RIGHT,
|
|
2038
|
+
/* harmony export */ "KEY_SPACE", 0, /* binding */ KEY_SPACE,
|
|
2039
|
+
/* harmony export */ "KEY_TAB", 0, /* binding */ KEY_TAB,
|
|
2040
|
+
/* harmony export */ "KEY_UP", 0, /* binding */ KEY_UP,
|
|
2041
|
+
/* harmony export */ "LIST_TAGS", 0, /* binding */ LIST_TAGS,
|
|
2042
|
+
/* harmony export */ "MARKER_CLASS", 0, /* binding */ MARKER_CLASS,
|
|
2043
|
+
/* harmony export */ "MODE_SOURCE", 0, /* binding */ MODE_SOURCE,
|
|
2044
|
+
/* harmony export */ "MODE_SPLIT", 0, /* binding */ MODE_SPLIT,
|
|
2045
|
+
/* harmony export */ "MODE_WYSIWYG", 0, /* binding */ MODE_WYSIWYG,
|
|
2046
|
+
/* harmony export */ "NBSP_SPACE", 0, /* binding */ NBSP_SPACE,
|
|
2047
|
+
/* harmony export */ "NEARBY", 0, /* binding */ NEARBY,
|
|
2048
|
+
/* harmony export */ "NO_EMPTY_TAGS", 0, /* binding */ NO_EMPTY_TAGS,
|
|
2049
|
+
/* harmony export */ "PARAGRAPH", 0, /* binding */ PARAGRAPH,
|
|
2050
|
+
/* harmony export */ "PASSIVE_EVENTS", 0, /* binding */ PASSIVE_EVENTS,
|
|
2051
|
+
/* harmony export */ "SAFE_COUNT_CHANGE_CALL", 0, /* binding */ SAFE_COUNT_CHANGE_CALL,
|
|
2052
|
+
/* harmony export */ "SET_TEST", 0, /* binding */ SET_TEST,
|
|
2053
|
+
/* harmony export */ "SOURCE_CONSUMER", 0, /* binding */ SOURCE_CONSUMER,
|
|
2054
|
+
/* harmony export */ "SPACE_REG_EXP", 0, /* binding */ SPACE_REG_EXP,
|
|
2055
|
+
/* harmony export */ "SPACE_REG_EXP_END", 0, /* binding */ SPACE_REG_EXP_END,
|
|
2056
|
+
/* harmony export */ "SPACE_REG_EXP_START", 0, /* binding */ SPACE_REG_EXP_START,
|
|
2057
|
+
/* harmony export */ "TEMP_ATTR", 0, /* binding */ TEMP_ATTR,
|
|
2058
|
+
/* harmony export */ "TEXT_HTML", 0, /* binding */ TEXT_HTML,
|
|
2059
|
+
/* harmony export */ "TEXT_PLAIN", 0, /* binding */ TEXT_PLAIN,
|
|
2060
|
+
/* harmony export */ "TEXT_RTF", 0, /* binding */ TEXT_RTF,
|
|
2061
|
+
/* harmony export */ "TOKENS", 0, /* binding */ TOKENS,
|
|
2062
|
+
/* harmony export */ "globalDocument", 0, /* binding */ globalDocument,
|
|
2063
|
+
/* harmony export */ "globalWindow", 0, /* binding */ globalWindow,
|
|
2064
|
+
/* harmony export */ "lang", 0, /* binding */ lang
|
|
2065
|
+
/* harmony export */ ]);
|
|
2066
|
+
|
|
2063
2067
|
|
|
2064
2068
|
/***/ }),
|
|
2065
2069
|
|
|
@@ -2211,7 +2215,7 @@ class Create {
|
|
|
2211
2215
|
}
|
|
2212
2216
|
}
|
|
2213
2217
|
constructor(document, createAttributes){
|
|
2214
|
-
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "document", void 0);
|
|
2218
|
+
;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "document", void 0);
|
|
2215
2219
|
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "createAttributes", void 0);
|
|
2216
2220
|
this.document = document;
|
|
2217
2221
|
this.createAttributes = createAttributes;
|
|
@@ -2784,9 +2788,6 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
2784
2788
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
2785
2789
|
|
|
2786
2790
|
"use strict";
|
|
2787
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
2788
|
-
/* harmony export */ nonenumerable: function() { return /* binding */ nonenumerable; }
|
|
2789
|
-
/* harmony export */ });
|
|
2790
2791
|
/*!
|
|
2791
2792
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
2792
2793
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
@@ -2811,6 +2812,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
2811
2812
|
}
|
|
2812
2813
|
};
|
|
2813
2814
|
|
|
2815
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
2816
|
+
/* harmony export */ "nonenumerable", 0, /* binding */ nonenumerable
|
|
2817
|
+
/* harmony export */ ]);
|
|
2818
|
+
|
|
2814
2819
|
|
|
2815
2820
|
/***/ }),
|
|
2816
2821
|
|
|
@@ -2952,7 +2957,7 @@ function wait(condition) {
|
|
|
2952
2957
|
if (!immediately) {
|
|
2953
2958
|
callback = component.async.microDebounce(callback, true);
|
|
2954
2959
|
}
|
|
2955
|
-
(0,jodit_core_helpers_array_split_array__WEBPACK_IMPORTED_MODULE_2__.splitArray)(observeFields).forEach((field)=>{
|
|
2960
|
+
;(0,jodit_core_helpers_array_split_array__WEBPACK_IMPORTED_MODULE_2__.splitArray)(observeFields).forEach((field)=>{
|
|
2956
2961
|
if (/:/.test(field)) {
|
|
2957
2962
|
const [objectPath, eventName] = field.split(':');
|
|
2958
2963
|
let ctx = context;
|
|
@@ -3660,7 +3665,7 @@ const TEMP_ELEMENT_REG_EXP = new RegExp(`<([a-z]+)[^>]+${jodit_core_constants__W
|
|
|
3660
3665
|
if (!node) {
|
|
3661
3666
|
return;
|
|
3662
3667
|
}
|
|
3663
|
-
(0,jodit_core_helpers_utils_data_bind__WEBPACK_IMPORTED_MODULE_12__.dataBind)(node, '__old_display', node.style.getPropertyValue('display'));
|
|
3668
|
+
;(0,jodit_core_helpers_utils_data_bind__WEBPACK_IMPORTED_MODULE_12__.dataBind)(node, '__old_display', node.style.getPropertyValue('display'));
|
|
3664
3669
|
node.style.setProperty('display', 'none');
|
|
3665
3670
|
}
|
|
3666
3671
|
/**
|
|
@@ -3870,7 +3875,7 @@ const TEMP_ELEMENT_REG_EXP = new RegExp(`<([a-z]+)[^>]+${jodit_core_constants__W
|
|
|
3870
3875
|
super(), (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "async", void 0), (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "options", void 0), (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "workNodes", void 0), (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "hadAffect", void 0), (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "isWorked", void 0), (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "isFinished", void 0), (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "__schedulerController", void 0), this.async = async, this.options = options, this.workNodes = null, this.hadAffect = false, this.isWorked = false, this.isFinished = false, this.__schedulerController = null;
|
|
3871
3876
|
}
|
|
3872
3877
|
}
|
|
3873
|
-
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
3878
|
+
;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
3874
3879
|
jodit_core_decorators_autobind_autobind__WEBPACK_IMPORTED_MODULE_2__.autobind
|
|
3875
3880
|
], LazyWalker.prototype, "__workPerform", null);
|
|
3876
3881
|
|
|
@@ -4294,7 +4299,7 @@ const TEMP_ELEMENT_REG_EXP = new RegExp(`<([a-z]+)[^>]+${jodit_core_constants__W
|
|
|
4294
4299
|
this.__removeStoreFromSubject(this);
|
|
4295
4300
|
}
|
|
4296
4301
|
constructor(doc){
|
|
4297
|
-
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "__domEventsMap", new Map());
|
|
4302
|
+
;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "__domEventsMap", new Map());
|
|
4298
4303
|
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "__mutedEvents", new Set());
|
|
4299
4304
|
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "__key", '__JoditEventEmitterNamespaces');
|
|
4300
4305
|
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "__doc", jodit_core_constants__WEBPACK_IMPORTED_MODULE_1__.globalDocument);
|
|
@@ -4419,7 +4424,7 @@ function isDOMElement(subject) {
|
|
|
4419
4424
|
return result;
|
|
4420
4425
|
}
|
|
4421
4426
|
constructor(){
|
|
4422
|
-
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "__map", new Map());
|
|
4427
|
+
;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "__map", new Map());
|
|
4423
4428
|
}
|
|
4424
4429
|
}
|
|
4425
4430
|
|
|
@@ -4430,9 +4435,6 @@ function isDOMElement(subject) {
|
|
|
4430
4435
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
4431
4436
|
|
|
4432
4437
|
"use strict";
|
|
4433
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
4434
|
-
/* harmony export */ eventEmitter: function() { return /* binding */ eventEmitter; }
|
|
4435
|
-
/* harmony export */ });
|
|
4436
4438
|
/* harmony import */ var _event_emitter__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(93747);
|
|
4437
4439
|
/*!
|
|
4438
4440
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -4443,6 +4445,10 @@ function isDOMElement(subject) {
|
|
|
4443
4445
|
*/
|
|
4444
4446
|
const eventEmitter = new _event_emitter__WEBPACK_IMPORTED_MODULE_0__.EventEmitter();
|
|
4445
4447
|
|
|
4448
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
4449
|
+
/* harmony export */ "eventEmitter", 0, /* binding */ eventEmitter
|
|
4450
|
+
/* harmony export */ ]);
|
|
4451
|
+
|
|
4446
4452
|
|
|
4447
4453
|
/***/ }),
|
|
4448
4454
|
|
|
@@ -4635,8 +4641,7 @@ function isObservableObject(obj) {
|
|
|
4635
4641
|
|
|
4636
4642
|
"use strict";
|
|
4637
4643
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
4638
|
-
/* harmony export */ EventHandlersStore: function() { return /* binding */ EventHandlersStore; }
|
|
4639
|
-
/* harmony export */ defaultNameSpace: function() { return /* binding */ defaultNameSpace; }
|
|
4644
|
+
/* harmony export */ EventHandlersStore: function() { return /* binding */ EventHandlersStore; }
|
|
4640
4645
|
/* harmony export */ });
|
|
4641
4646
|
/* harmony import */ var _swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(25045);
|
|
4642
4647
|
/* harmony import */ var jodit_core_helpers_array_to_array__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(88475);
|
|
@@ -4710,10 +4715,14 @@ class EventHandlersStore {
|
|
|
4710
4715
|
return this.__store.size === 0;
|
|
4711
4716
|
}
|
|
4712
4717
|
constructor(){
|
|
4713
|
-
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "__store", new Map());
|
|
4718
|
+
;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "__store", new Map());
|
|
4714
4719
|
}
|
|
4715
4720
|
}
|
|
4716
4721
|
|
|
4722
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
4723
|
+
/* harmony export */ "defaultNameSpace", 0, /* binding */ defaultNameSpace
|
|
4724
|
+
/* harmony export */ ]);
|
|
4725
|
+
|
|
4717
4726
|
|
|
4718
4727
|
/***/ }),
|
|
4719
4728
|
|
|
@@ -4722,13 +4731,8 @@ class EventHandlersStore {
|
|
|
4722
4731
|
|
|
4723
4732
|
"use strict";
|
|
4724
4733
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
4725
|
-
/* harmony export */ eventEmitter: function() { return /* binding */ eventEmitter; },
|
|
4726
|
-
/* harmony export */ extendLang: function() { return /* binding */ extendLang; },
|
|
4727
4734
|
/* harmony export */ getContainer: function() { return /* binding */ getContainer; },
|
|
4728
4735
|
/* harmony export */ getPopupViewRoot: function() { return /* binding */ getPopupViewRoot; },
|
|
4729
|
-
/* harmony export */ instances: function() { return /* binding */ instances; },
|
|
4730
|
-
/* harmony export */ modules: function() { return /* binding */ modules; },
|
|
4731
|
-
/* harmony export */ pluginSystem: function() { return /* binding */ pluginSystem; },
|
|
4732
4736
|
/* harmony export */ uniqueUid: function() { return /* binding */ uniqueUid; }
|
|
4733
4737
|
/* harmony export */ });
|
|
4734
4738
|
/* harmony import */ var jodit_core_helpers_checker_is_jodit_object__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(24497);
|
|
@@ -4845,6 +4849,14 @@ const boxes = new WeakMap();
|
|
|
4845
4849
|
* @deprecated use `import { eventEmitter } from 'jodit/core/event-emitter/global';`
|
|
4846
4850
|
*/ const eventEmitter = _event_emitter_global__WEBPACK_IMPORTED_MODULE_8__.eventEmitter;
|
|
4847
4851
|
|
|
4852
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
4853
|
+
/* harmony export */ "eventEmitter", 0, /* binding */ eventEmitter,
|
|
4854
|
+
/* harmony export */ "extendLang", 0, /* binding */ extendLang,
|
|
4855
|
+
/* harmony export */ "instances", 0, /* binding */ instances,
|
|
4856
|
+
/* harmony export */ "modules", 0, /* binding */ modules,
|
|
4857
|
+
/* harmony export */ "pluginSystem", 0, /* binding */ pluginSystem
|
|
4858
|
+
/* harmony export */ ]);
|
|
4859
|
+
|
|
4848
4860
|
|
|
4849
4861
|
/***/ }),
|
|
4850
4862
|
|
|
@@ -4852,9 +4864,6 @@ const boxes = new WeakMap();
|
|
|
4852
4864
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
4853
4865
|
|
|
4854
4866
|
"use strict";
|
|
4855
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
4856
|
-
/* harmony export */ asArray: function() { return /* binding */ asArray; }
|
|
4857
|
-
/* harmony export */ });
|
|
4858
4867
|
/* harmony import */ var jodit_core_helpers_checker_is_array__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(17312);
|
|
4859
4868
|
/*!
|
|
4860
4869
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -4874,6 +4883,10 @@ const boxes = new WeakMap();
|
|
|
4874
4883
|
a
|
|
4875
4884
|
];
|
|
4876
4885
|
|
|
4886
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
4887
|
+
/* harmony export */ "asArray", 0, /* binding */ asArray
|
|
4888
|
+
/* harmony export */ ]);
|
|
4889
|
+
|
|
4877
4890
|
|
|
4878
4891
|
/***/ }),
|
|
4879
4892
|
|
|
@@ -4932,9 +4945,6 @@ const boxes = new WeakMap();
|
|
|
4932
4945
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
4933
4946
|
|
|
4934
4947
|
"use strict";
|
|
4935
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
4936
|
-
/* harmony export */ toArray: function() { return /* binding */ toArray; }
|
|
4937
|
-
/* harmony export */ });
|
|
4938
4948
|
/* harmony import */ var jodit_core_helpers_checker_is_native_function__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(23283);
|
|
4939
4949
|
/* harmony import */ var jodit_core_helpers_utils_reset__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(43379);
|
|
4940
4950
|
/*!
|
|
@@ -4959,6 +4969,10 @@ const boxes = new WeakMap();
|
|
|
4959
4969
|
return func.apply(Array, args);
|
|
4960
4970
|
};
|
|
4961
4971
|
|
|
4972
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
4973
|
+
/* harmony export */ "toArray", 0, /* binding */ toArray
|
|
4974
|
+
/* harmony export */ ]);
|
|
4975
|
+
|
|
4962
4976
|
|
|
4963
4977
|
/***/ }),
|
|
4964
4978
|
|
|
@@ -5289,9 +5303,6 @@ function isFastEqual(a, b) {
|
|
|
5289
5303
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
5290
5304
|
|
|
5291
5305
|
"use strict";
|
|
5292
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
5293
|
-
/* harmony export */ isHTML: function() { return /* binding */ isHTML; }
|
|
5294
|
-
/* harmony export */ });
|
|
5295
5306
|
/* harmony import */ var _is_string__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(85932);
|
|
5296
5307
|
/*!
|
|
5297
5308
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -5304,6 +5315,10 @@ function isFastEqual(a, b) {
|
|
|
5304
5315
|
* Check if a string is html or not
|
|
5305
5316
|
*/ const isHTML = (str)=>(0,_is_string__WEBPACK_IMPORTED_MODULE_0__.isString)(str) && /<([A-Za-z][A-Za-z0-9]*)\b[^>]*>(.*?)<\/\1>/m.test(str.replace(/[\r\n]/g, ''));
|
|
5306
5317
|
|
|
5318
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
5319
|
+
/* harmony export */ "isHTML", 0, /* binding */ isHTML
|
|
5320
|
+
/* harmony export */ ]);
|
|
5321
|
+
|
|
5307
5322
|
|
|
5308
5323
|
/***/ }),
|
|
5309
5324
|
|
|
@@ -5405,9 +5420,6 @@ function isFastEqual(a, b) {
|
|
|
5405
5420
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
5406
5421
|
|
|
5407
5422
|
"use strict";
|
|
5408
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
5409
|
-
/* harmony export */ isLicense: function() { return /* binding */ isLicense; }
|
|
5410
|
-
/* harmony export */ });
|
|
5411
5423
|
/* harmony import */ var _is_string__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(85932);
|
|
5412
5424
|
/*!
|
|
5413
5425
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -5418,6 +5430,10 @@ function isFastEqual(a, b) {
|
|
|
5418
5430
|
*/
|
|
5419
5431
|
const isLicense = (license)=>(0,_is_string__WEBPACK_IMPORTED_MODULE_0__.isString)(license) && license.length === 23 && /^[a-z0-9]{5}-[a-z0-9]{5}-[a-z0-9]{5}-[a-z0-9]{5}$/i.test(license);
|
|
5420
5432
|
|
|
5433
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
5434
|
+
/* harmony export */ "isLicense", 0, /* binding */ isLicense
|
|
5435
|
+
/* harmony export */ ]);
|
|
5436
|
+
|
|
5421
5437
|
|
|
5422
5438
|
/***/ }),
|
|
5423
5439
|
|
|
@@ -5760,9 +5776,6 @@ const isLicense = (license)=>(0,_is_string__WEBPACK_IMPORTED_MODULE_0__.isString
|
|
|
5760
5776
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
5761
5777
|
|
|
5762
5778
|
"use strict";
|
|
5763
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
5764
|
-
/* harmony export */ colorToHex: function() { return /* binding */ colorToHex; }
|
|
5765
|
-
/* harmony export */ });
|
|
5766
5779
|
/*!
|
|
5767
5780
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
5768
5781
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
@@ -5803,24 +5816,9 @@ const isLicense = (license)=>(0,_is_string__WEBPACK_IMPORTED_MODULE_0__.isString
|
|
|
5803
5816
|
return digits[1] + '#' + hex;
|
|
5804
5817
|
};
|
|
5805
5818
|
|
|
5806
|
-
|
|
5807
|
-
|
|
5808
|
-
|
|
5809
|
-
/***/ 7018:
|
|
5810
|
-
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
5811
|
-
|
|
5812
|
-
"use strict";
|
|
5813
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
5814
|
-
/* harmony export */ colorToHex: function() { return /* reexport safe */ _color_to_hex__WEBPACK_IMPORTED_MODULE_0__.colorToHex; }
|
|
5815
|
-
/* harmony export */ });
|
|
5816
|
-
/* harmony import */ var _color_to_hex__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(93387);
|
|
5817
|
-
/*!
|
|
5818
|
-
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
5819
|
-
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
5820
|
-
* Copyright (c) 2013-2026 Valerii Chupurnov. All rights reserved. https://xdsoft.net
|
|
5821
|
-
*/ /**
|
|
5822
|
-
* @module helpers/color
|
|
5823
|
-
*/
|
|
5819
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
5820
|
+
/* harmony export */ "colorToHex", 0, /* binding */ colorToHex
|
|
5821
|
+
/* harmony export */ ]);
|
|
5824
5822
|
|
|
5825
5823
|
|
|
5826
5824
|
/***/ }),
|
|
@@ -6012,7 +6010,7 @@ function normalizeCSS(s) {
|
|
|
6012
6010
|
marks.push(node);
|
|
6013
6011
|
break;
|
|
6014
6012
|
}
|
|
6015
|
-
(0,jodit_core_helpers_array_to_array__WEBPACK_IMPORTED_MODULE_2__.toArray)(node.attributes).forEach((attribute)=>{
|
|
6013
|
+
;(0,jodit_core_helpers_array_to_array__WEBPACK_IMPORTED_MODULE_2__.toArray)(node.attributes).forEach((attribute)=>{
|
|
6016
6014
|
if ([
|
|
6017
6015
|
'src',
|
|
6018
6016
|
'href',
|
|
@@ -6222,7 +6220,7 @@ function isSmuggledForeignHtml(elm) {
|
|
|
6222
6220
|
if (!parts.includes('noreferrer')) {
|
|
6223
6221
|
parts.push('noreferrer');
|
|
6224
6222
|
}
|
|
6225
|
-
(0,jodit_core_helpers_utils__WEBPACK_IMPORTED_MODULE_1__.attr)(node, 'rel', parts.join(' '));
|
|
6223
|
+
;(0,jodit_core_helpers_utils__WEBPACK_IMPORTED_MODULE_1__.attr)(node, 'rel', parts.join(' '));
|
|
6226
6224
|
}
|
|
6227
6225
|
};
|
|
6228
6226
|
process(box);
|
|
@@ -6244,7 +6242,7 @@ function isSmuggledForeignHtml(elm) {
|
|
|
6244
6242
|
for (const name of toRemove){
|
|
6245
6243
|
// `attrRaw` on purpose: `attr()` kebab-cases the key
|
|
6246
6244
|
// (`onLoad` → `on-load`), which must not happen in a sanitizer
|
|
6247
|
-
(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_2__.attrRaw)(elm, name, null);
|
|
6245
|
+
;(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_2__.attrRaw)(elm, name, null);
|
|
6248
6246
|
effected = true;
|
|
6249
6247
|
}
|
|
6250
6248
|
return effected;
|
|
@@ -6508,7 +6506,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
6508
6506
|
/* harmony import */ var _array__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(45664);
|
|
6509
6507
|
/* harmony import */ var _async__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(61077);
|
|
6510
6508
|
/* harmony import */ var _checker__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(28686);
|
|
6511
|
-
/* harmony import */ var _color__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
6509
|
+
/* harmony import */ var _color__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(93387);
|
|
6512
6510
|
/* harmony import */ var _html__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(82658);
|
|
6513
6511
|
/* harmony import */ var _normalize__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(97022);
|
|
6514
6512
|
/* harmony import */ var _size__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(86878);
|
|
@@ -6584,9 +6582,6 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
6584
6582
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
6585
6583
|
|
|
6586
6584
|
"use strict";
|
|
6587
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
6588
|
-
/* harmony export */ normalizeColor: function() { return /* binding */ normalizeColor; }
|
|
6589
|
-
/* harmony export */ });
|
|
6590
6585
|
/* harmony import */ var jodit_core_helpers_color_color_to_hex__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(93387);
|
|
6591
6586
|
/* harmony import */ var jodit_core_helpers_string_trim__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(4040);
|
|
6592
6587
|
/*!
|
|
@@ -6625,6 +6620,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
6625
6620
|
return '#' + color;
|
|
6626
6621
|
};
|
|
6627
6622
|
|
|
6623
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
6624
|
+
/* harmony export */ "normalizeColor", 0, /* binding */ normalizeColor
|
|
6625
|
+
/* harmony export */ ]);
|
|
6626
|
+
|
|
6628
6627
|
|
|
6629
6628
|
/***/ }),
|
|
6630
6629
|
|
|
@@ -6633,7 +6632,6 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
6633
6632
|
|
|
6634
6633
|
"use strict";
|
|
6635
6634
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
6636
|
-
/* harmony export */ NUMBER_FIELDS_REG: function() { return /* binding */ NUMBER_FIELDS_REG; },
|
|
6637
6635
|
/* harmony export */ normalizeCssNumericValue: function() { return /* binding */ normalizeCssNumericValue; },
|
|
6638
6636
|
/* harmony export */ normalizeCssValue: function() { return /* binding */ normalizeCssValue; }
|
|
6639
6637
|
/* harmony export */ });
|
|
@@ -6680,6 +6678,10 @@ function normalizeCssValue(key, value) {
|
|
|
6680
6678
|
return value;
|
|
6681
6679
|
}
|
|
6682
6680
|
|
|
6681
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
6682
|
+
/* harmony export */ "NUMBER_FIELDS_REG", 0, /* binding */ NUMBER_FIELDS_REG
|
|
6683
|
+
/* harmony export */ ]);
|
|
6684
|
+
|
|
6683
6685
|
|
|
6684
6686
|
/***/ }),
|
|
6685
6687
|
|
|
@@ -6733,9 +6735,6 @@ function normalizeCssValue(key, value) {
|
|
|
6733
6735
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
6734
6736
|
|
|
6735
6737
|
"use strict";
|
|
6736
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
6737
|
-
/* harmony export */ normalizeLicense: function() { return /* binding */ normalizeLicense; }
|
|
6738
|
-
/* harmony export */ });
|
|
6739
6738
|
/*!
|
|
6740
6739
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
6741
6740
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
@@ -6753,6 +6752,10 @@ function normalizeCssValue(key, value) {
|
|
|
6753
6752
|
return parts.join('-');
|
|
6754
6753
|
};
|
|
6755
6754
|
|
|
6755
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
6756
|
+
/* harmony export */ "normalizeLicense", 0, /* binding */ normalizeLicense
|
|
6757
|
+
/* harmony export */ ]);
|
|
6758
|
+
|
|
6756
6759
|
|
|
6757
6760
|
/***/ }),
|
|
6758
6761
|
|
|
@@ -6760,9 +6763,6 @@ function normalizeCssValue(key, value) {
|
|
|
6760
6763
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
6761
6764
|
|
|
6762
6765
|
"use strict";
|
|
6763
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
6764
|
-
/* harmony export */ normalizePath: function() { return /* binding */ normalizePath; }
|
|
6765
|
-
/* harmony export */ });
|
|
6766
6766
|
/* harmony import */ var jodit_core_helpers_string_trim__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(4040);
|
|
6767
6767
|
/*!
|
|
6768
6768
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -6786,6 +6786,10 @@ function normalizeCssValue(key, value) {
|
|
|
6786
6786
|
}).join('/');
|
|
6787
6787
|
};
|
|
6788
6788
|
|
|
6789
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
6790
|
+
/* harmony export */ "normalizePath", 0, /* binding */ normalizePath
|
|
6791
|
+
/* harmony export */ ]);
|
|
6792
|
+
|
|
6789
6793
|
|
|
6790
6794
|
/***/ }),
|
|
6791
6795
|
|
|
@@ -6793,9 +6797,6 @@ function normalizeCssValue(key, value) {
|
|
|
6793
6797
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
6794
6798
|
|
|
6795
6799
|
"use strict";
|
|
6796
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
6797
|
-
/* harmony export */ normalizeRelativePath: function() { return /* binding */ normalizeRelativePath; }
|
|
6798
|
-
/* harmony export */ });
|
|
6799
6800
|
/*!
|
|
6800
6801
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
6801
6802
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
@@ -6829,6 +6830,10 @@ function normalizeCssValue(key, value) {
|
|
|
6829
6830
|
return builder.join('/') + (path.endsWith('/') ? '/' : '');
|
|
6830
6831
|
};
|
|
6831
6832
|
|
|
6833
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
6834
|
+
/* harmony export */ "normalizeRelativePath", 0, /* binding */ normalizeRelativePath
|
|
6835
|
+
/* harmony export */ ]);
|
|
6836
|
+
|
|
6832
6837
|
|
|
6833
6838
|
/***/ }),
|
|
6834
6839
|
|
|
@@ -6836,9 +6841,6 @@ function normalizeCssValue(key, value) {
|
|
|
6836
6841
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
6837
6842
|
|
|
6838
6843
|
"use strict";
|
|
6839
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
6840
|
-
/* harmony export */ normalizeSize: function() { return /* binding */ normalizeSize; }
|
|
6841
|
-
/* harmony export */ });
|
|
6842
6844
|
/*!
|
|
6843
6845
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
6844
6846
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
@@ -6854,6 +6856,10 @@ function normalizeCssValue(key, value) {
|
|
|
6854
6856
|
return value.toString();
|
|
6855
6857
|
};
|
|
6856
6858
|
|
|
6859
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
6860
|
+
/* harmony export */ "normalizeSize", 0, /* binding */ normalizeSize
|
|
6861
|
+
/* harmony export */ ]);
|
|
6862
|
+
|
|
6857
6863
|
|
|
6858
6864
|
/***/ }),
|
|
6859
6865
|
|
|
@@ -6861,9 +6867,6 @@ function normalizeCssValue(key, value) {
|
|
|
6861
6867
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
6862
6868
|
|
|
6863
6869
|
"use strict";
|
|
6864
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
6865
|
-
/* harmony export */ normalizeUrl: function() { return /* binding */ normalizeUrl; }
|
|
6866
|
-
/* harmony export */ });
|
|
6867
6870
|
/*!
|
|
6868
6871
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
6869
6872
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
@@ -6874,6 +6877,10 @@ function normalizeCssValue(key, value) {
|
|
|
6874
6877
|
return urls.filter((url)=>url.length).map((url)=>url.replace(/\/$/, '')).join('/').replace(/([^:])[\\/]+/g, '$1/');
|
|
6875
6878
|
};
|
|
6876
6879
|
|
|
6880
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
6881
|
+
/* harmony export */ "normalizeUrl", 0, /* binding */ normalizeUrl
|
|
6882
|
+
/* harmony export */ ]);
|
|
6883
|
+
|
|
6877
6884
|
|
|
6878
6885
|
/***/ }),
|
|
6879
6886
|
|
|
@@ -6881,9 +6888,6 @@ function normalizeCssValue(key, value) {
|
|
|
6881
6888
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
6882
6889
|
|
|
6883
6890
|
"use strict";
|
|
6884
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
6885
|
-
/* harmony export */ getContentWidth: function() { return /* binding */ getContentWidth; }
|
|
6886
|
-
/* harmony export */ });
|
|
6887
6891
|
/*!
|
|
6888
6892
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
6889
6893
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
@@ -6895,6 +6899,10 @@ function normalizeCssValue(key, value) {
|
|
|
6895
6899
|
return width - paddingLeft - paddingRight;
|
|
6896
6900
|
};
|
|
6897
6901
|
|
|
6902
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
6903
|
+
/* harmony export */ "getContentWidth", 0, /* binding */ getContentWidth
|
|
6904
|
+
/* harmony export */ ]);
|
|
6905
|
+
|
|
6898
6906
|
|
|
6899
6907
|
/***/ }),
|
|
6900
6908
|
|
|
@@ -7027,9 +7035,6 @@ function getScrollParent(node) {
|
|
|
7027
7035
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
7028
7036
|
|
|
7029
7037
|
"use strict";
|
|
7030
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
7031
|
-
/* harmony export */ innerWidth: function() { return /* binding */ innerWidth; }
|
|
7032
|
-
/* harmony export */ });
|
|
7033
7038
|
/*!
|
|
7034
7039
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
7035
7040
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
@@ -7043,6 +7048,10 @@ function getScrollParent(node) {
|
|
|
7043
7048
|
return elementWidth;
|
|
7044
7049
|
};
|
|
7045
7050
|
|
|
7051
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
7052
|
+
/* harmony export */ "innerWidth", 0, /* binding */ innerWidth
|
|
7053
|
+
/* harmony export */ ]);
|
|
7054
|
+
|
|
7046
7055
|
|
|
7047
7056
|
/***/ }),
|
|
7048
7057
|
|
|
@@ -7078,9 +7087,6 @@ function size(subject) {
|
|
|
7078
7087
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
7079
7088
|
|
|
7080
7089
|
"use strict";
|
|
7081
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
7082
|
-
/* harmony export */ offset: function() { return /* binding */ offset; }
|
|
7083
|
-
/* harmony export */ });
|
|
7084
7090
|
/*!
|
|
7085
7091
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
7086
7092
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
@@ -7128,6 +7134,10 @@ function size(subject) {
|
|
|
7128
7134
|
};
|
|
7129
7135
|
};
|
|
7130
7136
|
|
|
7137
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
7138
|
+
/* harmony export */ "offset", 0, /* binding */ offset
|
|
7139
|
+
/* harmony export */ ]);
|
|
7140
|
+
|
|
7131
7141
|
|
|
7132
7142
|
/***/ }),
|
|
7133
7143
|
|
|
@@ -7172,9 +7182,6 @@ function size(subject) {
|
|
|
7172
7182
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
7173
7183
|
|
|
7174
7184
|
"use strict";
|
|
7175
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
7176
|
-
/* harmony export */ camelCase: function() { return /* binding */ camelCase; }
|
|
7177
|
-
/* harmony export */ });
|
|
7178
7185
|
/*!
|
|
7179
7186
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
7180
7187
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
@@ -7189,6 +7196,10 @@ function size(subject) {
|
|
|
7189
7196
|
});
|
|
7190
7197
|
};
|
|
7191
7198
|
|
|
7199
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
7200
|
+
/* harmony export */ "camelCase", 0, /* binding */ camelCase
|
|
7201
|
+
/* harmony export */ ]);
|
|
7202
|
+
|
|
7192
7203
|
|
|
7193
7204
|
/***/ }),
|
|
7194
7205
|
|
|
@@ -7251,8 +7262,7 @@ function size(subject) {
|
|
|
7251
7262
|
|
|
7252
7263
|
"use strict";
|
|
7253
7264
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
7254
|
-
/* harmony export */ i18n: function() { return /* binding */ i18n; }
|
|
7255
|
-
/* harmony export */ sprintf: function() { return /* binding */ sprintf; }
|
|
7265
|
+
/* harmony export */ i18n: function() { return /* binding */ i18n; }
|
|
7256
7266
|
/* harmony export */ });
|
|
7257
7267
|
/* harmony import */ var jodit_core_constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(81937);
|
|
7258
7268
|
/* harmony import */ var jodit_core_helpers_checker_is_string__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(85932);
|
|
@@ -7368,6 +7378,10 @@ function size(subject) {
|
|
|
7368
7378
|
return parse(key);
|
|
7369
7379
|
}
|
|
7370
7380
|
|
|
7381
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
7382
|
+
/* harmony export */ "sprintf", 0, /* binding */ sprintf
|
|
7383
|
+
/* harmony export */ ]);
|
|
7384
|
+
|
|
7371
7385
|
|
|
7372
7386
|
/***/ }),
|
|
7373
7387
|
|
|
@@ -7416,10 +7430,6 @@ function size(subject) {
|
|
|
7416
7430
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
7417
7431
|
|
|
7418
7432
|
"use strict";
|
|
7419
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
7420
|
-
/* harmony export */ CamelCaseToKebabCase: function() { return /* binding */ CamelCaseToKebabCase; },
|
|
7421
|
-
/* harmony export */ kebabCase: function() { return /* binding */ kebabCase; }
|
|
7422
|
-
/* harmony export */ });
|
|
7423
7433
|
/*!
|
|
7424
7434
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
7425
7435
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
@@ -7433,6 +7443,11 @@ const CamelCaseToKebabCase = (key)=>{
|
|
|
7433
7443
|
return key.replace(/([A-Z])([A-Z])([a-z])/g, '$1-$2$3').replace(/([a-z])([A-Z])/g, '$1-$2').toLowerCase();
|
|
7434
7444
|
};
|
|
7435
7445
|
|
|
7446
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
7447
|
+
/* harmony export */ "CamelCaseToKebabCase", 0, /* binding */ CamelCaseToKebabCase,
|
|
7448
|
+
/* harmony export */ "kebabCase", 0, /* binding */ kebabCase
|
|
7449
|
+
/* harmony export */ ]);
|
|
7450
|
+
|
|
7436
7451
|
|
|
7437
7452
|
/***/ }),
|
|
7438
7453
|
|
|
@@ -7578,7 +7593,7 @@ function trimChars(value, chars) {
|
|
|
7578
7593
|
].indexOf((0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_2__.css)(image, 'float').toString().toLowerCase()) !== -1) {
|
|
7579
7594
|
(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_2__.css)(image, 'float', '');
|
|
7580
7595
|
}
|
|
7581
|
-
(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_2__.clearCenterAlign)(image);
|
|
7596
|
+
;(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_2__.clearCenterAlign)(image);
|
|
7582
7597
|
}
|
|
7583
7598
|
}
|
|
7584
7599
|
/**
|
|
@@ -7633,9 +7648,6 @@ function alignElement(command, box) {
|
|
|
7633
7648
|
|
|
7634
7649
|
"use strict";
|
|
7635
7650
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
7636
|
-
/* harmony export */ alreadyLoadedList: function() { return /* binding */ alreadyLoadedList; },
|
|
7637
|
-
/* harmony export */ appendScriptAsync: function() { return /* binding */ appendScriptAsync; },
|
|
7638
|
-
/* harmony export */ appendStyleAsync: function() { return /* binding */ appendStyleAsync; },
|
|
7639
7651
|
/* harmony export */ loadNext: function() { return /* binding */ loadNext; },
|
|
7640
7652
|
/* harmony export */ loadNextStyle: function() { return /* binding */ loadNextStyle; }
|
|
7641
7653
|
/* harmony export */ });
|
|
@@ -7723,6 +7735,12 @@ function loadNextStyle(jodit, urls, i = 0) {
|
|
|
7723
7735
|
return appendStyleAsync(jodit, urls[i]).then(()=>loadNextStyle(jodit, urls, i + 1));
|
|
7724
7736
|
}
|
|
7725
7737
|
|
|
7738
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
7739
|
+
/* harmony export */ "alreadyLoadedList", 0, /* binding */ alreadyLoadedList,
|
|
7740
|
+
/* harmony export */ "appendScriptAsync", 0, /* binding */ appendScriptAsync,
|
|
7741
|
+
/* harmony export */ "appendStyleAsync", 0, /* binding */ appendStyleAsync
|
|
7742
|
+
/* harmony export */ ]);
|
|
7743
|
+
|
|
7726
7744
|
|
|
7727
7745
|
/***/ }),
|
|
7728
7746
|
|
|
@@ -7819,9 +7837,6 @@ function loadNextStyle(jodit, urls, i = 0) {
|
|
|
7819
7837
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
7820
7838
|
|
|
7821
7839
|
"use strict";
|
|
7822
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
7823
|
-
/* harmony export */ browser: function() { return /* binding */ browser; }
|
|
7824
|
-
/* harmony export */ });
|
|
7825
7840
|
/*!
|
|
7826
7841
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
7827
7842
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
@@ -7855,6 +7870,10 @@ function loadNextStyle(jodit, urls, i = 0) {
|
|
|
7855
7870
|
return match[1] === browser;
|
|
7856
7871
|
};
|
|
7857
7872
|
|
|
7873
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
7874
|
+
/* harmony export */ "browser", 0, /* binding */ browser
|
|
7875
|
+
/* harmony export */ ]);
|
|
7876
|
+
|
|
7858
7877
|
|
|
7859
7878
|
/***/ }),
|
|
7860
7879
|
|
|
@@ -7862,9 +7881,6 @@ function loadNextStyle(jodit, urls, i = 0) {
|
|
|
7862
7881
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
7863
7882
|
|
|
7864
7883
|
"use strict";
|
|
7865
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
7866
|
-
/* harmony export */ buildQuery: function() { return /* binding */ buildQuery; }
|
|
7867
|
-
/* harmony export */ });
|
|
7868
7884
|
/* harmony import */ var jodit_core_helpers_checker_is_plain_object__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(62101);
|
|
7869
7885
|
/*!
|
|
7870
7886
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -7888,6 +7904,10 @@ function loadNextStyle(jodit, urls, i = 0) {
|
|
|
7888
7904
|
return str.join('&');
|
|
7889
7905
|
};
|
|
7890
7906
|
|
|
7907
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
7908
|
+
/* harmony export */ "buildQuery", 0, /* binding */ buildQuery
|
|
7909
|
+
/* harmony export */ ]);
|
|
7910
|
+
|
|
7891
7911
|
|
|
7892
7912
|
/***/ }),
|
|
7893
7913
|
|
|
@@ -7895,9 +7915,6 @@ function loadNextStyle(jodit, urls, i = 0) {
|
|
|
7895
7915
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
7896
7916
|
|
|
7897
7917
|
"use strict";
|
|
7898
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
7899
|
-
/* harmony export */ completeUrl: function() { return /* binding */ completeUrl; }
|
|
7900
|
-
/* harmony export */ });
|
|
7901
7918
|
/* harmony import */ var jodit_core_constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(81937);
|
|
7902
7919
|
/*!
|
|
7903
7920
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -7913,6 +7930,10 @@ const completeUrl = (url)=>{
|
|
|
7913
7930
|
return url;
|
|
7914
7931
|
};
|
|
7915
7932
|
|
|
7933
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
7934
|
+
/* harmony export */ "completeUrl", 0, /* binding */ completeUrl
|
|
7935
|
+
/* harmony export */ ]);
|
|
7936
|
+
|
|
7916
7937
|
|
|
7917
7938
|
/***/ }),
|
|
7918
7939
|
|
|
@@ -8086,9 +8107,6 @@ function ConfigDeepFlatten(obj) {
|
|
|
8086
8107
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
8087
8108
|
|
|
8088
8109
|
"use strict";
|
|
8089
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
8090
|
-
/* harmony export */ convertMediaUrlToVideoEmbed: function() { return /* binding */ convertMediaUrlToVideoEmbed; }
|
|
8091
|
-
/* harmony export */ });
|
|
8092
8110
|
/* harmony import */ var jodit_core_constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(81937);
|
|
8093
8111
|
/* harmony import */ var jodit_core_helpers_checker_is_url__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(91764);
|
|
8094
8112
|
/* harmony import */ var _parse_query__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(36310);
|
|
@@ -8159,6 +8177,10 @@ function ConfigDeepFlatten(obj) {
|
|
|
8159
8177
|
return url;
|
|
8160
8178
|
};
|
|
8161
8179
|
|
|
8180
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
8181
|
+
/* harmony export */ "convertMediaUrlToVideoEmbed", 0, /* binding */ convertMediaUrlToVideoEmbed
|
|
8182
|
+
/* harmony export */ ]);
|
|
8183
|
+
|
|
8162
8184
|
|
|
8163
8185
|
/***/ }),
|
|
8164
8186
|
|
|
@@ -8167,7 +8189,6 @@ function ConfigDeepFlatten(obj) {
|
|
|
8167
8189
|
|
|
8168
8190
|
"use strict";
|
|
8169
8191
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
8170
|
-
/* harmony export */ clearCenterAlign: function() { return /* binding */ clearCenterAlign; },
|
|
8171
8192
|
/* harmony export */ css: function() { return /* binding */ css; },
|
|
8172
8193
|
/* harmony export */ cssInline: function() { return /* binding */ cssInline; }
|
|
8173
8194
|
/* harmony export */ });
|
|
@@ -8259,6 +8280,10 @@ const clearCenterAlign = (image)=>{
|
|
|
8259
8280
|
}
|
|
8260
8281
|
};
|
|
8261
8282
|
|
|
8283
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
8284
|
+
/* harmony export */ "clearCenterAlign", 0, /* binding */ clearCenterAlign
|
|
8285
|
+
/* harmony export */ ]);
|
|
8286
|
+
|
|
8262
8287
|
|
|
8263
8288
|
/***/ }),
|
|
8264
8289
|
|
|
@@ -8266,9 +8291,6 @@ const clearCenterAlign = (image)=>{
|
|
|
8266
8291
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
8267
8292
|
|
|
8268
8293
|
"use strict";
|
|
8269
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
8270
|
-
/* harmony export */ ctrlKey: function() { return /* binding */ ctrlKey; }
|
|
8271
|
-
/* harmony export */ });
|
|
8272
8294
|
/*!
|
|
8273
8295
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
8274
8296
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
@@ -8289,6 +8311,10 @@ const clearCenterAlign = (image)=>{
|
|
|
8289
8311
|
return false;
|
|
8290
8312
|
};
|
|
8291
8313
|
|
|
8314
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
8315
|
+
/* harmony export */ "ctrlKey", 0, /* binding */ ctrlKey
|
|
8316
|
+
/* harmony export */ ]);
|
|
8317
|
+
|
|
8292
8318
|
|
|
8293
8319
|
/***/ }),
|
|
8294
8320
|
|
|
@@ -8296,9 +8322,6 @@ const clearCenterAlign = (image)=>{
|
|
|
8296
8322
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
8297
8323
|
|
|
8298
8324
|
"use strict";
|
|
8299
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
8300
|
-
/* harmony export */ dataBind: function() { return /* binding */ dataBind; }
|
|
8301
|
-
/* harmony export */ });
|
|
8302
8325
|
/* harmony import */ var jodit_core_helpers_checker_is_view_object__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(31534);
|
|
8303
8326
|
/*!
|
|
8304
8327
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -8331,6 +8354,10 @@ const dataBind = (elm, key, value)=>{
|
|
|
8331
8354
|
return value;
|
|
8332
8355
|
};
|
|
8333
8356
|
|
|
8357
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
8358
|
+
/* harmony export */ "dataBind", 0, /* binding */ dataBind
|
|
8359
|
+
/* harmony export */ ]);
|
|
8360
|
+
|
|
8334
8361
|
|
|
8335
8362
|
/***/ }),
|
|
8336
8363
|
|
|
@@ -8338,9 +8365,6 @@ const dataBind = (elm, key, value)=>{
|
|
|
8338
8365
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
8339
8366
|
|
|
8340
8367
|
"use strict";
|
|
8341
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
8342
|
-
/* harmony export */ defaultLanguage: function() { return /* binding */ defaultLanguage; }
|
|
8343
|
-
/* harmony export */ });
|
|
8344
8368
|
/* harmony import */ var jodit_core_constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(81937);
|
|
8345
8369
|
/* harmony import */ var jodit_core_helpers_checker_is_string__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(85932);
|
|
8346
8370
|
/*!
|
|
@@ -8366,6 +8390,10 @@ const dataBind = (elm, key, value)=>{
|
|
|
8366
8390
|
return defaultLanguage;
|
|
8367
8391
|
};
|
|
8368
8392
|
|
|
8393
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
8394
|
+
/* harmony export */ "defaultLanguage", 0, /* binding */ defaultLanguage
|
|
8395
|
+
/* harmony export */ ]);
|
|
8396
|
+
|
|
8369
8397
|
|
|
8370
8398
|
/***/ }),
|
|
8371
8399
|
|
|
@@ -8560,10 +8588,6 @@ function fastClone(object) {
|
|
|
8560
8588
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
8561
8589
|
|
|
8562
8590
|
"use strict";
|
|
8563
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
8564
|
-
/* harmony export */ getClassName: function() { return /* binding */ getClassName; },
|
|
8565
|
-
/* harmony export */ keepNames: function() { return /* binding */ keepNames; }
|
|
8566
|
-
/* harmony export */ });
|
|
8567
8591
|
/* harmony import */ var jodit_core_helpers_checker_is_function__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(91565);
|
|
8568
8592
|
/*!
|
|
8569
8593
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -8590,6 +8614,11 @@ const getClassName = (obj)=>{
|
|
|
8590
8614
|
return res ? res[1] : '';
|
|
8591
8615
|
};
|
|
8592
8616
|
|
|
8617
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
8618
|
+
/* harmony export */ "getClassName", 0, /* binding */ getClassName,
|
|
8619
|
+
/* harmony export */ "keepNames", 0, /* binding */ keepNames
|
|
8620
|
+
/* harmony export */ ]);
|
|
8621
|
+
|
|
8593
8622
|
|
|
8594
8623
|
/***/ }),
|
|
8595
8624
|
|
|
@@ -8657,9 +8686,6 @@ const getClassName = (obj)=>{
|
|
|
8657
8686
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
8658
8687
|
|
|
8659
8688
|
"use strict";
|
|
8660
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
8661
|
-
/* harmony export */ humanSizeToBytes: function() { return /* binding */ humanSizeToBytes; }
|
|
8662
|
-
/* harmony export */ });
|
|
8663
8689
|
/*!
|
|
8664
8690
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
8665
8691
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
@@ -8682,6 +8708,10 @@ const getClassName = (obj)=>{
|
|
|
8682
8708
|
return formats.indexOf(format) !== -1 ? number * Math.pow(1024, formats.indexOf(format) + 1) : parseInt(human, 10);
|
|
8683
8709
|
};
|
|
8684
8710
|
|
|
8711
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
8712
|
+
/* harmony export */ "humanSizeToBytes", 0, /* binding */ humanSizeToBytes
|
|
8713
|
+
/* harmony export */ ]);
|
|
8714
|
+
|
|
8685
8715
|
|
|
8686
8716
|
/***/ }),
|
|
8687
8717
|
|
|
@@ -8829,7 +8859,6 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
8829
8859
|
|
|
8830
8860
|
"use strict";
|
|
8831
8861
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
8832
|
-
/* harmony export */ UNSAFE_PROTO_KEYS: function() { return /* binding */ UNSAFE_PROTO_KEYS; },
|
|
8833
8862
|
/* harmony export */ isUnsafeProtoKey: function() { return /* binding */ isUnsafeProtoKey; }
|
|
8834
8863
|
/* harmony export */ });
|
|
8835
8864
|
/*!
|
|
@@ -8853,6 +8882,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
8853
8882
|
return UNSAFE_PROTO_KEYS.indexOf(key) !== -1;
|
|
8854
8883
|
}
|
|
8855
8884
|
|
|
8885
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
8886
|
+
/* harmony export */ "UNSAFE_PROTO_KEYS", 0, /* binding */ UNSAFE_PROTO_KEYS
|
|
8887
|
+
/* harmony export */ ]);
|
|
8888
|
+
|
|
8856
8889
|
|
|
8857
8890
|
/***/ }),
|
|
8858
8891
|
|
|
@@ -8861,7 +8894,6 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
8861
8894
|
|
|
8862
8895
|
"use strict";
|
|
8863
8896
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
8864
|
-
/* harmony export */ cns: function() { return /* binding */ cns; },
|
|
8865
8897
|
/* harmony export */ markDeprecated: function() { return /* binding */ markDeprecated; }
|
|
8866
8898
|
/* harmony export */ });
|
|
8867
8899
|
/*!
|
|
@@ -8885,6 +8917,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
8885
8917
|
};
|
|
8886
8918
|
}
|
|
8887
8919
|
|
|
8920
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
8921
|
+
/* harmony export */ "cns", 0, /* binding */ cns
|
|
8922
|
+
/* harmony export */ ]);
|
|
8923
|
+
|
|
8888
8924
|
|
|
8889
8925
|
/***/ }),
|
|
8890
8926
|
|
|
@@ -8892,9 +8928,6 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
8892
8928
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
8893
8929
|
|
|
8894
8930
|
"use strict";
|
|
8895
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
8896
|
-
/* harmony export */ parseQuery: function() { return /* binding */ parseQuery; }
|
|
8897
|
-
/* harmony export */ });
|
|
8898
8931
|
/*!
|
|
8899
8932
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
8900
8933
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
@@ -8912,6 +8945,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
8912
8945
|
return query;
|
|
8913
8946
|
};
|
|
8914
8947
|
|
|
8948
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
8949
|
+
/* harmony export */ "parseQuery", 0, /* binding */ parseQuery
|
|
8950
|
+
/* harmony export */ ]);
|
|
8951
|
+
|
|
8915
8952
|
|
|
8916
8953
|
/***/ }),
|
|
8917
8954
|
|
|
@@ -8993,7 +9030,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
8993
9030
|
if (container) {
|
|
8994
9031
|
jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_0__.Dom.append(container, div);
|
|
8995
9032
|
}
|
|
8996
|
-
(0,_css__WEBPACK_IMPORTED_MODULE_3__.css)(div, {
|
|
9033
|
+
;(0,_css__WEBPACK_IMPORTED_MODULE_3__.css)(div, {
|
|
8997
9034
|
position: 'relative',
|
|
8998
9035
|
padding: 16
|
|
8999
9036
|
});
|
|
@@ -9237,9 +9274,6 @@ const map = {};
|
|
|
9237
9274
|
"use strict";
|
|
9238
9275
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
9239
9276
|
/* harmony export */ $$: function() { return /* binding */ $$; },
|
|
9240
|
-
/* harmony export */ cssPath: function() { return /* binding */ cssPath; },
|
|
9241
|
-
/* harmony export */ getXPathByElement: function() { return /* binding */ getXPathByElement; },
|
|
9242
|
-
/* harmony export */ refs: function() { return /* binding */ refs; },
|
|
9243
9277
|
/* harmony export */ resolveElement: function() { return /* binding */ resolveElement; }
|
|
9244
9278
|
/* harmony export */ });
|
|
9245
9279
|
/* harmony import */ var jodit_core_constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(81937);
|
|
@@ -9364,6 +9398,12 @@ const $$temp = ()=>{
|
|
|
9364
9398
|
return resolved;
|
|
9365
9399
|
}
|
|
9366
9400
|
|
|
9401
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
9402
|
+
/* harmony export */ "cssPath", 0, /* binding */ cssPath,
|
|
9403
|
+
/* harmony export */ "getXPathByElement", 0, /* binding */ getXPathByElement,
|
|
9404
|
+
/* harmony export */ "refs", 0, /* binding */ refs
|
|
9405
|
+
/* harmony export */ ]);
|
|
9406
|
+
|
|
9367
9407
|
|
|
9368
9408
|
/***/ }),
|
|
9369
9409
|
|
|
@@ -9456,7 +9496,7 @@ class LimitedStack {
|
|
|
9456
9496
|
return this.stack.find(clb);
|
|
9457
9497
|
}
|
|
9458
9498
|
constructor(limit){
|
|
9459
|
-
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "limit", void 0);
|
|
9499
|
+
;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "limit", void 0);
|
|
9460
9500
|
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "stack", void 0);
|
|
9461
9501
|
this.limit = limit;
|
|
9462
9502
|
this.stack = [];
|
|
@@ -9474,12 +9514,8 @@ class LimitedStack {
|
|
|
9474
9514
|
/* harmony export */ call: function() { return /* binding */ call; },
|
|
9475
9515
|
/* harmony export */ callPromise: function() { return /* binding */ callPromise; },
|
|
9476
9516
|
/* harmony export */ callThis: function() { return /* binding */ callThis; },
|
|
9477
|
-
/* harmony export */ getDataTransfer: function() { return /* binding */ getDataTransfer; },
|
|
9478
9517
|
/* harmony export */ getPropertyDescriptor: function() { return /* binding */ getPropertyDescriptor; },
|
|
9479
|
-
/* harmony export */
|
|
9480
|
-
/* harmony export */ loadImage: function() { return /* binding */ loadImage; },
|
|
9481
|
-
/* harmony export */ markOwner: function() { return /* binding */ markOwner; },
|
|
9482
|
-
/* harmony export */ memorizeExec: function() { return /* binding */ memorizeExec; }
|
|
9518
|
+
/* harmony export */ markOwner: function() { return /* binding */ markOwner; }
|
|
9483
9519
|
/* harmony export */ });
|
|
9484
9520
|
/* harmony import */ var jodit_core_helpers_checker_is_promise__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(52100);
|
|
9485
9521
|
/* harmony import */ var jodit_core_helpers_checker_is_void__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(18303);
|
|
@@ -9520,7 +9556,7 @@ class LimitedStack {
|
|
|
9520
9556
|
/**
|
|
9521
9557
|
* Mark element for debugging
|
|
9522
9558
|
*/ function markOwner(jodit, elm) {
|
|
9523
|
-
(0,_attr__WEBPACK_IMPORTED_MODULE_2__.attr)(elm, 'data-editor_id', jodit.id);
|
|
9559
|
+
;(0,_attr__WEBPACK_IMPORTED_MODULE_2__.attr)(elm, 'data-editor_id', jodit.id);
|
|
9524
9560
|
!elm.component && Object.defineProperty(elm, 'jodit', {
|
|
9525
9561
|
value: jodit
|
|
9526
9562
|
});
|
|
@@ -9566,7 +9602,7 @@ const keys = (obj, own = true)=>{
|
|
|
9566
9602
|
if ((0,jodit_core_helpers_checker_is_void__WEBPACK_IMPORTED_MODULE_1__.isVoid)(value)) {
|
|
9567
9603
|
return false;
|
|
9568
9604
|
}
|
|
9569
|
-
(0,_data_bind__WEBPACK_IMPORTED_MODULE_3__.dataBind)(editor, key, value);
|
|
9605
|
+
;(0,_data_bind__WEBPACK_IMPORTED_MODULE_3__.dataBind)(editor, key, value);
|
|
9570
9606
|
if (preProcessValue) {
|
|
9571
9607
|
value = preProcessValue(value);
|
|
9572
9608
|
}
|
|
@@ -9593,6 +9629,13 @@ function getPropertyDescriptor(obj, prop) {
|
|
|
9593
9629
|
return desc;
|
|
9594
9630
|
}
|
|
9595
9631
|
|
|
9632
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
9633
|
+
/* harmony export */ "getDataTransfer", 0, /* binding */ getDataTransfer,
|
|
9634
|
+
/* harmony export */ "keys", 0, /* binding */ keys,
|
|
9635
|
+
/* harmony export */ "loadImage", 0, /* binding */ loadImage,
|
|
9636
|
+
/* harmony export */ "memorizeExec", 0, /* binding */ memorizeExec
|
|
9637
|
+
/* harmony export */ ]);
|
|
9638
|
+
|
|
9596
9639
|
|
|
9597
9640
|
/***/ }),
|
|
9598
9641
|
|
|
@@ -9917,7 +9960,7 @@ const styles = new Set();
|
|
|
9917
9960
|
waitingList.delete(name);
|
|
9918
9961
|
return;
|
|
9919
9962
|
}
|
|
9920
|
-
(0,jodit_core_plugin_helpers_init_instance__WEBPACK_IMPORTED_MODULE_7__.init)(jodit, name, plugin, instance, doneList, waitingList, this.opts.getContainer);
|
|
9963
|
+
;(0,jodit_core_plugin_helpers_init_instance__WEBPACK_IMPORTED_MODULE_7__.init)(jodit, name, plugin, instance, doneList, waitingList, this.opts.getContainer);
|
|
9921
9964
|
pluginsMap[name] = instance;
|
|
9922
9965
|
});
|
|
9923
9966
|
if (commit) {
|
|
@@ -9949,7 +9992,7 @@ const styles = new Set();
|
|
|
9949
9992
|
});
|
|
9950
9993
|
}
|
|
9951
9994
|
constructor(opts){
|
|
9952
|
-
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "opts", void 0);
|
|
9995
|
+
;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "opts", void 0);
|
|
9953
9996
|
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "__items", void 0);
|
|
9954
9997
|
this.opts = opts;
|
|
9955
9998
|
this.__items = new Map();
|
|
@@ -10068,7 +10111,7 @@ class Plugin extends jodit_core_component__WEBPACK_IMPORTED_MODULE_2__.ViewCompo
|
|
|
10068
10111
|
jodit.e.on('afterPluginSystemInit', this.__afterPluginSystemInit).on('afterInit', this.__afterInit).on('beforeDestruct', this.__beforeDestruct);
|
|
10069
10112
|
}
|
|
10070
10113
|
}
|
|
10071
|
-
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(Plugin, "requires", []);
|
|
10114
|
+
;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(Plugin, "requires", []);
|
|
10072
10115
|
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
10073
10116
|
jodit_core_decorators__WEBPACK_IMPORTED_MODULE_3__.autobind
|
|
10074
10117
|
], Plugin.prototype, "__afterPluginSystemInit", null);
|
|
@@ -10357,7 +10400,7 @@ class Ajax {
|
|
|
10357
10400
|
}
|
|
10358
10401
|
}
|
|
10359
10402
|
constructor(options, defaultAjaxOptions = jodit_config__WEBPACK_IMPORTED_MODULE_11__.Config.prototype.defaultAjaxOptions){
|
|
10360
|
-
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_2__._)(this, "__async", new jodit_core_async__WEBPACK_IMPORTED_MODULE_6__.Async());
|
|
10403
|
+
;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_2__._)(this, "__async", new jodit_core_async__WEBPACK_IMPORTED_MODULE_6__.Async());
|
|
10361
10404
|
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_2__._)(this, "xhr", void 0);
|
|
10362
10405
|
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_2__._)(this, "options", void 0);
|
|
10363
10406
|
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_2__._)(this, "__isFulfilled", false);
|
|
@@ -10367,7 +10410,7 @@ class Ajax {
|
|
|
10367
10410
|
this.xhr = this.o.xhr ? this.o.xhr() : new XMLHttpRequest();
|
|
10368
10411
|
}
|
|
10369
10412
|
}
|
|
10370
|
-
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_2__._)(Ajax, "log", []);
|
|
10413
|
+
;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_2__._)(Ajax, "log", []);
|
|
10371
10414
|
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_4__.__decorate)([
|
|
10372
10415
|
jodit_core_decorators_autobind_autobind__WEBPACK_IMPORTED_MODULE_8__.autobind
|
|
10373
10416
|
], Ajax.prototype, "destruct", null);
|
|
@@ -10466,7 +10509,7 @@ class Response {
|
|
|
10466
10509
|
}).call(this);
|
|
10467
10510
|
}
|
|
10468
10511
|
constructor(request, status, statusText, body){
|
|
10469
|
-
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_1__._)(this, "status", void 0);
|
|
10512
|
+
;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_1__._)(this, "status", void 0);
|
|
10470
10513
|
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_1__._)(this, "statusText", void 0);
|
|
10471
10514
|
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_1__._)(this, "request", void 0);
|
|
10472
10515
|
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_1__._)(this, "body", void 0);
|
|
@@ -11197,7 +11240,7 @@ class Selection {
|
|
|
11197
11240
|
if (dw && 'auto' !== dw && String(dw).indexOf('px') < 0 && String(dw).indexOf('%') < 0) {
|
|
11198
11241
|
dw += 'px';
|
|
11199
11242
|
}
|
|
11200
|
-
(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_5__.attr)(image, 'width', dw);
|
|
11243
|
+
;(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_5__.attr)(image, 'width', dw);
|
|
11201
11244
|
}
|
|
11202
11245
|
if (styles && typeof styles === 'object') {
|
|
11203
11246
|
(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_5__.css)(image, styles);
|
|
@@ -11683,7 +11726,7 @@ class Selection {
|
|
|
11683
11726
|
* }) // will remove `color:red` from `span`
|
|
11684
11727
|
* ```
|
|
11685
11728
|
*/ commitStyle(options) {
|
|
11686
|
-
(0,jodit_core_helpers_utils_assert__WEBPACK_IMPORTED_MODULE_7__.assert)((0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_5__.size)(options) > 0, 'Need to pass at least one option');
|
|
11729
|
+
;(0,jodit_core_helpers_utils_assert__WEBPACK_IMPORTED_MODULE_7__.assert)((0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_5__.size)(options) > 0, 'Need to pass at least one option');
|
|
11687
11730
|
const styleElm = new _style_commit_style__WEBPACK_IMPORTED_MODULE_9__.CommitStyle(options);
|
|
11688
11731
|
styleElm.apply(this.j);
|
|
11689
11732
|
}
|
|
@@ -11820,14 +11863,14 @@ class Selection {
|
|
|
11820
11863
|
return this;
|
|
11821
11864
|
}
|
|
11822
11865
|
constructor(jodit){
|
|
11823
|
-
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "jodit", void 0);
|
|
11866
|
+
;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "jodit", void 0);
|
|
11824
11867
|
this.jodit = jodit;
|
|
11825
11868
|
jodit.e.on('removeMarkers', ()=>{
|
|
11826
11869
|
this.removeMarkers();
|
|
11827
11870
|
});
|
|
11828
11871
|
}
|
|
11829
11872
|
}
|
|
11830
|
-
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
11873
|
+
;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
11831
11874
|
jodit_core_decorators__WEBPACK_IMPORTED_MODULE_3__.autobind
|
|
11832
11875
|
], Selection.prototype, "createRange", null);
|
|
11833
11876
|
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
@@ -11960,7 +12003,7 @@ class Selection {
|
|
|
11960
12003
|
throw new Error(`invalid action: ${this.getState()}.${actionName.toString()}`);
|
|
11961
12004
|
}
|
|
11962
12005
|
constructor(state, transitions){
|
|
11963
|
-
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "transitions", void 0);
|
|
12006
|
+
;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "transitions", void 0);
|
|
11964
12007
|
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "__state", void 0);
|
|
11965
12008
|
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "silent", void 0);
|
|
11966
12009
|
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "__previewsStates", void 0);
|
|
@@ -12283,7 +12326,7 @@ if (jodit_core_constants__WEBPACK_IMPORTED_MODULE_0__.globalDocument) {
|
|
|
12283
12326
|
if (!(0,jodit_core_helpers_size_object_size__WEBPACK_IMPORTED_MODULE_0__.size)(attrs)) {
|
|
12284
12327
|
return true;
|
|
12285
12328
|
}
|
|
12286
|
-
(0,jodit_core_helpers_utils_assert__WEBPACK_IMPORTED_MODULE_2__.assert)(attrs, 'Attrs must be a non-empty object');
|
|
12329
|
+
;(0,jodit_core_helpers_utils_assert__WEBPACK_IMPORTED_MODULE_2__.assert)(attrs, 'Attrs must be a non-empty object');
|
|
12287
12330
|
return Object.keys(attrs).every((key)=>{
|
|
12288
12331
|
if (key === 'class' || key === 'className') {
|
|
12289
12332
|
return elm.classList.contains(attrs[key]);
|
|
@@ -12420,8 +12463,8 @@ function elementsEqualAttributes(elm1, elm2) {
|
|
|
12420
12463
|
return result;
|
|
12421
12464
|
}
|
|
12422
12465
|
const hook = jodit.e.fire.bind(jodit.e, `${jodit_core_selection_style_constants__WEBPACK_IMPORTED_MODULE_4__._PREFIX}AfterToggleList`);
|
|
12423
|
-
if (mode !==
|
|
12424
|
-
const isChangeMode = (0,jodit_core_selection_style_api_toggle_attributes__WEBPACK_IMPORTED_MODULE_3__.toggleAttributes)(commitStyle, li.parentElement, jodit, jodit_core_selection_style_constants__WEBPACK_IMPORTED_MODULE_4__.INITIAL, true) ===
|
|
12466
|
+
if (mode !== (/* inlined export .UNWRAP */"unwrap")) {
|
|
12467
|
+
const isChangeMode = (0,jodit_core_selection_style_api_toggle_attributes__WEBPACK_IMPORTED_MODULE_3__.toggleAttributes)(commitStyle, li.parentElement, jodit, jodit_core_selection_style_constants__WEBPACK_IMPORTED_MODULE_4__.INITIAL, true) === (/* inlined export .CHANGE */"change");
|
|
12425
12468
|
// ul => ol, ol => ul or ul => ul.class1
|
|
12426
12469
|
if (mode === jodit_core_selection_style_constants__WEBPACK_IMPORTED_MODULE_4__.REPLACE || isChangeMode || list.tagName.toLowerCase() !== commitStyle.element) {
|
|
12427
12470
|
const wrapper = unwrapList(jodit_core_selection_style_constants__WEBPACK_IMPORTED_MODULE_4__.REPLACE, list, li, jodit, commitStyle);
|
|
@@ -12430,9 +12473,9 @@ function elementsEqualAttributes(elm1, elm2) {
|
|
|
12430
12473
|
return jodit_core_selection_style_constants__WEBPACK_IMPORTED_MODULE_4__.REPLACE;
|
|
12431
12474
|
}
|
|
12432
12475
|
}
|
|
12433
|
-
const wrapper = unwrapList(
|
|
12434
|
-
hook(
|
|
12435
|
-
return
|
|
12476
|
+
const wrapper = unwrapList((/* inlined export .UNWRAP */"unwrap"), list, li, jodit, commitStyle);
|
|
12477
|
+
hook((/* inlined export .UNWRAP */"unwrap"), wrapper, commitStyle);
|
|
12478
|
+
return (/* inlined export .UNWRAP */"unwrap");
|
|
12436
12479
|
}
|
|
12437
12480
|
function unwrapList(mode, list, li, jodit, cs) {
|
|
12438
12481
|
const result = jodit.e.fire(`${jodit_core_selection_style_constants__WEBPACK_IMPORTED_MODULE_4__._PREFIX}BeforeUnwrapList`, mode, list, cs);
|
|
@@ -12440,7 +12483,7 @@ function unwrapList(mode, list, li, jodit, cs) {
|
|
|
12440
12483
|
(0,jodit_core_helpers_utils_assert__WEBPACK_IMPORTED_MODULE_1__.assert)(jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_0__.Dom.isHTMLElement(result), `${jodit_core_selection_style_constants__WEBPACK_IMPORTED_MODULE_4__._PREFIX}BeforeUnwrapList hook must return HTMLElement`);
|
|
12441
12484
|
return result;
|
|
12442
12485
|
}
|
|
12443
|
-
(0,jodit_core_selection_style_api_extract__WEBPACK_IMPORTED_MODULE_2__.extractSelectedPart)(list, li, jodit);
|
|
12486
|
+
;(0,jodit_core_selection_style_api_extract__WEBPACK_IMPORTED_MODULE_2__.extractSelectedPart)(list, li, jodit);
|
|
12444
12487
|
(0,jodit_core_helpers_utils_assert__WEBPACK_IMPORTED_MODULE_1__.assert)(jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_0__.Dom.isHTMLElement(li.parentElement), 'Element should be inside the list');
|
|
12445
12488
|
jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_0__.Dom.unwrap(li.parentElement);
|
|
12446
12489
|
// In the REPLACE mode the content will be immediately wrapped in a `li`
|
|
@@ -12500,7 +12543,7 @@ function unwrapList(mode, list, li, jodit, cs) {
|
|
|
12500
12543
|
jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_0__.Dom.append(list, Array.from(list.nextElementSibling.childNodes));
|
|
12501
12544
|
jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_0__.Dom.safeRemove(list.nextElementSibling);
|
|
12502
12545
|
}
|
|
12503
|
-
jodit.e.fire(`${jodit_core_selection_style_constants__WEBPACK_IMPORTED_MODULE_3__._PREFIX}AfterWrapList`,
|
|
12546
|
+
jodit.e.fire(`${jodit_core_selection_style_constants__WEBPACK_IMPORTED_MODULE_3__._PREFIX}AfterWrapList`, (/* inlined export .WRAP */"wrap"), list, commitStyle);
|
|
12504
12547
|
return list;
|
|
12505
12548
|
}
|
|
12506
12549
|
|
|
@@ -12569,7 +12612,7 @@ const tak = 'toggleAttributes';
|
|
|
12569
12612
|
return mode;
|
|
12570
12613
|
}
|
|
12571
12614
|
function toggleStyle(commitStyle, jodit, style, elm, dry, mode) {
|
|
12572
|
-
(0,jodit_core_helpers_utils__WEBPACK_IMPORTED_MODULE_6__.assert)((0,jodit_core_helpers_checker__WEBPACK_IMPORTED_MODULE_3__.isPlainObject)(style) && (0,jodit_core_helpers_size_object_size__WEBPACK_IMPORTED_MODULE_5__.size)(style), 'Style must be an object');
|
|
12615
|
+
;(0,jodit_core_helpers_utils__WEBPACK_IMPORTED_MODULE_6__.assert)((0,jodit_core_helpers_checker__WEBPACK_IMPORTED_MODULE_3__.isPlainObject)(style) && (0,jodit_core_helpers_size_object_size__WEBPACK_IMPORTED_MODULE_5__.size)(style), 'Style must be an object');
|
|
12573
12616
|
Object.keys(style).forEach((rule)=>{
|
|
12574
12617
|
const inlineValue = (0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_7__.cssInline)(elm, rule);
|
|
12575
12618
|
const newValue = style[rule];
|
|
@@ -12581,11 +12624,11 @@ function toggleStyle(commitStyle, jodit, style, elm, dry, mode) {
|
|
|
12581
12624
|
return;
|
|
12582
12625
|
}
|
|
12583
12626
|
!dry && (0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_7__.css)(elm, rule, null);
|
|
12584
|
-
mode =
|
|
12627
|
+
mode = (/* inlined export .UNSET */"unset");
|
|
12585
12628
|
mode = removeExtraStyleAttribute(commitStyle, elm, mode);
|
|
12586
12629
|
return;
|
|
12587
12630
|
}
|
|
12588
|
-
mode =
|
|
12631
|
+
mode = (/* inlined export .CHANGE */"change");
|
|
12589
12632
|
if (!dry) {
|
|
12590
12633
|
(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_7__.css)(elm, rule, newValue);
|
|
12591
12634
|
mode = removeExtraStyleAttribute(commitStyle, elm, mode);
|
|
@@ -12594,10 +12637,10 @@ function toggleStyle(commitStyle, jodit, style, elm, dry, mode) {
|
|
|
12594
12637
|
return mode;
|
|
12595
12638
|
}
|
|
12596
12639
|
function toggleClass(jodit, value, elm, mode, dry) {
|
|
12597
|
-
(0,jodit_core_helpers_utils__WEBPACK_IMPORTED_MODULE_6__.assert)((0,jodit_core_helpers_checker__WEBPACK_IMPORTED_MODULE_3__.isString)(value), 'Class name must be a string');
|
|
12640
|
+
;(0,jodit_core_helpers_utils__WEBPACK_IMPORTED_MODULE_6__.assert)((0,jodit_core_helpers_checker__WEBPACK_IMPORTED_MODULE_3__.isString)(value), 'Class name must be a string');
|
|
12598
12641
|
const hook = jodit.e.fire.bind(jodit.e, `${jodit_core_selection_style_constants__WEBPACK_IMPORTED_MODULE_9__._PREFIX}AfterToggleAttribute`);
|
|
12599
12642
|
if (elm.classList.contains(value.toString())) {
|
|
12600
|
-
mode =
|
|
12643
|
+
mode = (/* inlined export .UNSET */"unset");
|
|
12601
12644
|
if (!dry) {
|
|
12602
12645
|
elm.classList.remove(value);
|
|
12603
12646
|
if (elm.classList.length === 0) {
|
|
@@ -12606,7 +12649,7 @@ function toggleClass(jodit, value, elm, mode, dry) {
|
|
|
12606
12649
|
}
|
|
12607
12650
|
}
|
|
12608
12651
|
} else {
|
|
12609
|
-
mode =
|
|
12652
|
+
mode = (/* inlined export .CHANGE */"change");
|
|
12610
12653
|
if (!dry) {
|
|
12611
12654
|
elm.classList.add(value);
|
|
12612
12655
|
hook(mode, elm, 'class', value);
|
|
@@ -12615,17 +12658,17 @@ function toggleClass(jodit, value, elm, mode, dry) {
|
|
|
12615
12658
|
return mode;
|
|
12616
12659
|
}
|
|
12617
12660
|
function toggleAttribute(jodit, value, elm, key, dry, mode) {
|
|
12618
|
-
(0,jodit_core_helpers_utils__WEBPACK_IMPORTED_MODULE_6__.assert)((0,jodit_core_helpers_checker__WEBPACK_IMPORTED_MODULE_3__.isString)(value) || (0,jodit_core_helpers_checker__WEBPACK_IMPORTED_MODULE_3__.isNumber)(value) || (0,jodit_core_helpers_checker__WEBPACK_IMPORTED_MODULE_3__.isBoolean)(value) || value == null, 'Attribute value must be a string or number or boolean or null');
|
|
12661
|
+
;(0,jodit_core_helpers_utils__WEBPACK_IMPORTED_MODULE_6__.assert)((0,jodit_core_helpers_checker__WEBPACK_IMPORTED_MODULE_3__.isString)(value) || (0,jodit_core_helpers_checker__WEBPACK_IMPORTED_MODULE_3__.isNumber)(value) || (0,jodit_core_helpers_checker__WEBPACK_IMPORTED_MODULE_3__.isBoolean)(value) || value == null, 'Attribute value must be a string or number or boolean or null');
|
|
12619
12662
|
const hook = jodit.e.fire.bind(jodit.e, `${jodit_core_selection_style_constants__WEBPACK_IMPORTED_MODULE_9__._PREFIX}AfterToggleAttribute`);
|
|
12620
12663
|
// `attr()` getter always returns a string, so a number/boolean value
|
|
12621
12664
|
// must be normalized, otherwise the toggle-off branch is unreachable
|
|
12622
12665
|
if ((0,jodit_core_helpers_utils__WEBPACK_IMPORTED_MODULE_6__.attr)(elm, key) === (value == null ? value : String(value))) {
|
|
12623
12666
|
!dry && (0,jodit_core_helpers_utils__WEBPACK_IMPORTED_MODULE_6__.attr)(elm, key, null);
|
|
12624
|
-
mode =
|
|
12667
|
+
mode = (/* inlined export .UNSET */"unset");
|
|
12625
12668
|
!dry && hook(mode, elm, key, value);
|
|
12626
12669
|
return mode;
|
|
12627
12670
|
}
|
|
12628
|
-
mode =
|
|
12671
|
+
mode = (/* inlined export .CHANGE */"change");
|
|
12629
12672
|
if (!dry) {
|
|
12630
12673
|
(0,jodit_core_helpers_utils__WEBPACK_IMPORTED_MODULE_6__.attr)(elm, key, value);
|
|
12631
12674
|
hook(mode, elm, key, value);
|
|
@@ -12640,7 +12683,7 @@ function toggleAttribute(jodit, value, elm, key, dry, mode) {
|
|
|
12640
12683
|
(0,jodit_core_helpers_utils__WEBPACK_IMPORTED_MODULE_6__.attr)(elm, 'style', null);
|
|
12641
12684
|
if (elm.tagName.toLowerCase() === commitStyle.defaultTag) {
|
|
12642
12685
|
jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_1__.Dom.unwrap(elm);
|
|
12643
|
-
mode =
|
|
12686
|
+
mode = (/* inlined export .UNWRAP */"unwrap");
|
|
12644
12687
|
}
|
|
12645
12688
|
}
|
|
12646
12689
|
return mode;
|
|
@@ -12732,7 +12775,7 @@ function toggleAttribute(jodit, value, elm, key, dry, mode) {
|
|
|
12732
12775
|
firstElementSuit = false;
|
|
12733
12776
|
}
|
|
12734
12777
|
needChangeStyle.push(()=>{
|
|
12735
|
-
(0,jodit_core_helpers_utils__WEBPACK_IMPORTED_MODULE_1__.css)(elm, Object.keys(cssStyle).reduce((acc, key)=>{
|
|
12778
|
+
;(0,jodit_core_helpers_utils__WEBPACK_IMPORTED_MODULE_1__.css)(elm, Object.keys(cssStyle).reduce((acc, key)=>{
|
|
12736
12779
|
acc[key] = null;
|
|
12737
12780
|
return acc;
|
|
12738
12781
|
}, {}));
|
|
@@ -12820,7 +12863,6 @@ function toggleAttribute(jodit, value, elm, key, dry, mode) {
|
|
|
12820
12863
|
|
|
12821
12864
|
"use strict";
|
|
12822
12865
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
12823
|
-
/* harmony export */ WRAP_NODES: function() { return /* binding */ WRAP_NODES; },
|
|
12824
12866
|
/* harmony export */ wrap: function() { return /* binding */ wrap; }
|
|
12825
12867
|
/* harmony export */ });
|
|
12826
12868
|
/* harmony import */ var jodit_core_dom__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(27795);
|
|
@@ -12881,7 +12923,7 @@ const WRAP_NODES = new Set([
|
|
|
12881
12923
|
}
|
|
12882
12924
|
return (0,_wrap_unwrapped_text__WEBPACK_IMPORTED_MODULE_4__.wrapUnwrappedText)(commitStyle, font, jodit);
|
|
12883
12925
|
}
|
|
12884
|
-
(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_1__.attr)(font, 'size', null);
|
|
12926
|
+
;(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_1__.attr)(font, 'size', null);
|
|
12885
12927
|
return font;
|
|
12886
12928
|
}
|
|
12887
12929
|
/**
|
|
@@ -12892,6 +12934,10 @@ const WRAP_NODES = new Set([
|
|
|
12892
12934
|
return Array.from(node.childNodes).some((child)=>jodit_core_dom__WEBPACK_IMPORTED_MODULE_0__.Dom.isBlock(child));
|
|
12893
12935
|
}
|
|
12894
12936
|
|
|
12937
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
12938
|
+
/* harmony export */ "WRAP_NODES", 0, /* binding */ WRAP_NODES
|
|
12939
|
+
/* harmony export */ ]);
|
|
12940
|
+
|
|
12895
12941
|
|
|
12896
12942
|
/***/ }),
|
|
12897
12943
|
|
|
@@ -13031,7 +13077,7 @@ class CommitStyle {
|
|
|
13031
13077
|
jodit.e.fire('afterCommitStyle', this);
|
|
13032
13078
|
}
|
|
13033
13079
|
constructor(options){
|
|
13034
|
-
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "options", void 0);
|
|
13080
|
+
;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "options", void 0);
|
|
13035
13081
|
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "__applyMap", void 0);
|
|
13036
13082
|
this.options = options;
|
|
13037
13083
|
this.__applyMap = new WeakMap();
|
|
@@ -13045,15 +13091,6 @@ class CommitStyle {
|
|
|
13045
13091
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
13046
13092
|
|
|
13047
13093
|
"use strict";
|
|
13048
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
13049
|
-
/* harmony export */ CHANGE: function() { return /* binding */ CHANGE; },
|
|
13050
|
-
/* harmony export */ INITIAL: function() { return /* binding */ INITIAL; },
|
|
13051
|
-
/* harmony export */ REPLACE: function() { return /* binding */ REPLACE; },
|
|
13052
|
-
/* harmony export */ UNSET: function() { return /* binding */ UNSET; },
|
|
13053
|
-
/* harmony export */ UNWRAP: function() { return /* binding */ UNWRAP; },
|
|
13054
|
-
/* harmony export */ WRAP: function() { return /* binding */ WRAP; },
|
|
13055
|
-
/* harmony export */ _PREFIX: function() { return /* binding */ _PREFIX; }
|
|
13056
|
-
/* harmony export */ });
|
|
13057
13094
|
/*!
|
|
13058
13095
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
13059
13096
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
@@ -13068,6 +13105,12 @@ class CommitStyle {
|
|
|
13068
13105
|
/** @internal */ const REPLACE = 'replace';
|
|
13069
13106
|
/** @internal */ const _PREFIX = 'commitStyle';
|
|
13070
13107
|
|
|
13108
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
13109
|
+
/* harmony export */ "INITIAL", 0, /* binding */ INITIAL,
|
|
13110
|
+
/* harmony export */ "REPLACE", 0, /* binding */ REPLACE,
|
|
13111
|
+
/* harmony export */ "_PREFIX", 0, /* binding */ _PREFIX
|
|
13112
|
+
/* harmony export */ ]);
|
|
13113
|
+
|
|
13071
13114
|
|
|
13072
13115
|
/***/ }),
|
|
13073
13116
|
|
|
@@ -13075,10 +13118,6 @@ class CommitStyle {
|
|
|
13075
13118
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
13076
13119
|
|
|
13077
13120
|
"use strict";
|
|
13078
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
13079
|
-
/* harmony export */ states: function() { return /* binding */ states; },
|
|
13080
|
-
/* harmony export */ transactions: function() { return /* binding */ transactions; }
|
|
13081
|
-
/* harmony export */ });
|
|
13082
13121
|
/* harmony import */ var _swc_helpers_object_spread__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(41411);
|
|
13083
13122
|
/* harmony import */ var _swc_helpers_object_spread_props__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(15366);
|
|
13084
13123
|
/* harmony import */ var jodit_core_constants__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(81937);
|
|
@@ -13141,14 +13180,14 @@ const transactions = {
|
|
|
13141
13180
|
});
|
|
13142
13181
|
}
|
|
13143
13182
|
return (0,_swc_helpers_object_spread_props__WEBPACK_IMPORTED_MODULE_1__._)((0,_swc_helpers_object_spread__WEBPACK_IMPORTED_MODULE_0__._)({}, value), {
|
|
13144
|
-
next: mode !==
|
|
13183
|
+
next: mode !== (/* inlined export .UNWRAP */"unwrap") ? states.UNWRAP_CHILDREN : states.END
|
|
13145
13184
|
});
|
|
13146
13185
|
}
|
|
13147
13186
|
},
|
|
13148
13187
|
[states.LIST]: {
|
|
13149
13188
|
exec (value) {
|
|
13150
13189
|
const { element, jodit, mode } = value;
|
|
13151
|
-
if (mode !== jodit_core_selection_style_constants__WEBPACK_IMPORTED_MODULE_6__.INITIAL && mode !==
|
|
13190
|
+
if (mode !== jodit_core_selection_style_constants__WEBPACK_IMPORTED_MODULE_6__.INITIAL && mode !== (/* inlined export .UNWRAP */"unwrap") && mode !== jodit_core_selection_style_constants__WEBPACK_IMPORTED_MODULE_6__.REPLACE) {
|
|
13152
13191
|
return (0,_swc_helpers_object_spread_props__WEBPACK_IMPORTED_MODULE_1__._)((0,_swc_helpers_object_spread__WEBPACK_IMPORTED_MODULE_0__._)({}, value), {
|
|
13153
13192
|
next: states.END
|
|
13154
13193
|
});
|
|
@@ -13212,7 +13251,7 @@ const transactions = {
|
|
|
13212
13251
|
});
|
|
13213
13252
|
}
|
|
13214
13253
|
return (0,_swc_helpers_object_spread_props__WEBPACK_IMPORTED_MODULE_1__._)((0,_swc_helpers_object_spread__WEBPACK_IMPORTED_MODULE_0__._)({}, value), {
|
|
13215
|
-
mode:
|
|
13254
|
+
mode: (/* inlined export .UNWRAP */"unwrap"),
|
|
13216
13255
|
next: states.END
|
|
13217
13256
|
});
|
|
13218
13257
|
}
|
|
@@ -13223,7 +13262,7 @@ const transactions = {
|
|
|
13223
13262
|
const wrapper = (0,jodit_core_selection_style_api__WEBPACK_IMPORTED_MODULE_5__.wrap)(style, element, jodit);
|
|
13224
13263
|
return (0,_swc_helpers_object_spread_props__WEBPACK_IMPORTED_MODULE_1__._)((0,_swc_helpers_object_spread__WEBPACK_IMPORTED_MODULE_0__._)({}, value), {
|
|
13225
13264
|
next: style.elementIsList ? states.END : states.CHANGE,
|
|
13226
|
-
mode:
|
|
13265
|
+
mode: (/* inlined export .WRAP */"wrap"),
|
|
13227
13266
|
element: wrapper
|
|
13228
13267
|
});
|
|
13229
13268
|
}
|
|
@@ -13251,7 +13290,7 @@ const transactions = {
|
|
|
13251
13290
|
exec (value) {
|
|
13252
13291
|
const { style, element, jodit, mode } = value;
|
|
13253
13292
|
const newMode = (0,jodit_core_selection_style_api__WEBPACK_IMPORTED_MODULE_5__.toggleAttributes)(style, element, jodit, value.mode);
|
|
13254
|
-
if (mode !==
|
|
13293
|
+
if (mode !== (/* inlined export .WRAP */"wrap") && newMode === (/* inlined export .UNSET */"unset") && !element.attributes.length && jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_3__.Dom.isTag(element, style.element)) {
|
|
13255
13294
|
return (0,_swc_helpers_object_spread_props__WEBPACK_IMPORTED_MODULE_1__._)((0,_swc_helpers_object_spread__WEBPACK_IMPORTED_MODULE_0__._)({}, value), {
|
|
13256
13295
|
next: states.UNWRAP
|
|
13257
13296
|
});
|
|
@@ -13282,7 +13321,7 @@ const transactions = {
|
|
|
13282
13321
|
}
|
|
13283
13322
|
jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_3__.Dom.unwrap(element);
|
|
13284
13323
|
return (0,_swc_helpers_object_spread_props__WEBPACK_IMPORTED_MODULE_1__._)((0,_swc_helpers_object_spread__WEBPACK_IMPORTED_MODULE_0__._)({}, value), {
|
|
13285
|
-
mode:
|
|
13324
|
+
mode: (/* inlined export .UNWRAP */"unwrap"),
|
|
13286
13325
|
next: states.END
|
|
13287
13326
|
});
|
|
13288
13327
|
}
|
|
@@ -13303,6 +13342,11 @@ const transactions = {
|
|
|
13303
13342
|
}
|
|
13304
13343
|
};
|
|
13305
13344
|
|
|
13345
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
13346
|
+
/* harmony export */ "states", 0, /* binding */ states,
|
|
13347
|
+
/* harmony export */ "transactions", 0, /* binding */ transactions
|
|
13348
|
+
/* harmony export */ ]);
|
|
13349
|
+
|
|
13306
13350
|
|
|
13307
13351
|
/***/ }),
|
|
13308
13352
|
|
|
@@ -13319,7 +13363,6 @@ const transactions = {
|
|
|
13319
13363
|
/* harmony import */ var _engines_indexed_db_provider__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(91162);
|
|
13320
13364
|
/* harmony import */ var _engines_local_storage_provider__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(59807);
|
|
13321
13365
|
/* harmony import */ var _engines_memory_storage_provider__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(9505);
|
|
13322
|
-
/* harmony import */ var _storage__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(24475);
|
|
13323
13366
|
/*!
|
|
13324
13367
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
13325
13368
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
@@ -13383,7 +13426,7 @@ class AsyncStorage {
|
|
|
13383
13426
|
const defaultProvider = options === null || options === void 0 ? void 0 : options.defaultProvider;
|
|
13384
13427
|
if (defaultProvider != null) {
|
|
13385
13428
|
if (defaultProvider === 'local') {
|
|
13386
|
-
provider = (0,_engines_local_storage_provider__WEBPACK_IMPORTED_MODULE_4__.canUsePersistentStorage)('localStorage') ? new _engines_local_storage_provider__WEBPACK_IMPORTED_MODULE_4__.LocalStorageProvider(
|
|
13429
|
+
provider = (0,_engines_local_storage_provider__WEBPACK_IMPORTED_MODULE_4__.canUsePersistentStorage)('localStorage') ? new _engines_local_storage_provider__WEBPACK_IMPORTED_MODULE_4__.LocalStorageProvider((/* inlined export .StorageKey */"Jodit_") + (suffix || '')) : new _engines_memory_storage_provider__WEBPACK_IMPORTED_MODULE_5__.MemoryStorageProvider();
|
|
13387
13430
|
} else if (defaultProvider === 'memory') {
|
|
13388
13431
|
provider = new _engines_memory_storage_provider__WEBPACK_IMPORTED_MODULE_5__.MemoryStorageProvider();
|
|
13389
13432
|
} else {
|
|
@@ -13394,10 +13437,10 @@ class AsyncStorage {
|
|
|
13394
13437
|
}
|
|
13395
13438
|
if (persistentOrStrategy === 'localStorage' || persistentOrStrategy === 'sessionStorage') {
|
|
13396
13439
|
if ((0,_engines_local_storage_provider__WEBPACK_IMPORTED_MODULE_4__.canUsePersistentStorage)(persistentOrStrategy)) {
|
|
13397
|
-
provider = new _engines_local_storage_provider__WEBPACK_IMPORTED_MODULE_4__.LocalStorageProvider(
|
|
13440
|
+
provider = new _engines_local_storage_provider__WEBPACK_IMPORTED_MODULE_4__.LocalStorageProvider((/* inlined export .StorageKey */"Jodit_") + (suffix || ''), persistentOrStrategy);
|
|
13398
13441
|
}
|
|
13399
13442
|
} else if (persistentOrStrategy === 'indexedDB' || persistentOrStrategy === true) {
|
|
13400
|
-
provider = (0,_engines_indexed_db_provider__WEBPACK_IMPORTED_MODULE_3__.canUseIndexedDB)().then((canUse)=>canUse ? new _engines_indexed_db_provider__WEBPACK_IMPORTED_MODULE_3__.IndexedDBProvider(
|
|
13443
|
+
provider = (0,_engines_indexed_db_provider__WEBPACK_IMPORTED_MODULE_3__.canUseIndexedDB)().then((canUse)=>canUse ? new _engines_indexed_db_provider__WEBPACK_IMPORTED_MODULE_3__.IndexedDBProvider((/* inlined export .StorageKey */"Jodit_") + (suffix || ''), 'keyValueStore') : new _engines_memory_storage_provider__WEBPACK_IMPORTED_MODULE_5__.MemoryStorageProvider());
|
|
13401
13444
|
}
|
|
13402
13445
|
if (!provider) {
|
|
13403
13446
|
provider = new _engines_memory_storage_provider__WEBPACK_IMPORTED_MODULE_5__.MemoryStorageProvider();
|
|
@@ -13406,10 +13449,10 @@ class AsyncStorage {
|
|
|
13406
13449
|
return storage;
|
|
13407
13450
|
}
|
|
13408
13451
|
constructor(provider, suffix){
|
|
13409
|
-
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_1__._)(this, "provider", void 0);
|
|
13452
|
+
;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_1__._)(this, "provider", void 0);
|
|
13410
13453
|
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_1__._)(this, "prefix", void 0);
|
|
13411
13454
|
this.provider = provider;
|
|
13412
|
-
this.prefix =
|
|
13455
|
+
this.prefix = (/* inlined export .StorageKey */"Jodit_");
|
|
13413
13456
|
if (suffix) {
|
|
13414
13457
|
this.prefix += suffix;
|
|
13415
13458
|
}
|
|
@@ -13601,7 +13644,7 @@ class AsyncStorage {
|
|
|
13601
13644
|
}).call(this);
|
|
13602
13645
|
}
|
|
13603
13646
|
constructor(dbName = 'JoditDB', storeName = 'keyValueStore'){
|
|
13604
|
-
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_1__._)(this, "dbName", void 0);
|
|
13647
|
+
;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_1__._)(this, "dbName", void 0);
|
|
13605
13648
|
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_1__._)(this, "dbPromise", void 0);
|
|
13606
13649
|
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_1__._)(this, "DB_VERSION", void 0);
|
|
13607
13650
|
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_1__._)(this, "storeName", void 0);
|
|
@@ -13654,8 +13697,7 @@ function clearUseIndexedDBCache() {
|
|
|
13654
13697
|
|
|
13655
13698
|
"use strict";
|
|
13656
13699
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
13657
|
-
/* harmony export */ LocalStorageProvider: function() { return /* binding */ LocalStorageProvider; }
|
|
13658
|
-
/* harmony export */ canUsePersistentStorage: function() { return /* binding */ canUsePersistentStorage; }
|
|
13700
|
+
/* harmony export */ LocalStorageProvider: function() { return /* binding */ LocalStorageProvider; }
|
|
13659
13701
|
/* harmony export */ });
|
|
13660
13702
|
/* harmony import */ var _swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(25045);
|
|
13661
13703
|
/*!
|
|
@@ -13729,13 +13771,17 @@ function clearUseIndexedDBCache() {
|
|
|
13729
13771
|
return this;
|
|
13730
13772
|
}
|
|
13731
13773
|
constructor(rootKey, strategy = 'localStorage'){
|
|
13732
|
-
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "rootKey", void 0);
|
|
13774
|
+
;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "rootKey", void 0);
|
|
13733
13775
|
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "strategy", void 0);
|
|
13734
13776
|
this.rootKey = rootKey;
|
|
13735
13777
|
this.strategy = strategy;
|
|
13736
13778
|
}
|
|
13737
13779
|
}
|
|
13738
13780
|
|
|
13781
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
13782
|
+
/* harmony export */ "canUsePersistentStorage", 0, /* binding */ canUsePersistentStorage
|
|
13783
|
+
/* harmony export */ ]);
|
|
13784
|
+
|
|
13739
13785
|
|
|
13740
13786
|
/***/ }),
|
|
13741
13787
|
|
|
@@ -13774,7 +13820,7 @@ class MemoryStorageProvider {
|
|
|
13774
13820
|
return this;
|
|
13775
13821
|
}
|
|
13776
13822
|
constructor(){
|
|
13777
|
-
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "data", new Map());
|
|
13823
|
+
;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "data", new Map());
|
|
13778
13824
|
}
|
|
13779
13825
|
}
|
|
13780
13826
|
|
|
@@ -13791,7 +13837,7 @@ class MemoryStorageProvider {
|
|
|
13791
13837
|
/* harmony export */ LocalStorageProvider: function() { return /* reexport safe */ _engines_local_storage_provider__WEBPACK_IMPORTED_MODULE_2__.LocalStorageProvider; },
|
|
13792
13838
|
/* harmony export */ MemoryStorageProvider: function() { return /* reexport safe */ _engines_memory_storage_provider__WEBPACK_IMPORTED_MODULE_3__.MemoryStorageProvider; },
|
|
13793
13839
|
/* harmony export */ Storage: function() { return /* reexport safe */ _storage__WEBPACK_IMPORTED_MODULE_4__.Storage; },
|
|
13794
|
-
/* harmony export */ StorageKey: function() { return /* reexport safe */
|
|
13840
|
+
/* harmony export */ StorageKey: function() { return /* reexport safe */ (/* inlined export .StorageKey */"Jodit_"); },
|
|
13795
13841
|
/* harmony export */ canUseIndexedDB: function() { return /* reexport safe */ _engines_indexed_db_provider__WEBPACK_IMPORTED_MODULE_1__.canUseIndexedDB; },
|
|
13796
13842
|
/* harmony export */ canUsePersistentStorage: function() { return /* reexport safe */ _engines_local_storage_provider__WEBPACK_IMPORTED_MODULE_2__.canUsePersistentStorage; },
|
|
13797
13843
|
/* harmony export */ clearUseIndexedDBCache: function() { return /* reexport safe */ _engines_indexed_db_provider__WEBPACK_IMPORTED_MODULE_1__.clearUseIndexedDBCache; }
|
|
@@ -13821,8 +13867,7 @@ class MemoryStorageProvider {
|
|
|
13821
13867
|
|
|
13822
13868
|
"use strict";
|
|
13823
13869
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
13824
|
-
/* harmony export */ Storage: function() { return /* binding */ Storage; }
|
|
13825
|
-
/* harmony export */ StorageKey: function() { return /* binding */ StorageKey; }
|
|
13870
|
+
/* harmony export */ Storage: function() { return /* binding */ Storage; }
|
|
13826
13871
|
/* harmony export */ });
|
|
13827
13872
|
/* harmony import */ var _swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(25045);
|
|
13828
13873
|
/* harmony import */ var jodit_core_helpers_string_camel_case__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(57821);
|
|
@@ -13877,7 +13922,7 @@ class Storage {
|
|
|
13877
13922
|
return new Storage(provider, suffix);
|
|
13878
13923
|
}
|
|
13879
13924
|
constructor(provider, suffix){
|
|
13880
|
-
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "provider", void 0);
|
|
13925
|
+
;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "provider", void 0);
|
|
13881
13926
|
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "prefix", void 0);
|
|
13882
13927
|
this.provider = provider;
|
|
13883
13928
|
this.prefix = StorageKey;
|
|
@@ -14055,8 +14100,7 @@ class Mods {
|
|
|
14055
14100
|
"use strict";
|
|
14056
14101
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
14057
14102
|
/* harmony export */ Button: function() { return /* binding */ Button; },
|
|
14058
|
-
/* harmony export */ UIButton: function() { return /* binding */ UIButton; }
|
|
14059
|
-
/* harmony export */ UIButtonState: function() { return /* binding */ UIButtonState; }
|
|
14103
|
+
/* harmony export */ UIButton: function() { return /* binding */ UIButton; }
|
|
14060
14104
|
/* harmony export */ });
|
|
14061
14105
|
/* harmony import */ var _swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(25045);
|
|
14062
14106
|
/* harmony import */ var _swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(31635);
|
|
@@ -14139,10 +14183,10 @@ class UIButton extends jodit_core_ui_element__WEBPACK_IMPORTED_MODULE_11__.UIEle
|
|
|
14139
14183
|
this.setMod('size', this.state.size);
|
|
14140
14184
|
}
|
|
14141
14185
|
onChangeType() {
|
|
14142
|
-
(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_10__.attr)(this.container, 'type', this.state.type);
|
|
14186
|
+
;(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_10__.attr)(this.container, 'type', this.state.type);
|
|
14143
14187
|
}
|
|
14144
14188
|
onChangeRole() {
|
|
14145
|
-
(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_10__.attr)(this.container, 'role', this.state.role);
|
|
14189
|
+
;(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_10__.attr)(this.container, 'role', this.state.role);
|
|
14146
14190
|
}
|
|
14147
14191
|
/**
|
|
14148
14192
|
* Set size from a parent list
|
|
@@ -14165,10 +14209,10 @@ class UIButton extends jodit_core_ui_element__WEBPACK_IMPORTED_MODULE_11__.UIEle
|
|
|
14165
14209
|
this.setMod('text-icons', Boolean(this.state.text.trim().length));
|
|
14166
14210
|
}
|
|
14167
14211
|
onChangeDisabled() {
|
|
14168
|
-
(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_10__.attr)(this.container, 'disabled', this.state.disabled || null);
|
|
14212
|
+
;(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_10__.attr)(this.container, 'disabled', this.state.disabled || null);
|
|
14169
14213
|
}
|
|
14170
14214
|
onChangeActivated() {
|
|
14171
|
-
(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_10__.attr)(this.container, 'aria-pressed', this.state.activated);
|
|
14215
|
+
;(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_10__.attr)(this.container, 'aria-pressed', this.state.activated);
|
|
14172
14216
|
}
|
|
14173
14217
|
onChangeName() {
|
|
14174
14218
|
this.container.classList.add(`${this.componentName}_${this.clearName(this.state.name)}`);
|
|
@@ -14181,7 +14225,7 @@ class UIButton extends jodit_core_ui_element__WEBPACK_IMPORTED_MODULE_11__.UIEle
|
|
|
14181
14225
|
if (this.get('j.o.useNativeTooltip')) {
|
|
14182
14226
|
(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_10__.attr)(this.container, 'title', i8nTooltip);
|
|
14183
14227
|
}
|
|
14184
|
-
(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_10__.attr)(this.container, 'aria-label', i8nTooltip);
|
|
14228
|
+
;(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_10__.attr)(this.container, 'aria-label', i8nTooltip);
|
|
14185
14229
|
this.updateAriaLabel();
|
|
14186
14230
|
}
|
|
14187
14231
|
updateAriaLabel() {
|
|
@@ -14191,7 +14235,7 @@ class UIButton extends jodit_core_ui_element__WEBPACK_IMPORTED_MODULE_11__.UIEle
|
|
|
14191
14235
|
(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_10__.attr)(this.button, 'aria-label', !hasText ? i8nTooltip : null);
|
|
14192
14236
|
}
|
|
14193
14237
|
onChangeTabIndex() {
|
|
14194
|
-
(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_10__.attr)(this.container, 'tabindex', this.state.tabIndex);
|
|
14238
|
+
;(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_10__.attr)(this.container, 'tabindex', this.state.tabIndex);
|
|
14195
14239
|
}
|
|
14196
14240
|
onChangeIcon() {
|
|
14197
14241
|
const textIcons = this.get('j.o.textIcons');
|
|
@@ -14264,7 +14308,7 @@ class UIButton extends jodit_core_ui_element__WEBPACK_IMPORTED_MODULE_11__.UIEle
|
|
|
14264
14308
|
}
|
|
14265
14309
|
}
|
|
14266
14310
|
}
|
|
14267
|
-
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
14311
|
+
;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
14268
14312
|
jodit_core_decorators_cache_cache__WEBPACK_IMPORTED_MODULE_3__.cache
|
|
14269
14313
|
], UIButton.prototype, "text", null);
|
|
14270
14314
|
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
@@ -14356,6 +14400,10 @@ function Button(jodit, stateOrText, text, variant) {
|
|
|
14356
14400
|
return button;
|
|
14357
14401
|
}
|
|
14358
14402
|
|
|
14403
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
14404
|
+
/* harmony export */ "UIButtonState", 0, /* binding */ UIButtonState
|
|
14405
|
+
/* harmony export */ ]);
|
|
14406
|
+
|
|
14359
14407
|
|
|
14360
14408
|
/***/ }),
|
|
14361
14409
|
|
|
@@ -14669,7 +14717,7 @@ class UITooltip extends jodit_core_ui_element__WEBPACK_IMPORTED_MODULE_9__.UIEle
|
|
|
14669
14717
|
}
|
|
14670
14718
|
}
|
|
14671
14719
|
}
|
|
14672
|
-
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
14720
|
+
;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
14673
14721
|
jodit_core_decorators__WEBPACK_IMPORTED_MODULE_3__.autobind
|
|
14674
14722
|
], UITooltip.prototype, "__onMouseLeave", null);
|
|
14675
14723
|
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
@@ -15054,7 +15102,7 @@ class UITextArea extends jodit_core_ui_form_inputs_input_input__WEBPACK_IMPORTED
|
|
|
15054
15102
|
}
|
|
15055
15103
|
}
|
|
15056
15104
|
}
|
|
15057
|
-
/** @override */ (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(UITextArea, "defaultState", (0,_swc_helpers_object_spread_props__WEBPACK_IMPORTED_MODULE_2__._)((0,_swc_helpers_object_spread__WEBPACK_IMPORTED_MODULE_1__._)({}, jodit_core_ui_form_inputs_input_input__WEBPACK_IMPORTED_MODULE_7__.UIInput.defaultState), {
|
|
15105
|
+
/** @override */ ;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(UITextArea, "defaultState", (0,_swc_helpers_object_spread_props__WEBPACK_IMPORTED_MODULE_2__._)((0,_swc_helpers_object_spread__WEBPACK_IMPORTED_MODULE_1__._)({}, jodit_core_ui_form_inputs_input_input__WEBPACK_IMPORTED_MODULE_7__.UIInput.defaultState), {
|
|
15058
15106
|
size: 5,
|
|
15059
15107
|
resizable: true
|
|
15060
15108
|
}));
|
|
@@ -15135,7 +15183,7 @@ class UICheckbox extends jodit_core_ui_form_inputs_input_input__WEBPACK_IMPORTED
|
|
|
15135
15183
|
Object.assign(this.state, options);
|
|
15136
15184
|
}
|
|
15137
15185
|
}
|
|
15138
|
-
/** @override */ (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(UICheckbox, "defaultState", (0,_swc_helpers_object_spread_props__WEBPACK_IMPORTED_MODULE_2__._)((0,_swc_helpers_object_spread__WEBPACK_IMPORTED_MODULE_1__._)({}, jodit_core_ui_form_inputs_input_input__WEBPACK_IMPORTED_MODULE_6__.UIInput.defaultState), {
|
|
15186
|
+
/** @override */ ;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(UICheckbox, "defaultState", (0,_swc_helpers_object_spread_props__WEBPACK_IMPORTED_MODULE_2__._)((0,_swc_helpers_object_spread__WEBPACK_IMPORTED_MODULE_1__._)({}, jodit_core_ui_form_inputs_input_input__WEBPACK_IMPORTED_MODULE_6__.UIInput.defaultState), {
|
|
15139
15187
|
checked: false,
|
|
15140
15188
|
switch: false
|
|
15141
15189
|
}));
|
|
@@ -15456,7 +15504,7 @@ class UIInput extends jodit_core_ui_element__WEBPACK_IMPORTED_MODULE_7__.UIEleme
|
|
|
15456
15504
|
this.onChangeStateValue();
|
|
15457
15505
|
}
|
|
15458
15506
|
}
|
|
15459
|
-
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(UIInput, "defaultState", {
|
|
15507
|
+
;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(UIInput, "defaultState", {
|
|
15460
15508
|
className: '',
|
|
15461
15509
|
autocomplete: true,
|
|
15462
15510
|
name: '',
|
|
@@ -15575,7 +15623,7 @@ class UISelect extends jodit_core_ui_form_inputs_input_input__WEBPACK_IMPORTED_M
|
|
|
15575
15623
|
Object.assign(this.state, state);
|
|
15576
15624
|
}
|
|
15577
15625
|
}
|
|
15578
|
-
/** @override */ (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(UISelect, "defaultState", (0,_swc_helpers_object_spread_props__WEBPACK_IMPORTED_MODULE_2__._)((0,_swc_helpers_object_spread__WEBPACK_IMPORTED_MODULE_1__._)({}, jodit_core_ui_form_inputs_input_input__WEBPACK_IMPORTED_MODULE_6__.UIInput.defaultState), {
|
|
15626
|
+
/** @override */ ;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(UISelect, "defaultState", (0,_swc_helpers_object_spread_props__WEBPACK_IMPORTED_MODULE_2__._)((0,_swc_helpers_object_spread__WEBPACK_IMPORTED_MODULE_1__._)({}, jodit_core_ui_form_inputs_input_input__WEBPACK_IMPORTED_MODULE_6__.UIInput.defaultState), {
|
|
15579
15627
|
options: [],
|
|
15580
15628
|
size: 1,
|
|
15581
15629
|
multiple: false
|
|
@@ -15616,10 +15664,6 @@ UISelect = (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_3__.__decorate)(
|
|
|
15616
15664
|
|
|
15617
15665
|
"use strict";
|
|
15618
15666
|
__webpack_require__.r(__webpack_exports__);
|
|
15619
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
15620
|
-
/* harmony export */ required: function() { return /* binding */ required; },
|
|
15621
|
-
/* harmony export */ url: function() { return /* binding */ url; }
|
|
15622
|
-
/* harmony export */ });
|
|
15623
15667
|
/* harmony import */ var jodit_core_helpers_checker_is_url__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(91764);
|
|
15624
15668
|
/* harmony import */ var jodit_core_helpers_string_trim__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(4040);
|
|
15625
15669
|
/*!
|
|
@@ -15649,6 +15693,11 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
15649
15693
|
return true;
|
|
15650
15694
|
};
|
|
15651
15695
|
|
|
15696
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
15697
|
+
/* harmony export */ "required", 0, /* binding */ required,
|
|
15698
|
+
/* harmony export */ "url", 0, /* binding */ url
|
|
15699
|
+
/* harmony export */ ]);
|
|
15700
|
+
|
|
15652
15701
|
|
|
15653
15702
|
/***/ }),
|
|
15654
15703
|
|
|
@@ -15656,9 +15705,6 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
15656
15705
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
15657
15706
|
|
|
15658
15707
|
"use strict";
|
|
15659
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
15660
|
-
/* harmony export */ required: function() { return /* binding */ required; }
|
|
15661
|
-
/* harmony export */ });
|
|
15662
15708
|
/* harmony import */ var jodit_core_helpers_string_trim__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(4040);
|
|
15663
15709
|
/*!
|
|
15664
15710
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -15677,6 +15723,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
15677
15723
|
return true;
|
|
15678
15724
|
};
|
|
15679
15725
|
|
|
15726
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
15727
|
+
/* harmony export */ "required", 0, /* binding */ required
|
|
15728
|
+
/* harmony export */ ]);
|
|
15729
|
+
|
|
15680
15730
|
|
|
15681
15731
|
/***/ }),
|
|
15682
15732
|
|
|
@@ -15828,7 +15878,7 @@ class UIGroup extends jodit_core_ui_element__WEBPACK_IMPORTED_MODULE_6__.UIEleme
|
|
|
15828
15878
|
}
|
|
15829
15879
|
}
|
|
15830
15880
|
}
|
|
15831
|
-
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
15881
|
+
;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
15832
15882
|
(0,jodit_core_decorators__WEBPACK_IMPORTED_MODULE_3__.watch)('buttonSize')
|
|
15833
15883
|
], UIGroup.prototype, "update", null);
|
|
15834
15884
|
UIGroup = (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
@@ -16031,7 +16081,7 @@ class UIList extends jodit_core_ui_group_group__WEBPACK_IMPORTED_MODULE_8__.UIGr
|
|
|
16031
16081
|
super(...args), (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "mode", 'horizontal'), (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "removeButtons", []);
|
|
16032
16082
|
}
|
|
16033
16083
|
}
|
|
16034
|
-
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
16084
|
+
;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
16035
16085
|
(0,jodit_core_decorators_watch_watch__WEBPACK_IMPORTED_MODULE_5__.watch)('mode'),
|
|
16036
16086
|
(0,jodit_core_decorators_hook_hook__WEBPACK_IMPORTED_MODULE_4__.hook)('ready')
|
|
16037
16087
|
], UIList.prototype, "__onChangeMode", null);
|
|
@@ -16109,8 +16159,7 @@ UISpacer = (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_0__.__decorate)(
|
|
|
16109
16159
|
|
|
16110
16160
|
"use strict";
|
|
16111
16161
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
16112
|
-
/* harmony export */ flatButtonsSet: function() { return /* binding */ flatButtonsSet; }
|
|
16113
|
-
/* harmony export */ isButtonGroup: function() { return /* binding */ isButtonGroup; }
|
|
16162
|
+
/* harmony export */ flatButtonsSet: function() { return /* binding */ flatButtonsSet; }
|
|
16114
16163
|
/* harmony export */ });
|
|
16115
16164
|
/* harmony import */ var jodit_core_helpers_checker_is_array__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(17312);
|
|
16116
16165
|
/*!
|
|
@@ -16143,6 +16192,10 @@ UISpacer = (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_0__.__decorate)(
|
|
|
16143
16192
|
}, []));
|
|
16144
16193
|
}
|
|
16145
16194
|
|
|
16195
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
16196
|
+
/* harmony export */ "isButtonGroup", 0, /* binding */ isButtonGroup
|
|
16197
|
+
/* harmony export */ ]);
|
|
16198
|
+
|
|
16146
16199
|
|
|
16147
16200
|
/***/ }),
|
|
16148
16201
|
|
|
@@ -16353,7 +16406,7 @@ class Icon {
|
|
|
16353
16406
|
return jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_2__.Dom.isElement(node) ? node : jodit.c.span('jodit-icon_text', node);
|
|
16354
16407
|
}
|
|
16355
16408
|
}
|
|
16356
|
-
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(Icon, "icons", {});
|
|
16409
|
+
;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(Icon, "icons", {});
|
|
16357
16410
|
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(Icon, "__cache", new Map());
|
|
16358
16411
|
|
|
16359
16412
|
|
|
@@ -16523,7 +16576,7 @@ class Popup extends jodit_core_ui_group_group__WEBPACK_IMPORTED_MODULE_12__.UIGr
|
|
|
16523
16576
|
/**
|
|
16524
16577
|
* Open popup near with some bound
|
|
16525
16578
|
*/ open(getBound, keepPosition = false, parentContainer) {
|
|
16526
|
-
(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_8__.markOwner)(this.jodit, this.container);
|
|
16579
|
+
;(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_8__.markOwner)(this.jodit, this.container);
|
|
16527
16580
|
this.container.classList.add(`jodit_theme_${this.jodit.o.theme}`);
|
|
16528
16581
|
this.__calculateZIndex();
|
|
16529
16582
|
this.isOpened = true;
|
|
@@ -16739,7 +16792,7 @@ class Popup extends jodit_core_ui_group_group__WEBPACK_IMPORTED_MODULE_12__.UIGr
|
|
|
16739
16792
|
/**
|
|
16740
16793
|
* Set ZIndex
|
|
16741
16794
|
*/ setZIndex(index) {
|
|
16742
|
-
(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_8__.css)(this.container, 'zIndex', index.toString());
|
|
16795
|
+
;(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_8__.css)(this.container, 'zIndex', index.toString());
|
|
16743
16796
|
}
|
|
16744
16797
|
render() {
|
|
16745
16798
|
return `<div>
|
|
@@ -16760,7 +16813,7 @@ class Popup extends jodit_core_ui_group_group__WEBPACK_IMPORTED_MODULE_12__.UIGr
|
|
|
16760
16813
|
(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_8__.attr)(this.container, 'role', 'popup');
|
|
16761
16814
|
}
|
|
16762
16815
|
}
|
|
16763
|
-
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_3__.__decorate)([
|
|
16816
|
+
;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_3__.__decorate)([
|
|
16764
16817
|
jodit_core_decorators__WEBPACK_IMPORTED_MODULE_5__.autobind
|
|
16765
16818
|
], Popup.prototype, "updatePosition", null);
|
|
16766
16819
|
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_3__.__decorate)([
|
|
@@ -16826,7 +16879,7 @@ class ProgressBar extends jodit_core_ui_element__WEBPACK_IMPORTED_MODULE_5__.UIE
|
|
|
16826
16879
|
return this;
|
|
16827
16880
|
}
|
|
16828
16881
|
progress(percentage) {
|
|
16829
|
-
(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_4__.css)(this.container, 'width', percentage.toFixed(2) + '%');
|
|
16882
|
+
;(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_4__.css)(this.container, 'width', percentage.toFixed(2) + '%');
|
|
16830
16883
|
return this;
|
|
16831
16884
|
}
|
|
16832
16885
|
showFileUploadAnimation(from, to) {
|
|
@@ -17037,7 +17090,7 @@ class ViewWithToolbar extends jodit_core_view_view__WEBPACK_IMPORTED_MODULE_11__
|
|
|
17037
17090
|
this.e.on('beforeToolbarBuild', this.beforeToolbarBuild);
|
|
17038
17091
|
}
|
|
17039
17092
|
}
|
|
17040
|
-
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
17093
|
+
;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
17041
17094
|
(0,jodit_core_decorators_watch_watch__WEBPACK_IMPORTED_MODULE_4__.watch)(':rebuildToolbar')
|
|
17042
17095
|
], ViewWithToolbar.prototype, "buildToolbar", null);
|
|
17043
17096
|
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
@@ -17313,7 +17366,7 @@ class View extends jodit_core_component_component__WEBPACK_IMPORTED_MODULE_3__.C
|
|
|
17313
17366
|
}
|
|
17314
17367
|
}
|
|
17315
17368
|
// from webpack.config.ts
|
|
17316
|
-
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(View, "ES", jodit_core_constants__WEBPACK_IMPORTED_MODULE_5__.ES);
|
|
17369
|
+
;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(View, "ES", jodit_core_constants__WEBPACK_IMPORTED_MODULE_5__.ES);
|
|
17317
17370
|
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(View, "version", jodit_core_constants__WEBPACK_IMPORTED_MODULE_5__.APP_VERSION);
|
|
17318
17371
|
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(View, "esNext", jodit_core_constants__WEBPACK_IMPORTED_MODULE_5__.IS_ES_NEXT); // from webpack.config.ts
|
|
17319
17372
|
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(View, "esModern", jodit_core_constants__WEBPACK_IMPORTED_MODULE_5__.IS_ES_MODERN); // from webpack.config.ts
|
|
@@ -17527,7 +17580,7 @@ class Jodit extends jodit_modules__WEBPACK_IMPORTED_MODULE_11__.ViewWithToolbar
|
|
|
17527
17580
|
* @see {@link ConfigMerge} for the merge algorithm
|
|
17528
17581
|
* @see {@link ConfigProto} for per-instance prototype-based merge used at editor creation time
|
|
17529
17582
|
*/ static configure(options) {
|
|
17530
|
-
(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_6__.ConfigMerge)(Jodit.defaultOptions, options);
|
|
17583
|
+
;(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_6__.ConfigMerge)(Jodit.defaultOptions, options);
|
|
17531
17584
|
}
|
|
17532
17585
|
get createInside() {
|
|
17533
17586
|
return new jodit_modules__WEBPACK_IMPORTED_MODULE_11__.Create(()=>this.ed, this.o.createAttributes);
|
|
@@ -18230,7 +18283,7 @@ class Jodit extends jodit_modules__WEBPACK_IMPORTED_MODULE_11__.ViewWithToolbar
|
|
|
18230
18283
|
if (display) {
|
|
18231
18284
|
(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_6__.attr)(element, __defaultStyleDisplayKey, display);
|
|
18232
18285
|
}
|
|
18233
|
-
(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_6__.css)(element, 'display', 'none');
|
|
18286
|
+
;(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_6__.css)(element, 'display', 'none');
|
|
18234
18287
|
}
|
|
18235
18288
|
const SLOT = 'workplace-slot';
|
|
18236
18289
|
// A slot that always stays ABOVE the toolbar (presence bars, banners…).
|
|
@@ -18591,7 +18644,7 @@ class Jodit extends jodit_modules__WEBPACK_IMPORTED_MODULE_11__.ViewWithToolbar
|
|
|
18591
18644
|
if (this.e) {
|
|
18592
18645
|
this.e.fire('afterInit', this);
|
|
18593
18646
|
}
|
|
18594
|
-
(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_6__.callPromise)(this.afterInitHook());
|
|
18647
|
+
;(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_6__.callPromise)(this.afterInitHook());
|
|
18595
18648
|
this.setStatus(jodit_modules__WEBPACK_IMPORTED_MODULE_11__.STATUSES.ready);
|
|
18596
18649
|
this.e.fire('afterConstructor', this);
|
|
18597
18650
|
};
|
|
@@ -18599,7 +18652,7 @@ class Jodit extends jodit_modules__WEBPACK_IMPORTED_MODULE_11__.ViewWithToolbar
|
|
|
18599
18652
|
});
|
|
18600
18653
|
}
|
|
18601
18654
|
}
|
|
18602
|
-
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(Jodit, "fatMode", jodit_core_constants__WEBPACK_IMPORTED_MODULE_3__.FAT_MODE);
|
|
18655
|
+
;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(Jodit, "fatMode", jodit_core_constants__WEBPACK_IMPORTED_MODULE_3__.FAT_MODE);
|
|
18603
18656
|
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(Jodit, "plugins", jodit_core_global__WEBPACK_IMPORTED_MODULE_5__.pluginSystem);
|
|
18604
18657
|
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(Jodit, "modules", jodit_core_global__WEBPACK_IMPORTED_MODULE_5__.modules);
|
|
18605
18658
|
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(Jodit, "ns", jodit_core_global__WEBPACK_IMPORTED_MODULE_5__.modules);
|
|
@@ -19203,7 +19256,7 @@ class Dialog extends jodit_core_view_view_with_toolbar__WEBPACK_IMPORTED_MODULE_
|
|
|
19203
19256
|
if (h == null) {
|
|
19204
19257
|
h = this.dialog.offsetHeight;
|
|
19205
19258
|
}
|
|
19206
|
-
(0,jodit_core_helpers_utils__WEBPACK_IMPORTED_MODULE_11__.css)(this.dialog, {
|
|
19259
|
+
;(0,jodit_core_helpers_utils__WEBPACK_IMPORTED_MODULE_11__.css)(this.dialog, {
|
|
19207
19260
|
width: w,
|
|
19208
19261
|
height: h
|
|
19209
19262
|
});
|
|
@@ -19237,7 +19290,7 @@ class Dialog extends jodit_core_view_view_with_toolbar__WEBPACK_IMPORTED_MODULE_
|
|
|
19237
19290
|
this.moved = Math.abs(x - left) > 100 || Math.abs(y - top) > 100;
|
|
19238
19291
|
}
|
|
19239
19292
|
// strings on purpose: `css()` would truncate fractional pixels
|
|
19240
|
-
(0,jodit_core_helpers_utils__WEBPACK_IMPORTED_MODULE_11__.css)(this.dialog, {
|
|
19293
|
+
;(0,jodit_core_helpers_utils__WEBPACK_IMPORTED_MODULE_11__.css)(this.dialog, {
|
|
19241
19294
|
left: (x || left) + 'px',
|
|
19242
19295
|
top: (y || top) + 'px'
|
|
19243
19296
|
});
|
|
@@ -19525,7 +19578,7 @@ class Dialog extends jodit_core_view_view_with_toolbar__WEBPACK_IMPORTED_MODULE_
|
|
|
19525
19578
|
if (this.o.zIndex) {
|
|
19526
19579
|
(0,jodit_core_helpers_utils__WEBPACK_IMPORTED_MODULE_11__.css)(this.container, 'zIndex', this.o.zIndex.toString());
|
|
19527
19580
|
}
|
|
19528
|
-
(0,jodit_core_helpers_utils__WEBPACK_IMPORTED_MODULE_11__.attr)(self1.container, 'role', 'dialog');
|
|
19581
|
+
;(0,jodit_core_helpers_utils__WEBPACK_IMPORTED_MODULE_11__.attr)(self1.container, 'role', 'dialog');
|
|
19529
19582
|
Object.defineProperty(self1.container, 'component', {
|
|
19530
19583
|
value: this
|
|
19531
19584
|
});
|
|
@@ -19569,7 +19622,7 @@ class Dialog extends jodit_core_view_view_with_toolbar__WEBPACK_IMPORTED_MODULE_
|
|
|
19569
19622
|
/**
|
|
19570
19623
|
* Registry of the currently opened dialogs. Replaces a DOM scan of the
|
|
19571
19624
|
* whole `destination` (usually `document.body`) for every z-index update.
|
|
19572
|
-
*/ (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(Dialog, "__opened", new Set());
|
|
19625
|
+
*/ ;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(Dialog, "__opened", new Set());
|
|
19573
19626
|
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(Dialog, "defaultOptions", (0,_swc_helpers_object_spread_props__WEBPACK_IMPORTED_MODULE_2__._)((0,_swc_helpers_object_spread__WEBPACK_IMPORTED_MODULE_1__._)({}, jodit_core_view_view__WEBPACK_IMPORTED_MODULE_14__.View.defaultOptions), {
|
|
19574
19627
|
closeOnClickOverlay: false,
|
|
19575
19628
|
closeOnEsc: true
|
|
@@ -19892,9 +19945,6 @@ const CLASS_PREVIEW = 'jodit-file-browser-preview', preview_tpl_next = (next = '
|
|
|
19892
19945
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
19893
19946
|
|
|
19894
19947
|
"use strict";
|
|
19895
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
19896
|
-
/* harmony export */ elementsMap: function() { return /* binding */ elementsMap; }
|
|
19897
|
-
/* harmony export */ });
|
|
19898
19948
|
/*!
|
|
19899
19949
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
19900
19950
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
@@ -19914,6 +19964,10 @@ const CLASS_PREVIEW = 'jodit-file-browser-preview', preview_tpl_next = (next = '
|
|
|
19914
19964
|
return result;
|
|
19915
19965
|
};
|
|
19916
19966
|
|
|
19967
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
19968
|
+
/* harmony export */ "elementsMap", 0, /* binding */ elementsMap
|
|
19969
|
+
/* harmony export */ ]);
|
|
19970
|
+
|
|
19917
19971
|
|
|
19918
19972
|
/***/ }),
|
|
19919
19973
|
|
|
@@ -19976,7 +20030,7 @@ class FileBrowserItem {
|
|
|
19976
20030
|
return this.data;
|
|
19977
20031
|
}
|
|
19978
20032
|
constructor(data){
|
|
19979
|
-
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "data", void 0);
|
|
20033
|
+
;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "data", void 0);
|
|
19980
20034
|
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "source", void 0);
|
|
19981
20035
|
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "sourceName", void 0);
|
|
19982
20036
|
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "type", void 0);
|
|
@@ -19995,10 +20049,6 @@ class FileBrowserItem {
|
|
|
19995
20049
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
19996
20050
|
|
|
19997
20051
|
"use strict";
|
|
19998
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
19999
|
-
/* harmony export */ elementToItem: function() { return /* binding */ elementToItem; },
|
|
20000
|
-
/* harmony export */ getItem: function() { return /* binding */ getItem; }
|
|
20001
|
-
/* harmony export */ });
|
|
20002
20052
|
/* harmony import */ var jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(23211);
|
|
20003
20053
|
/*!
|
|
20004
20054
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -20017,6 +20067,11 @@ class FileBrowserItem {
|
|
|
20017
20067
|
return item;
|
|
20018
20068
|
};
|
|
20019
20069
|
|
|
20070
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
20071
|
+
/* harmony export */ "elementToItem", 0, /* binding */ elementToItem,
|
|
20072
|
+
/* harmony export */ "getItem", 0, /* binding */ getItem
|
|
20073
|
+
/* harmony export */ ]);
|
|
20074
|
+
|
|
20020
20075
|
|
|
20021
20076
|
/***/ }),
|
|
20022
20077
|
|
|
@@ -20385,7 +20440,6 @@ jodit_config__WEBPACK_IMPORTED_MODULE_7__.Config.prototype.controls.filebrowser
|
|
|
20385
20440
|
|
|
20386
20441
|
"use strict";
|
|
20387
20442
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
20388
|
-
/* harmony export */ DEFAULT_SOURCE_NAME: function() { return /* binding */ DEFAULT_SOURCE_NAME; },
|
|
20389
20443
|
/* harmony export */ "default": function() { return /* binding */ DataProvider; }
|
|
20390
20444
|
/* harmony export */ });
|
|
20391
20445
|
/* harmony import */ var _swc_helpers_async_to_generator__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(49376);
|
|
@@ -20601,7 +20655,7 @@ class DataProvider {
|
|
|
20601
20655
|
/**
|
|
20602
20656
|
* Get path by url. You can use this method in another modules
|
|
20603
20657
|
*/ getPathByUrl(url) {
|
|
20604
|
-
(0,jodit_core_helpers_utils_set__WEBPACK_IMPORTED_MODULE_11__.set)('options.getLocalFileByUrl.data.url', url, this);
|
|
20658
|
+
;(0,jodit_core_helpers_utils_set__WEBPACK_IMPORTED_MODULE_11__.set)('options.getLocalFileByUrl.data.url', url, this);
|
|
20605
20659
|
return this.get('getLocalFileByUrl').then((resp)=>{
|
|
20606
20660
|
if (this.isSuccess(resp)) {
|
|
20607
20661
|
return resp.data;
|
|
@@ -20767,7 +20821,7 @@ class DataProvider {
|
|
|
20767
20821
|
this.__ajaxInstances.clear();
|
|
20768
20822
|
}
|
|
20769
20823
|
constructor(parent, options){
|
|
20770
|
-
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_1__._)(this, "parent", void 0);
|
|
20824
|
+
;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_1__._)(this, "parent", void 0);
|
|
20771
20825
|
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_1__._)(this, "options", void 0);
|
|
20772
20826
|
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_1__._)(this, "__currentPermissions", void 0);
|
|
20773
20827
|
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_1__._)(this, "__ajaxInstances", void 0);
|
|
@@ -20780,7 +20834,7 @@ class DataProvider {
|
|
|
20780
20834
|
}
|
|
20781
20835
|
}
|
|
20782
20836
|
|
|
20783
|
-
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_4__.__decorate)([
|
|
20837
|
+
;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_4__.__decorate)([
|
|
20784
20838
|
jodit_core_decorators_autobind_autobind__WEBPACK_IMPORTED_MODULE_6__.autobind
|
|
20785
20839
|
], DataProvider.prototype, "onProgress", null);
|
|
20786
20840
|
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_4__.__decorate)([
|
|
@@ -20835,6 +20889,10 @@ class DataProvider {
|
|
|
20835
20889
|
jodit_core_decorators_autobind_autobind__WEBPACK_IMPORTED_MODULE_6__.autobind
|
|
20836
20890
|
], DataProvider.prototype, "destruct", null);
|
|
20837
20891
|
|
|
20892
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
20893
|
+
/* harmony export */ "DEFAULT_SOURCE_NAME", 0, /* binding */ DEFAULT_SOURCE_NAME
|
|
20894
|
+
/* harmony export */ ]);
|
|
20895
|
+
|
|
20838
20896
|
|
|
20839
20897
|
/***/ }),
|
|
20840
20898
|
|
|
@@ -21304,7 +21362,7 @@ class FileBrowser extends jodit_core_view_view_with_toolbar__WEBPACK_IMPORTED_MO
|
|
|
21304
21362
|
self.setStatus(jodit_core_component__WEBPACK_IMPORTED_MODULE_2__.STATUSES.ready);
|
|
21305
21363
|
}
|
|
21306
21364
|
}
|
|
21307
|
-
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
21365
|
+
;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
21308
21366
|
jodit_core_decorators__WEBPACK_IMPORTED_MODULE_4__.cache
|
|
21309
21367
|
], FileBrowser.prototype, "dataProvider", null);
|
|
21310
21368
|
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
@@ -21574,7 +21632,7 @@ function isEqualButtonList(prevButtons, buttons) {
|
|
|
21574
21632
|
}, 'type name', name);
|
|
21575
21633
|
}
|
|
21576
21634
|
}).on('update.filebrowser', ()=>{
|
|
21577
|
-
(0,jodit_modules_file_browser_fetch_load_tree__WEBPACK_IMPORTED_MODULE_5__.loadTree)(this).then(this.status, this.status);
|
|
21635
|
+
;(0,jodit_modules_file_browser_fetch_load_tree__WEBPACK_IMPORTED_MODULE_5__.loadTree)(this).then(this.status, this.status);
|
|
21578
21636
|
});
|
|
21579
21637
|
}
|
|
21580
21638
|
|
|
@@ -21630,7 +21688,7 @@ const DEFAULT_SOURCE_NAME = 'default';
|
|
|
21630
21688
|
if (this.o.saveStateInStorage && this.o.saveStateInStorage.storeLastOpenedFolder) {
|
|
21631
21689
|
this.storage.set('currentPath', this.state.currentPath).set('currentSource', this.state.currentSource);
|
|
21632
21690
|
}
|
|
21633
|
-
(0,jodit_modules_file_browser_fetch_load_tree__WEBPACK_IMPORTED_MODULE_4__.loadTree)(this).catch(this.status);
|
|
21691
|
+
;(0,jodit_modules_file_browser_fetch_load_tree__WEBPACK_IMPORTED_MODULE_4__.loadTree)(this).catch(this.status);
|
|
21634
21692
|
}, this.defaultTimeout)).on('beforeChange.activeElements', ()=>{
|
|
21635
21693
|
state.activeElements.forEach((item)=>{
|
|
21636
21694
|
const key = item.uniqueHashKey, { elm } = elmMap[key];
|
|
@@ -21823,7 +21881,7 @@ class Command {
|
|
|
21823
21881
|
this.history.snapshot.restore(this.newValue);
|
|
21824
21882
|
}
|
|
21825
21883
|
constructor(oldValue, newValue, history, tick){
|
|
21826
|
-
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "oldValue", void 0);
|
|
21884
|
+
;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "oldValue", void 0);
|
|
21827
21885
|
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "newValue", void 0);
|
|
21828
21886
|
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "history", void 0);
|
|
21829
21887
|
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "tick", void 0);
|
|
@@ -21996,7 +22054,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_4__.Config.prototype.history = {
|
|
|
21996
22054
|
}
|
|
21997
22055
|
}
|
|
21998
22056
|
}
|
|
21999
|
-
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
22057
|
+
;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
22000
22058
|
(0,jodit_core_decorators_debounce_debounce__WEBPACK_IMPORTED_MODULE_3__.debounce)()
|
|
22001
22059
|
], History.prototype, "onChange", null);
|
|
22002
22060
|
|
|
@@ -22285,7 +22343,7 @@ class Stack {
|
|
|
22285
22343
|
return this.stackPosition < this.commands.length - 1;
|
|
22286
22344
|
}
|
|
22287
22345
|
constructor(size){
|
|
22288
|
-
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "size", void 0);
|
|
22346
|
+
;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "size", void 0);
|
|
22289
22347
|
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "commands", void 0);
|
|
22290
22348
|
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "stackPosition", void 0);
|
|
22291
22349
|
this.size = size;
|
|
@@ -22453,7 +22511,7 @@ class ImageEditor extends jodit_core_component__WEBPACK_IMPORTED_MODULE_2__.View
|
|
|
22453
22511
|
} else {
|
|
22454
22512
|
url += '?_tst=' + timestamp;
|
|
22455
22513
|
}
|
|
22456
|
-
(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_6__.attr)(this.image, 'src', url);
|
|
22514
|
+
;(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_6__.attr)(this.image, 'src', url);
|
|
22457
22515
|
this._dialog.open();
|
|
22458
22516
|
const { widthInput, heightInput } = (0,jodit_core_helpers_utils_selector__WEBPACK_IMPORTED_MODULE_8__.refs)(this.editor);
|
|
22459
22517
|
const onload = ()=>{
|
|
@@ -22585,7 +22643,7 @@ class ImageEditor extends jodit_core_component__WEBPACK_IMPORTED_MODULE_2__.View
|
|
|
22585
22643
|
if (self.top_y + self.new_h > self.cropImage.offsetHeight) {
|
|
22586
22644
|
self.new_h = self.cropImage.offsetHeight - self.top_y;
|
|
22587
22645
|
}
|
|
22588
|
-
(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_7__.css)(self.cropHandler, {
|
|
22646
|
+
;(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_7__.css)(self.cropHandler, {
|
|
22589
22647
|
width: self.new_w,
|
|
22590
22648
|
height: self.new_h
|
|
22591
22649
|
});
|
|
@@ -22593,11 +22651,11 @@ class ImageEditor extends jodit_core_component__WEBPACK_IMPORTED_MODULE_2__.View
|
|
|
22593
22651
|
if (self.top_x + self.diff_x + self.cropHandler.offsetWidth > self.cropImage.offsetWidth) {
|
|
22594
22652
|
self.diff_x = self.cropImage.offsetWidth - self.top_x - self.cropHandler.offsetWidth;
|
|
22595
22653
|
}
|
|
22596
|
-
(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_7__.css)(self.cropHandler, 'left', self.top_x + self.diff_x);
|
|
22654
|
+
;(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_7__.css)(self.cropHandler, 'left', self.top_x + self.diff_x);
|
|
22597
22655
|
if (self.top_y + self.diff_y + self.cropHandler.offsetHeight > self.cropImage.offsetHeight) {
|
|
22598
22656
|
self.diff_y = self.cropImage.offsetHeight - self.top_y - self.cropHandler.offsetHeight;
|
|
22599
22657
|
}
|
|
22600
|
-
(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_7__.css)(self.cropHandler, 'top', self.top_y + self.diff_y);
|
|
22658
|
+
;(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_7__.css)(self.cropHandler, 'top', self.top_y + self.diff_y);
|
|
22601
22659
|
}
|
|
22602
22660
|
this.j.e.fire(self.cropHandler, 'updatesize');
|
|
22603
22661
|
}
|
|
@@ -22638,7 +22696,7 @@ class ImageEditor extends jodit_core_component__WEBPACK_IMPORTED_MODULE_2__.View
|
|
|
22638
22696
|
wn = nw * (h / nh);
|
|
22639
22697
|
hn = h;
|
|
22640
22698
|
}
|
|
22641
|
-
(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_7__.css)(this.crop_box, {
|
|
22699
|
+
;(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_7__.css)(this.crop_box, {
|
|
22642
22700
|
width: wn,
|
|
22643
22701
|
height: hn
|
|
22644
22702
|
});
|
|
@@ -22655,7 +22713,7 @@ class ImageEditor extends jodit_core_component__WEBPACK_IMPORTED_MODULE_2__.View
|
|
|
22655
22713
|
} else {
|
|
22656
22714
|
this.new_h = ImageEditor.calcValueByPercent(h, this.o.cropDefaultHeight);
|
|
22657
22715
|
}
|
|
22658
|
-
(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_7__.css)(this.cropHandler, {
|
|
22716
|
+
;(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_7__.css)(this.cropHandler, {
|
|
22659
22717
|
backgroundImage: 'url(' + (0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_6__.attr)(this.cropImage, 'src') + ')',
|
|
22660
22718
|
width: this.new_w,
|
|
22661
22719
|
height: this.new_h,
|
|
@@ -22703,7 +22761,7 @@ class ImageEditor extends jodit_core_component__WEBPACK_IMPORTED_MODULE_2__.View
|
|
|
22703
22761
|
});
|
|
22704
22762
|
}
|
|
22705
22763
|
self.j.e.on(self.resizeHandler, 'updatesize', ()=>{
|
|
22706
|
-
(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_7__.css)(self.resizeHandler, {
|
|
22764
|
+
;(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_7__.css)(self.resizeHandler, {
|
|
22707
22765
|
top: 0,
|
|
22708
22766
|
left: 0,
|
|
22709
22767
|
width: self.image.offsetWidth || self.naturalWidth,
|
|
@@ -22733,7 +22791,7 @@ class ImageEditor extends jodit_core_component__WEBPACK_IMPORTED_MODULE_2__.View
|
|
|
22733
22791
|
new_width = new_height * self.ratio;
|
|
22734
22792
|
}
|
|
22735
22793
|
}
|
|
22736
|
-
(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_7__.css)(self.cropHandler, {
|
|
22794
|
+
;(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_7__.css)(self.cropHandler, {
|
|
22737
22795
|
width: new_width,
|
|
22738
22796
|
height: new_height,
|
|
22739
22797
|
left: new_x,
|
|
@@ -22827,7 +22885,7 @@ class ImageEditor extends jodit_core_component__WEBPACK_IMPORTED_MODULE_2__.View
|
|
|
22827
22885
|
this.setHandlers();
|
|
22828
22886
|
}
|
|
22829
22887
|
}
|
|
22830
|
-
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(ImageEditor, "calcValueByPercent", (value, percent)=>{
|
|
22888
|
+
;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(ImageEditor, "calcValueByPercent", (value, percent)=>{
|
|
22831
22889
|
const percentStr = percent.toString();
|
|
22832
22890
|
const valueNbr = parseFloat(value.toString());
|
|
22833
22891
|
let match;
|
|
@@ -22881,7 +22939,7 @@ ImageEditor = (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorat
|
|
|
22881
22939
|
}
|
|
22882
22940
|
return;
|
|
22883
22941
|
}
|
|
22884
|
-
(0,jodit_core_helpers_utils_utils__WEBPACK_IMPORTED_MODULE_9__.call)(box.action === 'resize' ? this.dataProvider.resize : this.dataProvider.crop, path, source, name, newname, box.box).then((result)=>{
|
|
22942
|
+
;(0,jodit_core_helpers_utils_utils__WEBPACK_IMPORTED_MODULE_9__.call)(box.action === 'resize' ? this.dataProvider.resize : this.dataProvider.crop, path, source, name, newname, box.box).then((result)=>{
|
|
22885
22943
|
if (result) {
|
|
22886
22944
|
success();
|
|
22887
22945
|
if (onSuccess) {
|
|
@@ -22904,9 +22962,6 @@ ImageEditor = (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorat
|
|
|
22904
22962
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
22905
22963
|
|
|
22906
22964
|
"use strict";
|
|
22907
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
22908
|
-
/* harmony export */ form: function() { return /* binding */ form; }
|
|
22909
|
-
/* harmony export */ });
|
|
22910
22965
|
/* harmony import */ var jodit_core_ui__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(4099);
|
|
22911
22966
|
/*!
|
|
22912
22967
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -22983,6 +23038,10 @@ const form = (editor, o)=>{
|
|
|
22983
23038
|
</form>`);
|
|
22984
23039
|
};
|
|
22985
23040
|
|
|
23041
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
23042
|
+
/* harmony export */ "form", 0, /* binding */ form
|
|
23043
|
+
/* harmony export */ ]);
|
|
23044
|
+
|
|
22986
23045
|
|
|
22987
23046
|
/***/ }),
|
|
22988
23047
|
|
|
@@ -24074,7 +24133,7 @@ class Table extends jodit_core_component__WEBPACK_IMPORTED_MODULE_2__.ViewCompon
|
|
|
24074
24133
|
super(...args), (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "selected", new Set());
|
|
24075
24134
|
}
|
|
24076
24135
|
}
|
|
24077
|
-
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(Table, "__selectedByTable", new WeakMap());
|
|
24136
|
+
;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(Table, "__selectedByTable", new WeakMap());
|
|
24078
24137
|
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
24079
24138
|
(0,jodit_core_decorators__WEBPACK_IMPORTED_MODULE_4__.debounce)()
|
|
24080
24139
|
], Table.prototype, "__recalculateStyles", null);
|
|
@@ -24215,7 +24274,7 @@ class ToolbarButton extends jodit_core_ui_button__WEBPACK_IMPORTED_MODULE_21__.U
|
|
|
24215
24274
|
return Boolean(tc && tc.shouldBeDisabled(this));
|
|
24216
24275
|
}
|
|
24217
24276
|
onChangeActivated() {
|
|
24218
|
-
(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_19__.attr)(this.button, 'aria-pressed', this.state.activated);
|
|
24277
|
+
;(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_19__.attr)(this.button, 'aria-pressed', this.state.activated);
|
|
24219
24278
|
super.onChangeActivated();
|
|
24220
24279
|
}
|
|
24221
24280
|
onChangeText() {
|
|
@@ -24227,7 +24286,7 @@ class ToolbarButton extends jodit_core_ui_button__WEBPACK_IMPORTED_MODULE_21__.U
|
|
|
24227
24286
|
this.setMod('text-icons', Boolean(this.text.innerText.trim().length));
|
|
24228
24287
|
}
|
|
24229
24288
|
onChangeTabIndex() {
|
|
24230
|
-
(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_19__.attr)(this.button, 'tabindex', this.state.tabIndex);
|
|
24289
|
+
;(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_19__.attr)(this.button, 'tabindex', this.state.tabIndex);
|
|
24231
24290
|
(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_19__.attr)(this.trigger, 'tabindex', this.state.tabIndex);
|
|
24232
24291
|
}
|
|
24233
24292
|
createContainer() {
|
|
@@ -24525,7 +24584,7 @@ class ToolbarButton extends jodit_core_ui_button__WEBPACK_IMPORTED_MODULE_21__.U
|
|
|
24525
24584
|
}
|
|
24526
24585
|
}
|
|
24527
24586
|
}
|
|
24528
|
-
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_3__.__decorate)([
|
|
24587
|
+
;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_3__.__decorate)([
|
|
24529
24588
|
jodit_core_decorators_cache_cache__WEBPACK_IMPORTED_MODULE_7__.cacheHTML
|
|
24530
24589
|
], ToolbarButton.prototype, "createContainer", null);
|
|
24531
24590
|
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_3__.__decorate)([
|
|
@@ -24802,7 +24861,7 @@ class ToolbarCollection extends jodit_core_ui_group_list__WEBPACK_IMPORTED_MODUL
|
|
|
24802
24861
|
/**
|
|
24803
24862
|
* Set direction
|
|
24804
24863
|
*/ setDirection(direction) {
|
|
24805
|
-
(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_8__.css)(this.container, 'direction', direction);
|
|
24864
|
+
;(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_8__.css)(this.container, 'direction', direction);
|
|
24806
24865
|
(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_7__.attr)(this.container, 'dir', direction);
|
|
24807
24866
|
}
|
|
24808
24867
|
__initEvents() {
|
|
@@ -24836,7 +24895,7 @@ class ToolbarCollection extends jodit_core_ui_group_list__WEBPACK_IMPORTED_MODUL
|
|
|
24836
24895
|
super(jodit), (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "__listenEvents", 'updatePlugins updateToolbar changeStack mousedown mouseup keydown change readonly afterResize ' + 'selectionchange changeSelection focus afterSetMode touchstart focus blur');
|
|
24837
24896
|
}
|
|
24838
24897
|
}
|
|
24839
|
-
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
24898
|
+
;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
24840
24899
|
(0,jodit_core_decorators_watch_watch__WEBPACK_IMPORTED_MODULE_6__.watch)(':afterInit'),
|
|
24841
24900
|
jodit_core_decorators_autobind_autobind__WEBPACK_IMPORTED_MODULE_3__.autobind
|
|
24842
24901
|
], ToolbarCollection.prototype, "__immediateUpdate", null);
|
|
@@ -25471,7 +25530,6 @@ function readImagesWithReader(fileList, imagesExtensions, promises, uploader, ha
|
|
|
25471
25530
|
|
|
25472
25531
|
"use strict";
|
|
25473
25532
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
25474
|
-
/* harmony export */ ajaxInstances: function() { return /* binding */ ajaxInstances; },
|
|
25475
25533
|
/* harmony export */ send: function() { return /* binding */ send; }
|
|
25476
25534
|
/* harmony export */ });
|
|
25477
25535
|
/* harmony import */ var jodit_core_helpers__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(65946);
|
|
@@ -25553,6 +25611,10 @@ function send(uploader, data) {
|
|
|
25553
25611
|
return sendData(requestData, showProgress);
|
|
25554
25612
|
}
|
|
25555
25613
|
|
|
25614
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
25615
|
+
/* harmony export */ "ajaxInstances", 0, /* binding */ ajaxInstances
|
|
25616
|
+
/* harmony export */ ]);
|
|
25617
|
+
|
|
25556
25618
|
|
|
25557
25619
|
/***/ }),
|
|
25558
25620
|
|
|
@@ -25732,7 +25794,7 @@ class Uploader extends jodit_core_component___WEBPACK_IMPORTED_MODULE_1__.ViewCo
|
|
|
25732
25794
|
}
|
|
25733
25795
|
upload(files) {
|
|
25734
25796
|
return this.async.promise((resolve, reject)=>{
|
|
25735
|
-
(0,jodit_modules_uploader_helpers__WEBPACK_IMPORTED_MODULE_6__.sendFiles)(this, files, resolve, reject);
|
|
25797
|
+
;(0,jodit_modules_uploader_helpers__WEBPACK_IMPORTED_MODULE_6__.sendFiles)(this, files, resolve, reject);
|
|
25736
25798
|
});
|
|
25737
25799
|
}
|
|
25738
25800
|
destruct() {
|
|
@@ -25761,9 +25823,6 @@ class Uploader extends jodit_core_component___WEBPACK_IMPORTED_MODULE_1__.ViewCo
|
|
|
25761
25823
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
25762
25824
|
|
|
25763
25825
|
"use strict";
|
|
25764
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
25765
|
-
/* harmony export */ ColorPickerWidget: function() { return /* binding */ ColorPickerWidget; }
|
|
25766
|
-
/* harmony export */ });
|
|
25767
25826
|
/* harmony import */ var jodit_core_dom__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(27795);
|
|
25768
25827
|
/* harmony import */ var jodit_core_helpers___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(65946);
|
|
25769
25828
|
/* harmony import */ var jodit_core_ui__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(4099);
|
|
@@ -25889,6 +25948,10 @@ jodit_core_ui__WEBPACK_IMPORTED_MODULE_2__.Icon.set('palette', (_palette_svg__WE
|
|
|
25889
25948
|
return form;
|
|
25890
25949
|
};
|
|
25891
25950
|
|
|
25951
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
25952
|
+
/* harmony export */ "ColorPickerWidget", 0, /* binding */ ColorPickerWidget
|
|
25953
|
+
/* harmony export */ ]);
|
|
25954
|
+
|
|
25892
25955
|
|
|
25893
25956
|
/***/ }),
|
|
25894
25957
|
|
|
@@ -25896,9 +25959,6 @@ jodit_core_ui__WEBPACK_IMPORTED_MODULE_2__.Icon.set('palette', (_palette_svg__WE
|
|
|
25896
25959
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
25897
25960
|
|
|
25898
25961
|
"use strict";
|
|
25899
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
25900
|
-
/* harmony export */ FileSelectorWidget: function() { return /* binding */ FileSelectorWidget; }
|
|
25901
|
-
/* harmony export */ });
|
|
25902
25962
|
/* harmony import */ var jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(23211);
|
|
25903
25963
|
/* harmony import */ var jodit_core_helpers__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(65946);
|
|
25904
25964
|
/* harmony import */ var jodit_core_ui__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(4099);
|
|
@@ -26023,6 +26083,10 @@ function val(elm, name, value) {
|
|
|
26023
26083
|
return child.value;
|
|
26024
26084
|
}
|
|
26025
26085
|
|
|
26086
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
26087
|
+
/* harmony export */ "FileSelectorWidget", 0, /* binding */ FileSelectorWidget
|
|
26088
|
+
/* harmony export */ ]);
|
|
26089
|
+
|
|
26026
26090
|
|
|
26027
26091
|
/***/ }),
|
|
26028
26092
|
|
|
@@ -26057,9 +26121,6 @@ function val(elm, name, value) {
|
|
|
26057
26121
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
26058
26122
|
|
|
26059
26123
|
"use strict";
|
|
26060
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
26061
|
-
/* harmony export */ TabsWidget: function() { return /* binding */ TabsWidget; }
|
|
26062
|
-
/* harmony export */ });
|
|
26063
26124
|
/* harmony import */ var jodit_core_component__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(16964);
|
|
26064
26125
|
/* harmony import */ var jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(23211);
|
|
26065
26126
|
/* harmony import */ var jodit_core_helpers_checker_is_function__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(91565);
|
|
@@ -26185,6 +26246,10 @@ function val(elm, name, value) {
|
|
|
26185
26246
|
return box;
|
|
26186
26247
|
};
|
|
26187
26248
|
|
|
26249
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
26250
|
+
/* harmony export */ "TabsWidget", 0, /* binding */ TabsWidget
|
|
26251
|
+
/* harmony export */ ]);
|
|
26252
|
+
|
|
26188
26253
|
|
|
26189
26254
|
/***/ }),
|
|
26190
26255
|
|
|
@@ -26254,7 +26319,7 @@ jodit_core_ui_icon__WEBPACK_IMPORTED_MODULE_3__.Icon.set('about', (_about_svg__W
|
|
|
26254
26319
|
/***/ }),
|
|
26255
26320
|
|
|
26256
26321
|
/***/ 42766:
|
|
26257
|
-
/***/ (function(__unused_webpack_module,
|
|
26322
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
26258
26323
|
|
|
26259
26324
|
"use strict";
|
|
26260
26325
|
/* unused harmony export addNewLine */
|
|
@@ -26443,7 +26508,7 @@ const ns = 'addnewline';
|
|
|
26443
26508
|
});
|
|
26444
26509
|
}
|
|
26445
26510
|
}
|
|
26446
|
-
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
26511
|
+
;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
26447
26512
|
(0,jodit_core_decorators__WEBPACK_IMPORTED_MODULE_2__.watch)(':lock')
|
|
26448
26513
|
], addNewLine.prototype, "onLock", null);
|
|
26449
26514
|
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
@@ -26494,7 +26559,7 @@ jodit_core_ui_icon__WEBPACK_IMPORTED_MODULE_0__.Icon.set('enter', (_enter_svg__W
|
|
|
26494
26559
|
/***/ }),
|
|
26495
26560
|
|
|
26496
26561
|
/***/ 14774:
|
|
26497
|
-
/***/ (function(__unused_webpack_module,
|
|
26562
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
26498
26563
|
|
|
26499
26564
|
"use strict";
|
|
26500
26565
|
/* unused harmony export aiAssistant */
|
|
@@ -26611,7 +26676,7 @@ jodit_core_ui_icon__WEBPACK_IMPORTED_MODULE_0__.Icon.set('enter', (_enter_svg__W
|
|
|
26611
26676
|
(0,jodit_core_global__WEBPACK_IMPORTED_MODULE_5__.extendLang)(_langs__WEBPACK_IMPORTED_MODULE_10__);
|
|
26612
26677
|
}
|
|
26613
26678
|
}
|
|
26614
|
-
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_2__.__decorate)([
|
|
26679
|
+
;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_2__.__decorate)([
|
|
26615
26680
|
jodit_core_decorators_cache_cache__WEBPACK_IMPORTED_MODULE_3__.cache
|
|
26616
26681
|
], aiAssistant.prototype, "__dialog", null);
|
|
26617
26682
|
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_2__.__decorate)([
|
|
@@ -26629,7 +26694,7 @@ jodit_core_global__WEBPACK_IMPORTED_MODULE_5__.pluginSystem.add('ai-assistant',
|
|
|
26629
26694
|
/***/ }),
|
|
26630
26695
|
|
|
26631
26696
|
/***/ 77227:
|
|
26632
|
-
/***/ (function(__unused_webpack_module,
|
|
26697
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
26633
26698
|
|
|
26634
26699
|
"use strict";
|
|
26635
26700
|
/* unused harmony exports aiAssitentCommands, aiAssistantDefaults */
|
|
@@ -26982,7 +27047,7 @@ class UiAiAssistant extends jodit_core_ui_element__WEBPACK_IMPORTED_MODULE_7__.U
|
|
|
26982
27047
|
this.onChangePromptValue();
|
|
26983
27048
|
}
|
|
26984
27049
|
}
|
|
26985
|
-
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
27050
|
+
;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
26986
27051
|
(0,jodit_core_decorators_watch_watch__WEBPACK_IMPORTED_MODULE_3__.watch)(':ai-assistant-response')
|
|
26987
27052
|
], UiAiAssistant.prototype, "onAiAssistentResponse", null);
|
|
26988
27053
|
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
@@ -26999,7 +27064,7 @@ UiAiAssistant = (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decor
|
|
|
26999
27064
|
/***/ }),
|
|
27000
27065
|
|
|
27001
27066
|
/***/ 28286:
|
|
27002
|
-
/***/ (function(__unused_webpack_module,
|
|
27067
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
27003
27068
|
|
|
27004
27069
|
"use strict";
|
|
27005
27070
|
/* unused harmony export backspace */
|
|
@@ -27082,7 +27147,7 @@ class backspace extends jodit_core_plugin__WEBPACK_IMPORTED_MODULE_5__.Plugin {
|
|
|
27082
27147
|
if (jodit.e.fire('backSpaceBeforeCases', backspace, fakeNode)) {
|
|
27083
27148
|
return false;
|
|
27084
27149
|
}
|
|
27085
|
-
(0,jodit_core_selection_helpers__WEBPACK_IMPORTED_MODULE_6__.moveNodeInsideStart)(jodit, fakeNode, backspace);
|
|
27150
|
+
;(0,jodit_core_selection_helpers__WEBPACK_IMPORTED_MODULE_6__.moveNodeInsideStart)(jodit, fakeNode, backspace);
|
|
27086
27151
|
const disabled = jodit.o.delete.disableCases;
|
|
27087
27152
|
if (_cases__WEBPACK_IMPORTED_MODULE_9__.casesMap.some(([key, func])=>{
|
|
27088
27153
|
if (disabled && disabled.has(key)) {
|
|
@@ -27134,7 +27199,7 @@ class backspace extends jodit_core_plugin__WEBPACK_IMPORTED_MODULE_5__.Plugin {
|
|
|
27134
27199
|
jodit_core_dom__WEBPACK_IMPORTED_MODULE_2__.Dom.safeRemove(fakeNode);
|
|
27135
27200
|
}
|
|
27136
27201
|
}
|
|
27137
|
-
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(backspace, "requires", [
|
|
27202
|
+
;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(backspace, "requires", [
|
|
27138
27203
|
'hotkeys'
|
|
27139
27204
|
]);
|
|
27140
27205
|
jodit_core_global__WEBPACK_IMPORTED_MODULE_3__.pluginSystem.add('backspace', backspace);
|
|
@@ -27482,7 +27547,7 @@ function replaceSpaceOnNBSP(anotherSibling, backspace, value) {
|
|
|
27482
27547
|
}
|
|
27483
27548
|
}
|
|
27484
27549
|
function checkRepeatRemoveCharAction(backspace, sibling, fakeNode, mode, removed, jodit) {
|
|
27485
|
-
(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_2__.call)(backspace ? jodit_core_dom__WEBPACK_IMPORTED_MODULE_1__.Dom.after : jodit_core_dom__WEBPACK_IMPORTED_MODULE_1__.Dom.before, sibling, fakeNode);
|
|
27550
|
+
;(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_2__.call)(backspace ? jodit_core_dom__WEBPACK_IMPORTED_MODULE_1__.Dom.after : jodit_core_dom__WEBPACK_IMPORTED_MODULE_1__.Dom.before, sibling, fakeNode);
|
|
27486
27551
|
if (mode === 'sentence' || mode === 'word' && removed !== ' ' && removed !== jodit_core_constants__WEBPACK_IMPORTED_MODULE_0__.NBSP_SPACE) {
|
|
27487
27552
|
checkRemoveChar(jodit, fakeNode, backspace, mode);
|
|
27488
27553
|
}
|
|
@@ -27773,7 +27838,7 @@ function checkRepeatRemoveCharAction(backspace, sibling, fakeNode, mode, removed
|
|
|
27773
27838
|
if (jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_0__.Dom.isEmpty(ul)) {
|
|
27774
27839
|
jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_0__.Dom.safeRemove(ul);
|
|
27775
27840
|
}
|
|
27776
|
-
(0,jodit_core_helpers_utils__WEBPACK_IMPORTED_MODULE_1__.call)(backspace ? s.setCursorBefore : s.setCursorAfter, fakeNode);
|
|
27841
|
+
;(0,jodit_core_helpers_utils__WEBPACK_IMPORTED_MODULE_1__.call)(backspace ? s.setCursorBefore : s.setCursorAfter, fakeNode);
|
|
27777
27842
|
return true;
|
|
27778
27843
|
}
|
|
27779
27844
|
return false;
|
|
@@ -27786,9 +27851,6 @@ function checkRepeatRemoveCharAction(backspace, sibling, fakeNode, mode, removed
|
|
|
27786
27851
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
27787
27852
|
|
|
27788
27853
|
"use strict";
|
|
27789
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
27790
|
-
/* harmony export */ casesMap: function() { return /* binding */ casesMap; }
|
|
27791
|
-
/* harmony export */ });
|
|
27792
27854
|
/* unused harmony export cases */
|
|
27793
27855
|
/* harmony import */ var _check_join_neighbors__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(26106);
|
|
27794
27856
|
/* harmony import */ var _check_join_two_lists__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(80951);
|
|
@@ -27862,6 +27924,10 @@ function checkRepeatRemoveCharAction(backspace, sibling, fakeNode, mode, removed
|
|
|
27862
27924
|
* @deprecated Use `casesMap` to also get the stable case keys.
|
|
27863
27925
|
*/ const cases = casesMap.map(([, fn])=>fn);
|
|
27864
27926
|
|
|
27927
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
27928
|
+
/* harmony export */ "casesMap", 0, /* binding */ casesMap
|
|
27929
|
+
/* harmony export */ ]);
|
|
27930
|
+
|
|
27865
27931
|
|
|
27866
27932
|
/***/ }),
|
|
27867
27933
|
|
|
@@ -27955,7 +28021,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.delete = {
|
|
|
27955
28021
|
/***/ }),
|
|
27956
28022
|
|
|
27957
28023
|
/***/ 91678:
|
|
27958
|
-
/***/ (function(__unused_webpack_module,
|
|
28024
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
27959
28025
|
|
|
27960
28026
|
"use strict";
|
|
27961
28027
|
/* unused harmony export bold */
|
|
@@ -28142,7 +28208,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.controls.strikethroug
|
|
|
28142
28208
|
/***/ }),
|
|
28143
28209
|
|
|
28144
28210
|
/***/ 58910:
|
|
28145
|
-
/***/ (function(__unused_webpack_module,
|
|
28211
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
28146
28212
|
|
|
28147
28213
|
"use strict";
|
|
28148
28214
|
/* unused harmony export classSpan */
|
|
@@ -28255,7 +28321,7 @@ jodit_core_ui_icon__WEBPACK_IMPORTED_MODULE_5__.Icon.set('class-span', (_class_s
|
|
|
28255
28321
|
/***/ }),
|
|
28256
28322
|
|
|
28257
28323
|
/***/ 11018:
|
|
28258
|
-
/***/ (function(__unused_webpack_module,
|
|
28324
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
28259
28325
|
|
|
28260
28326
|
"use strict";
|
|
28261
28327
|
/* unused harmony export cleanHtml */
|
|
@@ -28359,7 +28425,7 @@ jodit_core_ui_icon__WEBPACK_IMPORTED_MODULE_5__.Icon.set('class-span', (_class_s
|
|
|
28359
28425
|
if (sanitizer) {
|
|
28360
28426
|
sandBox.innerHTML = sanitizer(sandBox.innerHTML);
|
|
28361
28427
|
}
|
|
28362
|
-
(0,jodit_core_helpers_html_safe_html__WEBPACK_IMPORTED_MODULE_6__.safeHTML)(sandBox, this.j.o.cleanHTML);
|
|
28428
|
+
;(0,jodit_core_helpers_html_safe_html__WEBPACK_IMPORTED_MODULE_6__.safeHTML)(sandBox, this.j.o.cleanHTML);
|
|
28363
28429
|
}
|
|
28364
28430
|
/** @override */ beforeDestruct() {
|
|
28365
28431
|
this.walker.destruct();
|
|
@@ -28375,7 +28441,7 @@ jodit_core_ui_icon__WEBPACK_IMPORTED_MODULE_5__.Icon.set('class-span', (_class_s
|
|
|
28375
28441
|
}));
|
|
28376
28442
|
}
|
|
28377
28443
|
}
|
|
28378
|
-
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
28444
|
+
;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
28379
28445
|
(0,jodit_core_decorators__WEBPACK_IMPORTED_MODULE_2__.watch)([
|
|
28380
28446
|
':change',
|
|
28381
28447
|
':afterSetMode',
|
|
@@ -28747,7 +28813,7 @@ const VIMEO_EMBED = /^(https?:)?\/\/player\.vimeo\.com\/video\//i;
|
|
|
28747
28813
|
// `attrRaw` on purpose: the sanitizer must remove exactly the
|
|
28748
28814
|
// attribute name from the live list, without the `attr()`
|
|
28749
28815
|
// helper name normalization
|
|
28750
|
-
(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_1__.attrRaw)(nodeElm, attr, null);
|
|
28816
|
+
;(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_1__.attrRaw)(nodeElm, attr, null);
|
|
28751
28817
|
});
|
|
28752
28818
|
}
|
|
28753
28819
|
}
|
|
@@ -29340,7 +29406,7 @@ const keys = Object.keys(_filters__WEBPACK_IMPORTED_MODULE_1__);
|
|
|
29340
29406
|
/***/ }),
|
|
29341
29407
|
|
|
29342
29408
|
/***/ 43354:
|
|
29343
|
-
/***/ (function(__unused_webpack_module,
|
|
29409
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
29344
29410
|
|
|
29345
29411
|
"use strict";
|
|
29346
29412
|
/* unused harmony export clipboard */
|
|
@@ -29399,7 +29465,7 @@ const keys = Object.keys(_filters__WEBPACK_IMPORTED_MODULE_1__);
|
|
|
29399
29465
|
editor === null || editor === void 0 ? void 0 : (_editor_events = editor.events) === null || _editor_events === void 0 ? void 0 : _editor_events.off('.' + jodit_core_constants__WEBPACK_IMPORTED_MODULE_1__.CLIPBOARD_ID);
|
|
29400
29466
|
}
|
|
29401
29467
|
constructor(){
|
|
29402
|
-
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "jodit", void 0);
|
|
29468
|
+
;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "jodit", void 0);
|
|
29403
29469
|
/** @override */ (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "buttons", [
|
|
29404
29470
|
{
|
|
29405
29471
|
name: 'cut',
|
|
@@ -29495,7 +29561,7 @@ jodit_core_ui_icon__WEBPACK_IMPORTED_MODULE_0__.Icon.set('copy', (_icons_copy_sv
|
|
|
29495
29561
|
/***/ }),
|
|
29496
29562
|
|
|
29497
29563
|
/***/ 42462:
|
|
29498
|
-
/***/ (function(__unused_webpack_module,
|
|
29564
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
29499
29565
|
|
|
29500
29566
|
"use strict";
|
|
29501
29567
|
/* unused harmony export color */
|
|
@@ -29600,7 +29666,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_3__.Config.prototype.controls.brushCell =
|
|
|
29600
29666
|
}
|
|
29601
29667
|
const makeColorPicker = (key)=>(0,jodit_modules_widget__WEBPACK_IMPORTED_MODULE_4__.ColorPickerWidget)(editor, (value)=>{
|
|
29602
29668
|
selected.forEach((cell)=>{
|
|
29603
|
-
(0,jodit_core_helpers___WEBPACK_IMPORTED_MODULE_1__.css)(cell, key, value);
|
|
29669
|
+
;(0,jodit_core_helpers___WEBPACK_IMPORTED_MODULE_1__.css)(cell, key, value);
|
|
29604
29670
|
});
|
|
29605
29671
|
editor.lock();
|
|
29606
29672
|
editor.synchronizeValues();
|
|
@@ -29688,7 +29754,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_3__.Config.prototype.controls.brush = {
|
|
|
29688
29754
|
} else {
|
|
29689
29755
|
(0,jodit_core_helpers___WEBPACK_IMPORTED_MODULE_1__.css)(currentElement, 'backgroundColor', value);
|
|
29690
29756
|
}
|
|
29691
|
-
(0,jodit_core_helpers___WEBPACK_IMPORTED_MODULE_1__.dataBind)(button, 'color', value);
|
|
29757
|
+
;(0,jodit_core_helpers___WEBPACK_IMPORTED_MODULE_1__.dataBind)(button, 'color', value);
|
|
29692
29758
|
(0,jodit_core_helpers___WEBPACK_IMPORTED_MODULE_1__.dataBind)(button, 'color-mode', 'background');
|
|
29693
29759
|
close();
|
|
29694
29760
|
}, bg_color);
|
|
@@ -29698,7 +29764,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_3__.Config.prototype.controls.brush = {
|
|
|
29698
29764
|
} else {
|
|
29699
29765
|
(0,jodit_core_helpers___WEBPACK_IMPORTED_MODULE_1__.css)(currentElement, 'color', value);
|
|
29700
29766
|
}
|
|
29701
|
-
(0,jodit_core_helpers___WEBPACK_IMPORTED_MODULE_1__.dataBind)(button, 'color', value);
|
|
29767
|
+
;(0,jodit_core_helpers___WEBPACK_IMPORTED_MODULE_1__.dataBind)(button, 'color', value);
|
|
29702
29768
|
(0,jodit_core_helpers___WEBPACK_IMPORTED_MODULE_1__.dataBind)(button, 'color-mode', 'color');
|
|
29703
29769
|
close();
|
|
29704
29770
|
}, colorHEX);
|
|
@@ -29742,7 +29808,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_3__.Config.prototype.controls.brush = {
|
|
|
29742
29808
|
/***/ }),
|
|
29743
29809
|
|
|
29744
29810
|
/***/ 30062:
|
|
29745
|
-
/***/ (function(__unused_webpack_module,
|
|
29811
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
29746
29812
|
|
|
29747
29813
|
"use strict";
|
|
29748
29814
|
/* unused harmony export copyFormat */
|
|
@@ -30262,7 +30328,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
30262
30328
|
/***/ }),
|
|
30263
30329
|
|
|
30264
30330
|
/***/ 63974:
|
|
30265
|
-
/***/ (function(__unused_webpack_module,
|
|
30331
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
30266
30332
|
|
|
30267
30333
|
"use strict";
|
|
30268
30334
|
/* unused harmony export deleteCommand */
|
|
@@ -30401,7 +30467,7 @@ class deleteCommand extends jodit_core_plugin__WEBPACK_IMPORTED_MODULE_5__.Plugi
|
|
|
30401
30467
|
}
|
|
30402
30468
|
}
|
|
30403
30469
|
}
|
|
30404
|
-
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(deleteCommand, "requires", [
|
|
30470
|
+
;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(deleteCommand, "requires", [
|
|
30405
30471
|
'backspace'
|
|
30406
30472
|
]);
|
|
30407
30473
|
jodit_core_global__WEBPACK_IMPORTED_MODULE_2__.pluginSystem.add('deleteCommand', deleteCommand);
|
|
@@ -30431,7 +30497,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.draggableTags = [
|
|
|
30431
30497
|
/***/ }),
|
|
30432
30498
|
|
|
30433
30499
|
/***/ 43102:
|
|
30434
|
-
/***/ (function(__unused_webpack_module,
|
|
30500
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
30435
30501
|
|
|
30436
30502
|
"use strict";
|
|
30437
30503
|
/* unused harmony export dragAndDropElement */
|
|
@@ -30459,12 +30525,12 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.draggableTags = [
|
|
|
30459
30525
|
|
|
30460
30526
|
|
|
30461
30527
|
|
|
30462
|
-
var DragState = /*#__PURE__*/ function(DragState) {
|
|
30528
|
+
var DragState = /*#__PURE__*/ (/* unused pure expression or super */ null && (function(DragState) {
|
|
30463
30529
|
DragState[DragState["IDLE"] = 0] = "IDLE";
|
|
30464
30530
|
DragState[DragState["WAIT_DRAGGING"] = 1] = "WAIT_DRAGGING";
|
|
30465
30531
|
DragState[DragState["DRAGGING"] = 2] = "DRAGGING";
|
|
30466
30532
|
return DragState;
|
|
30467
|
-
}(DragState || {});
|
|
30533
|
+
}(DragState || {})));
|
|
30468
30534
|
/**
|
|
30469
30535
|
* Process drag and drop image or another element inside the editor
|
|
30470
30536
|
*/ class dragAndDropElement extends jodit_core_plugin__WEBPACK_IMPORTED_MODULE_6__.Plugin {
|
|
@@ -30565,7 +30631,7 @@ var DragState = /*#__PURE__*/ function(DragState) {
|
|
|
30565
30631
|
});
|
|
30566
30632
|
jodit_core_dom__WEBPACK_IMPORTED_MODULE_3__.Dom.append((0,jodit_core_global__WEBPACK_IMPORTED_MODULE_4__.getContainer)(this.j, dragAndDropElement), this.draggable);
|
|
30567
30633
|
}
|
|
30568
|
-
(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_5__.css)(this.draggable, {
|
|
30634
|
+
;(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_5__.css)(this.draggable, {
|
|
30569
30635
|
left: event.clientX,
|
|
30570
30636
|
top: event.clientY
|
|
30571
30637
|
});
|
|
@@ -30646,7 +30712,7 @@ var DragState = /*#__PURE__*/ function(DragState) {
|
|
|
30646
30712
|
*/ (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "diffStep", 10), (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "startX", 0), (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "startY", 0), (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "state", 0);
|
|
30647
30713
|
}
|
|
30648
30714
|
}
|
|
30649
|
-
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
30715
|
+
;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
30650
30716
|
jodit_core_decorators__WEBPACK_IMPORTED_MODULE_2__.autobind
|
|
30651
30717
|
], dragAndDropElement.prototype, "onStartDragElement", null);
|
|
30652
30718
|
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
@@ -30667,7 +30733,7 @@ jodit_core_global__WEBPACK_IMPORTED_MODULE_4__.pluginSystem.add('dragAndDropElem
|
|
|
30667
30733
|
/***/ }),
|
|
30668
30734
|
|
|
30669
30735
|
/***/ 64222:
|
|
30670
|
-
/***/ (function(__unused_webpack_module,
|
|
30736
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
30671
30737
|
|
|
30672
30738
|
"use strict";
|
|
30673
30739
|
/* unused harmony export dragAndDrop */
|
|
@@ -30834,7 +30900,7 @@ jodit_core_global__WEBPACK_IMPORTED_MODULE_4__.pluginSystem.add('dragAndDropElem
|
|
|
30834
30900
|
});
|
|
30835
30901
|
}
|
|
30836
30902
|
}
|
|
30837
|
-
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
30903
|
+
;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
30838
30904
|
jodit_core_decorators__WEBPACK_IMPORTED_MODULE_3__.autobind
|
|
30839
30905
|
], dragAndDrop.prototype, "onDragStart", null);
|
|
30840
30906
|
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
@@ -31089,7 +31155,7 @@ class dtd extends jodit_core_plugin__WEBPACK_IMPORTED_MODULE_3__.Plugin {
|
|
|
31089
31155
|
});
|
|
31090
31156
|
}
|
|
31091
31157
|
}
|
|
31092
|
-
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_0__.__decorate)([
|
|
31158
|
+
;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_0__.__decorate)([
|
|
31093
31159
|
(0,jodit_core_decorators_watch_watch__WEBPACK_IMPORTED_MODULE_1__.watch)(':beforeInsertNode')
|
|
31094
31160
|
], dtd.prototype, "__onBeforeInsertNode", null);
|
|
31095
31161
|
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_0__.__decorate)([
|
|
@@ -31101,7 +31167,7 @@ jodit_core_global__WEBPACK_IMPORTED_MODULE_2__.pluginSystem.add('dtd', dtd);
|
|
|
31101
31167
|
/***/ }),
|
|
31102
31168
|
|
|
31103
31169
|
/***/ 3678:
|
|
31104
|
-
/***/ (function(__unused_webpack_module,
|
|
31170
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
31105
31171
|
|
|
31106
31172
|
"use strict";
|
|
31107
31173
|
/* unused harmony export enter */
|
|
@@ -31194,7 +31260,7 @@ jodit_core_global__WEBPACK_IMPORTED_MODULE_2__.pluginSystem.add('dtd', dtd);
|
|
|
31194
31260
|
(0,_helpers__WEBPACK_IMPORTED_MODULE_7__.processEmptyLILeaf)(fake, jodit, block);
|
|
31195
31261
|
return false;
|
|
31196
31262
|
}
|
|
31197
|
-
(0,_helpers__WEBPACK_IMPORTED_MODULE_7__.splitFragment)(fake, jodit, block);
|
|
31263
|
+
;(0,_helpers__WEBPACK_IMPORTED_MODULE_7__.splitFragment)(fake, jodit, block);
|
|
31198
31264
|
} finally{
|
|
31199
31265
|
fake.isConnected && jodit.s.setCursorBefore(fake);
|
|
31200
31266
|
jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_3__.Dom.safeRemove(fake);
|
|
@@ -31208,7 +31274,7 @@ jodit_core_global__WEBPACK_IMPORTED_MODULE_2__.pluginSystem.add('dtd', dtd);
|
|
|
31208
31274
|
editor.e.off('keydown.enter');
|
|
31209
31275
|
}
|
|
31210
31276
|
}
|
|
31211
|
-
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_0__.__decorate)([
|
|
31277
|
+
;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_0__.__decorate)([
|
|
31212
31278
|
(0,jodit_core_decorators__WEBPACK_IMPORTED_MODULE_2__.watch)(':keydown.enter')
|
|
31213
31279
|
], enter.prototype, "onEnterKeyDown", null);
|
|
31214
31280
|
jodit_core_global__WEBPACK_IMPORTED_MODULE_4__.pluginSystem.add('enter', enter);
|
|
@@ -31261,7 +31327,7 @@ jodit_core_global__WEBPACK_IMPORTED_MODULE_4__.pluginSystem.add('enter', enter);
|
|
|
31261
31327
|
jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_1__.Dom.after(br, clone);
|
|
31262
31328
|
jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_1__.Dom.before(clone, fake);
|
|
31263
31329
|
}
|
|
31264
|
-
(0,jodit_core_helpers_utils_scroll_into_view__WEBPACK_IMPORTED_MODULE_2__.scrollIntoViewIfNeeded)(br, jodit.editor, jodit.ed);
|
|
31330
|
+
;(0,jodit_core_helpers_utils_scroll_into_view__WEBPACK_IMPORTED_MODULE_2__.scrollIntoViewIfNeeded)(br, jodit.editor, jodit.ed);
|
|
31265
31331
|
return true;
|
|
31266
31332
|
}
|
|
31267
31333
|
return false;
|
|
@@ -31591,7 +31657,7 @@ function brBefore(start) {
|
|
|
31591
31657
|
} else {
|
|
31592
31658
|
jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_0__.Dom.before(block, fake);
|
|
31593
31659
|
}
|
|
31594
|
-
(0,_insert_paragraph__WEBPACK_IMPORTED_MODULE_2__.insertParagraph)(fake, jodit, defaultTag);
|
|
31660
|
+
;(0,_insert_paragraph__WEBPACK_IMPORTED_MODULE_2__.insertParagraph)(fake, jodit, defaultTag);
|
|
31595
31661
|
if (cursorOnTheLeft && !cursorOnTheRight) {
|
|
31596
31662
|
jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_0__.Dom.prepend(block, fake);
|
|
31597
31663
|
}
|
|
@@ -31607,7 +31673,7 @@ function brBefore(start) {
|
|
|
31607
31673
|
// After the split the caret stays inside `block` (the right half) —
|
|
31608
31674
|
// `splitSelection` returns the left half, which is above the caret and
|
|
31609
31675
|
// usually already visible. Follow the caret, not the left half. See #1300
|
|
31610
|
-
(0,jodit_core_helpers_utils_scroll_into_view__WEBPACK_IMPORTED_MODULE_1__.scrollIntoViewIfNeeded)(block, jodit.editor, jodit.ed);
|
|
31676
|
+
;(0,jodit_core_helpers_utils_scroll_into_view__WEBPACK_IMPORTED_MODULE_1__.scrollIntoViewIfNeeded)(block, jodit.editor, jodit.ed);
|
|
31611
31677
|
}
|
|
31612
31678
|
|
|
31613
31679
|
|
|
@@ -31652,7 +31718,7 @@ function brBefore(start) {
|
|
|
31652
31718
|
/***/ }),
|
|
31653
31719
|
|
|
31654
31720
|
/***/ 49764:
|
|
31655
|
-
/***/ (function(__unused_webpack_module,
|
|
31721
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
31656
31722
|
|
|
31657
31723
|
"use strict";
|
|
31658
31724
|
/* unused harmony export file */
|
|
@@ -31717,7 +31783,7 @@ jodit_core_global__WEBPACK_IMPORTED_MODULE_1__.pluginSystem.add('file', file);
|
|
|
31717
31783
|
/***/ }),
|
|
31718
31784
|
|
|
31719
31785
|
/***/ 78690:
|
|
31720
|
-
/***/ (function(__unused_webpack_module,
|
|
31786
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
31721
31787
|
|
|
31722
31788
|
"use strict";
|
|
31723
31789
|
/* unused harmony export focus */
|
|
@@ -31969,7 +32035,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_6__.Config.prototype.controls.font = (0,_s
|
|
|
31969
32035
|
/***/ }),
|
|
31970
32036
|
|
|
31971
32037
|
/***/ 50294:
|
|
31972
|
-
/***/ (function(__unused_webpack_module,
|
|
32038
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
31973
32039
|
|
|
31974
32040
|
"use strict";
|
|
31975
32041
|
/* unused harmony export font */
|
|
@@ -32099,7 +32165,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_3__.Config.prototype.controls.paragraph =
|
|
|
32099
32165
|
/***/ }),
|
|
32100
32166
|
|
|
32101
32167
|
/***/ 53390:
|
|
32102
|
-
/***/ (function(__unused_webpack_module,
|
|
32168
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
32103
32169
|
|
|
32104
32170
|
"use strict";
|
|
32105
32171
|
/* unused harmony export formatBlock */
|
|
@@ -32182,7 +32248,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_2__.Config.prototype.controls.fullsize = {
|
|
|
32182
32248
|
/***/ }),
|
|
32183
32249
|
|
|
32184
32250
|
/***/ 69696:
|
|
32185
|
-
/***/ (function(__unused_webpack_module,
|
|
32251
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
32186
32252
|
|
|
32187
32253
|
"use strict";
|
|
32188
32254
|
/* unused harmony export fullsize */
|
|
@@ -32228,7 +32294,7 @@ const fullsizeStack = new Set();
|
|
|
32228
32294
|
oldWidth = (0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_3__.css)(container, 'width', true);
|
|
32229
32295
|
wasToggled = true;
|
|
32230
32296
|
}
|
|
32231
|
-
(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_3__.css)(container, {
|
|
32297
|
+
;(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_3__.css)(container, {
|
|
32232
32298
|
height: editor.ow.innerHeight,
|
|
32233
32299
|
width: editor.ow.innerWidth
|
|
32234
32300
|
});
|
|
@@ -32331,7 +32397,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.commandToHotkeys = {
|
|
|
32331
32397
|
/***/ }),
|
|
32332
32398
|
|
|
32333
32399
|
/***/ 50982:
|
|
32334
|
-
/***/ (function(__unused_webpack_module,
|
|
32400
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
32335
32401
|
|
|
32336
32402
|
"use strict";
|
|
32337
32403
|
/* unused harmony export hotkeys */
|
|
@@ -32498,7 +32564,7 @@ jodit_core_global__WEBPACK_IMPORTED_MODULE_2__.pluginSystem.add('hotkeys', hotke
|
|
|
32498
32564
|
/***/ }),
|
|
32499
32565
|
|
|
32500
32566
|
/***/ 2952:
|
|
32501
|
-
/***/ (function(__unused_webpack_module,
|
|
32567
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
32502
32568
|
|
|
32503
32569
|
"use strict";
|
|
32504
32570
|
/* unused harmony export hr */
|
|
@@ -32580,7 +32646,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.iframeSandbox = null;
|
|
|
32580
32646
|
/***/ }),
|
|
32581
32647
|
|
|
32582
32648
|
/***/ 81144:
|
|
32583
|
-
/***/ (function(__unused_webpack_module,
|
|
32649
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
32584
32650
|
|
|
32585
32651
|
"use strict";
|
|
32586
32652
|
/* unused harmony export iframe */
|
|
@@ -32765,7 +32831,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.imageProcessor = {
|
|
|
32765
32831
|
/***/ }),
|
|
32766
32832
|
|
|
32767
32833
|
/***/ 39978:
|
|
32768
|
-
/***/ (function(__unused_webpack_module,
|
|
32834
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
32769
32835
|
|
|
32770
32836
|
"use strict";
|
|
32771
32837
|
/* unused harmony export imageProcessor */
|
|
@@ -32838,7 +32904,7 @@ const JODIT_IMAGE_BLOB_ID = JODIT_IMAGE_PROCESSOR_BINDED + 'blob-id';
|
|
|
32838
32904
|
if (!editor.editor) {
|
|
32839
32905
|
return;
|
|
32840
32906
|
}
|
|
32841
|
-
(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_5__.$$)('img', editor.editor).forEach((elm)=>{
|
|
32907
|
+
;(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_5__.$$)('img', editor.editor).forEach((elm)=>{
|
|
32842
32908
|
if (!(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_5__.dataBind)(elm, JODIT_IMAGE_PROCESSOR_BINDED)) {
|
|
32843
32909
|
(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_5__.dataBind)(elm, JODIT_IMAGE_PROCESSOR_BINDED, true);
|
|
32844
32910
|
if (!elm.complete) {
|
|
@@ -32859,7 +32925,7 @@ const JODIT_IMAGE_BLOB_ID = JODIT_IMAGE_PROCESSOR_BINDED + 'blob-id';
|
|
|
32859
32925
|
}).call(this);
|
|
32860
32926
|
}
|
|
32861
32927
|
}
|
|
32862
|
-
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
32928
|
+
;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
32863
32929
|
(0,jodit_core_decorators__WEBPACK_IMPORTED_MODULE_3__.watch)(':afterGetValueFromEditor')
|
|
32864
32930
|
], imageProcessor.prototype, "onAfterGetValueFromEditor", null);
|
|
32865
32931
|
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
@@ -32937,7 +33003,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.image = {
|
|
|
32937
33003
|
/***/ }),
|
|
32938
33004
|
|
|
32939
33005
|
/***/ 90886:
|
|
32940
|
-
/***/ (function(__unused_webpack_module,
|
|
33006
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
32941
33007
|
|
|
32942
33008
|
"use strict";
|
|
32943
33009
|
/* unused harmony export imageProperties */
|
|
@@ -33181,7 +33247,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.image = {
|
|
|
33181
33247
|
});
|
|
33182
33248
|
}
|
|
33183
33249
|
}
|
|
33184
|
-
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_2__.__decorate)([
|
|
33250
|
+
;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_2__.__decorate)([
|
|
33185
33251
|
jodit_core_decorators__WEBPACK_IMPORTED_MODULE_3__.cache
|
|
33186
33252
|
], imageProperties.prototype, "form", null);
|
|
33187
33253
|
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_2__.__decorate)([
|
|
@@ -33579,7 +33645,7 @@ class UIImagePropertiesForm extends jodit_core_ui_group_group__WEBPACK_IMPORTED_
|
|
|
33579
33645
|
this.append(this.__mainTab).append(this.__positionTab);
|
|
33580
33646
|
}
|
|
33581
33647
|
}
|
|
33582
|
-
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
33648
|
+
;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
33583
33649
|
(0,jodit_core_decorators__WEBPACK_IMPORTED_MODULE_2__.hook)('ready'),
|
|
33584
33650
|
(0,jodit_core_decorators__WEBPACK_IMPORTED_MODULE_2__.watch)('state.sizeIsLocked')
|
|
33585
33651
|
], UIImagePropertiesForm.prototype, "onChangeSizeIsLocked", null);
|
|
@@ -33780,7 +33846,7 @@ class UIImageMainTab extends jodit_core_ui_group_group__WEBPACK_IMPORTED_MODULE_
|
|
|
33780
33846
|
super(view), (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_1__._)(this, "state", void 0), (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_1__._)(this, "handlers", void 0), this.state = state, this.handlers = handlers;
|
|
33781
33847
|
}
|
|
33782
33848
|
}
|
|
33783
|
-
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_2__.__decorate)([
|
|
33849
|
+
;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_2__.__decorate)([
|
|
33784
33850
|
(0,jodit_core_decorators_watch_watch__WEBPACK_IMPORTED_MODULE_5__.watch)('state.values.imageSrc')
|
|
33785
33851
|
], UIImageMainTab.prototype, "onStateImageSrcChange", null);
|
|
33786
33852
|
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_2__.__decorate)([
|
|
@@ -34048,7 +34114,7 @@ class UIImagePositionTab extends jodit_core_ui_element__WEBPACK_IMPORTED_MODULE_
|
|
|
34048
34114
|
}), (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "state", void 0), (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "handlers", void 0), this.state = state, this.handlers = handlers;
|
|
34049
34115
|
}
|
|
34050
34116
|
}
|
|
34051
|
-
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
34117
|
+
;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
34052
34118
|
(0,jodit_core_decorators_hook_hook__WEBPACK_IMPORTED_MODULE_3__.hook)('ready'),
|
|
34053
34119
|
(0,jodit_core_decorators_watch_watch__WEBPACK_IMPORTED_MODULE_4__.watch)('state.values.align')
|
|
34054
34120
|
], UIImagePositionTab.prototype, "onStateAlignChange", null);
|
|
@@ -34227,10 +34293,6 @@ UIImagePositionTab = (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__
|
|
|
34227
34293
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
34228
34294
|
|
|
34229
34295
|
"use strict";
|
|
34230
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
34231
|
-
/* harmony export */ normalSizeFromString: function() { return /* binding */ normalSizeFromString; },
|
|
34232
|
-
/* harmony export */ normalSizeToString: function() { return /* binding */ normalSizeToString; }
|
|
34233
|
-
/* harmony export */ });
|
|
34234
34296
|
/* harmony import */ var jodit_core_helpers_checker_is_number__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(72412);
|
|
34235
34297
|
/* harmony import */ var jodit_core_helpers_string_trim__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(4040);
|
|
34236
34298
|
/*!
|
|
@@ -34252,6 +34314,11 @@ UIImagePositionTab = (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__
|
|
|
34252
34314
|
return /^[0-9]+$/.test(value) ? value + 'px' : value;
|
|
34253
34315
|
};
|
|
34254
34316
|
|
|
34317
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
34318
|
+
/* harmony export */ "normalSizeFromString", 0, /* binding */ normalSizeFromString,
|
|
34319
|
+
/* harmony export */ "normalSizeToString", 0, /* binding */ normalSizeToString
|
|
34320
|
+
/* harmony export */ ]);
|
|
34321
|
+
|
|
34255
34322
|
|
|
34256
34323
|
/***/ }),
|
|
34257
34324
|
|
|
@@ -34298,7 +34365,7 @@ UIImagePositionTab = (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__
|
|
|
34298
34365
|
return;
|
|
34299
34366
|
}
|
|
34300
34367
|
// Border radius
|
|
34301
|
-
(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_2__.css)(image, 'borderRadius', borderRadius ? borderRadius + 'px' : '');
|
|
34368
|
+
;(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_2__.css)(image, 'borderRadius', borderRadius ? borderRadius + 'px' : '');
|
|
34302
34369
|
// Title
|
|
34303
34370
|
(0,jodit_core_helpers_utils__WEBPACK_IMPORTED_MODULE_1__.attr)(image, 'title', imageTitle || null);
|
|
34304
34371
|
// Alt
|
|
@@ -34349,7 +34416,7 @@ UIImagePositionTab = (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__
|
|
|
34349
34416
|
if (!link) {
|
|
34350
34417
|
link = jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_0__.Dom.wrap(image, 'a', j.createInside);
|
|
34351
34418
|
}
|
|
34352
|
-
(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_1__.attr)(link, 'href', imageLink);
|
|
34419
|
+
;(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_1__.attr)(link, 'href', imageLink);
|
|
34353
34420
|
(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_1__.attr)(link, 'target', imageLinkOpenInNewTab ? '_blank' : null);
|
|
34354
34421
|
if (!imageLinkOpenInNewTab) {
|
|
34355
34422
|
const relParts = ((0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_1__.attr)(link, 'rel') || '').split(/\s+/).filter((p)=>p && p !== 'noopener' && p !== 'noreferrer');
|
|
@@ -34449,7 +34516,7 @@ UIImagePositionTab = (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__
|
|
|
34449
34516
|
if (!(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_1__.attr)(image, 'width') || sizeIsLocked) {
|
|
34450
34517
|
updatedHeight = null;
|
|
34451
34518
|
}
|
|
34452
|
-
(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_1__.attr)(image, 'height', updatedHeight);
|
|
34519
|
+
;(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_1__.attr)(image, 'height', updatedHeight);
|
|
34453
34520
|
}
|
|
34454
34521
|
}
|
|
34455
34522
|
|
|
@@ -34457,7 +34524,7 @@ UIImagePositionTab = (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__
|
|
|
34457
34524
|
/***/ }),
|
|
34458
34525
|
|
|
34459
34526
|
/***/ 90826:
|
|
34460
|
-
/***/ (function(__unused_webpack_module,
|
|
34527
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
34461
34528
|
|
|
34462
34529
|
"use strict";
|
|
34463
34530
|
/* unused harmony export image */
|
|
@@ -34605,9 +34672,6 @@ jodit_config__WEBPACK_IMPORTED_MODULE_3__.Config.prototype.indentMargin = 10;
|
|
|
34605
34672
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
34606
34673
|
|
|
34607
34674
|
"use strict";
|
|
34608
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
34609
|
-
/* harmony export */ getKey: function() { return /* binding */ getKey; }
|
|
34610
|
-
/* harmony export */ });
|
|
34611
34675
|
/* harmony import */ var jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(23211);
|
|
34612
34676
|
/*!
|
|
34613
34677
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -34621,11 +34685,15 @@ jodit_config__WEBPACK_IMPORTED_MODULE_3__.Config.prototype.indentMargin = 10;
|
|
|
34621
34685
|
* @internal
|
|
34622
34686
|
*/ const getKey = (direction, box)=>`${jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_0__.Dom.isCell(box) ? 'padding' : 'margin'}${direction === 'rtl' ? 'Right' : 'Left'}`;
|
|
34623
34687
|
|
|
34688
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
34689
|
+
/* harmony export */ "getKey", 0, /* binding */ getKey
|
|
34690
|
+
/* harmony export */ ]);
|
|
34691
|
+
|
|
34624
34692
|
|
|
34625
34693
|
/***/ }),
|
|
34626
34694
|
|
|
34627
34695
|
/***/ 39000:
|
|
34628
|
-
/***/ (function(__unused_webpack_module,
|
|
34696
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
34629
34697
|
|
|
34630
34698
|
"use strict";
|
|
34631
34699
|
/* unused harmony export indent */
|
|
@@ -35142,9 +35210,6 @@ const cmd = (control)=>control.args && (0,jodit_core_helpers_checker__WEBPACK_IM
|
|
|
35142
35210
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
35143
35211
|
|
|
35144
35212
|
"use strict";
|
|
35145
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
35146
|
-
/* harmony export */ align: function() { return /* binding */ align; }
|
|
35147
|
-
/* harmony export */ });
|
|
35148
35213
|
/* harmony import */ var jodit_core_dom__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(27795);
|
|
35149
35214
|
/* harmony import */ var jodit_core_helpers_checker_is_string__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(85932);
|
|
35150
35215
|
/* harmony import */ var jodit_core_helpers_utils_align__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(16849);
|
|
@@ -35180,7 +35245,7 @@ const align = {
|
|
|
35180
35245
|
if (!command) {
|
|
35181
35246
|
return false;
|
|
35182
35247
|
}
|
|
35183
|
-
(0,jodit_core_helpers_utils_align__WEBPACK_IMPORTED_MODULE_2__.hAlignElement)(elm, command);
|
|
35248
|
+
;(0,jodit_core_helpers_utils_align__WEBPACK_IMPORTED_MODULE_2__.hAlignElement)(elm, command);
|
|
35184
35249
|
if (jodit_core_dom__WEBPACK_IMPORTED_MODULE_0__.Dom.isTag(elm, new Set([
|
|
35185
35250
|
'jodit',
|
|
35186
35251
|
'jodit-media'
|
|
@@ -35228,13 +35293,17 @@ const align = {
|
|
|
35228
35293
|
if (!command) {
|
|
35229
35294
|
return false;
|
|
35230
35295
|
}
|
|
35231
|
-
(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_3__.css)(image, 'vertical-align', command === 'normal' ? '' : command);
|
|
35296
|
+
;(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_3__.css)(image, 'vertical-align', command === 'normal' ? '' : command);
|
|
35232
35297
|
editor.e.fire('recalcPositionPopup');
|
|
35233
35298
|
}
|
|
35234
35299
|
},
|
|
35235
35300
|
align
|
|
35236
35301
|
]);
|
|
35237
35302
|
|
|
35303
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
35304
|
+
/* harmony export */ "align", 0, /* binding */ align
|
|
35305
|
+
/* harmony export */ ]);
|
|
35306
|
+
|
|
35238
35307
|
|
|
35239
35308
|
/***/ }),
|
|
35240
35309
|
|
|
@@ -35280,7 +35349,7 @@ const align = {
|
|
|
35280
35349
|
/***/ }),
|
|
35281
35350
|
|
|
35282
35351
|
/***/ 88952:
|
|
35283
|
-
/***/ (function(__unused_webpack_module,
|
|
35352
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
35284
35353
|
|
|
35285
35354
|
"use strict";
|
|
35286
35355
|
/* unused harmony export inlinePopup */
|
|
@@ -35538,7 +35607,7 @@ const align = {
|
|
|
35538
35607
|
*/ (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "__reopenSelectionPopup", false), (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "snapRange", null), (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "elmsList", (0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_5__.keys)(this.j.o.popup, false).filter((s)=>!this.isExcludedTarget(s)));
|
|
35539
35608
|
}
|
|
35540
35609
|
}
|
|
35541
|
-
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(inlinePopup, "requires", [
|
|
35610
|
+
;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(inlinePopup, "requires", [
|
|
35542
35611
|
'select'
|
|
35543
35612
|
]);
|
|
35544
35613
|
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
@@ -35588,7 +35657,7 @@ jodit_core_global__WEBPACK_IMPORTED_MODULE_4__.pluginSystem.add('inlinePopup', i
|
|
|
35588
35657
|
/***/ }),
|
|
35589
35658
|
|
|
35590
35659
|
/***/ 64094:
|
|
35591
|
-
/***/ (function(__unused_webpack_module,
|
|
35660
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
35592
35661
|
|
|
35593
35662
|
"use strict";
|
|
35594
35663
|
/* unused harmony export justify */
|
|
@@ -35708,7 +35777,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_6__.Config.prototype.controls.right = {
|
|
|
35708
35777
|
if (!currentBox) {
|
|
35709
35778
|
currentBox = jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_0__.Dom.wrapInline(current, editor.o.enterBlock, editor);
|
|
35710
35779
|
}
|
|
35711
|
-
(0,jodit_core_helpers_utils_align__WEBPACK_IMPORTED_MODULE_3__.alignElement)(command, currentBox);
|
|
35780
|
+
;(0,jodit_core_helpers_utils_align__WEBPACK_IMPORTED_MODULE_3__.alignElement)(command, currentBox);
|
|
35712
35781
|
});
|
|
35713
35782
|
return false;
|
|
35714
35783
|
};
|
|
@@ -35723,7 +35792,7 @@ jodit_core_global__WEBPACK_IMPORTED_MODULE_1__.pluginSystem.add('justify', justi
|
|
|
35723
35792
|
/***/ }),
|
|
35724
35793
|
|
|
35725
35794
|
/***/ 18210:
|
|
35726
|
-
/***/ (function(__unused_webpack_module,
|
|
35795
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
35727
35796
|
|
|
35728
35797
|
"use strict";
|
|
35729
35798
|
/* unused harmony export keyArrowOutside */
|
|
@@ -35769,7 +35838,7 @@ jodit_core_global__WEBPACK_IMPORTED_MODULE_1__.pluginSystem.add('justify', justi
|
|
|
35769
35838
|
}
|
|
35770
35839
|
}
|
|
35771
35840
|
}
|
|
35772
|
-
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_0__.__decorate)([
|
|
35841
|
+
;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_0__.__decorate)([
|
|
35773
35842
|
(0,jodit_core_decorators__WEBPACK_IMPORTED_MODULE_2__.watch)(':keydown')
|
|
35774
35843
|
], keyArrowOutside.prototype, "onKeyDownArrow", null);
|
|
35775
35844
|
jodit_core_global__WEBPACK_IMPORTED_MODULE_4__.pluginSystem.add('keyArrowOutside', keyArrowOutside);
|
|
@@ -35797,7 +35866,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.limitHTML = false;
|
|
|
35797
35866
|
/***/ }),
|
|
35798
35867
|
|
|
35799
35868
|
/***/ 50662:
|
|
35800
|
-
/***/ (function(__unused_webpack_module,
|
|
35869
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
35801
35870
|
|
|
35802
35871
|
"use strict";
|
|
35803
35872
|
/* unused harmony export limit */
|
|
@@ -35889,7 +35958,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.limitHTML = false;
|
|
|
35889
35958
|
jodit.e.off('.limit');
|
|
35890
35959
|
}
|
|
35891
35960
|
}
|
|
35892
|
-
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_0__.__decorate)([
|
|
35961
|
+
;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_0__.__decorate)([
|
|
35893
35962
|
jodit_core_decorators__WEBPACK_IMPORTED_MODULE_2__.autobind
|
|
35894
35963
|
], limit.prototype, "checkPreventKeyPressOrPaste", null);
|
|
35895
35964
|
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_0__.__decorate)([
|
|
@@ -36378,7 +36447,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
36378
36447
|
/***/ }),
|
|
36379
36448
|
|
|
36380
36449
|
/***/ 58354:
|
|
36381
|
-
/***/ (function(__unused_webpack_module,
|
|
36450
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
36382
36451
|
|
|
36383
36452
|
"use strict";
|
|
36384
36453
|
/* unused harmony export lineHeight */
|
|
@@ -36431,7 +36500,7 @@ class lineHeight extends jodit_core_plugin__WEBPACK_IMPORTED_MODULE_6__.Plugin {
|
|
|
36431
36500
|
if (addStyle === undefined) {
|
|
36432
36501
|
addStyle = previousValue.toString() !== value.toString();
|
|
36433
36502
|
}
|
|
36434
|
-
(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_5__.css)(parentBlock, 'lineHeight', addStyle ? value : null);
|
|
36503
|
+
;(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_5__.css)(parentBlock, 'lineHeight', addStyle ? value : null);
|
|
36435
36504
|
};
|
|
36436
36505
|
try {
|
|
36437
36506
|
if (s.isCollapsed()) {
|
|
@@ -36447,7 +36516,7 @@ class lineHeight extends jodit_core_plugin__WEBPACK_IMPORTED_MODULE_6__.Plugin {
|
|
|
36447
36516
|
}
|
|
36448
36517
|
}
|
|
36449
36518
|
beforeDestruct(jodit) {
|
|
36450
|
-
(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_5__.css)(jodit.editor, {
|
|
36519
|
+
;(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_5__.css)(jodit.editor, {
|
|
36451
36520
|
lineHeight: null
|
|
36452
36521
|
});
|
|
36453
36522
|
}
|
|
@@ -36461,7 +36530,7 @@ class lineHeight extends jodit_core_plugin__WEBPACK_IMPORTED_MODULE_6__.Plugin {
|
|
|
36461
36530
|
(0,jodit_core_global__WEBPACK_IMPORTED_MODULE_4__.extendLang)(_langs__WEBPACK_IMPORTED_MODULE_8__);
|
|
36462
36531
|
}
|
|
36463
36532
|
}
|
|
36464
|
-
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
36533
|
+
;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
36465
36534
|
jodit_core_decorators__WEBPACK_IMPORTED_MODULE_2__.autobind
|
|
36466
36535
|
], lineHeight.prototype, "applyLineHeight", null);
|
|
36467
36536
|
jodit_core_global__WEBPACK_IMPORTED_MODULE_4__.pluginSystem.add('lineHeight', lineHeight);
|
|
@@ -36543,7 +36612,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_2__.Config.prototype.controls.link = {
|
|
|
36543
36612
|
/***/ }),
|
|
36544
36613
|
|
|
36545
36614
|
/***/ 68624:
|
|
36546
|
-
/***/ (function(__unused_webpack_module,
|
|
36615
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
36547
36616
|
|
|
36548
36617
|
"use strict";
|
|
36549
36618
|
/* unused harmony export link */
|
|
@@ -36758,7 +36827,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_2__.Config.prototype.controls.link = {
|
|
|
36758
36827
|
];
|
|
36759
36828
|
}
|
|
36760
36829
|
links.forEach((a)=>{
|
|
36761
|
-
(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_5__.attr)(a, 'href', url_input.value);
|
|
36830
|
+
;(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_5__.attr)(a, 'href', url_input.value);
|
|
36762
36831
|
writeClasses(modeClassName, className_input, className_select, a);
|
|
36763
36832
|
if (!isImageContent) {
|
|
36764
36833
|
writeImage(a, content_input, textWasChanged, url_input);
|
|
@@ -36774,7 +36843,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_2__.Config.prototype.controls.link = {
|
|
|
36774
36843
|
} else if (!nofollow_checkbox.checked && hasNofollow) {
|
|
36775
36844
|
relParts.splice(relParts.indexOf('nofollow'), 1);
|
|
36776
36845
|
}
|
|
36777
|
-
(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_5__.attr)(a, 'rel', relParts.length ? relParts.join(' ') : null);
|
|
36846
|
+
;(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_5__.attr)(a, 'rel', relParts.length ? relParts.join(' ') : null);
|
|
36778
36847
|
}
|
|
36779
36848
|
if (aria_label_input) {
|
|
36780
36849
|
const ariaLabel = aria_label_input.value.trim();
|
|
@@ -36816,7 +36885,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_2__.Config.prototype.controls.link = {
|
|
|
36816
36885
|
]);
|
|
36817
36886
|
}
|
|
36818
36887
|
}
|
|
36819
|
-
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
36888
|
+
;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
36820
36889
|
jodit_core_decorators__WEBPACK_IMPORTED_MODULE_2__.autobind
|
|
36821
36890
|
], link.prototype, "__onDblClickOnLink", null);
|
|
36822
36891
|
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
@@ -36929,9 +36998,6 @@ function writeImage(a, content_input, textWasChanged, url_input) {
|
|
|
36929
36998
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
36930
36999
|
|
|
36931
37000
|
"use strict";
|
|
36932
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
36933
|
-
/* harmony export */ formTemplate: function() { return /* binding */ formTemplate; }
|
|
36934
|
-
/* harmony export */ });
|
|
36935
37001
|
/* harmony import */ var jodit_core_ui_button__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(59400);
|
|
36936
37002
|
/* harmony import */ var jodit_core_ui_form__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(5658);
|
|
36937
37003
|
/*!
|
|
@@ -37021,6 +37087,10 @@ const formTemplate = (editor)=>{
|
|
|
37021
37087
|
]);
|
|
37022
37088
|
};
|
|
37023
37089
|
|
|
37090
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, [
|
|
37091
|
+
/* harmony export */ "formTemplate", 0, /* binding */ formTemplate
|
|
37092
|
+
/* harmony export */ ]);
|
|
37093
|
+
|
|
37024
37094
|
|
|
37025
37095
|
/***/ }),
|
|
37026
37096
|
|
|
@@ -37047,7 +37117,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.mediaBlocks = [
|
|
|
37047
37117
|
/***/ }),
|
|
37048
37118
|
|
|
37049
37119
|
/***/ 76830:
|
|
37050
|
-
/***/ (function(__unused_webpack_module,
|
|
37120
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
37051
37121
|
|
|
37052
37122
|
"use strict";
|
|
37053
37123
|
/* unused harmony export media */
|
|
@@ -37283,7 +37353,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_3__.Config.prototype.controls.dots = {
|
|
|
37283
37353
|
/***/ }),
|
|
37284
37354
|
|
|
37285
37355
|
/***/ 74240:
|
|
37286
|
-
/***/ (function(__unused_webpack_module,
|
|
37356
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
37287
37357
|
|
|
37288
37358
|
"use strict";
|
|
37289
37359
|
/* unused harmony export mobile */
|
|
@@ -37494,7 +37564,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_2__.Config.prototype.controls.ol = {
|
|
|
37494
37564
|
/***/ }),
|
|
37495
37565
|
|
|
37496
37566
|
/***/ 98792:
|
|
37497
|
-
/***/ (function(__unused_webpack_module,
|
|
37567
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
37498
37568
|
|
|
37499
37569
|
"use strict";
|
|
37500
37570
|
/* unused harmony export orderedList */
|
|
@@ -37550,7 +37620,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_2__.Config.prototype.controls.ol = {
|
|
|
37550
37620
|
]);
|
|
37551
37621
|
}
|
|
37552
37622
|
}
|
|
37553
|
-
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
37623
|
+
;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
37554
37624
|
jodit_core_decorators__WEBPACK_IMPORTED_MODULE_2__.autobind
|
|
37555
37625
|
], orderedList.prototype, "onCommand", null);
|
|
37556
37626
|
jodit_core_global__WEBPACK_IMPORTED_MODULE_3__.pluginSystem.add('orderedList', orderedList);
|
|
@@ -37594,7 +37664,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_1__.Config.prototype.pasteFromWordActionLi
|
|
|
37594
37664
|
/***/ }),
|
|
37595
37665
|
|
|
37596
37666
|
/***/ 96730:
|
|
37597
|
-
/***/ (function(__unused_webpack_module,
|
|
37667
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
37598
37668
|
|
|
37599
37669
|
"use strict";
|
|
37600
37670
|
/* unused harmony export pasteFromWord */
|
|
@@ -37668,10 +37738,10 @@ class pasteFromWord extends jodit_core_plugin__WEBPACK_IMPORTED_MODULE_6__.Plugi
|
|
|
37668
37738
|
break;
|
|
37669
37739
|
}
|
|
37670
37740
|
}
|
|
37671
|
-
(0,jodit_plugins_paste_helpers__WEBPACK_IMPORTED_MODULE_8__.pasteInsertHtml)(e, this.j, html);
|
|
37741
|
+
;(0,jodit_plugins_paste_helpers__WEBPACK_IMPORTED_MODULE_8__.pasteInsertHtml)(e, this.j, html);
|
|
37672
37742
|
}
|
|
37673
37743
|
}
|
|
37674
|
-
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(pasteFromWord, "requires", [
|
|
37744
|
+
;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(pasteFromWord, "requires", [
|
|
37675
37745
|
'paste'
|
|
37676
37746
|
]);
|
|
37677
37747
|
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
@@ -37683,7 +37753,7 @@ jodit_core_global__WEBPACK_IMPORTED_MODULE_4__.pluginSystem.add('pasteFromWord',
|
|
|
37683
37753
|
/***/ }),
|
|
37684
37754
|
|
|
37685
37755
|
/***/ 7758:
|
|
37686
|
-
/***/ (function(__unused_webpack_module,
|
|
37756
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
37687
37757
|
|
|
37688
37758
|
"use strict";
|
|
37689
37759
|
/* unused harmony export pasteStorage */
|
|
@@ -38093,7 +38163,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_2__.Config.prototype.controls.paste = {
|
|
|
38093
38163
|
/***/ }),
|
|
38094
38164
|
|
|
38095
38165
|
/***/ 23422:
|
|
38096
|
-
/***/ (function(__unused_webpack_module,
|
|
38166
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
38097
38167
|
|
|
38098
38168
|
"use strict";
|
|
38099
38169
|
/* unused harmony export paste */
|
|
@@ -38247,7 +38317,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_2__.Config.prototype.controls.paste = {
|
|
|
38247
38317
|
}
|
|
38248
38318
|
}
|
|
38249
38319
|
}
|
|
38250
|
-
(0,_helpers__WEBPACK_IMPORTED_MODULE_9__.pasteInsertHtml)(e, this.j, html);
|
|
38320
|
+
;(0,_helpers__WEBPACK_IMPORTED_MODULE_9__.pasteInsertHtml)(e, this.j, html);
|
|
38251
38321
|
}
|
|
38252
38322
|
/**
|
|
38253
38323
|
* Escape plain text and replace all \\n chars with br
|
|
@@ -38266,7 +38336,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_2__.Config.prototype.controls.paste = {
|
|
|
38266
38336
|
*/ (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "_isDialogOpened", false);
|
|
38267
38337
|
}
|
|
38268
38338
|
}
|
|
38269
|
-
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
38339
|
+
;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
38270
38340
|
jodit_core_decorators__WEBPACK_IMPORTED_MODULE_3__.autobind
|
|
38271
38341
|
], paste.prototype, "onPaste", null);
|
|
38272
38342
|
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
@@ -38297,7 +38367,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.useInputsPlaceholder
|
|
|
38297
38367
|
/***/ }),
|
|
38298
38368
|
|
|
38299
38369
|
/***/ 28346:
|
|
38300
|
-
/***/ (function(__unused_webpack_module,
|
|
38370
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
38301
38371
|
|
|
38302
38372
|
"use strict";
|
|
38303
38373
|
/* unused harmony exports isEditorEmpty, placeholder */
|
|
@@ -38399,7 +38469,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.useInputsPlaceholder
|
|
|
38399
38469
|
lineHeight: style.getPropertyValue('line-height')
|
|
38400
38470
|
});
|
|
38401
38471
|
}
|
|
38402
|
-
(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_8__.css)(this.placeholderElm, {
|
|
38472
|
+
;(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_8__.css)(this.placeholderElm, {
|
|
38403
38473
|
display: 'block',
|
|
38404
38474
|
textAlign: style.getPropertyValue('text-align'),
|
|
38405
38475
|
paddingTop: parseInt(styleEditor.paddingTop, 10) + 'px',
|
|
@@ -38446,7 +38516,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.useInputsPlaceholder
|
|
|
38446
38516
|
});
|
|
38447
38517
|
}
|
|
38448
38518
|
}
|
|
38449
|
-
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
38519
|
+
;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
38450
38520
|
(0,jodit_core_decorators__WEBPACK_IMPORTED_MODULE_3__.debounce)((ctx)=>ctx.defaultTimeout / 10, true)
|
|
38451
38521
|
], placeholder.prototype, "toggle", null);
|
|
38452
38522
|
jodit_core_global__WEBPACK_IMPORTED_MODULE_5__.pluginSystem.add('placeholder', placeholder);
|
|
@@ -38455,7 +38525,7 @@ jodit_core_global__WEBPACK_IMPORTED_MODULE_5__.pluginSystem.add('placeholder', p
|
|
|
38455
38525
|
/***/ }),
|
|
38456
38526
|
|
|
38457
38527
|
/***/ 198:
|
|
38458
|
-
/***/ (function(__unused_webpack_module,
|
|
38528
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
38459
38529
|
|
|
38460
38530
|
"use strict";
|
|
38461
38531
|
/* unused harmony export poweredByJodit */
|
|
@@ -38490,7 +38560,7 @@ jodit_core_global__WEBPACK_IMPORTED_MODULE_0__.pluginSystem.add('poweredByJodit'
|
|
|
38490
38560
|
/***/ }),
|
|
38491
38561
|
|
|
38492
38562
|
/***/ 49690:
|
|
38493
|
-
/***/ (function(__unused_webpack_module,
|
|
38563
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
38494
38564
|
|
|
38495
38565
|
"use strict";
|
|
38496
38566
|
/* unused harmony export preview */
|
|
@@ -38583,7 +38653,7 @@ jodit_core_global__WEBPACK_IMPORTED_MODULE_1__.pluginSystem.add('preview', previ
|
|
|
38583
38653
|
return finalCSS;
|
|
38584
38654
|
}
|
|
38585
38655
|
constructor(w, d, opts){
|
|
38586
|
-
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "css", {});
|
|
38656
|
+
;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "css", {});
|
|
38587
38657
|
const opt = opts || {};
|
|
38588
38658
|
const pushCSS = (r)=>{
|
|
38589
38659
|
const selectorText = r.selectorText.split(',').map((a)=>a.trim()).sort().join(',');
|
|
@@ -38637,7 +38707,7 @@ jodit_core_global__WEBPACK_IMPORTED_MODULE_1__.pluginSystem.add('preview', previ
|
|
|
38637
38707
|
/***/ }),
|
|
38638
38708
|
|
|
38639
38709
|
/***/ 41134:
|
|
38640
|
-
/***/ (function(__unused_webpack_module,
|
|
38710
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
38641
38711
|
|
|
38642
38712
|
"use strict";
|
|
38643
38713
|
/* unused harmony export print */
|
|
@@ -38721,7 +38791,7 @@ jodit_core_global__WEBPACK_IMPORTED_MODULE_2__.pluginSystem.add('print', print);
|
|
|
38721
38791
|
/***/ }),
|
|
38722
38792
|
|
|
38723
38793
|
/***/ 59758:
|
|
38724
|
-
/***/ (function(__unused_webpack_module,
|
|
38794
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
38725
38795
|
|
|
38726
38796
|
"use strict";
|
|
38727
38797
|
/* unused harmony export redoUndo */
|
|
@@ -38826,7 +38896,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.tableAllowCellResize
|
|
|
38826
38896
|
/***/ }),
|
|
38827
38897
|
|
|
38828
38898
|
/***/ 14248:
|
|
38829
|
-
/***/ (function(__unused_webpack_module,
|
|
38899
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
38830
38900
|
|
|
38831
38901
|
"use strict";
|
|
38832
38902
|
/* unused harmony export resizeCells */
|
|
@@ -39031,7 +39101,7 @@ const key = 'table_processor_observer-resize';
|
|
|
39031
39101
|
return;
|
|
39032
39102
|
}
|
|
39033
39103
|
editor.e.off(this.j.ow, '.resize-cells').off('.resize-cells').on('change.resize-cells afterCommand.resize-cells afterSetMode.resize-cells', ()=>{
|
|
39034
|
-
(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_6__.$$)('table', editor.editor).forEach(this.observe);
|
|
39104
|
+
;(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_6__.$$)('table', editor.editor).forEach(this.observe);
|
|
39035
39105
|
}).on(this.j.ow, 'scroll.resize-cells', ()=>{
|
|
39036
39106
|
if (!this.drag) {
|
|
39037
39107
|
return;
|
|
@@ -39055,7 +39125,7 @@ const key = 'table_processor_observer-resize';
|
|
|
39055
39125
|
if ((0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_6__.dataBind)(table, key)) {
|
|
39056
39126
|
return;
|
|
39057
39127
|
}
|
|
39058
|
-
(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_6__.dataBind)(table, key, true);
|
|
39128
|
+
;(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_6__.dataBind)(table, key, true);
|
|
39059
39129
|
this.j.e.on(table, 'mouseleave.resize-cells', (e)=>{
|
|
39060
39130
|
if (this.resizeHandler && this.resizeHandler !== e.relatedTarget) {
|
|
39061
39131
|
this.hideResizeHandle();
|
|
@@ -39091,7 +39161,7 @@ const key = 'table_processor_observer-resize';
|
|
|
39091
39161
|
}), (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "hideTimeout", 0), (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "drag", false), (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "wholeTable", void 0), (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "workCell", void 0), (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "workTable", void 0), (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "minX", 0), (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "maxX", 0), (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "startX", 0);
|
|
39092
39162
|
}
|
|
39093
39163
|
}
|
|
39094
|
-
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
39164
|
+
;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
39095
39165
|
jodit_core_decorators__WEBPACK_IMPORTED_MODULE_3__.autobind
|
|
39096
39166
|
], resizeCells.prototype, "onHandleMouseDown", null);
|
|
39097
39167
|
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
@@ -39127,7 +39197,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.allowResizeY = true;
|
|
|
39127
39197
|
/***/ }),
|
|
39128
39198
|
|
|
39129
39199
|
/***/ 72214:
|
|
39130
|
-
/***/ (function(__unused_webpack_module,
|
|
39200
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
39131
39201
|
|
|
39132
39202
|
"use strict";
|
|
39133
39203
|
/* unused harmony export resizeHandler */
|
|
@@ -39239,7 +39309,7 @@ class resizeHandler extends jodit_core_plugin__WEBPACK_IMPORTED_MODULE_7__.Plugi
|
|
|
39239
39309
|
*/ (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "handle", this.j.c.div('jodit-editor__resize', jodit_core_ui__WEBPACK_IMPORTED_MODULE_8__.Icon.get('resize_handler')));
|
|
39240
39310
|
}
|
|
39241
39311
|
}
|
|
39242
|
-
/** @override **/ (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(resizeHandler, "requires", [
|
|
39312
|
+
/** @override **/ ;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(resizeHandler, "requires", [
|
|
39243
39313
|
'size'
|
|
39244
39314
|
]);
|
|
39245
39315
|
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
@@ -39289,7 +39359,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.resizer = {
|
|
|
39289
39359
|
/***/ }),
|
|
39290
39360
|
|
|
39291
39361
|
/***/ 74522:
|
|
39292
|
-
/***/ (function(__unused_webpack_module,
|
|
39362
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
39293
39363
|
|
|
39294
39364
|
"use strict";
|
|
39295
39365
|
/* unused harmony export resizer */
|
|
@@ -39527,7 +39597,7 @@ const keyBInd = '__jodit-resizer_binded';
|
|
|
39527
39597
|
this.updateSize();
|
|
39528
39598
|
}
|
|
39529
39599
|
}
|
|
39530
|
-
(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_6__.$$)('iframe', this.j.editor).forEach(this.__bind);
|
|
39600
|
+
;(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_6__.$$)('iframe', this.j.editor).forEach(this.__bind);
|
|
39531
39601
|
}
|
|
39532
39602
|
/**
|
|
39533
39603
|
* Bind an edit element to element
|
|
@@ -39536,7 +39606,7 @@ const keyBInd = '__jodit-resizer_binded';
|
|
|
39536
39606
|
if (!jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_4__.Dom.isHTMLElement(element) || !this.j.o.allowResizeTags.has(element.tagName.toLowerCase()) || (0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_6__.dataBind)(element, keyBInd)) {
|
|
39537
39607
|
return;
|
|
39538
39608
|
}
|
|
39539
|
-
(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_6__.dataBind)(element, keyBInd, true);
|
|
39609
|
+
;(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_6__.dataBind)(element, keyBInd, true);
|
|
39540
39610
|
let wrapper;
|
|
39541
39611
|
if (jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_4__.Dom.isTag(element, 'iframe')) {
|
|
39542
39612
|
const iframe = element;
|
|
@@ -39567,7 +39637,7 @@ const keyBInd = '__jodit-resizer_binded';
|
|
|
39567
39637
|
this.j.e.off(element, 'mousedown.select touchstart.select').on(element, 'mousedown.select touchstart.select', ()=>{
|
|
39568
39638
|
this.j.s.select(element);
|
|
39569
39639
|
}).off(element, 'changesize').on(element, 'changesize', ()=>{
|
|
39570
|
-
(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_6__.attr)(iframe, 'width', element.offsetWidth + 'px');
|
|
39640
|
+
;(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_6__.attr)(iframe, 'width', element.offsetWidth + 'px');
|
|
39571
39641
|
(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_6__.attr)(iframe, 'height', element.offsetHeight + 'px');
|
|
39572
39642
|
});
|
|
39573
39643
|
}
|
|
@@ -39589,7 +39659,7 @@ const keyBInd = '__jodit-resizer_binded';
|
|
|
39589
39659
|
this.hideSizeViewer();
|
|
39590
39660
|
return;
|
|
39591
39661
|
}
|
|
39592
|
-
(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_6__.css)(this.sizeViewer, 'opacity', '1');
|
|
39662
|
+
;(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_6__.css)(this.sizeViewer, 'opacity', '1');
|
|
39593
39663
|
this.sizeViewer.textContent = `${w} x ${h}`;
|
|
39594
39664
|
this.j.async.setTimeout(this.hideSizeViewer, {
|
|
39595
39665
|
timeout: this.j.o.resizer.hideSizeTimeout,
|
|
@@ -39675,7 +39745,7 @@ const keyBInd = '__jodit-resizer_binded';
|
|
|
39675
39745
|
});
|
|
39676
39746
|
}
|
|
39677
39747
|
}
|
|
39678
|
-
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
39748
|
+
;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
39679
39749
|
(0,jodit_core_decorators__WEBPACK_IMPORTED_MODULE_3__.watch)(':click')
|
|
39680
39750
|
], resizer.prototype, "onEditorClick", null);
|
|
39681
39751
|
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
@@ -40033,7 +40103,7 @@ class SentenceFinder {
|
|
|
40033
40103
|
return results.length === 0 ? null : results;
|
|
40034
40104
|
}
|
|
40035
40105
|
constructor(searchIndex = jodit_core_helpers_string_fuzzy_search_index__WEBPACK_IMPORTED_MODULE_1__.fuzzySearchIndex){
|
|
40036
|
-
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "searchIndex", void 0);
|
|
40106
|
+
;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "searchIndex", void 0);
|
|
40037
40107
|
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "queue", void 0);
|
|
40038
40108
|
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "value", void 0);
|
|
40039
40109
|
this.searchIndex = searchIndex;
|
|
@@ -40046,7 +40116,7 @@ class SentenceFinder {
|
|
|
40046
40116
|
/***/ }),
|
|
40047
40117
|
|
|
40048
40118
|
/***/ 30500:
|
|
40049
|
-
/***/ (function(__unused_webpack_module,
|
|
40119
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
40050
40120
|
|
|
40051
40121
|
"use strict";
|
|
40052
40122
|
/* unused harmony export search */
|
|
@@ -40293,7 +40363,7 @@ class SentenceFinder {
|
|
|
40293
40363
|
editor.e.on('beforeSetMode.search', ()=>{
|
|
40294
40364
|
this.ui.close();
|
|
40295
40365
|
}).on(this.ui, 'afterClose', ()=>{
|
|
40296
|
-
(0,_helpers__WEBPACK_IMPORTED_MODULE_10__.clearSelectionWrappers)(editor);
|
|
40366
|
+
;(0,_helpers__WEBPACK_IMPORTED_MODULE_10__.clearSelectionWrappers)(editor);
|
|
40297
40367
|
this.ui.currentIndex = 0;
|
|
40298
40368
|
this.ui.count = 0;
|
|
40299
40369
|
this.cache = {};
|
|
@@ -40368,7 +40438,7 @@ class SentenceFinder {
|
|
|
40368
40438
|
]), (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_1__._)(this, "previousQuery", ''), (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_1__._)(this, "drawPromise", null), (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_1__._)(this, "walker", null), (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_1__._)(this, "walkerCount", null), (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_1__._)(this, "cache", {}), (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_1__._)(this, "wrapFrameRequest", 0);
|
|
40369
40439
|
}
|
|
40370
40440
|
}
|
|
40371
|
-
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_2__.__decorate)([
|
|
40441
|
+
;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_2__.__decorate)([
|
|
40372
40442
|
jodit_core_decorators__WEBPACK_IMPORTED_MODULE_4__.cache
|
|
40373
40443
|
], search.prototype, "ui", null);
|
|
40374
40444
|
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_2__.__decorate)([
|
|
@@ -40614,7 +40684,7 @@ class UISearch extends jodit_core_ui__WEBPACK_IMPORTED_MODULE_7__.UIElement {
|
|
|
40614
40684
|
})());
|
|
40615
40685
|
}
|
|
40616
40686
|
}
|
|
40617
|
-
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_2__.__decorate)([
|
|
40687
|
+
;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_2__.__decorate)([
|
|
40618
40688
|
(0,jodit_core_decorators__WEBPACK_IMPORTED_MODULE_4__.watch)([
|
|
40619
40689
|
':keydown',
|
|
40620
40690
|
'queryInput:keydown'
|
|
@@ -40654,7 +40724,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.tableAllowCellSelecti
|
|
|
40654
40724
|
/***/ }),
|
|
40655
40725
|
|
|
40656
40726
|
/***/ 2756:
|
|
40657
|
-
/***/ (function(__unused_webpack_module,
|
|
40727
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
40658
40728
|
|
|
40659
40729
|
"use strict";
|
|
40660
40730
|
/* unused harmony export selectCells */
|
|
@@ -41011,7 +41081,7 @@ class selectCells extends jodit_core_plugin__WEBPACK_IMPORTED_MODULE_7__.Plugin
|
|
|
41011
41081
|
*/ (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "__isSelectionMode", false);
|
|
41012
41082
|
}
|
|
41013
41083
|
}
|
|
41014
|
-
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(selectCells, "requires", [
|
|
41084
|
+
;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(selectCells, "requires", [
|
|
41015
41085
|
'select'
|
|
41016
41086
|
]);
|
|
41017
41087
|
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
@@ -41061,7 +41131,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.select = {
|
|
|
41061
41131
|
/***/ }),
|
|
41062
41132
|
|
|
41063
41133
|
/***/ 98988:
|
|
41064
|
-
/***/ (function(__unused_webpack_module,
|
|
41134
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
41065
41135
|
|
|
41066
41136
|
"use strict";
|
|
41067
41137
|
/* unused harmony export select */
|
|
@@ -41240,7 +41310,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.select = {
|
|
|
41240
41310
|
]);
|
|
41241
41311
|
}
|
|
41242
41312
|
}
|
|
41243
|
-
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
41313
|
+
;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
41244
41314
|
jodit_core_decorators__WEBPACK_IMPORTED_MODULE_3__.autobind
|
|
41245
41315
|
], select.prototype, "onStartSelection", null);
|
|
41246
41316
|
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
@@ -41320,7 +41390,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.maxHeight = 'auto';
|
|
|
41320
41390
|
/***/ }),
|
|
41321
41391
|
|
|
41322
41392
|
/***/ 44322:
|
|
41323
|
-
/***/ (function(__unused_webpack_module,
|
|
41393
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
41324
41394
|
|
|
41325
41395
|
"use strict";
|
|
41326
41396
|
/* unused harmony export size */
|
|
@@ -41375,7 +41445,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.maxHeight = 'auto';
|
|
|
41375
41445
|
height = localHeight;
|
|
41376
41446
|
}
|
|
41377
41447
|
}
|
|
41378
|
-
(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_5__.css)(j.editor, {
|
|
41448
|
+
;(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_5__.css)(j.editor, {
|
|
41379
41449
|
minHeight: '100%'
|
|
41380
41450
|
});
|
|
41381
41451
|
(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_5__.css)(j.container, {
|
|
@@ -41402,7 +41472,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.maxHeight = 'auto';
|
|
|
41402
41472
|
height = maxHeight;
|
|
41403
41473
|
}
|
|
41404
41474
|
}
|
|
41405
|
-
(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_5__.css)(this.j.container, 'height', height);
|
|
41475
|
+
;(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_5__.css)(this.j.container, 'height', height);
|
|
41406
41476
|
if (this.j.o.saveHeightInStorage) {
|
|
41407
41477
|
this.j.storage.set('height', height);
|
|
41408
41478
|
}
|
|
@@ -41424,7 +41494,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.maxHeight = 'auto';
|
|
|
41424
41494
|
width = maxWidth;
|
|
41425
41495
|
}
|
|
41426
41496
|
}
|
|
41427
|
-
(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_5__.css)(this.j.container, 'width', width);
|
|
41497
|
+
;(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_5__.css)(this.j.container, 'width', width);
|
|
41428
41498
|
this.__resizeWorkspaceImd({
|
|
41429
41499
|
clientHeight,
|
|
41430
41500
|
clientWidth
|
|
@@ -41495,7 +41565,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.maxHeight = 'auto';
|
|
|
41495
41565
|
*/ (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "__resizeWorkspaces", this.j.async.debounce(this.__resizeWorkspaceImd, this.j.defaultTimeout, true));
|
|
41496
41566
|
}
|
|
41497
41567
|
}
|
|
41498
|
-
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
41568
|
+
;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
41499
41569
|
(0,jodit_core_decorators__WEBPACK_IMPORTED_MODULE_2__.throttle)()
|
|
41500
41570
|
], size.prototype, "__initialize", null);
|
|
41501
41571
|
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
@@ -41885,10 +41955,10 @@ class TextAreaEditor extends jodit_plugins_source_editor_sourceEditor__WEBPACK_I
|
|
|
41885
41955
|
this.instance.blur();
|
|
41886
41956
|
}
|
|
41887
41957
|
setPlaceHolder(title) {
|
|
41888
|
-
(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_2__.attr)(this.instance, 'placeholder', title);
|
|
41958
|
+
;(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_2__.attr)(this.instance, 'placeholder', title);
|
|
41889
41959
|
}
|
|
41890
41960
|
setReadOnly(isReadOnly) {
|
|
41891
|
-
(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_2__.attr)(this.instance, 'readonly', isReadOnly ? 'true' : null);
|
|
41961
|
+
;(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_2__.attr)(this.instance, 'readonly', isReadOnly ? 'true' : null);
|
|
41892
41962
|
}
|
|
41893
41963
|
selectAll() {
|
|
41894
41964
|
this.instance.select();
|
|
@@ -42017,7 +42087,7 @@ class SourceEditor {
|
|
|
42017
42087
|
}
|
|
42018
42088
|
}
|
|
42019
42089
|
constructor(jodit, container, toWYSIWYG, fromWYSIWYG){
|
|
42020
|
-
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "jodit", void 0);
|
|
42090
|
+
;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "jodit", void 0);
|
|
42021
42091
|
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "container", void 0);
|
|
42022
42092
|
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "toWYSIWYG", void 0);
|
|
42023
42093
|
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "fromWYSIWYG", void 0);
|
|
@@ -42037,7 +42107,7 @@ class SourceEditor {
|
|
|
42037
42107
|
/***/ }),
|
|
42038
42108
|
|
|
42039
42109
|
/***/ 13810:
|
|
42040
|
-
/***/ (function(__unused_webpack_module,
|
|
42110
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
42041
42111
|
|
|
42042
42112
|
"use strict";
|
|
42043
42113
|
/* unused harmony export source */
|
|
@@ -42316,7 +42386,7 @@ class SourceEditor {
|
|
|
42316
42386
|
});
|
|
42317
42387
|
}
|
|
42318
42388
|
}
|
|
42319
|
-
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
42389
|
+
;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
42320
42390
|
(0,jodit_core_decorators__WEBPACK_IMPORTED_MODULE_3__.watch)(':insertHTML.source')
|
|
42321
42391
|
], source.prototype, "onInsertHTML", null);
|
|
42322
42392
|
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
@@ -42832,7 +42902,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
42832
42902
|
/***/ }),
|
|
42833
42903
|
|
|
42834
42904
|
/***/ 90204:
|
|
42835
|
-
/***/ (function(__unused_webpack_module,
|
|
42905
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
42836
42906
|
|
|
42837
42907
|
"use strict";
|
|
42838
42908
|
/* unused harmony export spellcheck */
|
|
@@ -42871,7 +42941,7 @@ class spellcheck extends jodit_core_plugin__WEBPACK_IMPORTED_MODULE_5__.Plugin {
|
|
|
42871
42941
|
});
|
|
42872
42942
|
}
|
|
42873
42943
|
toggleSpellcheck() {
|
|
42874
|
-
(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_4__.attr)(this.jodit.editor, 'spellcheck', this.jodit.o.spellcheck);
|
|
42944
|
+
;(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_4__.attr)(this.jodit.editor, 'spellcheck', this.jodit.o.spellcheck);
|
|
42875
42945
|
}
|
|
42876
42946
|
beforeDestruct(jodit) {}
|
|
42877
42947
|
constructor(jodit){
|
|
@@ -42884,7 +42954,7 @@ class spellcheck extends jodit_core_plugin__WEBPACK_IMPORTED_MODULE_5__.Plugin {
|
|
|
42884
42954
|
(0,jodit_core_global__WEBPACK_IMPORTED_MODULE_3__.extendLang)(_langs__WEBPACK_IMPORTED_MODULE_7__);
|
|
42885
42955
|
}
|
|
42886
42956
|
}
|
|
42887
|
-
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
42957
|
+
;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
42888
42958
|
jodit_core_decorators__WEBPACK_IMPORTED_MODULE_2__.autobind
|
|
42889
42959
|
], spellcheck.prototype, "toggleSpellcheck", null);
|
|
42890
42960
|
jodit_core_global__WEBPACK_IMPORTED_MODULE_3__.pluginSystem.add('spellcheck', spellcheck);
|
|
@@ -42913,7 +42983,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.showWordsCounter = tr
|
|
|
42913
42983
|
/***/ }),
|
|
42914
42984
|
|
|
42915
42985
|
/***/ 86236:
|
|
42916
|
-
/***/ (function(__unused_webpack_module,
|
|
42986
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
42917
42987
|
|
|
42918
42988
|
"use strict";
|
|
42919
42989
|
/* unused harmony export stat */
|
|
@@ -43009,7 +43079,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.toolbarStickyOffset =
|
|
|
43009
43079
|
/***/ }),
|
|
43010
43080
|
|
|
43011
43081
|
/***/ 67582:
|
|
43012
|
-
/***/ (function(__unused_webpack_module,
|
|
43082
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
43013
43083
|
|
|
43014
43084
|
"use strict";
|
|
43015
43085
|
/* unused harmony export sticky */
|
|
@@ -43090,7 +43160,7 @@ class sticky extends jodit_core_plugin_plugin__WEBPACK_IMPORTED_MODULE_7__.Plugi
|
|
|
43090
43160
|
this.__isToolbarStuck = true;
|
|
43091
43161
|
}
|
|
43092
43162
|
// on resize, it should work always
|
|
43093
|
-
(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_6__.css)(toolbar, {
|
|
43163
|
+
;(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_6__.css)(toolbar, {
|
|
43094
43164
|
top: this.j.o.toolbarStickyOffset || null,
|
|
43095
43165
|
width: this.j.container.offsetWidth - 2
|
|
43096
43166
|
});
|
|
@@ -43103,7 +43173,7 @@ class sticky extends jodit_core_plugin_plugin__WEBPACK_IMPORTED_MODULE_7__.Plugi
|
|
|
43103
43173
|
if (!this.__isToolbarStuck) {
|
|
43104
43174
|
return;
|
|
43105
43175
|
}
|
|
43106
|
-
(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_6__.css)(toolbar, {
|
|
43176
|
+
;(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_6__.css)(toolbar, {
|
|
43107
43177
|
width: '',
|
|
43108
43178
|
top: ''
|
|
43109
43179
|
});
|
|
@@ -43112,7 +43182,7 @@ class sticky extends jodit_core_plugin_plugin__WEBPACK_IMPORTED_MODULE_7__.Plugi
|
|
|
43112
43182
|
});
|
|
43113
43183
|
}
|
|
43114
43184
|
}
|
|
43115
|
-
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
43185
|
+
;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
43116
43186
|
(0,jodit_core_decorators__WEBPACK_IMPORTED_MODULE_3__.throttle)()
|
|
43117
43187
|
], sticky.prototype, "__onScroll", null);
|
|
43118
43188
|
jodit_core_global__WEBPACK_IMPORTED_MODULE_5__.pluginSystem.add('sticky', sticky);
|
|
@@ -43793,7 +43863,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
43793
43863
|
/***/ }),
|
|
43794
43864
|
|
|
43795
43865
|
/***/ 11774:
|
|
43796
|
-
/***/ (function(__unused_webpack_module,
|
|
43866
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
43797
43867
|
|
|
43798
43868
|
"use strict";
|
|
43799
43869
|
/* unused harmony export symbols */
|
|
@@ -44132,7 +44202,7 @@ class tab extends jodit_core_plugin__WEBPACK_IMPORTED_MODULE_4__.Plugin {
|
|
|
44132
44202
|
}
|
|
44133
44203
|
beforeDestruct(jodit) {}
|
|
44134
44204
|
}
|
|
44135
|
-
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_0__.__decorate)([
|
|
44205
|
+
;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_0__.__decorate)([
|
|
44136
44206
|
(0,jodit_core_decorators__WEBPACK_IMPORTED_MODULE_2__.watch)(':keydown.tab')
|
|
44137
44207
|
], tab.prototype, "__onTab", null);
|
|
44138
44208
|
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_0__.__decorate)([
|
|
@@ -44144,7 +44214,7 @@ jodit_core_global__WEBPACK_IMPORTED_MODULE_3__.pluginSystem.add('tab', tab);
|
|
|
44144
44214
|
/***/ }),
|
|
44145
44215
|
|
|
44146
44216
|
/***/ 30110:
|
|
44147
|
-
/***/ (function(__unused_webpack_module,
|
|
44217
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
44148
44218
|
|
|
44149
44219
|
"use strict";
|
|
44150
44220
|
/* unused harmony export tableKeyboardNavigation */
|
|
@@ -44371,7 +44441,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_5__.Config.prototype.controls.table = {
|
|
|
44371
44441
|
if (!first_td) {
|
|
44372
44442
|
first_td = td;
|
|
44373
44443
|
}
|
|
44374
|
-
(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_2__.css)(td, 'width', (100 / cols_count).toFixed(4) + '%');
|
|
44444
|
+
;(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_2__.css)(td, 'width', (100 / cols_count).toFixed(4) + '%');
|
|
44375
44445
|
jodit_core_dom__WEBPACK_IMPORTED_MODULE_1__.Dom.append(td, crt.element('br'));
|
|
44376
44446
|
jodit_core_dom__WEBPACK_IMPORTED_MODULE_1__.Dom.append(tr, crt.text('\n'));
|
|
44377
44447
|
jodit_core_dom__WEBPACK_IMPORTED_MODULE_1__.Dom.append(tr, crt.text('\t'));
|
|
@@ -44380,7 +44450,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_5__.Config.prototype.controls.table = {
|
|
|
44380
44450
|
jodit_core_dom__WEBPACK_IMPORTED_MODULE_1__.Dom.append(tbody, crt.text('\n'));
|
|
44381
44451
|
jodit_core_dom__WEBPACK_IMPORTED_MODULE_1__.Dom.append(tbody, tr);
|
|
44382
44452
|
}
|
|
44383
|
-
(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_2__.$$)('input[type=checkbox]:checked', options).forEach((input)=>{
|
|
44453
|
+
;(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_2__.$$)('input[type=checkbox]:checked', options).forEach((input)=>{
|
|
44384
44454
|
input.value.split(/[\s]+/).forEach((className)=>{
|
|
44385
44455
|
table.classList.add(className);
|
|
44386
44456
|
});
|
|
@@ -44497,7 +44567,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_5__.Config.prototype.controls.table = {
|
|
|
44497
44567
|
/***/ }),
|
|
44498
44568
|
|
|
44499
44569
|
/***/ 7994:
|
|
44500
|
-
/***/ (function(__unused_webpack_module,
|
|
44570
|
+
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
44501
44571
|
|
|
44502
44572
|
"use strict";
|
|
44503
44573
|
/* unused harmony export table */
|
|
@@ -44778,7 +44848,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.wrapNodes = {
|
|
|
44778
44848
|
*/ (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "isNotWrapped", (n)=>jodit_core_dom__WEBPACK_IMPORTED_MODULE_3__.Dom.isElement(n) && !(jodit_core_dom__WEBPACK_IMPORTED_MODULE_3__.Dom.isBlock(n) || jodit_core_dom__WEBPACK_IMPORTED_MODULE_3__.Dom.isTag(n, this.j.o.wrapNodes.exclude)));
|
|
44779
44849
|
}
|
|
44780
44850
|
}
|
|
44781
|
-
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
44851
|
+
;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
44782
44852
|
jodit_core_decorators__WEBPACK_IMPORTED_MODULE_2__.autobind
|
|
44783
44853
|
], wrapNodes.prototype, "postProcessSetEditorValue", null);
|
|
44784
44854
|
(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
|
|
@@ -46048,7 +46118,7 @@ function _object_spread(target) {
|
|
|
46048
46118
|
}));
|
|
46049
46119
|
}
|
|
46050
46120
|
ownKeys.forEach(function(key) {
|
|
46051
|
-
(0,_define_property_js__WEBPACK_IMPORTED_MODULE_0__._)(target, key, source[key]);
|
|
46121
|
+
;(0,_define_property_js__WEBPACK_IMPORTED_MODULE_0__._)(target, key, source[key]);
|
|
46052
46122
|
});
|
|
46053
46123
|
}
|
|
46054
46124
|
return target;
|
|
@@ -46463,10 +46533,10 @@ function __addDisposableResource(env, value, async) {
|
|
|
46463
46533
|
return value;
|
|
46464
46534
|
}
|
|
46465
46535
|
|
|
46466
|
-
var _SuppressedError = typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
|
|
46536
|
+
var _SuppressedError = (/* unused pure expression or super */ null && (typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
|
|
46467
46537
|
var e = new Error(message);
|
|
46468
46538
|
return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
|
|
46469
|
-
};
|
|
46539
|
+
}));
|
|
46470
46540
|
|
|
46471
46541
|
function __disposeResources(env) {
|
|
46472
46542
|
function fail(e) {
|
|
@@ -46503,7 +46573,7 @@ function __rewriteRelativeImportExtension(path, preserveJsx) {
|
|
|
46503
46573
|
return path;
|
|
46504
46574
|
}
|
|
46505
46575
|
|
|
46506
|
-
/* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ({
|
|
46576
|
+
/* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && ({
|
|
46507
46577
|
__extends,
|
|
46508
46578
|
__assign,
|
|
46509
46579
|
__rest,
|
|
@@ -46536,7 +46606,7 @@ function __rewriteRelativeImportExtension(path, preserveJsx) {
|
|
|
46536
46606
|
__addDisposableResource,
|
|
46537
46607
|
__disposeResources,
|
|
46538
46608
|
__rewriteRelativeImportExtension,
|
|
46539
|
-
});
|
|
46609
|
+
})));
|
|
46540
46610
|
|
|
46541
46611
|
|
|
46542
46612
|
/***/ })
|
|
@@ -46619,11 +46689,26 @@ function __rewriteRelativeImportExtension(path, preserveJsx) {
|
|
|
46619
46689
|
/******/
|
|
46620
46690
|
/******/ /* webpack/runtime/define property getters */
|
|
46621
46691
|
/******/ !function() {
|
|
46622
|
-
/******/ // define getter functions for harmony exports
|
|
46692
|
+
/******/ // define getter/value functions for harmony exports
|
|
46623
46693
|
/******/ __webpack_require__.d = function(exports, definition) {
|
|
46624
|
-
/******/
|
|
46625
|
-
/******/
|
|
46626
|
-
/******/
|
|
46694
|
+
/******/ if(Array.isArray(definition)) {
|
|
46695
|
+
/******/ var i = 0;
|
|
46696
|
+
/******/ while(i < definition.length) {
|
|
46697
|
+
/******/ var key = definition[i++];
|
|
46698
|
+
/******/ var binding = definition[i++];
|
|
46699
|
+
/******/ if(!__webpack_require__.o(exports, key)) {
|
|
46700
|
+
/******/ if(binding === 0) {
|
|
46701
|
+
/******/ Object.defineProperty(exports, key, { enumerable: true, value: definition[i++] });
|
|
46702
|
+
/******/ } else {
|
|
46703
|
+
/******/ Object.defineProperty(exports, key, { enumerable: true, get: binding });
|
|
46704
|
+
/******/ }
|
|
46705
|
+
/******/ } else if(binding === 0) { i++; }
|
|
46706
|
+
/******/ }
|
|
46707
|
+
/******/ } else {
|
|
46708
|
+
/******/ for(var key in definition) {
|
|
46709
|
+
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
|
|
46710
|
+
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
|
|
46711
|
+
/******/ }
|
|
46627
46712
|
/******/ }
|
|
46628
46713
|
/******/ }
|
|
46629
46714
|
/******/ };
|