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