jodit 4.15.2 → 4.15.3

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 (52) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/es2015/jodit.css +1 -1
  3. package/es2015/jodit.fat.min.js +4 -4
  4. package/es2015/jodit.js +30 -6
  5. package/es2015/jodit.min.js +4 -4
  6. package/es2015/plugins/debug/debug.css +1 -1
  7. package/es2015/plugins/debug/debug.js +1 -1
  8. package/es2015/plugins/debug/debug.min.js +1 -1
  9. package/es2015/plugins/speech-recognize/speech-recognize.css +1 -1
  10. package/es2015/plugins/speech-recognize/speech-recognize.js +1 -1
  11. package/es2015/plugins/speech-recognize/speech-recognize.min.js +1 -1
  12. package/es2018/jodit.fat.min.js +4 -4
  13. package/es2018/jodit.min.js +4 -4
  14. package/es2018/plugins/debug/debug.min.js +1 -1
  15. package/es2018/plugins/speech-recognize/speech-recognize.min.js +1 -1
  16. package/es2021/jodit.css +1 -1
  17. package/es2021/jodit.fat.min.js +4 -4
  18. package/es2021/jodit.js +29 -6
  19. package/es2021/jodit.min.js +4 -4
  20. package/es2021/plugins/debug/debug.css +1 -1
  21. package/es2021/plugins/debug/debug.js +1 -1
  22. package/es2021/plugins/debug/debug.min.js +1 -1
  23. package/es2021/plugins/speech-recognize/speech-recognize.css +1 -1
  24. package/es2021/plugins/speech-recognize/speech-recognize.js +1 -1
  25. package/es2021/plugins/speech-recognize/speech-recognize.min.js +1 -1
  26. package/es2021.en/jodit.css +1 -1
  27. package/es2021.en/jodit.fat.min.js +4 -4
  28. package/es2021.en/jodit.js +29 -6
  29. package/es2021.en/jodit.min.js +4 -4
  30. package/es2021.en/plugins/debug/debug.css +1 -1
  31. package/es2021.en/plugins/debug/debug.js +1 -1
  32. package/es2021.en/plugins/debug/debug.min.js +1 -1
  33. package/es2021.en/plugins/speech-recognize/speech-recognize.css +1 -1
  34. package/es2021.en/plugins/speech-recognize/speech-recognize.js +1 -1
  35. package/es2021.en/plugins/speech-recognize/speech-recognize.min.js +1 -1
  36. package/es5/jodit.css +2 -2
  37. package/es5/jodit.fat.min.js +2 -2
  38. package/es5/jodit.js +29 -5
  39. package/es5/jodit.min.css +2 -2
  40. package/es5/jodit.min.js +2 -2
  41. package/es5/plugins/debug/debug.css +1 -1
  42. package/es5/plugins/debug/debug.js +1 -1
  43. package/es5/plugins/debug/debug.min.js +1 -1
  44. package/es5/plugins/speech-recognize/speech-recognize.css +1 -1
  45. package/es5/plugins/speech-recognize/speech-recognize.js +1 -1
  46. package/es5/plugins/speech-recognize/speech-recognize.min.js +1 -1
  47. package/es5/polyfills.fat.min.js +1 -1
  48. package/es5/polyfills.js +1 -1
  49. package/es5/polyfills.min.js +1 -1
  50. package/esm/core/constants.js +1 -1
  51. package/esm/plugins/resizer/resizer.js +28 -3
  52. package/package.json +1 -1
package/es5/jodit.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /*!
2
2
  * jodit - Jodit is an awesome and useful wysiwyg editor with filebrowser
3
3
  * Author: Chupurnov <chupurnov@gmail.com> (https://xdsoft.net/jodit/)
4
- * Version: v4.15.2
4
+ * Version: v4.15.3
5
5
  * Url: https://xdsoft.net/jodit/
6
6
  * License(s): MIT
7
7
  */
@@ -2107,7 +2107,7 @@ __webpack_require__.r(__webpack_exports__);
2107
2107
  * @packageDocumentation
2108
2108
  * @module constants
2109
2109
  */
2110
- var APP_VERSION = "4.15.2";
2110
+ var APP_VERSION = "4.15.3";
2111
2111
  // prettier-ignore
2112
2112
  var ES = "es5";
2113
2113
  var IS_ES_MODERN = false;
@@ -46660,6 +46660,18 @@ jodit_config__WEBPACK_IMPORTED_MODULE_0__.Config.prototype.resizer = {
46660
46660
 
46661
46661
 
46662
46662
  var keyBInd = '__jodit-resizer_binded';
46663
+ /**
46664
+ * Reads a plain pixel value out of a `width`/`height` attribute.
46665
+ * Relative values such as `100%` are ignored — they cannot be turned into a
46666
+ * fixed pixel box for the wrapper.
46667
+ */ function attrPixelSize(element, key) {
46668
+ var _attr;
46669
+ var value = (_attr = (0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_11__.attr)(element, key)) === null || _attr === void 0 ? void 0 : _attr.trim();
46670
+ if (!value || !/^\d+(\.\d+)?(px)?$/i.test(value)) {
46671
+ return 0;
46672
+ }
46673
+ return parseFloat(value);
46674
+ }
46663
46675
  /**
46664
46676
  * The module creates a supporting frame for resizing of the elements img and table
46665
46677
  */ var resizer = /*#__PURE__*/ function(Plugin) {
@@ -46979,11 +46991,23 @@ var keyBInd = '__jodit-resizer_binded';
46979
46991
  'data-jodit_iframe_wrapper': 1
46980
46992
  });
46981
46993
  (0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_11__.attr)(wrapper, 'style', (0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_11__.attr)(element, 'style'));
46994
+ // Inside a hidden container (`display:none` on any ancestor)
46995
+ // offsetWidth/offsetHeight are 0. Writing that into the wrapper
46996
+ // collapsed it to 0x0, the following content painted over the
46997
+ // iframe, and nothing corrected it once the container was shown.
46998
+ // Fall back to the iframe's own size attributes and, when there
46999
+ // is nothing measurable at all, let the wrapper size itself.
47000
+ var width = element.offsetWidth || attrPixelSize(element, 'width');
47001
+ var height = element.offsetHeight || attrPixelSize(element, 'height');
46982
47002
  (0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_11__.css)(wrapper, {
46983
- display: (0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_12__.cssInline)(element, 'display') === 'inline-block' ? 'inline-block' : 'block',
46984
- width: element.offsetWidth,
46985
- height: element.offsetHeight
47003
+ display: (0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_12__.cssInline)(element, 'display') === 'inline-block' ? 'inline-block' : 'block'
46986
47004
  });
47005
+ if (width) {
47006
+ (0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_11__.css)(wrapper, 'width', width);
47007
+ }
47008
+ if (height) {
47009
+ (0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_11__.css)(wrapper, 'height', height);
47010
+ }
46987
47011
  if (element.parentNode) {
46988
47012
  jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_9__.Dom.before(element, wrapper);
46989
47013
  }
package/es5/jodit.min.css CHANGED
@@ -1,14 +1,14 @@
1
1
  /*!
2
2
  * jodit - Jodit is an awesome and useful wysiwyg editor with filebrowser
3
3
  * Author: Chupurnov <chupurnov@gmail.com> (https://xdsoft.net/jodit/)
4
- * Version: v4.15.2
4
+ * Version: v4.15.3
5
5
  * Url: https://xdsoft.net/jodit/
6
6
  * License(s): MIT
7
7
  */
8
8
  /*!
9
9
  * jodit - Jodit is an awesome and useful wysiwyg editor with filebrowser
10
10
  * Author: Chupurnov <chupurnov@gmail.com> (https://xdsoft.net/jodit/)
11
- * Version: v4.15.2
11
+ * Version: v4.15.3
12
12
  * Url: https://xdsoft.net/jodit/
13
13
  * License(s): MIT
14
14
  */