jodit 4.2.7 → 4.2.10

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 (56) hide show
  1. package/CHANGELOG.md +23 -5
  2. package/es2015/jodit.css +1 -1
  3. package/es2015/jodit.fat.min.js +2 -2
  4. package/es2015/jodit.js +62 -44
  5. package/es2015/jodit.min.js +2 -2
  6. package/es2015/plugins/debug/debug.js +1 -1
  7. package/es2015/plugins/debug/debug.min.js +1 -1
  8. package/es2015/plugins/speech-recognize/speech-recognize.css +1 -1
  9. package/es2015/plugins/speech-recognize/speech-recognize.js +1 -1
  10. package/es2015/plugins/speech-recognize/speech-recognize.min.js +1 -1
  11. package/es2018/jodit.css +1 -1
  12. package/es2018/jodit.fat.min.js +2 -2
  13. package/es2018/jodit.js +62 -44
  14. package/es2018/jodit.min.js +2 -2
  15. package/es2018/plugins/debug/debug.js +1 -1
  16. package/es2018/plugins/debug/debug.min.js +1 -1
  17. package/es2018/plugins/speech-recognize/speech-recognize.css +1 -1
  18. package/es2018/plugins/speech-recognize/speech-recognize.js +1 -1
  19. package/es2018/plugins/speech-recognize/speech-recognize.min.js +1 -1
  20. package/es2021/jodit.css +1 -1
  21. package/es2021/jodit.fat.min.js +2 -2
  22. package/es2021/jodit.js +59 -44
  23. package/es2021/jodit.min.js +2 -2
  24. package/es2021/plugins/debug/debug.js +1 -1
  25. package/es2021/plugins/debug/debug.min.js +1 -1
  26. package/es2021/plugins/speech-recognize/speech-recognize.css +1 -1
  27. package/es2021/plugins/speech-recognize/speech-recognize.js +1 -1
  28. package/es2021/plugins/speech-recognize/speech-recognize.min.js +1 -1
  29. package/es2021.en/jodit.css +1 -1
  30. package/es2021.en/jodit.fat.min.js +2 -2
  31. package/es2021.en/jodit.js +59 -44
  32. package/es2021.en/jodit.min.js +2 -2
  33. package/es2021.en/plugins/debug/debug.js +1 -1
  34. package/es2021.en/plugins/debug/debug.min.js +1 -1
  35. package/es2021.en/plugins/speech-recognize/speech-recognize.css +1 -1
  36. package/es2021.en/plugins/speech-recognize/speech-recognize.js +1 -1
  37. package/es2021.en/plugins/speech-recognize/speech-recognize.min.js +1 -1
  38. package/es5/jodit.css +2 -2
  39. package/es5/jodit.fat.min.js +2 -2
  40. package/es5/jodit.js +62 -46
  41. package/es5/jodit.min.css +2 -2
  42. package/es5/jodit.min.js +2 -2
  43. package/es5/plugins/debug/debug.js +1 -1
  44. package/es5/plugins/debug/debug.min.js +1 -1
  45. package/es5/plugins/speech-recognize/speech-recognize.css +1 -1
  46. package/es5/plugins/speech-recognize/speech-recognize.js +1 -1
  47. package/es5/plugins/speech-recognize/speech-recognize.min.js +1 -1
  48. package/esm/core/constants.js +1 -1
  49. package/esm/core/ui/group/list.js +2 -1
  50. package/esm/plugins/color/config.js +37 -1
  51. package/esm/plugins/image-properties/readers/size.js +11 -6
  52. package/esm/plugins/image-properties/writers/size.js +4 -1
  53. package/esm/plugins/inline-popup/config/items/cells.js +1 -31
  54. package/esm/types/toolbar.d.ts +1 -0
  55. package/package.json +1 -1
  56. package/types/types/toolbar.d.ts +1 -0
package/es2018/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.2.7
4
+ * Version: v4.2.10
5
5
  * Url: https://xdsoft.net/jodit/
6
6
  * License(s): MIT
7
7
  */
@@ -1736,7 +1736,7 @@ __webpack_require__.r(__webpack_exports__);
1736
1736
  * Released under MIT see LICENSE.txt in the project root for license information.
1737
1737
  * Copyright (c) 2013-2024 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
1738
1738
  */
1739
- const APP_VERSION = "4.2.7";
1739
+ const APP_VERSION = "4.2.10";
1740
1740
  // prettier-ignore
1741
1741
  const ES = "es2018";
1742
1742
  const IS_ES_MODERN = true;
@@ -14798,7 +14798,11 @@ let UIList = class UIList extends jodit_core_ui_group_group__WEBPACK_IMPORTED_MO
14798
14798
  group.append(elm);
14799
14799
  }
14800
14800
  };
14801
- const isNotRemoved = (b) => !this.removeButtons.includes(b.name);
14801
+ const isNotRemoved = (b) => {
14802
+ var _a;
14803
+ return !this.removeButtons.includes(b.name) &&
14804
+ (!b.isVisible || ((_a = b.isVisible) === null || _a === void 0 ? void 0 : _a.call(b, this.j, b)));
14805
+ };
14802
14806
  items.forEach(item => {
14803
14807
  if ((0,jodit_core_ui_helpers_buttons__WEBPACK_IMPORTED_MODULE_9__/* .isButtonGroup */ .i)(item)) {
14804
14808
  const buttons = item.buttons.filter(b => b);
@@ -27832,7 +27836,43 @@ jodit_core_global__WEBPACK_IMPORTED_MODULE_0__/* .pluginSystem */ .fg.add('color
27832
27836
 
27833
27837
 
27834
27838
  jodit_core_ui_icon__WEBPACK_IMPORTED_MODULE_2__/* .Icon */ .I.set('brush', (_brush_svg__WEBPACK_IMPORTED_MODULE_4___default()));
27839
+ jodit_config__WEBPACK_IMPORTED_MODULE_5__/* .Config */ .T.prototype.controls.brushCell = {
27840
+ isVisible: (editor) => {
27841
+ return !editor.o.disablePlugins.includes('color');
27842
+ },
27843
+ icon: 'brush',
27844
+ popup: (editor, _, close) => {
27845
+ if (!(0,jodit_core_helpers___WEBPACK_IMPORTED_MODULE_1__.isJoditObject)(editor)) {
27846
+ return;
27847
+ }
27848
+ const tableModule = editor.getInstance('Table', editor.o), selected = tableModule.getAllSelectedCells();
27849
+ if (!selected.length) {
27850
+ return false;
27851
+ }
27852
+ const makeColorPicker = (key) => (0,jodit_modules_widget__WEBPACK_IMPORTED_MODULE_3__/* .ColorPickerWidget */ .Kn)(editor, (value) => {
27853
+ selected.forEach(cell => {
27854
+ (0,jodit_core_helpers___WEBPACK_IMPORTED_MODULE_1__.css)(cell, key, value);
27855
+ });
27856
+ editor.lock();
27857
+ editor.synchronizeValues();
27858
+ close();
27859
+ editor.unlock();
27860
+ }, (0,jodit_core_helpers___WEBPACK_IMPORTED_MODULE_1__.css)(selected[0], key));
27861
+ return (0,jodit_modules_widget__WEBPACK_IMPORTED_MODULE_3__/* .TabsWidget */ .Zg)(editor, [
27862
+ {
27863
+ name: 'Background',
27864
+ content: makeColorPicker('background-color')
27865
+ },
27866
+ { name: 'Text', content: makeColorPicker('color') },
27867
+ { name: 'Border', content: makeColorPicker('border-color') }
27868
+ ]);
27869
+ },
27870
+ tooltip: 'Background'
27871
+ };
27835
27872
  jodit_config__WEBPACK_IMPORTED_MODULE_5__/* .Config */ .T.prototype.controls.brush = {
27873
+ isVisible: (editor) => {
27874
+ return !editor.o.disablePlugins.includes('color');
27875
+ },
27836
27876
  update(editor, button) {
27837
27877
  const color = (0,jodit_core_helpers___WEBPACK_IMPORTED_MODULE_1__.dataBind)(button, 'color');
27838
27878
  const update = (key, value) => {
@@ -31620,16 +31660,21 @@ function readMargins(image, values, state) {
31620
31660
  /** @private */
31621
31661
  async function readSizes(image, values, state) {
31622
31662
  await image.decode();
31623
- const width = (0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_0__/* .attr */ .C)(image, 'width') || (0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_2__/* .css */ .A)(image, 'width', true) || false;
31624
- const height = (0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_0__/* .attr */ .C)(image, 'height') || (0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_2__/* .css */ .A)(image, 'height', true) || false;
31663
+ const width = (0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_2__/* .css */ .A)(image, 'width', true) || (0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_0__/* .attr */ .C)(image, 'width') || false;
31664
+ const height = (0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_2__/* .css */ .A)(image, 'height', true) || (0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_0__/* .attr */ .C)(image, 'height') || false;
31625
31665
  values.imageWidth =
31626
31666
  width !== false
31627
31667
  ? (0,_utils_utils__WEBPACK_IMPORTED_MODULE_1__/* .normalSizeFromString */ .G)(width)
31628
31668
  : image.offsetWidth || image.naturalWidth;
31629
- values.imageHeight =
31630
- height !== false
31631
- ? (0,_utils_utils__WEBPACK_IMPORTED_MODULE_1__/* .normalSizeFromString */ .G)(height)
31632
- : image.offsetHeight || image.naturalHeight;
31669
+ if ((0,jodit_core_helpers_checker_is_numeric__WEBPACK_IMPORTED_MODULE_3__/* .isNumeric */ .k)(values.imageWidth)) {
31670
+ values.imageHeight =
31671
+ height !== false
31672
+ ? (0,_utils_utils__WEBPACK_IMPORTED_MODULE_1__/* .normalSizeFromString */ .G)(height)
31673
+ : image.offsetHeight || image.naturalHeight;
31674
+ }
31675
+ else {
31676
+ values.imageHeight = height || '';
31677
+ }
31633
31678
  const { imageWidth, imageHeight } = values;
31634
31679
  const w = parseFloat(imageWidth.toString());
31635
31680
  if (!(0,jodit_core_helpers_checker_is_numeric__WEBPACK_IMPORTED_MODULE_3__/* .isNumeric */ .k)(imageWidth) || !(0,jodit_core_helpers_checker_is_numeric__WEBPACK_IMPORTED_MODULE_3__/* .isNumeric */ .k)(imageHeight)) {
@@ -32600,6 +32645,7 @@ function applyMargin(j, marginTop, marginRight, marginBottom, marginLeft, image,
32600
32645
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
32601
32646
  /* harmony export */ q: function() { return /* binding */ applySize; }
32602
32647
  /* harmony export */ });
32648
+ /* harmony import */ var jodit_core_helpers_checker_is_numeric__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(12461);
32603
32649
  /* harmony import */ var jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(26150);
32604
32650
  /* harmony import */ var jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(38322);
32605
32651
  /* harmony import */ var _utils_utils__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(9645);
@@ -32611,6 +32657,7 @@ function applyMargin(j, marginTop, marginRight, marginBottom, marginLeft, image,
32611
32657
 
32612
32658
 
32613
32659
 
32660
+
32614
32661
  /** @private */
32615
32662
  function applySize(image, imageWidth, imageHeight, sizeIsLocked) {
32616
32663
  // Size
@@ -32624,7 +32671,9 @@ function applySize(image, imageWidth, imageHeight, sizeIsLocked) {
32624
32671
  width: updatedWidth,
32625
32672
  height: updatedWidth && sizeIsLocked ? null : updatedHeight
32626
32673
  });
32627
- (0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_0__/* .attr */ .C)(image, 'width', (0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_0__/* .attr */ .C)(image, 'width') ? updatedWidth : null);
32674
+ (0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_0__/* .attr */ .C)(image, 'width', updatedWidth && (0,jodit_core_helpers_checker_is_numeric__WEBPACK_IMPORTED_MODULE_3__/* .isNumeric */ .k)(imageWidth) && (0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_0__/* .attr */ .C)(image, 'width')
32675
+ ? updatedWidth
32676
+ : null);
32628
32677
  if (!(0,jodit_core_helpers_utils_attr__WEBPACK_IMPORTED_MODULE_0__/* .attr */ .C)(image, 'width') || sizeIsLocked) {
32629
32678
  updatedHeight = null;
32630
32679
  }
@@ -33134,8 +33183,7 @@ jodit_config__WEBPACK_IMPORTED_MODULE_5__/* .Config */ .T.prototype.popup = {
33134
33183
 
33135
33184
  "use strict";
33136
33185
  /* harmony import */ var jodit_core_helpers_checker__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(9823);
33137
- /* harmony import */ var jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(38322);
33138
- /* harmony import */ var jodit_modules_widget__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(16116);
33186
+ /* harmony import */ var jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(38322);
33139
33187
  /*!
33140
33188
  * Jodit Editor (https://xdsoft.net/jodit/)
33141
33189
  * Released under MIT see LICENSE.txt in the project root for license information.
@@ -33143,41 +33191,11 @@ jodit_config__WEBPACK_IMPORTED_MODULE_5__/* .Config */ .T.prototype.popup = {
33143
33191
  */
33144
33192
 
33145
33193
 
33146
-
33147
33194
  const cmd = (control) => control.args && (0,jodit_core_helpers_checker__WEBPACK_IMPORTED_MODULE_0__/* .isString */ .Kg)(control.args[0])
33148
33195
  ? control.args[0].toLowerCase()
33149
33196
  : '';
33150
33197
  /* harmony default export */ __webpack_exports__.A = ([
33151
- {
33152
- name: 'brush',
33153
- popup: (editor, _, close) => {
33154
- if (!(0,jodit_core_helpers_checker__WEBPACK_IMPORTED_MODULE_0__/* .isJoditObject */ .y0)(editor)) {
33155
- return;
33156
- }
33157
- const tableModule = editor.getInstance('Table', editor.o), selected = tableModule.getAllSelectedCells();
33158
- if (!selected.length) {
33159
- return false;
33160
- }
33161
- const makeColorPicker = (key) => (0,jodit_modules_widget__WEBPACK_IMPORTED_MODULE_1__/* .ColorPickerWidget */ .Kn)(editor, (value) => {
33162
- selected.forEach(cell => {
33163
- (0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_2__/* .css */ .A)(cell, key, value);
33164
- });
33165
- editor.lock();
33166
- editor.synchronizeValues();
33167
- close();
33168
- editor.unlock();
33169
- }, (0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_2__/* .css */ .A)(selected[0], key));
33170
- return (0,jodit_modules_widget__WEBPACK_IMPORTED_MODULE_1__/* .TabsWidget */ .Zg)(editor, [
33171
- {
33172
- name: 'Background',
33173
- content: makeColorPicker('background-color')
33174
- },
33175
- { name: 'Text', content: makeColorPicker('color') },
33176
- { name: 'Border', content: makeColorPicker('border-color') }
33177
- ]);
33178
- },
33179
- tooltip: 'Background'
33180
- },
33198
+ 'brushCell',
33181
33199
  {
33182
33200
  name: 'valign',
33183
33201
  list: ['Top', 'Middle', 'Bottom', 'Normal'],
@@ -33188,7 +33206,7 @@ const cmd = (control) => control.args && (0,jodit_core_helpers_checker__WEBPACK_
33188
33206
  .getInstance('Table', editor.o)
33189
33207
  .getAllSelectedCells()
33190
33208
  .forEach((cell) => {
33191
- (0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_2__/* .css */ .A)(cell, 'vertical-align', command === 'normal' ? '' : command);
33209
+ (0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_1__/* .css */ .A)(cell, 'vertical-align', command === 'normal' ? '' : command);
33192
33210
  });
33193
33211
  },
33194
33212
  tooltip: 'Vertical align'