jodit 3.13.4 → 3.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 (116) hide show
  1. package/.idea/workspace.xml +170 -158
  2. package/CHANGELOG.MD +50 -5
  3. package/README.md +2 -2
  4. package/build/jodit.css +25 -18
  5. package/build/jodit.es2018.css +18 -14
  6. package/build/jodit.es2018.en.css +18 -14
  7. package/build/jodit.es2018.en.js +9160 -7960
  8. package/build/jodit.es2018.en.min.css +1 -1
  9. package/build/jodit.es2018.en.min.js +1 -1
  10. package/build/jodit.es2018.js +9149 -7944
  11. package/build/jodit.es2018.min.css +1 -1
  12. package/build/jodit.es2018.min.js +1 -1
  13. package/build/jodit.js +19550 -19348
  14. package/build/jodit.min.css +2 -2
  15. package/build/jodit.min.js +1 -1
  16. package/build/vdom.css +3012 -0
  17. package/build/vdom.es2018.css +3012 -0
  18. package/build/vdom.es2018.en.css +3012 -0
  19. package/build/vdom.es2018.en.js +14153 -0
  20. package/build/vdom.es2018.en.min.css +1 -0
  21. package/build/vdom.es2018.en.min.js +1 -0
  22. package/build/vdom.es2018.js +14153 -0
  23. package/build/vdom.es2018.min.css +1 -0
  24. package/build/vdom.es2018.min.js +1 -0
  25. package/build/vdom.js +17419 -0
  26. package/build/vdom.min.css +1 -0
  27. package/build/vdom.min.js +1 -0
  28. package/package.json +16 -16
  29. package/src/README.md +8 -7
  30. package/src/config.ts +17 -25
  31. package/src/core/component/README.md +41 -40
  32. package/src/core/create/README.md +2 -2
  33. package/src/core/decorators/cache/README.md +4 -4
  34. package/src/core/decorators/component/README.md +12 -11
  35. package/src/core/decorators/watch/README.md +22 -16
  36. package/src/core/dom/README.md +1 -1
  37. package/src/core/dom/dom.ts +1 -1
  38. package/src/core/event-emitter/README.md +13 -13
  39. package/src/core/helpers/README.md +16 -13
  40. package/src/core/helpers/utils/get.ts +9 -5
  41. package/src/core/plugin/README.md +2 -2
  42. package/src/core/plugin/plugin-system.ts +6 -0
  43. package/src/core/request/README.md +1 -1
  44. package/src/core/selection/README.md +4 -4
  45. package/src/core/ui/README.md +13 -12
  46. package/src/core/ui/button/button/button.less +2 -0
  47. package/src/core/vdom/README.md +1 -0
  48. package/src/core/vdom/helpers/index.ts +58 -0
  49. package/src/core/vdom/index.ts +14 -0
  50. package/src/core/vdom/interface.ts +61 -0
  51. package/src/core/vdom/render/index.ts +235 -0
  52. package/src/jodit.ts +2 -2
  53. package/src/langs/de.js +7 -2
  54. package/src/modules/dialog/README.md +18 -16
  55. package/src/modules/dialog/dialog.less +8 -4
  56. package/src/modules/dialog/dialog.ts +20 -8
  57. package/src/modules/image-editor/README.md +12 -0
  58. package/src/modules/image-editor/config.ts +30 -0
  59. package/src/modules/image-editor/image-editor.ts +34 -48
  60. package/src/modules/uploader/uploader.less +1 -1
  61. package/src/plugins/README.md +0 -2
  62. package/src/plugins/clipboard/config.ts +1 -1
  63. package/src/plugins/clipboard/drag-and-drop-element.ts +48 -20
  64. package/src/plugins/clipboard/paste/CHANGELOG.md +8 -8
  65. package/src/plugins/clipboard/paste/README.md +3 -2
  66. package/src/plugins/format-block/CHANGELOG.md +8 -8
  67. package/src/plugins/format-block/README.md +10 -10
  68. package/src/plugins/iframe/config.ts +169 -0
  69. package/src/plugins/iframe/iframe.ts +1 -145
  70. package/src/plugins/image/image-processor.ts +12 -16
  71. package/src/plugins/image/image-properties/config.ts +109 -0
  72. package/src/plugins/image/image-properties/image-properties.ts +2 -99
  73. package/src/plugins/inline-popup/inline-popup.ts +10 -8
  74. package/src/plugins/keyboard/tab/tab.ts +1 -1
  75. package/src/plugins/line-height/README.md +7 -7
  76. package/src/plugins/line-height/line-height.ts +1 -1
  77. package/src/plugins/mobile/config.ts +89 -0
  78. package/src/plugins/mobile/mobile.ts +11 -85
  79. package/src/plugins/print/helpers.ts +172 -0
  80. package/src/plugins/print/preview.ts +6 -94
  81. package/src/plugins/resizer/config.ts +54 -0
  82. package/src/plugins/resizer/resizer.less +4 -4
  83. package/src/plugins/resizer/resizer.ts +7 -50
  84. package/src/plugins/source/README.md +21 -23
  85. package/src/plugins/table/select-cells.ts +1 -1
  86. package/src/styles/icons/README.md +19 -13
  87. package/src/styles/jodit.less +4 -0
  88. package/src/types/events.d.ts +1 -4
  89. package/src/types/jodit.d.ts +1 -4
  90. package/src/types/observer.d.ts +6 -1
  91. package/src/types/ui.d.ts +7 -3
  92. package/src/types/uploader.d.ts +1 -1
  93. package/src/types/view.d.ts +13 -13
  94. package/tsdoc.json +5 -0
  95. package/types/config.d.ts +0 -13
  96. package/types/core/dom/dom.d.ts +1 -1
  97. package/types/modules/image-editor/config.d.ts +11 -0
  98. package/types/modules/image-editor/image-editor.d.ts +25 -20
  99. package/types/plugins/clipboard/drag-and-drop-element.d.ts +1 -1
  100. package/types/plugins/iframe/config.d.ts +82 -0
  101. package/types/plugins/iframe/iframe.d.ts +1 -11
  102. package/types/plugins/image/image-properties/config.d.ts +70 -0
  103. package/types/plugins/image/image-properties/image-properties.d.ts +1 -77
  104. package/types/plugins/inline-popup/inline-popup.d.ts +1 -0
  105. package/types/plugins/keyboard/tab/tab.d.ts +1 -1
  106. package/types/plugins/mobile/config.d.ts +18 -0
  107. package/types/plugins/mobile/mobile.d.ts +1 -12
  108. package/types/plugins/print/helpers.d.ts +16 -0
  109. package/types/plugins/resizer/config.d.ts +36 -0
  110. package/types/plugins/resizer/resizer.d.ts +1 -31
  111. package/types/types/events.d.ts +1 -4
  112. package/types/types/jodit.d.ts +1 -4
  113. package/types/types/observer.d.ts +6 -1
  114. package/types/types/ui.d.ts +7 -3
  115. package/types/types/uploader.d.ts +1 -1
  116. package/types/types/view.d.ts +13 -13
@@ -12,6 +12,8 @@
12
12
  </component>
13
13
  <component name="ChangeListManager">
14
14
  <list default="true" id="5da7ff7f-03a8-49de-9fbb-8f8640d83b83" name="Default Changelist" comment="">
15
+ <change afterPath="$PROJECT_DIR$/src/modules/image-editor/config.ts" afterDir="false" />
16
+ <change beforePath="$PROJECT_DIR$/CHANGELOG.MD" beforeDir="false" afterPath="$PROJECT_DIR$/CHANGELOG.MD" afterDir="false" />
15
17
  <change beforePath="$PROJECT_DIR$/build/jodit.css" beforeDir="false" />
16
18
  <change beforePath="$PROJECT_DIR$/build/jodit.es2018.css" beforeDir="false" />
17
19
  <change beforePath="$PROJECT_DIR$/build/jodit.es2018.en.css" beforeDir="false" />
@@ -21,10 +23,12 @@
21
23
  <change beforePath="$PROJECT_DIR$/build/jodit.es2018.js" beforeDir="false" />
22
24
  <change beforePath="$PROJECT_DIR$/build/jodit.es2018.min.css" beforeDir="false" />
23
25
  <change beforePath="$PROJECT_DIR$/build/jodit.es2018.min.js" beforeDir="false" />
24
- <change beforePath="$PROJECT_DIR$/build/jodit.js" beforeDir="false" afterPath="$PROJECT_DIR$/build/jodit.js" afterDir="false" />
26
+ <change beforePath="$PROJECT_DIR$/build/jodit.js" beforeDir="false" />
25
27
  <change beforePath="$PROJECT_DIR$/build/jodit.min.css" beforeDir="false" />
26
28
  <change beforePath="$PROJECT_DIR$/build/jodit.min.js" beforeDir="false" />
27
- <change beforePath="$PROJECT_DIR$/test/tests/acceptance/toolbarTest.js" beforeDir="false" afterPath="$PROJECT_DIR$/test/tests/acceptance/toolbarTest.js" afterDir="false" />
29
+ <change beforePath="$PROJECT_DIR$/package-lock.json" beforeDir="false" />
30
+ <change beforePath="$PROJECT_DIR$/src/modules/image-editor/README.md" beforeDir="false" afterPath="$PROJECT_DIR$/src/modules/image-editor/README.md" afterDir="false" />
31
+ <change beforePath="$PROJECT_DIR$/src/modules/image-editor/image-editor.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/modules/image-editor/image-editor.ts" afterDir="false" />
28
32
  </list>
29
33
  <list id="5049e1d4-15bc-4e3a-b46b-d2ce7537fc13" name="Revert &quot;Some small fixes&quot;" comment="Revert &quot;Some small fixes&quot;&#10;&#10;This reverts commit bc391ec6" />
30
34
  <option name="SHOW_DIALOG" value="false" />
@@ -147,11 +151,11 @@
147
151
  <recent name="$PROJECT_DIR$/src/modules/widget/color-picker" />
148
152
  </key>
149
153
  <key name="MoveFile.RECENT_KEYS">
154
+ <recent name="$PROJECT_DIR$/src/core/vdom/helpers" />
150
155
  <recent name="$PROJECT_DIR$/src/plugins/keyboard/tab" />
151
156
  <recent name="$PROJECT_DIR$/src/core/helpers/utils" />
152
157
  <recent name="$PROJECT_DIR$/src/modules/file-browser" />
153
158
  <recent name="$PROJECT_DIR$/src/modules/file-browser/builders" />
154
- <recent name="$PROJECT_DIR$/src/modules/image-editor" />
155
159
  </key>
156
160
  </component>
157
161
  <component name="RunManager" selected="Shell Script.build">
@@ -822,147 +826,15 @@
822
826
  <workItem from="1644501269774" duration="1377000" />
823
827
  <workItem from="1644503408597" duration="803000" />
824
828
  <workItem from="1644504393226" duration="345000" />
825
- <workItem from="1644515490368" duration="6410000" />
826
- </task>
827
- <task id="LOCAL-00950" summary="Fixed docs">
828
- <created>1641421665395</created>
829
- <option name="number" value="00950" />
830
- <option name="presentableId" value="LOCAL-00950" />
831
- <option name="project" value="LOCAL" />
832
- <updated>1641421665395</updated>
833
- </task>
834
- <task id="LOCAL-00951" summary="Fixed docs">
835
- <created>1641421937348</created>
836
- <option name="number" value="00951" />
837
- <option name="presentableId" value="LOCAL-00951" />
838
- <option name="project" value="LOCAL" />
839
- <updated>1641421937348</updated>
840
- </task>
841
- <task id="LOCAL-00952" summary="Remove link to CHANGELOG">
842
- <created>1641422739448</created>
843
- <option name="number" value="00952" />
844
- <option name="presentableId" value="LOCAL-00952" />
845
- <option name="project" value="LOCAL" />
846
- <updated>1641422739448</updated>
847
- </task>
848
- <task id="LOCAL-00953" summary="Remove link to CHANGELOG">
849
- <created>1641422750986</created>
850
- <option name="number" value="00953" />
851
- <option name="presentableId" value="LOCAL-00953" />
852
- <option name="project" value="LOCAL" />
853
- <updated>1641422750986</updated>
854
- </task>
855
- <task id="LOCAL-00954" summary="Added `memorizeChoiceWhenPasteFragment` option">
856
- <created>1641423902845</created>
857
- <option name="number" value="00954" />
858
- <option name="presentableId" value="LOCAL-00954" />
859
- <option name="project" value="LOCAL" />
860
- <updated>1641423902845</updated>
861
- </task>
862
- <task id="LOCAL-00955" summary="Added TODO">
863
- <created>1641424436169</created>
864
- <option name="number" value="00955" />
865
- <option name="presentableId" value="LOCAL-00955" />
866
- <option name="project" value="LOCAL" />
867
- <updated>1641424436169</updated>
868
- </task>
869
- <task id="LOCAL-00956" summary="Added test for memorizeChoiceWhenPasteFragment">
870
- <created>1641424922890</created>
871
- <option name="number" value="00956" />
872
- <option name="presentableId" value="LOCAL-00956" />
873
- <option name="project" value="LOCAL" />
874
- <updated>1641424922890</updated>
875
- </task>
876
- <task id="LOCAL-00957" summary="Removed relative paths">
877
- <created>1642613293435</created>
878
- <option name="number" value="00957" />
879
- <option name="presentableId" value="LOCAL-00957" />
880
- <option name="project" value="LOCAL" />
881
- <updated>1642613293435</updated>
882
- </task>
883
- <task id="LOCAL-00958" summary="Fixed work in ie11">
884
- <created>1642622772111</created>
885
- <option name="number" value="00958" />
886
- <option name="presentableId" value="LOCAL-00958" />
887
- <option name="project" value="LOCAL" />
888
- <updated>1642622772112</updated>
889
- </task>
890
- <task id="LOCAL-00959" summary="Added new option `safeMode`">
891
- <created>1642622827092</created>
892
- <option name="number" value="00959" />
893
- <option name="presentableId" value="LOCAL-00959" />
894
- <option name="project" value="LOCAL" />
895
- <updated>1642622827092</updated>
896
- </task>
897
- <task id="LOCAL-00960" summary="Replace relative paths to absolute">
898
- <created>1642622860722</created>
899
- <option name="number" value="00960" />
900
- <option name="presentableId" value="LOCAL-00960" />
901
- <option name="project" value="LOCAL" />
902
- <updated>1642622860722</updated>
903
- </task>
904
- <task id="LOCAL-00961" summary="Replace relative paths to absolute">
905
- <created>1642623434481</created>
906
- <option name="number" value="00961" />
907
- <option name="presentableId" value="LOCAL-00961" />
908
- <option name="project" value="LOCAL" />
909
- <updated>1642623434481</updated>
910
- </task>
911
- <task id="LOCAL-00962" summary="Fixed docs">
912
- <created>1642623552327</created>
913
- <option name="number" value="00962" />
914
- <option name="presentableId" value="LOCAL-00962" />
915
- <option name="project" value="LOCAL" />
916
- <updated>1642623552327</updated>
917
- </task>
918
- <task id="LOCAL-00963" summary="Fixed docs">
919
- <created>1642623652340</created>
920
- <option name="number" value="00963" />
921
- <option name="presentableId" value="LOCAL-00963" />
922
- <option name="project" value="LOCAL" />
923
- <updated>1642623652340</updated>
924
- </task>
925
- <task id="LOCAL-00964" summary="Added new alias in webpack">
926
- <created>1642626356049</created>
927
- <option name="number" value="00964" />
928
- <option name="presentableId" value="LOCAL-00964" />
929
- <option name="project" value="LOCAL" />
930
- <updated>1642626356049</updated>
931
- </task>
932
- <task id="LOCAL-00965" summary="Added documentation for the lang module">
933
- <created>1643145003610</created>
934
- <option name="number" value="00965" />
935
- <option name="presentableId" value="LOCAL-00965" />
936
- <option name="project" value="LOCAL" />
937
- <updated>1643145003611</updated>
938
- </task>
939
- <task id="LOCAL-00966" summary="Merge branch 'master' of github.com:xdan/jodit&#10;&#10;# Conflicts:&#10;#&#9;package-lock.json">
940
- <created>1643145042845</created>
941
- <option name="number" value="00966" />
942
- <option name="presentableId" value="LOCAL-00966" />
943
- <option name="project" value="LOCAL" />
944
- <updated>1643145042845</updated>
945
- </task>
946
- <task id="LOCAL-00967" summary="Merge branch 'master' of github.com:xdan/jodit&#10;&#10;# Conflicts:&#10;#&#9;package-lock.json">
947
- <created>1643145245417</created>
948
- <option name="number" value="00967" />
949
- <option name="presentableId" value="LOCAL-00967" />
950
- <option name="project" value="LOCAL" />
951
- <updated>1643145245417</updated>
952
- </task>
953
- <task id="LOCAL-00968" summary="Change getElm signature">
954
- <created>1643146391608</created>
955
- <option name="number" value="00968" />
956
- <option name="presentableId" value="LOCAL-00968" />
957
- <option name="project" value="LOCAL" />
958
- <updated>1643146391608</updated>
959
- </task>
960
- <task id="LOCAL-00969" summary="Change getElm signature">
961
- <created>1643147940267</created>
962
- <option name="number" value="00969" />
963
- <option name="presentableId" value="LOCAL-00969" />
964
- <option name="project" value="LOCAL" />
965
- <updated>1643147940267</updated>
829
+ <workItem from="1644515490368" duration="9092000" />
830
+ <workItem from="1644602509467" duration="4497000" />
831
+ <workItem from="1644858159038" duration="6767000" />
832
+ <workItem from="1644932078155" duration="520000" />
833
+ <workItem from="1645023853640" duration="11963000" />
834
+ <workItem from="1645104766750" duration="651000" />
835
+ <workItem from="1645118303332" duration="3746000" />
836
+ <workItem from="1645190455007" duration="20241000" />
837
+ <workItem from="1645384574862" duration="2872000" />
966
838
  </task>
967
839
  <task id="LOCAL-00970" summary="Change getElm signature">
968
840
  <created>1643148352397</created>
@@ -1167,7 +1039,147 @@
1167
1039
  <option name="project" value="LOCAL" />
1168
1040
  <updated>1644521801804</updated>
1169
1041
  </task>
1170
- <option name="localTasksCounter" value="999" />
1042
+ <task id="LOCAL-00999" summary="Fix doc">
1043
+ <created>1644522617662</created>
1044
+ <option name="number" value="00999" />
1045
+ <option name="presentableId" value="LOCAL-00999" />
1046
+ <option name="project" value="LOCAL" />
1047
+ <updated>1644522617662</updated>
1048
+ </task>
1049
+ <task id="LOCAL-01000" summary="Fix doc">
1050
+ <created>1644523726279</created>
1051
+ <option name="number" value="01000" />
1052
+ <option name="presentableId" value="LOCAL-01000" />
1053
+ <option name="project" value="LOCAL" />
1054
+ <updated>1644523726279</updated>
1055
+ </task>
1056
+ <task id="LOCAL-01001" summary="Fixed Unable to drag and drop image between table cells #782&#10;Issue: https://github.com/xdan/jodit/issues/782">
1057
+ <created>1644603490870</created>
1058
+ <option name="number" value="01001" />
1059
+ <option name="presentableId" value="LOCAL-01001" />
1060
+ <option name="project" value="LOCAL" />
1061
+ <updated>1644603490870</updated>
1062
+ </task>
1063
+ <task id="LOCAL-01002" summary="Fixed Unable to drag and drop image between table cells #782&#10;Issue: https://github.com/xdan/jodit/issues/782">
1064
+ <created>1644605909082</created>
1065
+ <option name="number" value="01002" />
1066
+ <option name="presentableId" value="LOCAL-01002" />
1067
+ <option name="project" value="LOCAL" />
1068
+ <updated>1644605909082</updated>
1069
+ </task>
1070
+ <task id="LOCAL-01003" summary="Changed the positions of some buttons on different resolutions for greater density">
1071
+ <created>1645032836769</created>
1072
+ <option name="number" value="01003" />
1073
+ <option name="presentableId" value="LOCAL-01003" />
1074
+ <option name="project" value="LOCAL" />
1075
+ <updated>1645032836769</updated>
1076
+ </task>
1077
+ <task id="LOCAL-01004" summary="Fixed Cannot format table cells in PRO version #786&#10;Issue: https://github.com/xdan/jodit/issues/786">
1078
+ <created>1645033027807</created>
1079
+ <option name="number" value="01004" />
1080
+ <option name="presentableId" value="LOCAL-01004" />
1081
+ <option name="project" value="LOCAL" />
1082
+ <updated>1645033027807</updated>
1083
+ </task>
1084
+ <task id="LOCAL-01005" summary="Changed the positions of some buttons on different resolutions for greater density">
1085
+ <created>1645033103795</created>
1086
+ <option name="number" value="01005" />
1087
+ <option name="presentableId" value="LOCAL-01005" />
1088
+ <option name="project" value="LOCAL" />
1089
+ <updated>1645033103795</updated>
1090
+ </task>
1091
+ <task id="LOCAL-01006" summary="Fixed Build error: Property or signature expected. #174&#10;Issue: https://github.com/jodit/jodit-react/issues/174">
1092
+ <created>1645033205894</created>
1093
+ <option name="number" value="01006" />
1094
+ <option name="presentableId" value="LOCAL-01006" />
1095
+ <option name="project" value="LOCAL" />
1096
+ <updated>1645033205894</updated>
1097
+ </task>
1098
+ <task id="LOCAL-01007" summary="Small refactoring">
1099
+ <created>1645033281065</created>
1100
+ <option name="number" value="01007" />
1101
+ <option name="presentableId" value="LOCAL-01007" />
1102
+ <option name="project" value="LOCAL" />
1103
+ <updated>1645033281065</updated>
1104
+ </task>
1105
+ <task id="LOCAL-01008" summary="Small refactoring">
1106
+ <created>1645033750473</created>
1107
+ <option name="number" value="01008" />
1108
+ <option name="presentableId" value="LOCAL-01008" />
1109
+ <option name="project" value="LOCAL" />
1110
+ <updated>1645033750473</updated>
1111
+ </task>
1112
+ <task id="LOCAL-01009" summary="Disabled the ability to drag and drop elements on mobile devices as it affected page scrollability">
1113
+ <created>1645033762568</created>
1114
+ <option name="number" value="01009" />
1115
+ <option name="presentableId" value="LOCAL-01009" />
1116
+ <option name="project" value="LOCAL" />
1117
+ <updated>1645033762568</updated>
1118
+ </task>
1119
+ <task id="LOCAL-01010" summary="Disabled the ability to drag and drop elements on mobile devices as it affected page scrollability">
1120
+ <created>1645033768928</created>
1121
+ <option name="number" value="01010" />
1122
+ <option name="presentableId" value="LOCAL-01010" />
1123
+ <option name="project" value="LOCAL" />
1124
+ <updated>1645033768928</updated>
1125
+ </task>
1126
+ <task id="LOCAL-01011" summary="Disabled the ability to drag and drop elements on mobile devices as it affected page scrollability">
1127
+ <created>1645033940343</created>
1128
+ <option name="number" value="01011" />
1129
+ <option name="presentableId" value="LOCAL-01011" />
1130
+ <option name="project" value="LOCAL" />
1131
+ <updated>1645033940343</updated>
1132
+ </task>
1133
+ <task id="LOCAL-01012" summary="Refactoring iframe module">
1134
+ <created>1645034767241</created>
1135
+ <option name="number" value="01012" />
1136
+ <option name="presentableId" value="LOCAL-01012" />
1137
+ <option name="project" value="LOCAL" />
1138
+ <updated>1645034767241</updated>
1139
+ </task>
1140
+ <task id="LOCAL-01013" summary="Refactoring iframe module">
1141
+ <created>1645035086511</created>
1142
+ <option name="number" value="01013" />
1143
+ <option name="presentableId" value="LOCAL-01013" />
1144
+ <option name="project" value="LOCAL" />
1145
+ <updated>1645035086511</updated>
1146
+ </task>
1147
+ <task id="LOCAL-01014" summary="Fixed a bug in the editor preview display module - when the editor did not fix the correct image sizes">
1148
+ <created>1645388173653</created>
1149
+ <option name="number" value="01014" />
1150
+ <option name="presentableId" value="LOCAL-01014" />
1151
+ <option name="project" value="LOCAL" />
1152
+ <updated>1645388173653</updated>
1153
+ </task>
1154
+ <task id="LOCAL-01015" summary="Added experimental entry point for VDom">
1155
+ <created>1645388216395</created>
1156
+ <option name="number" value="01015" />
1157
+ <option name="presentableId" value="LOCAL-01015" />
1158
+ <option name="project" value="LOCAL" />
1159
+ <updated>1645388216395</updated>
1160
+ </task>
1161
+ <task id="LOCAL-01016" summary="Apply prettier">
1162
+ <created>1645388397719</created>
1163
+ <option name="number" value="01016" />
1164
+ <option name="presentableId" value="LOCAL-01016" />
1165
+ <option name="project" value="LOCAL" />
1166
+ <updated>1645388397719</updated>
1167
+ </task>
1168
+ <task id="LOCAL-01017" summary="Added record in changelog">
1169
+ <created>1645388472008</created>
1170
+ <option name="number" value="01017" />
1171
+ <option name="presentableId" value="LOCAL-01017" />
1172
+ <option name="project" value="LOCAL" />
1173
+ <updated>1645388472008</updated>
1174
+ </task>
1175
+ <task id="LOCAL-01018" summary="Added record in changelog">
1176
+ <created>1645388478100</created>
1177
+ <option name="number" value="01018" />
1178
+ <option name="presentableId" value="LOCAL-01018" />
1179
+ <option name="project" value="LOCAL" />
1180
+ <updated>1645388478100</updated>
1181
+ </task>
1182
+ <option name="localTasksCounter" value="1019" />
1171
1183
  <servers />
1172
1184
  </component>
1173
1185
  <component name="TypeScriptGeneratedFilesManager">
@@ -1307,21 +1319,9 @@
1307
1319
  </component>
1308
1320
  <component name="VcsManagerConfiguration">
1309
1321
  <option name="CHECK_CODE_SMELLS_BEFORE_PROJECT_COMMIT" value="false" />
1310
- <MESSAGE value="Replace relative paths to absolute" />
1311
- <MESSAGE value="Fixed docs" />
1312
- <MESSAGE value="Added new alias in webpack" />
1313
- <MESSAGE value="Added documentation for the lang module" />
1314
- <MESSAGE value="Merge branch 'master' of github.com:xdan/jodit&#10;&#10;# Conflicts:&#10;#&#9;package-lock.json" />
1315
- <MESSAGE value="Change getElm signature" />
1316
- <MESSAGE value="Added documentation for icons system" />
1317
- <MESSAGE value="Change doc" />
1318
- <MESSAGE value="Change observable system" />
1319
- <MESSAGE value="Fixed tests fow Windows" />
1320
- <MESSAGE value="Partially fixed bug when building Jodit with babel minimizer, some classes are not defined as instanceof" />
1321
1322
  <MESSAGE value="Fixed type definition" />
1322
1323
  <MESSAGE value="Small ref" />
1323
1324
  <MESSAGE value="CVE-2021-23382" />
1324
- <MESSAGE value="Small refactoring" />
1325
1325
  <MESSAGE value="Added tab plugin" />
1326
1326
  <MESSAGE value="Added static `Jodit.isJoditAssigned` method&#10;Issue: https://github.com/xdan/jodit/issues/778" />
1327
1327
  <MESSAGE value="- Fixed a bug when switching between source and wysiwyg mode, the FORM tag was wrapped in P" />
@@ -1332,7 +1332,19 @@
1332
1332
  <MESSAGE value="Refactoring uploader module" />
1333
1333
  <MESSAGE value="Restore translate utils" />
1334
1334
  <MESSAGE value="Added new translation" />
1335
- <option name="LAST_COMMIT_MESSAGE" value="Added new translation" />
1335
+ <MESSAGE value="Fix doc" />
1336
+ <MESSAGE value="Fixed Unable to drag and drop image between table cells #782&#10;Issue: https://github.com/xdan/jodit/issues/782" />
1337
+ <MESSAGE value="Fixed Cannot format table cells in PRO version #786&#10;Issue: https://github.com/xdan/jodit/issues/786" />
1338
+ <MESSAGE value="Changed the positions of some buttons on different resolutions for greater density" />
1339
+ <MESSAGE value="Fixed Build error: Property or signature expected. #174&#10;Issue: https://github.com/jodit/jodit-react/issues/174" />
1340
+ <MESSAGE value="Small refactoring" />
1341
+ <MESSAGE value="Disabled the ability to drag and drop elements on mobile devices as it affected page scrollability" />
1342
+ <MESSAGE value="Refactoring iframe module" />
1343
+ <MESSAGE value="Fixed a bug in the editor preview display module - when the editor did not fix the correct image sizes" />
1344
+ <MESSAGE value="Added experimental entry point for VDom" />
1345
+ <MESSAGE value="Apply prettier" />
1346
+ <MESSAGE value="Added record in changelog" />
1347
+ <option name="LAST_COMMIT_MESSAGE" value="Added record in changelog" />
1336
1348
  </component>
1337
1349
  <component name="XDebuggerManager">
1338
1350
  <breakpoint-manager>
package/CHANGELOG.MD CHANGED
@@ -9,6 +9,51 @@
9
9
  > - :house: [Internal]
10
10
  > - :nail_care: [Polish]
11
11
 
12
+ ## 3.14.2
13
+
14
+ #### :rocket: New Feature
15
+
16
+ - Added an experimental module for working with VDom<->Dom, an attempt to switch to this technology in the editor
17
+
18
+ #### :house: Internal
19
+
20
+ - @types/node ^17.0.15 → ^17.0.18
21
+ - @typescript-eslint/eslint-plugin ^5.10.2 → ^5.12.0
22
+ - @typescript-eslint/parser ^5.10.2 → ^5.12.0
23
+ - axios ^0.25.0 → ^0.26.0
24
+ - cssnano-preset-advanced ^5.1.11 → ^5.1.12
25
+ - eslint ^8.8.0 → ^8.9.0
26
+ - eslint-config-prettier ^8.3.0 → ^8.4.0
27
+ - express ^4.17.2 → ^4.17.3
28
+ - karma ^6.3.15 → ^6.3.16
29
+ - lint-staged ^12.3.3 → ^12.3.4
30
+ - mocha ^9.2.0 → ^9.2.1
31
+ - stylelint ^14.3.0 → ^14.5.1
32
+ - stylelint-config-standard ^24.0.0 → ^25.0.0
33
+ - webpack ^5.68.0 → ^5.69.1
34
+ - core-js ^3.21.0 → ^3.21.1
35
+
36
+ ## 3.14.1
37
+
38
+ #### :house: Internal
39
+
40
+ - [(change) improved a few german translations #783](https://github.com/xdan/jodit/pull/783)
41
+
42
+ #### :boom: Breaking Change
43
+
44
+ - Changed the positions of some buttons on different resolutions for greater density
45
+ - Disabled the ability to drag and drop elements on mobile devices as it affected page scrollability
46
+
47
+ #### :bug: Bug Fix
48
+
49
+ - [Cannot format table cells in PRO version #786](https://github.com/xdan/jodit/issues/786) -[Build error: Property or signature expected. #174](https://github.com/jodit/jodit-react/issues/174)
50
+
51
+ ## 3.13.5
52
+
53
+ #### :bug: Bug Fix
54
+
55
+ - [Unable to drag and drop image between table cells #782](https://github.com/xdan/jodit/issues/782)
56
+
12
57
  ## 3.13.4
13
58
 
14
59
  #### :rocket: New Feature
@@ -1068,11 +1113,11 @@ Related with https://github.com/xdan/jodit/issues/574. In some cases need to lim
1068
1113
  - @property {IUIOption[]} link.selectOptionsClassName=[] The list of the option for the select (to use with
1069
1114
  modeClassName="select")
1070
1115
  - ex: [
1071
- - { value: "", text: "" },
1072
- - { value: "val1", text: "text1" },
1073
- - { value: "val2", text: "text2" },
1074
- - { value: "val3", text: "text3" }
1075
- - ]
1116
+ - { value: "", text: "" },
1117
+ - { value: "val1", text: "text1" },
1118
+ - { value: "val2", text: "text2" },
1119
+ - { value: "val3", text: "text3" }
1120
+ - ]
1076
1121
  PR: https://github.com/xdan/jodit/pull/577 Thanks @s-renier-taonix-fr
1077
1122
 
1078
1123
  ##### New option `statusbar: boolean = true`
package/README.md CHANGED
@@ -55,9 +55,9 @@ ES2018 Version (if your users use only modern browsers)
55
55
  ```html
56
56
  <link
57
57
  rel="stylesheet"
58
- href="https://cdnjs.cloudflare.com/ajax/libs/jodit/3.11.2/jodit.es2018.min.css"
58
+ href="https://cdnjs.cloudflare.com/ajax/libs/jodit/3.13.4/jodit.es2018.min.css"
59
59
  />
60
- <script src="https://cdnjs.cloudflare.com/ajax/libs/jodit/3.11.2/jodit.es2018.min.js"></script>
60
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/jodit/3.13.4/jodit.es2018.min.js"></script>
61
61
  ```
62
62
 
63
63
  ### USAGE
package/build/jodit.css CHANGED
@@ -1,14 +1,14 @@
1
1
  /*!
2
2
  * jodit - Jodit is awesome and usefully wysiwyg editor with filebrowser
3
3
  * Author: Chupurnov <chupurnov@gmail.com> (https://xdsoft.net/)
4
- * Version: v3.13.4
4
+ * Version: v3.14.2
5
5
  * Url: https://xdsoft.net/jodit/
6
6
  * License(s): MIT
7
7
  */
8
8
  /*!
9
9
  * jodit - Jodit is awesome and usefully wysiwyg editor with filebrowser
10
10
  * Author: Chupurnov <chupurnov@gmail.com> (https://xdsoft.net/)
11
- * Version: v3.13.4
11
+ * Version: v3.14.2
12
12
  * Url: https://xdsoft.net/jodit/
13
13
  * License(s): MIT
14
14
  */
@@ -682,6 +682,12 @@ svg.jodit-icon {
682
682
  .jodit-container:not(.jodit_inline).jodit_disabled .jodit-workplace {
683
683
  opacity: 0.4;
684
684
  }
685
+ .jodit_lock {
686
+ -webkit-user-select: none !important;
687
+ -moz-user-select: none !important;
688
+ -ms-user-select: none !important;
689
+ user-select: none !important;
690
+ }
685
691
  .jodit_disabled {
686
692
  -webkit-user-select: none !important;
687
693
  -moz-user-select: none !important;
@@ -1392,6 +1398,7 @@ svg.jodit-icon {
1392
1398
  justify-content: center;
1393
1399
  padding: 0 8px;
1394
1400
  border-radius: 3px;
1401
+ color: rgba(0, 0, 0, 0.75);
1395
1402
  }
1396
1403
  .jodit-ui-button {
1397
1404
  position: relative;
@@ -1425,6 +1432,7 @@ svg.jodit-icon {
1425
1432
  justify-content: center;
1426
1433
  padding: 0 8px;
1427
1434
  border-radius: 3px;
1435
+ color: rgba(0, 0, 0, 0.75);
1428
1436
  cursor: pointer;
1429
1437
  min-width: 34px;
1430
1438
  height: 34px;
@@ -2705,7 +2713,7 @@ svg.jodit-icon {
2705
2713
  white-space: normal;
2706
2714
  }
2707
2715
  @media (max-width: 480px) {
2708
- .jodit-dialog__panel {
2716
+ .jodit-dialog:not(.jodit-dialog_adaptive_false) .jodit-dialog__panel {
2709
2717
  top: 0 !important;
2710
2718
  left: 0 !important;
2711
2719
  width: 100% !important;
@@ -2747,14 +2755,6 @@ svg.jodit-icon {
2747
2755
  cursor: move;
2748
2756
  text-align: left;
2749
2757
  }
2750
- @media (max-width: 480px) {
2751
- .jodit-dialog__header {
2752
- -webkit-box-orient: vertical;
2753
- -webkit-box-direction: normal;
2754
- -ms-flex-direction: column;
2755
- flex-direction: column;
2756
- }
2757
- }
2758
2758
  .jodit-dialog__header-toolbar {
2759
2759
  display: -webkit-box;
2760
2760
  display: -ms-flexbox;
@@ -2818,6 +2818,14 @@ svg.jodit-icon {
2818
2818
  width: auto;
2819
2819
  padding-left: 8px;
2820
2820
  }
2821
+ @media (max-width: 480px) {
2822
+ .jodit-dialog:not(.jodit-dialog_adaptive_false) .jodit-dialog__header {
2823
+ -webkit-box-orient: vertical;
2824
+ -webkit-box-direction: normal;
2825
+ -ms-flex-direction: column;
2826
+ flex-direction: column;
2827
+ }
2828
+ }
2821
2829
  .jodit-dialog_slim_true .jodit-dialog__header {
2822
2830
  min-height: 10px;
2823
2831
  }
@@ -3354,6 +3362,7 @@ svg.jodit-icon {
3354
3362
  justify-content: center;
3355
3363
  padding: 0 8px;
3356
3364
  border-radius: 3px;
3365
+ color: rgba(0, 0, 0, 0.75);
3357
3366
  }
3358
3367
  .jodit-toolbar-button__button:hover:not([disabled]) {
3359
3368
  background-color: #dcdcdc;
@@ -3481,6 +3490,7 @@ svg.jodit-icon {
3481
3490
  justify-content: center;
3482
3491
  padding: 0 8px;
3483
3492
  border-radius: 3px;
3493
+ color: rgba(0, 0, 0, 0.75);
3484
3494
  cursor: pointer;
3485
3495
  min-width: 34px;
3486
3496
  height: 34px;
@@ -4669,9 +4679,6 @@ a + .jodit-filebrowser-tree__source-title {
4669
4679
  max-width: 100%;
4670
4680
  }
4671
4681
  }
4672
- .jodit_drag_hover {
4673
- background-color: #ecebe9;
4674
- }
4675
4682
 
4676
4683
  /*!
4677
4684
  * Jodit Editor (https://xdsoft.net/jodit/)
@@ -5179,22 +5186,22 @@ html.jodit_fullsize-box_true {
5179
5186
  .jodit-resizer > div:nth-child(1) {
5180
5187
  top: calc(10px / -2);
5181
5188
  left: calc(10px / -2);
5182
- cursor: nw-resize;
5189
+ cursor: nwse-resize;
5183
5190
  }
5184
5191
  .jodit-resizer > div:nth-child(2) {
5185
5192
  top: calc(10px / -2);
5186
5193
  right: calc(10px / -2);
5187
- cursor: ne-resize;
5194
+ cursor: nesw-resize;
5188
5195
  }
5189
5196
  .jodit-resizer > div:nth-child(3) {
5190
5197
  right: calc(10px / -2);
5191
5198
  bottom: calc(10px / -2);
5192
- cursor: se-resize;
5199
+ cursor: nwse-resize;
5193
5200
  }
5194
5201
  .jodit-resizer > div:nth-child(4) {
5195
5202
  bottom: calc(10px / -2);
5196
5203
  left: calc(10px / -2);
5197
- cursor: sw-resize;
5204
+ cursor: nesw-resize;
5198
5205
  }
5199
5206
 
5200
5207
  /*!