jodit 3.9.2 → 3.10.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (216) hide show
  1. package/.idea/workspace.xml +317 -283
  2. package/CHANGELOG.MD +320 -118
  3. package/README.md +0 -1
  4. package/build/jodit.css +703 -617
  5. package/build/jodit.es2018.css +493 -437
  6. package/build/jodit.es2018.en.css +493 -437
  7. package/build/jodit.es2018.en.js +1549 -773
  8. package/build/jodit.es2018.en.min.css +1 -1
  9. package/build/jodit.es2018.en.min.js +1 -1
  10. package/build/jodit.es2018.js +1549 -773
  11. package/build/jodit.es2018.min.css +1 -1
  12. package/build/jodit.es2018.min.js +1 -1
  13. package/build/jodit.js +2616 -1713
  14. package/build/jodit.min.css +2 -2
  15. package/build/jodit.min.js +1 -1
  16. package/index.d.ts +10 -0
  17. package/package.json +10 -10
  18. package/src/config.ts +19 -20
  19. package/src/core/component/component.ts +16 -15
  20. package/src/core/component/statuses.ts +6 -6
  21. package/src/core/dom.ts +16 -4
  22. package/src/core/events/event-emitter.ts +4 -2
  23. package/src/core/global.ts +13 -2
  24. package/src/core/helpers/append-script.ts +14 -0
  25. package/src/core/helpers/selector.ts +8 -3
  26. package/src/core/helpers/size/index.ts +1 -0
  27. package/src/core/helpers/size/object-size.ts +22 -0
  28. package/src/core/selection/select.ts +1 -0
  29. package/src/core/selection/style/api/{get-closest-wrapper.ts → extract.ts} +26 -43
  30. package/src/core/selection/style/api/finite-state-machine.ts +66 -0
  31. package/src/core/selection/style/api/index.ts +12 -5
  32. package/src/core/selection/style/api/{check-special-elements.ts → is-inside-invisible-element.ts} +1 -1
  33. package/src/core/selection/style/api/is-suit-element.ts +12 -1
  34. package/src/core/selection/style/api/toggle/toggle-css.ts +134 -0
  35. package/src/core/selection/style/api/toggle/toggle-ordered-list.ts +49 -0
  36. package/src/core/selection/style/api/toggle-commit-styles.ts +27 -0
  37. package/src/core/selection/style/api/wrap-and-commit-style.ts +68 -0
  38. package/src/core/selection/style/api/wrap-ordered-list.ts +37 -0
  39. package/src/core/selection/style/api/wrap-unwrapped-text.ts +1 -4
  40. package/src/core/selection/style/apply-style.ts +161 -97
  41. package/src/core/selection/style/commit-style.ts +13 -0
  42. package/src/core/storage/engines/local-storage-provider.ts +9 -3
  43. package/src/core/storage/engines/memory-storage-provider.ts +6 -3
  44. package/src/core/storage/storage.ts +7 -4
  45. package/src/core/ui/button/button/button.less +10 -8
  46. package/src/core/ui/button/button/button.ts +9 -9
  47. package/src/core/ui/button/group/group.ts +2 -2
  48. package/src/core/ui/element.ts +4 -3
  49. package/src/core/ui/form/block/block.ts +1 -1
  50. package/src/core/ui/form/form.ts +8 -0
  51. package/src/core/ui/form/inputs/area/area.less +5 -0
  52. package/src/core/ui/form/inputs/area/area.ts +22 -1
  53. package/src/core/ui/form/inputs/checkbox/checkbox.ts +28 -4
  54. package/src/core/ui/form/inputs/input/input.less +1 -1
  55. package/src/core/ui/form/inputs/input/input.ts +14 -4
  56. package/src/core/ui/helpers/buttons.ts +14 -6
  57. package/src/core/ui/icon.ts +3 -1
  58. package/src/core/ui/index.ts +1 -3
  59. package/src/core/ui/list/group.less +8 -2
  60. package/src/core/ui/list/group.ts +2 -2
  61. package/src/{modules/file-browser/consts.ts → core/ui/list/index.ts} +4 -4
  62. package/src/core/ui/list/list.less +10 -1
  63. package/src/core/ui/list/list.ts +20 -3
  64. package/src/core/ui/{separator.ts → list/separator.ts} +2 -2
  65. package/src/core/ui/list/spacer.ts +15 -0
  66. package/src/core/ui/popup/popup.less +5 -3
  67. package/src/core/ui/popup/popup.ts +53 -1
  68. package/src/core/view/view-with-toolbar.ts +6 -1
  69. package/src/jodit.ts +17 -14
  70. package/src/modules/dialog/dialog.less +1 -16
  71. package/src/modules/dialog/dialog.ts +10 -3
  72. package/src/modules/file-browser/builders/context-menu.ts +29 -22
  73. package/src/modules/file-browser/config.ts +10 -2
  74. package/src/modules/file-browser/file-browser.ts +50 -29
  75. package/src/modules/file-browser/listeners/native-listeners.ts +37 -19
  76. package/src/modules/file-browser/listeners/state-listeners.ts +48 -22
  77. package/src/modules/file-browser/styles/file-browser.less +4 -291
  78. package/src/modules/file-browser/styles/preview.less +11 -8
  79. package/src/modules/file-browser/ui/files/files.less +174 -0
  80. package/src/modules/file-browser/ui/files/files.ts +14 -0
  81. package/src/modules/file-browser/ui/index.ts +8 -0
  82. package/src/modules/file-browser/ui/tree/tree.less +118 -0
  83. package/src/modules/file-browser/ui/tree/tree.ts +14 -0
  84. package/src/modules/status-bar/status-bar.less +27 -1
  85. package/src/modules/status-bar/status-bar.ts +15 -1
  86. package/src/modules/table.ts +122 -98
  87. package/src/modules/toolbar/collection/collection.ts +17 -8
  88. package/src/modules/toolbar/collection/editor-collection.ts +27 -2
  89. package/src/modules/widget/file-selector/file-selector.ts +1 -1
  90. package/src/modules/widget/tabs/tabs.less +2 -1
  91. package/src/modules/widget/tabs/tabs.ts +5 -3
  92. package/src/plugins/add-new-line/add-new-line.ts +1 -0
  93. package/src/plugins/bold.ts +2 -2
  94. package/src/plugins/clipboard/drag-and-drop.ts +4 -1
  95. package/src/plugins/clipboard/paste/paste.ts +1 -1
  96. package/src/plugins/font.ts +11 -1
  97. package/src/plugins/image/image-properties/image-properties.ts +7 -0
  98. package/src/plugins/index.ts +1 -0
  99. package/src/plugins/inline-popup/config/config.ts +1 -0
  100. package/src/plugins/inline-popup/config/items/toolbar.ts +33 -0
  101. package/src/plugins/inline-popup/inline-popup.ts +17 -0
  102. package/src/plugins/link/template.ts +2 -2
  103. package/src/plugins/mobile.ts +10 -14
  104. package/src/plugins/ordered-list.ts +40 -1
  105. package/src/plugins/powered-by-jodit.ts +39 -0
  106. package/src/plugins/print/preview.ts +103 -48
  107. package/src/plugins/resizer/resizer.less +10 -7
  108. package/src/plugins/resizer/resizer.ts +12 -14
  109. package/src/plugins/size/resize-handler.ts +4 -1
  110. package/src/plugins/size/size.less +2 -19
  111. package/src/plugins/size/size.ts +6 -1
  112. package/src/plugins/source/const.ts +7 -0
  113. package/src/plugins/source/editor/engines/ace.ts +5 -0
  114. package/src/plugins/source/source.ts +33 -7
  115. package/src/plugins/sticky/sticky.ts +2 -0
  116. package/src/plugins/table/config.ts +3 -1
  117. package/src/plugins/table/table.less +0 -1
  118. package/src/styles/icons/index.ts +2 -0
  119. package/src/styles/icons/resize-handler.svg +4 -0
  120. package/src/styles/jodit.less +6 -0
  121. package/src/styles/mixins.less +20 -0
  122. package/src/styles/themes/dark.less +11 -1
  123. package/src/types/ajax.d.ts +0 -1
  124. package/src/types/file-browser.d.ts +13 -1
  125. package/src/types/jodit.d.ts +4 -1
  126. package/src/types/popup.d.ts +1 -0
  127. package/src/types/select.d.ts +2 -0
  128. package/src/types/storage.ts +3 -3
  129. package/src/types/style.d.ts +8 -0
  130. package/src/types/toolbar.d.ts +9 -2
  131. package/src/types/types.d.ts +1 -1
  132. package/src/types/ui.d.ts +22 -4
  133. package/src/types/view.d.ts +1 -0
  134. package/types/core/component/component.d.ts +10 -5
  135. package/types/core/component/statuses.d.ts +6 -6
  136. package/types/core/dom.d.ts +3 -2
  137. package/types/core/helpers/append-script.d.ts +1 -0
  138. package/types/core/helpers/selector.d.ts +2 -3
  139. package/types/core/helpers/size/index.d.ts +1 -0
  140. package/types/core/helpers/size/object-size.d.ts +7 -0
  141. package/types/core/selection/style/api/{get-closest-wrapper.d.ts → extract.d.ts} +6 -5
  142. package/types/core/selection/style/api/finite-state-machine.d.ts +21 -0
  143. package/types/core/selection/style/api/index.d.ts +12 -5
  144. package/types/core/selection/style/api/{check-special-elements.d.ts → is-inside-invisible-element.d.ts} +1 -1
  145. package/types/core/selection/style/api/is-suit-element.d.ts +9 -0
  146. package/types/core/selection/style/api/toggle/toggle-css.d.ts +11 -0
  147. package/types/core/selection/style/api/toggle/toggle-ordered-list.d.ts +11 -0
  148. package/types/core/selection/style/api/{toggle-styles.d.ts → toggle-commit-styles.d.ts} +1 -3
  149. package/types/core/selection/style/api/{post-process-list-element.d.ts → wrap-and-commit-style.d.ts} +3 -3
  150. package/types/core/selection/style/api/wrap-ordered-list.d.ts +12 -0
  151. package/types/core/selection/style/apply-style.d.ts +1 -4
  152. package/types/core/selection/style/commit-style.d.ts +7 -0
  153. package/types/core/storage/engines/local-storage-provider.d.ts +3 -3
  154. package/types/core/storage/engines/memory-storage-provider.d.ts +3 -3
  155. package/types/core/storage/storage.d.ts +3 -3
  156. package/types/core/ui/button/button/button.d.ts +3 -3
  157. package/types/core/ui/form/form.d.ts +1 -0
  158. package/types/core/ui/form/inputs/area/area.d.ts +7 -1
  159. package/types/core/ui/form/inputs/checkbox/checkbox.d.ts +9 -3
  160. package/types/core/ui/helpers/buttons.d.ts +2 -2
  161. package/types/core/ui/icon.d.ts +1 -1
  162. package/types/core/ui/index.d.ts +1 -3
  163. package/types/core/ui/list/group.d.ts +2 -1
  164. package/types/core/ui/list/index.d.ts +9 -0
  165. package/types/core/ui/{separator.d.ts → list/separator.d.ts} +1 -1
  166. package/types/core/ui/list/spacer.d.ts +9 -0
  167. package/types/core/ui/popup/popup.d.ts +2 -1
  168. package/types/core/view/view-with-toolbar.d.ts +4 -2
  169. package/types/jodit.d.ts +6 -6
  170. package/types/modules/file-browser/file-browser.d.ts +3 -2
  171. package/types/modules/file-browser/listeners/native-listeners.d.ts +5 -1
  172. package/types/modules/file-browser/ui/files/files.d.ts +10 -0
  173. package/types/modules/file-browser/ui/index.d.ts +7 -0
  174. package/types/modules/file-browser/ui/tree/tree.d.ts +10 -0
  175. package/types/modules/status-bar/status-bar.d.ts +6 -1
  176. package/types/modules/table.d.ts +2 -2
  177. package/types/modules/toolbar/button/button.d.ts +1 -1
  178. package/types/modules/toolbar/collection/collection.d.ts +5 -2
  179. package/types/modules/toolbar/collection/editor-collection.d.ts +9 -1
  180. package/types/modules/widget/tabs/tabs.d.ts +2 -1
  181. package/types/plugins/index.d.ts +1 -0
  182. package/types/plugins/inline-popup/inline-popup.d.ts +4 -0
  183. package/types/plugins/ordered-list.d.ts +8 -1
  184. package/types/plugins/powered-by-jodit.d.ts +12 -0
  185. package/types/plugins/source/const.d.ts +6 -0
  186. package/types/plugins/source/editor/engines/ace.d.ts +1 -0
  187. package/types/plugins/source/source.d.ts +1 -0
  188. package/types/styles/icons/index.d.ts +2 -1
  189. package/types/types/storage.d.ts +3 -3
  190. package/types/types/{ajax.d.ts → types/ajax.d.ts} +0 -1
  191. package/types/types/{async.d.ts → types/async.d.ts} +0 -0
  192. package/types/types/{context.d.ts → types/context.d.ts} +0 -0
  193. package/types/types/{core.ts → types/core.ts} +0 -0
  194. package/types/types/{create.d.ts → types/create.d.ts} +0 -0
  195. package/types/types/{dialog.d.ts → types/dialog.d.ts} +0 -0
  196. package/types/types/{events.d.ts → types/events.d.ts} +0 -0
  197. package/types/types/{file-browser.d.ts → types/file-browser.d.ts} +13 -1
  198. package/types/types/{form.d.ts → types/form.d.ts} +0 -0
  199. package/types/types/{index.d.ts → types/index.d.ts} +0 -0
  200. package/types/types/{jodit.d.ts → types/jodit.d.ts} +4 -1
  201. package/types/types/{observe.d.ts → types/observe.d.ts} +0 -0
  202. package/types/types/{plugin.d.ts → types/plugin.d.ts} +0 -0
  203. package/types/types/{popup.d.ts → types/popup.d.ts} +1 -0
  204. package/types/types/{select.d.ts → types/select.d.ts} +2 -0
  205. package/types/types/{source.d.ts → types/source.d.ts} +0 -0
  206. package/types/types/{storage.ts → types/storage.ts} +3 -3
  207. package/types/types/{style.d.ts → types/style.d.ts} +8 -0
  208. package/types/types/{toolbar.d.ts → types/toolbar.d.ts} +9 -2
  209. package/types/types/{traits.d.ts → types/traits.d.ts} +0 -0
  210. package/types/types/{types.d.ts → types/types.d.ts} +1 -1
  211. package/types/types/{ui.d.ts → types/ui.d.ts} +22 -4
  212. package/types/types/{uploader.d.ts → types/uploader.d.ts} +0 -0
  213. package/types/types/{view.d.ts → types/view.d.ts} +1 -0
  214. package/src/core/selection/style/api/post-process-list-element.ts +0 -33
  215. package/src/core/selection/style/api/toggle-styles.ts +0 -74
  216. package/types/modules/file-browser/consts.d.ts +0 -8
@@ -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,22 @@
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="">
14
+ <list default="true" id="5da7ff7f-03a8-49de-9fbb-8f8640d83b83" name="Default Changelist" comment="Added source information for `afterGetValueFromEditor` event">
12
15
  <change beforePath="$PROJECT_DIR$/CHANGELOG.MD" beforeDir="false" afterPath="$PROJECT_DIR$/CHANGELOG.MD" afterDir="false" />
16
+ <change beforePath="$PROJECT_DIR$/build/jodit.css" beforeDir="false" />
17
+ <change beforePath="$PROJECT_DIR$/build/jodit.es2018.css" beforeDir="false" />
18
+ <change beforePath="$PROJECT_DIR$/build/jodit.es2018.en.css" beforeDir="false" />
19
+ <change beforePath="$PROJECT_DIR$/build/jodit.es2018.en.js" beforeDir="false" />
20
+ <change beforePath="$PROJECT_DIR$/build/jodit.es2018.en.min.css" beforeDir="false" />
21
+ <change beforePath="$PROJECT_DIR$/build/jodit.es2018.en.min.js" beforeDir="false" />
22
+ <change beforePath="$PROJECT_DIR$/build/jodit.es2018.js" beforeDir="false" />
23
+ <change beforePath="$PROJECT_DIR$/build/jodit.es2018.min.css" beforeDir="false" />
24
+ <change beforePath="$PROJECT_DIR$/build/jodit.es2018.min.js" beforeDir="false" />
25
+ <change beforePath="$PROJECT_DIR$/build/jodit.js" beforeDir="false" />
26
+ <change beforePath="$PROJECT_DIR$/build/jodit.min.css" beforeDir="false" />
27
+ <change beforePath="$PROJECT_DIR$/build/jodit.min.js" beforeDir="false" />
28
+ <change beforePath="$PROJECT_DIR$/package-lock.json" beforeDir="false" afterPath="$PROJECT_DIR$/package-lock.json" afterDir="false" />
29
+ <change beforePath="$PROJECT_DIR$/package.json" beforeDir="false" afterPath="$PROJECT_DIR$/package.json" afterDir="false" />
13
30
  </list>
14
31
  <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
32
  <option name="SHOW_DIALOG" value="false" />
@@ -81,7 +98,7 @@
81
98
  <property name="SearchEverywhereHistoryKey" value="inde&#9;FILE&#9;file:///Users/v-chupurnov/WebstormProjects/pet/jodit/index.html&#10;index&#9;FILE&#9;file:///Users/v-chupurnov/WebstormProjects/pet/jodit/index.html&#10;Sele&#9;FILE&#9;file:///Users/v-chupurnov/WebstormProjects/jodit/src/modules/Selection.ts" />
82
99
  <property name="TERMINAL_CUSTOM_COMMANDS_GOT_IT" value="true" />
83
100
  <property name="WebServerToolWindowFactoryState" value="false" />
84
- <property name="add_unversioned_files" value="true&#10;/Users/v-chupurnov/WebstormProjects/pet/jodit/test.html" />
101
+ <property name="add_unversioned_files" value="true&#10;/Users/v-chupurnov/WebstormProjects/pet/jodit/test.html&#10;/Users/v-chupurnov/WebstormProjects/pet/jodit/types/core/ui/button/button/button.d.ts" />
85
102
  <property name="editor.config.ad.shown" value="true" />
86
103
  <property name="javascript.nodejs.core.library.configured.version" value="14.6.0" />
87
104
  <property name="javascript.nodejs.core.library.typings.version" value="14.6.0" />
@@ -89,7 +106,7 @@
89
106
  <property name="js.linters.configure.manually.selectedeslint" value="true" />
90
107
  <property name="jsx.switch.disabled" value="true" />
91
108
  <property name="last.edited.regexp" value="Sample Text" />
92
- <property name="last_opened_file_path" value="$PROJECT_DIR$/src/styles/icons" />
109
+ <property name="last_opened_file_path" value="$PROJECT_DIR$/src/modules/file-browser/ui" />
93
110
  <property name="node.js.detected.package.eslint" value="true" />
94
111
  <property name="node.js.detected.package.jscs" value="true" />
95
112
  <property name="node.js.detected.package.standard" value="true" />
@@ -115,25 +132,25 @@
115
132
  <property name="nodejs_package_manager_path" value="npm" />
116
133
  <property name="prettierjs.PrettierConfiguration.Package" value="$PROJECT_DIR$/node_modules/prettier" />
117
134
  <property name="run.code.analysis.last.selected.profile" value="pProject Default" />
118
- <property name="settings.editor.selected.configurable" value="settings.nodejs" />
135
+ <property name="settings.editor.selected.configurable" value="Errors" />
119
136
  <property name="ts.external.directory.path" value="$PROJECT_DIR$/node_modules/typescript/lib" />
120
137
  <property name="typescript-compiler-editor-notification" value="false" />
121
138
  <property name="vue.rearranger.settings.migration" value="true" />
122
139
  </component>
123
140
  <component name="RecentsManager">
124
141
  <key name="CopyFile.RECENT_KEYS">
142
+ <recent name="$PROJECT_DIR$/src/modules/file-browser/ui" />
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
- <recent name="$PROJECT_DIR$/src/core/decorators" />
129
- <recent name="$PROJECT_DIR$" />
130
147
  </key>
131
148
  <key name="MoveFile.RECENT_KEYS">
149
+ <recent name="$PROJECT_DIR$/src/styles/icons" />
150
+ <recent name="$PROJECT_DIR$/src/core/ui/list" />
151
+ <recent name="$PROJECT_DIR$/src/plugins" />
152
+ <recent name="$PROJECT_DIR$/src/plugins/size/assests" />
132
153
  <recent name="$PROJECT_DIR$/src/core/request" />
133
- <recent name="$PROJECT_DIR$/build-system/utils" />
134
- <recent name="$PROJECT_DIR$/build-system/plugins" />
135
- <recent name="$PROJECT_DIR$/build-system" />
136
- <recent name="$PROJECT_DIR$/webpack/loaders" />
137
154
  </key>
138
155
  </component>
139
156
  <component name="RunManager" selected="Shell Script.build">
@@ -715,352 +732,369 @@
715
732
  <workItem from="1634910036285" duration="662000" />
716
733
  <workItem from="1634943329348" duration="2687000" />
717
734
  <workItem from="1635075276233" duration="6076000" />
718
- <workItem from="1635150885789" duration="60303000" />
735
+ <workItem from="1635150885789" duration="62089000" />
736
+ <workItem from="1635274751066" duration="80856000" />
737
+ <workItem from="1635849925964" duration="1202000" />
738
+ <workItem from="1635864760383" duration="729000" />
739
+ <workItem from="1635865507309" duration="8297000" />
740
+ <workItem from="1635932019443" duration="3409000" />
741
+ <workItem from="1636477464236" duration="2846000" />
742
+ <workItem from="1636561946240" duration="87000" />
743
+ <workItem from="1636569485566" duration="670000" />
744
+ <workItem from="1636640886988" duration="23802000" />
745
+ <workItem from="1636722553266" duration="1000" />
746
+ <workItem from="1636722573113" duration="6269000" />
747
+ <workItem from="1636974596602" duration="322000" />
748
+ <workItem from="1636975150423" duration="642000" />
749
+ <workItem from="1637008157319" duration="3972000" />
750
+ <workItem from="1637175210502" duration="13584000" />
751
+ <workItem from="1637613757864" duration="11973000" />
752
+ <workItem from="1637706424442" duration="2713000" />
719
753
  </task>
720
- <task id="LOCAL-00819" summary="In EventEmiter added mute/unmute/isMuted methods">
721
- <created>1634313215564</created>
722
- <option name="number" value="00819" />
723
- <option name="presentableId" value="LOCAL-00819" />
754
+ <task id="LOCAL-00856" summary="Added generators methods">
755
+ <created>1635263605966</created>
756
+ <option name="number" value="00856" />
757
+ <option name="presentableId" value="LOCAL-00856" />
724
758
  <option name="project" value="LOCAL" />
725
- <updated>1634313215564</updated>
759
+ <updated>1635263605966</updated>
726
760
  </task>
727
- <task id="LOCAL-00820" summary="Added static markTemporary isTemporary in Dom module">
728
- <created>1634313334803</created>
729
- <option name="number" value="00820" />
730
- <option name="presentableId" value="LOCAL-00820" />
761
+ <task id="LOCAL-00857" summary="Fix test">
762
+ <created>1635263664350</created>
763
+ <option name="number" value="00857" />
764
+ <option name="presentableId" value="LOCAL-00857" />
731
765
  <option name="project" value="LOCAL" />
732
- <updated>1634313334804</updated>
766
+ <updated>1635263664350</updated>
733
767
  </task>
734
- <task id="LOCAL-00821" summary="Misspeling">
735
- <created>1634313348854</created>
736
- <option name="number" value="00821" />
737
- <option name="presentableId" value="LOCAL-00821" />
768
+ <task id="LOCAL-00858" summary="BOOM: Move Ajax class into `request` folder. Change `send`">
769
+ <created>1635263697875</created>
770
+ <option name="number" value="00858" />
771
+ <option name="presentableId" value="LOCAL-00858" />
738
772
  <option name="project" value="LOCAL" />
739
- <updated>1634313348854</updated>
773
+ <updated>1635263697875</updated>
740
774
  </task>
741
- <task id="LOCAL-00822" summary="Allow use attr with dictionary">
742
- <created>1634313365187</created>
743
- <option name="number" value="00822" />
744
- <option name="presentableId" value="LOCAL-00822" />
775
+ <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">
776
+ <created>1635263745819</created>
777
+ <option name="number" value="00859" />
778
+ <option name="presentableId" value="LOCAL-00859" />
745
779
  <option name="project" value="LOCAL" />
746
- <updated>1634313365187</updated>
780
+ <updated>1635263745819</updated>
747
781
  </task>
748
- <task id="LOCAL-00823" summary="Refactoring">
749
- <created>1634315001036</created>
750
- <option name="number" value="00823" />
751
- <option name="presentableId" value="LOCAL-00823" />
782
+ <task id="LOCAL-00860" summary="cleanHTML replaceOldTags doesn't seem to do anything #728&#10;Issue: https://github.com/xdan/jodit/issues/728">
783
+ <created>1635265019779</created>
784
+ <option name="number" value="00860" />
785
+ <option name="presentableId" value="LOCAL-00860" />
752
786
  <option name="project" value="LOCAL" />
753
- <updated>1634315001036</updated>
787
+ <updated>1635265019780</updated>
754
788
  </task>
755
- <task id="LOCAL-00824" summary="Fix linter bug">
756
- <created>1634318639569</created>
757
- <option name="number" value="00824" />
758
- <option name="presentableId" value="LOCAL-00824" />
789
+ <task id="LOCAL-00861" summary="cleanHTML replaceOldTags doesn't seem to do anything #728&#10;Issue: https://github.com/xdan/jodit/issues/728">
790
+ <created>1635265058570</created>
791
+ <option name="number" value="00861" />
792
+ <option name="presentableId" value="LOCAL-00861" />
759
793
  <option name="project" value="LOCAL" />
760
- <updated>1634318639569</updated>
794
+ <updated>1635265058570</updated>
761
795
  </task>
762
- <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.">
763
- <created>1634799033815</created>
764
- <option name="number" value="00825" />
765
- <option name="presentableId" value="LOCAL-00825" />
796
+ <task id="LOCAL-00862" summary="cleanHTML replaceOldTags doesn't seem to do anything #728&#10;Issue: https://github.com/xdan/jodit/issues/728">
797
+ <created>1635265116373</created>
798
+ <option name="number" value="00862" />
799
+ <option name="presentableId" value="LOCAL-00862" />
766
800
  <option name="project" value="LOCAL" />
767
- <updated>1634799033815</updated>
801
+ <updated>1635265116373</updated>
768
802
  </task>
769
- <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.">
770
- <created>1634799111126</created>
771
- <option name="number" value="00826" />
772
- <option name="presentableId" value="LOCAL-00826" />
803
+ <task id="LOCAL-00863" summary="cleanHTML replaceOldTags doesn't seem to do anything #728&#10;Issue: https://github.com/xdan/jodit/issues/728">
804
+ <created>1635265314052</created>
805
+ <option name="number" value="00863" />
806
+ <option name="presentableId" value="LOCAL-00863" />
773
807
  <option name="project" value="LOCAL" />
774
- <updated>1634799111126</updated>
808
+ <updated>1635265314052</updated>
775
809
  </task>
776
- <task id="LOCAL-00827" summary="Color dropdown looks broken #736&#10;Issue: https://github.com/xdan/jodit/issues/736">
777
- <created>1634799127007</created>
778
- <option name="number" value="00827" />
779
- <option name="presentableId" value="LOCAL-00827" />
810
+ <task id="LOCAL-00864" summary="Up">
811
+ <created>1635265778599</created>
812
+ <option name="number" value="00864" />
813
+ <option name="presentableId" value="LOCAL-00864" />
780
814
  <option name="project" value="LOCAL" />
781
- <updated>1634799127007</updated>
815
+ <updated>1635265778599</updated>
782
816
  </task>
783
- <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">
784
- <created>1634799160225</created>
785
- <option name="number" value="00828" />
786
- <option name="presentableId" value="LOCAL-00828" />
817
+ <task id="LOCAL-00865" summary="Added test for issue https://github.com/xdan/jodit/issues/522">
818
+ <created>1635265918713</created>
819
+ <option name="number" value="00865" />
820
+ <option name="presentableId" value="LOCAL-00865" />
787
821
  <option name="project" value="LOCAL" />
788
- <updated>1634799160225</updated>
822
+ <updated>1635265918713</updated>
789
823
  </task>
790
- <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">
791
- <created>1634807023222</created>
792
- <option name="number" value="00829" />
793
- <option name="presentableId" value="LOCAL-00829" />
824
+ <task id="LOCAL-00866" summary="Goodbye Travis! You were a good helper">
825
+ <created>1635266766439</created>
826
+ <option name="number" value="00866" />
827
+ <option name="presentableId" value="LOCAL-00866" />
794
828
  <option name="project" value="LOCAL" />
795
- <updated>1634807023222</updated>
829
+ <updated>1635266766439</updated>
796
830
  </task>
797
- <task id="LOCAL-00830" summary="Fixed work in IE11">
798
- <created>1634890885099</created>
799
- <option name="number" value="00830" />
800
- <option name="presentableId" value="LOCAL-00830" />
831
+ <task id="LOCAL-00867" summary="Fixed tests in FF">
832
+ <created>1635267402759</created>
833
+ <option name="number" value="00867" />
834
+ <option name="presentableId" value="LOCAL-00867" />
801
835
  <option name="project" value="LOCAL" />
802
- <updated>1634890885100</updated>
836
+ <updated>1635267402759</updated>
803
837
  </task>
804
- <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">
805
- <created>1634890950662</created>
806
- <option name="number" value="00831" />
807
- <option name="presentableId" value="LOCAL-00831" />
838
+ <task id="LOCAL-00868" summary="Fixed tests in FF">
839
+ <created>1635267507492</created>
840
+ <option name="number" value="00868" />
841
+ <option name="presentableId" value="LOCAL-00868" />
808
842
  <option name="project" value="LOCAL" />
809
- <updated>1634890950662</updated>
843
+ <updated>1635267507492</updated>
810
844
  </task>
811
- <task id="LOCAL-00832" summary="Fixed build system for child project">
812
- <created>1634943566156</created>
813
- <option name="number" value="00832" />
814
- <option name="presentableId" value="LOCAL-00832" />
845
+ <task id="LOCAL-00869" summary="Remove gitter">
846
+ <created>1635268743480</created>
847
+ <option name="number" value="00869" />
848
+ <option name="presentableId" value="LOCAL-00869" />
815
849
  <option name="project" value="LOCAL" />
816
- <updated>1634943566156</updated>
850
+ <updated>1635268743480</updated>
817
851
  </task>
818
- <task id="LOCAL-00833" summary="Fixed build system for child project">
819
- <created>1635076285959</created>
820
- <option name="number" value="00833" />
821
- <option name="presentableId" value="LOCAL-00833" />
852
+ <task id="LOCAL-00870" summary="Fixed tables resizing">
853
+ <created>1635278972581</created>
854
+ <option name="number" value="00870" />
855
+ <option name="presentableId" value="LOCAL-00870" />
822
856
  <option name="project" value="LOCAL" />
823
- <updated>1635076285959</updated>
857
+ <updated>1635278972581</updated>
824
858
  </task>
825
- <task id="LOCAL-00834" summary="Rename events-native to event-emitter">
826
- <created>1635183384703</created>
827
- <option name="number" value="00834" />
828
- <option name="presentableId" value="LOCAL-00834" />
859
+ <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">
860
+ <created>1635350607682</created>
861
+ <option name="number" value="00871" />
862
+ <option name="presentableId" value="LOCAL-00871" />
829
863
  <option name="project" value="LOCAL" />
830
- <updated>1635183384703</updated>
864
+ <updated>1635350607682</updated>
831
865
  </task>
832
- <task id="LOCAL-00835" summary="Rename events-native to event-emitter">
833
- <created>1635183463663</created>
834
- <option name="number" value="00835" />
835
- <option name="presentableId" value="LOCAL-00835" />
866
+ <task id="LOCAL-00872" summary="Added test for issue: https://github.com/xdan/jodit/issues/738">
867
+ <created>1635350805292</created>
868
+ <option name="number" value="00872" />
869
+ <option name="presentableId" value="LOCAL-00872" />
836
870
  <option name="project" value="LOCAL" />
837
- <updated>1635183463664</updated>
871
+ <updated>1635350805292</updated>
838
872
  </task>
839
- <task id="LOCAL-00836" summary="Rename events-native to event-emitter">
840
- <created>1635183679922</created>
841
- <option name="number" value="00836" />
842
- <option name="presentableId" value="LOCAL-00836" />
873
+ <task id="LOCAL-00873" summary="Fixed unsupported fonts preview">
874
+ <created>1635542179550</created>
875
+ <option name="number" value="00873" />
876
+ <option name="presentableId" value="LOCAL-00873" />
843
877
  <option name="project" value="LOCAL" />
844
- <updated>1635183679922</updated>
878
+ <updated>1635542179550</updated>
845
879
  </task>
846
- <task id="LOCAL-00837" summary="Rename events-native to event-emitter">
847
- <created>1635183714470</created>
848
- <option name="number" value="00837" />
849
- <option name="presentableId" value="LOCAL-00837" />
880
+ <task id="LOCAL-00874" summary="Small facelift">
881
+ <created>1635542254580</created>
882
+ <option name="number" value="00874" />
883
+ <option name="presentableId" value="LOCAL-00874" />
850
884
  <option name="project" value="LOCAL" />
851
- <updated>1635183714470</updated>
885
+ <updated>1635542254580</updated>
852
886
  </task>
853
- <task id="LOCAL-00838" summary="Rename events-native.ts to event-emitter.ts">
854
- <created>1635183915598</created>
855
- <option name="number" value="00838" />
856
- <option name="presentableId" value="LOCAL-00838" />
887
+ <task id="LOCAL-00875" summary="Big apply style system - refactoring">
888
+ <created>1635553640358</created>
889
+ <option name="number" value="00875" />
890
+ <option name="presentableId" value="LOCAL-00875" />
857
891
  <option name="project" value="LOCAL" />
858
- <updated>1635183915598</updated>
892
+ <updated>1635553640358</updated>
859
893
  </task>
860
- <task id="LOCAL-00839" summary="Rename events-native.ts to event-emitter.ts">
861
- <created>1635184064305</created>
862
- <option name="number" value="00839" />
863
- <option name="presentableId" value="LOCAL-00839" />
894
+ <task id="LOCAL-00876" summary="Fixed dots supplementary buttons shown incorrectly #692&#10;Issue: https://github.com/xdan/jodit/issues/692">
895
+ <created>1635870623738</created>
896
+ <option name="number" value="00876" />
897
+ <option name="presentableId" value="LOCAL-00876" />
864
898
  <option name="project" value="LOCAL" />
865
- <updated>1635184064305</updated>
899
+ <updated>1635870623738</updated>
866
900
  </task>
867
- <task id="LOCAL-00840" summary="ReBuild">
868
- <created>1635184106602</created>
869
- <option name="number" value="00840" />
870
- <option name="presentableId" value="LOCAL-00840" />
901
+ <task id="LOCAL-00877" summary="Fixed dots supplementary buttons shown incorrectly #692&#10;Issue: https://github.com/xdan/jodit/issues/692">
902
+ <created>1635870712545</created>
903
+ <option name="number" value="00877" />
904
+ <option name="presentableId" value="LOCAL-00877" />
871
905
  <option name="project" value="LOCAL" />
872
- <updated>1635184106602</updated>
906
+ <updated>1635870712545</updated>
873
907
  </task>
874
- <task id="LOCAL-00841" summary="Rename events-native.ts to event-emitter.ts">
875
- <created>1635184241538</created>
876
- <option name="number" value="00841" />
877
- <option name="presentableId" value="LOCAL-00841" />
908
+ <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">
909
+ <created>1635870787537</created>
910
+ <option name="number" value="00878" />
911
+ <option name="presentableId" value="LOCAL-00878" />
878
912
  <option name="project" value="LOCAL" />
879
- <updated>1635184241538</updated>
913
+ <updated>1635870787537</updated>
880
914
  </task>
881
- <task id="LOCAL-00842" summary="ReBuild">
882
- <created>1635184250925</created>
883
- <option name="number" value="00842" />
884
- <option name="presentableId" value="LOCAL-00842" />
915
+ <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">
916
+ <created>1635870816925</created>
917
+ <option name="number" value="00879" />
918
+ <option name="presentableId" value="LOCAL-00879" />
885
919
  <option name="project" value="LOCAL" />
886
- <updated>1635184250925</updated>
920
+ <updated>1635870816925</updated>
887
921
  </task>
888
- <task id="LOCAL-00843" summary="Small refactoring">
889
- <created>1635184331470</created>
890
- <option name="number" value="00843" />
891
- <option name="presentableId" value="LOCAL-00843" />
922
+ <task id="LOCAL-00880" summary="Fix condition for Jodit power">
923
+ <created>1635870854517</created>
924
+ <option name="number" value="00880" />
925
+ <option name="presentableId" value="LOCAL-00880" />
892
926
  <option name="project" value="LOCAL" />
893
- <updated>1635184331470</updated>
927
+ <updated>1635870854517</updated>
894
928
  </task>
895
- <task id="LOCAL-00844" summary="Small refactoring">
896
- <created>1635184373662</created>
897
- <option name="number" value="00844" />
898
- <option name="presentableId" value="LOCAL-00844" />
929
+ <task id="LOCAL-00881" summary="Fix test for new resizer style">
930
+ <created>1635870874106</created>
931
+ <option name="number" value="00881" />
932
+ <option name="presentableId" value="LOCAL-00881" />
899
933
  <option name="project" value="LOCAL" />
900
- <updated>1635184373662</updated>
934
+ <updated>1635870874106</updated>
901
935
  </task>
902
- <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">
903
- <created>1635184520307</created>
904
- <option name="number" value="00845" />
905
- <option name="presentableId" value="LOCAL-00845" />
936
+ <task id="LOCAL-00882" summary="Fix lints">
937
+ <created>1635870925572</created>
938
+ <option name="number" value="00882" />
939
+ <option name="presentableId" value="LOCAL-00882" />
906
940
  <option name="project" value="LOCAL" />
907
- <updated>1635184520307</updated>
941
+ <updated>1635870925572</updated>
908
942
  </task>
909
- <task id="LOCAL-00846" summary="Small Refactoring Table module">
910
- <created>1635184546540</created>
911
- <option name="number" value="00846" />
912
- <option name="presentableId" value="LOCAL-00846" />
943
+ <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">
944
+ <created>1635872495161</created>
945
+ <option name="number" value="00883" />
946
+ <option name="presentableId" value="LOCAL-00883" />
913
947
  <option name="project" value="LOCAL" />
914
- <updated>1635184546540</updated>
948
+ <updated>1635872495161</updated>
915
949
  </task>
916
- <task id="LOCAL-00847" summary="Added test for issue: https://github.com/xdan/jodit/issues/547">
917
- <created>1635184690546</created>
918
- <option name="number" value="00847" />
919
- <option name="presentableId" value="LOCAL-00847" />
950
+ <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">
951
+ <created>1635872918386</created>
952
+ <option name="number" value="00884" />
953
+ <option name="presentableId" value="LOCAL-00884" />
920
954
  <option name="project" value="LOCAL" />
921
- <updated>1635184690546</updated>
955
+ <updated>1635872918386</updated>
922
956
  </task>
923
- <task id="LOCAL-00848" summary="Remove from NPM extra files">
924
- <created>1635185314916</created>
925
- <option name="number" value="00848" />
926
- <option name="presentableId" value="LOCAL-00848" />
957
+ <task id="LOCAL-00885" summary="Allow use prototype as component name">
958
+ <created>1636657049441</created>
959
+ <option name="number" value="00885" />
960
+ <option name="presentableId" value="LOCAL-00885" />
927
961
  <option name="project" value="LOCAL" />
928
- <updated>1635185314916</updated>
962
+ <updated>1636657049441</updated>
929
963
  </task>
930
- <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">
931
- <created>1635196606990</created>
932
- <option name="number" value="00849" />
933
- <option name="presentableId" value="LOCAL-00849" />
964
+ <task id="LOCAL-00886" summary="Allow use prototype as component name">
965
+ <created>1636657219708</created>
966
+ <option name="number" value="00886" />
967
+ <option name="presentableId" value="LOCAL-00886" />
934
968
  <option name="project" value="LOCAL" />
935
- <updated>1635196606990</updated>
969
+ <updated>1636657219708</updated>
936
970
  </task>
937
- <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">
938
- <created>1635196663335</created>
939
- <option name="number" value="00850" />
940
- <option name="presentableId" value="LOCAL-00850" />
971
+ <task id="LOCAL-00887" summary="Spacer in Button Toolbar&#10;Issue: https://github.com/xdan/jodit/issues/713">
972
+ <created>1636657301732</created>
973
+ <option name="number" value="00887" />
974
+ <option name="presentableId" value="LOCAL-00887" />
941
975
  <option name="project" value="LOCAL" />
942
- <updated>1635196663335</updated>
976
+ <updated>1636657301732</updated>
943
977
  </task>
944
- <task id="LOCAL-00851" summary="Fixed Indent doesn't work in table cell #729&#10;Issue: https://github.com/xdan/jodit/issues/729">
945
- <created>1635197814774</created>
946
- <option name="number" value="00851" />
947
- <option name="presentableId" value="LOCAL-00851" />
978
+ <task id="LOCAL-00888" summary="Changed IStorage signature">
979
+ <created>1636657342609</created>
980
+ <option name="number" value="00888" />
981
+ <option name="presentableId" value="LOCAL-00888" />
948
982
  <option name="project" value="LOCAL" />
949
- <updated>1635197814774</updated>
983
+ <updated>1636657342609</updated>
950
984
  </task>
951
- <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">
952
- <created>1635198782089</created>
953
- <option name="number" value="00852" />
954
- <option name="presentableId" value="LOCAL-00852" />
985
+ <task id="LOCAL-00889" summary="Remember last opened folder with FileBrowser #675&#10;Issue: https://github.com/xdan/jodit/issues/675">
986
+ <created>1636657657840</created>
987
+ <option name="number" value="00889" />
988
+ <option name="presentableId" value="LOCAL-00889" />
955
989
  <option name="project" value="LOCAL" />
956
- <updated>1635198782089</updated>
990
+ <updated>1636657657840</updated>
957
991
  </task>
958
- <task id="LOCAL-00853" summary="Change Dom.each/find to generator API">
959
- <created>1635207749968</created>
960
- <option name="number" value="00853" />
961
- <option name="presentableId" value="LOCAL-00853" />
992
+ <task id="LOCAL-00890" summary="Remember last opened folder with FileBrowser #675&#10;Issue: https://github.com/xdan/jodit/issues/675">
993
+ <created>1636659626435</created>
994
+ <option name="number" value="00890" />
995
+ <option name="presentableId" value="LOCAL-00890" />
962
996
  <option name="project" value="LOCAL" />
963
- <updated>1635207749968</updated>
997
+ <updated>1636659626435</updated>
964
998
  </task>
965
- <task id="LOCAL-00854" summary="Issue with clear format on &lt;p&gt; tags #680&#10;Issue: https://github.com/xdan/jodit/issues/680">
966
- <created>1635263441562</created>
967
- <option name="number" value="00854" />
968
- <option name="presentableId" value="LOCAL-00854" />
999
+ <task id="LOCAL-00891" summary="Feature request: Open the inline toolbar without having to highlight text. #600&#10;Inline: https://github.com/xdan/jodit/issues/600">
1000
+ <created>1636663933769</created>
1001
+ <option name="number" value="00891" />
1002
+ <option name="presentableId" value="LOCAL-00891" />
969
1003
  <option name="project" value="LOCAL" />
970
- <updated>1635263441562</updated>
1004
+ <updated>1636663933769</updated>
971
1005
  </task>
972
- <task id="LOCAL-00855" summary="Indent doesn't work in table cell #729&#10;Issue: https://github.com/xdan/jodit/issues/729">
973
- <created>1635263566598</created>
974
- <option name="number" value="00855" />
975
- <option name="presentableId" value="LOCAL-00855" />
1006
+ <task id="LOCAL-00892" summary="Reformat">
1007
+ <created>1636663973424</created>
1008
+ <option name="number" value="00892" />
1009
+ <option name="presentableId" value="LOCAL-00892" />
976
1010
  <option name="project" value="LOCAL" />
977
- <updated>1635263566598</updated>
1011
+ <updated>1636663973424</updated>
978
1012
  </task>
979
- <task id="LOCAL-00856" summary="Added generators methods">
980
- <created>1635263605966</created>
981
- <option name="number" value="00856" />
982
- <option name="presentableId" value="LOCAL-00856" />
1013
+ <task id="LOCAL-00893" summary="Reformat">
1014
+ <created>1636664686084</created>
1015
+ <option name="number" value="00893" />
1016
+ <option name="presentableId" value="LOCAL-00893" />
983
1017
  <option name="project" value="LOCAL" />
984
- <updated>1635263605966</updated>
1018
+ <updated>1636664686084</updated>
985
1019
  </task>
986
- <task id="LOCAL-00857" summary="Fix test">
987
- <created>1635263664350</created>
988
- <option name="number" value="00857" />
989
- <option name="presentableId" value="LOCAL-00857" />
1020
+ <task id="LOCAL-00894" summary="Added boolean in build system">
1021
+ <created>1637707143215</created>
1022
+ <option name="number" value="00894" />
1023
+ <option name="presentableId" value="LOCAL-00894" />
990
1024
  <option name="project" value="LOCAL" />
991
- <updated>1635263664350</updated>
1025
+ <updated>1637707143215</updated>
992
1026
  </task>
993
- <task id="LOCAL-00858" summary="BOOM: Move Ajax class into `request` folder. Change `send`">
994
- <created>1635263697875</created>
995
- <option name="number" value="00858" />
996
- <option name="presentableId" value="LOCAL-00858" />
1027
+ <task id="LOCAL-00895" summary="Changed status to varian name">
1028
+ <created>1637707315390</created>
1029
+ <option name="number" value="00895" />
1030
+ <option name="presentableId" value="LOCAL-00895" />
997
1031
  <option name="project" value="LOCAL" />
998
- <updated>1635263697875</updated>
1032
+ <updated>1637707315390</updated>
999
1033
  </task>
1000
- <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">
1001
- <created>1635263745819</created>
1002
- <option name="number" value="00859" />
1003
- <option name="presentableId" value="LOCAL-00859" />
1034
+ <task id="LOCAL-00896" summary="Added `loadNextStyle` helper">
1035
+ <created>1637707344221</created>
1036
+ <option name="number" value="00896" />
1037
+ <option name="presentableId" value="LOCAL-00896" />
1004
1038
  <option name="project" value="LOCAL" />
1005
- <updated>1635263745819</updated>
1039
+ <updated>1637707344221</updated>
1006
1040
  </task>
1007
- <task id="LOCAL-00860" summary="cleanHTML replaceOldTags doesn't seem to do anything #728&#10;Issue: https://github.com/xdan/jodit/issues/728">
1008
- <created>1635265019779</created>
1009
- <option name="number" value="00860" />
1010
- <option name="presentableId" value="LOCAL-00860" />
1041
+ <task id="LOCAL-00897" summary="Reformat">
1042
+ <created>1637707482729</created>
1043
+ <option name="number" value="00897" />
1044
+ <option name="presentableId" value="LOCAL-00897" />
1011
1045
  <option name="project" value="LOCAL" />
1012
- <updated>1635265019780</updated>
1046
+ <updated>1637707482729</updated>
1013
1047
  </task>
1014
- <task id="LOCAL-00861" summary="cleanHTML replaceOldTags doesn't seem to do anything #728&#10;Issue: https://github.com/xdan/jodit/issues/728">
1015
- <created>1635265058570</created>
1016
- <option name="number" value="00861" />
1017
- <option name="presentableId" value="LOCAL-00861" />
1048
+ <task id="LOCAL-00898" summary="Reformat">
1049
+ <created>1637707496779</created>
1050
+ <option name="number" value="00898" />
1051
+ <option name="presentableId" value="LOCAL-00898" />
1018
1052
  <option name="project" value="LOCAL" />
1019
- <updated>1635265058570</updated>
1053
+ <updated>1637707496779</updated>
1020
1054
  </task>
1021
- <task id="LOCAL-00862" summary="cleanHTML replaceOldTags doesn't seem to do anything #728&#10;Issue: https://github.com/xdan/jodit/issues/728">
1022
- <created>1635265116373</created>
1023
- <option name="number" value="00862" />
1024
- <option name="presentableId" value="LOCAL-00862" />
1055
+ <task id="LOCAL-00899" summary="Fixed input change value bug">
1056
+ <created>1637707536887</created>
1057
+ <option name="number" value="00899" />
1058
+ <option name="presentableId" value="LOCAL-00899" />
1025
1059
  <option name="project" value="LOCAL" />
1026
- <updated>1635265116373</updated>
1060
+ <updated>1637707536887</updated>
1027
1061
  </task>
1028
- <task id="LOCAL-00863" summary="cleanHTML replaceOldTags doesn't seem to do anything #728&#10;Issue: https://github.com/xdan/jodit/issues/728">
1029
- <created>1635265314052</created>
1030
- <option name="number" value="00863" />
1031
- <option name="presentableId" value="LOCAL-00863" />
1062
+ <task id="LOCAL-00900" summary="Fixed ui inherits. Added preventing closing in dialog system">
1063
+ <created>1637707639569</created>
1064
+ <option name="number" value="00900" />
1065
+ <option name="presentableId" value="LOCAL-00900" />
1032
1066
  <option name="project" value="LOCAL" />
1033
- <updated>1635265314052</updated>
1067
+ <updated>1637707639569</updated>
1034
1068
  </task>
1035
- <task id="LOCAL-00864" summary="Up">
1036
- <created>1635265778599</created>
1037
- <option name="number" value="00864" />
1038
- <option name="presentableId" value="LOCAL-00864" />
1069
+ <task id="LOCAL-00901" summary="Added command `preview`">
1070
+ <created>1637707682055</created>
1071
+ <option name="number" value="00901" />
1072
+ <option name="presentableId" value="LOCAL-00901" />
1039
1073
  <option name="project" value="LOCAL" />
1040
- <updated>1635265778599</updated>
1074
+ <updated>1637707682055</updated>
1041
1075
  </task>
1042
- <task id="LOCAL-00865" summary="Added test for issue https://github.com/xdan/jodit/issues/522">
1043
- <created>1635265918713</created>
1044
- <option name="number" value="00865" />
1045
- <option name="presentableId" value="LOCAL-00865" />
1076
+ <task id="LOCAL-00902" summary="Added source information for `afterGetValueFromEditor` event">
1077
+ <created>1637707721637</created>
1078
+ <option name="number" value="00902" />
1079
+ <option name="presentableId" value="LOCAL-00902" />
1046
1080
  <option name="project" value="LOCAL" />
1047
- <updated>1635265918713</updated>
1081
+ <updated>1637707721638</updated>
1048
1082
  </task>
1049
- <task id="LOCAL-00866" summary="Goodbye Travis! You were a good helper">
1050
- <created>1635266766439</created>
1051
- <option name="number" value="00866" />
1052
- <option name="presentableId" value="LOCAL-00866" />
1083
+ <task id="LOCAL-00903" summary="Fixed source plugin">
1084
+ <created>1637708668453</created>
1085
+ <option name="number" value="00903" />
1086
+ <option name="presentableId" value="LOCAL-00903" />
1053
1087
  <option name="project" value="LOCAL" />
1054
- <updated>1635266766439</updated>
1088
+ <updated>1637708668453</updated>
1055
1089
  </task>
1056
- <task id="LOCAL-00867" summary="Fixed tests in FF">
1057
- <created>1635267402759</created>
1058
- <option name="number" value="00867" />
1059
- <option name="presentableId" value="LOCAL-00867" />
1090
+ <task id="LOCAL-00904" summary="Fixed source plugin">
1091
+ <created>1637708799060</created>
1092
+ <option name="number" value="00904" />
1093
+ <option name="presentableId" value="LOCAL-00904" />
1060
1094
  <option name="project" value="LOCAL" />
1061
- <updated>1635267402759</updated>
1095
+ <updated>1637708799060</updated>
1062
1096
  </task>
1063
- <option name="localTasksCounter" value="868" />
1097
+ <option name="localTasksCounter" value="905" />
1064
1098
  <servers />
1065
1099
  </component>
1066
1100
  <component name="TypeScriptGeneratedFilesManager">
@@ -1201,32 +1235,32 @@
1201
1235
  </component>
1202
1236
  <component name="VcsManagerConfiguration">
1203
1237
  <option name="CHECK_CODE_SMELLS_BEFORE_PROJECT_COMMIT" value="false" />
1204
- <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" />
1205
- <MESSAGE value="Rename events-native to event-emitter" />
1206
- <MESSAGE value="Fixed build system for child project" />
1207
- <MESSAGE value="Rename events-native.ts to event-emitter.ts" />
1208
- <MESSAGE value="ReBuild" />
1209
- <MESSAGE value="Small refactoring" />
1210
- <MESSAGE value="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" />
1211
- <MESSAGE value="Small Refactoring Table module" />
1212
- <MESSAGE value="Added test for issue: https://github.com/xdan/jodit/issues/547" />
1213
- <MESSAGE value="Remove from NPM extra files" />
1214
- <MESSAGE value="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" />
1215
- <MESSAGE value="Fixed Indent doesn't work in table cell #729&#10;Issue: https://github.com/xdan/jodit/issues/729" />
1216
- <MESSAGE value="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" />
1217
- <MESSAGE value="Change Dom.each/find to generator API" />
1218
- <MESSAGE value="Issue with clear format on &lt;p&gt; tags #680&#10;Issue: https://github.com/xdan/jodit/issues/680" />
1219
- <MESSAGE value="Indent doesn't work in table cell #729&#10;Issue: https://github.com/xdan/jodit/issues/729" />
1220
- <MESSAGE value="Added generators methods" />
1221
- <MESSAGE value="Fix test" />
1222
- <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" />
1223
- <MESSAGE value="BOOM: Move Ajax class into `request` folder. Change `send`" />
1224
- <MESSAGE value="cleanHTML replaceOldTags doesn't seem to do anything #728&#10;Issue: https://github.com/xdan/jodit/issues/728" />
1225
- <MESSAGE value="Up" />
1226
- <MESSAGE value="Added test for issue https://github.com/xdan/jodit/issues/522" />
1227
- <MESSAGE value="Goodbye Travis! You were a good helper" />
1228
- <MESSAGE value="Fixed tests in FF" />
1229
- <option name="LAST_COMMIT_MESSAGE" value="Fixed tests in FF" />
1238
+ <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" />
1239
+ <MESSAGE value="Added test for issue: https://github.com/xdan/jodit/issues/738" />
1240
+ <MESSAGE value="Fixed unsupported fonts preview" />
1241
+ <MESSAGE value="Small facelift" />
1242
+ <MESSAGE value="Big apply style system - refactoring" />
1243
+ <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" />
1244
+ <MESSAGE value="Fix condition for Jodit power" />
1245
+ <MESSAGE value="Fix test for new resizer style" />
1246
+ <MESSAGE value="Fix lints" />
1247
+ <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" />
1248
+ <MESSAGE value="Fixed dots supplementary buttons shown incorrectly #692&#10;Issue: https://github.com/xdan/jodit/issues/692" />
1249
+ <MESSAGE value="Allow use prototype as component name" />
1250
+ <MESSAGE value="Spacer in Button Toolbar&#10;Issue: https://github.com/xdan/jodit/issues/713" />
1251
+ <MESSAGE value="Changed IStorage signature" />
1252
+ <MESSAGE value="Remember last opened folder with FileBrowser #675&#10;Issue: https://github.com/xdan/jodit/issues/675" />
1253
+ <MESSAGE value="Feature request: Open the inline toolbar without having to highlight text. #600&#10;Inline: https://github.com/xdan/jodit/issues/600" />
1254
+ <MESSAGE value="Added boolean in build system" />
1255
+ <MESSAGE value="Changed status to varian name" />
1256
+ <MESSAGE value="Added `loadNextStyle` helper" />
1257
+ <MESSAGE value="Reformat" />
1258
+ <MESSAGE value="Fixed input change value bug" />
1259
+ <MESSAGE value="Fixed ui inherits. Added preventing closing in dialog system" />
1260
+ <MESSAGE value="Added command `preview`" />
1261
+ <MESSAGE value="Added source information for `afterGetValueFromEditor` event" />
1262
+ <MESSAGE value="Fixed source plugin" />
1263
+ <option name="LAST_COMMIT_MESSAGE" value="Fixed source plugin" />
1230
1264
  </component>
1231
1265
  <component name="XDebuggerManager">
1232
1266
  <breakpoint-manager>