jodit 3.13.3 → 3.14.1

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 (122) hide show
  1. package/.idea/workspace.xml +189 -179
  2. package/CHANGELOG.MD +38 -7
  3. package/README.md +2 -2
  4. package/build/jodit.css +71 -20
  5. package/build/jodit.es2018.css +39 -15
  6. package/build/jodit.es2018.en.css +39 -15
  7. package/build/jodit.es2018.en.js +802 -522
  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 +844 -543
  11. package/build/jodit.es2018.min.css +1 -1
  12. package/build/jodit.es2018.min.js +1 -1
  13. package/build/jodit.js +1491 -1082
  14. package/build/jodit.min.css +2 -2
  15. package/build/jodit.min.js +1 -1
  16. package/package.json +6 -3
  17. package/src/config.ts +17 -11
  18. package/src/core/helpers/utils/css.ts +1 -1
  19. package/src/core/plugin/plugin-system.ts +6 -0
  20. package/src/core/selection/select.ts +4 -0
  21. package/src/core/selection/style/api/get-suit-parent.ts +1 -1
  22. package/src/core/ui/button/button/button.less +2 -0
  23. package/src/core/view/view.ts +5 -5
  24. package/src/jodit.ts +34 -40
  25. package/src/langs/README.md +14 -11
  26. package/src/langs/ar.js +2 -1
  27. package/src/langs/cs_cz.js +2 -1
  28. package/src/langs/de.js +8 -2
  29. package/src/langs/es.js +2 -2
  30. package/src/langs/fa.js +2 -1
  31. package/src/langs/fr.js +2 -1
  32. package/src/langs/he.js +2 -1
  33. package/src/langs/hu.js +2 -1
  34. package/src/langs/id.js +2 -1
  35. package/src/langs/it.js +2 -1
  36. package/src/langs/ja.js +2 -1
  37. package/src/langs/ko.js +2 -1
  38. package/src/langs/nl.js +2 -1
  39. package/src/langs/pl.js +2 -1
  40. package/src/langs/pt_br.js +2 -2
  41. package/src/langs/ru.js +2 -1
  42. package/src/langs/tr.js +2 -1
  43. package/src/langs/zh_cn.js +2 -1
  44. package/src/langs/zh_tw.js +2 -1
  45. package/src/modules/dialog/dialog.less +8 -4
  46. package/src/modules/dialog/dialog.ts +20 -8
  47. package/src/modules/file-browser/file-browser.ts +7 -5
  48. package/src/modules/file-browser/styles/file-browser.less +0 -4
  49. package/src/modules/table/table.ts +0 -12
  50. package/src/modules/uploader/README.md +213 -1
  51. package/src/modules/uploader/config.ts +123 -0
  52. package/src/modules/uploader/helpers/build-data.ts +43 -0
  53. package/src/modules/uploader/helpers/data-uri-to-blob.ts +30 -0
  54. package/src/modules/uploader/helpers/index.ts +25 -0
  55. package/src/modules/uploader/helpers/process-old-browser-drag.ts +62 -0
  56. package/src/modules/uploader/helpers/send-files.ts +169 -0
  57. package/src/modules/uploader/helpers/send.ts +103 -0
  58. package/src/modules/uploader/uploader.less +4 -0
  59. package/src/modules/uploader/uploader.ts +107 -568
  60. package/src/modules/widget/file-selector/file-selector.ts +3 -7
  61. package/src/plugins/clipboard/config.ts +1 -1
  62. package/src/plugins/clipboard/drag-and-drop-element.ts +48 -20
  63. package/src/plugins/image/image-processor.ts +12 -16
  64. package/src/plugins/image/image-properties/config.ts +109 -0
  65. package/src/plugins/image/image-properties/image-properties.ts +7 -108
  66. package/src/plugins/index.ts +1 -0
  67. package/src/plugins/inline-popup/inline-popup.ts +10 -8
  68. package/src/plugins/keyboard/tab/cases/index.ts +5 -0
  69. package/src/plugins/keyboard/tab/tab.ts +4 -4
  70. package/src/plugins/line-height/README.md +11 -0
  71. package/src/plugins/line-height/config.ts +40 -0
  72. package/src/plugins/line-height/line-height.ts +83 -0
  73. package/src/plugins/mobile/config.ts +89 -0
  74. package/src/plugins/mobile/mobile.ts +11 -85
  75. package/src/plugins/ordered-list/ordered-list.ts +7 -3
  76. package/src/plugins/print/helpers.ts +127 -0
  77. package/src/plugins/print/preview.less +7 -0
  78. package/src/plugins/print/preview.ts +8 -90
  79. package/src/plugins/resizer/config.ts +54 -0
  80. package/src/plugins/resizer/resizer.less +4 -4
  81. package/src/plugins/resizer/resizer.ts +7 -50
  82. package/src/plugins/table/config.ts +12 -0
  83. package/src/plugins/table/select-cells.ts +1 -1
  84. package/src/plugins/table/table.less +1 -21
  85. package/src/styles/icons/index.ts +2 -0
  86. package/src/styles/icons/line-height.svg +8 -0
  87. package/src/styles/jodit.less +4 -0
  88. package/src/styles/mixins.less +24 -0
  89. package/src/types/toolbar.d.ts +1 -1
  90. package/src/types/uploader.d.ts +8 -136
  91. package/src/types/view.d.ts +26 -26
  92. package/types/core/view/view.d.ts +4 -4
  93. package/types/jodit.d.ts +9 -11
  94. package/types/modules/table/table.d.ts +0 -10
  95. package/types/modules/uploader/config.d.ts +18 -0
  96. package/types/modules/uploader/helpers/build-data.d.ts +10 -0
  97. package/types/modules/uploader/helpers/data-uri-to-blob.d.ts +12 -0
  98. package/types/modules/uploader/helpers/index.d.ts +16 -0
  99. package/types/modules/uploader/helpers/process-old-browser-drag.d.ts +10 -0
  100. package/types/modules/uploader/helpers/send-files.d.ts +13 -0
  101. package/types/modules/uploader/helpers/send.d.ts +12 -0
  102. package/types/modules/uploader/uploader.d.ts +8 -26
  103. package/types/plugins/clipboard/drag-and-drop-element.d.ts +1 -1
  104. package/types/plugins/image/image-properties/config.d.ts +70 -0
  105. package/types/plugins/image/image-properties/image-properties.d.ts +1 -77
  106. package/types/plugins/index.d.ts +1 -0
  107. package/types/plugins/inline-popup/inline-popup.d.ts +1 -0
  108. package/types/plugins/keyboard/tab/cases/index.d.ts +3 -0
  109. package/types/plugins/keyboard/tab/tab.d.ts +2 -0
  110. package/types/plugins/line-height/config.d.ts +20 -0
  111. package/types/plugins/line-height/line-height.d.ts +19 -0
  112. package/types/plugins/mobile/config.d.ts +18 -0
  113. package/types/plugins/mobile/mobile.d.ts +1 -12
  114. package/types/plugins/print/helpers.d.ts +10 -0
  115. package/types/plugins/print/preview.d.ts +1 -0
  116. package/types/plugins/resizer/config.d.ts +36 -0
  117. package/types/plugins/resizer/resizer.d.ts +1 -31
  118. package/types/plugins/table/config.d.ts +10 -0
  119. package/types/styles/icons/index.d.ts +2 -1
  120. package/types/types/toolbar.d.ts +1 -1
  121. package/types/types/uploader.d.ts +8 -136
  122. package/types/types/view.d.ts +26 -26
@@ -12,8 +12,7 @@
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 beforePath="$PROJECT_DIR$/src/core/selection/style/api/get-suit-parent.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/core/selection/style/api/get-suit-parent.ts" afterDir="false" />
16
- <change beforePath="$PROJECT_DIR$/src/core/selection/style/commit-style.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/core/selection/style/commit-style.ts" afterDir="false" />
15
+ <change beforePath="$PROJECT_DIR$/src/modules/dialog/dialog.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/modules/dialog/dialog.ts" afterDir="false" />
17
16
  </list>
18
17
  <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" />
19
18
  <option name="SHOW_DIALOG" value="false" />
@@ -96,7 +95,7 @@
96
95
  <property name="js.linters.configure.manually.selectedeslint" value="true" />
97
96
  <property name="jsx.switch.disabled" value="true" />
98
97
  <property name="last.edited.regexp" value="Sample Text" />
99
- <property name="last_opened_file_path" value="$PROJECT_DIR$/.github/workflows" />
98
+ <property name="last_opened_file_path" value="$PROJECT_DIR$/src/styles/icons" />
100
99
  <property name="node.js.detected.package.eslint" value="true" />
101
100
  <property name="node.js.detected.package.jscs" value="true" />
102
101
  <property name="node.js.detected.package.standard" value="true" />
@@ -129,11 +128,11 @@
129
128
  </component>
130
129
  <component name="RecentsManager">
131
130
  <key name="CopyFile.RECENT_KEYS">
131
+ <recent name="$PROJECT_DIR$/src/styles/icons" />
132
132
  <recent name="$PROJECT_DIR$/.github/workflows" />
133
133
  <recent name="$PROJECT_DIR$/src/modules/widget/tabs" />
134
134
  <recent name="$PROJECT_DIR$/src/modules/widget/file-selector" />
135
135
  <recent name="$PROJECT_DIR$/src/modules/widget/color-picker" />
136
- <recent name="$PROJECT_DIR$/src/modules/widget" />
137
136
  </key>
138
137
  <key name="MoveFile.RECENT_KEYS">
139
138
  <recent name="$PROJECT_DIR$/src/plugins/keyboard/tab" />
@@ -799,161 +798,23 @@
799
798
  <workItem from="1644247279752" duration="1468000" />
800
799
  <workItem from="1644248796483" duration="176000" />
801
800
  <workItem from="1644249993867" duration="1397000" />
802
- <workItem from="1644263504303" duration="2917000" />
803
- </task>
804
- <task id="LOCAL-00941" summary="Remove `elementsMap` field from IFileBrowser">
805
- <created>1641415529355</created>
806
- <option name="number" value="00941" />
807
- <option name="presentableId" value="LOCAL-00941" />
808
- <option name="project" value="LOCAL" />
809
- <updated>1641415529355</updated>
810
- </task>
811
- <task id="LOCAL-00942" summary="Remove `loadTree`/`loadItems`/`deleteFile` methods from IFileBrowser">
812
- <created>1641418598238</created>
813
- <option name="number" value="00942" />
814
- <option name="presentableId" value="LOCAL-00942" />
815
- <option name="project" value="LOCAL" />
816
- <updated>1641418598238</updated>
817
- </task>
818
- <task id="LOCAL-00943" summary="Remove `loadTree`/`loadItems`/`deleteFile` methods from IFileBrowser">
819
- <created>1641418775628</created>
820
- <option name="number" value="00943" />
821
- <option name="presentableId" value="LOCAL-00943" />
822
- <option name="project" value="LOCAL" />
823
- <updated>1641418775628</updated>
824
- </task>
825
- <task id="LOCAL-00944" summary="Fixed test for https://github.com/xdan/jodit/pull/772">
826
- <created>1641419189809</created>
827
- <option name="number" value="00944" />
828
- <option name="presentableId" value="LOCAL-00944" />
829
- <option name="project" value="LOCAL" />
830
- <updated>1641419189809</updated>
831
- </task>
832
- <task id="LOCAL-00945" summary="Fixed docs">
833
- <created>1641419334419</created>
834
- <option name="number" value="00945" />
835
- <option name="presentableId" value="LOCAL-00945" />
836
- <option name="project" value="LOCAL" />
837
- <updated>1641419334419</updated>
838
- </task>
839
- <task id="LOCAL-00946" summary="Added `monospace` button in format list">
840
- <created>1641421305714</created>
841
- <option name="number" value="00946" />
842
- <option name="presentableId" value="LOCAL-00946" />
843
- <option name="project" value="LOCAL" />
844
- <updated>1641421305714</updated>
845
- </task>
846
- <task id="LOCAL-00947" summary="Added `monospace` button in format list&#10;Issue: https://github.com/xdan/jodit/issues/767">
847
- <created>1641421425353</created>
848
- <option name="number" value="00947" />
849
- <option name="presentableId" value="LOCAL-00947" />
850
- <option name="project" value="LOCAL" />
851
- <updated>1641421425353</updated>
852
- </task>
853
- <task id="LOCAL-00948" summary="Fixed docs">
854
- <created>1641421576437</created>
855
- <option name="number" value="00948" />
856
- <option name="presentableId" value="LOCAL-00948" />
857
- <option name="project" value="LOCAL" />
858
- <updated>1641421576437</updated>
859
- </task>
860
- <task id="LOCAL-00949" summary="Fixed docs">
861
- <created>1641421630129</created>
862
- <option name="number" value="00949" />
863
- <option name="presentableId" value="LOCAL-00949" />
864
- <option name="project" value="LOCAL" />
865
- <updated>1641421630129</updated>
866
- </task>
867
- <task id="LOCAL-00950" summary="Fixed docs">
868
- <created>1641421665395</created>
869
- <option name="number" value="00950" />
870
- <option name="presentableId" value="LOCAL-00950" />
871
- <option name="project" value="LOCAL" />
872
- <updated>1641421665395</updated>
873
- </task>
874
- <task id="LOCAL-00951" summary="Fixed docs">
875
- <created>1641421937348</created>
876
- <option name="number" value="00951" />
877
- <option name="presentableId" value="LOCAL-00951" />
878
- <option name="project" value="LOCAL" />
879
- <updated>1641421937348</updated>
880
- </task>
881
- <task id="LOCAL-00952" summary="Remove link to CHANGELOG">
882
- <created>1641422739448</created>
883
- <option name="number" value="00952" />
884
- <option name="presentableId" value="LOCAL-00952" />
885
- <option name="project" value="LOCAL" />
886
- <updated>1641422739448</updated>
887
- </task>
888
- <task id="LOCAL-00953" summary="Remove link to CHANGELOG">
889
- <created>1641422750986</created>
890
- <option name="number" value="00953" />
891
- <option name="presentableId" value="LOCAL-00953" />
892
- <option name="project" value="LOCAL" />
893
- <updated>1641422750986</updated>
894
- </task>
895
- <task id="LOCAL-00954" summary="Added `memorizeChoiceWhenPasteFragment` option">
896
- <created>1641423902845</created>
897
- <option name="number" value="00954" />
898
- <option name="presentableId" value="LOCAL-00954" />
899
- <option name="project" value="LOCAL" />
900
- <updated>1641423902845</updated>
901
- </task>
902
- <task id="LOCAL-00955" summary="Added TODO">
903
- <created>1641424436169</created>
904
- <option name="number" value="00955" />
905
- <option name="presentableId" value="LOCAL-00955" />
906
- <option name="project" value="LOCAL" />
907
- <updated>1641424436169</updated>
908
- </task>
909
- <task id="LOCAL-00956" summary="Added test for memorizeChoiceWhenPasteFragment">
910
- <created>1641424922890</created>
911
- <option name="number" value="00956" />
912
- <option name="presentableId" value="LOCAL-00956" />
913
- <option name="project" value="LOCAL" />
914
- <updated>1641424922890</updated>
915
- </task>
916
- <task id="LOCAL-00957" summary="Removed relative paths">
917
- <created>1642613293435</created>
918
- <option name="number" value="00957" />
919
- <option name="presentableId" value="LOCAL-00957" />
920
- <option name="project" value="LOCAL" />
921
- <updated>1642613293435</updated>
922
- </task>
923
- <task id="LOCAL-00958" summary="Fixed work in ie11">
924
- <created>1642622772111</created>
925
- <option name="number" value="00958" />
926
- <option name="presentableId" value="LOCAL-00958" />
927
- <option name="project" value="LOCAL" />
928
- <updated>1642622772112</updated>
929
- </task>
930
- <task id="LOCAL-00959" summary="Added new option `safeMode`">
931
- <created>1642622827092</created>
932
- <option name="number" value="00959" />
933
- <option name="presentableId" value="LOCAL-00959" />
934
- <option name="project" value="LOCAL" />
935
- <updated>1642622827092</updated>
936
- </task>
937
- <task id="LOCAL-00960" summary="Replace relative paths to absolute">
938
- <created>1642622860722</created>
939
- <option name="number" value="00960" />
940
- <option name="presentableId" value="LOCAL-00960" />
941
- <option name="project" value="LOCAL" />
942
- <updated>1642622860722</updated>
943
- </task>
944
- <task id="LOCAL-00961" summary="Replace relative paths to absolute">
945
- <created>1642623434481</created>
946
- <option name="number" value="00961" />
947
- <option name="presentableId" value="LOCAL-00961" />
948
- <option name="project" value="LOCAL" />
949
- <updated>1642623434481</updated>
950
- </task>
951
- <task id="LOCAL-00962" summary="Fixed docs">
952
- <created>1642623552327</created>
953
- <option name="number" value="00962" />
954
- <option name="presentableId" value="LOCAL-00962" />
955
- <option name="project" value="LOCAL" />
956
- <updated>1642623552327</updated>
801
+ <workItem from="1644263504303" duration="5576000" />
802
+ <workItem from="1644318416285" duration="913000" />
803
+ <workItem from="1644336450297" duration="2977000" />
804
+ <workItem from="1644339831078" duration="1001000" />
805
+ <workItem from="1644341270394" duration="1986000" />
806
+ <workItem from="1644343754362" duration="440000" />
807
+ <workItem from="1644344235711" duration="1061000" />
808
+ <workItem from="1644346088967" duration="2704000" />
809
+ <workItem from="1644419244508" duration="1738000" />
810
+ <workItem from="1644501269774" duration="1377000" />
811
+ <workItem from="1644503408597" duration="803000" />
812
+ <workItem from="1644504393226" duration="345000" />
813
+ <workItem from="1644515490368" duration="9092000" />
814
+ <workItem from="1644602509467" duration="4497000" />
815
+ <workItem from="1644858159038" duration="6767000" />
816
+ <workItem from="1644932078155" duration="520000" />
817
+ <workItem from="1645023853640" duration="10110000" />
957
818
  </task>
958
819
  <task id="LOCAL-00963" summary="Fixed docs">
959
820
  <created>1642623652340</created>
@@ -1144,7 +1005,161 @@
1144
1005
  <option name="project" value="LOCAL" />
1145
1006
  <updated>1644265470862</updated>
1146
1007
  </task>
1147
- <option name="localTasksCounter" value="990" />
1008
+ <task id="LOCAL-00990" summary="Fixed Not maintaining styles set when switching format blocks #773&#10;Issue: https://github.com/xdan/jodit/issues/773">
1009
+ <created>1644266525443</created>
1010
+ <option name="number" value="00990" />
1011
+ <option name="presentableId" value="LOCAL-00990" />
1012
+ <option name="project" value="LOCAL" />
1013
+ <updated>1644266525443</updated>
1014
+ </task>
1015
+ <task id="LOCAL-00991" summary="New line-height plugin">
1016
+ <created>1644520354801</created>
1017
+ <option name="number" value="00991" />
1018
+ <option name="presentableId" value="LOCAL-00991" />
1019
+ <option name="project" value="LOCAL" />
1020
+ <updated>1644520354801</updated>
1021
+ </task>
1022
+ <task id="LOCAL-00992" summary="Fixed Previewing data not showing table content #780&#10;Issue: https://github.com/xdan/jodit/issues/780">
1023
+ <created>1644520474705</created>
1024
+ <option name="number" value="00992" />
1025
+ <option name="presentableId" value="LOCAL-00992" />
1026
+ <option name="project" value="LOCAL" />
1027
+ <updated>1644520474705</updated>
1028
+ </task>
1029
+ <task id="LOCAL-00993" summary="Refactoring uploader module">
1030
+ <created>1644520512387</created>
1031
+ <option name="number" value="00993" />
1032
+ <option name="presentableId" value="LOCAL-00993" />
1033
+ <option name="project" value="LOCAL" />
1034
+ <updated>1644520512387</updated>
1035
+ </task>
1036
+ <task id="LOCAL-00994" summary="Restore translate utils">
1037
+ <created>1644521368525</created>
1038
+ <option name="number" value="00994" />
1039
+ <option name="presentableId" value="LOCAL-00994" />
1040
+ <option name="project" value="LOCAL" />
1041
+ <updated>1644521368525</updated>
1042
+ </task>
1043
+ <task id="LOCAL-00995" summary="Restore translate utils">
1044
+ <created>1644521383938</created>
1045
+ <option name="number" value="00995" />
1046
+ <option name="presentableId" value="LOCAL-00995" />
1047
+ <option name="project" value="LOCAL" />
1048
+ <updated>1644521383938</updated>
1049
+ </task>
1050
+ <task id="LOCAL-00996" summary="Restore translate utils">
1051
+ <created>1644521549466</created>
1052
+ <option name="number" value="00996" />
1053
+ <option name="presentableId" value="LOCAL-00996" />
1054
+ <option name="project" value="LOCAL" />
1055
+ <updated>1644521549466</updated>
1056
+ </task>
1057
+ <task id="LOCAL-00997" summary="Restore translate utils">
1058
+ <created>1644521693868</created>
1059
+ <option name="number" value="00997" />
1060
+ <option name="presentableId" value="LOCAL-00997" />
1061
+ <option name="project" value="LOCAL" />
1062
+ <updated>1644521693868</updated>
1063
+ </task>
1064
+ <task id="LOCAL-00998" summary="Added new translation">
1065
+ <created>1644521801804</created>
1066
+ <option name="number" value="00998" />
1067
+ <option name="presentableId" value="LOCAL-00998" />
1068
+ <option name="project" value="LOCAL" />
1069
+ <updated>1644521801804</updated>
1070
+ </task>
1071
+ <task id="LOCAL-00999" summary="Fix doc">
1072
+ <created>1644522617662</created>
1073
+ <option name="number" value="00999" />
1074
+ <option name="presentableId" value="LOCAL-00999" />
1075
+ <option name="project" value="LOCAL" />
1076
+ <updated>1644522617662</updated>
1077
+ </task>
1078
+ <task id="LOCAL-01000" summary="Fix doc">
1079
+ <created>1644523726279</created>
1080
+ <option name="number" value="01000" />
1081
+ <option name="presentableId" value="LOCAL-01000" />
1082
+ <option name="project" value="LOCAL" />
1083
+ <updated>1644523726279</updated>
1084
+ </task>
1085
+ <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">
1086
+ <created>1644603490870</created>
1087
+ <option name="number" value="01001" />
1088
+ <option name="presentableId" value="LOCAL-01001" />
1089
+ <option name="project" value="LOCAL" />
1090
+ <updated>1644603490870</updated>
1091
+ </task>
1092
+ <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">
1093
+ <created>1644605909082</created>
1094
+ <option name="number" value="01002" />
1095
+ <option name="presentableId" value="LOCAL-01002" />
1096
+ <option name="project" value="LOCAL" />
1097
+ <updated>1644605909082</updated>
1098
+ </task>
1099
+ <task id="LOCAL-01003" summary="Changed the positions of some buttons on different resolutions for greater density">
1100
+ <created>1645032836769</created>
1101
+ <option name="number" value="01003" />
1102
+ <option name="presentableId" value="LOCAL-01003" />
1103
+ <option name="project" value="LOCAL" />
1104
+ <updated>1645032836769</updated>
1105
+ </task>
1106
+ <task id="LOCAL-01004" summary="Fixed Cannot format table cells in PRO version #786&#10;Issue: https://github.com/xdan/jodit/issues/786">
1107
+ <created>1645033027807</created>
1108
+ <option name="number" value="01004" />
1109
+ <option name="presentableId" value="LOCAL-01004" />
1110
+ <option name="project" value="LOCAL" />
1111
+ <updated>1645033027807</updated>
1112
+ </task>
1113
+ <task id="LOCAL-01005" summary="Changed the positions of some buttons on different resolutions for greater density">
1114
+ <created>1645033103795</created>
1115
+ <option name="number" value="01005" />
1116
+ <option name="presentableId" value="LOCAL-01005" />
1117
+ <option name="project" value="LOCAL" />
1118
+ <updated>1645033103795</updated>
1119
+ </task>
1120
+ <task id="LOCAL-01006" summary="Fixed Build error: Property or signature expected. #174&#10;Issue: https://github.com/jodit/jodit-react/issues/174">
1121
+ <created>1645033205894</created>
1122
+ <option name="number" value="01006" />
1123
+ <option name="presentableId" value="LOCAL-01006" />
1124
+ <option name="project" value="LOCAL" />
1125
+ <updated>1645033205894</updated>
1126
+ </task>
1127
+ <task id="LOCAL-01007" summary="Small refactoring">
1128
+ <created>1645033281065</created>
1129
+ <option name="number" value="01007" />
1130
+ <option name="presentableId" value="LOCAL-01007" />
1131
+ <option name="project" value="LOCAL" />
1132
+ <updated>1645033281065</updated>
1133
+ </task>
1134
+ <task id="LOCAL-01008" summary="Small refactoring">
1135
+ <created>1645033750473</created>
1136
+ <option name="number" value="01008" />
1137
+ <option name="presentableId" value="LOCAL-01008" />
1138
+ <option name="project" value="LOCAL" />
1139
+ <updated>1645033750473</updated>
1140
+ </task>
1141
+ <task id="LOCAL-01009" summary="Disabled the ability to drag and drop elements on mobile devices as it affected page scrollability">
1142
+ <created>1645033762568</created>
1143
+ <option name="number" value="01009" />
1144
+ <option name="presentableId" value="LOCAL-01009" />
1145
+ <option name="project" value="LOCAL" />
1146
+ <updated>1645033762568</updated>
1147
+ </task>
1148
+ <task id="LOCAL-01010" summary="Disabled the ability to drag and drop elements on mobile devices as it affected page scrollability">
1149
+ <created>1645033768928</created>
1150
+ <option name="number" value="01010" />
1151
+ <option name="presentableId" value="LOCAL-01010" />
1152
+ <option name="project" value="LOCAL" />
1153
+ <updated>1645033768928</updated>
1154
+ </task>
1155
+ <task id="LOCAL-01011" summary="Disabled the ability to drag and drop elements on mobile devices as it affected page scrollability">
1156
+ <created>1645033940343</created>
1157
+ <option name="number" value="01011" />
1158
+ <option name="presentableId" value="LOCAL-01011" />
1159
+ <option name="project" value="LOCAL" />
1160
+ <updated>1645033940343</updated>
1161
+ </task>
1162
+ <option name="localTasksCounter" value="1012" />
1148
1163
  <servers />
1149
1164
  </component>
1150
1165
  <component name="TypeScriptGeneratedFilesManager">
@@ -1284,18 +1299,6 @@
1284
1299
  </component>
1285
1300
  <component name="VcsManagerConfiguration">
1286
1301
  <option name="CHECK_CODE_SMELLS_BEFORE_PROJECT_COMMIT" value="false" />
1287
- <MESSAGE value="Added `memorizeChoiceWhenPasteFragment` option" />
1288
- <MESSAGE value="Added TODO" />
1289
- <MESSAGE value="Added test for memorizeChoiceWhenPasteFragment" />
1290
- <MESSAGE value="Fixed work in ie11" />
1291
- <MESSAGE value="Added new option `safeMode`" />
1292
- <MESSAGE value="Removed relative paths" />
1293
- <MESSAGE value="Replace relative paths to absolute" />
1294
- <MESSAGE value="Fixed docs" />
1295
- <MESSAGE value="Added new alias in webpack" />
1296
- <MESSAGE value="Added documentation for the lang module" />
1297
- <MESSAGE value="Merge branch 'master' of github.com:xdan/jodit&#10;&#10;# Conflicts:&#10;#&#9;package-lock.json" />
1298
- <MESSAGE value="Change getElm signature" />
1299
1302
  <MESSAGE value="Added documentation for icons system" />
1300
1303
  <MESSAGE value="Change doc" />
1301
1304
  <MESSAGE value="Change observable system" />
@@ -1304,21 +1307,28 @@
1304
1307
  <MESSAGE value="Fixed type definition" />
1305
1308
  <MESSAGE value="Small ref" />
1306
1309
  <MESSAGE value="CVE-2021-23382" />
1307
- <MESSAGE value="Small refactoring" />
1308
1310
  <MESSAGE value="Added tab plugin" />
1309
1311
  <MESSAGE value="Added static `Jodit.isJoditAssigned` method&#10;Issue: https://github.com/xdan/jodit/issues/778" />
1310
1312
  <MESSAGE value="- Fixed a bug when switching between source and wysiwyg mode, the FORM tag was wrapped in P" />
1311
1313
  <MESSAGE value="Added test for issue: Not maintaining styles set when switching format blocks #773&#10;Issue: https://github.com/xdan/jodit/issues/773" />
1312
- <option name="LAST_COMMIT_MESSAGE" value="Added test for issue: Not maintaining styles set when switching format blocks #773&#10;Issue: https://github.com/xdan/jodit/issues/773" />
1314
+ <MESSAGE value="Fixed Not maintaining styles set when switching format blocks #773&#10;Issue: https://github.com/xdan/jodit/issues/773" />
1315
+ <MESSAGE value="New line-height plugin" />
1316
+ <MESSAGE value="Fixed Previewing data not showing table content #780&#10;Issue: https://github.com/xdan/jodit/issues/780" />
1317
+ <MESSAGE value="Refactoring uploader module" />
1318
+ <MESSAGE value="Restore translate utils" />
1319
+ <MESSAGE value="Added new translation" />
1320
+ <MESSAGE value="Fix doc" />
1321
+ <MESSAGE value="Fixed Unable to drag and drop image between table cells #782&#10;Issue: https://github.com/xdan/jodit/issues/782" />
1322
+ <MESSAGE value="Fixed Cannot format table cells in PRO version #786&#10;Issue: https://github.com/xdan/jodit/issues/786" />
1323
+ <MESSAGE value="Changed the positions of some buttons on different resolutions for greater density" />
1324
+ <MESSAGE value="Fixed Build error: Property or signature expected. #174&#10;Issue: https://github.com/jodit/jodit-react/issues/174" />
1325
+ <MESSAGE value="Small refactoring" />
1326
+ <MESSAGE value="Disabled the ability to drag and drop elements on mobile devices as it affected page scrollability" />
1327
+ <option name="LAST_COMMIT_MESSAGE" value="Disabled the ability to drag and drop elements on mobile devices as it affected page scrollability" />
1313
1328
  </component>
1314
1329
  <component name="XDebuggerManager">
1315
1330
  <breakpoint-manager>
1316
1331
  <breakpoints>
1317
- <line-breakpoint enabled="true" type="javascript">
1318
- <url>file://$PROJECT_DIR$/src/types/uploader.d.ts</url>
1319
- <line>14</line>
1320
- <option name="timeStamp" value="9" />
1321
- </line-breakpoint>
1322
1332
  <line-breakpoint enabled="true" type="javascript">
1323
1333
  <url>file://$PROJECT_DIR$/test/tests/acceptance/plugins/size.js</url>
1324
1334
  <line>305</line>
package/CHANGELOG.MD CHANGED
@@ -9,6 +9,37 @@
9
9
  > - :house: [Internal]
10
10
  > - :nail_care: [Polish]
11
11
 
12
+ ## 3.14.1
13
+
14
+ #### :house: Internal
15
+
16
+ - [(change) improved a few german translations #783](https://github.com/xdan/jodit/pull/783)
17
+
18
+ #### :boom: Breaking Change
19
+
20
+ - Changed the positions of some buttons on different resolutions for greater density
21
+ - Disabled the ability to drag and drop elements on mobile devices as it affected page scrollability
22
+
23
+ #### :bug: Bug Fix
24
+
25
+ - [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)
26
+
27
+ ## 3.13.5
28
+
29
+ #### :bug: Bug Fix
30
+
31
+ - [Unable to drag and drop image between table cells #782](https://github.com/xdan/jodit/issues/782)
32
+
33
+ ## 3.13.4
34
+
35
+ #### :rocket: New Feature
36
+
37
+ - Plugin for setting line spacing
38
+
39
+ #### :bug: Bug Fix
40
+
41
+ - [Previewing data not showing table content #780](https://github.com/xdan/jodit/issues/780)
42
+
12
43
  ## 3.13.2
13
44
 
14
45
  #### :rocket: New Feature
@@ -28,8 +59,8 @@ console.log(Jodit.isJoditAssigned(area)); // false
28
59
 
29
60
  #### :bug: Bug Fix
30
61
 
31
- - Fixed a bug when switching between source and wysiwyg mode, the FORM tag was wrapped in P
32
- - [Not maintaining styles set when switching format blocks #773](https://github.com/xdan/jodit/issues/773)
62
+ - Fixed a bug when switching between source and wysiwyg mode, the FORM tag was wrapped in P
63
+ - [Not maintaining styles set when switching format blocks #773](https://github.com/xdan/jodit/issues/773)
33
64
 
34
65
  ## 3.13.1
35
66
 
@@ -1058,11 +1089,11 @@ Related with https://github.com/xdan/jodit/issues/574. In some cases need to lim
1058
1089
  - @property {IUIOption[]} link.selectOptionsClassName=[] The list of the option for the select (to use with
1059
1090
  modeClassName="select")
1060
1091
  - ex: [
1061
- - { value: "", text: "" },
1062
- - { value: "val1", text: "text1" },
1063
- - { value: "val2", text: "text2" },
1064
- - { value: "val3", text: "text3" }
1065
- - ]
1092
+ - { value: "", text: "" },
1093
+ - { value: "val1", text: "text1" },
1094
+ - { value: "val2", text: "text2" },
1095
+ - { value: "val3", text: "text3" }
1096
+ - ]
1066
1097
  PR: https://github.com/xdan/jodit/pull/577 Thanks @s-renier-taonix-fr
1067
1098
 
1068
1099
  ##### 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