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.
Files changed (61) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/es2015/jodit.css +1 -1
  3. package/es2015/jodit.fat.min.css +1 -1
  4. package/es2015/jodit.fat.min.js +11 -11
  5. package/es2015/jodit.js +632 -547
  6. package/es2015/jodit.min.css +1 -1
  7. package/es2015/jodit.min.js +9 -9
  8. package/es2015/plugins/debug/debug.css +1 -1
  9. package/es2015/plugins/debug/debug.js +1 -1
  10. package/es2015/plugins/debug/debug.min.js +1 -1
  11. package/es2015/plugins/speech-recognize/speech-recognize.css +1 -1
  12. package/es2015/plugins/speech-recognize/speech-recognize.js +11 -33
  13. package/es2015/plugins/speech-recognize/speech-recognize.min.js +2 -2
  14. package/es2018/jodit.fat.min.css +1 -1
  15. package/es2018/jodit.fat.min.js +11 -11
  16. package/es2018/jodit.min.css +1 -1
  17. package/es2018/jodit.min.js +9 -9
  18. package/es2018/plugins/debug/debug.min.js +1 -1
  19. package/es2018/plugins/speech-recognize/speech-recognize.min.js +2 -2
  20. package/es2021/jodit.css +1 -1
  21. package/es2021/jodit.fat.min.css +1 -1
  22. package/es2021/jodit.fat.min.js +16 -16
  23. package/es2021/jodit.js +638 -553
  24. package/es2021/jodit.min.css +1 -1
  25. package/es2021/jodit.min.js +14 -14
  26. package/es2021/plugins/debug/debug.css +1 -1
  27. package/es2021/plugins/debug/debug.js +1 -1
  28. package/es2021/plugins/debug/debug.min.js +1 -1
  29. package/es2021/plugins/speech-recognize/speech-recognize.css +1 -1
  30. package/es2021/plugins/speech-recognize/speech-recognize.js +11 -33
  31. package/es2021/plugins/speech-recognize/speech-recognize.min.js +2 -2
  32. package/es2021.en/jodit.css +1 -1
  33. package/es2021.en/jodit.fat.min.css +1 -1
  34. package/es2021.en/jodit.fat.min.js +55 -55
  35. package/es2021.en/jodit.js +638 -553
  36. package/es2021.en/jodit.min.css +1 -1
  37. package/es2021.en/jodit.min.js +55 -55
  38. package/es2021.en/plugins/debug/debug.css +1 -1
  39. package/es2021.en/plugins/debug/debug.js +1 -1
  40. package/es2021.en/plugins/debug/debug.min.js +1 -1
  41. package/es2021.en/plugins/speech-recognize/speech-recognize.css +1 -1
  42. package/es2021.en/plugins/speech-recognize/speech-recognize.js +11 -33
  43. package/es2021.en/plugins/speech-recognize/speech-recognize.min.js +2 -2
  44. package/es5/jodit.css +2 -2
  45. package/es5/jodit.fat.min.css +1 -1
  46. package/es5/jodit.fat.min.js +2 -2
  47. package/es5/jodit.js +314 -318
  48. package/es5/jodit.min.css +3 -3
  49. package/es5/jodit.min.js +2 -2
  50. package/es5/plugins/debug/debug.css +1 -1
  51. package/es5/plugins/debug/debug.js +2 -2
  52. package/es5/plugins/debug/debug.min.js +1 -1
  53. package/es5/plugins/speech-recognize/speech-recognize.css +1 -1
  54. package/es5/plugins/speech-recognize/speech-recognize.js +3 -3
  55. package/es5/plugins/speech-recognize/speech-recognize.min.js +1 -1
  56. package/es5/polyfills.fat.min.js +2 -2
  57. package/es5/polyfills.js +20 -5
  58. package/es5/polyfills.min.js +2 -2
  59. package/esm/core/constants.js +1 -1
  60. package/esm/plugins/search/ui/search.js +1 -1
  61. package/package.json +1 -1
@@ -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.0
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
 
@@ -1141,7 +1141,7 @@ class Async {
1141
1141
  return timer;
1142
1142
  }
1143
1143
  updateTimeout(label, timeout) {
1144
- (0,jodit_core_helpers_utils_assert__WEBPACK_IMPORTED_MODULE_10__.assert)(label && this.timers.has(label), 'Label does not exist');
1144
+ ;(0,jodit_core_helpers_utils_assert__WEBPACK_IMPORTED_MODULE_10__.assert)(label && this.timers.has(label), 'Label does not exist');
1145
1145
  if (!label || !this.timers.has(label)) {
1146
1146
  return null;
1147
1147
  }
@@ -1163,7 +1163,7 @@ class Async {
1163
1163
  if ((0,jodit_core_helpers_checker_is_string__WEBPACK_IMPORTED_MODULE_8__.isString)(timerOrLabel)) {
1164
1164
  return this.clearLabel(timerOrLabel);
1165
1165
  }
1166
- (0,jodit_core_helpers_async__WEBPACK_IMPORTED_MODULE_2__.clearTimeout)(timerOrLabel);
1166
+ ;(0,jodit_core_helpers_async__WEBPACK_IMPORTED_MODULE_2__.clearTimeout)(timerOrLabel);
1167
1167
  this.timers.delete(timerOrLabel);
1168
1168
  this.__callbacks.delete(timerOrLabel);
1169
1169
  }
@@ -1203,7 +1203,7 @@ class Async {
1203
1203
  if (!timer && firstCallImmediately) {
1204
1204
  callFn(...args);
1205
1205
  }
1206
- (0,jodit_core_helpers_async__WEBPACK_IMPORTED_MODULE_2__.clearTimeout)(timer);
1206
+ ;(0,jodit_core_helpers_async__WEBPACK_IMPORTED_MODULE_2__.clearTimeout)(timer);
1207
1207
  timer = this.setTimeout(()=>callFn(...args), (0,jodit_core_helpers_checker_is_function__WEBPACK_IMPORTED_MODULE_4__.isFunction)(timeout) ? timeout() : timeout);
1208
1208
  this.timers.set(fn, timer);
1209
1209
  }
@@ -1410,7 +1410,7 @@ class Async {
1410
1410
  this.isDestructed = true;
1411
1411
  }
1412
1412
  constructor(){
1413
- (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "timers", new Map());
1413
+ ;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "timers", new Map());
1414
1414
  (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "__callbacks", new Map());
1415
1415
  (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "__queueMicrotaskNative", queueMicrotask?.bind(window) ?? Promise.resolve().then.bind(Promise.resolve()));
1416
1416
  (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "promisesRejections", new Set());
@@ -1635,7 +1635,7 @@ const StatusListHandlers = new Map();
1635
1635
  return c instanceof constructorFunc;
1636
1636
  }
1637
1637
  constructor(){
1638
- (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "__componentName", void 0);
1638
+ ;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "__componentName", void 0);
1639
1639
  (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "async", new jodit_core_async__WEBPACK_IMPORTED_MODULE_1__.Async());
1640
1640
  (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "uid", void 0);
1641
1641
  /**
@@ -1645,7 +1645,7 @@ const StatusListHandlers = new Map();
1645
1645
  this.uid = 'jodit-uid-' + (0,jodit_core_global__WEBPACK_IMPORTED_MODULE_3__.uniqueUid)();
1646
1646
  }
1647
1647
  }
1648
- (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(Component, "STATUSES", jodit_core_component_statuses__WEBPACK_IMPORTED_MODULE_2__.STATUSES);
1648
+ ;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(Component, "STATUSES", jodit_core_component_statuses__WEBPACK_IMPORTED_MODULE_2__.STATUSES);
1649
1649
 
1650
1650
 
1651
1651
  /***/ }),
@@ -1679,9 +1679,6 @@ const StatusListHandlers = new Map();
1679
1679
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
1680
1680
 
1681
1681
  "use strict";
1682
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
1683
- /* harmony export */ STATUSES: function() { return /* binding */ STATUSES; }
1684
- /* harmony export */ });
1685
1682
  /*!
1686
1683
  * Jodit Editor (https://xdsoft.net/jodit/)
1687
1684
  * Released under MIT see LICENSE.txt in the project root for license information.
@@ -1695,6 +1692,10 @@ const StatusListHandlers = new Map();
1695
1692
  destructed: 'destructed'
1696
1693
  };
1697
1694
 
1695
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
1696
+ /* harmony export */ "STATUSES", 0, /* binding */ STATUSES
1697
+ /* harmony export */ ]);
1698
+
1698
1699
 
1699
1700
  /***/ }),
1700
1701
 
@@ -1763,72 +1764,7 @@ class ViewComponent extends _component__WEBPACK_IMPORTED_MODULE_1__.Component {
1763
1764
  "use strict";
1764
1765
  __webpack_require__.r(__webpack_exports__);
1765
1766
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
1766
- /* harmony export */ ACCURACY: function() { return /* binding */ ACCURACY; },
1767
- /* harmony export */ APP_VERSION: function() { return /* binding */ APP_VERSION; },
1768
- /* harmony export */ BASE_PATH: function() { return /* binding */ BASE_PATH; },
1769
- /* harmony export */ BASE_PATH_IS_MIN: function() { return /* binding */ BASE_PATH_IS_MIN; },
1770
- /* harmony export */ BR: function() { return /* binding */ BR; },
1771
- /* harmony export */ CLIPBOARD_ID: function() { return /* binding */ CLIPBOARD_ID; },
1772
- /* harmony export */ COMMAND_KEYS: function() { return /* binding */ COMMAND_KEYS; },
1773
- /* harmony export */ EMULATE_DBLCLICK_TIMEOUT: function() { return /* binding */ EMULATE_DBLCLICK_TIMEOUT; },
1774
- /* harmony export */ ES: function() { return /* binding */ ES; },
1775
- /* harmony export */ FAT_MODE: function() { return /* binding */ FAT_MODE; },
1776
- /* harmony export */ HOMEPAGE: function() { return /* binding */ HOMEPAGE; },
1777
- /* harmony export */ INSEPARABLE_TAGS: function() { return /* binding */ INSEPARABLE_TAGS; },
1778
- /* harmony export */ INSERT_AS_HTML: function() { return /* binding */ INSERT_AS_HTML; },
1779
- /* harmony export */ INSERT_AS_TEXT: function() { return /* binding */ INSERT_AS_TEXT; },
1780
- /* harmony export */ INSERT_CLEAR_HTML: function() { return /* binding */ INSERT_CLEAR_HTML; },
1781
- /* harmony export */ INSERT_ONLY_TEXT: function() { return /* binding */ INSERT_ONLY_TEXT; },
1782
- /* harmony export */ INVISIBLE_SPACE: function() { return /* binding */ INVISIBLE_SPACE; },
1783
- /* harmony export */ INVISIBLE_SPACE_REG_EXP: function() { return /* binding */ INVISIBLE_SPACE_REG_EXP; },
1784
- /* harmony export */ INVISIBLE_SPACE_REG_EXP_END: function() { return /* binding */ INVISIBLE_SPACE_REG_EXP_END; },
1785
- /* harmony export */ INVISIBLE_SPACE_REG_EXP_START: function() { return /* binding */ INVISIBLE_SPACE_REG_EXP_START; },
1786
- /* harmony export */ IS_BLOCK: function() { return /* binding */ IS_BLOCK; },
1787
- /* harmony export */ IS_ES_MODERN: function() { return /* binding */ IS_ES_MODERN; },
1788
- /* harmony export */ IS_ES_NEXT: function() { return /* binding */ IS_ES_NEXT; },
1789
- /* harmony export */ IS_IE: function() { return /* binding */ IS_IE; },
1790
- /* harmony export */ IS_INLINE: function() { return /* binding */ IS_INLINE; },
1791
- /* harmony export */ IS_MAC: function() { return /* binding */ IS_MAC; },
1792
- /* harmony export */ IS_PROD: function() { return /* binding */ IS_PROD; },
1793
- /* harmony export */ IS_TEST: function() { return /* binding */ IS_TEST; },
1794
- /* harmony export */ KEY_ALIASES: function() { return /* binding */ KEY_ALIASES; },
1795
- /* harmony export */ KEY_ALT: function() { return /* binding */ KEY_ALT; },
1796
- /* harmony export */ KEY_BACKSPACE: function() { return /* binding */ KEY_BACKSPACE; },
1797
- /* harmony export */ KEY_DELETE: function() { return /* binding */ KEY_DELETE; },
1798
- /* harmony export */ KEY_DOWN: function() { return /* binding */ KEY_DOWN; },
1799
- /* harmony export */ KEY_ENTER: function() { return /* binding */ KEY_ENTER; },
1800
- /* harmony export */ KEY_ESC: function() { return /* binding */ KEY_ESC; },
1801
- /* harmony export */ KEY_F3: function() { return /* binding */ KEY_F3; },
1802
- /* harmony export */ KEY_LEFT: function() { return /* binding */ KEY_LEFT; },
1803
- /* harmony export */ KEY_META: function() { return /* binding */ KEY_META; },
1804
- /* harmony export */ KEY_RIGHT: function() { return /* binding */ KEY_RIGHT; },
1805
- /* harmony export */ KEY_SPACE: function() { return /* binding */ KEY_SPACE; },
1806
- /* harmony export */ KEY_TAB: function() { return /* binding */ KEY_TAB; },
1807
- /* harmony export */ KEY_UP: function() { return /* binding */ KEY_UP; },
1808
- /* harmony export */ LIST_TAGS: function() { return /* binding */ LIST_TAGS; },
1809
- /* harmony export */ MARKER_CLASS: function() { return /* binding */ MARKER_CLASS; },
1810
- /* harmony export */ MODE_SOURCE: function() { return /* binding */ MODE_SOURCE; },
1811
- /* harmony export */ MODE_SPLIT: function() { return /* binding */ MODE_SPLIT; },
1812
- /* harmony export */ MODE_WYSIWYG: function() { return /* binding */ MODE_WYSIWYG; },
1813
- /* harmony export */ NBSP_SPACE: function() { return /* binding */ NBSP_SPACE; },
1814
- /* harmony export */ NEARBY: function() { return /* binding */ NEARBY; },
1815
- /* harmony export */ NO_EMPTY_TAGS: function() { return /* binding */ NO_EMPTY_TAGS; },
1816
- /* harmony export */ PARAGRAPH: function() { return /* binding */ PARAGRAPH; },
1817
- /* harmony export */ PASSIVE_EVENTS: function() { return /* binding */ PASSIVE_EVENTS; },
1818
- /* harmony export */ SAFE_COUNT_CHANGE_CALL: function() { return /* binding */ SAFE_COUNT_CHANGE_CALL; },
1819
- /* harmony export */ SET_TEST: function() { return /* binding */ SET_TEST; },
1820
- /* harmony export */ SOURCE_CONSUMER: function() { return /* binding */ SOURCE_CONSUMER; },
1821
- /* harmony export */ SPACE_REG_EXP: function() { return /* binding */ SPACE_REG_EXP; },
1822
- /* harmony export */ SPACE_REG_EXP_END: function() { return /* binding */ SPACE_REG_EXP_END; },
1823
- /* harmony export */ SPACE_REG_EXP_START: function() { return /* binding */ SPACE_REG_EXP_START; },
1824
- /* harmony export */ TEMP_ATTR: function() { return /* binding */ TEMP_ATTR; },
1825
- /* harmony export */ TEXT_HTML: function() { return /* binding */ TEXT_HTML; },
1826
- /* harmony export */ TEXT_PLAIN: function() { return /* binding */ TEXT_PLAIN; },
1827
- /* harmony export */ TEXT_RTF: function() { return /* binding */ TEXT_RTF; },
1828
- /* harmony export */ TOKENS: function() { return /* binding */ TOKENS; },
1829
- /* harmony export */ globalDocument: function() { return /* binding */ globalDocument; },
1830
- /* harmony export */ globalWindow: function() { return /* binding */ globalWindow; },
1831
- /* harmony export */ lang: function() { return /* binding */ lang; }
1767
+ /* harmony export */ IS_TEST: function() { return /* binding */ IS_TEST; }
1832
1768
  /* harmony export */ });
1833
1769
  /*!
1834
1770
  * Jodit Editor (https://xdsoft.net/jodit/)
@@ -1843,7 +1779,7 @@ __webpack_require__.r(__webpack_exports__);
1843
1779
  * ```
1844
1780
  * @packageDocumentation
1845
1781
  * @module constants
1846
- */ const APP_VERSION = "4.14.0";
1782
+ */ const APP_VERSION = "4.14.2";
1847
1783
  // prettier-ignore
1848
1784
  const ES = "es2021";
1849
1785
  const IS_ES_MODERN = true;
@@ -2054,6 +1990,74 @@ const PASSIVE_EVENTS = new Set([
2054
1990
  'touchmove'
2055
1991
  ]);
2056
1992
 
1993
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
1994
+ /* harmony export */ "ACCURACY", 0, /* binding */ ACCURACY,
1995
+ /* harmony export */ "APP_VERSION", 0, /* binding */ APP_VERSION,
1996
+ /* harmony export */ "BASE_PATH", 0, /* binding */ BASE_PATH,
1997
+ /* harmony export */ "BASE_PATH_IS_MIN", 0, /* binding */ BASE_PATH_IS_MIN,
1998
+ /* harmony export */ "BR", 0, /* binding */ BR,
1999
+ /* harmony export */ "CLIPBOARD_ID", 0, /* binding */ CLIPBOARD_ID,
2000
+ /* harmony export */ "COMMAND_KEYS", 0, /* binding */ COMMAND_KEYS,
2001
+ /* harmony export */ "EMULATE_DBLCLICK_TIMEOUT", 0, /* binding */ EMULATE_DBLCLICK_TIMEOUT,
2002
+ /* harmony export */ "ES", 0, /* binding */ ES,
2003
+ /* harmony export */ "FAT_MODE", 0, /* binding */ FAT_MODE,
2004
+ /* harmony export */ "HOMEPAGE", 0, /* binding */ HOMEPAGE,
2005
+ /* harmony export */ "INSEPARABLE_TAGS", 0, /* binding */ INSEPARABLE_TAGS,
2006
+ /* harmony export */ "INSERT_AS_HTML", 0, /* binding */ INSERT_AS_HTML,
2007
+ /* harmony export */ "INSERT_AS_TEXT", 0, /* binding */ INSERT_AS_TEXT,
2008
+ /* harmony export */ "INSERT_CLEAR_HTML", 0, /* binding */ INSERT_CLEAR_HTML,
2009
+ /* harmony export */ "INSERT_ONLY_TEXT", 0, /* binding */ INSERT_ONLY_TEXT,
2010
+ /* harmony export */ "INVISIBLE_SPACE", 0, /* binding */ INVISIBLE_SPACE,
2011
+ /* harmony export */ "INVISIBLE_SPACE_REG_EXP", 0, /* binding */ INVISIBLE_SPACE_REG_EXP,
2012
+ /* harmony export */ "INVISIBLE_SPACE_REG_EXP_END", 0, /* binding */ INVISIBLE_SPACE_REG_EXP_END,
2013
+ /* harmony export */ "INVISIBLE_SPACE_REG_EXP_START", 0, /* binding */ INVISIBLE_SPACE_REG_EXP_START,
2014
+ /* harmony export */ "IS_BLOCK", 0, /* binding */ IS_BLOCK,
2015
+ /* harmony export */ "IS_ES_MODERN", 0, /* binding */ IS_ES_MODERN,
2016
+ /* harmony export */ "IS_ES_NEXT", 0, /* binding */ IS_ES_NEXT,
2017
+ /* harmony export */ "IS_IE", 0, /* binding */ IS_IE,
2018
+ /* harmony export */ "IS_INLINE", 0, /* binding */ IS_INLINE,
2019
+ /* harmony export */ "IS_MAC", 0, /* binding */ IS_MAC,
2020
+ /* harmony export */ "IS_PROD", 0, /* binding */ IS_PROD,
2021
+ /* harmony export */ "KEY_ALIASES", 0, /* binding */ KEY_ALIASES,
2022
+ /* harmony export */ "KEY_ALT", 0, /* binding */ KEY_ALT,
2023
+ /* harmony export */ "KEY_BACKSPACE", 0, /* binding */ KEY_BACKSPACE,
2024
+ /* harmony export */ "KEY_DELETE", 0, /* binding */ KEY_DELETE,
2025
+ /* harmony export */ "KEY_DOWN", 0, /* binding */ KEY_DOWN,
2026
+ /* harmony export */ "KEY_ENTER", 0, /* binding */ KEY_ENTER,
2027
+ /* harmony export */ "KEY_ESC", 0, /* binding */ KEY_ESC,
2028
+ /* harmony export */ "KEY_F3", 0, /* binding */ KEY_F3,
2029
+ /* harmony export */ "KEY_LEFT", 0, /* binding */ KEY_LEFT,
2030
+ /* harmony export */ "KEY_META", 0, /* binding */ KEY_META,
2031
+ /* harmony export */ "KEY_RIGHT", 0, /* binding */ KEY_RIGHT,
2032
+ /* harmony export */ "KEY_SPACE", 0, /* binding */ KEY_SPACE,
2033
+ /* harmony export */ "KEY_TAB", 0, /* binding */ KEY_TAB,
2034
+ /* harmony export */ "KEY_UP", 0, /* binding */ KEY_UP,
2035
+ /* harmony export */ "LIST_TAGS", 0, /* binding */ LIST_TAGS,
2036
+ /* harmony export */ "MARKER_CLASS", 0, /* binding */ MARKER_CLASS,
2037
+ /* harmony export */ "MODE_SOURCE", 0, /* binding */ MODE_SOURCE,
2038
+ /* harmony export */ "MODE_SPLIT", 0, /* binding */ MODE_SPLIT,
2039
+ /* harmony export */ "MODE_WYSIWYG", 0, /* binding */ MODE_WYSIWYG,
2040
+ /* harmony export */ "NBSP_SPACE", 0, /* binding */ NBSP_SPACE,
2041
+ /* harmony export */ "NEARBY", 0, /* binding */ NEARBY,
2042
+ /* harmony export */ "NO_EMPTY_TAGS", 0, /* binding */ NO_EMPTY_TAGS,
2043
+ /* harmony export */ "PARAGRAPH", 0, /* binding */ PARAGRAPH,
2044
+ /* harmony export */ "PASSIVE_EVENTS", 0, /* binding */ PASSIVE_EVENTS,
2045
+ /* harmony export */ "SAFE_COUNT_CHANGE_CALL", 0, /* binding */ SAFE_COUNT_CHANGE_CALL,
2046
+ /* harmony export */ "SET_TEST", 0, /* binding */ SET_TEST,
2047
+ /* harmony export */ "SOURCE_CONSUMER", 0, /* binding */ SOURCE_CONSUMER,
2048
+ /* harmony export */ "SPACE_REG_EXP", 0, /* binding */ SPACE_REG_EXP,
2049
+ /* harmony export */ "SPACE_REG_EXP_END", 0, /* binding */ SPACE_REG_EXP_END,
2050
+ /* harmony export */ "SPACE_REG_EXP_START", 0, /* binding */ SPACE_REG_EXP_START,
2051
+ /* harmony export */ "TEMP_ATTR", 0, /* binding */ TEMP_ATTR,
2052
+ /* harmony export */ "TEXT_HTML", 0, /* binding */ TEXT_HTML,
2053
+ /* harmony export */ "TEXT_PLAIN", 0, /* binding */ TEXT_PLAIN,
2054
+ /* harmony export */ "TEXT_RTF", 0, /* binding */ TEXT_RTF,
2055
+ /* harmony export */ "TOKENS", 0, /* binding */ TOKENS,
2056
+ /* harmony export */ "globalDocument", 0, /* binding */ globalDocument,
2057
+ /* harmony export */ "globalWindow", 0, /* binding */ globalWindow,
2058
+ /* harmony export */ "lang", 0, /* binding */ lang
2059
+ /* harmony export */ ]);
2060
+
2057
2061
 
2058
2062
  /***/ }),
2059
2063
 
@@ -2204,7 +2208,7 @@ class Create {
2204
2208
  }
2205
2209
  }
2206
2210
  constructor(document, createAttributes){
2207
- (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "document", void 0);
2211
+ ;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "document", void 0);
2208
2212
  (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "createAttributes", void 0);
2209
2213
  this.document = document;
2210
2214
  this.createAttributes = createAttributes;
@@ -2776,9 +2780,6 @@ __webpack_require__.r(__webpack_exports__);
2776
2780
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
2777
2781
 
2778
2782
  "use strict";
2779
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
2780
- /* harmony export */ nonenumerable: function() { return /* binding */ nonenumerable; }
2781
- /* harmony export */ });
2782
2783
  /*!
2783
2784
  * Jodit Editor (https://xdsoft.net/jodit/)
2784
2785
  * Released under MIT see LICENSE.txt in the project root for license information.
@@ -2803,6 +2804,10 @@ __webpack_require__.r(__webpack_exports__);
2803
2804
  }
2804
2805
  };
2805
2806
 
2807
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
2808
+ /* harmony export */ "nonenumerable", 0, /* binding */ nonenumerable
2809
+ /* harmony export */ ]);
2810
+
2806
2811
 
2807
2812
  /***/ }),
2808
2813
 
@@ -2942,7 +2947,7 @@ function wait(condition) {
2942
2947
  if (!immediately) {
2943
2948
  callback = component.async.microDebounce(callback, true);
2944
2949
  }
2945
- (0,jodit_core_helpers_array_split_array__WEBPACK_IMPORTED_MODULE_2__.splitArray)(observeFields).forEach((field)=>{
2950
+ ;(0,jodit_core_helpers_array_split_array__WEBPACK_IMPORTED_MODULE_2__.splitArray)(observeFields).forEach((field)=>{
2946
2951
  if (/:/.test(field)) {
2947
2952
  const [objectPath, eventName] = field.split(':');
2948
2953
  let ctx = context;
@@ -3646,7 +3651,7 @@ const TEMP_ELEMENT_REG_EXP = new RegExp(`<([a-z]+)[^>]+${jodit_core_constants__W
3646
3651
  if (!node) {
3647
3652
  return;
3648
3653
  }
3649
- (0,jodit_core_helpers_utils_data_bind__WEBPACK_IMPORTED_MODULE_12__.dataBind)(node, '__old_display', node.style.getPropertyValue('display'));
3654
+ ;(0,jodit_core_helpers_utils_data_bind__WEBPACK_IMPORTED_MODULE_12__.dataBind)(node, '__old_display', node.style.getPropertyValue('display'));
3650
3655
  node.style.setProperty('display', 'none');
3651
3656
  }
3652
3657
  /**
@@ -3853,7 +3858,7 @@ const TEMP_ELEMENT_REG_EXP = new RegExp(`<([a-z]+)[^>]+${jodit_core_constants__W
3853
3858
  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;
3854
3859
  }
3855
3860
  }
3856
- (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
3861
+ ;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
3857
3862
  jodit_core_decorators_autobind_autobind__WEBPACK_IMPORTED_MODULE_2__.autobind
3858
3863
  ], LazyWalker.prototype, "__workPerform", null);
3859
3864
 
@@ -4275,7 +4280,7 @@ const TEMP_ELEMENT_REG_EXP = new RegExp(`<([a-z]+)[^>]+${jodit_core_constants__W
4275
4280
  this.__removeStoreFromSubject(this);
4276
4281
  }
4277
4282
  constructor(doc){
4278
- (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "__domEventsMap", new Map());
4283
+ ;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "__domEventsMap", new Map());
4279
4284
  (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "__mutedEvents", new Set());
4280
4285
  (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "__key", '__JoditEventEmitterNamespaces');
4281
4286
  (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "__doc", jodit_core_constants__WEBPACK_IMPORTED_MODULE_1__.globalDocument);
@@ -4397,7 +4402,7 @@ function isDOMElement(subject) {
4397
4402
  return result;
4398
4403
  }
4399
4404
  constructor(){
4400
- (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "__map", new Map());
4405
+ ;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "__map", new Map());
4401
4406
  }
4402
4407
  }
4403
4408
 
@@ -4408,9 +4413,6 @@ function isDOMElement(subject) {
4408
4413
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
4409
4414
 
4410
4415
  "use strict";
4411
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
4412
- /* harmony export */ eventEmitter: function() { return /* binding */ eventEmitter; }
4413
- /* harmony export */ });
4414
4416
  /* harmony import */ var _event_emitter__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(93747);
4415
4417
  /*!
4416
4418
  * Jodit Editor (https://xdsoft.net/jodit/)
@@ -4421,6 +4423,10 @@ function isDOMElement(subject) {
4421
4423
  */
4422
4424
  const eventEmitter = new _event_emitter__WEBPACK_IMPORTED_MODULE_0__.EventEmitter();
4423
4425
 
4426
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
4427
+ /* harmony export */ "eventEmitter", 0, /* binding */ eventEmitter
4428
+ /* harmony export */ ]);
4429
+
4424
4430
 
4425
4431
  /***/ }),
4426
4432
 
@@ -4613,8 +4619,7 @@ function isObservableObject(obj) {
4613
4619
 
4614
4620
  "use strict";
4615
4621
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
4616
- /* harmony export */ EventHandlersStore: function() { return /* binding */ EventHandlersStore; },
4617
- /* harmony export */ defaultNameSpace: function() { return /* binding */ defaultNameSpace; }
4622
+ /* harmony export */ EventHandlersStore: function() { return /* binding */ EventHandlersStore; }
4618
4623
  /* harmony export */ });
4619
4624
  /* harmony import */ var _swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(25045);
4620
4625
  /* harmony import */ var jodit_core_helpers_array_to_array__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(88475);
@@ -4688,10 +4693,14 @@ class EventHandlersStore {
4688
4693
  return this.__store.size === 0;
4689
4694
  }
4690
4695
  constructor(){
4691
- (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "__store", new Map());
4696
+ ;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "__store", new Map());
4692
4697
  }
4693
4698
  }
4694
4699
 
4700
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
4701
+ /* harmony export */ "defaultNameSpace", 0, /* binding */ defaultNameSpace
4702
+ /* harmony export */ ]);
4703
+
4695
4704
 
4696
4705
  /***/ }),
4697
4706
 
@@ -4700,13 +4709,8 @@ class EventHandlersStore {
4700
4709
 
4701
4710
  "use strict";
4702
4711
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
4703
- /* harmony export */ eventEmitter: function() { return /* binding */ eventEmitter; },
4704
- /* harmony export */ extendLang: function() { return /* binding */ extendLang; },
4705
4712
  /* harmony export */ getContainer: function() { return /* binding */ getContainer; },
4706
4713
  /* harmony export */ getPopupViewRoot: function() { return /* binding */ getPopupViewRoot; },
4707
- /* harmony export */ instances: function() { return /* binding */ instances; },
4708
- /* harmony export */ modules: function() { return /* binding */ modules; },
4709
- /* harmony export */ pluginSystem: function() { return /* binding */ pluginSystem; },
4710
4714
  /* harmony export */ uniqueUid: function() { return /* binding */ uniqueUid; }
4711
4715
  /* harmony export */ });
4712
4716
  /* harmony import */ var jodit_core_helpers_checker_is_jodit_object__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(24497);
@@ -4822,6 +4826,14 @@ const boxes = new WeakMap();
4822
4826
  * @deprecated use `import { eventEmitter } from 'jodit/core/event-emitter/global';`
4823
4827
  */ const eventEmitter = _event_emitter_global__WEBPACK_IMPORTED_MODULE_8__.eventEmitter;
4824
4828
 
4829
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
4830
+ /* harmony export */ "eventEmitter", 0, /* binding */ eventEmitter,
4831
+ /* harmony export */ "extendLang", 0, /* binding */ extendLang,
4832
+ /* harmony export */ "instances", 0, /* binding */ instances,
4833
+ /* harmony export */ "modules", 0, /* binding */ modules,
4834
+ /* harmony export */ "pluginSystem", 0, /* binding */ pluginSystem
4835
+ /* harmony export */ ]);
4836
+
4825
4837
 
4826
4838
  /***/ }),
4827
4839
 
@@ -4829,9 +4841,6 @@ const boxes = new WeakMap();
4829
4841
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
4830
4842
 
4831
4843
  "use strict";
4832
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
4833
- /* harmony export */ asArray: function() { return /* binding */ asArray; }
4834
- /* harmony export */ });
4835
4844
  /* harmony import */ var jodit_core_helpers_checker_is_array__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(17312);
4836
4845
  /*!
4837
4846
  * Jodit Editor (https://xdsoft.net/jodit/)
@@ -4851,6 +4860,10 @@ const boxes = new WeakMap();
4851
4860
  a
4852
4861
  ];
4853
4862
 
4863
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
4864
+ /* harmony export */ "asArray", 0, /* binding */ asArray
4865
+ /* harmony export */ ]);
4866
+
4854
4867
 
4855
4868
  /***/ }),
4856
4869
 
@@ -4909,9 +4922,6 @@ const boxes = new WeakMap();
4909
4922
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
4910
4923
 
4911
4924
  "use strict";
4912
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
4913
- /* harmony export */ toArray: function() { return /* binding */ toArray; }
4914
- /* harmony export */ });
4915
4925
  /* harmony import */ var jodit_core_helpers_checker_is_native_function__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(23283);
4916
4926
  /* harmony import */ var jodit_core_helpers_utils_reset__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(43379);
4917
4927
  /*!
@@ -4935,6 +4945,10 @@ const boxes = new WeakMap();
4935
4945
  return func.apply(Array, args);
4936
4946
  };
4937
4947
 
4948
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
4949
+ /* harmony export */ "toArray", 0, /* binding */ toArray
4950
+ /* harmony export */ ]);
4951
+
4938
4952
 
4939
4953
  /***/ }),
4940
4954
 
@@ -5265,9 +5279,6 @@ function isFastEqual(a, b) {
5265
5279
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
5266
5280
 
5267
5281
  "use strict";
5268
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
5269
- /* harmony export */ isHTML: function() { return /* binding */ isHTML; }
5270
- /* harmony export */ });
5271
5282
  /* harmony import */ var _is_string__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(85932);
5272
5283
  /*!
5273
5284
  * Jodit Editor (https://xdsoft.net/jodit/)
@@ -5280,6 +5291,10 @@ function isFastEqual(a, b) {
5280
5291
  * Check if a string is html or not
5281
5292
  */ 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, ''));
5282
5293
 
5294
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
5295
+ /* harmony export */ "isHTML", 0, /* binding */ isHTML
5296
+ /* harmony export */ ]);
5297
+
5283
5298
 
5284
5299
  /***/ }),
5285
5300
 
@@ -5381,9 +5396,6 @@ function isFastEqual(a, b) {
5381
5396
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
5382
5397
 
5383
5398
  "use strict";
5384
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
5385
- /* harmony export */ isLicense: function() { return /* binding */ isLicense; }
5386
- /* harmony export */ });
5387
5399
  /* harmony import */ var _is_string__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(85932);
5388
5400
  /*!
5389
5401
  * Jodit Editor (https://xdsoft.net/jodit/)
@@ -5394,6 +5406,10 @@ function isFastEqual(a, b) {
5394
5406
  */
5395
5407
  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);
5396
5408
 
5409
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
5410
+ /* harmony export */ "isLicense", 0, /* binding */ isLicense
5411
+ /* harmony export */ ]);
5412
+
5397
5413
 
5398
5414
  /***/ }),
5399
5415
 
@@ -5736,9 +5752,6 @@ const isLicense = (license)=>(0,_is_string__WEBPACK_IMPORTED_MODULE_0__.isString
5736
5752
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
5737
5753
 
5738
5754
  "use strict";
5739
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
5740
- /* harmony export */ colorToHex: function() { return /* binding */ colorToHex; }
5741
- /* harmony export */ });
5742
5755
  /*!
5743
5756
  * Jodit Editor (https://xdsoft.net/jodit/)
5744
5757
  * Released under MIT see LICENSE.txt in the project root for license information.
@@ -5779,24 +5792,9 @@ const isLicense = (license)=>(0,_is_string__WEBPACK_IMPORTED_MODULE_0__.isString
5779
5792
  return digits[1] + '#' + hex;
5780
5793
  };
5781
5794
 
5782
-
5783
- /***/ }),
5784
-
5785
- /***/ 7018:
5786
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
5787
-
5788
- "use strict";
5789
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
5790
- /* harmony export */ colorToHex: function() { return /* reexport safe */ _color_to_hex__WEBPACK_IMPORTED_MODULE_0__.colorToHex; }
5791
- /* harmony export */ });
5792
- /* harmony import */ var _color_to_hex__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(93387);
5793
- /*!
5794
- * Jodit Editor (https://xdsoft.net/jodit/)
5795
- * Released under MIT see LICENSE.txt in the project root for license information.
5796
- * Copyright (c) 2013-2026 Valerii Chupurnov. All rights reserved. https://xdsoft.net
5797
- */ /**
5798
- * @module helpers/color
5799
- */
5795
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
5796
+ /* harmony export */ "colorToHex", 0, /* binding */ colorToHex
5797
+ /* harmony export */ ]);
5800
5798
 
5801
5799
 
5802
5800
  /***/ }),
@@ -5988,7 +5986,7 @@ function normalizeCSS(s) {
5988
5986
  marks.push(node);
5989
5987
  break;
5990
5988
  }
5991
- (0,jodit_core_helpers_array_to_array__WEBPACK_IMPORTED_MODULE_2__.toArray)(node.attributes).forEach((attribute)=>{
5989
+ ;(0,jodit_core_helpers_array_to_array__WEBPACK_IMPORTED_MODULE_2__.toArray)(node.attributes).forEach((attribute)=>{
5992
5990
  if ([
5993
5991
  'src',
5994
5992
  'href',
@@ -6197,7 +6195,7 @@ function isSmuggledForeignHtml(elm) {
6197
6195
  if (!parts.includes('noreferrer')) {
6198
6196
  parts.push('noreferrer');
6199
6197
  }
6200
- (0,jodit_core_helpers_utils__WEBPACK_IMPORTED_MODULE_1__.attr)(node, 'rel', parts.join(' '));
6198
+ ;(0,jodit_core_helpers_utils__WEBPACK_IMPORTED_MODULE_1__.attr)(node, 'rel', parts.join(' '));
6201
6199
  }
6202
6200
  };
6203
6201
  process(box);
@@ -6219,7 +6217,7 @@ function isSmuggledForeignHtml(elm) {
6219
6217
  for (const name of toRemove){
6220
6218
  // `attrRaw` on purpose: `attr()` kebab-cases the key
6221
6219
  // (`onLoad` → `on-load`), which must not happen in a sanitizer
6222
- (0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_2__.attrRaw)(elm, name, null);
6220
+ ;(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_2__.attrRaw)(elm, name, null);
6223
6221
  effected = true;
6224
6222
  }
6225
6223
  return effected;
@@ -6483,7 +6481,7 @@ __webpack_require__.r(__webpack_exports__);
6483
6481
  /* harmony import */ var _array__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(45664);
6484
6482
  /* harmony import */ var _async__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(61077);
6485
6483
  /* harmony import */ var _checker__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(28686);
6486
- /* harmony import */ var _color__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(7018);
6484
+ /* harmony import */ var _color__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(93387);
6487
6485
  /* harmony import */ var _html__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(82658);
6488
6486
  /* harmony import */ var _normalize__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(97022);
6489
6487
  /* harmony import */ var _size__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(86878);
@@ -6559,9 +6557,6 @@ __webpack_require__.r(__webpack_exports__);
6559
6557
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
6560
6558
 
6561
6559
  "use strict";
6562
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
6563
- /* harmony export */ normalizeColor: function() { return /* binding */ normalizeColor; }
6564
- /* harmony export */ });
6565
6560
  /* harmony import */ var jodit_core_helpers_color_color_to_hex__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(93387);
6566
6561
  /* harmony import */ var jodit_core_helpers_string_trim__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(4040);
6567
6562
  /*!
@@ -6600,6 +6595,10 @@ __webpack_require__.r(__webpack_exports__);
6600
6595
  return '#' + color;
6601
6596
  };
6602
6597
 
6598
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
6599
+ /* harmony export */ "normalizeColor", 0, /* binding */ normalizeColor
6600
+ /* harmony export */ ]);
6601
+
6603
6602
 
6604
6603
  /***/ }),
6605
6604
 
@@ -6608,7 +6607,6 @@ __webpack_require__.r(__webpack_exports__);
6608
6607
 
6609
6608
  "use strict";
6610
6609
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
6611
- /* harmony export */ NUMBER_FIELDS_REG: function() { return /* binding */ NUMBER_FIELDS_REG; },
6612
6610
  /* harmony export */ normalizeCssNumericValue: function() { return /* binding */ normalizeCssNumericValue; },
6613
6611
  /* harmony export */ normalizeCssValue: function() { return /* binding */ normalizeCssValue; }
6614
6612
  /* harmony export */ });
@@ -6655,6 +6653,10 @@ function normalizeCssValue(key, value) {
6655
6653
  return value;
6656
6654
  }
6657
6655
 
6656
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
6657
+ /* harmony export */ "NUMBER_FIELDS_REG", 0, /* binding */ NUMBER_FIELDS_REG
6658
+ /* harmony export */ ]);
6659
+
6658
6660
 
6659
6661
  /***/ }),
6660
6662
 
@@ -6708,9 +6710,6 @@ function normalizeCssValue(key, value) {
6708
6710
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
6709
6711
 
6710
6712
  "use strict";
6711
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
6712
- /* harmony export */ normalizeLicense: function() { return /* binding */ normalizeLicense; }
6713
- /* harmony export */ });
6714
6713
  /*!
6715
6714
  * Jodit Editor (https://xdsoft.net/jodit/)
6716
6715
  * Released under MIT see LICENSE.txt in the project root for license information.
@@ -6728,6 +6727,10 @@ function normalizeCssValue(key, value) {
6728
6727
  return parts.join('-');
6729
6728
  };
6730
6729
 
6730
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
6731
+ /* harmony export */ "normalizeLicense", 0, /* binding */ normalizeLicense
6732
+ /* harmony export */ ]);
6733
+
6731
6734
 
6732
6735
  /***/ }),
6733
6736
 
@@ -6735,9 +6738,6 @@ function normalizeCssValue(key, value) {
6735
6738
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
6736
6739
 
6737
6740
  "use strict";
6738
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
6739
- /* harmony export */ normalizePath: function() { return /* binding */ normalizePath; }
6740
- /* harmony export */ });
6741
6741
  /* harmony import */ var jodit_core_helpers_string_trim__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(4040);
6742
6742
  /*!
6743
6743
  * Jodit Editor (https://xdsoft.net/jodit/)
@@ -6761,6 +6761,10 @@ function normalizeCssValue(key, value) {
6761
6761
  }).join('/');
6762
6762
  };
6763
6763
 
6764
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
6765
+ /* harmony export */ "normalizePath", 0, /* binding */ normalizePath
6766
+ /* harmony export */ ]);
6767
+
6764
6768
 
6765
6769
  /***/ }),
6766
6770
 
@@ -6768,9 +6772,6 @@ function normalizeCssValue(key, value) {
6768
6772
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
6769
6773
 
6770
6774
  "use strict";
6771
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
6772
- /* harmony export */ normalizeRelativePath: function() { return /* binding */ normalizeRelativePath; }
6773
- /* harmony export */ });
6774
6775
  /*!
6775
6776
  * Jodit Editor (https://xdsoft.net/jodit/)
6776
6777
  * Released under MIT see LICENSE.txt in the project root for license information.
@@ -6804,6 +6805,10 @@ function normalizeCssValue(key, value) {
6804
6805
  return builder.join('/') + (path.endsWith('/') ? '/' : '');
6805
6806
  };
6806
6807
 
6808
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
6809
+ /* harmony export */ "normalizeRelativePath", 0, /* binding */ normalizeRelativePath
6810
+ /* harmony export */ ]);
6811
+
6807
6812
 
6808
6813
  /***/ }),
6809
6814
 
@@ -6811,9 +6816,6 @@ function normalizeCssValue(key, value) {
6811
6816
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
6812
6817
 
6813
6818
  "use strict";
6814
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
6815
- /* harmony export */ normalizeSize: function() { return /* binding */ normalizeSize; }
6816
- /* harmony export */ });
6817
6819
  /*!
6818
6820
  * Jodit Editor (https://xdsoft.net/jodit/)
6819
6821
  * Released under MIT see LICENSE.txt in the project root for license information.
@@ -6829,6 +6831,10 @@ function normalizeCssValue(key, value) {
6829
6831
  return value.toString();
6830
6832
  };
6831
6833
 
6834
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
6835
+ /* harmony export */ "normalizeSize", 0, /* binding */ normalizeSize
6836
+ /* harmony export */ ]);
6837
+
6832
6838
 
6833
6839
  /***/ }),
6834
6840
 
@@ -6836,9 +6842,6 @@ function normalizeCssValue(key, value) {
6836
6842
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
6837
6843
 
6838
6844
  "use strict";
6839
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
6840
- /* harmony export */ normalizeUrl: function() { return /* binding */ normalizeUrl; }
6841
- /* harmony export */ });
6842
6845
  /*!
6843
6846
  * Jodit Editor (https://xdsoft.net/jodit/)
6844
6847
  * Released under MIT see LICENSE.txt in the project root for license information.
@@ -6849,6 +6852,10 @@ function normalizeCssValue(key, value) {
6849
6852
  return urls.filter((url)=>url.length).map((url)=>url.replace(/\/$/, '')).join('/').replace(/([^:])[\\/]+/g, '$1/');
6850
6853
  };
6851
6854
 
6855
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
6856
+ /* harmony export */ "normalizeUrl", 0, /* binding */ normalizeUrl
6857
+ /* harmony export */ ]);
6858
+
6852
6859
 
6853
6860
  /***/ }),
6854
6861
 
@@ -6856,9 +6863,6 @@ function normalizeCssValue(key, value) {
6856
6863
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
6857
6864
 
6858
6865
  "use strict";
6859
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
6860
- /* harmony export */ getContentWidth: function() { return /* binding */ getContentWidth; }
6861
- /* harmony export */ });
6862
6866
  /*!
6863
6867
  * Jodit Editor (https://xdsoft.net/jodit/)
6864
6868
  * Released under MIT see LICENSE.txt in the project root for license information.
@@ -6870,6 +6874,10 @@ function normalizeCssValue(key, value) {
6870
6874
  return width - paddingLeft - paddingRight;
6871
6875
  };
6872
6876
 
6877
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
6878
+ /* harmony export */ "getContentWidth", 0, /* binding */ getContentWidth
6879
+ /* harmony export */ ]);
6880
+
6873
6881
 
6874
6882
  /***/ }),
6875
6883
 
@@ -7001,9 +7009,6 @@ function getScrollParent(node) {
7001
7009
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
7002
7010
 
7003
7011
  "use strict";
7004
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
7005
- /* harmony export */ innerWidth: function() { return /* binding */ innerWidth; }
7006
- /* harmony export */ });
7007
7012
  /*!
7008
7013
  * Jodit Editor (https://xdsoft.net/jodit/)
7009
7014
  * Released under MIT see LICENSE.txt in the project root for license information.
@@ -7017,6 +7022,10 @@ function getScrollParent(node) {
7017
7022
  return elementWidth;
7018
7023
  };
7019
7024
 
7025
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
7026
+ /* harmony export */ "innerWidth", 0, /* binding */ innerWidth
7027
+ /* harmony export */ ]);
7028
+
7020
7029
 
7021
7030
  /***/ }),
7022
7031
 
@@ -7052,9 +7061,6 @@ function size(subject) {
7052
7061
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
7053
7062
 
7054
7063
  "use strict";
7055
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
7056
- /* harmony export */ offset: function() { return /* binding */ offset; }
7057
- /* harmony export */ });
7058
7064
  /*!
7059
7065
  * Jodit Editor (https://xdsoft.net/jodit/)
7060
7066
  * Released under MIT see LICENSE.txt in the project root for license information.
@@ -7102,6 +7108,10 @@ function size(subject) {
7102
7108
  };
7103
7109
  };
7104
7110
 
7111
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
7112
+ /* harmony export */ "offset", 0, /* binding */ offset
7113
+ /* harmony export */ ]);
7114
+
7105
7115
 
7106
7116
  /***/ }),
7107
7117
 
@@ -7145,9 +7155,6 @@ function size(subject) {
7145
7155
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
7146
7156
 
7147
7157
  "use strict";
7148
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
7149
- /* harmony export */ camelCase: function() { return /* binding */ camelCase; }
7150
- /* harmony export */ });
7151
7158
  /*!
7152
7159
  * Jodit Editor (https://xdsoft.net/jodit/)
7153
7160
  * Released under MIT see LICENSE.txt in the project root for license information.
@@ -7162,6 +7169,10 @@ function size(subject) {
7162
7169
  });
7163
7170
  };
7164
7171
 
7172
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
7173
+ /* harmony export */ "camelCase", 0, /* binding */ camelCase
7174
+ /* harmony export */ ]);
7175
+
7165
7176
 
7166
7177
  /***/ }),
7167
7178
 
@@ -7224,8 +7235,7 @@ function size(subject) {
7224
7235
 
7225
7236
  "use strict";
7226
7237
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
7227
- /* harmony export */ i18n: function() { return /* binding */ i18n; },
7228
- /* harmony export */ sprintf: function() { return /* binding */ sprintf; }
7238
+ /* harmony export */ i18n: function() { return /* binding */ i18n; }
7229
7239
  /* harmony export */ });
7230
7240
  /* harmony import */ var jodit_core_constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(81937);
7231
7241
  /* harmony import */ var jodit_core_helpers_checker_is_string__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(85932);
@@ -7341,6 +7351,10 @@ function size(subject) {
7341
7351
  return parse(key);
7342
7352
  }
7343
7353
 
7354
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
7355
+ /* harmony export */ "sprintf", 0, /* binding */ sprintf
7356
+ /* harmony export */ ]);
7357
+
7344
7358
 
7345
7359
  /***/ }),
7346
7360
 
@@ -7389,10 +7403,6 @@ function size(subject) {
7389
7403
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
7390
7404
 
7391
7405
  "use strict";
7392
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
7393
- /* harmony export */ CamelCaseToKebabCase: function() { return /* binding */ CamelCaseToKebabCase; },
7394
- /* harmony export */ kebabCase: function() { return /* binding */ kebabCase; }
7395
- /* harmony export */ });
7396
7406
  /*!
7397
7407
  * Jodit Editor (https://xdsoft.net/jodit/)
7398
7408
  * Released under MIT see LICENSE.txt in the project root for license information.
@@ -7406,6 +7416,11 @@ const CamelCaseToKebabCase = (key)=>{
7406
7416
  return key.replace(/([A-Z])([A-Z])([a-z])/g, '$1-$2$3').replace(/([a-z])([A-Z])/g, '$1-$2').toLowerCase();
7407
7417
  };
7408
7418
 
7419
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
7420
+ /* harmony export */ "CamelCaseToKebabCase", 0, /* binding */ CamelCaseToKebabCase,
7421
+ /* harmony export */ "kebabCase", 0, /* binding */ kebabCase
7422
+ /* harmony export */ ]);
7423
+
7409
7424
 
7410
7425
  /***/ }),
7411
7426
 
@@ -7551,7 +7566,7 @@ function trimChars(value, chars) {
7551
7566
  ].indexOf((0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_2__.css)(image, 'float').toString().toLowerCase()) !== -1) {
7552
7567
  (0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_2__.css)(image, 'float', '');
7553
7568
  }
7554
- (0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_2__.clearCenterAlign)(image);
7569
+ ;(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_2__.clearCenterAlign)(image);
7555
7570
  }
7556
7571
  }
7557
7572
  /**
@@ -7606,9 +7621,6 @@ function alignElement(command, box) {
7606
7621
 
7607
7622
  "use strict";
7608
7623
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
7609
- /* harmony export */ alreadyLoadedList: function() { return /* binding */ alreadyLoadedList; },
7610
- /* harmony export */ appendScriptAsync: function() { return /* binding */ appendScriptAsync; },
7611
- /* harmony export */ appendStyleAsync: function() { return /* binding */ appendStyleAsync; },
7612
7624
  /* harmony export */ loadNext: function() { return /* binding */ loadNext; },
7613
7625
  /* harmony export */ loadNextStyle: function() { return /* binding */ loadNextStyle; }
7614
7626
  /* harmony export */ });
@@ -7696,6 +7708,12 @@ function loadNextStyle(jodit, urls, i = 0) {
7696
7708
  return appendStyleAsync(jodit, urls[i]).then(()=>loadNextStyle(jodit, urls, i + 1));
7697
7709
  }
7698
7710
 
7711
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
7712
+ /* harmony export */ "alreadyLoadedList", 0, /* binding */ alreadyLoadedList,
7713
+ /* harmony export */ "appendScriptAsync", 0, /* binding */ appendScriptAsync,
7714
+ /* harmony export */ "appendStyleAsync", 0, /* binding */ appendStyleAsync
7715
+ /* harmony export */ ]);
7716
+
7699
7717
 
7700
7718
  /***/ }),
7701
7719
 
@@ -7792,9 +7810,6 @@ function loadNextStyle(jodit, urls, i = 0) {
7792
7810
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
7793
7811
 
7794
7812
  "use strict";
7795
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
7796
- /* harmony export */ browser: function() { return /* binding */ browser; }
7797
- /* harmony export */ });
7798
7813
  /*!
7799
7814
  * Jodit Editor (https://xdsoft.net/jodit/)
7800
7815
  * Released under MIT see LICENSE.txt in the project root for license information.
@@ -7828,6 +7843,10 @@ function loadNextStyle(jodit, urls, i = 0) {
7828
7843
  return match[1] === browser;
7829
7844
  };
7830
7845
 
7846
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
7847
+ /* harmony export */ "browser", 0, /* binding */ browser
7848
+ /* harmony export */ ]);
7849
+
7831
7850
 
7832
7851
  /***/ }),
7833
7852
 
@@ -7835,9 +7854,6 @@ function loadNextStyle(jodit, urls, i = 0) {
7835
7854
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
7836
7855
 
7837
7856
  "use strict";
7838
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
7839
- /* harmony export */ buildQuery: function() { return /* binding */ buildQuery; }
7840
- /* harmony export */ });
7841
7857
  /* harmony import */ var jodit_core_helpers_checker_is_plain_object__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(62101);
7842
7858
  /*!
7843
7859
  * Jodit Editor (https://xdsoft.net/jodit/)
@@ -7861,6 +7877,10 @@ function loadNextStyle(jodit, urls, i = 0) {
7861
7877
  return str.join('&');
7862
7878
  };
7863
7879
 
7880
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
7881
+ /* harmony export */ "buildQuery", 0, /* binding */ buildQuery
7882
+ /* harmony export */ ]);
7883
+
7864
7884
 
7865
7885
  /***/ }),
7866
7886
 
@@ -7868,9 +7888,6 @@ function loadNextStyle(jodit, urls, i = 0) {
7868
7888
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
7869
7889
 
7870
7890
  "use strict";
7871
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
7872
- /* harmony export */ completeUrl: function() { return /* binding */ completeUrl; }
7873
- /* harmony export */ });
7874
7891
  /* harmony import */ var jodit_core_constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(81937);
7875
7892
  /*!
7876
7893
  * Jodit Editor (https://xdsoft.net/jodit/)
@@ -7886,6 +7903,10 @@ const completeUrl = (url)=>{
7886
7903
  return url;
7887
7904
  };
7888
7905
 
7906
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
7907
+ /* harmony export */ "completeUrl", 0, /* binding */ completeUrl
7908
+ /* harmony export */ ]);
7909
+
7889
7910
 
7890
7911
  /***/ }),
7891
7912
 
@@ -8059,9 +8080,6 @@ function ConfigDeepFlatten(obj) {
8059
8080
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
8060
8081
 
8061
8082
  "use strict";
8062
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
8063
- /* harmony export */ convertMediaUrlToVideoEmbed: function() { return /* binding */ convertMediaUrlToVideoEmbed; }
8064
- /* harmony export */ });
8065
8083
  /* harmony import */ var jodit_core_constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(81937);
8066
8084
  /* harmony import */ var jodit_core_helpers_checker_is_url__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(91764);
8067
8085
  /* harmony import */ var _parse_query__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(36310);
@@ -8132,6 +8150,10 @@ function ConfigDeepFlatten(obj) {
8132
8150
  return url;
8133
8151
  };
8134
8152
 
8153
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
8154
+ /* harmony export */ "convertMediaUrlToVideoEmbed", 0, /* binding */ convertMediaUrlToVideoEmbed
8155
+ /* harmony export */ ]);
8156
+
8135
8157
 
8136
8158
  /***/ }),
8137
8159
 
@@ -8140,7 +8162,6 @@ function ConfigDeepFlatten(obj) {
8140
8162
 
8141
8163
  "use strict";
8142
8164
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
8143
- /* harmony export */ clearCenterAlign: function() { return /* binding */ clearCenterAlign; },
8144
8165
  /* harmony export */ css: function() { return /* binding */ css; },
8145
8166
  /* harmony export */ cssInline: function() { return /* binding */ cssInline; }
8146
8167
  /* harmony export */ });
@@ -8232,6 +8253,10 @@ const clearCenterAlign = (image)=>{
8232
8253
  }
8233
8254
  };
8234
8255
 
8256
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
8257
+ /* harmony export */ "clearCenterAlign", 0, /* binding */ clearCenterAlign
8258
+ /* harmony export */ ]);
8259
+
8235
8260
 
8236
8261
  /***/ }),
8237
8262
 
@@ -8239,9 +8264,6 @@ const clearCenterAlign = (image)=>{
8239
8264
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
8240
8265
 
8241
8266
  "use strict";
8242
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
8243
- /* harmony export */ ctrlKey: function() { return /* binding */ ctrlKey; }
8244
- /* harmony export */ });
8245
8267
  /*!
8246
8268
  * Jodit Editor (https://xdsoft.net/jodit/)
8247
8269
  * Released under MIT see LICENSE.txt in the project root for license information.
@@ -8262,6 +8284,10 @@ const clearCenterAlign = (image)=>{
8262
8284
  return false;
8263
8285
  };
8264
8286
 
8287
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
8288
+ /* harmony export */ "ctrlKey", 0, /* binding */ ctrlKey
8289
+ /* harmony export */ ]);
8290
+
8265
8291
 
8266
8292
  /***/ }),
8267
8293
 
@@ -8269,9 +8295,6 @@ const clearCenterAlign = (image)=>{
8269
8295
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
8270
8296
 
8271
8297
  "use strict";
8272
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
8273
- /* harmony export */ dataBind: function() { return /* binding */ dataBind; }
8274
- /* harmony export */ });
8275
8298
  /* harmony import */ var jodit_core_helpers_checker_is_view_object__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(31534);
8276
8299
  /*!
8277
8300
  * Jodit Editor (https://xdsoft.net/jodit/)
@@ -8304,6 +8327,10 @@ const dataBind = (elm, key, value)=>{
8304
8327
  return value;
8305
8328
  };
8306
8329
 
8330
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
8331
+ /* harmony export */ "dataBind", 0, /* binding */ dataBind
8332
+ /* harmony export */ ]);
8333
+
8307
8334
 
8308
8335
  /***/ }),
8309
8336
 
@@ -8311,9 +8338,6 @@ const dataBind = (elm, key, value)=>{
8311
8338
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
8312
8339
 
8313
8340
  "use strict";
8314
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
8315
- /* harmony export */ defaultLanguage: function() { return /* binding */ defaultLanguage; }
8316
- /* harmony export */ });
8317
8341
  /* harmony import */ var jodit_core_constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(81937);
8318
8342
  /* harmony import */ var jodit_core_helpers_checker_is_string__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(85932);
8319
8343
  /*!
@@ -8339,6 +8363,10 @@ const dataBind = (elm, key, value)=>{
8339
8363
  return defaultLanguage;
8340
8364
  };
8341
8365
 
8366
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
8367
+ /* harmony export */ "defaultLanguage", 0, /* binding */ defaultLanguage
8368
+ /* harmony export */ ]);
8369
+
8342
8370
 
8343
8371
  /***/ }),
8344
8372
 
@@ -8533,10 +8561,6 @@ function fastClone(object) {
8533
8561
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
8534
8562
 
8535
8563
  "use strict";
8536
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
8537
- /* harmony export */ getClassName: function() { return /* binding */ getClassName; },
8538
- /* harmony export */ keepNames: function() { return /* binding */ keepNames; }
8539
- /* harmony export */ });
8540
8564
  /* harmony import */ var jodit_core_helpers_checker_is_function__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(91565);
8541
8565
  /*!
8542
8566
  * Jodit Editor (https://xdsoft.net/jodit/)
@@ -8562,6 +8586,11 @@ const getClassName = (obj)=>{
8562
8586
  return res ? res[1] : '';
8563
8587
  };
8564
8588
 
8589
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
8590
+ /* harmony export */ "getClassName", 0, /* binding */ getClassName,
8591
+ /* harmony export */ "keepNames", 0, /* binding */ keepNames
8592
+ /* harmony export */ ]);
8593
+
8565
8594
 
8566
8595
  /***/ }),
8567
8596
 
@@ -8629,9 +8658,6 @@ const getClassName = (obj)=>{
8629
8658
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
8630
8659
 
8631
8660
  "use strict";
8632
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
8633
- /* harmony export */ humanSizeToBytes: function() { return /* binding */ humanSizeToBytes; }
8634
- /* harmony export */ });
8635
8661
  /*!
8636
8662
  * Jodit Editor (https://xdsoft.net/jodit/)
8637
8663
  * Released under MIT see LICENSE.txt in the project root for license information.
@@ -8654,6 +8680,10 @@ const getClassName = (obj)=>{
8654
8680
  return formats.indexOf(format) !== -1 ? number * Math.pow(1024, formats.indexOf(format) + 1) : parseInt(human, 10);
8655
8681
  };
8656
8682
 
8683
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
8684
+ /* harmony export */ "humanSizeToBytes", 0, /* binding */ humanSizeToBytes
8685
+ /* harmony export */ ]);
8686
+
8657
8687
 
8658
8688
  /***/ }),
8659
8689
 
@@ -8801,7 +8831,6 @@ __webpack_require__.r(__webpack_exports__);
8801
8831
 
8802
8832
  "use strict";
8803
8833
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
8804
- /* harmony export */ UNSAFE_PROTO_KEYS: function() { return /* binding */ UNSAFE_PROTO_KEYS; },
8805
8834
  /* harmony export */ isUnsafeProtoKey: function() { return /* binding */ isUnsafeProtoKey; }
8806
8835
  /* harmony export */ });
8807
8836
  /*!
@@ -8825,6 +8854,10 @@ __webpack_require__.r(__webpack_exports__);
8825
8854
  return UNSAFE_PROTO_KEYS.indexOf(key) !== -1;
8826
8855
  }
8827
8856
 
8857
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
8858
+ /* harmony export */ "UNSAFE_PROTO_KEYS", 0, /* binding */ UNSAFE_PROTO_KEYS
8859
+ /* harmony export */ ]);
8860
+
8828
8861
 
8829
8862
  /***/ }),
8830
8863
 
@@ -8833,7 +8866,6 @@ __webpack_require__.r(__webpack_exports__);
8833
8866
 
8834
8867
  "use strict";
8835
8868
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
8836
- /* harmony export */ cns: function() { return /* binding */ cns; },
8837
8869
  /* harmony export */ markDeprecated: function() { return /* binding */ markDeprecated; }
8838
8870
  /* harmony export */ });
8839
8871
  /*!
@@ -8857,6 +8889,10 @@ __webpack_require__.r(__webpack_exports__);
8857
8889
  };
8858
8890
  }
8859
8891
 
8892
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
8893
+ /* harmony export */ "cns", 0, /* binding */ cns
8894
+ /* harmony export */ ]);
8895
+
8860
8896
 
8861
8897
  /***/ }),
8862
8898
 
@@ -8864,9 +8900,6 @@ __webpack_require__.r(__webpack_exports__);
8864
8900
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
8865
8901
 
8866
8902
  "use strict";
8867
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
8868
- /* harmony export */ parseQuery: function() { return /* binding */ parseQuery; }
8869
- /* harmony export */ });
8870
8903
  /*!
8871
8904
  * Jodit Editor (https://xdsoft.net/jodit/)
8872
8905
  * Released under MIT see LICENSE.txt in the project root for license information.
@@ -8884,6 +8917,10 @@ __webpack_require__.r(__webpack_exports__);
8884
8917
  return query;
8885
8918
  };
8886
8919
 
8920
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
8921
+ /* harmony export */ "parseQuery", 0, /* binding */ parseQuery
8922
+ /* harmony export */ ]);
8923
+
8887
8924
 
8888
8925
  /***/ }),
8889
8926
 
@@ -8965,7 +9002,7 @@ __webpack_require__.r(__webpack_exports__);
8965
9002
  if (container) {
8966
9003
  jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_0__.Dom.append(container, div);
8967
9004
  }
8968
- (0,_css__WEBPACK_IMPORTED_MODULE_3__.css)(div, {
9005
+ ;(0,_css__WEBPACK_IMPORTED_MODULE_3__.css)(div, {
8969
9006
  position: 'relative',
8970
9007
  padding: 16
8971
9008
  });
@@ -9207,9 +9244,6 @@ const map = {};
9207
9244
  "use strict";
9208
9245
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
9209
9246
  /* harmony export */ $$: function() { return /* binding */ $$; },
9210
- /* harmony export */ cssPath: function() { return /* binding */ cssPath; },
9211
- /* harmony export */ getXPathByElement: function() { return /* binding */ getXPathByElement; },
9212
- /* harmony export */ refs: function() { return /* binding */ refs; },
9213
9247
  /* harmony export */ resolveElement: function() { return /* binding */ resolveElement; }
9214
9248
  /* harmony export */ });
9215
9249
  /* harmony import */ var jodit_core_constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(81937);
@@ -9334,6 +9368,12 @@ const $$temp = ()=>{
9334
9368
  return resolved;
9335
9369
  }
9336
9370
 
9371
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
9372
+ /* harmony export */ "cssPath", 0, /* binding */ cssPath,
9373
+ /* harmony export */ "getXPathByElement", 0, /* binding */ getXPathByElement,
9374
+ /* harmony export */ "refs", 0, /* binding */ refs
9375
+ /* harmony export */ ]);
9376
+
9337
9377
 
9338
9378
  /***/ }),
9339
9379
 
@@ -9426,7 +9466,7 @@ class LimitedStack {
9426
9466
  return this.stack.find(clb);
9427
9467
  }
9428
9468
  constructor(limit){
9429
- (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "limit", void 0);
9469
+ ;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "limit", void 0);
9430
9470
  (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "stack", void 0);
9431
9471
  this.limit = limit;
9432
9472
  this.stack = [];
@@ -9444,12 +9484,8 @@ class LimitedStack {
9444
9484
  /* harmony export */ call: function() { return /* binding */ call; },
9445
9485
  /* harmony export */ callPromise: function() { return /* binding */ callPromise; },
9446
9486
  /* harmony export */ callThis: function() { return /* binding */ callThis; },
9447
- /* harmony export */ getDataTransfer: function() { return /* binding */ getDataTransfer; },
9448
9487
  /* harmony export */ getPropertyDescriptor: function() { return /* binding */ getPropertyDescriptor; },
9449
- /* harmony export */ keys: function() { return /* binding */ keys; },
9450
- /* harmony export */ loadImage: function() { return /* binding */ loadImage; },
9451
- /* harmony export */ markOwner: function() { return /* binding */ markOwner; },
9452
- /* harmony export */ memorizeExec: function() { return /* binding */ memorizeExec; }
9488
+ /* harmony export */ markOwner: function() { return /* binding */ markOwner; }
9453
9489
  /* harmony export */ });
9454
9490
  /* harmony import */ var jodit_core_helpers_checker_is_promise__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(52100);
9455
9491
  /* harmony import */ var jodit_core_helpers_checker_is_void__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(18303);
@@ -9490,7 +9526,7 @@ class LimitedStack {
9490
9526
  /**
9491
9527
  * Mark element for debugging
9492
9528
  */ function markOwner(jodit, elm) {
9493
- (0,_attr__WEBPACK_IMPORTED_MODULE_2__.attr)(elm, 'data-editor_id', jodit.id);
9529
+ ;(0,_attr__WEBPACK_IMPORTED_MODULE_2__.attr)(elm, 'data-editor_id', jodit.id);
9494
9530
  !elm.component && Object.defineProperty(elm, 'jodit', {
9495
9531
  value: jodit
9496
9532
  });
@@ -9535,7 +9571,7 @@ const keys = (obj, own = true)=>{
9535
9571
  if ((0,jodit_core_helpers_checker_is_void__WEBPACK_IMPORTED_MODULE_1__.isVoid)(value)) {
9536
9572
  return false;
9537
9573
  }
9538
- (0,_data_bind__WEBPACK_IMPORTED_MODULE_3__.dataBind)(editor, key, value);
9574
+ ;(0,_data_bind__WEBPACK_IMPORTED_MODULE_3__.dataBind)(editor, key, value);
9539
9575
  if (preProcessValue) {
9540
9576
  value = preProcessValue(value);
9541
9577
  }
@@ -9562,6 +9598,13 @@ function getPropertyDescriptor(obj, prop) {
9562
9598
  return desc;
9563
9599
  }
9564
9600
 
9601
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
9602
+ /* harmony export */ "getDataTransfer", 0, /* binding */ getDataTransfer,
9603
+ /* harmony export */ "keys", 0, /* binding */ keys,
9604
+ /* harmony export */ "loadImage", 0, /* binding */ loadImage,
9605
+ /* harmony export */ "memorizeExec", 0, /* binding */ memorizeExec
9606
+ /* harmony export */ ]);
9607
+
9565
9608
 
9566
9609
  /***/ }),
9567
9610
 
@@ -9882,7 +9925,7 @@ const styles = new Set();
9882
9925
  waitingList.delete(name);
9883
9926
  return;
9884
9927
  }
9885
- (0,jodit_core_plugin_helpers_init_instance__WEBPACK_IMPORTED_MODULE_7__.init)(jodit, name, plugin, instance, doneList, waitingList, this.opts.getContainer);
9928
+ ;(0,jodit_core_plugin_helpers_init_instance__WEBPACK_IMPORTED_MODULE_7__.init)(jodit, name, plugin, instance, doneList, waitingList, this.opts.getContainer);
9886
9929
  pluginsMap[name] = instance;
9887
9930
  });
9888
9931
  if (commit) {
@@ -9914,7 +9957,7 @@ const styles = new Set();
9914
9957
  });
9915
9958
  }
9916
9959
  constructor(opts){
9917
- (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "opts", void 0);
9960
+ ;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "opts", void 0);
9918
9961
  (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "__items", void 0);
9919
9962
  this.opts = opts;
9920
9963
  this.__items = new Map();
@@ -10032,7 +10075,7 @@ class Plugin extends jodit_core_component__WEBPACK_IMPORTED_MODULE_2__.ViewCompo
10032
10075
  jodit.e.on('afterPluginSystemInit', this.__afterPluginSystemInit).on('afterInit', this.__afterInit).on('beforeDestruct', this.__beforeDestruct);
10033
10076
  }
10034
10077
  }
10035
- (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(Plugin, "requires", []);
10078
+ ;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(Plugin, "requires", []);
10036
10079
  (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
10037
10080
  jodit_core_decorators__WEBPACK_IMPORTED_MODULE_3__.autobind
10038
10081
  ], Plugin.prototype, "__afterPluginSystemInit", null);
@@ -10309,7 +10352,7 @@ class Ajax {
10309
10352
  }
10310
10353
  }
10311
10354
  constructor(options, defaultAjaxOptions = jodit_config__WEBPACK_IMPORTED_MODULE_7__.Config.prototype.defaultAjaxOptions){
10312
- (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "__async", new jodit_core_async__WEBPACK_IMPORTED_MODULE_2__.Async());
10355
+ ;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "__async", new jodit_core_async__WEBPACK_IMPORTED_MODULE_2__.Async());
10313
10356
  (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "xhr", void 0);
10314
10357
  (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "options", void 0);
10315
10358
  (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "__isFulfilled", false);
@@ -10319,7 +10362,7 @@ class Ajax {
10319
10362
  this.xhr = this.o.xhr ? this.o.xhr() : new XMLHttpRequest();
10320
10363
  }
10321
10364
  }
10322
- (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(Ajax, "log", []);
10365
+ ;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(Ajax, "log", []);
10323
10366
  (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
10324
10367
  jodit_core_decorators_autobind_autobind__WEBPACK_IMPORTED_MODULE_4__.autobind
10325
10368
  ], Ajax.prototype, "destruct", null);
@@ -10412,7 +10455,7 @@ class Response {
10412
10455
  return this.body;
10413
10456
  }
10414
10457
  constructor(request, status, statusText, body){
10415
- (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "status", void 0);
10458
+ ;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "status", void 0);
10416
10459
  (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "statusText", void 0);
10417
10460
  (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "request", void 0);
10418
10461
  (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "body", void 0);
@@ -11135,7 +11178,7 @@ class Selection {
11135
11178
  if (dw && 'auto' !== dw && String(dw).indexOf('px') < 0 && String(dw).indexOf('%') < 0) {
11136
11179
  dw += 'px';
11137
11180
  }
11138
- (0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_5__.attr)(image, 'width', dw);
11181
+ ;(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_5__.attr)(image, 'width', dw);
11139
11182
  }
11140
11183
  if (styles && typeof styles === 'object') {
11141
11184
  (0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_5__.css)(image, styles);
@@ -11610,7 +11653,7 @@ class Selection {
11610
11653
  * }) // will remove `color:red` from `span`
11611
11654
  * ```
11612
11655
  */ commitStyle(options) {
11613
- (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');
11656
+ ;(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');
11614
11657
  const styleElm = new _style_commit_style__WEBPACK_IMPORTED_MODULE_9__.CommitStyle(options);
11615
11658
  styleElm.apply(this.j);
11616
11659
  }
@@ -11747,14 +11790,14 @@ class Selection {
11747
11790
  return this;
11748
11791
  }
11749
11792
  constructor(jodit){
11750
- (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "jodit", void 0);
11793
+ ;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "jodit", void 0);
11751
11794
  this.jodit = jodit;
11752
11795
  jodit.e.on('removeMarkers', ()=>{
11753
11796
  this.removeMarkers();
11754
11797
  });
11755
11798
  }
11756
11799
  }
11757
- (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
11800
+ ;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
11758
11801
  jodit_core_decorators__WEBPACK_IMPORTED_MODULE_3__.autobind
11759
11802
  ], Selection.prototype, "createRange", null);
11760
11803
  (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
@@ -11887,7 +11930,7 @@ class Selection {
11887
11930
  throw new Error(`invalid action: ${this.getState()}.${actionName.toString()}`);
11888
11931
  }
11889
11932
  constructor(state, transitions){
11890
- (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "transitions", void 0);
11933
+ ;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "transitions", void 0);
11891
11934
  (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "__state", void 0);
11892
11935
  (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "silent", void 0);
11893
11936
  (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "__previewsStates", void 0);
@@ -12209,7 +12252,7 @@ if (jodit_core_constants__WEBPACK_IMPORTED_MODULE_0__.globalDocument) {
12209
12252
  if (!(0,jodit_core_helpers_size_object_size__WEBPACK_IMPORTED_MODULE_0__.size)(attrs)) {
12210
12253
  return true;
12211
12254
  }
12212
- (0,jodit_core_helpers_utils_assert__WEBPACK_IMPORTED_MODULE_2__.assert)(attrs, 'Attrs must be a non-empty object');
12255
+ ;(0,jodit_core_helpers_utils_assert__WEBPACK_IMPORTED_MODULE_2__.assert)(attrs, 'Attrs must be a non-empty object');
12213
12256
  return Object.keys(attrs).every((key)=>{
12214
12257
  if (key === 'class' || key === 'className') {
12215
12258
  return elm.classList.contains(attrs[key]);
@@ -12344,8 +12387,8 @@ function elementsEqualAttributes(elm1, elm2) {
12344
12387
  return result;
12345
12388
  }
12346
12389
  const hook = jodit.e.fire.bind(jodit.e, `${jodit_core_selection_style_constants__WEBPACK_IMPORTED_MODULE_4__._PREFIX}AfterToggleList`);
12347
- if (mode !== jodit_core_selection_style_constants__WEBPACK_IMPORTED_MODULE_4__.UNWRAP) {
12348
- 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) === jodit_core_selection_style_constants__WEBPACK_IMPORTED_MODULE_4__.CHANGE;
12390
+ if (mode !== (/* inlined export .UNWRAP */"unwrap")) {
12391
+ 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");
12349
12392
  // ul => ol, ol => ul or ul => ul.class1
12350
12393
  if (mode === jodit_core_selection_style_constants__WEBPACK_IMPORTED_MODULE_4__.REPLACE || isChangeMode || list.tagName.toLowerCase() !== commitStyle.element) {
12351
12394
  const wrapper = unwrapList(jodit_core_selection_style_constants__WEBPACK_IMPORTED_MODULE_4__.REPLACE, list, li, jodit, commitStyle);
@@ -12354,9 +12397,9 @@ function elementsEqualAttributes(elm1, elm2) {
12354
12397
  return jodit_core_selection_style_constants__WEBPACK_IMPORTED_MODULE_4__.REPLACE;
12355
12398
  }
12356
12399
  }
12357
- const wrapper = unwrapList(jodit_core_selection_style_constants__WEBPACK_IMPORTED_MODULE_4__.UNWRAP, list, li, jodit, commitStyle);
12358
- hook(jodit_core_selection_style_constants__WEBPACK_IMPORTED_MODULE_4__.UNWRAP, wrapper, commitStyle);
12359
- return jodit_core_selection_style_constants__WEBPACK_IMPORTED_MODULE_4__.UNWRAP;
12400
+ const wrapper = unwrapList((/* inlined export .UNWRAP */"unwrap"), list, li, jodit, commitStyle);
12401
+ hook((/* inlined export .UNWRAP */"unwrap"), wrapper, commitStyle);
12402
+ return (/* inlined export .UNWRAP */"unwrap");
12360
12403
  }
12361
12404
  function unwrapList(mode, list, li, jodit, cs) {
12362
12405
  const result = jodit.e.fire(`${jodit_core_selection_style_constants__WEBPACK_IMPORTED_MODULE_4__._PREFIX}BeforeUnwrapList`, mode, list, cs);
@@ -12364,7 +12407,7 @@ function unwrapList(mode, list, li, jodit, cs) {
12364
12407
  (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`);
12365
12408
  return result;
12366
12409
  }
12367
- (0,jodit_core_selection_style_api_extract__WEBPACK_IMPORTED_MODULE_2__.extractSelectedPart)(list, li, jodit);
12410
+ ;(0,jodit_core_selection_style_api_extract__WEBPACK_IMPORTED_MODULE_2__.extractSelectedPart)(list, li, jodit);
12368
12411
  (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');
12369
12412
  jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_0__.Dom.unwrap(li.parentElement);
12370
12413
  // In the REPLACE mode the content will be immediately wrapped in a `li`
@@ -12424,7 +12467,7 @@ function unwrapList(mode, list, li, jodit, cs) {
12424
12467
  jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_0__.Dom.append(list, Array.from(list.nextElementSibling.childNodes));
12425
12468
  jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_0__.Dom.safeRemove(list.nextElementSibling);
12426
12469
  }
12427
- jodit.e.fire(`${jodit_core_selection_style_constants__WEBPACK_IMPORTED_MODULE_3__._PREFIX}AfterWrapList`, jodit_core_selection_style_constants__WEBPACK_IMPORTED_MODULE_3__.WRAP, list, commitStyle);
12470
+ jodit.e.fire(`${jodit_core_selection_style_constants__WEBPACK_IMPORTED_MODULE_3__._PREFIX}AfterWrapList`, (/* inlined export .WRAP */"wrap"), list, commitStyle);
12428
12471
  return list;
12429
12472
  }
12430
12473
 
@@ -12493,7 +12536,7 @@ const tak = 'toggleAttributes';
12493
12536
  return mode;
12494
12537
  }
12495
12538
  function toggleStyle(commitStyle, jodit, style, elm, dry, mode) {
12496
- (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');
12539
+ ;(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');
12497
12540
  Object.keys(style).forEach((rule)=>{
12498
12541
  const inlineValue = (0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_7__.cssInline)(elm, rule);
12499
12542
  const newValue = style[rule];
@@ -12505,11 +12548,11 @@ function toggleStyle(commitStyle, jodit, style, elm, dry, mode) {
12505
12548
  return;
12506
12549
  }
12507
12550
  !dry && (0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_7__.css)(elm, rule, null);
12508
- mode = jodit_core_selection_style_constants__WEBPACK_IMPORTED_MODULE_9__.UNSET;
12551
+ mode = (/* inlined export .UNSET */"unset");
12509
12552
  mode = removeExtraStyleAttribute(commitStyle, elm, mode);
12510
12553
  return;
12511
12554
  }
12512
- mode = jodit_core_selection_style_constants__WEBPACK_IMPORTED_MODULE_9__.CHANGE;
12555
+ mode = (/* inlined export .CHANGE */"change");
12513
12556
  if (!dry) {
12514
12557
  (0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_7__.css)(elm, rule, newValue);
12515
12558
  mode = removeExtraStyleAttribute(commitStyle, elm, mode);
@@ -12518,10 +12561,10 @@ function toggleStyle(commitStyle, jodit, style, elm, dry, mode) {
12518
12561
  return mode;
12519
12562
  }
12520
12563
  function toggleClass(jodit, value, elm, mode, dry) {
12521
- (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');
12564
+ ;(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');
12522
12565
  const hook = jodit.e.fire.bind(jodit.e, `${jodit_core_selection_style_constants__WEBPACK_IMPORTED_MODULE_9__._PREFIX}AfterToggleAttribute`);
12523
12566
  if (elm.classList.contains(value.toString())) {
12524
- mode = jodit_core_selection_style_constants__WEBPACK_IMPORTED_MODULE_9__.UNSET;
12567
+ mode = (/* inlined export .UNSET */"unset");
12525
12568
  if (!dry) {
12526
12569
  elm.classList.remove(value);
12527
12570
  if (elm.classList.length === 0) {
@@ -12530,7 +12573,7 @@ function toggleClass(jodit, value, elm, mode, dry) {
12530
12573
  }
12531
12574
  }
12532
12575
  } else {
12533
- mode = jodit_core_selection_style_constants__WEBPACK_IMPORTED_MODULE_9__.CHANGE;
12576
+ mode = (/* inlined export .CHANGE */"change");
12534
12577
  if (!dry) {
12535
12578
  elm.classList.add(value);
12536
12579
  hook(mode, elm, 'class', value);
@@ -12539,17 +12582,17 @@ function toggleClass(jodit, value, elm, mode, dry) {
12539
12582
  return mode;
12540
12583
  }
12541
12584
  function toggleAttribute(jodit, value, elm, key, dry, mode) {
12542
- (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');
12585
+ ;(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');
12543
12586
  const hook = jodit.e.fire.bind(jodit.e, `${jodit_core_selection_style_constants__WEBPACK_IMPORTED_MODULE_9__._PREFIX}AfterToggleAttribute`);
12544
12587
  // `attr()` getter always returns a string, so a number/boolean value
12545
12588
  // must be normalized, otherwise the toggle-off branch is unreachable
12546
12589
  if ((0,jodit_core_helpers_utils__WEBPACK_IMPORTED_MODULE_6__.attr)(elm, key) === (value == null ? value : String(value))) {
12547
12590
  !dry && (0,jodit_core_helpers_utils__WEBPACK_IMPORTED_MODULE_6__.attr)(elm, key, null);
12548
- mode = jodit_core_selection_style_constants__WEBPACK_IMPORTED_MODULE_9__.UNSET;
12591
+ mode = (/* inlined export .UNSET */"unset");
12549
12592
  !dry && hook(mode, elm, key, value);
12550
12593
  return mode;
12551
12594
  }
12552
- mode = jodit_core_selection_style_constants__WEBPACK_IMPORTED_MODULE_9__.CHANGE;
12595
+ mode = (/* inlined export .CHANGE */"change");
12553
12596
  if (!dry) {
12554
12597
  (0,jodit_core_helpers_utils__WEBPACK_IMPORTED_MODULE_6__.attr)(elm, key, value);
12555
12598
  hook(mode, elm, key, value);
@@ -12564,7 +12607,7 @@ function toggleAttribute(jodit, value, elm, key, dry, mode) {
12564
12607
  (0,jodit_core_helpers_utils__WEBPACK_IMPORTED_MODULE_6__.attr)(elm, 'style', null);
12565
12608
  if (elm.tagName.toLowerCase() === commitStyle.defaultTag) {
12566
12609
  jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_1__.Dom.unwrap(elm);
12567
- mode = jodit_core_selection_style_constants__WEBPACK_IMPORTED_MODULE_9__.UNWRAP;
12610
+ mode = (/* inlined export .UNWRAP */"unwrap");
12568
12611
  }
12569
12612
  }
12570
12613
  return mode;
@@ -12654,7 +12697,7 @@ function toggleAttribute(jodit, value, elm, key, dry, mode) {
12654
12697
  firstElementSuit = false;
12655
12698
  }
12656
12699
  needChangeStyle.push(()=>{
12657
- (0,jodit_core_helpers_utils__WEBPACK_IMPORTED_MODULE_1__.css)(elm, Object.keys(cssStyle).reduce((acc, key)=>{
12700
+ ;(0,jodit_core_helpers_utils__WEBPACK_IMPORTED_MODULE_1__.css)(elm, Object.keys(cssStyle).reduce((acc, key)=>{
12658
12701
  acc[key] = null;
12659
12702
  return acc;
12660
12703
  }, {}));
@@ -12742,7 +12785,6 @@ function toggleAttribute(jodit, value, elm, key, dry, mode) {
12742
12785
 
12743
12786
  "use strict";
12744
12787
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
12745
- /* harmony export */ WRAP_NODES: function() { return /* binding */ WRAP_NODES; },
12746
12788
  /* harmony export */ wrap: function() { return /* binding */ wrap; }
12747
12789
  /* harmony export */ });
12748
12790
  /* harmony import */ var jodit_core_dom__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(27795);
@@ -12803,7 +12845,7 @@ const WRAP_NODES = new Set([
12803
12845
  }
12804
12846
  return (0,_wrap_unwrapped_text__WEBPACK_IMPORTED_MODULE_4__.wrapUnwrappedText)(commitStyle, font, jodit);
12805
12847
  }
12806
- (0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_1__.attr)(font, 'size', null);
12848
+ ;(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_1__.attr)(font, 'size', null);
12807
12849
  return font;
12808
12850
  }
12809
12851
  /**
@@ -12814,6 +12856,10 @@ const WRAP_NODES = new Set([
12814
12856
  return Array.from(node.childNodes).some((child)=>jodit_core_dom__WEBPACK_IMPORTED_MODULE_0__.Dom.isBlock(child));
12815
12857
  }
12816
12858
 
12859
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
12860
+ /* harmony export */ "WRAP_NODES", 0, /* binding */ WRAP_NODES
12861
+ /* harmony export */ ]);
12862
+
12817
12863
 
12818
12864
  /***/ }),
12819
12865
 
@@ -12951,7 +12997,7 @@ class CommitStyle {
12951
12997
  jodit.e.fire('afterCommitStyle', this);
12952
12998
  }
12953
12999
  constructor(options){
12954
- (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "options", void 0);
13000
+ ;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "options", void 0);
12955
13001
  (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "__applyMap", void 0);
12956
13002
  this.options = options;
12957
13003
  this.__applyMap = new WeakMap();
@@ -12965,15 +13011,6 @@ class CommitStyle {
12965
13011
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
12966
13012
 
12967
13013
  "use strict";
12968
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
12969
- /* harmony export */ CHANGE: function() { return /* binding */ CHANGE; },
12970
- /* harmony export */ INITIAL: function() { return /* binding */ INITIAL; },
12971
- /* harmony export */ REPLACE: function() { return /* binding */ REPLACE; },
12972
- /* harmony export */ UNSET: function() { return /* binding */ UNSET; },
12973
- /* harmony export */ UNWRAP: function() { return /* binding */ UNWRAP; },
12974
- /* harmony export */ WRAP: function() { return /* binding */ WRAP; },
12975
- /* harmony export */ _PREFIX: function() { return /* binding */ _PREFIX; }
12976
- /* harmony export */ });
12977
13014
  /*!
12978
13015
  * Jodit Editor (https://xdsoft.net/jodit/)
12979
13016
  * Released under MIT see LICENSE.txt in the project root for license information.
@@ -12988,6 +13025,12 @@ class CommitStyle {
12988
13025
  /** @internal */ const REPLACE = 'replace';
12989
13026
  /** @internal */ const _PREFIX = 'commitStyle';
12990
13027
 
13028
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
13029
+ /* harmony export */ "INITIAL", 0, /* binding */ INITIAL,
13030
+ /* harmony export */ "REPLACE", 0, /* binding */ REPLACE,
13031
+ /* harmony export */ "_PREFIX", 0, /* binding */ _PREFIX
13032
+ /* harmony export */ ]);
13033
+
12991
13034
 
12992
13035
  /***/ }),
12993
13036
 
@@ -12995,10 +13038,6 @@ class CommitStyle {
12995
13038
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
12996
13039
 
12997
13040
  "use strict";
12998
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
12999
- /* harmony export */ states: function() { return /* binding */ states; },
13000
- /* harmony export */ transactions: function() { return /* binding */ transactions; }
13001
- /* harmony export */ });
13002
13041
  /* harmony import */ var jodit_core_constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(81937);
13003
13042
  /* harmony import */ var jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(23211);
13004
13043
  /* harmony import */ var jodit_core_helpers_utils_assert__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(28712);
@@ -13062,14 +13101,14 @@ const transactions = {
13062
13101
  }
13063
13102
  return {
13064
13103
  ...value,
13065
- next: mode !== jodit_core_selection_style_constants__WEBPACK_IMPORTED_MODULE_4__.UNWRAP ? states.UNWRAP_CHILDREN : states.END
13104
+ next: mode !== (/* inlined export .UNWRAP */"unwrap") ? states.UNWRAP_CHILDREN : states.END
13066
13105
  };
13067
13106
  }
13068
13107
  },
13069
13108
  [states.LIST]: {
13070
13109
  exec (value) {
13071
13110
  const { element, jodit, mode } = value;
13072
- if (mode !== jodit_core_selection_style_constants__WEBPACK_IMPORTED_MODULE_4__.INITIAL && mode !== jodit_core_selection_style_constants__WEBPACK_IMPORTED_MODULE_4__.UNWRAP && mode !== jodit_core_selection_style_constants__WEBPACK_IMPORTED_MODULE_4__.REPLACE) {
13111
+ if (mode !== jodit_core_selection_style_constants__WEBPACK_IMPORTED_MODULE_4__.INITIAL && mode !== (/* inlined export .UNWRAP */"unwrap") && mode !== jodit_core_selection_style_constants__WEBPACK_IMPORTED_MODULE_4__.REPLACE) {
13073
13112
  return {
13074
13113
  ...value,
13075
13114
  next: states.END
@@ -13141,7 +13180,7 @@ const transactions = {
13141
13180
  }
13142
13181
  return {
13143
13182
  ...value,
13144
- mode: jodit_core_selection_style_constants__WEBPACK_IMPORTED_MODULE_4__.UNWRAP,
13183
+ mode: (/* inlined export .UNWRAP */"unwrap"),
13145
13184
  next: states.END
13146
13185
  };
13147
13186
  }
@@ -13153,7 +13192,7 @@ const transactions = {
13153
13192
  return {
13154
13193
  ...value,
13155
13194
  next: style.elementIsList ? states.END : states.CHANGE,
13156
- mode: jodit_core_selection_style_constants__WEBPACK_IMPORTED_MODULE_4__.WRAP,
13195
+ mode: (/* inlined export .WRAP */"wrap"),
13157
13196
  element: wrapper
13158
13197
  };
13159
13198
  }
@@ -13184,7 +13223,7 @@ const transactions = {
13184
13223
  exec (value) {
13185
13224
  const { style, element, jodit, mode } = value;
13186
13225
  const newMode = (0,jodit_core_selection_style_api__WEBPACK_IMPORTED_MODULE_3__.toggleAttributes)(style, element, jodit, value.mode);
13187
- if (mode !== jodit_core_selection_style_constants__WEBPACK_IMPORTED_MODULE_4__.WRAP && newMode === jodit_core_selection_style_constants__WEBPACK_IMPORTED_MODULE_4__.UNSET && !element.attributes.length && jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_1__.Dom.isTag(element, style.element)) {
13226
+ if (mode !== (/* inlined export .WRAP */"wrap") && newMode === (/* inlined export .UNSET */"unset") && !element.attributes.length && jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_1__.Dom.isTag(element, style.element)) {
13188
13227
  return {
13189
13228
  ...value,
13190
13229
  next: states.UNWRAP
@@ -13220,7 +13259,7 @@ const transactions = {
13220
13259
  jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_1__.Dom.unwrap(element);
13221
13260
  return {
13222
13261
  ...value,
13223
- mode: jodit_core_selection_style_constants__WEBPACK_IMPORTED_MODULE_4__.UNWRAP,
13262
+ mode: (/* inlined export .UNWRAP */"unwrap"),
13224
13263
  next: states.END
13225
13264
  };
13226
13265
  }
@@ -13242,6 +13281,11 @@ const transactions = {
13242
13281
  }
13243
13282
  };
13244
13283
 
13284
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
13285
+ /* harmony export */ "states", 0, /* binding */ states,
13286
+ /* harmony export */ "transactions", 0, /* binding */ transactions
13287
+ /* harmony export */ ]);
13288
+
13245
13289
 
13246
13290
  /***/ }),
13247
13291
 
@@ -13257,7 +13301,6 @@ const transactions = {
13257
13301
  /* harmony import */ var _engines_indexed_db_provider__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(91162);
13258
13302
  /* harmony import */ var _engines_local_storage_provider__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(59807);
13259
13303
  /* harmony import */ var _engines_memory_storage_provider__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(9505);
13260
- /* harmony import */ var _storage__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(24475);
13261
13304
  /*!
13262
13305
  * Jodit Editor (https://xdsoft.net/jodit/)
13263
13306
  * Released under MIT see LICENSE.txt in the project root for license information.
@@ -13308,7 +13351,7 @@ class AsyncStorage {
13308
13351
  const defaultProvider = options?.defaultProvider;
13309
13352
  if (defaultProvider != null) {
13310
13353
  if (defaultProvider === 'local') {
13311
- provider = (0,_engines_local_storage_provider__WEBPACK_IMPORTED_MODULE_3__.canUsePersistentStorage)('localStorage') ? new _engines_local_storage_provider__WEBPACK_IMPORTED_MODULE_3__.LocalStorageProvider(_storage__WEBPACK_IMPORTED_MODULE_5__.StorageKey + (suffix || '')) : new _engines_memory_storage_provider__WEBPACK_IMPORTED_MODULE_4__.MemoryStorageProvider();
13354
+ provider = (0,_engines_local_storage_provider__WEBPACK_IMPORTED_MODULE_3__.canUsePersistentStorage)('localStorage') ? new _engines_local_storage_provider__WEBPACK_IMPORTED_MODULE_3__.LocalStorageProvider((/* inlined export .StorageKey */"Jodit_") + (suffix || '')) : new _engines_memory_storage_provider__WEBPACK_IMPORTED_MODULE_4__.MemoryStorageProvider();
13312
13355
  } else if (defaultProvider === 'memory') {
13313
13356
  provider = new _engines_memory_storage_provider__WEBPACK_IMPORTED_MODULE_4__.MemoryStorageProvider();
13314
13357
  } else {
@@ -13319,10 +13362,10 @@ class AsyncStorage {
13319
13362
  }
13320
13363
  if (persistentOrStrategy === 'localStorage' || persistentOrStrategy === 'sessionStorage') {
13321
13364
  if ((0,_engines_local_storage_provider__WEBPACK_IMPORTED_MODULE_3__.canUsePersistentStorage)(persistentOrStrategy)) {
13322
- provider = new _engines_local_storage_provider__WEBPACK_IMPORTED_MODULE_3__.LocalStorageProvider(_storage__WEBPACK_IMPORTED_MODULE_5__.StorageKey + (suffix || ''), persistentOrStrategy);
13365
+ provider = new _engines_local_storage_provider__WEBPACK_IMPORTED_MODULE_3__.LocalStorageProvider((/* inlined export .StorageKey */"Jodit_") + (suffix || ''), persistentOrStrategy);
13323
13366
  }
13324
13367
  } else if (persistentOrStrategy === 'indexedDB' || persistentOrStrategy === true) {
13325
- provider = (0,_engines_indexed_db_provider__WEBPACK_IMPORTED_MODULE_2__.canUseIndexedDB)().then((canUse)=>canUse ? new _engines_indexed_db_provider__WEBPACK_IMPORTED_MODULE_2__.IndexedDBProvider(_storage__WEBPACK_IMPORTED_MODULE_5__.StorageKey + (suffix || ''), 'keyValueStore') : new _engines_memory_storage_provider__WEBPACK_IMPORTED_MODULE_4__.MemoryStorageProvider());
13368
+ provider = (0,_engines_indexed_db_provider__WEBPACK_IMPORTED_MODULE_2__.canUseIndexedDB)().then((canUse)=>canUse ? new _engines_indexed_db_provider__WEBPACK_IMPORTED_MODULE_2__.IndexedDBProvider((/* inlined export .StorageKey */"Jodit_") + (suffix || ''), 'keyValueStore') : new _engines_memory_storage_provider__WEBPACK_IMPORTED_MODULE_4__.MemoryStorageProvider());
13326
13369
  }
13327
13370
  if (!provider) {
13328
13371
  provider = new _engines_memory_storage_provider__WEBPACK_IMPORTED_MODULE_4__.MemoryStorageProvider();
@@ -13331,10 +13374,10 @@ class AsyncStorage {
13331
13374
  return storage;
13332
13375
  }
13333
13376
  constructor(provider, suffix){
13334
- (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "provider", void 0);
13377
+ ;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "provider", void 0);
13335
13378
  (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "prefix", void 0);
13336
13379
  this.provider = provider;
13337
- this.prefix = _storage__WEBPACK_IMPORTED_MODULE_5__.StorageKey;
13380
+ this.prefix = (/* inlined export .StorageKey */"Jodit_");
13338
13381
  if (suffix) {
13339
13382
  this.prefix += suffix;
13340
13383
  }
@@ -13504,7 +13547,7 @@ class AsyncStorage {
13504
13547
  }
13505
13548
  }
13506
13549
  constructor(dbName = 'JoditDB', storeName = 'keyValueStore'){
13507
- (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "dbName", void 0);
13550
+ ;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "dbName", void 0);
13508
13551
  (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "dbPromise", void 0);
13509
13552
  (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "DB_VERSION", void 0);
13510
13553
  (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "storeName", void 0);
@@ -13555,8 +13598,7 @@ function clearUseIndexedDBCache() {
13555
13598
 
13556
13599
  "use strict";
13557
13600
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
13558
- /* harmony export */ LocalStorageProvider: function() { return /* binding */ LocalStorageProvider; },
13559
- /* harmony export */ canUsePersistentStorage: function() { return /* binding */ canUsePersistentStorage; }
13601
+ /* harmony export */ LocalStorageProvider: function() { return /* binding */ LocalStorageProvider; }
13560
13602
  /* harmony export */ });
13561
13603
  /* harmony import */ var _swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(25045);
13562
13604
  /*!
@@ -13630,13 +13672,17 @@ function clearUseIndexedDBCache() {
13630
13672
  return this;
13631
13673
  }
13632
13674
  constructor(rootKey, strategy = 'localStorage'){
13633
- (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "rootKey", void 0);
13675
+ ;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "rootKey", void 0);
13634
13676
  (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "strategy", void 0);
13635
13677
  this.rootKey = rootKey;
13636
13678
  this.strategy = strategy;
13637
13679
  }
13638
13680
  }
13639
13681
 
13682
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
13683
+ /* harmony export */ "canUsePersistentStorage", 0, /* binding */ canUsePersistentStorage
13684
+ /* harmony export */ ]);
13685
+
13640
13686
 
13641
13687
  /***/ }),
13642
13688
 
@@ -13675,7 +13721,7 @@ class MemoryStorageProvider {
13675
13721
  return this;
13676
13722
  }
13677
13723
  constructor(){
13678
- (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "data", new Map());
13724
+ ;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "data", new Map());
13679
13725
  }
13680
13726
  }
13681
13727
 
@@ -13692,7 +13738,7 @@ class MemoryStorageProvider {
13692
13738
  /* harmony export */ LocalStorageProvider: function() { return /* reexport safe */ _engines_local_storage_provider__WEBPACK_IMPORTED_MODULE_2__.LocalStorageProvider; },
13693
13739
  /* harmony export */ MemoryStorageProvider: function() { return /* reexport safe */ _engines_memory_storage_provider__WEBPACK_IMPORTED_MODULE_3__.MemoryStorageProvider; },
13694
13740
  /* harmony export */ Storage: function() { return /* reexport safe */ _storage__WEBPACK_IMPORTED_MODULE_4__.Storage; },
13695
- /* harmony export */ StorageKey: function() { return /* reexport safe */ _storage__WEBPACK_IMPORTED_MODULE_4__.StorageKey; },
13741
+ /* harmony export */ StorageKey: function() { return /* reexport safe */ (/* inlined export .StorageKey */"Jodit_"); },
13696
13742
  /* harmony export */ canUseIndexedDB: function() { return /* reexport safe */ _engines_indexed_db_provider__WEBPACK_IMPORTED_MODULE_1__.canUseIndexedDB; },
13697
13743
  /* harmony export */ canUsePersistentStorage: function() { return /* reexport safe */ _engines_local_storage_provider__WEBPACK_IMPORTED_MODULE_2__.canUsePersistentStorage; },
13698
13744
  /* harmony export */ clearUseIndexedDBCache: function() { return /* reexport safe */ _engines_indexed_db_provider__WEBPACK_IMPORTED_MODULE_1__.clearUseIndexedDBCache; }
@@ -13722,8 +13768,7 @@ class MemoryStorageProvider {
13722
13768
 
13723
13769
  "use strict";
13724
13770
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
13725
- /* harmony export */ Storage: function() { return /* binding */ Storage; },
13726
- /* harmony export */ StorageKey: function() { return /* binding */ StorageKey; }
13771
+ /* harmony export */ Storage: function() { return /* binding */ Storage; }
13727
13772
  /* harmony export */ });
13728
13773
  /* harmony import */ var _swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(25045);
13729
13774
  /* harmony import */ var jodit_core_helpers_string_camel_case__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(57821);
@@ -13778,7 +13823,7 @@ class Storage {
13778
13823
  return new Storage(provider, suffix);
13779
13824
  }
13780
13825
  constructor(provider, suffix){
13781
- (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "provider", void 0);
13826
+ ;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "provider", void 0);
13782
13827
  (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "prefix", void 0);
13783
13828
  this.provider = provider;
13784
13829
  this.prefix = StorageKey;
@@ -13954,8 +13999,7 @@ class Mods {
13954
13999
  "use strict";
13955
14000
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
13956
14001
  /* harmony export */ Button: function() { return /* binding */ Button; },
13957
- /* harmony export */ UIButton: function() { return /* binding */ UIButton; },
13958
- /* harmony export */ UIButtonState: function() { return /* binding */ UIButtonState; }
14002
+ /* harmony export */ UIButton: function() { return /* binding */ UIButton; }
13959
14003
  /* harmony export */ });
13960
14004
  /* harmony import */ var _swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(25045);
13961
14005
  /* harmony import */ var _swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(31635);
@@ -14038,10 +14082,10 @@ class UIButton extends jodit_core_ui_element__WEBPACK_IMPORTED_MODULE_11__.UIEle
14038
14082
  this.setMod('size', this.state.size);
14039
14083
  }
14040
14084
  onChangeType() {
14041
- (0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_10__.attr)(this.container, 'type', this.state.type);
14085
+ ;(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_10__.attr)(this.container, 'type', this.state.type);
14042
14086
  }
14043
14087
  onChangeRole() {
14044
- (0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_10__.attr)(this.container, 'role', this.state.role);
14088
+ ;(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_10__.attr)(this.container, 'role', this.state.role);
14045
14089
  }
14046
14090
  /**
14047
14091
  * Set size from a parent list
@@ -14064,10 +14108,10 @@ class UIButton extends jodit_core_ui_element__WEBPACK_IMPORTED_MODULE_11__.UIEle
14064
14108
  this.setMod('text-icons', Boolean(this.state.text.trim().length));
14065
14109
  }
14066
14110
  onChangeDisabled() {
14067
- (0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_10__.attr)(this.container, 'disabled', this.state.disabled || null);
14111
+ ;(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_10__.attr)(this.container, 'disabled', this.state.disabled || null);
14068
14112
  }
14069
14113
  onChangeActivated() {
14070
- (0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_10__.attr)(this.container, 'aria-pressed', this.state.activated);
14114
+ ;(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_10__.attr)(this.container, 'aria-pressed', this.state.activated);
14071
14115
  }
14072
14116
  onChangeName() {
14073
14117
  this.container.classList.add(`${this.componentName}_${this.clearName(this.state.name)}`);
@@ -14080,7 +14124,7 @@ class UIButton extends jodit_core_ui_element__WEBPACK_IMPORTED_MODULE_11__.UIEle
14080
14124
  if (this.get('j.o.useNativeTooltip')) {
14081
14125
  (0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_10__.attr)(this.container, 'title', i8nTooltip);
14082
14126
  }
14083
- (0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_10__.attr)(this.container, 'aria-label', i8nTooltip);
14127
+ ;(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_10__.attr)(this.container, 'aria-label', i8nTooltip);
14084
14128
  this.updateAriaLabel();
14085
14129
  }
14086
14130
  updateAriaLabel() {
@@ -14090,7 +14134,7 @@ class UIButton extends jodit_core_ui_element__WEBPACK_IMPORTED_MODULE_11__.UIEle
14090
14134
  (0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_10__.attr)(this.button, 'aria-label', !hasText ? i8nTooltip : null);
14091
14135
  }
14092
14136
  onChangeTabIndex() {
14093
- (0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_10__.attr)(this.container, 'tabindex', this.state.tabIndex);
14137
+ ;(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_10__.attr)(this.container, 'tabindex', this.state.tabIndex);
14094
14138
  }
14095
14139
  onChangeIcon() {
14096
14140
  const textIcons = this.get('j.o.textIcons');
@@ -14163,7 +14207,7 @@ class UIButton extends jodit_core_ui_element__WEBPACK_IMPORTED_MODULE_11__.UIEle
14163
14207
  }
14164
14208
  }
14165
14209
  }
14166
- (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
14210
+ ;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
14167
14211
  jodit_core_decorators_cache_cache__WEBPACK_IMPORTED_MODULE_3__.cache
14168
14212
  ], UIButton.prototype, "text", null);
14169
14213
  (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
@@ -14255,6 +14299,10 @@ function Button(jodit, stateOrText, text, variant) {
14255
14299
  return button;
14256
14300
  }
14257
14301
 
14302
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
14303
+ /* harmony export */ "UIButtonState", 0, /* binding */ UIButtonState
14304
+ /* harmony export */ ]);
14305
+
14258
14306
 
14259
14307
  /***/ }),
14260
14308
 
@@ -14565,7 +14613,7 @@ class UITooltip extends jodit_core_ui_element__WEBPACK_IMPORTED_MODULE_9__.UIEle
14565
14613
  }
14566
14614
  }
14567
14615
  }
14568
- (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
14616
+ ;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
14569
14617
  jodit_core_decorators__WEBPACK_IMPORTED_MODULE_3__.autobind
14570
14618
  ], UITooltip.prototype, "__onMouseLeave", null);
14571
14619
  (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
@@ -14944,7 +14992,7 @@ class UITextArea extends jodit_core_ui_form_inputs_input_input__WEBPACK_IMPORTED
14944
14992
  }
14945
14993
  }
14946
14994
  }
14947
- /** @override */ (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(UITextArea, "defaultState", {
14995
+ /** @override */ ;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(UITextArea, "defaultState", {
14948
14996
  ...jodit_core_ui_form_inputs_input_input__WEBPACK_IMPORTED_MODULE_5__.UIInput.defaultState,
14949
14997
  size: 5,
14950
14998
  resizable: true
@@ -15025,7 +15073,7 @@ class UICheckbox extends jodit_core_ui_form_inputs_input_input__WEBPACK_IMPORTED
15025
15073
  Object.assign(this.state, options);
15026
15074
  }
15027
15075
  }
15028
- /** @override */ (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(UICheckbox, "defaultState", {
15076
+ /** @override */ ;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(UICheckbox, "defaultState", {
15029
15077
  ...jodit_core_ui_form_inputs_input_input__WEBPACK_IMPORTED_MODULE_4__.UIInput.defaultState,
15030
15078
  checked: false,
15031
15079
  switch: false
@@ -15341,7 +15389,7 @@ class UIInput extends jodit_core_ui_element__WEBPACK_IMPORTED_MODULE_6__.UIEleme
15341
15389
  this.onChangeStateValue();
15342
15390
  }
15343
15391
  }
15344
- (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(UIInput, "defaultState", {
15392
+ ;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(UIInput, "defaultState", {
15345
15393
  className: '',
15346
15394
  autocomplete: true,
15347
15395
  name: '',
@@ -15457,7 +15505,7 @@ class UISelect extends jodit_core_ui_form_inputs_input_input__WEBPACK_IMPORTED_M
15457
15505
  Object.assign(this.state, state);
15458
15506
  }
15459
15507
  }
15460
- /** @override */ (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(UISelect, "defaultState", {
15508
+ /** @override */ ;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(UISelect, "defaultState", {
15461
15509
  ...jodit_core_ui_form_inputs_input_input__WEBPACK_IMPORTED_MODULE_4__.UIInput.defaultState,
15462
15510
  options: [],
15463
15511
  size: 1,
@@ -15497,10 +15545,6 @@ UISelect = (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)(
15497
15545
 
15498
15546
  "use strict";
15499
15547
  __webpack_require__.r(__webpack_exports__);
15500
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
15501
- /* harmony export */ required: function() { return /* binding */ required; },
15502
- /* harmony export */ url: function() { return /* binding */ url; }
15503
- /* harmony export */ });
15504
15548
  /* harmony import */ var jodit_core_helpers_checker_is_url__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(91764);
15505
15549
  /* harmony import */ var jodit_core_helpers_string_trim__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(4040);
15506
15550
  /*!
@@ -15530,6 +15574,11 @@ __webpack_require__.r(__webpack_exports__);
15530
15574
  return true;
15531
15575
  };
15532
15576
 
15577
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
15578
+ /* harmony export */ "required", 0, /* binding */ required,
15579
+ /* harmony export */ "url", 0, /* binding */ url
15580
+ /* harmony export */ ]);
15581
+
15533
15582
 
15534
15583
  /***/ }),
15535
15584
 
@@ -15537,9 +15586,6 @@ __webpack_require__.r(__webpack_exports__);
15537
15586
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
15538
15587
 
15539
15588
  "use strict";
15540
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
15541
- /* harmony export */ required: function() { return /* binding */ required; }
15542
- /* harmony export */ });
15543
15589
  /* harmony import */ var jodit_core_helpers_string_trim__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(4040);
15544
15590
  /*!
15545
15591
  * Jodit Editor (https://xdsoft.net/jodit/)
@@ -15558,6 +15604,10 @@ __webpack_require__.r(__webpack_exports__);
15558
15604
  return true;
15559
15605
  };
15560
15606
 
15607
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
15608
+ /* harmony export */ "required", 0, /* binding */ required
15609
+ /* harmony export */ ]);
15610
+
15561
15611
 
15562
15612
  /***/ }),
15563
15613
 
@@ -15707,7 +15757,7 @@ class UIGroup extends jodit_core_ui_element__WEBPACK_IMPORTED_MODULE_6__.UIEleme
15707
15757
  }
15708
15758
  }
15709
15759
  }
15710
- (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
15760
+ ;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
15711
15761
  (0,jodit_core_decorators__WEBPACK_IMPORTED_MODULE_3__.watch)('buttonSize')
15712
15762
  ], UIGroup.prototype, "update", null);
15713
15763
  UIGroup = (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
@@ -15907,7 +15957,7 @@ class UIList extends jodit_core_ui_group_group__WEBPACK_IMPORTED_MODULE_8__.UIGr
15907
15957
  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", []);
15908
15958
  }
15909
15959
  }
15910
- (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
15960
+ ;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
15911
15961
  (0,jodit_core_decorators_watch_watch__WEBPACK_IMPORTED_MODULE_5__.watch)('mode'),
15912
15962
  (0,jodit_core_decorators_hook_hook__WEBPACK_IMPORTED_MODULE_4__.hook)('ready')
15913
15963
  ], UIList.prototype, "__onChangeMode", null);
@@ -15985,8 +16035,7 @@ UISpacer = (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_0__.__decorate)(
15985
16035
 
15986
16036
  "use strict";
15987
16037
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
15988
- /* harmony export */ flatButtonsSet: function() { return /* binding */ flatButtonsSet; },
15989
- /* harmony export */ isButtonGroup: function() { return /* binding */ isButtonGroup; }
16038
+ /* harmony export */ flatButtonsSet: function() { return /* binding */ flatButtonsSet; }
15990
16039
  /* harmony export */ });
15991
16040
  /* harmony import */ var jodit_core_helpers_checker_is_array__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(17312);
15992
16041
  /*!
@@ -16018,6 +16067,10 @@ UISpacer = (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_0__.__decorate)(
16018
16067
  }, []));
16019
16068
  }
16020
16069
 
16070
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
16071
+ /* harmony export */ "isButtonGroup", 0, /* binding */ isButtonGroup
16072
+ /* harmony export */ ]);
16073
+
16021
16074
 
16022
16075
  /***/ }),
16023
16076
 
@@ -16228,7 +16281,7 @@ class Icon {
16228
16281
  return jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_2__.Dom.isElement(node) ? node : jodit.c.span('jodit-icon_text', node);
16229
16282
  }
16230
16283
  }
16231
- (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(Icon, "icons", {});
16284
+ ;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(Icon, "icons", {});
16232
16285
  (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(Icon, "__cache", new Map());
16233
16286
 
16234
16287
 
@@ -16394,7 +16447,7 @@ class Popup extends jodit_core_ui_group_group__WEBPACK_IMPORTED_MODULE_10__.UIGr
16394
16447
  /**
16395
16448
  * Open popup near with some bound
16396
16449
  */ open(getBound, keepPosition = false, parentContainer) {
16397
- (0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_6__.markOwner)(this.jodit, this.container);
16450
+ ;(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_6__.markOwner)(this.jodit, this.container);
16398
16451
  this.container.classList.add(`jodit_theme_${this.jodit.o.theme}`);
16399
16452
  this.__calculateZIndex();
16400
16453
  this.isOpened = true;
@@ -16610,7 +16663,7 @@ class Popup extends jodit_core_ui_group_group__WEBPACK_IMPORTED_MODULE_10__.UIGr
16610
16663
  /**
16611
16664
  * Set ZIndex
16612
16665
  */ setZIndex(index) {
16613
- (0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_6__.css)(this.container, 'zIndex', index.toString());
16666
+ ;(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_6__.css)(this.container, 'zIndex', index.toString());
16614
16667
  }
16615
16668
  render() {
16616
16669
  return `<div>
@@ -16631,7 +16684,7 @@ class Popup extends jodit_core_ui_group_group__WEBPACK_IMPORTED_MODULE_10__.UIGr
16631
16684
  (0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_6__.attr)(this.container, 'role', 'popup');
16632
16685
  }
16633
16686
  }
16634
- (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
16687
+ ;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
16635
16688
  jodit_core_decorators__WEBPACK_IMPORTED_MODULE_3__.autobind
16636
16689
  ], Popup.prototype, "updatePosition", null);
16637
16690
  (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
@@ -16697,7 +16750,7 @@ class ProgressBar extends jodit_core_ui_element__WEBPACK_IMPORTED_MODULE_5__.UIE
16697
16750
  return this;
16698
16751
  }
16699
16752
  progress(percentage) {
16700
- (0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_4__.css)(this.container, 'width', percentage.toFixed(2) + '%');
16753
+ ;(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_4__.css)(this.container, 'width', percentage.toFixed(2) + '%');
16701
16754
  return this;
16702
16755
  }
16703
16756
  showFileUploadAnimation(from, to) {
@@ -16905,7 +16958,7 @@ class ViewWithToolbar extends jodit_core_view_view__WEBPACK_IMPORTED_MODULE_11__
16905
16958
  this.e.on('beforeToolbarBuild', this.beforeToolbarBuild);
16906
16959
  }
16907
16960
  }
16908
- (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
16961
+ ;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
16909
16962
  (0,jodit_core_decorators_watch_watch__WEBPACK_IMPORTED_MODULE_4__.watch)(':rebuildToolbar')
16910
16963
  ], ViewWithToolbar.prototype, "buildToolbar", null);
16911
16964
  (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
@@ -17151,7 +17204,7 @@ class View extends jodit_core_component_component__WEBPACK_IMPORTED_MODULE_3__.C
17151
17204
  if (this.isDestructed) {
17152
17205
  return;
17153
17206
  }
17154
- (0,jodit_core_decorators_cache_cache__WEBPACK_IMPORTED_MODULE_7__.cached)(this, 'progressbar')?.destruct();
17207
+ ;(0,jodit_core_decorators_cache_cache__WEBPACK_IMPORTED_MODULE_7__.cached)(this, 'progressbar')?.destruct();
17155
17208
  (0,jodit_core_decorators_cache_cache__WEBPACK_IMPORTED_MODULE_7__.cached)(this, 'message')?.destruct();
17156
17209
  (0,jodit_core_decorators_cache_cache__WEBPACK_IMPORTED_MODULE_7__.cached)(this, 'asyncStorage')?.close();
17157
17210
  if (this.events) {
@@ -17159,7 +17212,7 @@ class View extends jodit_core_component_component__WEBPACK_IMPORTED_MODULE_3__.C
17159
17212
  // @ts-ignore
17160
17213
  this.events = undefined;
17161
17214
  }
17162
- (0,jodit_core_decorators_cache_cache__WEBPACK_IMPORTED_MODULE_7__.cached)(this, 'buffer')?.clear();
17215
+ ;(0,jodit_core_decorators_cache_cache__WEBPACK_IMPORTED_MODULE_7__.cached)(this, 'buffer')?.clear();
17163
17216
  jodit_core_dom__WEBPACK_IMPORTED_MODULE_10__.Dom.safeRemove(this.container);
17164
17217
  super.destruct();
17165
17218
  }
@@ -17178,7 +17231,7 @@ class View extends jodit_core_component_component__WEBPACK_IMPORTED_MODULE_3__.C
17178
17231
  }
17179
17232
  }
17180
17233
  // from webpack.config.ts
17181
- (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(View, "ES", jodit_core_constants__WEBPACK_IMPORTED_MODULE_5__.ES);
17234
+ ;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(View, "ES", jodit_core_constants__WEBPACK_IMPORTED_MODULE_5__.ES);
17182
17235
  (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(View, "version", jodit_core_constants__WEBPACK_IMPORTED_MODULE_5__.APP_VERSION);
17183
17236
  (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
17184
17237
  (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
@@ -17390,7 +17443,7 @@ class Jodit extends jodit_modules__WEBPACK_IMPORTED_MODULE_10__.ViewWithToolbar
17390
17443
  * @see {@link ConfigMerge} for the merge algorithm
17391
17444
  * @see {@link ConfigProto} for per-instance prototype-based merge used at editor creation time
17392
17445
  */ static configure(options) {
17393
- (0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_5__.ConfigMerge)(Jodit.defaultOptions, options);
17446
+ ;(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_5__.ConfigMerge)(Jodit.defaultOptions, options);
17394
17447
  }
17395
17448
  get createInside() {
17396
17449
  return new jodit_modules__WEBPACK_IMPORTED_MODULE_10__.Create(()=>this.ed, this.o.createAttributes);
@@ -18093,7 +18146,7 @@ class Jodit extends jodit_modules__WEBPACK_IMPORTED_MODULE_10__.ViewWithToolbar
18093
18146
  if (display) {
18094
18147
  (0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_5__.attr)(element, __defaultStyleDisplayKey, display);
18095
18148
  }
18096
- (0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_5__.css)(element, 'display', 'none');
18149
+ ;(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_5__.css)(element, 'display', 'none');
18097
18150
  }
18098
18151
  const SLOT = 'workplace-slot';
18099
18152
  // A slot that always stays ABOVE the toolbar (presence bars, banners…).
@@ -18453,7 +18506,7 @@ class Jodit extends jodit_modules__WEBPACK_IMPORTED_MODULE_10__.ViewWithToolbar
18453
18506
  if (this.e) {
18454
18507
  this.e.fire('afterInit', this);
18455
18508
  }
18456
- (0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_5__.callPromise)(this.afterInitHook());
18509
+ ;(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_5__.callPromise)(this.afterInitHook());
18457
18510
  this.setStatus(jodit_modules__WEBPACK_IMPORTED_MODULE_10__.STATUSES.ready);
18458
18511
  this.e.fire('afterConstructor', this);
18459
18512
  };
@@ -18461,7 +18514,7 @@ class Jodit extends jodit_modules__WEBPACK_IMPORTED_MODULE_10__.ViewWithToolbar
18461
18514
  });
18462
18515
  }
18463
18516
  }
18464
- (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(Jodit, "fatMode", jodit_core_constants__WEBPACK_IMPORTED_MODULE_2__.FAT_MODE);
18517
+ ;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(Jodit, "fatMode", jodit_core_constants__WEBPACK_IMPORTED_MODULE_2__.FAT_MODE);
18465
18518
  (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(Jodit, "plugins", jodit_core_global__WEBPACK_IMPORTED_MODULE_4__.pluginSystem);
18466
18519
  (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(Jodit, "modules", jodit_core_global__WEBPACK_IMPORTED_MODULE_4__.modules);
18467
18520
  (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(Jodit, "ns", jodit_core_global__WEBPACK_IMPORTED_MODULE_4__.modules);
@@ -19036,7 +19089,7 @@ class Dialog extends jodit_core_view_view_with_toolbar__WEBPACK_IMPORTED_MODULE_
19036
19089
  if (h == null) {
19037
19090
  h = this.dialog.offsetHeight;
19038
19091
  }
19039
- (0,jodit_core_helpers_utils__WEBPACK_IMPORTED_MODULE_9__.css)(this.dialog, {
19092
+ ;(0,jodit_core_helpers_utils__WEBPACK_IMPORTED_MODULE_9__.css)(this.dialog, {
19040
19093
  width: w,
19041
19094
  height: h
19042
19095
  });
@@ -19070,7 +19123,7 @@ class Dialog extends jodit_core_view_view_with_toolbar__WEBPACK_IMPORTED_MODULE_
19070
19123
  this.moved = Math.abs(x - left) > 100 || Math.abs(y - top) > 100;
19071
19124
  }
19072
19125
  // strings on purpose: `css()` would truncate fractional pixels
19073
- (0,jodit_core_helpers_utils__WEBPACK_IMPORTED_MODULE_9__.css)(this.dialog, {
19126
+ ;(0,jodit_core_helpers_utils__WEBPACK_IMPORTED_MODULE_9__.css)(this.dialog, {
19074
19127
  left: (x || left) + 'px',
19075
19128
  top: (y || top) + 'px'
19076
19129
  });
@@ -19358,7 +19411,7 @@ class Dialog extends jodit_core_view_view_with_toolbar__WEBPACK_IMPORTED_MODULE_
19358
19411
  if (this.o.zIndex) {
19359
19412
  (0,jodit_core_helpers_utils__WEBPACK_IMPORTED_MODULE_9__.css)(this.container, 'zIndex', this.o.zIndex.toString());
19360
19413
  }
19361
- (0,jodit_core_helpers_utils__WEBPACK_IMPORTED_MODULE_9__.attr)(self1.container, 'role', 'dialog');
19414
+ ;(0,jodit_core_helpers_utils__WEBPACK_IMPORTED_MODULE_9__.attr)(self1.container, 'role', 'dialog');
19362
19415
  Object.defineProperty(self1.container, 'component', {
19363
19416
  value: this
19364
19417
  });
@@ -19402,7 +19455,7 @@ class Dialog extends jodit_core_view_view_with_toolbar__WEBPACK_IMPORTED_MODULE_
19402
19455
  /**
19403
19456
  * Registry of the currently opened dialogs. Replaces a DOM scan of the
19404
19457
  * whole `destination` (usually `document.body`) for every z-index update.
19405
- */ (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(Dialog, "__opened", new Set());
19458
+ */ ;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(Dialog, "__opened", new Set());
19406
19459
  (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(Dialog, "defaultOptions", {
19407
19460
  ...jodit_core_view_view__WEBPACK_IMPORTED_MODULE_12__.View.defaultOptions,
19408
19461
  closeOnClickOverlay: false,
@@ -19723,9 +19776,6 @@ const CLASS_PREVIEW = 'jodit-file-browser-preview', preview_tpl_next = (next = '
19723
19776
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
19724
19777
 
19725
19778
  "use strict";
19726
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
19727
- /* harmony export */ elementsMap: function() { return /* binding */ elementsMap; }
19728
- /* harmony export */ });
19729
19779
  /*!
19730
19780
  * Jodit Editor (https://xdsoft.net/jodit/)
19731
19781
  * Released under MIT see LICENSE.txt in the project root for license information.
@@ -19745,6 +19795,10 @@ const CLASS_PREVIEW = 'jodit-file-browser-preview', preview_tpl_next = (next = '
19745
19795
  return result;
19746
19796
  };
19747
19797
 
19798
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
19799
+ /* harmony export */ "elementsMap", 0, /* binding */ elementsMap
19800
+ /* harmony export */ ]);
19801
+
19748
19802
 
19749
19803
  /***/ }),
19750
19804
 
@@ -19807,7 +19861,7 @@ class FileBrowserItem {
19807
19861
  return this.data;
19808
19862
  }
19809
19863
  constructor(data){
19810
- (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "data", void 0);
19864
+ ;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "data", void 0);
19811
19865
  (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "source", void 0);
19812
19866
  (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "sourceName", void 0);
19813
19867
  (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "type", void 0);
@@ -19826,10 +19880,6 @@ class FileBrowserItem {
19826
19880
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
19827
19881
 
19828
19882
  "use strict";
19829
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
19830
- /* harmony export */ elementToItem: function() { return /* binding */ elementToItem; },
19831
- /* harmony export */ getItem: function() { return /* binding */ getItem; }
19832
- /* harmony export */ });
19833
19883
  /* harmony import */ var jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(23211);
19834
19884
  /*!
19835
19885
  * Jodit Editor (https://xdsoft.net/jodit/)
@@ -19848,6 +19898,11 @@ class FileBrowserItem {
19848
19898
  return item;
19849
19899
  };
19850
19900
 
19901
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
19902
+ /* harmony export */ "elementToItem", 0, /* binding */ elementToItem,
19903
+ /* harmony export */ "getItem", 0, /* binding */ getItem
19904
+ /* harmony export */ ]);
19905
+
19851
19906
 
19852
19907
  /***/ }),
19853
19908
 
@@ -20213,7 +20268,6 @@ jodit_config__WEBPACK_IMPORTED_MODULE_5__.Config.prototype.controls.filebrowser
20213
20268
 
20214
20269
  "use strict";
20215
20270
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
20216
- /* harmony export */ DEFAULT_SOURCE_NAME: function() { return /* binding */ DEFAULT_SOURCE_NAME; },
20217
20271
  /* harmony export */ "default": function() { return /* binding */ DataProvider; }
20218
20272
  /* harmony export */ });
20219
20273
  /* harmony import */ var _swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(25045);
@@ -20417,7 +20471,7 @@ class DataProvider {
20417
20471
  /**
20418
20472
  * Get path by url. You can use this method in another modules
20419
20473
  */ getPathByUrl(url) {
20420
- (0,jodit_core_helpers_utils_set__WEBPACK_IMPORTED_MODULE_8__.set)('options.getLocalFileByUrl.data.url', url, this);
20474
+ ;(0,jodit_core_helpers_utils_set__WEBPACK_IMPORTED_MODULE_8__.set)('options.getLocalFileByUrl.data.url', url, this);
20421
20475
  return this.get('getLocalFileByUrl').then((resp)=>{
20422
20476
  if (this.isSuccess(resp)) {
20423
20477
  return resp.data;
@@ -20583,7 +20637,7 @@ class DataProvider {
20583
20637
  this.__ajaxInstances.clear();
20584
20638
  }
20585
20639
  constructor(parent, options){
20586
- (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "parent", void 0);
20640
+ ;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "parent", void 0);
20587
20641
  (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "options", void 0);
20588
20642
  (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "__currentPermissions", void 0);
20589
20643
  (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "__ajaxInstances", void 0);
@@ -20596,7 +20650,7 @@ class DataProvider {
20596
20650
  }
20597
20651
  }
20598
20652
 
20599
- (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
20653
+ ;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
20600
20654
  jodit_core_decorators_autobind_autobind__WEBPACK_IMPORTED_MODULE_3__.autobind
20601
20655
  ], DataProvider.prototype, "onProgress", null);
20602
20656
  (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
@@ -20651,6 +20705,10 @@ class DataProvider {
20651
20705
  jodit_core_decorators_autobind_autobind__WEBPACK_IMPORTED_MODULE_3__.autobind
20652
20706
  ], DataProvider.prototype, "destruct", null);
20653
20707
 
20708
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
20709
+ /* harmony export */ "DEFAULT_SOURCE_NAME", 0, /* binding */ DEFAULT_SOURCE_NAME
20710
+ /* harmony export */ ]);
20711
+
20654
20712
 
20655
20713
  /***/ }),
20656
20714
 
@@ -21005,7 +21063,7 @@ class FileBrowser extends jodit_core_view_view_with_toolbar__WEBPACK_IMPORTED_MO
21005
21063
  if (this.isInDestruct) {
21006
21064
  return;
21007
21065
  }
21008
- (0,jodit_core_decorators__WEBPACK_IMPORTED_MODULE_4__.cached)(this, '_dialog')?.destruct();
21066
+ ;(0,jodit_core_decorators__WEBPACK_IMPORTED_MODULE_4__.cached)(this, '_dialog')?.destruct();
21009
21067
  super.destruct();
21010
21068
  this.events && this.e.off('.filebrowser');
21011
21069
  this.uploader && this.uploader.destruct();
@@ -21109,7 +21167,7 @@ class FileBrowser extends jodit_core_view_view_with_toolbar__WEBPACK_IMPORTED_MO
21109
21167
  self.setStatus(jodit_core_component__WEBPACK_IMPORTED_MODULE_2__.STATUSES.ready);
21110
21168
  }
21111
21169
  }
21112
- (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
21170
+ ;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
21113
21171
  jodit_core_decorators__WEBPACK_IMPORTED_MODULE_4__.cache
21114
21172
  ], FileBrowser.prototype, "dataProvider", null);
21115
21173
  (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
@@ -21379,7 +21437,7 @@ function isEqualButtonList(prevButtons, buttons) {
21379
21437
  }, 'type name', name);
21380
21438
  }
21381
21439
  }).on('update.filebrowser', ()=>{
21382
- (0,jodit_modules_file_browser_fetch_load_tree__WEBPACK_IMPORTED_MODULE_5__.loadTree)(this).then(this.status, this.status);
21440
+ ;(0,jodit_modules_file_browser_fetch_load_tree__WEBPACK_IMPORTED_MODULE_5__.loadTree)(this).then(this.status, this.status);
21383
21441
  });
21384
21442
  }
21385
21443
 
@@ -21435,7 +21493,7 @@ const DEFAULT_SOURCE_NAME = 'default';
21435
21493
  if (this.o.saveStateInStorage && this.o.saveStateInStorage.storeLastOpenedFolder) {
21436
21494
  this.storage.set('currentPath', this.state.currentPath).set('currentSource', this.state.currentSource);
21437
21495
  }
21438
- (0,jodit_modules_file_browser_fetch_load_tree__WEBPACK_IMPORTED_MODULE_4__.loadTree)(this).catch(this.status);
21496
+ ;(0,jodit_modules_file_browser_fetch_load_tree__WEBPACK_IMPORTED_MODULE_4__.loadTree)(this).catch(this.status);
21439
21497
  }, this.defaultTimeout)).on('beforeChange.activeElements', ()=>{
21440
21498
  state.activeElements.forEach((item)=>{
21441
21499
  const key = item.uniqueHashKey, { elm } = elmMap[key];
@@ -21628,7 +21686,7 @@ class Command {
21628
21686
  this.history.snapshot.restore(this.newValue);
21629
21687
  }
21630
21688
  constructor(oldValue, newValue, history, tick){
21631
- (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "oldValue", void 0);
21689
+ ;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "oldValue", void 0);
21632
21690
  (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "newValue", void 0);
21633
21691
  (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "history", void 0);
21634
21692
  (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "tick", void 0);
@@ -21800,7 +21858,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_4__.Config.prototype.history = {
21800
21858
  }
21801
21859
  }
21802
21860
  }
21803
- (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
21861
+ ;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
21804
21862
  (0,jodit_core_decorators_debounce_debounce__WEBPACK_IMPORTED_MODULE_3__.debounce)()
21805
21863
  ], History.prototype, "onChange", null);
21806
21864
 
@@ -22089,7 +22147,7 @@ class Stack {
22089
22147
  return this.stackPosition < this.commands.length - 1;
22090
22148
  }
22091
22149
  constructor(size){
22092
- (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "size", void 0);
22150
+ ;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "size", void 0);
22093
22151
  (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "commands", void 0);
22094
22152
  (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "stackPosition", void 0);
22095
22153
  this.size = size;
@@ -22257,7 +22315,7 @@ class ImageEditor extends jodit_core_component__WEBPACK_IMPORTED_MODULE_2__.View
22257
22315
  } else {
22258
22316
  url += '?_tst=' + timestamp;
22259
22317
  }
22260
- (0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_6__.attr)(this.image, 'src', url);
22318
+ ;(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_6__.attr)(this.image, 'src', url);
22261
22319
  this._dialog.open();
22262
22320
  const { widthInput, heightInput } = (0,jodit_core_helpers_utils_selector__WEBPACK_IMPORTED_MODULE_8__.refs)(this.editor);
22263
22321
  const onload = ()=>{
@@ -22389,7 +22447,7 @@ class ImageEditor extends jodit_core_component__WEBPACK_IMPORTED_MODULE_2__.View
22389
22447
  if (self.top_y + self.new_h > self.cropImage.offsetHeight) {
22390
22448
  self.new_h = self.cropImage.offsetHeight - self.top_y;
22391
22449
  }
22392
- (0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_7__.css)(self.cropHandler, {
22450
+ ;(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_7__.css)(self.cropHandler, {
22393
22451
  width: self.new_w,
22394
22452
  height: self.new_h
22395
22453
  });
@@ -22397,11 +22455,11 @@ class ImageEditor extends jodit_core_component__WEBPACK_IMPORTED_MODULE_2__.View
22397
22455
  if (self.top_x + self.diff_x + self.cropHandler.offsetWidth > self.cropImage.offsetWidth) {
22398
22456
  self.diff_x = self.cropImage.offsetWidth - self.top_x - self.cropHandler.offsetWidth;
22399
22457
  }
22400
- (0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_7__.css)(self.cropHandler, 'left', self.top_x + self.diff_x);
22458
+ ;(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_7__.css)(self.cropHandler, 'left', self.top_x + self.diff_x);
22401
22459
  if (self.top_y + self.diff_y + self.cropHandler.offsetHeight > self.cropImage.offsetHeight) {
22402
22460
  self.diff_y = self.cropImage.offsetHeight - self.top_y - self.cropHandler.offsetHeight;
22403
22461
  }
22404
- (0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_7__.css)(self.cropHandler, 'top', self.top_y + self.diff_y);
22462
+ ;(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_7__.css)(self.cropHandler, 'top', self.top_y + self.diff_y);
22405
22463
  }
22406
22464
  this.j.e.fire(self.cropHandler, 'updatesize');
22407
22465
  }
@@ -22442,7 +22500,7 @@ class ImageEditor extends jodit_core_component__WEBPACK_IMPORTED_MODULE_2__.View
22442
22500
  wn = nw * (h / nh);
22443
22501
  hn = h;
22444
22502
  }
22445
- (0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_7__.css)(this.crop_box, {
22503
+ ;(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_7__.css)(this.crop_box, {
22446
22504
  width: wn,
22447
22505
  height: hn
22448
22506
  });
@@ -22459,7 +22517,7 @@ class ImageEditor extends jodit_core_component__WEBPACK_IMPORTED_MODULE_2__.View
22459
22517
  } else {
22460
22518
  this.new_h = ImageEditor.calcValueByPercent(h, this.o.cropDefaultHeight);
22461
22519
  }
22462
- (0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_7__.css)(this.cropHandler, {
22520
+ ;(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_7__.css)(this.cropHandler, {
22463
22521
  backgroundImage: 'url(' + (0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_6__.attr)(this.cropImage, 'src') + ')',
22464
22522
  width: this.new_w,
22465
22523
  height: this.new_h,
@@ -22507,7 +22565,7 @@ class ImageEditor extends jodit_core_component__WEBPACK_IMPORTED_MODULE_2__.View
22507
22565
  });
22508
22566
  }
22509
22567
  self.j.e.on(self.resizeHandler, 'updatesize', ()=>{
22510
- (0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_7__.css)(self.resizeHandler, {
22568
+ ;(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_7__.css)(self.resizeHandler, {
22511
22569
  top: 0,
22512
22570
  left: 0,
22513
22571
  width: self.image.offsetWidth || self.naturalWidth,
@@ -22537,7 +22595,7 @@ class ImageEditor extends jodit_core_component__WEBPACK_IMPORTED_MODULE_2__.View
22537
22595
  new_width = new_height * self.ratio;
22538
22596
  }
22539
22597
  }
22540
- (0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_7__.css)(self.cropHandler, {
22598
+ ;(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_7__.css)(self.cropHandler, {
22541
22599
  width: new_width,
22542
22600
  height: new_height,
22543
22601
  left: new_x,
@@ -22631,7 +22689,7 @@ class ImageEditor extends jodit_core_component__WEBPACK_IMPORTED_MODULE_2__.View
22631
22689
  this.setHandlers();
22632
22690
  }
22633
22691
  }
22634
- (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(ImageEditor, "calcValueByPercent", (value, percent)=>{
22692
+ ;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(ImageEditor, "calcValueByPercent", (value, percent)=>{
22635
22693
  const percentStr = percent.toString();
22636
22694
  const valueNbr = parseFloat(value.toString());
22637
22695
  let match;
@@ -22685,7 +22743,7 @@ ImageEditor = (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorat
22685
22743
  }
22686
22744
  return;
22687
22745
  }
22688
- (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)=>{
22746
+ ;(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)=>{
22689
22747
  if (result) {
22690
22748
  success();
22691
22749
  if (onSuccess) {
@@ -22708,9 +22766,6 @@ ImageEditor = (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorat
22708
22766
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
22709
22767
 
22710
22768
  "use strict";
22711
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
22712
- /* harmony export */ form: function() { return /* binding */ form; }
22713
- /* harmony export */ });
22714
22769
  /* harmony import */ var jodit_core_ui__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(4099);
22715
22770
  /*!
22716
22771
  * Jodit Editor (https://xdsoft.net/jodit/)
@@ -22787,6 +22842,10 @@ const form = (editor, o)=>{
22787
22842
  </form>`);
22788
22843
  };
22789
22844
 
22845
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
22846
+ /* harmony export */ "form", 0, /* binding */ form
22847
+ /* harmony export */ ]);
22848
+
22790
22849
 
22791
22850
  /***/ }),
22792
22851
 
@@ -23875,7 +23934,7 @@ class Table extends jodit_core_component__WEBPACK_IMPORTED_MODULE_2__.ViewCompon
23875
23934
  super(...args), (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "selected", new Set());
23876
23935
  }
23877
23936
  }
23878
- (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(Table, "__selectedByTable", new WeakMap());
23937
+ ;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(Table, "__selectedByTable", new WeakMap());
23879
23938
  (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
23880
23939
  (0,jodit_core_decorators__WEBPACK_IMPORTED_MODULE_4__.debounce)()
23881
23940
  ], Table.prototype, "__recalculateStyles", null);
@@ -24009,7 +24068,7 @@ class ToolbarButton extends jodit_core_ui_button__WEBPACK_IMPORTED_MODULE_19__.U
24009
24068
  return Boolean(tc && tc.shouldBeDisabled(this));
24010
24069
  }
24011
24070
  onChangeActivated() {
24012
- (0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_17__.attr)(this.button, 'aria-pressed', this.state.activated);
24071
+ ;(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_17__.attr)(this.button, 'aria-pressed', this.state.activated);
24013
24072
  super.onChangeActivated();
24014
24073
  }
24015
24074
  onChangeText() {
@@ -24021,7 +24080,7 @@ class ToolbarButton extends jodit_core_ui_button__WEBPACK_IMPORTED_MODULE_19__.U
24021
24080
  this.setMod('text-icons', Boolean(this.text.innerText.trim().length));
24022
24081
  }
24023
24082
  onChangeTabIndex() {
24024
- (0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_17__.attr)(this.button, 'tabindex', this.state.tabIndex);
24083
+ ;(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_17__.attr)(this.button, 'tabindex', this.state.tabIndex);
24025
24084
  (0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_17__.attr)(this.trigger, 'tabindex', this.state.tabIndex);
24026
24085
  }
24027
24086
  createContainer() {
@@ -24313,7 +24372,7 @@ class ToolbarButton extends jodit_core_ui_button__WEBPACK_IMPORTED_MODULE_19__.U
24313
24372
  }
24314
24373
  }
24315
24374
  }
24316
- (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
24375
+ ;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
24317
24376
  jodit_core_decorators_cache_cache__WEBPACK_IMPORTED_MODULE_5__.cacheHTML
24318
24377
  ], ToolbarButton.prototype, "createContainer", null);
24319
24378
  (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
@@ -24587,7 +24646,7 @@ class ToolbarCollection extends jodit_core_ui_group_list__WEBPACK_IMPORTED_MODUL
24587
24646
  /**
24588
24647
  * Set direction
24589
24648
  */ setDirection(direction) {
24590
- (0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_8__.css)(this.container, 'direction', direction);
24649
+ ;(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_8__.css)(this.container, 'direction', direction);
24591
24650
  (0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_7__.attr)(this.container, 'dir', direction);
24592
24651
  }
24593
24652
  __initEvents() {
@@ -24621,7 +24680,7 @@ class ToolbarCollection extends jodit_core_ui_group_list__WEBPACK_IMPORTED_MODUL
24621
24680
  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');
24622
24681
  }
24623
24682
  }
24624
- (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
24683
+ ;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
24625
24684
  (0,jodit_core_decorators_watch_watch__WEBPACK_IMPORTED_MODULE_6__.watch)(':afterInit'),
24626
24685
  jodit_core_decorators_autobind_autobind__WEBPACK_IMPORTED_MODULE_3__.autobind
24627
24686
  ], ToolbarCollection.prototype, "__immediateUpdate", null);
@@ -25254,7 +25313,6 @@ function readImagesWithReader(fileList, imagesExtensions, promises, uploader, ha
25254
25313
 
25255
25314
  "use strict";
25256
25315
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
25257
- /* harmony export */ ajaxInstances: function() { return /* binding */ ajaxInstances; },
25258
25316
  /* harmony export */ send: function() { return /* binding */ send; }
25259
25317
  /* harmony export */ });
25260
25318
  /* harmony import */ var jodit_core_helpers__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(65946);
@@ -25336,6 +25394,10 @@ function send(uploader, data) {
25336
25394
  return sendData(requestData, showProgress);
25337
25395
  }
25338
25396
 
25397
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
25398
+ /* harmony export */ "ajaxInstances", 0, /* binding */ ajaxInstances
25399
+ /* harmony export */ ]);
25400
+
25339
25401
 
25340
25402
  /***/ }),
25341
25403
 
@@ -25512,7 +25574,7 @@ class Uploader extends jodit_core_component___WEBPACK_IMPORTED_MODULE_1__.ViewCo
25512
25574
  }
25513
25575
  upload(files) {
25514
25576
  return this.async.promise((resolve, reject)=>{
25515
- (0,jodit_modules_uploader_helpers__WEBPACK_IMPORTED_MODULE_6__.sendFiles)(this, files, resolve, reject);
25577
+ ;(0,jodit_modules_uploader_helpers__WEBPACK_IMPORTED_MODULE_6__.sendFiles)(this, files, resolve, reject);
25516
25578
  });
25517
25579
  }
25518
25580
  destruct() {
@@ -25541,9 +25603,6 @@ class Uploader extends jodit_core_component___WEBPACK_IMPORTED_MODULE_1__.ViewCo
25541
25603
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
25542
25604
 
25543
25605
  "use strict";
25544
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
25545
- /* harmony export */ ColorPickerWidget: function() { return /* binding */ ColorPickerWidget; }
25546
- /* harmony export */ });
25547
25606
  /* harmony import */ var jodit_core_dom__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(27795);
25548
25607
  /* harmony import */ var jodit_core_helpers___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(65946);
25549
25608
  /* harmony import */ var jodit_core_ui__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(4099);
@@ -25669,6 +25728,10 @@ jodit_core_ui__WEBPACK_IMPORTED_MODULE_2__.Icon.set('palette', (_palette_svg__WE
25669
25728
  return form;
25670
25729
  };
25671
25730
 
25731
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
25732
+ /* harmony export */ "ColorPickerWidget", 0, /* binding */ ColorPickerWidget
25733
+ /* harmony export */ ]);
25734
+
25672
25735
 
25673
25736
  /***/ }),
25674
25737
 
@@ -25676,9 +25739,6 @@ jodit_core_ui__WEBPACK_IMPORTED_MODULE_2__.Icon.set('palette', (_palette_svg__WE
25676
25739
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
25677
25740
 
25678
25741
  "use strict";
25679
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
25680
- /* harmony export */ FileSelectorWidget: function() { return /* binding */ FileSelectorWidget; }
25681
- /* harmony export */ });
25682
25742
  /* harmony import */ var jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(23211);
25683
25743
  /* harmony import */ var jodit_core_helpers__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(65946);
25684
25744
  /* harmony import */ var jodit_core_ui__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(4099);
@@ -25803,6 +25863,10 @@ function val(elm, name, value) {
25803
25863
  return child.value;
25804
25864
  }
25805
25865
 
25866
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
25867
+ /* harmony export */ "FileSelectorWidget", 0, /* binding */ FileSelectorWidget
25868
+ /* harmony export */ ]);
25869
+
25806
25870
 
25807
25871
  /***/ }),
25808
25872
 
@@ -25837,9 +25901,6 @@ function val(elm, name, value) {
25837
25901
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
25838
25902
 
25839
25903
  "use strict";
25840
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
25841
- /* harmony export */ TabsWidget: function() { return /* binding */ TabsWidget; }
25842
- /* harmony export */ });
25843
25904
  /* harmony import */ var jodit_core_component__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(16964);
25844
25905
  /* harmony import */ var jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(23211);
25845
25906
  /* harmony import */ var jodit_core_helpers_checker_is_function__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(91565);
@@ -25965,6 +26026,10 @@ function val(elm, name, value) {
25965
26026
  return box;
25966
26027
  };
25967
26028
 
26029
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
26030
+ /* harmony export */ "TabsWidget", 0, /* binding */ TabsWidget
26031
+ /* harmony export */ ]);
26032
+
25968
26033
 
25969
26034
  /***/ }),
25970
26035
 
@@ -26034,7 +26099,7 @@ jodit_core_ui_icon__WEBPACK_IMPORTED_MODULE_3__.Icon.set('about', (_about_svg__W
26034
26099
  /***/ }),
26035
26100
 
26036
26101
  /***/ 42766:
26037
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
26102
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
26038
26103
 
26039
26104
  "use strict";
26040
26105
  /* unused harmony export addNewLine */
@@ -26222,7 +26287,7 @@ const ns = 'addnewline';
26222
26287
  });
26223
26288
  }
26224
26289
  }
26225
- (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
26290
+ ;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
26226
26291
  (0,jodit_core_decorators__WEBPACK_IMPORTED_MODULE_2__.watch)(':lock')
26227
26292
  ], addNewLine.prototype, "onLock", null);
26228
26293
  (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
@@ -26273,7 +26338,7 @@ jodit_core_ui_icon__WEBPACK_IMPORTED_MODULE_0__.Icon.set('enter', (_enter_svg__W
26273
26338
  /***/ }),
26274
26339
 
26275
26340
  /***/ 14774:
26276
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
26341
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
26277
26342
 
26278
26343
  "use strict";
26279
26344
  /* unused harmony export aiAssistant */
@@ -26370,7 +26435,7 @@ jodit_core_ui_icon__WEBPACK_IMPORTED_MODULE_0__.Icon.set('enter', (_enter_svg__W
26370
26435
  });
26371
26436
  }
26372
26437
  /** @override */ beforeDestruct(_) {
26373
- (0,jodit_core_decorators_cache_cache__WEBPACK_IMPORTED_MODULE_2__.cached)(this, '__container')?.destruct();
26438
+ ;(0,jodit_core_decorators_cache_cache__WEBPACK_IMPORTED_MODULE_2__.cached)(this, '__container')?.destruct();
26374
26439
  (0,jodit_core_decorators_cache_cache__WEBPACK_IMPORTED_MODULE_2__.cached)(this, '__dialog')?.destruct();
26375
26440
  }
26376
26441
  constructor(jodit){
@@ -26387,7 +26452,7 @@ jodit_core_ui_icon__WEBPACK_IMPORTED_MODULE_0__.Icon.set('enter', (_enter_svg__W
26387
26452
  (0,jodit_core_global__WEBPACK_IMPORTED_MODULE_4__.extendLang)(_langs__WEBPACK_IMPORTED_MODULE_9__);
26388
26453
  }
26389
26454
  }
26390
- (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
26455
+ ;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
26391
26456
  jodit_core_decorators_cache_cache__WEBPACK_IMPORTED_MODULE_2__.cache
26392
26457
  ], aiAssistant.prototype, "__dialog", null);
26393
26458
  (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
@@ -26405,7 +26470,7 @@ jodit_core_global__WEBPACK_IMPORTED_MODULE_4__.pluginSystem.add('ai-assistant',
26405
26470
  /***/ }),
26406
26471
 
26407
26472
  /***/ 77227:
26408
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
26473
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
26409
26474
 
26410
26475
  "use strict";
26411
26476
  /* unused harmony exports aiAssitentCommands, aiAssistantDefaults */
@@ -26708,7 +26773,7 @@ class UiAiAssistant extends jodit_core_ui_element__WEBPACK_IMPORTED_MODULE_7__.U
26708
26773
  this.onChangePromptValue();
26709
26774
  }
26710
26775
  }
26711
- (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
26776
+ ;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
26712
26777
  (0,jodit_core_decorators_watch_watch__WEBPACK_IMPORTED_MODULE_3__.watch)(':ai-assistant-response')
26713
26778
  ], UiAiAssistant.prototype, "onAiAssistentResponse", null);
26714
26779
  (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
@@ -26725,7 +26790,7 @@ UiAiAssistant = (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decor
26725
26790
  /***/ }),
26726
26791
 
26727
26792
  /***/ 28286:
26728
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
26793
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
26729
26794
 
26730
26795
  "use strict";
26731
26796
  /* unused harmony export backspace */
@@ -26808,7 +26873,7 @@ class backspace extends jodit_core_plugin__WEBPACK_IMPORTED_MODULE_5__.Plugin {
26808
26873
  if (jodit.e.fire('backSpaceBeforeCases', backspace, fakeNode)) {
26809
26874
  return false;
26810
26875
  }
26811
- (0,jodit_core_selection_helpers__WEBPACK_IMPORTED_MODULE_6__.moveNodeInsideStart)(jodit, fakeNode, backspace);
26876
+ ;(0,jodit_core_selection_helpers__WEBPACK_IMPORTED_MODULE_6__.moveNodeInsideStart)(jodit, fakeNode, backspace);
26812
26877
  const disabled = jodit.o.delete.disableCases;
26813
26878
  if (_cases__WEBPACK_IMPORTED_MODULE_9__.casesMap.some(([key, func])=>{
26814
26879
  if (disabled && disabled.has(key)) {
@@ -26858,7 +26923,7 @@ class backspace extends jodit_core_plugin__WEBPACK_IMPORTED_MODULE_5__.Plugin {
26858
26923
  jodit_core_dom__WEBPACK_IMPORTED_MODULE_2__.Dom.safeRemove(fakeNode);
26859
26924
  }
26860
26925
  }
26861
- (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(backspace, "requires", [
26926
+ ;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(backspace, "requires", [
26862
26927
  'hotkeys'
26863
26928
  ]);
26864
26929
  jodit_core_global__WEBPACK_IMPORTED_MODULE_3__.pluginSystem.add('backspace', backspace);
@@ -27204,7 +27269,7 @@ function replaceSpaceOnNBSP(anotherSibling, backspace, value) {
27204
27269
  }
27205
27270
  }
27206
27271
  function checkRepeatRemoveCharAction(backspace, sibling, fakeNode, mode, removed, jodit) {
27207
- (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);
27272
+ ;(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);
27208
27273
  if (mode === 'sentence' || mode === 'word' && removed !== ' ' && removed !== jodit_core_constants__WEBPACK_IMPORTED_MODULE_0__.NBSP_SPACE) {
27209
27274
  checkRemoveChar(jodit, fakeNode, backspace, mode);
27210
27275
  }
@@ -27494,7 +27559,7 @@ function checkRepeatRemoveCharAction(backspace, sibling, fakeNode, mode, removed
27494
27559
  if (jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_0__.Dom.isEmpty(ul)) {
27495
27560
  jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_0__.Dom.safeRemove(ul);
27496
27561
  }
27497
- (0,jodit_core_helpers_utils__WEBPACK_IMPORTED_MODULE_1__.call)(backspace ? s.setCursorBefore : s.setCursorAfter, fakeNode);
27562
+ ;(0,jodit_core_helpers_utils__WEBPACK_IMPORTED_MODULE_1__.call)(backspace ? s.setCursorBefore : s.setCursorAfter, fakeNode);
27498
27563
  return true;
27499
27564
  }
27500
27565
  return false;
@@ -27507,9 +27572,6 @@ function checkRepeatRemoveCharAction(backspace, sibling, fakeNode, mode, removed
27507
27572
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
27508
27573
 
27509
27574
  "use strict";
27510
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
27511
- /* harmony export */ casesMap: function() { return /* binding */ casesMap; }
27512
- /* harmony export */ });
27513
27575
  /* unused harmony export cases */
27514
27576
  /* harmony import */ var _check_join_neighbors__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(26106);
27515
27577
  /* harmony import */ var _check_join_two_lists__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(80951);
@@ -27583,6 +27645,10 @@ function checkRepeatRemoveCharAction(backspace, sibling, fakeNode, mode, removed
27583
27645
  * @deprecated Use `casesMap` to also get the stable case keys.
27584
27646
  */ const cases = casesMap.map(([, fn])=>fn);
27585
27647
 
27648
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
27649
+ /* harmony export */ "casesMap", 0, /* binding */ casesMap
27650
+ /* harmony export */ ]);
27651
+
27586
27652
 
27587
27653
  /***/ }),
27588
27654
 
@@ -27676,7 +27742,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.delete = {
27676
27742
  /***/ }),
27677
27743
 
27678
27744
  /***/ 91678:
27679
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
27745
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
27680
27746
 
27681
27747
  "use strict";
27682
27748
  /* unused harmony export bold */
@@ -27863,7 +27929,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.controls.strikethroug
27863
27929
  /***/ }),
27864
27930
 
27865
27931
  /***/ 58910:
27866
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
27932
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
27867
27933
 
27868
27934
  "use strict";
27869
27935
  /* unused harmony export classSpan */
@@ -27976,7 +28042,7 @@ jodit_core_ui_icon__WEBPACK_IMPORTED_MODULE_5__.Icon.set('class-span', (_class_s
27976
28042
  /***/ }),
27977
28043
 
27978
28044
  /***/ 11018:
27979
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
28045
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
27980
28046
 
27981
28047
  "use strict";
27982
28048
  /* unused harmony export cleanHtml */
@@ -28080,7 +28146,7 @@ jodit_core_ui_icon__WEBPACK_IMPORTED_MODULE_5__.Icon.set('class-span', (_class_s
28080
28146
  if (sanitizer) {
28081
28147
  sandBox.innerHTML = sanitizer(sandBox.innerHTML);
28082
28148
  }
28083
- (0,jodit_core_helpers_html_safe_html__WEBPACK_IMPORTED_MODULE_6__.safeHTML)(sandBox, this.j.o.cleanHTML);
28149
+ ;(0,jodit_core_helpers_html_safe_html__WEBPACK_IMPORTED_MODULE_6__.safeHTML)(sandBox, this.j.o.cleanHTML);
28084
28150
  }
28085
28151
  /** @override */ beforeDestruct() {
28086
28152
  this.walker.destruct();
@@ -28096,7 +28162,7 @@ jodit_core_ui_icon__WEBPACK_IMPORTED_MODULE_5__.Icon.set('class-span', (_class_s
28096
28162
  }));
28097
28163
  }
28098
28164
  }
28099
- (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
28165
+ ;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
28100
28166
  (0,jodit_core_decorators__WEBPACK_IMPORTED_MODULE_2__.watch)([
28101
28167
  ':change',
28102
28168
  ':afterSetMode',
@@ -28468,7 +28534,7 @@ const VIMEO_EMBED = /^(https?:)?\/\/player\.vimeo\.com\/video\//i;
28468
28534
  // `attrRaw` on purpose: the sanitizer must remove exactly the
28469
28535
  // attribute name from the live list, without the `attr()`
28470
28536
  // helper name normalization
28471
- (0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_1__.attrRaw)(nodeElm, attr, null);
28537
+ ;(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_1__.attrRaw)(nodeElm, attr, null);
28472
28538
  });
28473
28539
  }
28474
28540
  }
@@ -29061,7 +29127,7 @@ const keys = Object.keys(_filters__WEBPACK_IMPORTED_MODULE_1__);
29061
29127
  /***/ }),
29062
29128
 
29063
29129
  /***/ 43354:
29064
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
29130
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
29065
29131
 
29066
29132
  "use strict";
29067
29133
  /* unused harmony export clipboard */
@@ -29113,11 +29179,11 @@ const keys = Object.keys(_filters__WEBPACK_IMPORTED_MODULE_1__);
29113
29179
  });
29114
29180
  }
29115
29181
  /** @override */ destruct(editor) {
29116
- (0,jodit_core_decorators_cache_cache__WEBPACK_IMPORTED_MODULE_2__.cached)(editor, 'buffer')?.set(jodit_core_constants__WEBPACK_IMPORTED_MODULE_1__.CLIPBOARD_ID, '');
29182
+ ;(0,jodit_core_decorators_cache_cache__WEBPACK_IMPORTED_MODULE_2__.cached)(editor, 'buffer')?.set(jodit_core_constants__WEBPACK_IMPORTED_MODULE_1__.CLIPBOARD_ID, '');
29117
29183
  editor?.events?.off('.' + jodit_core_constants__WEBPACK_IMPORTED_MODULE_1__.CLIPBOARD_ID);
29118
29184
  }
29119
29185
  constructor(){
29120
- (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "jodit", void 0);
29186
+ ;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "jodit", void 0);
29121
29187
  /** @override */ (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "buttons", [
29122
29188
  {
29123
29189
  name: 'cut',
@@ -29213,7 +29279,7 @@ jodit_core_ui_icon__WEBPACK_IMPORTED_MODULE_0__.Icon.set('copy', (_icons_copy_sv
29213
29279
  /***/ }),
29214
29280
 
29215
29281
  /***/ 42462:
29216
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
29282
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
29217
29283
 
29218
29284
  "use strict";
29219
29285
  /* unused harmony export color */
@@ -29317,7 +29383,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_3__.Config.prototype.controls.brushCell =
29317
29383
  }
29318
29384
  const makeColorPicker = (key)=>(0,jodit_modules_widget__WEBPACK_IMPORTED_MODULE_4__.ColorPickerWidget)(editor, (value)=>{
29319
29385
  selected.forEach((cell)=>{
29320
- (0,jodit_core_helpers___WEBPACK_IMPORTED_MODULE_1__.css)(cell, key, value);
29386
+ ;(0,jodit_core_helpers___WEBPACK_IMPORTED_MODULE_1__.css)(cell, key, value);
29321
29387
  });
29322
29388
  editor.lock();
29323
29389
  editor.synchronizeValues();
@@ -29405,7 +29471,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_3__.Config.prototype.controls.brush = {
29405
29471
  } else {
29406
29472
  (0,jodit_core_helpers___WEBPACK_IMPORTED_MODULE_1__.css)(currentElement, 'backgroundColor', value);
29407
29473
  }
29408
- (0,jodit_core_helpers___WEBPACK_IMPORTED_MODULE_1__.dataBind)(button, 'color', value);
29474
+ ;(0,jodit_core_helpers___WEBPACK_IMPORTED_MODULE_1__.dataBind)(button, 'color', value);
29409
29475
  (0,jodit_core_helpers___WEBPACK_IMPORTED_MODULE_1__.dataBind)(button, 'color-mode', 'background');
29410
29476
  close();
29411
29477
  }, bg_color);
@@ -29415,7 +29481,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_3__.Config.prototype.controls.brush = {
29415
29481
  } else {
29416
29482
  (0,jodit_core_helpers___WEBPACK_IMPORTED_MODULE_1__.css)(currentElement, 'color', value);
29417
29483
  }
29418
- (0,jodit_core_helpers___WEBPACK_IMPORTED_MODULE_1__.dataBind)(button, 'color', value);
29484
+ ;(0,jodit_core_helpers___WEBPACK_IMPORTED_MODULE_1__.dataBind)(button, 'color', value);
29419
29485
  (0,jodit_core_helpers___WEBPACK_IMPORTED_MODULE_1__.dataBind)(button, 'color-mode', 'color');
29420
29486
  close();
29421
29487
  }, colorHEX);
@@ -29459,7 +29525,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_3__.Config.prototype.controls.brush = {
29459
29525
  /***/ }),
29460
29526
 
29461
29527
  /***/ 30062:
29462
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
29528
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
29463
29529
 
29464
29530
  "use strict";
29465
29531
  /* unused harmony export copyFormat */
@@ -29645,7 +29711,7 @@ __webpack_require__.r(__webpack_exports__);
29645
29711
  /***/ }),
29646
29712
 
29647
29713
  /***/ 63974:
29648
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
29714
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
29649
29715
 
29650
29716
  "use strict";
29651
29717
  /* unused harmony export deleteCommand */
@@ -29783,7 +29849,7 @@ class deleteCommand extends jodit_core_plugin__WEBPACK_IMPORTED_MODULE_5__.Plugi
29783
29849
  }
29784
29850
  }
29785
29851
  }
29786
- (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(deleteCommand, "requires", [
29852
+ ;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(deleteCommand, "requires", [
29787
29853
  'backspace'
29788
29854
  ]);
29789
29855
  jodit_core_global__WEBPACK_IMPORTED_MODULE_2__.pluginSystem.add('deleteCommand', deleteCommand);
@@ -29813,7 +29879,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.draggableTags = [
29813
29879
  /***/ }),
29814
29880
 
29815
29881
  /***/ 43102:
29816
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
29882
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
29817
29883
 
29818
29884
  "use strict";
29819
29885
  /* unused harmony export dragAndDropElement */
@@ -29841,12 +29907,12 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.draggableTags = [
29841
29907
 
29842
29908
 
29843
29909
 
29844
- var DragState = /*#__PURE__*/ function(DragState) {
29910
+ var DragState = /*#__PURE__*/ (/* unused pure expression or super */ null && (function(DragState) {
29845
29911
  DragState[DragState["IDLE"] = 0] = "IDLE";
29846
29912
  DragState[DragState["WAIT_DRAGGING"] = 1] = "WAIT_DRAGGING";
29847
29913
  DragState[DragState["DRAGGING"] = 2] = "DRAGGING";
29848
29914
  return DragState;
29849
- }(DragState || {});
29915
+ }(DragState || {})));
29850
29916
  /**
29851
29917
  * Process drag and drop image or another element inside the editor
29852
29918
  */ class dragAndDropElement extends jodit_core_plugin__WEBPACK_IMPORTED_MODULE_6__.Plugin {
@@ -29946,7 +30012,7 @@ var DragState = /*#__PURE__*/ function(DragState) {
29946
30012
  });
29947
30013
  jodit_core_dom__WEBPACK_IMPORTED_MODULE_3__.Dom.append((0,jodit_core_global__WEBPACK_IMPORTED_MODULE_4__.getContainer)(this.j, dragAndDropElement), this.draggable);
29948
30014
  }
29949
- (0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_5__.css)(this.draggable, {
30015
+ ;(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_5__.css)(this.draggable, {
29950
30016
  left: event.clientX,
29951
30017
  top: event.clientY
29952
30018
  });
@@ -30027,7 +30093,7 @@ var DragState = /*#__PURE__*/ function(DragState) {
30027
30093
  */ (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);
30028
30094
  }
30029
30095
  }
30030
- (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
30096
+ ;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
30031
30097
  jodit_core_decorators__WEBPACK_IMPORTED_MODULE_2__.autobind
30032
30098
  ], dragAndDropElement.prototype, "onStartDragElement", null);
30033
30099
  (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
@@ -30048,7 +30114,7 @@ jodit_core_global__WEBPACK_IMPORTED_MODULE_4__.pluginSystem.add('dragAndDropElem
30048
30114
  /***/ }),
30049
30115
 
30050
30116
  /***/ 64222:
30051
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
30117
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
30052
30118
 
30053
30119
  "use strict";
30054
30120
  /* unused harmony export dragAndDrop */
@@ -30215,7 +30281,7 @@ jodit_core_global__WEBPACK_IMPORTED_MODULE_4__.pluginSystem.add('dragAndDropElem
30215
30281
  });
30216
30282
  }
30217
30283
  }
30218
- (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
30284
+ ;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
30219
30285
  jodit_core_decorators__WEBPACK_IMPORTED_MODULE_3__.autobind
30220
30286
  ], dragAndDrop.prototype, "onDragStart", null);
30221
30287
  (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
@@ -30468,7 +30534,7 @@ class dtd extends jodit_core_plugin__WEBPACK_IMPORTED_MODULE_3__.Plugin {
30468
30534
  });
30469
30535
  }
30470
30536
  }
30471
- (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_0__.__decorate)([
30537
+ ;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_0__.__decorate)([
30472
30538
  (0,jodit_core_decorators_watch_watch__WEBPACK_IMPORTED_MODULE_1__.watch)(':beforeInsertNode')
30473
30539
  ], dtd.prototype, "__onBeforeInsertNode", null);
30474
30540
  (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_0__.__decorate)([
@@ -30480,7 +30546,7 @@ jodit_core_global__WEBPACK_IMPORTED_MODULE_2__.pluginSystem.add('dtd', dtd);
30480
30546
  /***/ }),
30481
30547
 
30482
30548
  /***/ 3678:
30483
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
30549
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
30484
30550
 
30485
30551
  "use strict";
30486
30552
  /* unused harmony export enter */
@@ -30573,7 +30639,7 @@ jodit_core_global__WEBPACK_IMPORTED_MODULE_2__.pluginSystem.add('dtd', dtd);
30573
30639
  (0,_helpers__WEBPACK_IMPORTED_MODULE_7__.processEmptyLILeaf)(fake, jodit, block);
30574
30640
  return false;
30575
30641
  }
30576
- (0,_helpers__WEBPACK_IMPORTED_MODULE_7__.splitFragment)(fake, jodit, block);
30642
+ ;(0,_helpers__WEBPACK_IMPORTED_MODULE_7__.splitFragment)(fake, jodit, block);
30577
30643
  } finally{
30578
30644
  fake.isConnected && jodit.s.setCursorBefore(fake);
30579
30645
  jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_3__.Dom.safeRemove(fake);
@@ -30587,7 +30653,7 @@ jodit_core_global__WEBPACK_IMPORTED_MODULE_2__.pluginSystem.add('dtd', dtd);
30587
30653
  editor.e.off('keydown.enter');
30588
30654
  }
30589
30655
  }
30590
- (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_0__.__decorate)([
30656
+ ;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_0__.__decorate)([
30591
30657
  (0,jodit_core_decorators__WEBPACK_IMPORTED_MODULE_2__.watch)(':keydown.enter')
30592
30658
  ], enter.prototype, "onEnterKeyDown", null);
30593
30659
  jodit_core_global__WEBPACK_IMPORTED_MODULE_4__.pluginSystem.add('enter', enter);
@@ -30640,7 +30706,7 @@ jodit_core_global__WEBPACK_IMPORTED_MODULE_4__.pluginSystem.add('enter', enter);
30640
30706
  jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_1__.Dom.after(br, clone);
30641
30707
  jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_1__.Dom.before(clone, fake);
30642
30708
  }
30643
- (0,jodit_core_helpers_utils_scroll_into_view__WEBPACK_IMPORTED_MODULE_2__.scrollIntoViewIfNeeded)(br, jodit.editor, jodit.ed);
30709
+ ;(0,jodit_core_helpers_utils_scroll_into_view__WEBPACK_IMPORTED_MODULE_2__.scrollIntoViewIfNeeded)(br, jodit.editor, jodit.ed);
30644
30710
  return true;
30645
30711
  }
30646
30712
  return false;
@@ -30970,7 +31036,7 @@ function brBefore(start) {
30970
31036
  } else {
30971
31037
  jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_0__.Dom.before(block, fake);
30972
31038
  }
30973
- (0,_insert_paragraph__WEBPACK_IMPORTED_MODULE_2__.insertParagraph)(fake, jodit, defaultTag);
31039
+ ;(0,_insert_paragraph__WEBPACK_IMPORTED_MODULE_2__.insertParagraph)(fake, jodit, defaultTag);
30974
31040
  if (cursorOnTheLeft && !cursorOnTheRight) {
30975
31041
  jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_0__.Dom.prepend(block, fake);
30976
31042
  }
@@ -30986,7 +31052,7 @@ function brBefore(start) {
30986
31052
  // After the split the caret stays inside `block` (the right half) —
30987
31053
  // `splitSelection` returns the left half, which is above the caret and
30988
31054
  // usually already visible. Follow the caret, not the left half. See #1300
30989
- (0,jodit_core_helpers_utils_scroll_into_view__WEBPACK_IMPORTED_MODULE_1__.scrollIntoViewIfNeeded)(block, jodit.editor, jodit.ed);
31055
+ ;(0,jodit_core_helpers_utils_scroll_into_view__WEBPACK_IMPORTED_MODULE_1__.scrollIntoViewIfNeeded)(block, jodit.editor, jodit.ed);
30990
31056
  }
30991
31057
 
30992
31058
 
@@ -31031,7 +31097,7 @@ function brBefore(start) {
31031
31097
  /***/ }),
31032
31098
 
31033
31099
  /***/ 49764:
31034
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
31100
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
31035
31101
 
31036
31102
  "use strict";
31037
31103
  /* unused harmony export file */
@@ -31096,7 +31162,7 @@ jodit_core_global__WEBPACK_IMPORTED_MODULE_1__.pluginSystem.add('file', file);
31096
31162
  /***/ }),
31097
31163
 
31098
31164
  /***/ 78690:
31099
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
31165
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
31100
31166
 
31101
31167
  "use strict";
31102
31168
  /* unused harmony export focus */
@@ -31340,7 +31406,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_4__.Config.prototype.controls.font = {
31340
31406
  /***/ }),
31341
31407
 
31342
31408
  /***/ 50294:
31343
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
31409
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
31344
31410
 
31345
31411
  "use strict";
31346
31412
  /* unused harmony export font */
@@ -31467,7 +31533,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_3__.Config.prototype.controls.paragraph =
31467
31533
  /***/ }),
31468
31534
 
31469
31535
  /***/ 53390:
31470
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
31536
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
31471
31537
 
31472
31538
  "use strict";
31473
31539
  /* unused harmony export formatBlock */
@@ -31550,7 +31616,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_2__.Config.prototype.controls.fullsize = {
31550
31616
  /***/ }),
31551
31617
 
31552
31618
  /***/ 69696:
31553
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
31619
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
31554
31620
 
31555
31621
  "use strict";
31556
31622
  /* unused harmony export fullsize */
@@ -31596,7 +31662,7 @@ const fullsizeStack = new Set();
31596
31662
  oldWidth = (0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_3__.css)(container, 'width', true);
31597
31663
  wasToggled = true;
31598
31664
  }
31599
- (0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_3__.css)(container, {
31665
+ ;(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_3__.css)(container, {
31600
31666
  height: editor.ow.innerHeight,
31601
31667
  width: editor.ow.innerWidth
31602
31668
  });
@@ -31698,7 +31764,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.commandToHotkeys = {
31698
31764
  /***/ }),
31699
31765
 
31700
31766
  /***/ 50982:
31701
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
31767
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
31702
31768
 
31703
31769
  "use strict";
31704
31770
  /* unused harmony export hotkeys */
@@ -31865,7 +31931,7 @@ jodit_core_global__WEBPACK_IMPORTED_MODULE_2__.pluginSystem.add('hotkeys', hotke
31865
31931
  /***/ }),
31866
31932
 
31867
31933
  /***/ 2952:
31868
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
31934
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
31869
31935
 
31870
31936
  "use strict";
31871
31937
  /* unused harmony export hr */
@@ -31947,7 +32013,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.iframeSandbox = null;
31947
32013
  /***/ }),
31948
32014
 
31949
32015
  /***/ 81144:
31950
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
32016
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
31951
32017
 
31952
32018
  "use strict";
31953
32019
  /* unused harmony export iframe */
@@ -32131,7 +32197,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.imageProcessor = {
32131
32197
  /***/ }),
32132
32198
 
32133
32199
  /***/ 39978:
32134
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
32200
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
32135
32201
 
32136
32202
  "use strict";
32137
32203
  /* unused harmony export imageProcessor */
@@ -32201,7 +32267,7 @@ const JODIT_IMAGE_BLOB_ID = JODIT_IMAGE_PROCESSOR_BINDED + 'blob-id';
32201
32267
  if (!editor.editor) {
32202
32268
  return;
32203
32269
  }
32204
- (0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_4__.$$)('img', editor.editor).forEach((elm)=>{
32270
+ ;(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_4__.$$)('img', editor.editor).forEach((elm)=>{
32205
32271
  if (!(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_4__.dataBind)(elm, JODIT_IMAGE_PROCESSOR_BINDED)) {
32206
32272
  (0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_4__.dataBind)(elm, JODIT_IMAGE_PROCESSOR_BINDED, true);
32207
32273
  if (!elm.complete) {
@@ -32220,7 +32286,7 @@ const JODIT_IMAGE_BLOB_ID = JODIT_IMAGE_PROCESSOR_BINDED + 'blob-id';
32220
32286
  });
32221
32287
  }
32222
32288
  }
32223
- (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_0__.__decorate)([
32289
+ ;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_0__.__decorate)([
32224
32290
  (0,jodit_core_decorators__WEBPACK_IMPORTED_MODULE_2__.watch)(':afterGetValueFromEditor')
32225
32291
  ], imageProcessor.prototype, "onAfterGetValueFromEditor", null);
32226
32292
  (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_0__.__decorate)([
@@ -32298,7 +32364,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.image = {
32298
32364
  /***/ }),
32299
32365
 
32300
32366
  /***/ 90886:
32301
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
32367
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
32302
32368
 
32303
32369
  "use strict";
32304
32370
  /* unused harmony export imageProperties */
@@ -32536,7 +32602,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.image = {
32536
32602
  });
32537
32603
  }
32538
32604
  }
32539
- (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
32605
+ ;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
32540
32606
  jodit_core_decorators__WEBPACK_IMPORTED_MODULE_2__.cache
32541
32607
  ], imageProperties.prototype, "form", null);
32542
32608
  (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
@@ -32926,7 +32992,7 @@ class UIImagePropertiesForm extends jodit_core_ui_group_group__WEBPACK_IMPORTED_
32926
32992
  this.append(this.__mainTab).append(this.__positionTab);
32927
32993
  }
32928
32994
  }
32929
- (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
32995
+ ;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
32930
32996
  (0,jodit_core_decorators__WEBPACK_IMPORTED_MODULE_2__.hook)('ready'),
32931
32997
  (0,jodit_core_decorators__WEBPACK_IMPORTED_MODULE_2__.watch)('state.sizeIsLocked')
32932
32998
  ], UIImagePropertiesForm.prototype, "onChangeSizeIsLocked", null);
@@ -33123,7 +33189,7 @@ class UIImageMainTab extends jodit_core_ui_group_group__WEBPACK_IMPORTED_MODULE_
33123
33189
  super(view), (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;
33124
33190
  }
33125
33191
  }
33126
- (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
33192
+ ;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
33127
33193
  (0,jodit_core_decorators_watch_watch__WEBPACK_IMPORTED_MODULE_4__.watch)('state.values.imageSrc')
33128
33194
  ], UIImageMainTab.prototype, "onStateImageSrcChange", null);
33129
33195
  (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
@@ -33391,7 +33457,7 @@ class UIImagePositionTab extends jodit_core_ui_element__WEBPACK_IMPORTED_MODULE_
33391
33457
  }), (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;
33392
33458
  }
33393
33459
  }
33394
- (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
33460
+ ;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
33395
33461
  (0,jodit_core_decorators_hook_hook__WEBPACK_IMPORTED_MODULE_3__.hook)('ready'),
33396
33462
  (0,jodit_core_decorators_watch_watch__WEBPACK_IMPORTED_MODULE_4__.watch)('state.values.align')
33397
33463
  ], UIImagePositionTab.prototype, "onStateAlignChange", null);
@@ -33568,10 +33634,6 @@ UIImagePositionTab = (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__
33568
33634
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
33569
33635
 
33570
33636
  "use strict";
33571
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
33572
- /* harmony export */ normalSizeFromString: function() { return /* binding */ normalSizeFromString; },
33573
- /* harmony export */ normalSizeToString: function() { return /* binding */ normalSizeToString; }
33574
- /* harmony export */ });
33575
33637
  /* harmony import */ var jodit_core_helpers_checker_is_number__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(72412);
33576
33638
  /* harmony import */ var jodit_core_helpers_string_trim__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(4040);
33577
33639
  /*!
@@ -33593,6 +33655,11 @@ UIImagePositionTab = (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__
33593
33655
  return /^[0-9]+$/.test(value) ? value + 'px' : value;
33594
33656
  };
33595
33657
 
33658
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
33659
+ /* harmony export */ "normalSizeFromString", 0, /* binding */ normalSizeFromString,
33660
+ /* harmony export */ "normalSizeToString", 0, /* binding */ normalSizeToString
33661
+ /* harmony export */ ]);
33662
+
33596
33663
 
33597
33664
  /***/ }),
33598
33665
 
@@ -33639,7 +33706,7 @@ UIImagePositionTab = (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__
33639
33706
  return;
33640
33707
  }
33641
33708
  // Border radius
33642
- (0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_2__.css)(image, 'borderRadius', borderRadius ? borderRadius + 'px' : '');
33709
+ ;(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_2__.css)(image, 'borderRadius', borderRadius ? borderRadius + 'px' : '');
33643
33710
  // Title
33644
33711
  (0,jodit_core_helpers_utils__WEBPACK_IMPORTED_MODULE_1__.attr)(image, 'title', imageTitle || null);
33645
33712
  // Alt
@@ -33690,7 +33757,7 @@ UIImagePositionTab = (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__
33690
33757
  if (!link) {
33691
33758
  link = jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_0__.Dom.wrap(image, 'a', j.createInside);
33692
33759
  }
33693
- (0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_1__.attr)(link, 'href', imageLink);
33760
+ ;(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_1__.attr)(link, 'href', imageLink);
33694
33761
  (0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_1__.attr)(link, 'target', imageLinkOpenInNewTab ? '_blank' : null);
33695
33762
  if (!imageLinkOpenInNewTab) {
33696
33763
  const relParts = ((0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_1__.attr)(link, 'rel') || '').split(/\s+/).filter((p)=>p && p !== 'noopener' && p !== 'noreferrer');
@@ -33790,7 +33857,7 @@ UIImagePositionTab = (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__
33790
33857
  if (!(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_1__.attr)(image, 'width') || sizeIsLocked) {
33791
33858
  updatedHeight = null;
33792
33859
  }
33793
- (0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_1__.attr)(image, 'height', updatedHeight);
33860
+ ;(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_1__.attr)(image, 'height', updatedHeight);
33794
33861
  }
33795
33862
  }
33796
33863
 
@@ -33798,7 +33865,7 @@ UIImagePositionTab = (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__
33798
33865
  /***/ }),
33799
33866
 
33800
33867
  /***/ 90826:
33801
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
33868
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
33802
33869
 
33803
33870
  "use strict";
33804
33871
  /* unused harmony export image */
@@ -33943,9 +34010,6 @@ jodit_config__WEBPACK_IMPORTED_MODULE_3__.Config.prototype.indentMargin = 10;
33943
34010
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
33944
34011
 
33945
34012
  "use strict";
33946
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
33947
- /* harmony export */ getKey: function() { return /* binding */ getKey; }
33948
- /* harmony export */ });
33949
34013
  /* harmony import */ var jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(23211);
33950
34014
  /*!
33951
34015
  * Jodit Editor (https://xdsoft.net/jodit/)
@@ -33959,11 +34023,15 @@ jodit_config__WEBPACK_IMPORTED_MODULE_3__.Config.prototype.indentMargin = 10;
33959
34023
  * @internal
33960
34024
  */ const getKey = (direction, box)=>`${jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_0__.Dom.isCell(box) ? 'padding' : 'margin'}${direction === 'rtl' ? 'Right' : 'Left'}`;
33961
34025
 
34026
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
34027
+ /* harmony export */ "getKey", 0, /* binding */ getKey
34028
+ /* harmony export */ ]);
34029
+
33962
34030
 
33963
34031
  /***/ }),
33964
34032
 
33965
34033
  /***/ 39000:
33966
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
34034
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
33967
34035
 
33968
34036
  "use strict";
33969
34037
  /* unused harmony export indent */
@@ -34480,9 +34548,6 @@ const cmd = (control)=>control.args && (0,jodit_core_helpers_checker__WEBPACK_IM
34480
34548
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
34481
34549
 
34482
34550
  "use strict";
34483
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
34484
- /* harmony export */ align: function() { return /* binding */ align; }
34485
- /* harmony export */ });
34486
34551
  /* harmony import */ var jodit_core_dom__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(27795);
34487
34552
  /* harmony import */ var jodit_core_helpers_checker_is_string__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(85932);
34488
34553
  /* harmony import */ var jodit_core_helpers_utils_align__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(16849);
@@ -34518,7 +34583,7 @@ const align = {
34518
34583
  if (!command) {
34519
34584
  return false;
34520
34585
  }
34521
- (0,jodit_core_helpers_utils_align__WEBPACK_IMPORTED_MODULE_2__.hAlignElement)(elm, command);
34586
+ ;(0,jodit_core_helpers_utils_align__WEBPACK_IMPORTED_MODULE_2__.hAlignElement)(elm, command);
34522
34587
  if (jodit_core_dom__WEBPACK_IMPORTED_MODULE_0__.Dom.isTag(elm, new Set([
34523
34588
  'jodit',
34524
34589
  'jodit-media'
@@ -34566,13 +34631,17 @@ const align = {
34566
34631
  if (!command) {
34567
34632
  return false;
34568
34633
  }
34569
- (0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_3__.css)(image, 'vertical-align', command === 'normal' ? '' : command);
34634
+ ;(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_3__.css)(image, 'vertical-align', command === 'normal' ? '' : command);
34570
34635
  editor.e.fire('recalcPositionPopup');
34571
34636
  }
34572
34637
  },
34573
34638
  align
34574
34639
  ]);
34575
34640
 
34641
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
34642
+ /* harmony export */ "align", 0, /* binding */ align
34643
+ /* harmony export */ ]);
34644
+
34576
34645
 
34577
34646
  /***/ }),
34578
34647
 
@@ -34618,7 +34687,7 @@ const align = {
34618
34687
  /***/ }),
34619
34688
 
34620
34689
  /***/ 88952:
34621
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
34690
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
34622
34691
 
34623
34692
  "use strict";
34624
34693
  /* unused harmony export inlinePopup */
@@ -34876,7 +34945,7 @@ const align = {
34876
34945
  */ (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)));
34877
34946
  }
34878
34947
  }
34879
- (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(inlinePopup, "requires", [
34948
+ ;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(inlinePopup, "requires", [
34880
34949
  'select'
34881
34950
  ]);
34882
34951
  (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
@@ -34926,7 +34995,7 @@ jodit_core_global__WEBPACK_IMPORTED_MODULE_4__.pluginSystem.add('inlinePopup', i
34926
34995
  /***/ }),
34927
34996
 
34928
34997
  /***/ 64094:
34929
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
34998
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
34930
34999
 
34931
35000
  "use strict";
34932
35001
  /* unused harmony export justify */
@@ -35046,7 +35115,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_6__.Config.prototype.controls.right = {
35046
35115
  if (!currentBox) {
35047
35116
  currentBox = jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_0__.Dom.wrapInline(current, editor.o.enterBlock, editor);
35048
35117
  }
35049
- (0,jodit_core_helpers_utils_align__WEBPACK_IMPORTED_MODULE_3__.alignElement)(command, currentBox);
35118
+ ;(0,jodit_core_helpers_utils_align__WEBPACK_IMPORTED_MODULE_3__.alignElement)(command, currentBox);
35050
35119
  });
35051
35120
  return false;
35052
35121
  };
@@ -35061,7 +35130,7 @@ jodit_core_global__WEBPACK_IMPORTED_MODULE_1__.pluginSystem.add('justify', justi
35061
35130
  /***/ }),
35062
35131
 
35063
35132
  /***/ 18210:
35064
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
35133
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
35065
35134
 
35066
35135
  "use strict";
35067
35136
  /* unused harmony export keyArrowOutside */
@@ -35106,7 +35175,7 @@ jodit_core_global__WEBPACK_IMPORTED_MODULE_1__.pluginSystem.add('justify', justi
35106
35175
  }
35107
35176
  }
35108
35177
  }
35109
- (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_0__.__decorate)([
35178
+ ;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_0__.__decorate)([
35110
35179
  (0,jodit_core_decorators__WEBPACK_IMPORTED_MODULE_2__.watch)(':keydown')
35111
35180
  ], keyArrowOutside.prototype, "onKeyDownArrow", null);
35112
35181
  jodit_core_global__WEBPACK_IMPORTED_MODULE_4__.pluginSystem.add('keyArrowOutside', keyArrowOutside);
@@ -35134,7 +35203,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.limitHTML = false;
35134
35203
  /***/ }),
35135
35204
 
35136
35205
  /***/ 50662:
35137
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
35206
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
35138
35207
 
35139
35208
  "use strict";
35140
35209
  /* unused harmony export limit */
@@ -35226,7 +35295,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.limitHTML = false;
35226
35295
  jodit.e.off('.limit');
35227
35296
  }
35228
35297
  }
35229
- (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_0__.__decorate)([
35298
+ ;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_0__.__decorate)([
35230
35299
  jodit_core_decorators__WEBPACK_IMPORTED_MODULE_2__.autobind
35231
35300
  ], limit.prototype, "checkPreventKeyPressOrPaste", null);
35232
35301
  (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_0__.__decorate)([
@@ -35349,7 +35418,7 @@ __webpack_require__.r(__webpack_exports__);
35349
35418
  /***/ }),
35350
35419
 
35351
35420
  /***/ 58354:
35352
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
35421
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
35353
35422
 
35354
35423
  "use strict";
35355
35424
  /* unused harmony export lineHeight */
@@ -35402,7 +35471,7 @@ class lineHeight extends jodit_core_plugin__WEBPACK_IMPORTED_MODULE_6__.Plugin {
35402
35471
  if (addStyle === undefined) {
35403
35472
  addStyle = previousValue.toString() !== value.toString();
35404
35473
  }
35405
- (0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_5__.css)(parentBlock, 'lineHeight', addStyle ? value : null);
35474
+ ;(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_5__.css)(parentBlock, 'lineHeight', addStyle ? value : null);
35406
35475
  };
35407
35476
  try {
35408
35477
  if (s.isCollapsed()) {
@@ -35418,7 +35487,7 @@ class lineHeight extends jodit_core_plugin__WEBPACK_IMPORTED_MODULE_6__.Plugin {
35418
35487
  }
35419
35488
  }
35420
35489
  beforeDestruct(jodit) {
35421
- (0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_5__.css)(jodit.editor, {
35490
+ ;(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_5__.css)(jodit.editor, {
35422
35491
  lineHeight: null
35423
35492
  });
35424
35493
  }
@@ -35432,7 +35501,7 @@ class lineHeight extends jodit_core_plugin__WEBPACK_IMPORTED_MODULE_6__.Plugin {
35432
35501
  (0,jodit_core_global__WEBPACK_IMPORTED_MODULE_4__.extendLang)(_langs__WEBPACK_IMPORTED_MODULE_8__);
35433
35502
  }
35434
35503
  }
35435
- (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
35504
+ ;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
35436
35505
  jodit_core_decorators__WEBPACK_IMPORTED_MODULE_2__.autobind
35437
35506
  ], lineHeight.prototype, "applyLineHeight", null);
35438
35507
  jodit_core_global__WEBPACK_IMPORTED_MODULE_4__.pluginSystem.add('lineHeight', lineHeight);
@@ -35514,7 +35583,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_2__.Config.prototype.controls.link = {
35514
35583
  /***/ }),
35515
35584
 
35516
35585
  /***/ 68624:
35517
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
35586
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
35518
35587
 
35519
35588
  "use strict";
35520
35589
  /* unused harmony export link */
@@ -35727,7 +35796,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_2__.Config.prototype.controls.link = {
35727
35796
  ];
35728
35797
  }
35729
35798
  links.forEach((a)=>{
35730
- (0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_5__.attr)(a, 'href', url_input.value);
35799
+ ;(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_5__.attr)(a, 'href', url_input.value);
35731
35800
  writeClasses(modeClassName, className_input, className_select, a);
35732
35801
  if (!isImageContent) {
35733
35802
  writeImage(a, content_input, textWasChanged, url_input);
@@ -35743,7 +35812,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_2__.Config.prototype.controls.link = {
35743
35812
  } else if (!nofollow_checkbox.checked && hasNofollow) {
35744
35813
  relParts.splice(relParts.indexOf('nofollow'), 1);
35745
35814
  }
35746
- (0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_5__.attr)(a, 'rel', relParts.length ? relParts.join(' ') : null);
35815
+ ;(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_5__.attr)(a, 'rel', relParts.length ? relParts.join(' ') : null);
35747
35816
  }
35748
35817
  if (aria_label_input) {
35749
35818
  const ariaLabel = aria_label_input.value.trim();
@@ -35785,7 +35854,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_2__.Config.prototype.controls.link = {
35785
35854
  ]);
35786
35855
  }
35787
35856
  }
35788
- (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
35857
+ ;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
35789
35858
  jodit_core_decorators__WEBPACK_IMPORTED_MODULE_2__.autobind
35790
35859
  ], link.prototype, "__onDblClickOnLink", null);
35791
35860
  (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
@@ -35897,9 +35966,6 @@ function writeImage(a, content_input, textWasChanged, url_input) {
35897
35966
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
35898
35967
 
35899
35968
  "use strict";
35900
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
35901
- /* harmony export */ formTemplate: function() { return /* binding */ formTemplate; }
35902
- /* harmony export */ });
35903
35969
  /* harmony import */ var jodit_core_ui_button__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(59400);
35904
35970
  /* harmony import */ var jodit_core_ui_form__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(5658);
35905
35971
  /*!
@@ -35989,6 +36055,10 @@ const formTemplate = (editor)=>{
35989
36055
  ]);
35990
36056
  };
35991
36057
 
36058
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, [
36059
+ /* harmony export */ "formTemplate", 0, /* binding */ formTemplate
36060
+ /* harmony export */ ]);
36061
+
35992
36062
 
35993
36063
  /***/ }),
35994
36064
 
@@ -36015,7 +36085,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.mediaBlocks = [
36015
36085
  /***/ }),
36016
36086
 
36017
36087
  /***/ 76830:
36018
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
36088
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
36019
36089
 
36020
36090
  "use strict";
36021
36091
  /* unused harmony export media */
@@ -36250,7 +36320,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_3__.Config.prototype.controls.dots = {
36250
36320
  /***/ }),
36251
36321
 
36252
36322
  /***/ 74240:
36253
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
36323
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
36254
36324
 
36255
36325
  "use strict";
36256
36326
  /* unused harmony export mobile */
@@ -36457,7 +36527,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_2__.Config.prototype.controls.ol = {
36457
36527
  /***/ }),
36458
36528
 
36459
36529
  /***/ 98792:
36460
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
36530
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
36461
36531
 
36462
36532
  "use strict";
36463
36533
  /* unused harmony export orderedList */
@@ -36513,7 +36583,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_2__.Config.prototype.controls.ol = {
36513
36583
  ]);
36514
36584
  }
36515
36585
  }
36516
- (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
36586
+ ;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
36517
36587
  jodit_core_decorators__WEBPACK_IMPORTED_MODULE_2__.autobind
36518
36588
  ], orderedList.prototype, "onCommand", null);
36519
36589
  jodit_core_global__WEBPACK_IMPORTED_MODULE_3__.pluginSystem.add('orderedList', orderedList);
@@ -36557,7 +36627,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_1__.Config.prototype.pasteFromWordActionLi
36557
36627
  /***/ }),
36558
36628
 
36559
36629
  /***/ 96730:
36560
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
36630
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
36561
36631
 
36562
36632
  "use strict";
36563
36633
  /* unused harmony export pasteFromWord */
@@ -36630,10 +36700,10 @@ class pasteFromWord extends jodit_core_plugin__WEBPACK_IMPORTED_MODULE_6__.Plugi
36630
36700
  break;
36631
36701
  }
36632
36702
  }
36633
- (0,jodit_plugins_paste_helpers__WEBPACK_IMPORTED_MODULE_8__.pasteInsertHtml)(e, this.j, html);
36703
+ ;(0,jodit_plugins_paste_helpers__WEBPACK_IMPORTED_MODULE_8__.pasteInsertHtml)(e, this.j, html);
36634
36704
  }
36635
36705
  }
36636
- (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(pasteFromWord, "requires", [
36706
+ ;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(pasteFromWord, "requires", [
36637
36707
  'paste'
36638
36708
  ]);
36639
36709
  (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
@@ -36645,7 +36715,7 @@ jodit_core_global__WEBPACK_IMPORTED_MODULE_4__.pluginSystem.add('pasteFromWord',
36645
36715
  /***/ }),
36646
36716
 
36647
36717
  /***/ 7758:
36648
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
36718
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
36649
36719
 
36650
36720
  "use strict";
36651
36721
  /* unused harmony export pasteStorage */
@@ -37050,7 +37120,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_1__.Config.prototype.controls.paste = {
37050
37120
  /***/ }),
37051
37121
 
37052
37122
  /***/ 23422:
37053
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
37123
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
37054
37124
 
37055
37125
  "use strict";
37056
37126
  /* unused harmony export paste */
@@ -37204,7 +37274,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_1__.Config.prototype.controls.paste = {
37204
37274
  }
37205
37275
  }
37206
37276
  }
37207
- (0,_helpers__WEBPACK_IMPORTED_MODULE_9__.pasteInsertHtml)(e, this.j, html);
37277
+ ;(0,_helpers__WEBPACK_IMPORTED_MODULE_9__.pasteInsertHtml)(e, this.j, html);
37208
37278
  }
37209
37279
  /**
37210
37280
  * Escape plain text and replace all \\n chars with br
@@ -37223,7 +37293,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_1__.Config.prototype.controls.paste = {
37223
37293
  */ (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "_isDialogOpened", false);
37224
37294
  }
37225
37295
  }
37226
- (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
37296
+ ;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
37227
37297
  jodit_core_decorators__WEBPACK_IMPORTED_MODULE_3__.autobind
37228
37298
  ], paste.prototype, "onPaste", null);
37229
37299
  (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
@@ -37254,7 +37324,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.useInputsPlaceholder
37254
37324
  /***/ }),
37255
37325
 
37256
37326
  /***/ 28346:
37257
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
37327
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
37258
37328
 
37259
37329
  "use strict";
37260
37330
  /* unused harmony exports isEditorEmpty, placeholder */
@@ -37355,7 +37425,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.useInputsPlaceholder
37355
37425
  lineHeight: style.getPropertyValue('line-height')
37356
37426
  });
37357
37427
  }
37358
- (0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_8__.css)(this.placeholderElm, {
37428
+ ;(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_8__.css)(this.placeholderElm, {
37359
37429
  display: 'block',
37360
37430
  textAlign: style.getPropertyValue('text-align'),
37361
37431
  paddingTop: parseInt(styleEditor.paddingTop, 10) + 'px',
@@ -37402,7 +37472,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.useInputsPlaceholder
37402
37472
  });
37403
37473
  }
37404
37474
  }
37405
- (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
37475
+ ;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
37406
37476
  (0,jodit_core_decorators__WEBPACK_IMPORTED_MODULE_3__.debounce)((ctx)=>ctx.defaultTimeout / 10, true)
37407
37477
  ], placeholder.prototype, "toggle", null);
37408
37478
  jodit_core_global__WEBPACK_IMPORTED_MODULE_5__.pluginSystem.add('placeholder', placeholder);
@@ -37411,7 +37481,7 @@ jodit_core_global__WEBPACK_IMPORTED_MODULE_5__.pluginSystem.add('placeholder', p
37411
37481
  /***/ }),
37412
37482
 
37413
37483
  /***/ 198:
37414
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
37484
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
37415
37485
 
37416
37486
  "use strict";
37417
37487
  /* unused harmony export poweredByJodit */
@@ -37446,7 +37516,7 @@ jodit_core_global__WEBPACK_IMPORTED_MODULE_0__.pluginSystem.add('poweredByJodit'
37446
37516
  /***/ }),
37447
37517
 
37448
37518
  /***/ 49690:
37449
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
37519
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
37450
37520
 
37451
37521
  "use strict";
37452
37522
  /* unused harmony export preview */
@@ -37539,7 +37609,7 @@ jodit_core_global__WEBPACK_IMPORTED_MODULE_1__.pluginSystem.add('preview', previ
37539
37609
  return finalCSS;
37540
37610
  }
37541
37611
  constructor(w, d, opts){
37542
- (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "css", {});
37612
+ ;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "css", {});
37543
37613
  const opt = opts || {};
37544
37614
  const pushCSS = (r)=>{
37545
37615
  const selectorText = r.selectorText.split(',').map((a)=>a.trim()).sort().join(',');
@@ -37593,7 +37663,7 @@ jodit_core_global__WEBPACK_IMPORTED_MODULE_1__.pluginSystem.add('preview', previ
37593
37663
  /***/ }),
37594
37664
 
37595
37665
  /***/ 41134:
37596
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
37666
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
37597
37667
 
37598
37668
  "use strict";
37599
37669
  /* unused harmony export print */
@@ -37677,7 +37747,7 @@ jodit_core_global__WEBPACK_IMPORTED_MODULE_2__.pluginSystem.add('print', print);
37677
37747
  /***/ }),
37678
37748
 
37679
37749
  /***/ 59758:
37680
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
37750
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
37681
37751
 
37682
37752
  "use strict";
37683
37753
  /* unused harmony export redoUndo */
@@ -37782,7 +37852,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.tableAllowCellResize
37782
37852
  /***/ }),
37783
37853
 
37784
37854
  /***/ 14248:
37785
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
37855
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
37786
37856
 
37787
37857
  "use strict";
37788
37858
  /* unused harmony export resizeCells */
@@ -37987,7 +38057,7 @@ const key = 'table_processor_observer-resize';
37987
38057
  return;
37988
38058
  }
37989
38059
  editor.e.off(this.j.ow, '.resize-cells').off('.resize-cells').on('change.resize-cells afterCommand.resize-cells afterSetMode.resize-cells', ()=>{
37990
- (0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_6__.$$)('table', editor.editor).forEach(this.observe);
38060
+ ;(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_6__.$$)('table', editor.editor).forEach(this.observe);
37991
38061
  }).on(this.j.ow, 'scroll.resize-cells', ()=>{
37992
38062
  if (!this.drag) {
37993
38063
  return;
@@ -38011,7 +38081,7 @@ const key = 'table_processor_observer-resize';
38011
38081
  if ((0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_6__.dataBind)(table, key)) {
38012
38082
  return;
38013
38083
  }
38014
- (0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_6__.dataBind)(table, key, true);
38084
+ ;(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_6__.dataBind)(table, key, true);
38015
38085
  this.j.e.on(table, 'mouseleave.resize-cells', (e)=>{
38016
38086
  if (this.resizeHandler && this.resizeHandler !== e.relatedTarget) {
38017
38087
  this.hideResizeHandle();
@@ -38047,7 +38117,7 @@ const key = 'table_processor_observer-resize';
38047
38117
  }), (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);
38048
38118
  }
38049
38119
  }
38050
- (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
38120
+ ;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
38051
38121
  jodit_core_decorators__WEBPACK_IMPORTED_MODULE_3__.autobind
38052
38122
  ], resizeCells.prototype, "onHandleMouseDown", null);
38053
38123
  (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
@@ -38083,7 +38153,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.allowResizeY = true;
38083
38153
  /***/ }),
38084
38154
 
38085
38155
  /***/ 72214:
38086
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
38156
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
38087
38157
 
38088
38158
  "use strict";
38089
38159
  /* unused harmony export resizeHandler */
@@ -38195,7 +38265,7 @@ class resizeHandler extends jodit_core_plugin__WEBPACK_IMPORTED_MODULE_7__.Plugi
38195
38265
  */ (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')));
38196
38266
  }
38197
38267
  }
38198
- /** @override **/ (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(resizeHandler, "requires", [
38268
+ /** @override **/ ;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(resizeHandler, "requires", [
38199
38269
  'size'
38200
38270
  ]);
38201
38271
  (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
@@ -38245,7 +38315,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.resizer = {
38245
38315
  /***/ }),
38246
38316
 
38247
38317
  /***/ 74522:
38248
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
38318
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
38249
38319
 
38250
38320
  "use strict";
38251
38321
  /* unused harmony export resizer */
@@ -38483,7 +38553,7 @@ const keyBInd = '__jodit-resizer_binded';
38483
38553
  this.updateSize();
38484
38554
  }
38485
38555
  }
38486
- (0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_6__.$$)('iframe', this.j.editor).forEach(this.__bind);
38556
+ ;(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_6__.$$)('iframe', this.j.editor).forEach(this.__bind);
38487
38557
  }
38488
38558
  /**
38489
38559
  * Bind an edit element to element
@@ -38492,7 +38562,7 @@ const keyBInd = '__jodit-resizer_binded';
38492
38562
  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)) {
38493
38563
  return;
38494
38564
  }
38495
- (0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_6__.dataBind)(element, keyBInd, true);
38565
+ ;(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_6__.dataBind)(element, keyBInd, true);
38496
38566
  let wrapper;
38497
38567
  if (jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_4__.Dom.isTag(element, 'iframe')) {
38498
38568
  const iframe = element;
@@ -38523,7 +38593,7 @@ const keyBInd = '__jodit-resizer_binded';
38523
38593
  this.j.e.off(element, 'mousedown.select touchstart.select').on(element, 'mousedown.select touchstart.select', ()=>{
38524
38594
  this.j.s.select(element);
38525
38595
  }).off(element, 'changesize').on(element, 'changesize', ()=>{
38526
- (0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_6__.attr)(iframe, 'width', element.offsetWidth + 'px');
38596
+ ;(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_6__.attr)(iframe, 'width', element.offsetWidth + 'px');
38527
38597
  (0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_6__.attr)(iframe, 'height', element.offsetHeight + 'px');
38528
38598
  });
38529
38599
  }
@@ -38545,7 +38615,7 @@ const keyBInd = '__jodit-resizer_binded';
38545
38615
  this.hideSizeViewer();
38546
38616
  return;
38547
38617
  }
38548
- (0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_6__.css)(this.sizeViewer, 'opacity', '1');
38618
+ ;(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_6__.css)(this.sizeViewer, 'opacity', '1');
38549
38619
  this.sizeViewer.textContent = `${w} x ${h}`;
38550
38620
  this.j.async.setTimeout(this.hideSizeViewer, {
38551
38621
  timeout: this.j.o.resizer.hideSizeTimeout,
@@ -38631,7 +38701,7 @@ const keyBInd = '__jodit-resizer_binded';
38631
38701
  });
38632
38702
  }
38633
38703
  }
38634
- (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
38704
+ ;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
38635
38705
  (0,jodit_core_decorators__WEBPACK_IMPORTED_MODULE_3__.watch)(':click')
38636
38706
  ], resizer.prototype, "onEditorClick", null);
38637
38707
  (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
@@ -38988,7 +39058,7 @@ class SentenceFinder {
38988
39058
  return results.length === 0 ? null : results;
38989
39059
  }
38990
39060
  constructor(searchIndex = jodit_core_helpers_string_fuzzy_search_index__WEBPACK_IMPORTED_MODULE_1__.fuzzySearchIndex){
38991
- (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "searchIndex", void 0);
39061
+ ;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "searchIndex", void 0);
38992
39062
  (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "queue", void 0);
38993
39063
  (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "value", void 0);
38994
39064
  this.searchIndex = searchIndex;
@@ -39001,7 +39071,7 @@ class SentenceFinder {
39001
39071
  /***/ }),
39002
39072
 
39003
39073
  /***/ 30500:
39004
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
39074
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
39005
39075
 
39006
39076
  "use strict";
39007
39077
  /* unused harmony export search */
@@ -39226,7 +39296,7 @@ class SentenceFinder {
39226
39296
  editor.e.on('beforeSetMode.search', ()=>{
39227
39297
  this.ui.close();
39228
39298
  }).on(this.ui, 'afterClose', ()=>{
39229
- (0,_helpers__WEBPACK_IMPORTED_MODULE_9__.clearSelectionWrappers)(editor);
39299
+ ;(0,_helpers__WEBPACK_IMPORTED_MODULE_9__.clearSelectionWrappers)(editor);
39230
39300
  this.ui.currentIndex = 0;
39231
39301
  this.ui.count = 0;
39232
39302
  this.cache = {};
@@ -39288,7 +39358,7 @@ class SentenceFinder {
39288
39358
  }
39289
39359
  }
39290
39360
  /** @override */ beforeDestruct(jodit) {
39291
- (0,jodit_core_decorators__WEBPACK_IMPORTED_MODULE_3__.cached)(this, 'ui')?.destruct();
39361
+ ;(0,jodit_core_decorators__WEBPACK_IMPORTED_MODULE_3__.cached)(this, 'ui')?.destruct();
39292
39362
  jodit.e.off('.search');
39293
39363
  }
39294
39364
  constructor(...args){
@@ -39300,7 +39370,7 @@ class SentenceFinder {
39300
39370
  ]), (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "previousQuery", ''), (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "drawPromise", null), (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "walker", null), (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "walkerCount", null), (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "cache", {}), (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "wrapFrameRequest", 0);
39301
39371
  }
39302
39372
  }
39303
- (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
39373
+ ;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
39304
39374
  jodit_core_decorators__WEBPACK_IMPORTED_MODULE_3__.cache
39305
39375
  ], search.prototype, "ui", null);
39306
39376
  (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
@@ -39543,7 +39613,7 @@ class UISearch extends jodit_core_ui__WEBPACK_IMPORTED_MODULE_6__.UIElement {
39543
39613
  })());
39544
39614
  }
39545
39615
  }
39546
- (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
39616
+ ;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
39547
39617
  (0,jodit_core_decorators__WEBPACK_IMPORTED_MODULE_3__.watch)([
39548
39618
  ':keydown',
39549
39619
  'queryInput:keydown'
@@ -39583,7 +39653,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.tableAllowCellSelecti
39583
39653
  /***/ }),
39584
39654
 
39585
39655
  /***/ 2756:
39586
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
39656
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
39587
39657
 
39588
39658
  "use strict";
39589
39659
  /* unused harmony export selectCells */
@@ -39933,7 +40003,7 @@ class selectCells extends jodit_core_plugin__WEBPACK_IMPORTED_MODULE_7__.Plugin
39933
40003
  */ (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "__isSelectionMode", false);
39934
40004
  }
39935
40005
  }
39936
- (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(selectCells, "requires", [
40006
+ ;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(selectCells, "requires", [
39937
40007
  'select'
39938
40008
  ]);
39939
40009
  (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
@@ -39983,7 +40053,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.select = {
39983
40053
  /***/ }),
39984
40054
 
39985
40055
  /***/ 98988:
39986
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
40056
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
39987
40057
 
39988
40058
  "use strict";
39989
40059
  /* unused harmony export select */
@@ -40160,7 +40230,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.select = {
40160
40230
  ]);
40161
40231
  }
40162
40232
  }
40163
- (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
40233
+ ;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
40164
40234
  jodit_core_decorators__WEBPACK_IMPORTED_MODULE_3__.autobind
40165
40235
  ], select.prototype, "onStartSelection", null);
40166
40236
  (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
@@ -40240,7 +40310,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.maxHeight = 'auto';
40240
40310
  /***/ }),
40241
40311
 
40242
40312
  /***/ 44322:
40243
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
40313
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
40244
40314
 
40245
40315
  "use strict";
40246
40316
  /* unused harmony export size */
@@ -40295,7 +40365,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.maxHeight = 'auto';
40295
40365
  height = localHeight;
40296
40366
  }
40297
40367
  }
40298
- (0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_5__.css)(j.editor, {
40368
+ ;(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_5__.css)(j.editor, {
40299
40369
  minHeight: '100%'
40300
40370
  });
40301
40371
  (0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_5__.css)(j.container, {
@@ -40322,7 +40392,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.maxHeight = 'auto';
40322
40392
  height = maxHeight;
40323
40393
  }
40324
40394
  }
40325
- (0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_5__.css)(this.j.container, 'height', height);
40395
+ ;(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_5__.css)(this.j.container, 'height', height);
40326
40396
  if (this.j.o.saveHeightInStorage) {
40327
40397
  this.j.storage.set('height', height);
40328
40398
  }
@@ -40344,7 +40414,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.maxHeight = 'auto';
40344
40414
  width = maxWidth;
40345
40415
  }
40346
40416
  }
40347
- (0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_5__.css)(this.j.container, 'width', width);
40417
+ ;(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_5__.css)(this.j.container, 'width', width);
40348
40418
  this.__resizeWorkspaceImd({
40349
40419
  clientHeight,
40350
40420
  clientWidth
@@ -40414,7 +40484,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.maxHeight = 'auto';
40414
40484
  */ (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "__resizeWorkspaces", this.j.async.debounce(this.__resizeWorkspaceImd, this.j.defaultTimeout, true));
40415
40485
  }
40416
40486
  }
40417
- (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
40487
+ ;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
40418
40488
  (0,jodit_core_decorators__WEBPACK_IMPORTED_MODULE_2__.throttle)()
40419
40489
  ], size.prototype, "__initialize", null);
40420
40490
  (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
@@ -40803,10 +40873,10 @@ class TextAreaEditor extends jodit_plugins_source_editor_sourceEditor__WEBPACK_I
40803
40873
  this.instance.blur();
40804
40874
  }
40805
40875
  setPlaceHolder(title) {
40806
- (0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_2__.attr)(this.instance, 'placeholder', title);
40876
+ ;(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_2__.attr)(this.instance, 'placeholder', title);
40807
40877
  }
40808
40878
  setReadOnly(isReadOnly) {
40809
- (0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_2__.attr)(this.instance, 'readonly', isReadOnly ? 'true' : null);
40879
+ ;(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_2__.attr)(this.instance, 'readonly', isReadOnly ? 'true' : null);
40810
40880
  }
40811
40881
  selectAll() {
40812
40882
  this.instance.select();
@@ -40934,7 +41004,7 @@ class SourceEditor {
40934
41004
  }
40935
41005
  }
40936
41006
  constructor(jodit, container, toWYSIWYG, fromWYSIWYG){
40937
- (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "jodit", void 0);
41007
+ ;(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "jodit", void 0);
40938
41008
  (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "container", void 0);
40939
41009
  (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "toWYSIWYG", void 0);
40940
41010
  (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "fromWYSIWYG", void 0);
@@ -40954,7 +41024,7 @@ class SourceEditor {
40954
41024
  /***/ }),
40955
41025
 
40956
41026
  /***/ 13810:
40957
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
41027
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
40958
41028
 
40959
41029
  "use strict";
40960
41030
  /* unused harmony export source */
@@ -41216,7 +41286,7 @@ class SourceEditor {
41216
41286
  });
41217
41287
  }
41218
41288
  }
41219
- (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
41289
+ ;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
41220
41290
  (0,jodit_core_decorators__WEBPACK_IMPORTED_MODULE_3__.watch)(':insertHTML.source')
41221
41291
  ], source.prototype, "onInsertHTML", null);
41222
41292
  (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
@@ -41350,7 +41420,7 @@ __webpack_require__.r(__webpack_exports__);
41350
41420
  /***/ }),
41351
41421
 
41352
41422
  /***/ 90204:
41353
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
41423
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
41354
41424
 
41355
41425
  "use strict";
41356
41426
  /* unused harmony export spellcheck */
@@ -41389,7 +41459,7 @@ class spellcheck extends jodit_core_plugin__WEBPACK_IMPORTED_MODULE_5__.Plugin {
41389
41459
  });
41390
41460
  }
41391
41461
  toggleSpellcheck() {
41392
- (0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_4__.attr)(this.jodit.editor, 'spellcheck', this.jodit.o.spellcheck);
41462
+ ;(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_4__.attr)(this.jodit.editor, 'spellcheck', this.jodit.o.spellcheck);
41393
41463
  }
41394
41464
  beforeDestruct(jodit) {}
41395
41465
  constructor(jodit){
@@ -41402,7 +41472,7 @@ class spellcheck extends jodit_core_plugin__WEBPACK_IMPORTED_MODULE_5__.Plugin {
41402
41472
  (0,jodit_core_global__WEBPACK_IMPORTED_MODULE_3__.extendLang)(_langs__WEBPACK_IMPORTED_MODULE_7__);
41403
41473
  }
41404
41474
  }
41405
- (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
41475
+ ;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
41406
41476
  jodit_core_decorators__WEBPACK_IMPORTED_MODULE_2__.autobind
41407
41477
  ], spellcheck.prototype, "toggleSpellcheck", null);
41408
41478
  jodit_core_global__WEBPACK_IMPORTED_MODULE_3__.pluginSystem.add('spellcheck', spellcheck);
@@ -41431,7 +41501,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.showWordsCounter = tr
41431
41501
  /***/ }),
41432
41502
 
41433
41503
  /***/ 86236:
41434
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
41504
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
41435
41505
 
41436
41506
  "use strict";
41437
41507
  /* unused harmony export stat */
@@ -41527,7 +41597,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.toolbarStickyOffset =
41527
41597
  /***/ }),
41528
41598
 
41529
41599
  /***/ 67582:
41530
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
41600
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
41531
41601
 
41532
41602
  "use strict";
41533
41603
  /* unused harmony export sticky */
@@ -41608,7 +41678,7 @@ class sticky extends jodit_core_plugin_plugin__WEBPACK_IMPORTED_MODULE_7__.Plugi
41608
41678
  this.__isToolbarStuck = true;
41609
41679
  }
41610
41680
  // on resize, it should work always
41611
- (0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_6__.css)(toolbar, {
41681
+ ;(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_6__.css)(toolbar, {
41612
41682
  top: this.j.o.toolbarStickyOffset || null,
41613
41683
  width: this.j.container.offsetWidth - 2
41614
41684
  });
@@ -41621,7 +41691,7 @@ class sticky extends jodit_core_plugin_plugin__WEBPACK_IMPORTED_MODULE_7__.Plugi
41621
41691
  if (!this.__isToolbarStuck) {
41622
41692
  return;
41623
41693
  }
41624
- (0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_6__.css)(toolbar, {
41694
+ ;(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_6__.css)(toolbar, {
41625
41695
  width: '',
41626
41696
  top: ''
41627
41697
  });
@@ -41630,7 +41700,7 @@ class sticky extends jodit_core_plugin_plugin__WEBPACK_IMPORTED_MODULE_7__.Plugi
41630
41700
  });
41631
41701
  }
41632
41702
  }
41633
- (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
41703
+ ;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
41634
41704
  (0,jodit_core_decorators__WEBPACK_IMPORTED_MODULE_3__.throttle)()
41635
41705
  ], sticky.prototype, "__onScroll", null);
41636
41706
  jodit_core_global__WEBPACK_IMPORTED_MODULE_5__.pluginSystem.add('sticky', sticky);
@@ -41961,7 +42031,7 @@ __webpack_require__.r(__webpack_exports__);
41961
42031
  /***/ }),
41962
42032
 
41963
42033
  /***/ 11774:
41964
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
42034
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
41965
42035
 
41966
42036
  "use strict";
41967
42037
  /* unused harmony export symbols */
@@ -42300,7 +42370,7 @@ class tab extends jodit_core_plugin__WEBPACK_IMPORTED_MODULE_4__.Plugin {
42300
42370
  }
42301
42371
  beforeDestruct(jodit) {}
42302
42372
  }
42303
- (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_0__.__decorate)([
42373
+ ;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_0__.__decorate)([
42304
42374
  (0,jodit_core_decorators__WEBPACK_IMPORTED_MODULE_2__.watch)(':keydown.tab')
42305
42375
  ], tab.prototype, "__onTab", null);
42306
42376
  (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_0__.__decorate)([
@@ -42312,7 +42382,7 @@ jodit_core_global__WEBPACK_IMPORTED_MODULE_3__.pluginSystem.add('tab', tab);
42312
42382
  /***/ }),
42313
42383
 
42314
42384
  /***/ 30110:
42315
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
42385
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
42316
42386
 
42317
42387
  "use strict";
42318
42388
  /* unused harmony export tableKeyboardNavigation */
@@ -42539,7 +42609,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_5__.Config.prototype.controls.table = {
42539
42609
  if (!first_td) {
42540
42610
  first_td = td;
42541
42611
  }
42542
- (0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_2__.css)(td, 'width', (100 / cols_count).toFixed(4) + '%');
42612
+ ;(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_2__.css)(td, 'width', (100 / cols_count).toFixed(4) + '%');
42543
42613
  jodit_core_dom__WEBPACK_IMPORTED_MODULE_1__.Dom.append(td, crt.element('br'));
42544
42614
  jodit_core_dom__WEBPACK_IMPORTED_MODULE_1__.Dom.append(tr, crt.text('\n'));
42545
42615
  jodit_core_dom__WEBPACK_IMPORTED_MODULE_1__.Dom.append(tr, crt.text('\t'));
@@ -42548,7 +42618,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_5__.Config.prototype.controls.table = {
42548
42618
  jodit_core_dom__WEBPACK_IMPORTED_MODULE_1__.Dom.append(tbody, crt.text('\n'));
42549
42619
  jodit_core_dom__WEBPACK_IMPORTED_MODULE_1__.Dom.append(tbody, tr);
42550
42620
  }
42551
- (0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_2__.$$)('input[type=checkbox]:checked', options).forEach((input)=>{
42621
+ ;(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_2__.$$)('input[type=checkbox]:checked', options).forEach((input)=>{
42552
42622
  input.value.split(/[\s]+/).forEach((className)=>{
42553
42623
  table.classList.add(className);
42554
42624
  });
@@ -42665,7 +42735,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_5__.Config.prototype.controls.table = {
42665
42735
  /***/ }),
42666
42736
 
42667
42737
  /***/ 7994:
42668
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
42738
+ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
42669
42739
 
42670
42740
  "use strict";
42671
42741
  /* unused harmony export table */
@@ -42941,7 +43011,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.wrapNodes = {
42941
43011
  */ (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)));
42942
43012
  }
42943
43013
  }
42944
- (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
43014
+ ;(0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
42945
43015
  jodit_core_decorators__WEBPACK_IMPORTED_MODULE_2__.autobind
42946
43016
  ], wrapNodes.prototype, "postProcessSetEditorValue", null);
42947
43017
  (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
@@ -44216,10 +44286,10 @@ function __addDisposableResource(env, value, async) {
44216
44286
  return value;
44217
44287
  }
44218
44288
 
44219
- var _SuppressedError = typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
44289
+ var _SuppressedError = (/* unused pure expression or super */ null && (typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
44220
44290
  var e = new Error(message);
44221
44291
  return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
44222
- };
44292
+ }));
44223
44293
 
44224
44294
  function __disposeResources(env) {
44225
44295
  function fail(e) {
@@ -44256,7 +44326,7 @@ function __rewriteRelativeImportExtension(path, preserveJsx) {
44256
44326
  return path;
44257
44327
  }
44258
44328
 
44259
- /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ({
44329
+ /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && ({
44260
44330
  __extends,
44261
44331
  __assign,
44262
44332
  __rest,
@@ -44289,7 +44359,7 @@ function __rewriteRelativeImportExtension(path, preserveJsx) {
44289
44359
  __addDisposableResource,
44290
44360
  __disposeResources,
44291
44361
  __rewriteRelativeImportExtension,
44292
- });
44362
+ })));
44293
44363
 
44294
44364
 
44295
44365
  /***/ })
@@ -44372,11 +44442,26 @@ function __rewriteRelativeImportExtension(path, preserveJsx) {
44372
44442
  /******/
44373
44443
  /******/ /* webpack/runtime/define property getters */
44374
44444
  /******/ !function() {
44375
- /******/ // define getter functions for harmony exports
44445
+ /******/ // define getter/value functions for harmony exports
44376
44446
  /******/ __webpack_require__.d = function(exports, definition) {
44377
- /******/ for(var key in definition) {
44378
- /******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
44379
- /******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
44447
+ /******/ if(Array.isArray(definition)) {
44448
+ /******/ var i = 0;
44449
+ /******/ while(i < definition.length) {
44450
+ /******/ var key = definition[i++];
44451
+ /******/ var binding = definition[i++];
44452
+ /******/ if(!__webpack_require__.o(exports, key)) {
44453
+ /******/ if(binding === 0) {
44454
+ /******/ Object.defineProperty(exports, key, { enumerable: true, value: definition[i++] });
44455
+ /******/ } else {
44456
+ /******/ Object.defineProperty(exports, key, { enumerable: true, get: binding });
44457
+ /******/ }
44458
+ /******/ } else if(binding === 0) { i++; }
44459
+ /******/ }
44460
+ /******/ } else {
44461
+ /******/ for(var key in definition) {
44462
+ /******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
44463
+ /******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
44464
+ /******/ }
44380
44465
  /******/ }
44381
44466
  /******/ }
44382
44467
  /******/ };