jodit 3.8.7 → 3.9.4

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 (180) hide show
  1. package/.github/workflows/tests.yml +23 -0
  2. package/.idea/dictionaries/v_chupurnov.xml +1 -0
  3. package/.idea/workspace.xml +340 -298
  4. package/CHANGELOG.MD +132 -24
  5. package/README.md +3 -4
  6. package/build/jodit.css +92 -34
  7. package/build/jodit.es2018.css +65 -30
  8. package/build/jodit.es2018.en.css +65 -30
  9. package/build/jodit.es2018.en.js +1214 -693
  10. package/build/jodit.es2018.en.min.css +1 -1
  11. package/build/jodit.es2018.en.min.js +1 -1
  12. package/build/jodit.es2018.js +1214 -693
  13. package/build/jodit.es2018.min.css +1 -1
  14. package/build/jodit.es2018.min.js +1 -1
  15. package/build/jodit.js +2271 -1628
  16. package/build/jodit.min.css +2 -2
  17. package/build/jodit.min.js +1 -1
  18. package/index.d.ts +10 -0
  19. package/package.json +14 -13
  20. package/src/config.ts +1 -1
  21. package/src/core/async.ts +7 -5
  22. package/src/core/constants.ts +2 -0
  23. package/src/core/dom.ts +123 -102
  24. package/src/core/events/{events-native.ts → event-emitter.ts} +14 -9
  25. package/src/core/events/index.ts +1 -1
  26. package/src/core/global.ts +2 -2
  27. package/src/core/helpers/array/to-array.ts +1 -0
  28. package/src/core/helpers/data-bind.ts +2 -2
  29. package/src/core/helpers/size/index.ts +1 -0
  30. package/src/core/helpers/size/object-size.ts +22 -0
  31. package/src/core/helpers/utils/utils.ts +20 -4
  32. package/src/core/request/ajax.ts +212 -0
  33. package/src/core/request/config.ts +37 -0
  34. package/{build-system/minimizer/index.js → src/core/request/index.ts} +2 -1
  35. package/src/core/request/response.ts +39 -0
  36. package/src/core/selection/select.ts +60 -27
  37. package/src/core/selection/style/api/element-has-same-style.ts +13 -0
  38. package/src/core/selection/style/api/{get-closest-wrapper.ts → extract.ts} +26 -43
  39. package/src/core/selection/style/api/finite-state-machine.ts +66 -0
  40. package/src/core/selection/style/api/get-suit-parent.ts +1 -1
  41. package/src/core/selection/style/api/index.ts +12 -5
  42. package/src/core/selection/style/api/{check-special-elements.ts → is-inside-invisible-element.ts} +1 -1
  43. package/src/core/selection/style/api/is-suit-element.ts +36 -5
  44. package/src/core/selection/style/api/toggle/toggle-css.ts +134 -0
  45. package/src/core/selection/style/api/toggle/toggle-ordered-list.ts +49 -0
  46. package/src/core/selection/style/api/toggle-commit-styles.ts +27 -0
  47. package/src/core/selection/style/api/unwrap-children.ts +45 -16
  48. package/src/core/selection/style/api/wrap-and-commit-style.ts +68 -0
  49. package/src/core/selection/style/api/wrap-ordered-list.ts +37 -0
  50. package/src/core/selection/style/api/wrap-unwrapped-text.ts +29 -27
  51. package/src/core/selection/style/apply-style.ts +161 -91
  52. package/src/core/selection/style/commit-style.ts +13 -0
  53. package/src/core/traits/elms.ts +1 -0
  54. package/src/core/ui/button/button/button.less +2 -0
  55. package/src/core/ui/helpers/buttons.ts +14 -6
  56. package/src/core/ui/helpers/get-control-type.ts +3 -1
  57. package/src/core/ui/list/list.less +1 -0
  58. package/src/core/ui/popup/popup.less +5 -3
  59. package/src/core/view/view-with-toolbar.ts +4 -0
  60. package/src/core/view/view.ts +3 -3
  61. package/src/modules/context-menu/context-menu.ts +1 -1
  62. package/src/modules/file-browser/README.MD +1 -1
  63. package/src/modules/file-browser/data-provider.ts +22 -42
  64. package/src/modules/file-browser/file-browser.ts +3 -0
  65. package/src/modules/index.ts +1 -1
  66. package/src/modules/status-bar/status-bar.less +27 -1
  67. package/src/modules/status-bar/status-bar.ts +15 -1
  68. package/src/modules/table.ts +197 -168
  69. package/src/modules/uploader/uploader.ts +4 -3
  70. package/src/modules/widget/tabs/tabs.less +1 -0
  71. package/src/plugins/bold.ts +2 -2
  72. package/src/plugins/fix/clean-html.ts +37 -16
  73. package/src/plugins/font.ts +11 -1
  74. package/src/plugins/indent.ts +25 -18
  75. package/src/plugins/index.ts +1 -0
  76. package/src/plugins/mobile.ts +10 -14
  77. package/src/plugins/ordered-list.ts +40 -1
  78. package/src/plugins/powered-by-jodit.ts +39 -0
  79. package/src/plugins/print/preview.ts +9 -2
  80. package/src/plugins/resizer/resizer.less +10 -7
  81. package/src/plugins/resizer/resizer.ts +12 -14
  82. package/src/plugins/size/assests/resize-handler.svg +4 -0
  83. package/src/plugins/size/resize-handler.ts +5 -5
  84. package/src/plugins/size/size.less +6 -8
  85. package/src/plugins/size/size.ts +1 -3
  86. package/src/plugins/source/source.ts +16 -2
  87. package/src/plugins/table/config.ts +3 -1
  88. package/src/plugins/table/select-cells.ts +23 -5
  89. package/src/plugins/table/table.less +0 -1
  90. package/src/styles/themes/dark.less +11 -1
  91. package/src/types/ajax.d.ts +15 -6
  92. package/src/types/async.d.ts +5 -4
  93. package/src/types/events.d.ts +12 -12
  94. package/src/types/style.d.ts +2 -0
  95. package/src/types/toolbar.d.ts +2 -1
  96. package/src/types/view.d.ts +3 -2
  97. package/types/core/async.d.ts +3 -3
  98. package/types/core/constants.d.ts +1 -0
  99. package/types/core/dom.d.ts +27 -20
  100. package/types/core/events/{events-native.d.ts → event-emitter.d.ts} +8 -3
  101. package/types/core/events/index.d.ts +1 -1
  102. package/types/core/global.d.ts +2 -2
  103. package/types/core/helpers/size/index.d.ts +1 -0
  104. package/{src/types/core.js → types/core/helpers/size/object-size.d.ts} +2 -3
  105. package/types/core/helpers/utils/utils.d.ts +12 -4
  106. package/types/core/{ajax.d.ts → request/ajax.d.ts} +5 -15
  107. package/types/core/request/config.d.ts +14 -0
  108. package/{build-system/rules/css.js → types/core/request/index.d.ts} +2 -7
  109. package/types/core/request/response.d.ts +16 -0
  110. package/types/core/selection/style/api/element-has-same-style.d.ts +4 -0
  111. package/types/core/selection/style/api/{get-closest-wrapper.d.ts → extract.d.ts} +6 -5
  112. package/types/core/selection/style/api/finite-state-machine.d.ts +21 -0
  113. package/types/core/selection/style/api/index.d.ts +12 -5
  114. package/types/core/selection/style/api/{check-special-elements.d.ts → is-inside-invisible-element.d.ts} +1 -1
  115. package/types/core/selection/style/api/is-suit-element.d.ts +10 -0
  116. package/types/core/selection/style/api/toggle/toggle-css.d.ts +11 -0
  117. package/types/core/selection/style/api/toggle/toggle-ordered-list.d.ts +11 -0
  118. package/types/core/selection/style/api/{toggle-styles.d.ts → toggle-commit-styles.d.ts} +1 -3
  119. package/types/core/selection/style/api/{post-process-list-element.d.ts → wrap-and-commit-style.d.ts} +3 -3
  120. package/types/core/selection/style/api/wrap-ordered-list.d.ts +12 -0
  121. package/types/core/selection/style/api/wrap-unwrapped-text.d.ts +2 -2
  122. package/types/core/selection/style/apply-style.d.ts +1 -4
  123. package/types/core/selection/style/commit-style.d.ts +7 -0
  124. package/types/core/ui/helpers/buttons.d.ts +2 -2
  125. package/types/core/view/view-with-toolbar.d.ts +2 -1
  126. package/types/core/view/view.d.ts +2 -2
  127. package/types/modules/file-browser/data-provider.d.ts +1 -1
  128. package/types/modules/index.d.ts +1 -1
  129. package/types/modules/status-bar/status-bar.d.ts +6 -1
  130. package/types/modules/table.d.ts +2 -2
  131. package/types/plugins/fix/clean-html.d.ts +4 -0
  132. package/types/plugins/index.d.ts +1 -0
  133. package/types/plugins/ordered-list.d.ts +8 -1
  134. package/{build-system/plugins/banner.js → types/plugins/powered-by-jodit.d.ts} +7 -10
  135. package/types/plugins/size/resize-handler.d.ts +1 -1
  136. package/types/plugins/source/source.d.ts +1 -1
  137. package/types/types/ajax.d.ts +15 -6
  138. package/types/types/async.d.ts +5 -4
  139. package/types/types/events.d.ts +12 -12
  140. package/types/types/style.d.ts +2 -0
  141. package/types/types/toolbar.d.ts +2 -1
  142. package/types/types/view.d.ts +3 -2
  143. package/.editorconfig +0 -15
  144. package/.eslintignore +0 -3
  145. package/.eslintrc.js +0 -109
  146. package/.prettierrc.json +0 -9
  147. package/.stylelintrc.json +0 -16
  148. package/app.css +0 -112
  149. package/build-system/index.js +0 -78
  150. package/build-system/loaders/css-variables-prefixes.js +0 -12
  151. package/build-system/loaders/lang-loader.js +0 -57
  152. package/build-system/loaders/style.js +0 -31
  153. package/build-system/loaders/svg-loader.js +0 -21
  154. package/build-system/minimizer/css.js +0 -20
  155. package/build-system/minimizer/js.js +0 -41
  156. package/build-system/plugins/define.js +0 -22
  157. package/build-system/plugins/extract-css.js +0 -21
  158. package/build-system/plugins/index.js +0 -31
  159. package/build-system/plugins/post-build.js +0 -52
  160. package/build-system/rules/extra-typescript.js +0 -22
  161. package/build-system/rules/index.js +0 -17
  162. package/build-system/rules/internal-typescript.js +0 -23
  163. package/build-system/rules/langs.js +0 -20
  164. package/build-system/rules/svg.js +0 -16
  165. package/build-system/utils/filename.js +0 -14
  166. package/build-system/utils/post-build.js +0 -28
  167. package/build-system/variables.js +0 -51
  168. package/composer.json +0 -12
  169. package/src/core/ajax.ts +0 -269
  170. package/src/core/selection/style/api/post-process-list-element.ts +0 -33
  171. package/src/core/selection/style/api/toggle-styles.ts +0 -74
  172. package/src/types/core.d.ts +0 -7
  173. package/src/types/core.js.map +0 -1
  174. package/src/types/storage.d.ts +0 -13
  175. package/src/types/storage.js +0 -8
  176. package/src/types/storage.js.map +0 -1
  177. package/types/types/core.js +0 -8
  178. package/types/types/core.js.map +0 -1
  179. package/types/types/storage.js +0 -8
  180. package/types/types/storage.js.map +0 -1
@@ -1,5 +1,8 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
2
  <project version="4">
3
+ <component name="AnalysisUIOptions">
4
+ <option name="SCOPE_TYPE" value="3" />
5
+ </component>
3
6
  <component name="AutoImportSettings">
4
7
  <option name="autoReloadType" value="SELECTIVE" />
5
8
  </component>
@@ -8,8 +11,23 @@
8
11
  <select />
9
12
  </component>
10
13
  <component name="ChangeListManager">
11
- <list default="true" id="5da7ff7f-03a8-49de-9fbb-8f8640d83b83" name="Default Changelist" comment="">
12
- <change beforePath="$PROJECT_DIR$/test/tests/acceptance/imageTest.js" beforeDir="false" afterPath="$PROJECT_DIR$/test/tests/acceptance/imageTest.js" afterDir="false" />
14
+ <list default="true" id="5da7ff7f-03a8-49de-9fbb-8f8640d83b83" name="Default Changelist" comment="Fixed dots supplementary buttons shown incorrectly #692&#10;Issue: https://github.com/xdan/jodit/issues/692">
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$/src/core/dom.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/core/dom.ts" afterDir="false" />
28
+ <change beforePath="$PROJECT_DIR$/src/core/selection/style/api/toggle/toggle-css.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/core/selection/style/api/toggle/toggle-css.ts" afterDir="false" />
29
+ <change beforePath="$PROJECT_DIR$/src/core/selection/style/apply-style.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/core/selection/style/apply-style.ts" afterDir="false" />
30
+ <change beforePath="$PROJECT_DIR$/test/tests/units/styleTest.js" beforeDir="false" afterPath="$PROJECT_DIR$/test/tests/units/styleTest.js" afterDir="false" />
13
31
  </list>
14
32
  <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" />
15
33
  <option name="SHOW_DIALOG" value="false" />
@@ -27,7 +45,7 @@
27
45
  </map>
28
46
  </option>
29
47
  <option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
30
- <option name="RESET_MODE" value="HARD" />
48
+ <option name="RESET_MODE" value="SOFT" />
31
49
  </component>
32
50
  <component name="GitSEFilterConfiguration">
33
51
  <file-type-list>
@@ -89,7 +107,7 @@
89
107
  <property name="js.linters.configure.manually.selectedeslint" value="true" />
90
108
  <property name="jsx.switch.disabled" value="true" />
91
109
  <property name="last.edited.regexp" value="Sample Text" />
92
- <property name="last_opened_file_path" value="$PROJECT_DIR$/src/styles/icons" />
110
+ <property name="last_opened_file_path" value="$PROJECT_DIR$/src/core/selection/style" />
93
111
  <property name="node.js.detected.package.eslint" value="true" />
94
112
  <property name="node.js.detected.package.jscs" value="true" />
95
113
  <property name="node.js.detected.package.standard" value="true" />
@@ -115,25 +133,25 @@
115
133
  <property name="nodejs_package_manager_path" value="npm" />
116
134
  <property name="prettierjs.PrettierConfiguration.Package" value="$PROJECT_DIR$/node_modules/prettier" />
117
135
  <property name="run.code.analysis.last.selected.profile" value="pProject Default" />
118
- <property name="settings.editor.selected.configurable" value="settings.nodejs" />
136
+ <property name="settings.editor.selected.configurable" value="Errors" />
119
137
  <property name="ts.external.directory.path" value="$PROJECT_DIR$/node_modules/typescript/lib" />
120
138
  <property name="typescript-compiler-editor-notification" value="false" />
121
139
  <property name="vue.rearranger.settings.migration" value="true" />
122
140
  </component>
123
141
  <component name="RecentsManager">
124
142
  <key name="CopyFile.RECENT_KEYS">
143
+ <recent name="$PROJECT_DIR$/src/core/selection/style" />
125
144
  <recent name="$PROJECT_DIR$/src/styles/icons" />
126
145
  <recent name="$PROJECT_DIR$/src/plugins/table" />
127
146
  <recent name="$PROJECT_DIR$/src/core/helpers/utils" />
128
147
  <recent name="$PROJECT_DIR$/src/core/decorators" />
129
- <recent name="$PROJECT_DIR$" />
130
148
  </key>
131
149
  <key name="MoveFile.RECENT_KEYS">
150
+ <recent name="$PROJECT_DIR$/src/plugins" />
151
+ <recent name="$PROJECT_DIR$/src/plugins/size/assests" />
152
+ <recent name="$PROJECT_DIR$/src/core/request" />
132
153
  <recent name="$PROJECT_DIR$/build-system/utils" />
133
154
  <recent name="$PROJECT_DIR$/build-system/plugins" />
134
- <recent name="$PROJECT_DIR$/build-system" />
135
- <recent name="$PROJECT_DIR$/webpack/loaders" />
136
- <recent name="$PROJECT_DIR$/webpack/post" />
137
155
  </key>
138
156
  </component>
139
157
  <component name="RunManager" selected="Shell Script.build">
@@ -711,377 +729,375 @@
711
729
  <workItem from="1634629487134" duration="2114000" />
712
730
  <workItem from="1634631768012" duration="11020000" />
713
731
  <workItem from="1634798974344" duration="7486000" />
714
- <workItem from="1634832470901" duration="6450000" />
732
+ <workItem from="1634832470901" duration="11217000" />
733
+ <workItem from="1634910036285" duration="662000" />
734
+ <workItem from="1634943329348" duration="2687000" />
735
+ <workItem from="1635075276233" duration="6076000" />
736
+ <workItem from="1635150885789" duration="62089000" />
737
+ <workItem from="1635274751066" duration="80856000" />
738
+ <workItem from="1635849925964" duration="1202000" />
739
+ <workItem from="1635864760383" duration="729000" />
740
+ <workItem from="1635865507309" duration="7376000" />
715
741
  </task>
716
- <task id="LOCAL-00783" summary="Bug : table &amp; background color #722&#10;Issue: https://github.com/xdan/jodit/issues/722">
717
- <created>1633193976212</created>
718
- <option name="number" value="00783" />
719
- <option name="presentableId" value="LOCAL-00783" />
742
+ <task id="LOCAL-00836" summary="Rename events-native to event-emitter">
743
+ <created>1635183679922</created>
744
+ <option name="number" value="00836" />
745
+ <option name="presentableId" value="LOCAL-00836" />
720
746
  <option name="project" value="LOCAL" />
721
- <updated>1633193976212</updated>
747
+ <updated>1635183679922</updated>
722
748
  </task>
723
- <task id="LOCAL-00784" summary="Fixed typing, remove import ts files from d.ts">
724
- <created>1633195880031</created>
725
- <option name="number" value="00784" />
726
- <option name="presentableId" value="LOCAL-00784" />
749
+ <task id="LOCAL-00837" summary="Rename events-native to event-emitter">
750
+ <created>1635183714470</created>
751
+ <option name="number" value="00837" />
752
+ <option name="presentableId" value="LOCAL-00837" />
727
753
  <option name="project" value="LOCAL" />
728
- <updated>1633195880031</updated>
754
+ <updated>1635183714470</updated>
729
755
  </task>
730
- <task id="LOCAL-00785" summary="Added `styleValues` option &#10;Issue: https://github.com/xdan/jodit/issues/719">
731
- <created>1633208904339</created>
732
- <option name="number" value="00785" />
733
- <option name="presentableId" value="LOCAL-00785" />
756
+ <task id="LOCAL-00838" summary="Rename events-native.ts to event-emitter.ts">
757
+ <created>1635183915598</created>
758
+ <option name="number" value="00838" />
759
+ <option name="presentableId" value="LOCAL-00838" />
734
760
  <option name="project" value="LOCAL" />
735
- <updated>1633208904339</updated>
761
+ <updated>1635183915598</updated>
736
762
  </task>
737
- <task id="LOCAL-00786" summary="Added `styleValues` option &#10;Issue: https://github.com/xdan/jodit/issues/719">
738
- <created>1633208956443</created>
739
- <option name="number" value="00786" />
740
- <option name="presentableId" value="LOCAL-00786" />
763
+ <task id="LOCAL-00839" summary="Rename events-native.ts to event-emitter.ts">
764
+ <created>1635184064305</created>
765
+ <option name="number" value="00839" />
766
+ <option name="presentableId" value="LOCAL-00839" />
741
767
  <option name="project" value="LOCAL" />
742
- <updated>1633208956443</updated>
768
+ <updated>1635184064305</updated>
743
769
  </task>
744
- <task id="LOCAL-00787" summary="Remove import .ts in .d.ts&#10;Issue: https://github.com/xdan/jodit/issues/720">
745
- <created>1633210885285</created>
746
- <option name="number" value="00787" />
747
- <option name="presentableId" value="LOCAL-00787" />
770
+ <task id="LOCAL-00840" summary="ReBuild">
771
+ <created>1635184106602</created>
772
+ <option name="number" value="00840" />
773
+ <option name="presentableId" value="LOCAL-00840" />
748
774
  <option name="project" value="LOCAL" />
749
- <updated>1633210885285</updated>
775
+ <updated>1635184106602</updated>
750
776
  </task>
751
- <task id="LOCAL-00788" summary="Video links are not reliably converted to an IFrame. #714&#10;Issue: https://github.com/xdan/jodit/issues/714">
752
- <created>1633211241672</created>
753
- <option name="number" value="00788" />
754
- <option name="presentableId" value="LOCAL-00788" />
777
+ <task id="LOCAL-00841" summary="Rename events-native.ts to event-emitter.ts">
778
+ <created>1635184241538</created>
779
+ <option name="number" value="00841" />
780
+ <option name="presentableId" value="LOCAL-00841" />
755
781
  <option name="project" value="LOCAL" />
756
- <updated>1633211241672</updated>
782
+ <updated>1635184241538</updated>
757
783
  </task>
758
- <task id="LOCAL-00789" summary="Video links are not reliably converted to an IFrame. #714&#10;Issue: https://github.com/xdan/jodit/issues/714">
759
- <created>1633211273012</created>
760
- <option name="number" value="00789" />
761
- <option name="presentableId" value="LOCAL-00789" />
784
+ <task id="LOCAL-00842" summary="ReBuild">
785
+ <created>1635184250925</created>
786
+ <option name="number" value="00842" />
787
+ <option name="presentableId" value="LOCAL-00842" />
762
788
  <option name="project" value="LOCAL" />
763
- <updated>1633211273012</updated>
789
+ <updated>1635184250925</updated>
764
790
  </task>
765
- <task id="LOCAL-00790" summary="Video links are not reliably converted to an IFrame. #714&#10;Issue: https://github.com/xdan/jodit/issues/714">
766
- <created>1633211285674</created>
767
- <option name="number" value="00790" />
768
- <option name="presentableId" value="LOCAL-00790" />
791
+ <task id="LOCAL-00843" summary="Small refactoring">
792
+ <created>1635184331470</created>
793
+ <option name="number" value="00843" />
794
+ <option name="presentableId" value="LOCAL-00843" />
769
795
  <option name="project" value="LOCAL" />
770
- <updated>1633211285674</updated>
796
+ <updated>1635184331470</updated>
771
797
  </task>
772
- <task id="LOCAL-00791" summary="Fix link">
773
- <created>1633211573133</created>
774
- <option name="number" value="00791" />
775
- <option name="presentableId" value="LOCAL-00791" />
798
+ <task id="LOCAL-00844" summary="Small refactoring">
799
+ <created>1635184373662</created>
800
+ <option name="number" value="00844" />
801
+ <option name="presentableId" value="LOCAL-00844" />
776
802
  <option name="project" value="LOCAL" />
777
- <updated>1633211573133</updated>
803
+ <updated>1635184373662</updated>
778
804
  </task>
779
- <task id="LOCAL-00792" summary="Fix Lint">
780
- <created>1633215126931</created>
781
- <option name="number" value="00792" />
782
- <option name="presentableId" value="LOCAL-00792" />
805
+ <task id="LOCAL-00845" summary="BOOM: Move Ajax class into `request` folder. Changed the signature of the send method in the Ajax API and is closer to the fetch () API">
806
+ <created>1635184520307</created>
807
+ <option name="number" value="00845" />
808
+ <option name="presentableId" value="LOCAL-00845" />
783
809
  <option name="project" value="LOCAL" />
784
- <updated>1633215126931</updated>
810
+ <updated>1635184520307</updated>
785
811
  </task>
786
- <task id="LOCAL-00793" summary="Fixed test in FF">
787
- <created>1633216026871</created>
788
- <option name="number" value="00793" />
789
- <option name="presentableId" value="LOCAL-00793" />
812
+ <task id="LOCAL-00846" summary="Small Refactoring Table module">
813
+ <created>1635184546540</created>
814
+ <option name="number" value="00846" />
815
+ <option name="presentableId" value="LOCAL-00846" />
790
816
  <option name="project" value="LOCAL" />
791
- <updated>1633216026871</updated>
817
+ <updated>1635184546540</updated>
792
818
  </task>
793
- <task id="LOCAL-00794" summary="Added .npmignore&#10;Issue: https://github.com/xdan/jodit/issues/720">
794
- <created>1633216779783</created>
795
- <option name="number" value="00794" />
796
- <option name="presentableId" value="LOCAL-00794" />
819
+ <task id="LOCAL-00847" summary="Added test for issue: https://github.com/xdan/jodit/issues/547">
820
+ <created>1635184690546</created>
821
+ <option name="number" value="00847" />
822
+ <option name="presentableId" value="LOCAL-00847" />
797
823
  <option name="project" value="LOCAL" />
798
- <updated>1633216779783</updated>
824
+ <updated>1635184690546</updated>
799
825
  </task>
800
- <task id="LOCAL-00795" summary="Fixed security issue.&#10;Issue: https://github.com/xdan/jodit/issues/702">
801
- <created>1633361627993</created>
802
- <option name="number" value="00795" />
803
- <option name="presentableId" value="LOCAL-00795" />
826
+ <task id="LOCAL-00848" summary="Remove from NPM extra files">
827
+ <created>1635185314916</created>
828
+ <option name="number" value="00848" />
829
+ <option name="presentableId" value="LOCAL-00848" />
804
830
  <option name="project" value="LOCAL" />
805
- <updated>1633361627994</updated>
831
+ <updated>1635185314916</updated>
806
832
  </task>
807
- <task id="LOCAL-00796" summary="Move source button in the end">
808
- <created>1633361644168</created>
809
- <option name="number" value="00796" />
810
- <option name="presentableId" value="LOCAL-00796" />
833
+ <task id="LOCAL-00849" summary="Fixed Resize column table #712&#10;Issue: https://github.com/xdan/jodit/issues/712&#10;&#10;Delete multi rows and colums #690&#10;Issue: https://github.com/xdan/jodit/issues/690">
834
+ <created>1635196606990</created>
835
+ <option name="number" value="00849" />
836
+ <option name="presentableId" value="LOCAL-00849" />
811
837
  <option name="project" value="LOCAL" />
812
- <updated>1633361644168</updated>
838
+ <updated>1635196606990</updated>
813
839
  </task>
814
- <task id="LOCAL-00797" summary="Move source button in the end">
815
- <created>1633374989369</created>
816
- <option name="number" value="00797" />
817
- <option name="presentableId" value="LOCAL-00797" />
840
+ <task id="LOCAL-00850" summary="Fixed Resize column table #712&#10;Issue: https://github.com/xdan/jodit/issues/712&#10;&#10;Delete multi rows and colums #690&#10;Issue: https://github.com/xdan/jodit/issues/690">
841
+ <created>1635196663335</created>
842
+ <option name="number" value="00850" />
843
+ <option name="presentableId" value="LOCAL-00850" />
818
844
  <option name="project" value="LOCAL" />
819
- <updated>1633374989369</updated>
845
+ <updated>1635196663335</updated>
820
846
  </task>
821
- <task id="LOCAL-00798" summary="Fixed bug in safeHTML util">
822
- <created>1633376996622</created>
823
- <option name="number" value="00798" />
824
- <option name="presentableId" value="LOCAL-00798" />
847
+ <task id="LOCAL-00851" summary="Fixed Indent doesn't work in table cell #729&#10;Issue: https://github.com/xdan/jodit/issues/729">
848
+ <created>1635197814774</created>
849
+ <option name="number" value="00851" />
850
+ <option name="presentableId" value="LOCAL-00851" />
825
851
  <option name="project" value="LOCAL" />
826
- <updated>1633376996622</updated>
852
+ <updated>1635197814774</updated>
827
853
  </task>
828
- <task id="LOCAL-00799" summary="Fixed bug in safeHTML util">
829
- <created>1633377154814</created>
830
- <option name="number" value="00799" />
831
- <option name="presentableId" value="LOCAL-00799" />
854
+ <task id="LOCAL-00852" summary="When {&quot;enter&quot;: &quot;BR&quot;} option is enabled, adding a heading to the text causes it to become wrapped by a &quot;h*&quot; tag #547&#10;Issue: https://github.com/xdan/jodit/issues/547">
855
+ <created>1635198782089</created>
856
+ <option name="number" value="00852" />
857
+ <option name="presentableId" value="LOCAL-00852" />
832
858
  <option name="project" value="LOCAL" />
833
- <updated>1633377154815</updated>
859
+ <updated>1635198782089</updated>
834
860
  </task>
835
- <task id="LOCAL-00800" summary="Remove javascript:void">
836
- <created>1633378787646</created>
837
- <option name="number" value="00800" />
838
- <option name="presentableId" value="LOCAL-00800" />
861
+ <task id="LOCAL-00853" summary="Change Dom.each/find to generator API">
862
+ <created>1635207749968</created>
863
+ <option name="number" value="00853" />
864
+ <option name="presentableId" value="LOCAL-00853" />
839
865
  <option name="project" value="LOCAL" />
840
- <updated>1633378787646</updated>
866
+ <updated>1635207749968</updated>
841
867
  </task>
842
- <task id="LOCAL-00801" summary="Refused to run the JavaScript URL because it violates the following Content Security Policy directive #716&#10;Issue: https://github.com/xdan/jodit/issues/716">
843
- <created>1633378858267</created>
844
- <option name="number" value="00801" />
845
- <option name="presentableId" value="LOCAL-00801" />
868
+ <task id="LOCAL-00854" summary="Issue with clear format on &lt;p&gt; tags #680&#10;Issue: https://github.com/xdan/jodit/issues/680">
869
+ <created>1635263441562</created>
870
+ <option name="number" value="00854" />
871
+ <option name="presentableId" value="LOCAL-00854" />
846
872
  <option name="project" value="LOCAL" />
847
- <updated>1633378858267</updated>
873
+ <updated>1635263441562</updated>
848
874
  </task>
849
- <task id="LOCAL-00802" summary="Refused to run the JavaScript URL because it violates the following Content Security Policy directive #716&#10;Issue: https://github.com/xdan/jodit/issues/716">
850
- <created>1633378868342</created>
851
- <option name="number" value="00802" />
852
- <option name="presentableId" value="LOCAL-00802" />
875
+ <task id="LOCAL-00855" summary="Indent doesn't work in table cell #729&#10;Issue: https://github.com/xdan/jodit/issues/729">
876
+ <created>1635263566598</created>
877
+ <option name="number" value="00855" />
878
+ <option name="presentableId" value="LOCAL-00855" />
853
879
  <option name="project" value="LOCAL" />
854
- <updated>1633378868342</updated>
880
+ <updated>1635263566598</updated>
855
881
  </task>
856
- <task id="LOCAL-00803" summary="Refused to run the JavaScript URL because it violates the following Content Security Policy directive #716&#10;Issue: https://github.com/xdan/jodit/issues/716">
857
- <created>1633378923083</created>
858
- <option name="number" value="00803" />
859
- <option name="presentableId" value="LOCAL-00803" />
882
+ <task id="LOCAL-00856" summary="Added generators methods">
883
+ <created>1635263605966</created>
884
+ <option name="number" value="00856" />
885
+ <option name="presentableId" value="LOCAL-00856" />
860
886
  <option name="project" value="LOCAL" />
861
- <updated>1633378923083</updated>
887
+ <updated>1635263605966</updated>
862
888
  </task>
863
- <task id="LOCAL-00804" summary="Refused to run the JavaScript URL because it violates the following Content Security Policy directive #716&#10;Issue: https://github.com/xdan/jodit/issues/716">
864
- <created>1633381516674</created>
865
- <option name="number" value="00804" />
866
- <option name="presentableId" value="LOCAL-00804" />
889
+ <task id="LOCAL-00857" summary="Fix test">
890
+ <created>1635263664350</created>
891
+ <option name="number" value="00857" />
892
+ <option name="presentableId" value="LOCAL-00857" />
867
893
  <option name="project" value="LOCAL" />
868
- <updated>1633381516674</updated>
894
+ <updated>1635263664350</updated>
869
895
  </task>
870
- <task id="LOCAL-00805" summary="Refused to run the JavaScript URL because it violates the following Content Security Policy directive #716&#10;Issue: https://github.com/xdan/jodit/issues/716">
871
- <created>1633381818176</created>
872
- <option name="number" value="00805" />
873
- <option name="presentableId" value="LOCAL-00805" />
896
+ <task id="LOCAL-00858" summary="BOOM: Move Ajax class into `request` folder. Change `send`">
897
+ <created>1635263697875</created>
898
+ <option name="number" value="00858" />
899
+ <option name="presentableId" value="LOCAL-00858" />
874
900
  <option name="project" value="LOCAL" />
875
- <updated>1633381818176</updated>
901
+ <updated>1635263697875</updated>
876
902
  </task>
877
- <task id="LOCAL-00806" summary="Fixed tests">
878
- <created>1633382217031</created>
879
- <option name="number" value="00806" />
880
- <option name="presentableId" value="LOCAL-00806" />
903
+ <task id="LOCAL-00859" summary="Font and font size settings are not applied to all text if part of it has been changed earlier #706&#10;Issue: https://github.com/xdan/jodit/issues/706">
904
+ <created>1635263745819</created>
905
+ <option name="number" value="00859" />
906
+ <option name="presentableId" value="LOCAL-00859" />
881
907
  <option name="project" value="LOCAL" />
882
- <updated>1633382217031</updated>
908
+ <updated>1635263745819</updated>
883
909
  </task>
884
- <task id="LOCAL-00807" summary="All tests are green">
885
- <created>1633383865003</created>
886
- <option name="number" value="00807" />
887
- <option name="presentableId" value="LOCAL-00807" />
910
+ <task id="LOCAL-00860" summary="cleanHTML replaceOldTags doesn't seem to do anything #728&#10;Issue: https://github.com/xdan/jodit/issues/728">
911
+ <created>1635265019779</created>
912
+ <option name="number" value="00860" />
913
+ <option name="presentableId" value="LOCAL-00860" />
888
914
  <option name="project" value="LOCAL" />
889
- <updated>1633383865003</updated>
915
+ <updated>1635265019780</updated>
890
916
  </task>
891
- <task id="LOCAL-00808" summary="Scrolling to top of editor bug in Safari. #715&#10;Issue: https://github.com/xdan/jodit/issues/715">
892
- <created>1633385287327</created>
893
- <option name="number" value="00808" />
894
- <option name="presentableId" value="LOCAL-00808" />
917
+ <task id="LOCAL-00861" summary="cleanHTML replaceOldTags doesn't seem to do anything #728&#10;Issue: https://github.com/xdan/jodit/issues/728">
918
+ <created>1635265058570</created>
919
+ <option name="number" value="00861" />
920
+ <option name="presentableId" value="LOCAL-00861" />
895
921
  <option name="project" value="LOCAL" />
896
- <updated>1633385287328</updated>
922
+ <updated>1635265058570</updated>
897
923
  </task>
898
- <task id="LOCAL-00809" summary="Change default demo color">
899
- <created>1633385303202</created>
900
- <option name="number" value="00809" />
901
- <option name="presentableId" value="LOCAL-00809" />
924
+ <task id="LOCAL-00862" summary="cleanHTML replaceOldTags doesn't seem to do anything #728&#10;Issue: https://github.com/xdan/jodit/issues/728">
925
+ <created>1635265116373</created>
926
+ <option name="number" value="00862" />
927
+ <option name="presentableId" value="LOCAL-00862" />
902
928
  <option name="project" value="LOCAL" />
903
- <updated>1633385303203</updated>
929
+ <updated>1635265116373</updated>
904
930
  </task>
905
- <task id="LOCAL-00810" summary="Popup doesn't follow the toolbar on scroll #703&#10;Issue: https://github.com/xdan/jodit/issues/703">
906
- <created>1633386309227</created>
907
- <option name="number" value="00810" />
908
- <option name="presentableId" value="LOCAL-00810" />
931
+ <task id="LOCAL-00863" summary="cleanHTML replaceOldTags doesn't seem to do anything #728&#10;Issue: https://github.com/xdan/jodit/issues/728">
932
+ <created>1635265314052</created>
933
+ <option name="number" value="00863" />
934
+ <option name="presentableId" value="LOCAL-00863" />
909
935
  <option name="project" value="LOCAL" />
910
- <updated>1633386309227</updated>
936
+ <updated>1635265314052</updated>
911
937
  </task>
912
- <task id="LOCAL-00811" summary="Change default button color">
913
- <created>1633386323282</created>
914
- <option name="number" value="00811" />
915
- <option name="presentableId" value="LOCAL-00811" />
938
+ <task id="LOCAL-00864" summary="Up">
939
+ <created>1635265778599</created>
940
+ <option name="number" value="00864" />
941
+ <option name="presentableId" value="LOCAL-00864" />
916
942
  <option name="project" value="LOCAL" />
917
- <updated>1633386323282</updated>
943
+ <updated>1635265778599</updated>
918
944
  </task>
919
- <task id="LOCAL-00812" summary="Added `resizer.forImageChangeAttribute=true` option&#10;Issue: https://github.com/xdan/jodit/issues/696">
920
- <created>1633387386503</created>
921
- <option name="number" value="00812" />
922
- <option name="presentableId" value="LOCAL-00812" />
945
+ <task id="LOCAL-00865" summary="Added test for issue https://github.com/xdan/jodit/issues/522">
946
+ <created>1635265918713</created>
947
+ <option name="number" value="00865" />
948
+ <option name="presentableId" value="LOCAL-00865" />
923
949
  <option name="project" value="LOCAL" />
924
- <updated>1633387386503</updated>
950
+ <updated>1635265918713</updated>
925
951
  </task>
926
- <task id="LOCAL-00813" summary="Added `resizer.forImageChangeAttribute=true` option&#10;Issue: https://github.com/xdan/jodit/issues/696">
927
- <created>1633387698794</created>
928
- <option name="number" value="00813" />
929
- <option name="presentableId" value="LOCAL-00813" />
952
+ <task id="LOCAL-00866" summary="Goodbye Travis! You were a good helper">
953
+ <created>1635266766439</created>
954
+ <option name="number" value="00866" />
955
+ <option name="presentableId" value="LOCAL-00866" />
930
956
  <option name="project" value="LOCAL" />
931
- <updated>1633387698794</updated>
957
+ <updated>1635266766439</updated>
932
958
  </task>
933
- <task id="LOCAL-00814" summary="Added `resizer.forImageChangeAttribute=true` option&#10;Issue: https://github.com/xdan/jodit/issues/696">
934
- <created>1633388937755</created>
935
- <option name="number" value="00814" />
936
- <option name="presentableId" value="LOCAL-00814" />
959
+ <task id="LOCAL-00867" summary="Fixed tests in FF">
960
+ <created>1635267402759</created>
961
+ <option name="number" value="00867" />
962
+ <option name="presentableId" value="LOCAL-00867" />
937
963
  <option name="project" value="LOCAL" />
938
- <updated>1633388937756</updated>
964
+ <updated>1635267402759</updated>
939
965
  </task>
940
- <task id="LOCAL-00815" summary="Lint">
941
- <created>1633417953700</created>
942
- <option name="number" value="00815" />
943
- <option name="presentableId" value="LOCAL-00815" />
966
+ <task id="LOCAL-00868" summary="Fixed tests in FF">
967
+ <created>1635267507492</created>
968
+ <option name="number" value="00868" />
969
+ <option name="presentableId" value="LOCAL-00868" />
944
970
  <option name="project" value="LOCAL" />
945
- <updated>1633417953700</updated>
971
+ <updated>1635267507492</updated>
946
972
  </task>
947
- <task id="LOCAL-00816" summary="Added types folder in ignore list">
948
- <created>1633418176825</created>
949
- <option name="number" value="00816" />
950
- <option name="presentableId" value="LOCAL-00816" />
973
+ <task id="LOCAL-00869" summary="Remove gitter">
974
+ <created>1635268743480</created>
975
+ <option name="number" value="00869" />
976
+ <option name="presentableId" value="LOCAL-00869" />
951
977
  <option name="project" value="LOCAL" />
952
- <updated>1633418176825</updated>
978
+ <updated>1635268743480</updated>
953
979
  </task>
954
- <task id="LOCAL-00817" summary="Try generate compiled types">
955
- <created>1633419245177</created>
956
- <option name="number" value="00817" />
957
- <option name="presentableId" value="LOCAL-00817" />
980
+ <task id="LOCAL-00870" summary="Fixed tables resizing">
981
+ <created>1635278972581</created>
982
+ <option name="number" value="00870" />
983
+ <option name="presentableId" value="LOCAL-00870" />
958
984
  <option name="project" value="LOCAL" />
959
- <updated>1633419245177</updated>
985
+ <updated>1635278972581</updated>
960
986
  </task>
961
- <task id="LOCAL-00818" summary="Try generate compiled types">
962
- <created>1633466770860</created>
963
- <option name="number" value="00818" />
964
- <option name="presentableId" value="LOCAL-00818" />
987
+ <task id="LOCAL-00871" summary="- Changed style resize rectangle for resize image or table&#10;- Added link `POWERED BY JODIT` in statusbar&#10;- Changed icon for resize handle in the bottom right corner&#10;- Fixed popup color for dark theme">
988
+ <created>1635350607682</created>
989
+ <option name="number" value="00871" />
990
+ <option name="presentableId" value="LOCAL-00871" />
965
991
  <option name="project" value="LOCAL" />
966
- <updated>1633466770861</updated>
992
+ <updated>1635350607682</updated>
967
993
  </task>
968
- <task id="LOCAL-00819" summary="In EventEmiter added mute/unmute/isMuted methods">
969
- <created>1634313215564</created>
970
- <option name="number" value="00819" />
971
- <option name="presentableId" value="LOCAL-00819" />
994
+ <task id="LOCAL-00872" summary="Added test for issue: https://github.com/xdan/jodit/issues/738">
995
+ <created>1635350805292</created>
996
+ <option name="number" value="00872" />
997
+ <option name="presentableId" value="LOCAL-00872" />
972
998
  <option name="project" value="LOCAL" />
973
- <updated>1634313215564</updated>
999
+ <updated>1635350805292</updated>
974
1000
  </task>
975
- <task id="LOCAL-00820" summary="Added static markTemporary isTemporary in Dom module">
976
- <created>1634313334803</created>
977
- <option name="number" value="00820" />
978
- <option name="presentableId" value="LOCAL-00820" />
1001
+ <task id="LOCAL-00873" summary="Fixed unsupported fonts preview">
1002
+ <created>1635542179550</created>
1003
+ <option name="number" value="00873" />
1004
+ <option name="presentableId" value="LOCAL-00873" />
979
1005
  <option name="project" value="LOCAL" />
980
- <updated>1634313334804</updated>
1006
+ <updated>1635542179550</updated>
981
1007
  </task>
982
- <task id="LOCAL-00821" summary="Misspeling">
983
- <created>1634313348854</created>
984
- <option name="number" value="00821" />
985
- <option name="presentableId" value="LOCAL-00821" />
1008
+ <task id="LOCAL-00874" summary="Small facelift">
1009
+ <created>1635542254580</created>
1010
+ <option name="number" value="00874" />
1011
+ <option name="presentableId" value="LOCAL-00874" />
986
1012
  <option name="project" value="LOCAL" />
987
- <updated>1634313348854</updated>
1013
+ <updated>1635542254580</updated>
988
1014
  </task>
989
- <task id="LOCAL-00822" summary="Allow use attr with dictionary">
990
- <created>1634313365187</created>
991
- <option name="number" value="00822" />
992
- <option name="presentableId" value="LOCAL-00822" />
1015
+ <task id="LOCAL-00875" summary="Big apply style system - refactoring">
1016
+ <created>1635553640358</created>
1017
+ <option name="number" value="00875" />
1018
+ <option name="presentableId" value="LOCAL-00875" />
993
1019
  <option name="project" value="LOCAL" />
994
- <updated>1634313365187</updated>
1020
+ <updated>1635553640358</updated>
995
1021
  </task>
996
- <task id="LOCAL-00823" summary="Refactoring">
997
- <created>1634315001036</created>
998
- <option name="number" value="00823" />
999
- <option name="presentableId" value="LOCAL-00823" />
1022
+ <task id="LOCAL-00876" summary="Fixed dots supplementary buttons shown incorrectly #692&#10;Issue: https://github.com/xdan/jodit/issues/692">
1023
+ <created>1635870623738</created>
1024
+ <option name="number" value="00876" />
1025
+ <option name="presentableId" value="LOCAL-00876" />
1000
1026
  <option name="project" value="LOCAL" />
1001
- <updated>1634315001036</updated>
1027
+ <updated>1635870623738</updated>
1002
1028
  </task>
1003
- <task id="LOCAL-00824" summary="Fix linter bug">
1004
- <created>1634318639569</created>
1005
- <option name="number" value="00824" />
1006
- <option name="presentableId" value="LOCAL-00824" />
1029
+ <task id="LOCAL-00877" summary="Fixed dots supplementary buttons shown incorrectly #692&#10;Issue: https://github.com/xdan/jodit/issues/692">
1030
+ <created>1635870712545</created>
1031
+ <option name="number" value="00877" />
1032
+ <option name="presentableId" value="LOCAL-00877" />
1007
1033
  <option name="project" value="LOCAL" />
1008
- <updated>1634318639569</updated>
1034
+ <updated>1635870712545</updated>
1009
1035
  </task>
1010
- <task id="LOCAL-00825" summary="The build system is divided into modules and is now located in the 'build-system' folder, the `src/utils` folder has been moved to it.">
1011
- <created>1634799033815</created>
1012
- <option name="number" value="00825" />
1013
- <option name="presentableId" value="LOCAL-00825" />
1036
+ <task id="LOCAL-00878" summary="Change html tags when list style on/off #738&#10;Issue: https://github.com/xdan/jodit/issues/738&#10;order list/unorder list in source view #732&#10;Issue: https://github.com/xdan/jodit/issues/732">
1037
+ <created>1635870787537</created>
1038
+ <option name="number" value="00878" />
1039
+ <option name="presentableId" value="LOCAL-00878" />
1014
1040
  <option name="project" value="LOCAL" />
1015
- <updated>1634799033815</updated>
1041
+ <updated>1635870787537</updated>
1016
1042
  </task>
1017
- <task id="LOCAL-00826" summary="The build system is divided into modules and is now located in the 'build-system' folder, the `src/utils` folder has been moved to it.">
1018
- <created>1634799111126</created>
1019
- <option name="number" value="00826" />
1020
- <option name="presentableId" value="LOCAL-00826" />
1043
+ <task id="LOCAL-00879" summary="Change html tags when list style on/off #738&#10;Issue: https://github.com/xdan/jodit/issues/738&#10;order list/unorder list in source view #732&#10;Issue: https://github.com/xdan/jodit/issues/732">
1044
+ <created>1635870816925</created>
1045
+ <option name="number" value="00879" />
1046
+ <option name="presentableId" value="LOCAL-00879" />
1021
1047
  <option name="project" value="LOCAL" />
1022
- <updated>1634799111126</updated>
1048
+ <updated>1635870816925</updated>
1023
1049
  </task>
1024
- <task id="LOCAL-00827" summary="Color dropdown looks broken #736&#10;Issue: https://github.com/xdan/jodit/issues/736">
1025
- <created>1634799127007</created>
1026
- <option name="number" value="00827" />
1027
- <option name="presentableId" value="LOCAL-00827" />
1050
+ <task id="LOCAL-00880" summary="Fix condition for Jodit power">
1051
+ <created>1635870854517</created>
1052
+ <option name="number" value="00880" />
1053
+ <option name="presentableId" value="LOCAL-00880" />
1028
1054
  <option name="project" value="LOCAL" />
1029
- <updated>1634799127007</updated>
1055
+ <updated>1635870854517</updated>
1030
1056
  </task>
1031
- <task id="LOCAL-00828" summary=" When I merged some cells by dragging it to change its width. #737&#10; Issue: https://github.com/xdan/jodit/issues/737">
1032
- <created>1634799160225</created>
1033
- <option name="number" value="00828" />
1034
- <option name="presentableId" value="LOCAL-00828" />
1057
+ <task id="LOCAL-00881" summary="Fix test for new resizer style">
1058
+ <created>1635870874106</created>
1059
+ <option name="number" value="00881" />
1060
+ <option name="presentableId" value="LOCAL-00881" />
1035
1061
  <option name="project" value="LOCAL" />
1036
- <updated>1634799160225</updated>
1062
+ <updated>1635870874106</updated>
1037
1063
  </task>
1038
- <task id="LOCAL-00829" summary=" When I merged some cells by dragging it to change its width. #737&#10; Issue: https://github.com/xdan/jodit/issues/737&#10; &#10; shadow dom browser support #730&#10; Issue: https://github.com/xdan/jodit/issues/730">
1039
- <created>1634807023222</created>
1040
- <option name="number" value="00829" />
1041
- <option name="presentableId" value="LOCAL-00829" />
1064
+ <task id="LOCAL-00882" summary="Fix lints">
1065
+ <created>1635870925572</created>
1066
+ <option name="number" value="00882" />
1067
+ <option name="presentableId" value="LOCAL-00882" />
1042
1068
  <option name="project" value="LOCAL" />
1043
- <updated>1634807023222</updated>
1069
+ <updated>1635870925572</updated>
1044
1070
  </task>
1045
- <task id="LOCAL-00830" summary="Fixed work in IE11">
1046
- <created>1634890885099</created>
1047
- <option name="number" value="00830" />
1048
- <option name="presentableId" value="LOCAL-00830" />
1071
+ <task id="LOCAL-00883" summary="Jodit adds unexpected &lt;span&gt; tag when user lefts cursor inside &lt;script&gt; tag #687&#10;Issue: https://github.com/xdan/jodit/issues/687">
1072
+ <created>1635872495161</created>
1073
+ <option name="number" value="00883" />
1074
+ <option name="presentableId" value="LOCAL-00883" />
1049
1075
  <option name="project" value="LOCAL" />
1050
- <updated>1634890885100</updated>
1076
+ <updated>1635872495161</updated>
1051
1077
  </task>
1052
- <task id="LOCAL-00831" summary="Fixed work in IE11&#10;toolbar menus are almost not visible on IE11 #458&#10;Issue: https://github.com/xdan/jodit/issues/458">
1053
- <created>1634890950662</created>
1054
- <option name="number" value="00831" />
1055
- <option name="presentableId" value="LOCAL-00831" />
1078
+ <task id="LOCAL-00884" summary="Jodit adds unexpected &lt;span&gt; tag when user lefts cursor inside &lt;script&gt; tag #687&#10;Issue: https://github.com/xdan/jodit/issues/687">
1079
+ <created>1635872918386</created>
1080
+ <option name="number" value="00884" />
1081
+ <option name="presentableId" value="LOCAL-00884" />
1056
1082
  <option name="project" value="LOCAL" />
1057
- <updated>1634890950662</updated>
1083
+ <updated>1635872918386</updated>
1058
1084
  </task>
1059
- <option name="localTasksCounter" value="832" />
1085
+ <option name="localTasksCounter" value="885" />
1060
1086
  <servers />
1061
1087
  </component>
1062
1088
  <component name="TypeScriptGeneratedFilesManager">
1063
1089
  <option name="version" value="3" />
1064
- <option name="exactExcludedFiles">
1065
- <list>
1066
- <option value="$PROJECT_DIR$/src/types/storage.d.ts" />
1067
- <option value="$PROJECT_DIR$/src/types/core.d.ts" />
1068
- <option value="$PROJECT_DIR$/src/types/storage.js.map" />
1069
- <option value="$PROJECT_DIR$/src/types/core.js.map" />
1070
- <option value="$PROJECT_DIR$/src/types/core.js" />
1071
- <option value="$PROJECT_DIR$/src/types/storage.js" />
1072
- </list>
1073
- </option>
1074
1090
  </component>
1075
1091
  <component name="UnknownFeatures">
1076
1092
  <option featureType="com.intellij.configurationType" implementationName="BashConfigurationType" />
1077
1093
  </component>
1078
1094
  <component name="Vcs.Log.History.Properties">
1079
- <option name="COLUMN_ORDER">
1095
+ <option name="COLUMN_ID_ORDER">
1080
1096
  <list>
1081
- <option value="0" />
1082
- <option value="2" />
1083
- <option value="3" />
1084
- <option value="1" />
1097
+ <option value="Default.Root" />
1098
+ <option value="Default.Author" />
1099
+ <option value="Default.Date" />
1100
+ <option value="Default.Subject" />
1085
1101
  </list>
1086
1102
  </option>
1087
1103
  </component>
@@ -1155,12 +1171,38 @@
1155
1171
  </State>
1156
1172
  </value>
1157
1173
  </entry>
1174
+ <entry key="e9207ee6-0ed8-4617-a2df-2ad787cfa51a">
1175
+ <value>
1176
+ <State>
1177
+ <option name="SHOW_ONLY_AFFECTED_CHANGES" value="true" />
1178
+ <option name="FILTERS">
1179
+ <map>
1180
+ <entry key="branch">
1181
+ <value>
1182
+ <list>
1183
+ <option value="HEAD" />
1184
+ </list>
1185
+ </value>
1186
+ </entry>
1187
+ <entry key="structure">
1188
+ <value>
1189
+ <list>
1190
+ <option value="dir:/Users/v-chupurnov/WebstormProjects/pet/jodit/src/core" />
1191
+ </list>
1192
+ </value>
1193
+ </entry>
1194
+ </map>
1195
+ </option>
1196
+ </State>
1197
+ </value>
1198
+ </entry>
1158
1199
  </map>
1159
1200
  </option>
1160
1201
  <option name="OPEN_GENERIC_TABS">
1161
1202
  <map>
1162
1203
  <entry key="1" value="TOOL_WINDOW" />
1163
1204
  <entry key="2" value="TOOL_WINDOW" />
1205
+ <entry key="e9207ee6-0ed8-4617-a2df-2ad787cfa51a" value="TOOL_WINDOW" />
1164
1206
  </map>
1165
1207
  </option>
1166
1208
  <option name="RECENT_FILTERS">
@@ -1181,32 +1223,32 @@
1181
1223
  </component>
1182
1224
  <component name="VcsManagerConfiguration">
1183
1225
  <option name="CHECK_CODE_SMELLS_BEFORE_PROJECT_COMMIT" value="false" />
1184
- <MESSAGE value="Fixed bug in safeHTML util" />
1185
- <MESSAGE value="Remove javascript:void" />
1186
- <MESSAGE value="Refused to run the JavaScript URL because it violates the following Content Security Policy directive #716&#10;Issue: https://github.com/xdan/jodit/issues/716" />
1187
- <MESSAGE value="Fixed tests" />
1188
- <MESSAGE value="All tests are green" />
1189
- <MESSAGE value="Scrolling to top of editor bug in Safari. #715&#10;Issue: https://github.com/xdan/jodit/issues/715" />
1190
- <MESSAGE value="Change default demo color" />
1191
- <MESSAGE value="Popup doesn't follow the toolbar on scroll #703&#10;Issue: https://github.com/xdan/jodit/issues/703" />
1192
- <MESSAGE value="Change default button color" />
1193
- <MESSAGE value="Added `resizer.forImageChangeAttribute=true` option&#10;Issue: https://github.com/xdan/jodit/issues/696" />
1194
- <MESSAGE value="Lint" />
1195
- <MESSAGE value="Added types folder in ignore list" />
1196
- <MESSAGE value="Try generate compiled types" />
1197
- <MESSAGE value="In EventEmiter added mute/unmute/isMuted methods" />
1198
- <MESSAGE value="Added static markTemporary isTemporary in Dom module" />
1199
- <MESSAGE value="Misspeling" />
1200
- <MESSAGE value="Allow use attr with dictionary" />
1201
- <MESSAGE value="Refactoring" />
1202
- <MESSAGE value="Fix linter bug" />
1203
- <MESSAGE value="The build system is divided into modules and is now located in the 'build-system' folder, the `src/utils` folder has been moved to it." />
1204
- <MESSAGE value="Color dropdown looks broken #736&#10;Issue: https://github.com/xdan/jodit/issues/736" />
1205
- <MESSAGE value=" When I merged some cells by dragging it to change its width. #737&#10; Issue: https://github.com/xdan/jodit/issues/737" />
1206
- <MESSAGE value=" When I merged some cells by dragging it to change its width. #737&#10; Issue: https://github.com/xdan/jodit/issues/737&#10; &#10; shadow dom browser support #730&#10; Issue: https://github.com/xdan/jodit/issues/730" />
1207
- <MESSAGE value="Fixed work in IE11" />
1208
- <MESSAGE value="Fixed work in IE11&#10;toolbar menus are almost not visible on IE11 #458&#10;Issue: https://github.com/xdan/jodit/issues/458" />
1209
- <option name="LAST_COMMIT_MESSAGE" value="Fixed work in IE11&#10;toolbar menus are almost not visible on IE11 #458&#10;Issue: https://github.com/xdan/jodit/issues/458" />
1226
+ <MESSAGE value="Change Dom.each/find to generator API" />
1227
+ <MESSAGE value="Issue with clear format on &lt;p&gt; tags #680&#10;Issue: https://github.com/xdan/jodit/issues/680" />
1228
+ <MESSAGE value="Indent doesn't work in table cell #729&#10;Issue: https://github.com/xdan/jodit/issues/729" />
1229
+ <MESSAGE value="Added generators methods" />
1230
+ <MESSAGE value="Fix test" />
1231
+ <MESSAGE value="Font and font size settings are not applied to all text if part of it has been changed earlier #706&#10;Issue: https://github.com/xdan/jodit/issues/706" />
1232
+ <MESSAGE value="BOOM: Move Ajax class into `request` folder. Change `send`" />
1233
+ <MESSAGE value="cleanHTML replaceOldTags doesn't seem to do anything #728&#10;Issue: https://github.com/xdan/jodit/issues/728" />
1234
+ <MESSAGE value="Up" />
1235
+ <MESSAGE value="Added test for issue https://github.com/xdan/jodit/issues/522" />
1236
+ <MESSAGE value="Goodbye Travis! You were a good helper" />
1237
+ <MESSAGE value="Fixed tests in FF" />
1238
+ <MESSAGE value="Remove gitter" />
1239
+ <MESSAGE value="Fixed tables resizing" />
1240
+ <MESSAGE value="- Changed style resize rectangle for resize image or table&#10;- Added link `POWERED BY JODIT` in statusbar&#10;- Changed icon for resize handle in the bottom right corner&#10;- Fixed popup color for dark theme" />
1241
+ <MESSAGE value="Added test for issue: https://github.com/xdan/jodit/issues/738" />
1242
+ <MESSAGE value="Fixed unsupported fonts preview" />
1243
+ <MESSAGE value="Small facelift" />
1244
+ <MESSAGE value="Big apply style system - refactoring" />
1245
+ <MESSAGE value="Change html tags when list style on/off #738&#10;Issue: https://github.com/xdan/jodit/issues/738&#10;order list/unorder list in source view #732&#10;Issue: https://github.com/xdan/jodit/issues/732" />
1246
+ <MESSAGE value="Fix condition for Jodit power" />
1247
+ <MESSAGE value="Fix test for new resizer style" />
1248
+ <MESSAGE value="Fix lints" />
1249
+ <MESSAGE value="Fixed dots supplementary buttons shown incorrectly #692&#10;Issue: https://github.com/xdan/jodit/issues/692" />
1250
+ <MESSAGE value="Jodit adds unexpected &lt;span&gt; tag when user lefts cursor inside &lt;script&gt; tag #687&#10;Issue: https://github.com/xdan/jodit/issues/687" />
1251
+ <option name="LAST_COMMIT_MESSAGE" value="Jodit adds unexpected &lt;span&gt; tag when user lefts cursor inside &lt;script&gt; tag #687&#10;Issue: https://github.com/xdan/jodit/issues/687" />
1210
1252
  </component>
1211
1253
  <component name="XDebuggerManager">
1212
1254
  <breakpoint-manager>
@@ -1273,7 +1315,7 @@
1273
1315
  </line-breakpoint>
1274
1316
  <line-breakpoint enabled="true" type="javascript">
1275
1317
  <url>file://$PROJECT_DIR$/test/tests/units/modules/dom.js</url>
1276
- <line>27</line>
1318
+ <line>60</line>
1277
1319
  <option name="timeStamp" value="52" />
1278
1320
  </line-breakpoint>
1279
1321
  </breakpoints>