jodit 3.15.3 → 3.16.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 (212) hide show
  1. package/.idea/workspace.xml +279 -260
  2. package/CHANGELOG.MD +37 -7
  3. package/CONTRIBUTING.md +97 -0
  4. package/README.md +1 -1
  5. package/build/jodit.css +38 -32
  6. package/build/jodit.es2018.css +37 -31
  7. package/build/jodit.es2018.en.css +37 -31
  8. package/build/jodit.es2018.en.js +1856 -1308
  9. package/build/jodit.es2018.en.min.css +1 -1
  10. package/build/jodit.es2018.en.min.js +1 -1
  11. package/build/jodit.es2018.js +1928 -1362
  12. package/build/jodit.es2018.min.css +1 -1
  13. package/build/jodit.es2018.min.js +1 -1
  14. package/build/jodit.js +3336 -2526
  15. package/build/jodit.min.css +2 -2
  16. package/build/jodit.min.js +1 -1
  17. package/build/vdom.css +1 -1
  18. package/build/vdom.js +32 -20
  19. package/package.json +13 -13
  20. package/src/config.ts +0 -6
  21. package/src/core/async/async.ts +44 -22
  22. package/src/core/decorators/README.md +35 -0
  23. package/src/core/decorators/cache/cache.ts +1 -1
  24. package/src/core/decorators/idle/README.md +14 -0
  25. package/src/core/decorators/idle/idle.ts +1 -1
  26. package/src/core/decorators/watch/watch.ts +8 -7
  27. package/src/core/dom/README.md +42 -0
  28. package/src/core/dom/dom.ts +37 -23
  29. package/src/core/dom/index.ts +1 -0
  30. package/src/core/dom/lazy-walker.ts +133 -0
  31. package/src/core/event-emitter/event-emitter.ts +8 -8
  32. package/src/core/event-emitter/eventify.ts +73 -0
  33. package/src/core/event-emitter/index.ts +1 -0
  34. package/src/core/helpers/html/apply-styles.ts +1 -1
  35. package/src/core/helpers/html/strip-tags.ts +3 -2
  36. package/src/core/helpers/string/fuzzy-search-index.ts +58 -0
  37. package/src/core/helpers/string/index.ts +3 -2
  38. package/src/core/helpers/utils/append-script.ts +1 -1
  39. package/src/core/helpers/utils/css.ts +1 -1
  40. package/src/core/helpers/utils/selector.ts +1 -1
  41. package/src/core/helpers/utils/utils.ts +3 -3
  42. package/src/core/plugin/plugin-system.ts +14 -8
  43. package/src/core/request/ajax.ts +3 -3
  44. package/src/core/selection/select.ts +8 -8
  45. package/src/core/selection/style/api/toggle/toggle-css.ts +5 -2
  46. package/src/core/selection/style/api/wrap-unwrapped-text.ts +1 -1
  47. package/src/core/selection/style/apply-style.ts +4 -4
  48. package/src/core/storage/engines/local-storage-provider.ts +20 -19
  49. package/src/core/ui/element.ts +2 -2
  50. package/src/core/ui/form/inputs/input/input.ts +1 -1
  51. package/src/core/ui/form/inputs/select/select.ts +1 -1
  52. package/src/core/ui/group/list.ts +2 -2
  53. package/src/core/vdom/render/index.ts +12 -8
  54. package/src/core/vdom/v-dom-jodit.ts +1 -1
  55. package/src/index.ts +3 -3
  56. package/src/jodit.ts +38 -32
  57. package/src/langs/ar.js +2 -1
  58. package/src/langs/cs_cz.js +2 -1
  59. package/src/langs/de.js +2 -1
  60. package/src/langs/es.js +2 -1
  61. package/src/langs/fa.js +2 -1
  62. package/src/langs/fr.js +2 -1
  63. package/src/langs/he.js +2 -1
  64. package/src/langs/hu.js +2 -1
  65. package/src/langs/id.js +2 -1
  66. package/src/langs/index.ts +1 -1
  67. package/src/langs/it.js +2 -1
  68. package/src/langs/ja.js +2 -1
  69. package/src/langs/ko.js +2 -1
  70. package/src/langs/nl.js +2 -1
  71. package/src/langs/pl.js +2 -1
  72. package/src/langs/pt_br.js +2 -1
  73. package/src/langs/ru.js +2 -1
  74. package/src/langs/tr.js +2 -1
  75. package/src/langs/zh_cn.js +2 -1
  76. package/src/langs/zh_tw.js +2 -1
  77. package/src/modules/dialog/dialog.ts +6 -6
  78. package/src/modules/dialog/prompt.ts +1 -1
  79. package/src/modules/file-browser/builders/context-menu.ts +12 -13
  80. package/src/modules/file-browser/fetch/load-tree.ts +1 -1
  81. package/src/modules/file-browser/file-browser.ts +10 -7
  82. package/src/modules/history/history.ts +40 -35
  83. package/src/modules/history/snapshot.ts +1 -1
  84. package/src/modules/history/stack.ts +1 -1
  85. package/src/modules/image-editor/image-editor.ts +7 -7
  86. package/src/modules/image-editor/templates/form.ts +2 -2
  87. package/src/modules/index.ts +1 -1
  88. package/src/modules/table/table.ts +2 -2
  89. package/src/modules/toolbar/collection/collection.ts +1 -1
  90. package/src/modules/uploader/helpers/process-old-browser-drag.ts +1 -1
  91. package/src/modules/uploader/helpers/send-files.ts +1 -1
  92. package/src/modules/uploader/helpers/send.ts +1 -1
  93. package/src/modules/uploader/uploader.ts +3 -3
  94. package/src/modules/widget/color-picker/color-picker.ts +1 -1
  95. package/src/plugins/add-new-line/add-new-line.ts +8 -8
  96. package/src/plugins/clipboard/copy-format.ts +1 -1
  97. package/src/plugins/clipboard/drag-and-drop-element.ts +4 -2
  98. package/src/plugins/clipboard/paste/config.ts +19 -3
  99. package/src/plugins/clipboard/paste/helpers.ts +17 -50
  100. package/src/plugins/clipboard/paste/paste.ts +1 -1
  101. package/src/plugins/clipboard/paste-from-word/config.ts +17 -0
  102. package/src/plugins/clipboard/paste-from-word/paste-from-word.ts +4 -2
  103. package/src/plugins/clipboard/paste-storage/paste-storage.ts +6 -6
  104. package/src/plugins/color/color.ts +2 -2
  105. package/src/plugins/error-messages/error-messages.ts +1 -1
  106. package/src/plugins/fix/clean-html/README.md +26 -0
  107. package/src/plugins/fix/{clean-html.ts → clean-html/clean-html.ts} +59 -142
  108. package/src/plugins/fix/clean-html/config.ts +106 -0
  109. package/src/plugins/fix/index.ts +12 -0
  110. package/src/plugins/fix/wrap-nodes/README.md +27 -0
  111. package/src/plugins/fix/wrap-nodes/config.ts +24 -0
  112. package/src/plugins/fix/{wrap-text-nodes.ts → wrap-nodes/wrap-nodes.ts} +9 -4
  113. package/src/plugins/focus/focus.ts +1 -1
  114. package/src/plugins/format-block/format-block.ts +1 -1
  115. package/src/plugins/fullsize/fullsize.ts +2 -2
  116. package/src/plugins/iframe/iframe.ts +3 -3
  117. package/src/plugins/image/image-properties/image-properties.ts +12 -13
  118. package/src/plugins/indent/indent.ts +1 -1
  119. package/src/plugins/index.ts +2 -2
  120. package/src/plugins/inline-popup/config/items/a.ts +1 -1
  121. package/src/plugins/inline-popup/config/items/cells.ts +7 -7
  122. package/src/plugins/inline-popup/config/items/iframe.ts +1 -1
  123. package/src/plugins/inline-popup/config/items/img.ts +3 -3
  124. package/src/plugins/inline-popup/inline-popup.ts +5 -5
  125. package/src/plugins/keyboard/backspace/backspace.ts +1 -1
  126. package/src/plugins/keyboard/backspace/cases/check-join-neighbors.ts +1 -1
  127. package/src/plugins/keyboard/helpers.ts +1 -1
  128. package/src/plugins/limit/limit.ts +1 -1
  129. package/src/plugins/line-height/line-height.ts +1 -1
  130. package/src/plugins/link/link.ts +5 -5
  131. package/src/plugins/link/template.ts +2 -2
  132. package/src/plugins/media/file.ts +1 -1
  133. package/src/plugins/media/media.ts +1 -1
  134. package/src/plugins/media/video/config.ts +1 -1
  135. package/src/plugins/mobile/config.ts +1 -1
  136. package/src/plugins/mobile/mobile.ts +1 -1
  137. package/src/plugins/ordered-list/config.ts +61 -0
  138. package/src/plugins/ordered-list/ordered-list.ts +3 -153
  139. package/src/plugins/placeholder/placeholder.ts +3 -3
  140. package/src/plugins/print/helpers.ts +14 -7
  141. package/src/plugins/print/index.ts +1 -1
  142. package/src/plugins/print/{preview.less → preview/preview.less} +1 -1
  143. package/src/plugins/print/{preview.ts → preview/preview.ts} +9 -8
  144. package/src/plugins/print/print.ts +19 -10
  145. package/src/plugins/resizer/resizer.ts +11 -11
  146. package/src/plugins/search/README.md +38 -0
  147. package/src/plugins/search/config.ts +82 -0
  148. package/src/plugins/search/helpers/index.ts +12 -0
  149. package/src/plugins/search/helpers/sentence-finder.ts +103 -0
  150. package/src/plugins/search/helpers/wrap-ranges-texts-in-tmp-span.ts +120 -0
  151. package/src/plugins/search/search.ts +267 -613
  152. package/src/plugins/search/ui/search.less +159 -0
  153. package/src/plugins/search/ui/search.ts +256 -0
  154. package/src/plugins/select/select.ts +1 -1
  155. package/src/plugins/size/resize-handler.ts +3 -3
  156. package/src/plugins/size/size.ts +4 -4
  157. package/src/plugins/source/editor/engines/ace.ts +6 -6
  158. package/src/plugins/source/source.ts +6 -6
  159. package/src/plugins/spellcheck/README.md +1 -0
  160. package/src/plugins/spellcheck/config.ts +34 -0
  161. package/src/plugins/spellcheck/spellcheck.svg +4 -0
  162. package/src/plugins/spellcheck/spellcheck.ts +48 -0
  163. package/src/plugins/sticky/sticky.ts +1 -1
  164. package/src/plugins/table/resize-cells.ts +11 -11
  165. package/src/plugins/table/select-cells.ts +2 -2
  166. package/src/plugins/tooltip/tooltip.ts +1 -1
  167. package/src/plugins/xpath/xpath.ts +8 -8
  168. package/src/polyfills.ts +5 -4
  169. package/src/types/async.d.ts +12 -2
  170. package/src/types/events.d.ts +2 -2
  171. package/src/types/jodit.d.ts +1 -0
  172. package/src/types/types.d.ts +11 -4
  173. package/types/config.d.ts +0 -5
  174. package/types/core/async/async.d.ts +9 -2
  175. package/types/core/dom/dom.d.ts +3 -5
  176. package/types/core/dom/index.d.ts +1 -0
  177. package/types/core/dom/lazy-walker.d.ts +37 -0
  178. package/types/core/event-emitter/eventify.d.ts +39 -0
  179. package/types/core/event-emitter/index.d.ts +1 -0
  180. package/types/core/helpers/string/fuzzy-search-index.d.ts +10 -0
  181. package/types/core/helpers/string/index.d.ts +3 -2
  182. package/types/core/helpers/utils/utils.d.ts +1 -1
  183. package/types/jodit.d.ts +7 -0
  184. package/types/modules/history/history.d.ts +1 -0
  185. package/types/modules/index.d.ts +1 -1
  186. package/types/plugins/clipboard/paste/config.d.ts +8 -0
  187. package/types/plugins/clipboard/paste/helpers.d.ts +2 -2
  188. package/types/plugins/clipboard/paste-from-word/config.d.ts +5 -0
  189. package/types/plugins/fix/clean-html/clean-html.d.ts +70 -0
  190. package/types/plugins/fix/{clean-html.d.ts → clean-html/config.d.ts} +2 -57
  191. package/types/plugins/fix/index.d.ts +10 -0
  192. package/types/plugins/fix/wrap-nodes/config.d.ts +16 -0
  193. package/types/plugins/fix/{wrap-text-nodes.d.ts → wrap-nodes/wrap-nodes.d.ts} +5 -2
  194. package/types/plugins/index.d.ts +2 -2
  195. package/types/plugins/ordered-list/config.d.ts +6 -0
  196. package/types/plugins/ordered-list/ordered-list.d.ts +1 -1
  197. package/types/plugins/print/helpers.d.ts +2 -2
  198. package/types/plugins/print/index.d.ts +1 -1
  199. package/types/plugins/print/{preview.d.ts → preview/preview.d.ts} +1 -1
  200. package/types/plugins/search/config.d.ts +36 -0
  201. package/types/plugins/search/helpers/index.d.ts +10 -0
  202. package/types/plugins/search/helpers/sentence-finder.d.ts +21 -0
  203. package/types/plugins/search/helpers/wrap-ranges-texts-in-tmp-span.d.ts +14 -0
  204. package/types/plugins/search/search.d.ts +23 -37
  205. package/types/plugins/search/ui/search.d.ts +37 -0
  206. package/types/plugins/spellcheck/config.d.ts +15 -0
  207. package/types/plugins/spellcheck/spellcheck.d.ts +19 -0
  208. package/types/types/async.d.ts +12 -2
  209. package/types/types/events.d.ts +2 -2
  210. package/types/types/jodit.d.ts +1 -0
  211. package/types/types/types.d.ts +11 -4
  212. package/src/plugins/search/search.less +0 -152
@@ -11,7 +11,11 @@
11
11
  <select />
12
12
  </component>
13
13
  <component name="ChangeListManager">
14
- <list default="true" id="5da7ff7f-03a8-49de-9fbb-8f8640d83b83" name="Default Changelist" comment="" />
14
+ <list default="true" id="5da7ff7f-03a8-49de-9fbb-8f8640d83b83" name="Default Changelist" comment="">
15
+ <change beforePath="$PROJECT_DIR$/build/jodit.js" beforeDir="false" afterPath="$PROJECT_DIR$/build/jodit.js" afterDir="false" />
16
+ <change beforePath="$PROJECT_DIR$/src/plugins/clipboard/paste/helpers.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/plugins/clipboard/paste/helpers.ts" afterDir="false" />
17
+ <change beforePath="$PROJECT_DIR$/test/tests/acceptance/clipboardTest.js" beforeDir="false" afterPath="$PROJECT_DIR$/test/tests/acceptance/clipboardTest.js" afterDir="false" />
18
+ </list>
15
19
  <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" />
16
20
  <option name="SHOW_DIALOG" value="false" />
17
21
  <option name="HIGHLIGHT_CONFLICTS" value="true" />
@@ -93,7 +97,7 @@
93
97
  <property name="js.linters.configure.manually.selectedeslint" value="true" />
94
98
  <property name="jsx.switch.disabled" value="true" />
95
99
  <property name="last.edited.regexp" value="Sample Text" />
96
- <property name="last_opened_file_path" value="$PROJECT_DIR$/src/styles/icons" />
100
+ <property name="last_opened_file_path" value="$PROJECT_DIR$/src/plugins/spellcheck" />
97
101
  <property name="node.js.detected.package.eslint" value="true" />
98
102
  <property name="node.js.detected.package.jscs" value="true" />
99
103
  <property name="node.js.detected.package.standard" value="true" />
@@ -126,18 +130,18 @@
126
130
  </component>
127
131
  <component name="RecentsManager">
128
132
  <key name="CopyFile.RECENT_KEYS">
133
+ <recent name="$PROJECT_DIR$/src/plugins/spellcheck" />
134
+ <recent name="$PROJECT_DIR$/src/plugins/fix/clean-html" />
129
135
  <recent name="$PROJECT_DIR$/src/styles/icons" />
130
136
  <recent name="$PROJECT_DIR$/.github/workflows" />
131
137
  <recent name="$PROJECT_DIR$/src/modules/widget/tabs" />
132
- <recent name="$PROJECT_DIR$/src/modules/widget/file-selector" />
133
- <recent name="$PROJECT_DIR$/src/modules/widget/color-picker" />
134
138
  </key>
135
139
  <key name="MoveFile.RECENT_KEYS">
136
- <recent name="$PROJECT_DIR$/src/plugins/clipboard/paste-from-word.ts" />
137
- <recent name="$PROJECT_DIR$/src/plugins/clipboard" />
138
- <recent name="$PROJECT_DIR$/src/core/vdom/helpers" />
139
- <recent name="$PROJECT_DIR$/src/plugins/keyboard/tab" />
140
- <recent name="$PROJECT_DIR$/src/core/helpers/utils" />
140
+ <recent name="$PROJECT_DIR$/src/plugins/print/preview" />
141
+ <recent name="$PROJECT_DIR$/src/plugins/search/ui" />
142
+ <recent name="$PROJECT_DIR$/src/core/dom" />
143
+ <recent name="$PROJECT_DIR$/src/plugins/fix/clean-html" />
144
+ <recent name="$PROJECT_DIR$/src/plugins/fix/wrap-nodes" />
141
145
  </key>
142
146
  </component>
143
147
  <component name="RunManager" selected="Shell Script.build">
@@ -826,231 +830,11 @@
826
830
  <workItem from="1646232185136" duration="148000" />
827
831
  <workItem from="1646236907442" duration="1678000" />
828
832
  <workItem from="1646315047402" duration="21336000" />
829
- <workItem from="1646348592551" duration="34265000" />
830
- </task>
831
- <task id="LOCAL-00988" summary="- Fixed a bug when switching between source and wysiwyg mode, the FORM tag was wrapped in P">
832
- <created>1644265124550</created>
833
- <option name="number" value="00988" />
834
- <option name="presentableId" value="LOCAL-00988" />
835
- <option name="project" value="LOCAL" />
836
- <updated>1644265124550</updated>
837
- </task>
838
- <task id="LOCAL-00989" summary="Added test for issue: Not maintaining styles set when switching format blocks #773&#10;Issue: https://github.com/xdan/jodit/issues/773">
839
- <created>1644265470862</created>
840
- <option name="number" value="00989" />
841
- <option name="presentableId" value="LOCAL-00989" />
842
- <option name="project" value="LOCAL" />
843
- <updated>1644265470862</updated>
844
- </task>
845
- <task id="LOCAL-00990" summary="Fixed Not maintaining styles set when switching format blocks #773&#10;Issue: https://github.com/xdan/jodit/issues/773">
846
- <created>1644266525443</created>
847
- <option name="number" value="00990" />
848
- <option name="presentableId" value="LOCAL-00990" />
849
- <option name="project" value="LOCAL" />
850
- <updated>1644266525443</updated>
851
- </task>
852
- <task id="LOCAL-00991" summary="New line-height plugin">
853
- <created>1644520354801</created>
854
- <option name="number" value="00991" />
855
- <option name="presentableId" value="LOCAL-00991" />
856
- <option name="project" value="LOCAL" />
857
- <updated>1644520354801</updated>
858
- </task>
859
- <task id="LOCAL-00992" summary="Fixed Previewing data not showing table content #780&#10;Issue: https://github.com/xdan/jodit/issues/780">
860
- <created>1644520474705</created>
861
- <option name="number" value="00992" />
862
- <option name="presentableId" value="LOCAL-00992" />
863
- <option name="project" value="LOCAL" />
864
- <updated>1644520474705</updated>
865
- </task>
866
- <task id="LOCAL-00993" summary="Refactoring uploader module">
867
- <created>1644520512387</created>
868
- <option name="number" value="00993" />
869
- <option name="presentableId" value="LOCAL-00993" />
870
- <option name="project" value="LOCAL" />
871
- <updated>1644520512387</updated>
872
- </task>
873
- <task id="LOCAL-00994" summary="Restore translate utils">
874
- <created>1644521368525</created>
875
- <option name="number" value="00994" />
876
- <option name="presentableId" value="LOCAL-00994" />
877
- <option name="project" value="LOCAL" />
878
- <updated>1644521368525</updated>
879
- </task>
880
- <task id="LOCAL-00995" summary="Restore translate utils">
881
- <created>1644521383938</created>
882
- <option name="number" value="00995" />
883
- <option name="presentableId" value="LOCAL-00995" />
884
- <option name="project" value="LOCAL" />
885
- <updated>1644521383938</updated>
886
- </task>
887
- <task id="LOCAL-00996" summary="Restore translate utils">
888
- <created>1644521549466</created>
889
- <option name="number" value="00996" />
890
- <option name="presentableId" value="LOCAL-00996" />
891
- <option name="project" value="LOCAL" />
892
- <updated>1644521549466</updated>
893
- </task>
894
- <task id="LOCAL-00997" summary="Restore translate utils">
895
- <created>1644521693868</created>
896
- <option name="number" value="00997" />
897
- <option name="presentableId" value="LOCAL-00997" />
898
- <option name="project" value="LOCAL" />
899
- <updated>1644521693868</updated>
900
- </task>
901
- <task id="LOCAL-00998" summary="Added new translation">
902
- <created>1644521801804</created>
903
- <option name="number" value="00998" />
904
- <option name="presentableId" value="LOCAL-00998" />
905
- <option name="project" value="LOCAL" />
906
- <updated>1644521801804</updated>
907
- </task>
908
- <task id="LOCAL-00999" summary="Fix doc">
909
- <created>1644522617662</created>
910
- <option name="number" value="00999" />
911
- <option name="presentableId" value="LOCAL-00999" />
912
- <option name="project" value="LOCAL" />
913
- <updated>1644522617662</updated>
914
- </task>
915
- <task id="LOCAL-01000" summary="Fix doc">
916
- <created>1644523726279</created>
917
- <option name="number" value="01000" />
918
- <option name="presentableId" value="LOCAL-01000" />
919
- <option name="project" value="LOCAL" />
920
- <updated>1644523726279</updated>
921
- </task>
922
- <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">
923
- <created>1644603490870</created>
924
- <option name="number" value="01001" />
925
- <option name="presentableId" value="LOCAL-01001" />
926
- <option name="project" value="LOCAL" />
927
- <updated>1644603490870</updated>
928
- </task>
929
- <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">
930
- <created>1644605909082</created>
931
- <option name="number" value="01002" />
932
- <option name="presentableId" value="LOCAL-01002" />
933
- <option name="project" value="LOCAL" />
934
- <updated>1644605909082</updated>
935
- </task>
936
- <task id="LOCAL-01003" summary="Changed the positions of some buttons on different resolutions for greater density">
937
- <created>1645032836769</created>
938
- <option name="number" value="01003" />
939
- <option name="presentableId" value="LOCAL-01003" />
940
- <option name="project" value="LOCAL" />
941
- <updated>1645032836769</updated>
942
- </task>
943
- <task id="LOCAL-01004" summary="Fixed Cannot format table cells in PRO version #786&#10;Issue: https://github.com/xdan/jodit/issues/786">
944
- <created>1645033027807</created>
945
- <option name="number" value="01004" />
946
- <option name="presentableId" value="LOCAL-01004" />
947
- <option name="project" value="LOCAL" />
948
- <updated>1645033027807</updated>
949
- </task>
950
- <task id="LOCAL-01005" summary="Changed the positions of some buttons on different resolutions for greater density">
951
- <created>1645033103795</created>
952
- <option name="number" value="01005" />
953
- <option name="presentableId" value="LOCAL-01005" />
954
- <option name="project" value="LOCAL" />
955
- <updated>1645033103795</updated>
956
- </task>
957
- <task id="LOCAL-01006" summary="Fixed Build error: Property or signature expected. #174&#10;Issue: https://github.com/jodit/jodit-react/issues/174">
958
- <created>1645033205894</created>
959
- <option name="number" value="01006" />
960
- <option name="presentableId" value="LOCAL-01006" />
961
- <option name="project" value="LOCAL" />
962
- <updated>1645033205894</updated>
963
- </task>
964
- <task id="LOCAL-01007" summary="Small refactoring">
965
- <created>1645033281065</created>
966
- <option name="number" value="01007" />
967
- <option name="presentableId" value="LOCAL-01007" />
968
- <option name="project" value="LOCAL" />
969
- <updated>1645033281065</updated>
970
- </task>
971
- <task id="LOCAL-01008" summary="Small refactoring">
972
- <created>1645033750473</created>
973
- <option name="number" value="01008" />
974
- <option name="presentableId" value="LOCAL-01008" />
975
- <option name="project" value="LOCAL" />
976
- <updated>1645033750473</updated>
977
- </task>
978
- <task id="LOCAL-01009" summary="Disabled the ability to drag and drop elements on mobile devices as it affected page scrollability">
979
- <created>1645033762568</created>
980
- <option name="number" value="01009" />
981
- <option name="presentableId" value="LOCAL-01009" />
982
- <option name="project" value="LOCAL" />
983
- <updated>1645033762568</updated>
984
- </task>
985
- <task id="LOCAL-01010" summary="Disabled the ability to drag and drop elements on mobile devices as it affected page scrollability">
986
- <created>1645033768928</created>
987
- <option name="number" value="01010" />
988
- <option name="presentableId" value="LOCAL-01010" />
989
- <option name="project" value="LOCAL" />
990
- <updated>1645033768928</updated>
991
- </task>
992
- <task id="LOCAL-01011" summary="Disabled the ability to drag and drop elements on mobile devices as it affected page scrollability">
993
- <created>1645033940343</created>
994
- <option name="number" value="01011" />
995
- <option name="presentableId" value="LOCAL-01011" />
996
- <option name="project" value="LOCAL" />
997
- <updated>1645033940343</updated>
998
- </task>
999
- <task id="LOCAL-01012" summary="Refactoring iframe module">
1000
- <created>1645034767241</created>
1001
- <option name="number" value="01012" />
1002
- <option name="presentableId" value="LOCAL-01012" />
1003
- <option name="project" value="LOCAL" />
1004
- <updated>1645034767241</updated>
1005
- </task>
1006
- <task id="LOCAL-01013" summary="Refactoring iframe module">
1007
- <created>1645035086511</created>
1008
- <option name="number" value="01013" />
1009
- <option name="presentableId" value="LOCAL-01013" />
1010
- <option name="project" value="LOCAL" />
1011
- <updated>1645035086511</updated>
1012
- </task>
1013
- <task id="LOCAL-01014" summary="Fixed a bug in the editor preview display module - when the editor did not fix the correct image sizes">
1014
- <created>1645388173653</created>
1015
- <option name="number" value="01014" />
1016
- <option name="presentableId" value="LOCAL-01014" />
1017
- <option name="project" value="LOCAL" />
1018
- <updated>1645388173653</updated>
1019
- </task>
1020
- <task id="LOCAL-01015" summary="Added experimental entry point for VDom">
1021
- <created>1645388216395</created>
1022
- <option name="number" value="01015" />
1023
- <option name="presentableId" value="LOCAL-01015" />
1024
- <option name="project" value="LOCAL" />
1025
- <updated>1645388216395</updated>
1026
- </task>
1027
- <task id="LOCAL-01016" summary="Apply prettier">
1028
- <created>1645388397719</created>
1029
- <option name="number" value="01016" />
1030
- <option name="presentableId" value="LOCAL-01016" />
1031
- <option name="project" value="LOCAL" />
1032
- <updated>1645388397719</updated>
1033
- </task>
1034
- <task id="LOCAL-01017" summary="Added record in changelog">
1035
- <created>1645388472008</created>
1036
- <option name="number" value="01017" />
1037
- <option name="presentableId" value="LOCAL-01017" />
1038
- <option name="project" value="LOCAL" />
1039
- <updated>1645388472008</updated>
1040
- </task>
1041
- <task id="LOCAL-01018" summary="Added record in changelog">
1042
- <created>1645388478100</created>
1043
- <option name="number" value="01018" />
1044
- <option name="presentableId" value="LOCAL-01018" />
1045
- <option name="project" value="LOCAL" />
1046
- <updated>1645388478100</updated>
1047
- </task>
1048
- <task id="LOCAL-01019" summary="Small image-editor refactoring">
1049
- <created>1645389198305</created>
1050
- <option name="number" value="01019" />
1051
- <option name="presentableId" value="LOCAL-01019" />
1052
- <option name="project" value="LOCAL" />
1053
- <updated>1645389198305</updated>
833
+ <workItem from="1646348592551" duration="102235000" />
834
+ <workItem from="1647062835078" duration="18125000" />
835
+ <workItem from="1647166790321" duration="238000" />
836
+ <workItem from="1647167081505" duration="5015000" />
837
+ <workItem from="1647258092021" duration="33250000" />
1054
838
  </task>
1055
839
  <task id="LOCAL-01020" summary="Small image-editor refactoring">
1056
840
  <created>1645390051111</created>
@@ -1171,11 +955,241 @@
1171
955
  <option name="project" value="LOCAL" />
1172
956
  <updated>1646666174736</updated>
1173
957
  </task>
1174
- <option name="localTasksCounter" value="1037" />
958
+ <task id="LOCAL-01037" summary="Fix version">
959
+ <created>1646666960237</created>
960
+ <option name="number" value="01037" />
961
+ <option name="presentableId" value="LOCAL-01037" />
962
+ <option name="project" value="LOCAL" />
963
+ <updated>1646666960237</updated>
964
+ </task>
965
+ <task id="LOCAL-01038" summary="Added file for contributing">
966
+ <created>1646772101211</created>
967
+ <option name="number" value="01038" />
968
+ <option name="presentableId" value="LOCAL-01038" />
969
+ <option name="project" value="LOCAL" />
970
+ <updated>1646772101211</updated>
971
+ </task>
972
+ <task id="LOCAL-01039" summary="Added file for contributing">
973
+ <created>1646772294935</created>
974
+ <option name="number" value="01039" />
975
+ <option name="presentableId" value="LOCAL-01039" />
976
+ <option name="project" value="LOCAL" />
977
+ <updated>1646772294935</updated>
978
+ </task>
979
+ <task id="LOCAL-01040" summary="Renamed `wrap-text-nodes` plugin to `wrap-nodes`">
980
+ <created>1646774211824</created>
981
+ <option name="number" value="01040" />
982
+ <option name="presentableId" value="LOCAL-01040" />
983
+ <option name="project" value="LOCAL" />
984
+ <updated>1646774211824</updated>
985
+ </task>
986
+ <task id="LOCAL-01041" summary="Renamed `wrap-text-nodes` plugin to `wrap-nodes`">
987
+ <created>1646774472753</created>
988
+ <option name="number" value="01041" />
989
+ <option name="presentableId" value="LOCAL-01041" />
990
+ <option name="project" value="LOCAL" />
991
+ <updated>1646774472753</updated>
992
+ </task>
993
+ <task id="LOCAL-01042" summary="Added test for WrapNode.exclude">
994
+ <created>1646774491860</created>
995
+ <option name="number" value="01042" />
996
+ <option name="presentableId" value="LOCAL-01042" />
997
+ <option name="project" value="LOCAL" />
998
+ <updated>1646774491860</updated>
999
+ </task>
1000
+ <task id="LOCAL-01043" summary="Rename file">
1001
+ <created>1646774682800</created>
1002
+ <option name="number" value="01043" />
1003
+ <option name="presentableId" value="LOCAL-01043" />
1004
+ <option name="project" value="LOCAL" />
1005
+ <updated>1646774682800</updated>
1006
+ </task>
1007
+ <task id="LOCAL-01044" summary="Added autotest for redo-undo functionality">
1008
+ <created>1646775180966</created>
1009
+ <option name="number" value="01044" />
1010
+ <option name="presentableId" value="LOCAL-01044" />
1011
+ <option name="project" value="LOCAL" />
1012
+ <updated>1646775180966</updated>
1013
+ </task>
1014
+ <task id="LOCAL-01045" summary="Fixed - default is not working for insert ordered list and insert unordered list #799&#10;&#10;Issue: https://github.com/xdan/jodit/issues/799">
1015
+ <created>1646776478679</created>
1016
+ <option name="number" value="01045" />
1017
+ <option name="presentableId" value="LOCAL-01045" />
1018
+ <option name="project" value="LOCAL" />
1019
+ <updated>1646776478679</updated>
1020
+ </task>
1021
+ <task id="LOCAL-01046" summary="Added `Jodit.synchronizeValues()` method">
1022
+ <created>1646854088446</created>
1023
+ <option name="number" value="01046" />
1024
+ <option name="presentableId" value="LOCAL-01046" />
1025
+ <option name="project" value="LOCAL" />
1026
+ <updated>1646854088446</updated>
1027
+ </task>
1028
+ <task id="LOCAL-01047" summary="Added `Jodit.synchronizeValues()` method">
1029
+ <created>1646854320278</created>
1030
+ <option name="number" value="01047" />
1031
+ <option name="presentableId" value="LOCAL-01047" />
1032
+ <option name="project" value="LOCAL" />
1033
+ <updated>1646854320278</updated>
1034
+ </task>
1035
+ <task id="LOCAL-01048" summary="Added `spellcheck` plugin">
1036
+ <created>1646854338812</created>
1037
+ <option name="number" value="01048" />
1038
+ <option name="presentableId" value="LOCAL-01048" />
1039
+ <option name="project" value="LOCAL" />
1040
+ <updated>1646854338812</updated>
1041
+ </task>
1042
+ <task id="LOCAL-01049" summary="Refactoring `search` plugin">
1043
+ <created>1646854367649</created>
1044
+ <option name="number" value="01049" />
1045
+ <option name="presentableId" value="LOCAL-01049" />
1046
+ <option name="project" value="LOCAL" />
1047
+ <updated>1646854367649</updated>
1048
+ </task>
1049
+ <task id="LOCAL-01050" summary="Added `Jodit.synchronizeValues()` method">
1050
+ <created>1646854403772</created>
1051
+ <option name="number" value="01050" />
1052
+ <option name="presentableId" value="LOCAL-01050" />
1053
+ <option name="project" value="LOCAL" />
1054
+ <updated>1646854403772</updated>
1055
+ </task>
1056
+ <task id="LOCAL-01051" summary="Added `Jodit.synchronizeValues()` method">
1057
+ <created>1647075217271</created>
1058
+ <option name="number" value="01051" />
1059
+ <option name="presentableId" value="LOCAL-01051" />
1060
+ <option name="project" value="LOCAL" />
1061
+ <updated>1647075217272</updated>
1062
+ </task>
1063
+ <task id="LOCAL-01052" summary="Added spelling i18n">
1064
+ <created>1647075313124</created>
1065
+ <option name="number" value="01052" />
1066
+ <option name="presentableId" value="LOCAL-01052" />
1067
+ <option name="project" value="LOCAL" />
1068
+ <updated>1647075313124</updated>
1069
+ </task>
1070
+ <task id="LOCAL-01053" summary="Fixed tests for spellchecking">
1071
+ <created>1647075340981</created>
1072
+ <option name="number" value="01053" />
1073
+ <option name="presentableId" value="LOCAL-01053" />
1074
+ <option name="project" value="LOCAL" />
1075
+ <updated>1647075340981</updated>
1076
+ </task>
1077
+ <task id="LOCAL-01054" summary="Lazy Walker">
1078
+ <created>1647075368563</created>
1079
+ <option name="number" value="01054" />
1080
+ <option name="presentableId" value="LOCAL-01054" />
1081
+ <option name="project" value="LOCAL" />
1082
+ <updated>1647075368563</updated>
1083
+ </task>
1084
+ <task id="LOCAL-01055" summary="Fixed autotests">
1085
+ <created>1647085827400</created>
1086
+ <option name="number" value="01055" />
1087
+ <option name="presentableId" value="LOCAL-01055" />
1088
+ <option name="project" value="LOCAL" />
1089
+ <updated>1647085827400</updated>
1090
+ </task>
1091
+ <task id="LOCAL-01056" summary="Enabled `@typescript-eslint/explicit-function-return-type` in eslint">
1092
+ <created>1647169733781</created>
1093
+ <option name="number" value="01056" />
1094
+ <option name="presentableId" value="LOCAL-01056" />
1095
+ <option name="project" value="LOCAL" />
1096
+ <updated>1647169733781</updated>
1097
+ </task>
1098
+ <task id="LOCAL-01057" summary="Enabled `@typescript-eslint/explicit-function-return-type` in eslint">
1099
+ <created>1647169915507</created>
1100
+ <option name="number" value="01057" />
1101
+ <option name="presentableId" value="LOCAL-01057" />
1102
+ <option name="project" value="LOCAL" />
1103
+ <updated>1647169915507</updated>
1104
+ </task>
1105
+ <task id="LOCAL-01058" summary="Fixed doc">
1106
+ <created>1647170042586</created>
1107
+ <option name="number" value="01058" />
1108
+ <option name="presentableId" value="LOCAL-01058" />
1109
+ <option name="project" value="LOCAL" />
1110
+ <updated>1647170042586</updated>
1111
+ </task>
1112
+ <task id="LOCAL-01059" summary="Fix doc">
1113
+ <created>1647170248593</created>
1114
+ <option name="number" value="01059" />
1115
+ <option name="presentableId" value="LOCAL-01059" />
1116
+ <option name="project" value="LOCAL" />
1117
+ <updated>1647170248593</updated>
1118
+ </task>
1119
+ <task id="LOCAL-01060" summary="Fix doc">
1120
+ <created>1647170733664</created>
1121
+ <option name="number" value="01060" />
1122
+ <option name="presentableId" value="LOCAL-01060" />
1123
+ <option name="project" value="LOCAL" />
1124
+ <updated>1647170733664</updated>
1125
+ </task>
1126
+ <task id="LOCAL-01061" summary="In print preview, table border color and background color is not showing #803&#10;Issue: https://github.com/xdan/jodit/issues/803">
1127
+ <created>1647409270570</created>
1128
+ <option name="number" value="01061" />
1129
+ <option name="presentableId" value="LOCAL-01061" />
1130
+ <option name="project" value="LOCAL" />
1131
+ <updated>1647409270570</updated>
1132
+ </task>
1133
+ <task id="LOCAL-01062" summary="Search plugin now highlights all found options &#10;Issue: https://github.com/xdan/jodit/issues/798">
1134
+ <created>1647409664163</created>
1135
+ <option name="number" value="01062" />
1136
+ <option name="presentableId" value="LOCAL-01062" />
1137
+ <option name="project" value="LOCAL" />
1138
+ <updated>1647409664163</updated>
1139
+ </task>
1140
+ <task id="LOCAL-01063" summary="Added `Jodit.constants` &#10;Issue: https://github.com/xdan/jodit/issues/806">
1141
+ <created>1647409710261</created>
1142
+ <option name="number" value="01063" />
1143
+ <option name="presentableId" value="LOCAL-01063" />
1144
+ <option name="project" value="LOCAL" />
1145
+ <updated>1647409710261</updated>
1146
+ </task>
1147
+ <task id="LOCAL-01064" summary="Dom.wrap can get Range">
1148
+ <created>1647409731805</created>
1149
+ <option name="number" value="01064" />
1150
+ <option name="presentableId" value="LOCAL-01064" />
1151
+ <option name="project" value="LOCAL" />
1152
+ <updated>1647409731805</updated>
1153
+ </task>
1154
+ <task id="LOCAL-01065" summary="Fixed tests">
1155
+ <created>1647410274953</created>
1156
+ <option name="number" value="01065" />
1157
+ <option name="presentableId" value="LOCAL-01065" />
1158
+ <option name="project" value="LOCAL" />
1159
+ <updated>1647410274953</updated>
1160
+ </task>
1161
+ <task id="LOCAL-01066" summary="Fixed tests">
1162
+ <created>1647411230710</created>
1163
+ <option name="number" value="01066" />
1164
+ <option name="presentableId" value="LOCAL-01066" />
1165
+ <option name="project" value="LOCAL" />
1166
+ <updated>1647411230710</updated>
1167
+ </task>
1168
+ <task id="LOCAL-01067" summary="Added `Config.pasteHTMLActionList` and `Config.pasteFromWordActionList` options &#10;Issue: https://github.com/xdan/jodit/issues/802.">
1169
+ <created>1647413135639</created>
1170
+ <option name="number" value="01067" />
1171
+ <option name="presentableId" value="LOCAL-01067" />
1172
+ <option name="project" value="LOCAL" />
1173
+ <updated>1647413135639</updated>
1174
+ </task>
1175
+ <task id="LOCAL-01068" summary="Added `Config.pasteHTMLActionList` and `Config.pasteFromWordActionList` options &#10;Issue: https://github.com/xdan/jodit/issues/802.">
1176
+ <created>1647413164631</created>
1177
+ <option name="number" value="01068" />
1178
+ <option name="presentableId" value="LOCAL-01068" />
1179
+ <option name="project" value="LOCAL" />
1180
+ <updated>1647413164631</updated>
1181
+ </task>
1182
+ <option name="localTasksCounter" value="1069" />
1175
1183
  <servers />
1176
1184
  </component>
1177
1185
  <component name="TypeScriptGeneratedFilesManager">
1178
1186
  <option name="version" value="3" />
1187
+ <option name="exactExcludedFiles">
1188
+ <list>
1189
+ <option value="$PROJECT_DIR$/types/types/core.d.ts" />
1190
+ <option value="$PROJECT_DIR$/types/types/storage.d.ts" />
1191
+ </list>
1192
+ </option>
1179
1193
  </component>
1180
1194
  <component name="UnknownFeatures">
1181
1195
  <option featureType="com.intellij.configurationType" implementationName="BashConfigurationType" />
@@ -1311,32 +1325,32 @@
1311
1325
  </component>
1312
1326
  <component name="VcsManagerConfiguration">
1313
1327
  <option name="CHECK_CODE_SMELLS_BEFORE_PROJECT_COMMIT" value="false" />
1314
- <MESSAGE value="Fixed Unable to drag and drop image between table cells #782&#10;Issue: https://github.com/xdan/jodit/issues/782" />
1315
- <MESSAGE value="Fixed Cannot format table cells in PRO version #786&#10;Issue: https://github.com/xdan/jodit/issues/786" />
1316
- <MESSAGE value="Changed the positions of some buttons on different resolutions for greater density" />
1317
- <MESSAGE value="Fixed Build error: Property or signature expected. #174&#10;Issue: https://github.com/jodit/jodit-react/issues/174" />
1318
- <MESSAGE value="Small refactoring" />
1319
- <MESSAGE value="Disabled the ability to drag and drop elements on mobile devices as it affected page scrollability" />
1320
- <MESSAGE value="Refactoring iframe module" />
1321
- <MESSAGE value="Fixed a bug in the editor preview display module - when the editor did not fix the correct image sizes" />
1322
- <MESSAGE value="Added experimental entry point for VDom" />
1323
- <MESSAGE value="Apply prettier" />
1324
- <MESSAGE value="Added record in changelog" />
1325
- <MESSAGE value="Fixed issue Ordered Bullets are getting changed to unordered bullets after copy and pasting within the editor #789&#10;Issue: https://github.com/xdan/jodit/issues/789" />
1326
- <MESSAGE value="Update npm and duck typing Dom.isNode" />
1327
- <MESSAGE value="Fixed bug inside placeholder plugin" />
1328
- <MESSAGE value="Refactoring paste plugin" />
1329
- <MESSAGE value="Small image-editor refactoring" />
1330
- <MESSAGE value="Extract logic with paste from word inside separate plugin" />
1331
- <MESSAGE value="Added module description" />
1332
- <MESSAGE value="Fixed a bug when it was impossible to select a normal font after selecting any other" />
1333
- <MESSAGE value="The problem that the selected text disappears #790&#10;Issue: https://github.com/xdan/jodit/issues/790" />
1334
- <MESSAGE value="Refactoring" />
1335
- <MESSAGE value=" Dropdowns not hiding when clicking again on the arrow #791&#10; Issue: https://github.com/xdan/jodit/issues/791" />
1336
- <MESSAGE value="- `Observer` module renamed to `History`, accessed via `Jodit.history`&#10;- `Jodit.observer` field deprecated and will be removed in future releases&#10;- Changed to `history` in `observer` settings. The `observer` field has been deprecated.&#10;- Removed `stack` field from `History` class (former `Observer`)." />
1337
1328
  <MESSAGE value="When adding information to the editor via `Jodit.value`, the history of changes will be process immediately,&#10; without a timeout. &#10;&#10;Issue: https://github.com/xdan/jodit/issues/792" />
1338
1329
  <MESSAGE value="Separated default editor timeout and `history.timeout`. Now the second setting is just for history.&#10; Timeouts for all asynchronous operations in Jodit now apply the `defaultTimeout` setting" />
1339
- <option name="LAST_COMMIT_MESSAGE" value="Separated default editor timeout and `history.timeout`. Now the second setting is just for history.&#10; Timeouts for all asynchronous operations in Jodit now apply the `defaultTimeout` setting" />
1330
+ <MESSAGE value="Fix version" />
1331
+ <MESSAGE value="Added file for contributing" />
1332
+ <MESSAGE value="Renamed `wrap-text-nodes` plugin to `wrap-nodes`" />
1333
+ <MESSAGE value="Added test for WrapNode.exclude" />
1334
+ <MESSAGE value="Rename file" />
1335
+ <MESSAGE value="Added autotest for redo-undo functionality" />
1336
+ <MESSAGE value="Fixed - default is not working for insert ordered list and insert unordered list #799&#10;&#10;Issue: https://github.com/xdan/jodit/issues/799" />
1337
+ <MESSAGE value="Added `spellcheck` plugin" />
1338
+ <MESSAGE value="Refactoring `search` plugin" />
1339
+ <MESSAGE value="Added `Jodit.synchronizeValues()` method" />
1340
+ <MESSAGE value="Added spelling i18n" />
1341
+ <MESSAGE value="Fixed tests for spellchecking" />
1342
+ <MESSAGE value="Lazy Walker" />
1343
+ <MESSAGE value="Fixed autotests" />
1344
+ <MESSAGE value="Enabled `@typescript-eslint/explicit-function-return-type` in eslint" />
1345
+ <MESSAGE value="Fixed doc" />
1346
+ <MESSAGE value="Fix doc" />
1347
+ <MESSAGE value="In print preview, table border color and background color is not showing #803&#10;Issue: https://github.com/xdan/jodit/issues/803" />
1348
+ <MESSAGE value="Search plugin now highlights all found options &#10;Issue: https://github.com/xdan/jodit/issues/798" />
1349
+ <MESSAGE value="Added `Jodit.constants` &#10;Issue: https://github.com/xdan/jodit/issues/806" />
1350
+ <MESSAGE value="Dom.wrap can get Range" />
1351
+ <MESSAGE value="Fixed tests" />
1352
+ <MESSAGE value="Added `Config.pasteHTMLActionList` and `Config.pasteFromWordActionList` options &#10;Issue: https://github.com/xdan/jodit/issues/802." />
1353
+ <option name="LAST_COMMIT_MESSAGE" value="Added `Config.pasteHTMLActionList` and `Config.pasteFromWordActionList` options &#10;Issue: https://github.com/xdan/jodit/issues/802." />
1340
1354
  </component>
1341
1355
  <component name="XDebuggerManager">
1342
1356
  <breakpoint-manager>
@@ -1388,7 +1402,7 @@
1388
1402
  </line-breakpoint>
1389
1403
  <line-breakpoint enabled="true" type="javascript">
1390
1404
  <url>file://$PROJECT_DIR$/test/tests/units/modules/dom.js</url>
1391
- <line>60</line>
1405
+ <line>63</line>
1392
1406
  <option name="timeStamp" value="52" />
1393
1407
  </line-breakpoint>
1394
1408
  <line-breakpoint enabled="true" type="javascript">
@@ -1396,6 +1410,11 @@
1396
1410
  <line>183</line>
1397
1411
  <option name="timeStamp" value="53" />
1398
1412
  </line-breakpoint>
1413
+ <line-breakpoint enabled="true" type="javascript">
1414
+ <url>file://$PROJECT_DIR$/src/plugins/ordered-list/ordered-list.ts</url>
1415
+ <line>54</line>
1416
+ <option name="timeStamp" value="54" />
1417
+ </line-breakpoint>
1399
1418
  </breakpoints>
1400
1419
  </breakpoint-manager>
1401
1420
  </component>