jodit 3.15.2 → 3.16.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.idea/workspace.xml +301 -299
- package/CHANGELOG.MD +88 -7
- package/CONTRIBUTING.md +97 -0
- package/README.md +7 -7
- package/build/jodit.css +38 -32
- package/build/jodit.es2018.css +37 -31
- package/build/jodit.es2018.en.css +37 -31
- package/build/jodit.es2018.en.js +1981 -1393
- package/build/jodit.es2018.en.min.css +1 -1
- package/build/jodit.es2018.en.min.js +1 -1
- package/build/jodit.es2018.js +2053 -1447
- package/build/jodit.es2018.min.css +1 -1
- package/build/jodit.es2018.min.js +1 -1
- package/build/jodit.js +3475 -2625
- package/build/jodit.min.css +2 -2
- package/build/jodit.min.js +1 -1
- package/build/vdom.css +1 -1
- package/build/vdom.js +32 -20
- package/package.json +13 -13
- package/src/README.md +1 -1
- package/src/config.ts +69 -36
- package/src/core/async/async.ts +46 -24
- package/src/core/constants.ts +1 -0
- package/src/core/decorators/README.md +35 -0
- package/src/core/decorators/cache/cache.ts +1 -1
- package/src/core/decorators/debounce/debounce.ts +20 -9
- package/src/core/decorators/idle/README.md +14 -0
- package/src/core/decorators/idle/idle.ts +1 -1
- package/src/core/decorators/watch/watch.ts +8 -7
- package/src/core/dom/README.md +42 -0
- package/src/core/dom/dom.ts +37 -23
- package/src/core/dom/index.ts +1 -0
- package/src/core/dom/lazy-walker.ts +133 -0
- package/src/core/event-emitter/event-emitter.ts +8 -8
- package/src/core/event-emitter/eventify.ts +73 -0
- package/src/core/event-emitter/index.ts +1 -0
- package/src/core/helpers/html/apply-styles.ts +1 -1
- package/src/core/helpers/html/strip-tags.ts +3 -2
- package/src/core/helpers/string/fuzzy-search-index.ts +58 -0
- package/src/core/helpers/string/i18n.ts +1 -1
- package/src/core/helpers/string/index.ts +3 -2
- package/src/core/helpers/utils/append-script.ts +1 -1
- package/src/core/helpers/utils/css.ts +1 -1
- package/src/core/helpers/utils/selector.ts +1 -1
- package/src/core/helpers/utils/utils.ts +3 -3
- package/src/core/plugin/plugin-system.ts +14 -8
- package/src/core/request/ajax.ts +3 -3
- package/src/core/selection/select.ts +10 -10
- package/src/core/selection/style/api/toggle/toggle-css.ts +5 -2
- package/src/core/selection/style/api/wrap-unwrapped-text.ts +1 -1
- package/src/core/selection/style/apply-style.ts +4 -4
- package/src/core/storage/engines/local-storage-provider.ts +20 -19
- package/src/core/ui/button/button/button.ts +5 -5
- package/src/core/ui/element.ts +2 -2
- package/src/core/ui/form/inputs/input/input.ts +1 -1
- package/src/core/ui/form/inputs/select/select.ts +1 -1
- package/src/core/ui/group/list.ts +2 -2
- package/src/core/vdom/render/index.ts +12 -8
- package/src/core/vdom/v-dom-jodit.ts +1 -1
- package/src/core/view/view.ts +1 -1
- package/src/index.ts +3 -3
- package/src/jodit.ts +72 -55
- package/src/langs/README.md +1 -1
- package/src/langs/ar.js +2 -1
- package/src/langs/cs_cz.js +2 -1
- package/src/langs/de.js +2 -1
- package/src/langs/es.js +2 -1
- package/src/langs/fa.js +2 -1
- package/src/langs/fr.js +2 -1
- package/src/langs/he.js +2 -1
- package/src/langs/hu.js +2 -1
- package/src/langs/id.js +2 -1
- package/src/langs/index.ts +1 -1
- package/src/langs/it.js +2 -1
- package/src/langs/ja.js +2 -1
- package/src/langs/ko.js +2 -1
- package/src/langs/nl.js +2 -1
- package/src/langs/pl.js +2 -1
- package/src/langs/pt_br.js +2 -1
- package/src/langs/ru.js +2 -1
- package/src/langs/tr.js +2 -1
- package/src/langs/zh_cn.js +2 -1
- package/src/langs/zh_tw.js +2 -1
- package/src/modules/dialog/dialog.ts +6 -6
- package/src/modules/dialog/prompt.ts +1 -1
- package/src/modules/file-browser/README.md +2 -2
- package/src/modules/file-browser/builders/context-menu.ts +12 -13
- package/src/modules/file-browser/fetch/load-tree.ts +1 -1
- package/src/modules/file-browser/file-browser.ts +10 -7
- package/src/modules/history/README.md +5 -0
- package/src/modules/{observer → history}/command.ts +5 -5
- package/src/modules/{observer/observer.ts → history/history.ts} +97 -55
- package/src/modules/{observer → history}/snapshot.ts +3 -4
- package/src/modules/{observer → history}/stack.ts +4 -4
- package/src/modules/image-editor/image-editor.ts +8 -8
- package/src/modules/image-editor/templates/form.ts +2 -2
- package/src/modules/index.ts +3 -3
- package/src/modules/status-bar/status-bar.ts +4 -0
- package/src/modules/table/table.ts +2 -2
- package/src/modules/toolbar/button/button.ts +2 -2
- package/src/modules/toolbar/collection/collection.ts +1 -1
- package/src/modules/uploader/helpers/process-old-browser-drag.ts +1 -1
- package/src/modules/uploader/helpers/send-files.ts +1 -1
- package/src/modules/uploader/helpers/send.ts +1 -1
- package/src/modules/uploader/uploader.ts +3 -3
- package/src/modules/widget/color-picker/color-picker.ts +2 -3
- package/src/modules/widget/tabs/tabs.ts +17 -12
- package/src/plugins/add-new-line/add-new-line.ts +8 -8
- package/src/plugins/class-span/class-span.ts +1 -1
- package/src/plugins/clipboard/copy-format.ts +1 -1
- package/src/plugins/clipboard/drag-and-drop-element.ts +4 -2
- package/src/plugins/clipboard/paste/config.ts +19 -3
- package/src/plugins/clipboard/paste/helpers.ts +17 -50
- package/src/plugins/clipboard/paste/interface.ts +6 -0
- package/src/plugins/clipboard/paste/paste.ts +22 -8
- package/src/plugins/clipboard/paste-from-word/config.ts +17 -0
- package/src/plugins/clipboard/paste-from-word/paste-from-word.ts +15 -6
- package/src/plugins/clipboard/paste-storage/paste-storage.ts +6 -6
- package/src/plugins/color/color.ts +2 -2
- package/src/plugins/error-messages/error-messages.ts +2 -2
- package/src/plugins/fix/clean-html/README.md +26 -0
- package/src/plugins/fix/{clean-html.ts → clean-html/clean-html.ts} +59 -142
- package/src/plugins/fix/clean-html/config.ts +106 -0
- package/src/plugins/fix/index.ts +12 -0
- package/src/plugins/fix/wrap-nodes/README.md +27 -0
- package/src/plugins/fix/wrap-nodes/config.ts +24 -0
- package/src/plugins/fix/{wrap-text-nodes.ts → wrap-nodes/wrap-nodes.ts} +9 -4
- package/src/plugins/focus/focus.ts +1 -1
- package/src/plugins/format-block/format-block.ts +1 -1
- package/src/plugins/fullsize/fullsize.ts +4 -4
- package/src/plugins/iframe/iframe.ts +3 -3
- package/src/plugins/image/image-properties/image-properties.ts +12 -13
- package/src/plugins/indent/indent.ts +1 -1
- package/src/plugins/index.ts +2 -2
- package/src/plugins/inline-popup/config/items/a.ts +2 -2
- package/src/plugins/inline-popup/config/items/cells.ts +11 -11
- package/src/plugins/inline-popup/config/items/iframe.ts +1 -1
- package/src/plugins/inline-popup/config/items/img.ts +7 -7
- package/src/plugins/inline-popup/inline-popup.ts +5 -5
- package/src/plugins/keyboard/backspace/backspace.ts +1 -1
- package/src/plugins/keyboard/backspace/cases/check-join-neighbors.ts +1 -1
- package/src/plugins/keyboard/helpers.ts +1 -1
- package/src/plugins/keyboard/hotkeys.ts +1 -1
- package/src/plugins/limit/limit.ts +3 -3
- package/src/plugins/line-height/line-height.ts +1 -1
- package/src/plugins/link/link.ts +8 -8
- package/src/plugins/link/template.ts +2 -2
- package/src/plugins/media/file.ts +1 -1
- package/src/plugins/media/media.ts +1 -1
- package/src/plugins/media/video/config.ts +1 -1
- package/src/plugins/mobile/config.ts +1 -1
- package/src/plugins/mobile/mobile.ts +1 -1
- package/src/plugins/ordered-list/config.ts +61 -0
- package/src/plugins/ordered-list/ordered-list.ts +3 -153
- package/src/plugins/placeholder/placeholder.ts +3 -3
- package/src/plugins/print/helpers.ts +14 -7
- package/src/plugins/print/index.ts +1 -1
- package/src/plugins/print/{preview.less → preview/preview.less} +1 -1
- package/src/plugins/print/{preview.ts → preview/preview.ts} +9 -8
- package/src/plugins/print/print.ts +19 -10
- package/src/plugins/redo-undo/redo-undo.ts +3 -3
- package/src/plugins/resizer/resizer.ts +11 -11
- package/src/plugins/search/README.md +38 -0
- package/src/plugins/search/config.ts +82 -0
- package/src/plugins/search/helpers/index.ts +12 -0
- package/src/plugins/search/helpers/sentence-finder.ts +103 -0
- package/src/plugins/search/helpers/wrap-ranges-texts-in-tmp-span.ts +120 -0
- package/src/plugins/search/search.ts +269 -615
- package/src/plugins/search/ui/search.less +159 -0
- package/src/plugins/search/ui/search.ts +256 -0
- package/src/plugins/select/select.ts +1 -1
- package/src/plugins/size/config.ts +8 -8
- package/src/plugins/size/resize-handler.ts +3 -3
- package/src/plugins/size/size.ts +4 -4
- package/src/plugins/source/editor/engines/ace.ts +9 -9
- package/src/plugins/source/editor/engines/area.ts +3 -3
- package/src/plugins/source/source.ts +6 -6
- package/src/plugins/spellcheck/README.md +1 -0
- package/src/plugins/spellcheck/config.ts +34 -0
- package/src/plugins/spellcheck/spellcheck.svg +4 -0
- package/src/plugins/spellcheck/spellcheck.ts +48 -0
- package/src/plugins/sticky/sticky.ts +3 -3
- package/src/plugins/table/resize-cells.ts +11 -11
- package/src/plugins/table/select-cells.ts +2 -2
- package/src/plugins/tooltip/tooltip.ts +1 -1
- package/src/plugins/xpath/xpath.ts +8 -8
- package/src/polyfills.ts +5 -4
- package/src/styles/icons/README.md +2 -2
- package/src/types/async.d.ts +12 -2
- package/src/types/core.ts +1 -1
- package/src/types/events.d.ts +6 -2
- package/src/types/file-browser.d.ts +1 -2
- package/{types/types/observer.d.ts → src/types/history.d.ts} +11 -7
- package/src/types/index.d.ts +1 -1
- package/src/types/jodit.d.ts +12 -4
- package/src/types/toolbar.d.ts +5 -5
- package/src/types/types.d.ts +11 -4
- package/types/config.d.ts +68 -35
- package/types/core/async/async.d.ts +11 -4
- package/types/core/constants.d.ts +1 -0
- package/types/core/dom/dom.d.ts +3 -5
- package/types/core/dom/index.d.ts +1 -0
- package/types/core/dom/lazy-walker.d.ts +37 -0
- package/types/core/event-emitter/eventify.d.ts +39 -0
- package/types/core/event-emitter/index.d.ts +1 -0
- package/types/core/helpers/string/fuzzy-search-index.d.ts +10 -0
- package/types/core/helpers/string/i18n.d.ts +1 -1
- package/types/core/helpers/string/index.d.ts +3 -2
- package/types/core/helpers/utils/utils.d.ts +1 -1
- package/types/core/selection/select.d.ts +1 -1
- package/types/core/ui/button/button/button.d.ts +4 -4
- package/types/core/view/view.d.ts +1 -1
- package/types/jodit.d.ts +19 -6
- package/types/modules/{observer → history}/command.d.ts +4 -4
- package/types/modules/{observer/observer.d.ts → history/history.d.ts} +17 -9
- package/types/modules/{observer → history}/snapshot.d.ts +1 -1
- package/types/modules/{observer → history}/stack.d.ts +3 -3
- package/types/modules/image-editor/image-editor.d.ts +1 -1
- package/types/modules/index.d.ts +3 -3
- package/types/modules/toolbar/button/button.d.ts +2 -5
- package/types/modules/widget/tabs/tabs.d.ts +1 -1
- package/types/plugins/class-span/class-span.d.ts +1 -1
- package/types/plugins/clipboard/paste/config.d.ts +8 -0
- package/types/plugins/clipboard/paste/helpers.d.ts +2 -2
- package/types/plugins/clipboard/paste/interface.d.ts +5 -0
- package/types/plugins/clipboard/paste-from-word/config.d.ts +5 -0
- package/types/plugins/clipboard/paste-from-word/paste-from-word.d.ts +3 -2
- package/types/plugins/fix/clean-html/clean-html.d.ts +70 -0
- package/types/plugins/fix/{clean-html.d.ts → clean-html/config.d.ts} +2 -57
- package/types/plugins/fix/index.d.ts +10 -0
- package/types/plugins/fix/wrap-nodes/config.d.ts +16 -0
- package/types/plugins/fix/{wrap-text-nodes.d.ts → wrap-nodes/wrap-nodes.d.ts} +5 -2
- package/types/plugins/fullsize/fullsize.d.ts +2 -2
- package/types/plugins/index.d.ts +2 -2
- package/types/plugins/ordered-list/config.d.ts +6 -0
- package/types/plugins/ordered-list/ordered-list.d.ts +1 -1
- package/types/plugins/print/helpers.d.ts +2 -2
- package/types/plugins/print/index.d.ts +1 -1
- package/types/plugins/print/{preview.d.ts → preview/preview.d.ts} +1 -1
- package/types/plugins/search/config.d.ts +36 -0
- package/types/plugins/search/helpers/index.d.ts +10 -0
- package/types/plugins/search/helpers/sentence-finder.d.ts +21 -0
- package/types/plugins/search/helpers/wrap-ranges-texts-in-tmp-span.d.ts +14 -0
- package/types/plugins/search/search.d.ts +25 -39
- package/types/plugins/search/ui/search.d.ts +37 -0
- package/types/plugins/spellcheck/config.d.ts +15 -0
- package/types/plugins/spellcheck/spellcheck.d.ts +19 -0
- package/types/plugins/sticky/sticky.d.ts +2 -2
- package/types/types/async.d.ts +12 -2
- package/types/types/core.d.ts +1 -1
- package/types/types/core.ts +1 -1
- package/types/types/events.d.ts +6 -2
- package/types/types/file-browser.d.ts +1 -2
- package/{src/types/observer.d.ts → types/types/history.d.ts} +11 -7
- package/types/types/index.d.ts +1 -1
- package/types/types/jodit.d.ts +12 -4
- package/types/types/toolbar.d.ts +5 -5
- package/types/types/types.d.ts +11 -4
- package/src/modules/observer/README.md +0 -0
- package/src/plugins/search/search.less +0 -152
package/.idea/workspace.xml
CHANGED
|
@@ -11,24 +11,8 @@
|
|
|
11
11
|
<select />
|
|
12
12
|
</component>
|
|
13
13
|
<component name="ChangeListManager">
|
|
14
|
-
<list default="true" id="5da7ff7f-03a8-49de-9fbb-8f8640d83b83" name="Default Changelist" comment="
|
|
15
|
-
<change beforePath="$PROJECT_DIR$/
|
|
16
|
-
<change beforePath="$PROJECT_DIR$/build/jodit.es2018.css" beforeDir="false" />
|
|
17
|
-
<change beforePath="$PROJECT_DIR$/build/jodit.es2018.en.css" beforeDir="false" />
|
|
18
|
-
<change beforePath="$PROJECT_DIR$/build/jodit.es2018.en.js" beforeDir="false" />
|
|
19
|
-
<change beforePath="$PROJECT_DIR$/build/jodit.es2018.en.min.css" beforeDir="false" />
|
|
20
|
-
<change beforePath="$PROJECT_DIR$/build/jodit.es2018.en.min.js" beforeDir="false" />
|
|
21
|
-
<change beforePath="$PROJECT_DIR$/build/jodit.es2018.js" beforeDir="false" />
|
|
22
|
-
<change beforePath="$PROJECT_DIR$/build/jodit.es2018.min.css" beforeDir="false" />
|
|
23
|
-
<change beforePath="$PROJECT_DIR$/build/jodit.es2018.min.js" beforeDir="false" />
|
|
24
|
-
<change beforePath="$PROJECT_DIR$/build/jodit.js" beforeDir="false" afterPath="$PROJECT_DIR$/build/jodit.js" afterDir="false" />
|
|
25
|
-
<change beforePath="$PROJECT_DIR$/build/jodit.min.css" beforeDir="false" />
|
|
26
|
-
<change beforePath="$PROJECT_DIR$/build/jodit.min.js" beforeDir="false" />
|
|
27
|
-
<change beforePath="$PROJECT_DIR$/build/vdom.css" beforeDir="false" />
|
|
28
|
-
<change beforePath="$PROJECT_DIR$/build/vdom.js" beforeDir="false" />
|
|
29
|
-
<change beforePath="$PROJECT_DIR$/src/modules/widget/index.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/modules/widget/index.ts" afterDir="false" />
|
|
30
|
-
<change beforePath="$PROJECT_DIR$/test/tests/acceptance/plugins/orderedList.js" beforeDir="false" afterPath="$PROJECT_DIR$/test/tests/acceptance/plugins/orderedList.js" afterDir="false" />
|
|
31
|
-
<change beforePath="$PROJECT_DIR$/test/tests/acceptance/toolbarTest.js" beforeDir="false" afterPath="$PROJECT_DIR$/test/tests/acceptance/toolbarTest.js" afterDir="false" />
|
|
14
|
+
<list default="true" id="5da7ff7f-03a8-49de-9fbb-8f8640d83b83" name="Default Changelist" comment="">
|
|
15
|
+
<change beforePath="$PROJECT_DIR$/test/tests/acceptance/plugins/search.js" beforeDir="false" afterPath="$PROJECT_DIR$/test/tests/acceptance/plugins/search.js" afterDir="false" />
|
|
32
16
|
</list>
|
|
33
17
|
<list id="5049e1d4-15bc-4e3a-b46b-d2ce7537fc13" name="Revert "Some small fixes"" comment="Revert "Some small fixes" This reverts commit bc391ec6" />
|
|
34
18
|
<option name="SHOW_DIALOG" value="false" />
|
|
@@ -111,7 +95,7 @@
|
|
|
111
95
|
<property name="js.linters.configure.manually.selectedeslint" value="true" />
|
|
112
96
|
<property name="jsx.switch.disabled" value="true" />
|
|
113
97
|
<property name="last.edited.regexp" value="Sample Text" />
|
|
114
|
-
<property name="last_opened_file_path" value="$PROJECT_DIR$/src/
|
|
98
|
+
<property name="last_opened_file_path" value="$PROJECT_DIR$/src/plugins/spellcheck" />
|
|
115
99
|
<property name="node.js.detected.package.eslint" value="true" />
|
|
116
100
|
<property name="node.js.detected.package.jscs" value="true" />
|
|
117
101
|
<property name="node.js.detected.package.standard" value="true" />
|
|
@@ -144,18 +128,18 @@
|
|
|
144
128
|
</component>
|
|
145
129
|
<component name="RecentsManager">
|
|
146
130
|
<key name="CopyFile.RECENT_KEYS">
|
|
131
|
+
<recent name="$PROJECT_DIR$/src/plugins/spellcheck" />
|
|
132
|
+
<recent name="$PROJECT_DIR$/src/plugins/fix/clean-html" />
|
|
147
133
|
<recent name="$PROJECT_DIR$/src/styles/icons" />
|
|
148
134
|
<recent name="$PROJECT_DIR$/.github/workflows" />
|
|
149
135
|
<recent name="$PROJECT_DIR$/src/modules/widget/tabs" />
|
|
150
|
-
<recent name="$PROJECT_DIR$/src/modules/widget/file-selector" />
|
|
151
|
-
<recent name="$PROJECT_DIR$/src/modules/widget/color-picker" />
|
|
152
136
|
</key>
|
|
153
137
|
<key name="MoveFile.RECENT_KEYS">
|
|
154
|
-
<recent name="$PROJECT_DIR$/src/plugins/
|
|
155
|
-
<recent name="$PROJECT_DIR$/src/plugins/
|
|
156
|
-
<recent name="$PROJECT_DIR$/src/core/
|
|
157
|
-
<recent name="$PROJECT_DIR$/src/plugins/
|
|
158
|
-
<recent name="$PROJECT_DIR$/src/
|
|
138
|
+
<recent name="$PROJECT_DIR$/src/plugins/print/preview" />
|
|
139
|
+
<recent name="$PROJECT_DIR$/src/plugins/search/ui" />
|
|
140
|
+
<recent name="$PROJECT_DIR$/src/core/dom" />
|
|
141
|
+
<recent name="$PROJECT_DIR$/src/plugins/fix/clean-html" />
|
|
142
|
+
<recent name="$PROJECT_DIR$/src/plugins/fix/wrap-nodes" />
|
|
159
143
|
</key>
|
|
160
144
|
</component>
|
|
161
145
|
<component name="RunManager" selected="Shell Script.build">
|
|
@@ -844,352 +828,365 @@
|
|
|
844
828
|
<workItem from="1646232185136" duration="148000" />
|
|
845
829
|
<workItem from="1646236907442" duration="1678000" />
|
|
846
830
|
<workItem from="1646315047402" duration="21336000" />
|
|
847
|
-
<workItem from="1646348592551" duration="
|
|
831
|
+
<workItem from="1646348592551" duration="102235000" />
|
|
832
|
+
<workItem from="1647062835078" duration="18125000" />
|
|
833
|
+
<workItem from="1647166790321" duration="238000" />
|
|
834
|
+
<workItem from="1647167081505" duration="5015000" />
|
|
835
|
+
<workItem from="1647258092021" duration="36614000" />
|
|
836
|
+
<workItem from="1647430508763" duration="3341000" />
|
|
837
|
+
<workItem from="1647457901142" duration="12029000" />
|
|
838
|
+
<workItem from="1647505677177" duration="390000" />
|
|
839
|
+
<workItem from="1647523058646" duration="664000" />
|
|
840
|
+
<workItem from="1647535223248" duration="2369000" />
|
|
841
|
+
<workItem from="1647717009468" duration="1325000" />
|
|
842
|
+
<workItem from="1647720525903" duration="602000" />
|
|
843
|
+
<workItem from="1647723129471" duration="611000" />
|
|
844
|
+
<workItem from="1647728375663" duration="463000" />
|
|
848
845
|
</task>
|
|
849
|
-
<task id="LOCAL-
|
|
850
|
-
<created>
|
|
851
|
-
<option name="number" value="
|
|
852
|
-
<option name="presentableId" value="LOCAL-
|
|
846
|
+
<task id="LOCAL-01022" summary="Update npm and duck typing Dom.isNode">
|
|
847
|
+
<created>1646343502774</created>
|
|
848
|
+
<option name="number" value="01022" />
|
|
849
|
+
<option name="presentableId" value="LOCAL-01022" />
|
|
853
850
|
<option name="project" value="LOCAL" />
|
|
854
|
-
<updated>
|
|
851
|
+
<updated>1646343502774</updated>
|
|
855
852
|
</task>
|
|
856
|
-
<task id="LOCAL-
|
|
857
|
-
<created>
|
|
858
|
-
<option name="number" value="
|
|
859
|
-
<option name="presentableId" value="LOCAL-
|
|
853
|
+
<task id="LOCAL-01023" summary="Fixed bug inside placeholder plugin">
|
|
854
|
+
<created>1646343584950</created>
|
|
855
|
+
<option name="number" value="01023" />
|
|
856
|
+
<option name="presentableId" value="LOCAL-01023" />
|
|
860
857
|
<option name="project" value="LOCAL" />
|
|
861
|
-
<updated>
|
|
858
|
+
<updated>1646343584950</updated>
|
|
862
859
|
</task>
|
|
863
|
-
<task id="LOCAL-
|
|
864
|
-
<created>
|
|
865
|
-
<option name="number" value="
|
|
866
|
-
<option name="presentableId" value="LOCAL-
|
|
860
|
+
<task id="LOCAL-01024" summary="Refactoring paste plugin">
|
|
861
|
+
<created>1646343640819</created>
|
|
862
|
+
<option name="number" value="01024" />
|
|
863
|
+
<option name="presentableId" value="LOCAL-01024" />
|
|
867
864
|
<option name="project" value="LOCAL" />
|
|
868
|
-
<updated>
|
|
865
|
+
<updated>1646343640819</updated>
|
|
869
866
|
</task>
|
|
870
|
-
<task id="LOCAL-
|
|
871
|
-
<created>
|
|
872
|
-
<option name="number" value="
|
|
873
|
-
<option name="presentableId" value="LOCAL-
|
|
867
|
+
<task id="LOCAL-01025" summary="Extract logic with paste from word inside separate plugin">
|
|
868
|
+
<created>1646343669675</created>
|
|
869
|
+
<option name="number" value="01025" />
|
|
870
|
+
<option name="presentableId" value="LOCAL-01025" />
|
|
874
871
|
<option name="project" value="LOCAL" />
|
|
875
|
-
<updated>
|
|
872
|
+
<updated>1646343669675</updated>
|
|
876
873
|
</task>
|
|
877
|
-
<task id="LOCAL-
|
|
878
|
-
<created>
|
|
879
|
-
<option name="number" value="
|
|
880
|
-
<option name="presentableId" value="LOCAL-
|
|
874
|
+
<task id="LOCAL-01026" summary="Extract logic with paste from word inside separate plugin">
|
|
875
|
+
<created>1646343680982</created>
|
|
876
|
+
<option name="number" value="01026" />
|
|
877
|
+
<option name="presentableId" value="LOCAL-01026" />
|
|
881
878
|
<option name="project" value="LOCAL" />
|
|
882
|
-
<updated>
|
|
879
|
+
<updated>1646343680982</updated>
|
|
883
880
|
</task>
|
|
884
|
-
<task id="LOCAL-
|
|
885
|
-
<created>
|
|
886
|
-
<option name="number" value="
|
|
887
|
-
<option name="presentableId" value="LOCAL-
|
|
881
|
+
<task id="LOCAL-01027" summary="Added module description">
|
|
882
|
+
<created>1646344544587</created>
|
|
883
|
+
<option name="number" value="01027" />
|
|
884
|
+
<option name="presentableId" value="LOCAL-01027" />
|
|
888
885
|
<option name="project" value="LOCAL" />
|
|
889
|
-
<updated>
|
|
886
|
+
<updated>1646344544587</updated>
|
|
890
887
|
</task>
|
|
891
|
-
<task id="LOCAL-
|
|
892
|
-
<created>
|
|
893
|
-
<option name="number" value="
|
|
894
|
-
<option name="presentableId" value="LOCAL-
|
|
888
|
+
<task id="LOCAL-01028" summary="Fixed a bug when it was impossible to select a normal font after selecting any other">
|
|
889
|
+
<created>1646417579156</created>
|
|
890
|
+
<option name="number" value="01028" />
|
|
891
|
+
<option name="presentableId" value="LOCAL-01028" />
|
|
895
892
|
<option name="project" value="LOCAL" />
|
|
896
|
-
<updated>
|
|
893
|
+
<updated>1646417579156</updated>
|
|
897
894
|
</task>
|
|
898
|
-
<task id="LOCAL-
|
|
899
|
-
<created>
|
|
900
|
-
<option name="number" value="
|
|
901
|
-
<option name="presentableId" value="LOCAL-
|
|
895
|
+
<task id="LOCAL-01029" summary="The problem that the selected text disappears #790 Issue: https://github.com/xdan/jodit/issues/790">
|
|
896
|
+
<created>1646547666409</created>
|
|
897
|
+
<option name="number" value="01029" />
|
|
898
|
+
<option name="presentableId" value="LOCAL-01029" />
|
|
902
899
|
<option name="project" value="LOCAL" />
|
|
903
|
-
<updated>
|
|
900
|
+
<updated>1646547666409</updated>
|
|
904
901
|
</task>
|
|
905
|
-
<task id="LOCAL-
|
|
906
|
-
<created>
|
|
907
|
-
<option name="number" value="
|
|
908
|
-
<option name="presentableId" value="LOCAL-
|
|
902
|
+
<task id="LOCAL-01030" summary="Refactoring">
|
|
903
|
+
<created>1646547714142</created>
|
|
904
|
+
<option name="number" value="01030" />
|
|
905
|
+
<option name="presentableId" value="LOCAL-01030" />
|
|
909
906
|
<option name="project" value="LOCAL" />
|
|
910
|
-
<updated>
|
|
907
|
+
<updated>1646547714142</updated>
|
|
911
908
|
</task>
|
|
912
|
-
<task id="LOCAL-
|
|
913
|
-
<created>
|
|
914
|
-
<option name="number" value="
|
|
915
|
-
<option name="presentableId" value="LOCAL-
|
|
909
|
+
<task id="LOCAL-01031" summary="Refactoring">
|
|
910
|
+
<created>1646547723942</created>
|
|
911
|
+
<option name="number" value="01031" />
|
|
912
|
+
<option name="presentableId" value="LOCAL-01031" />
|
|
916
913
|
<option name="project" value="LOCAL" />
|
|
917
|
-
<updated>
|
|
914
|
+
<updated>1646547723942</updated>
|
|
918
915
|
</task>
|
|
919
|
-
<task id="LOCAL-
|
|
920
|
-
<created>
|
|
921
|
-
<option name="number" value="
|
|
922
|
-
<option name="presentableId" value="LOCAL-
|
|
916
|
+
<task id="LOCAL-01032" summary=" Dropdowns not hiding when clicking again on the arrow #791 Issue: https://github.com/xdan/jodit/issues/791">
|
|
917
|
+
<created>1646549939680</created>
|
|
918
|
+
<option name="number" value="01032" />
|
|
919
|
+
<option name="presentableId" value="LOCAL-01032" />
|
|
923
920
|
<option name="project" value="LOCAL" />
|
|
924
|
-
<updated>
|
|
921
|
+
<updated>1646549939680</updated>
|
|
925
922
|
</task>
|
|
926
|
-
<task id="LOCAL-
|
|
927
|
-
<created>
|
|
928
|
-
<option name="number" value="
|
|
929
|
-
<option name="presentableId" value="LOCAL-
|
|
923
|
+
<task id="LOCAL-01033" summary=" Dropdowns not hiding when clicking again on the arrow #791 Issue: https://github.com/xdan/jodit/issues/791">
|
|
924
|
+
<created>1646556844514</created>
|
|
925
|
+
<option name="number" value="01033" />
|
|
926
|
+
<option name="presentableId" value="LOCAL-01033" />
|
|
930
927
|
<option name="project" value="LOCAL" />
|
|
931
|
-
<updated>
|
|
928
|
+
<updated>1646556844514</updated>
|
|
932
929
|
</task>
|
|
933
|
-
<task id="LOCAL-
|
|
934
|
-
<created>
|
|
935
|
-
<option name="number" value="
|
|
936
|
-
<option name="presentableId" value="LOCAL-
|
|
930
|
+
<task id="LOCAL-01034" summary="- `Observer` module renamed to `History`, accessed via `Jodit.history` - `Jodit.observer` field deprecated and will be removed in future releases - Changed to `history` in `observer` settings. The `observer` field has been deprecated. - Removed `stack` field from `History` class (former `Observer`).">
|
|
931
|
+
<created>1646664075681</created>
|
|
932
|
+
<option name="number" value="01034" />
|
|
933
|
+
<option name="presentableId" value="LOCAL-01034" />
|
|
937
934
|
<option name="project" value="LOCAL" />
|
|
938
|
-
<updated>
|
|
935
|
+
<updated>1646664075681</updated>
|
|
939
936
|
</task>
|
|
940
|
-
<task id="LOCAL-
|
|
941
|
-
<created>
|
|
942
|
-
<option name="number" value="
|
|
943
|
-
<option name="presentableId" value="LOCAL-
|
|
937
|
+
<task id="LOCAL-01035" summary="When adding information to the editor via `Jodit.value`, the history of changes will be process immediately, without a timeout. Issue: https://github.com/xdan/jodit/issues/792">
|
|
938
|
+
<created>1646665444691</created>
|
|
939
|
+
<option name="number" value="01035" />
|
|
940
|
+
<option name="presentableId" value="LOCAL-01035" />
|
|
944
941
|
<option name="project" value="LOCAL" />
|
|
945
|
-
<updated>
|
|
942
|
+
<updated>1646665444691</updated>
|
|
946
943
|
</task>
|
|
947
|
-
<task id="LOCAL-
|
|
948
|
-
<created>
|
|
949
|
-
<option name="number" value="
|
|
950
|
-
<option name="presentableId" value="LOCAL-
|
|
944
|
+
<task id="LOCAL-01036" summary="Separated default editor timeout and `history.timeout`. Now the second setting is just for history. Timeouts for all asynchronous operations in Jodit now apply the `defaultTimeout` setting">
|
|
945
|
+
<created>1646666174736</created>
|
|
946
|
+
<option name="number" value="01036" />
|
|
947
|
+
<option name="presentableId" value="LOCAL-01036" />
|
|
951
948
|
<option name="project" value="LOCAL" />
|
|
952
|
-
<updated>
|
|
949
|
+
<updated>1646666174736</updated>
|
|
953
950
|
</task>
|
|
954
|
-
<task id="LOCAL-
|
|
955
|
-
<created>
|
|
956
|
-
<option name="number" value="
|
|
957
|
-
<option name="presentableId" value="LOCAL-
|
|
951
|
+
<task id="LOCAL-01037" summary="Fix version">
|
|
952
|
+
<created>1646666960237</created>
|
|
953
|
+
<option name="number" value="01037" />
|
|
954
|
+
<option name="presentableId" value="LOCAL-01037" />
|
|
958
955
|
<option name="project" value="LOCAL" />
|
|
959
|
-
<updated>
|
|
956
|
+
<updated>1646666960237</updated>
|
|
960
957
|
</task>
|
|
961
|
-
<task id="LOCAL-
|
|
962
|
-
<created>
|
|
963
|
-
<option name="number" value="
|
|
964
|
-
<option name="presentableId" value="LOCAL-
|
|
958
|
+
<task id="LOCAL-01038" summary="Added file for contributing">
|
|
959
|
+
<created>1646772101211</created>
|
|
960
|
+
<option name="number" value="01038" />
|
|
961
|
+
<option name="presentableId" value="LOCAL-01038" />
|
|
965
962
|
<option name="project" value="LOCAL" />
|
|
966
|
-
<updated>
|
|
963
|
+
<updated>1646772101211</updated>
|
|
967
964
|
</task>
|
|
968
|
-
<task id="LOCAL-
|
|
969
|
-
<created>
|
|
970
|
-
<option name="number" value="
|
|
971
|
-
<option name="presentableId" value="LOCAL-
|
|
965
|
+
<task id="LOCAL-01039" summary="Added file for contributing">
|
|
966
|
+
<created>1646772294935</created>
|
|
967
|
+
<option name="number" value="01039" />
|
|
968
|
+
<option name="presentableId" value="LOCAL-01039" />
|
|
972
969
|
<option name="project" value="LOCAL" />
|
|
973
|
-
<updated>
|
|
970
|
+
<updated>1646772294935</updated>
|
|
974
971
|
</task>
|
|
975
|
-
<task id="LOCAL-
|
|
976
|
-
<created>
|
|
977
|
-
<option name="number" value="
|
|
978
|
-
<option name="presentableId" value="LOCAL-
|
|
972
|
+
<task id="LOCAL-01040" summary="Renamed `wrap-text-nodes` plugin to `wrap-nodes`">
|
|
973
|
+
<created>1646774211824</created>
|
|
974
|
+
<option name="number" value="01040" />
|
|
975
|
+
<option name="presentableId" value="LOCAL-01040" />
|
|
979
976
|
<option name="project" value="LOCAL" />
|
|
980
|
-
<updated>
|
|
977
|
+
<updated>1646774211824</updated>
|
|
981
978
|
</task>
|
|
982
|
-
<task id="LOCAL-
|
|
983
|
-
<created>
|
|
984
|
-
<option name="number" value="
|
|
985
|
-
<option name="presentableId" value="LOCAL-
|
|
979
|
+
<task id="LOCAL-01041" summary="Renamed `wrap-text-nodes` plugin to `wrap-nodes`">
|
|
980
|
+
<created>1646774472753</created>
|
|
981
|
+
<option name="number" value="01041" />
|
|
982
|
+
<option name="presentableId" value="LOCAL-01041" />
|
|
986
983
|
<option name="project" value="LOCAL" />
|
|
987
|
-
<updated>
|
|
984
|
+
<updated>1646774472753</updated>
|
|
988
985
|
</task>
|
|
989
|
-
<task id="LOCAL-
|
|
990
|
-
<created>
|
|
991
|
-
<option name="number" value="
|
|
992
|
-
<option name="presentableId" value="LOCAL-
|
|
986
|
+
<task id="LOCAL-01042" summary="Added test for WrapNode.exclude">
|
|
987
|
+
<created>1646774491860</created>
|
|
988
|
+
<option name="number" value="01042" />
|
|
989
|
+
<option name="presentableId" value="LOCAL-01042" />
|
|
993
990
|
<option name="project" value="LOCAL" />
|
|
994
|
-
<updated>
|
|
991
|
+
<updated>1646774491860</updated>
|
|
995
992
|
</task>
|
|
996
|
-
<task id="LOCAL-
|
|
997
|
-
<created>
|
|
998
|
-
<option name="number" value="
|
|
999
|
-
<option name="presentableId" value="LOCAL-
|
|
993
|
+
<task id="LOCAL-01043" summary="Rename file">
|
|
994
|
+
<created>1646774682800</created>
|
|
995
|
+
<option name="number" value="01043" />
|
|
996
|
+
<option name="presentableId" value="LOCAL-01043" />
|
|
1000
997
|
<option name="project" value="LOCAL" />
|
|
1001
|
-
<updated>
|
|
998
|
+
<updated>1646774682800</updated>
|
|
1002
999
|
</task>
|
|
1003
|
-
<task id="LOCAL-
|
|
1004
|
-
<created>
|
|
1005
|
-
<option name="number" value="
|
|
1006
|
-
<option name="presentableId" value="LOCAL-
|
|
1000
|
+
<task id="LOCAL-01044" summary="Added autotest for redo-undo functionality">
|
|
1001
|
+
<created>1646775180966</created>
|
|
1002
|
+
<option name="number" value="01044" />
|
|
1003
|
+
<option name="presentableId" value="LOCAL-01044" />
|
|
1007
1004
|
<option name="project" value="LOCAL" />
|
|
1008
|
-
<updated>
|
|
1005
|
+
<updated>1646775180966</updated>
|
|
1009
1006
|
</task>
|
|
1010
|
-
<task id="LOCAL-
|
|
1011
|
-
<created>
|
|
1012
|
-
<option name="number" value="
|
|
1013
|
-
<option name="presentableId" value="LOCAL-
|
|
1007
|
+
<task id="LOCAL-01045" summary="Fixed - default is not working for insert ordered list and insert unordered list #799 Issue: https://github.com/xdan/jodit/issues/799">
|
|
1008
|
+
<created>1646776478679</created>
|
|
1009
|
+
<option name="number" value="01045" />
|
|
1010
|
+
<option name="presentableId" value="LOCAL-01045" />
|
|
1014
1011
|
<option name="project" value="LOCAL" />
|
|
1015
|
-
<updated>
|
|
1012
|
+
<updated>1646776478679</updated>
|
|
1016
1013
|
</task>
|
|
1017
|
-
<task id="LOCAL-
|
|
1018
|
-
<created>
|
|
1019
|
-
<option name="number" value="
|
|
1020
|
-
<option name="presentableId" value="LOCAL-
|
|
1014
|
+
<task id="LOCAL-01046" summary="Added `Jodit.synchronizeValues()` method">
|
|
1015
|
+
<created>1646854088446</created>
|
|
1016
|
+
<option name="number" value="01046" />
|
|
1017
|
+
<option name="presentableId" value="LOCAL-01046" />
|
|
1021
1018
|
<option name="project" value="LOCAL" />
|
|
1022
|
-
<updated>
|
|
1019
|
+
<updated>1646854088446</updated>
|
|
1023
1020
|
</task>
|
|
1024
|
-
<task id="LOCAL-
|
|
1025
|
-
<created>
|
|
1026
|
-
<option name="number" value="
|
|
1027
|
-
<option name="presentableId" value="LOCAL-
|
|
1021
|
+
<task id="LOCAL-01047" summary="Added `Jodit.synchronizeValues()` method">
|
|
1022
|
+
<created>1646854320278</created>
|
|
1023
|
+
<option name="number" value="01047" />
|
|
1024
|
+
<option name="presentableId" value="LOCAL-01047" />
|
|
1028
1025
|
<option name="project" value="LOCAL" />
|
|
1029
|
-
<updated>
|
|
1026
|
+
<updated>1646854320278</updated>
|
|
1030
1027
|
</task>
|
|
1031
|
-
<task id="LOCAL-
|
|
1032
|
-
<created>
|
|
1033
|
-
<option name="number" value="
|
|
1034
|
-
<option name="presentableId" value="LOCAL-
|
|
1028
|
+
<task id="LOCAL-01048" summary="Added `spellcheck` plugin">
|
|
1029
|
+
<created>1646854338812</created>
|
|
1030
|
+
<option name="number" value="01048" />
|
|
1031
|
+
<option name="presentableId" value="LOCAL-01048" />
|
|
1035
1032
|
<option name="project" value="LOCAL" />
|
|
1036
|
-
<updated>
|
|
1033
|
+
<updated>1646854338812</updated>
|
|
1037
1034
|
</task>
|
|
1038
|
-
<task id="LOCAL-
|
|
1039
|
-
<created>
|
|
1040
|
-
<option name="number" value="
|
|
1041
|
-
<option name="presentableId" value="LOCAL-
|
|
1035
|
+
<task id="LOCAL-01049" summary="Refactoring `search` plugin">
|
|
1036
|
+
<created>1646854367649</created>
|
|
1037
|
+
<option name="number" value="01049" />
|
|
1038
|
+
<option name="presentableId" value="LOCAL-01049" />
|
|
1042
1039
|
<option name="project" value="LOCAL" />
|
|
1043
|
-
<updated>
|
|
1040
|
+
<updated>1646854367649</updated>
|
|
1044
1041
|
</task>
|
|
1045
|
-
<task id="LOCAL-
|
|
1046
|
-
<created>
|
|
1047
|
-
<option name="number" value="
|
|
1048
|
-
<option name="presentableId" value="LOCAL-
|
|
1042
|
+
<task id="LOCAL-01050" summary="Added `Jodit.synchronizeValues()` method">
|
|
1043
|
+
<created>1646854403772</created>
|
|
1044
|
+
<option name="number" value="01050" />
|
|
1045
|
+
<option name="presentableId" value="LOCAL-01050" />
|
|
1049
1046
|
<option name="project" value="LOCAL" />
|
|
1050
|
-
<updated>
|
|
1047
|
+
<updated>1646854403772</updated>
|
|
1051
1048
|
</task>
|
|
1052
|
-
<task id="LOCAL-
|
|
1053
|
-
<created>
|
|
1054
|
-
<option name="number" value="
|
|
1055
|
-
<option name="presentableId" value="LOCAL-
|
|
1049
|
+
<task id="LOCAL-01051" summary="Added `Jodit.synchronizeValues()` method">
|
|
1050
|
+
<created>1647075217271</created>
|
|
1051
|
+
<option name="number" value="01051" />
|
|
1052
|
+
<option name="presentableId" value="LOCAL-01051" />
|
|
1056
1053
|
<option name="project" value="LOCAL" />
|
|
1057
|
-
<updated>
|
|
1054
|
+
<updated>1647075217272</updated>
|
|
1058
1055
|
</task>
|
|
1059
|
-
<task id="LOCAL-
|
|
1060
|
-
<created>
|
|
1061
|
-
<option name="number" value="
|
|
1062
|
-
<option name="presentableId" value="LOCAL-
|
|
1056
|
+
<task id="LOCAL-01052" summary="Added spelling i18n">
|
|
1057
|
+
<created>1647075313124</created>
|
|
1058
|
+
<option name="number" value="01052" />
|
|
1059
|
+
<option name="presentableId" value="LOCAL-01052" />
|
|
1063
1060
|
<option name="project" value="LOCAL" />
|
|
1064
|
-
<updated>
|
|
1061
|
+
<updated>1647075313124</updated>
|
|
1065
1062
|
</task>
|
|
1066
|
-
<task id="LOCAL-
|
|
1067
|
-
<created>
|
|
1068
|
-
<option name="number" value="
|
|
1069
|
-
<option name="presentableId" value="LOCAL-
|
|
1063
|
+
<task id="LOCAL-01053" summary="Fixed tests for spellchecking">
|
|
1064
|
+
<created>1647075340981</created>
|
|
1065
|
+
<option name="number" value="01053" />
|
|
1066
|
+
<option name="presentableId" value="LOCAL-01053" />
|
|
1070
1067
|
<option name="project" value="LOCAL" />
|
|
1071
|
-
<updated>
|
|
1068
|
+
<updated>1647075340981</updated>
|
|
1072
1069
|
</task>
|
|
1073
|
-
<task id="LOCAL-
|
|
1074
|
-
<created>
|
|
1075
|
-
<option name="number" value="
|
|
1076
|
-
<option name="presentableId" value="LOCAL-
|
|
1070
|
+
<task id="LOCAL-01054" summary="Lazy Walker">
|
|
1071
|
+
<created>1647075368563</created>
|
|
1072
|
+
<option name="number" value="01054" />
|
|
1073
|
+
<option name="presentableId" value="LOCAL-01054" />
|
|
1077
1074
|
<option name="project" value="LOCAL" />
|
|
1078
|
-
<updated>
|
|
1075
|
+
<updated>1647075368563</updated>
|
|
1079
1076
|
</task>
|
|
1080
|
-
<task id="LOCAL-
|
|
1081
|
-
<created>
|
|
1082
|
-
<option name="number" value="
|
|
1083
|
-
<option name="presentableId" value="LOCAL-
|
|
1077
|
+
<task id="LOCAL-01055" summary="Fixed autotests">
|
|
1078
|
+
<created>1647085827400</created>
|
|
1079
|
+
<option name="number" value="01055" />
|
|
1080
|
+
<option name="presentableId" value="LOCAL-01055" />
|
|
1084
1081
|
<option name="project" value="LOCAL" />
|
|
1085
|
-
<updated>
|
|
1082
|
+
<updated>1647085827400</updated>
|
|
1086
1083
|
</task>
|
|
1087
|
-
<task id="LOCAL-
|
|
1088
|
-
<created>
|
|
1089
|
-
<option name="number" value="
|
|
1090
|
-
<option name="presentableId" value="LOCAL-
|
|
1084
|
+
<task id="LOCAL-01056" summary="Enabled `@typescript-eslint/explicit-function-return-type` in eslint">
|
|
1085
|
+
<created>1647169733781</created>
|
|
1086
|
+
<option name="number" value="01056" />
|
|
1087
|
+
<option name="presentableId" value="LOCAL-01056" />
|
|
1091
1088
|
<option name="project" value="LOCAL" />
|
|
1092
|
-
<updated>
|
|
1089
|
+
<updated>1647169733781</updated>
|
|
1093
1090
|
</task>
|
|
1094
|
-
<task id="LOCAL-
|
|
1095
|
-
<created>
|
|
1096
|
-
<option name="number" value="
|
|
1097
|
-
<option name="presentableId" value="LOCAL-
|
|
1091
|
+
<task id="LOCAL-01057" summary="Enabled `@typescript-eslint/explicit-function-return-type` in eslint">
|
|
1092
|
+
<created>1647169915507</created>
|
|
1093
|
+
<option name="number" value="01057" />
|
|
1094
|
+
<option name="presentableId" value="LOCAL-01057" />
|
|
1098
1095
|
<option name="project" value="LOCAL" />
|
|
1099
|
-
<updated>
|
|
1096
|
+
<updated>1647169915507</updated>
|
|
1100
1097
|
</task>
|
|
1101
|
-
<task id="LOCAL-
|
|
1102
|
-
<created>
|
|
1103
|
-
<option name="number" value="
|
|
1104
|
-
<option name="presentableId" value="LOCAL-
|
|
1098
|
+
<task id="LOCAL-01058" summary="Fixed doc">
|
|
1099
|
+
<created>1647170042586</created>
|
|
1100
|
+
<option name="number" value="01058" />
|
|
1101
|
+
<option name="presentableId" value="LOCAL-01058" />
|
|
1105
1102
|
<option name="project" value="LOCAL" />
|
|
1106
|
-
<updated>
|
|
1103
|
+
<updated>1647170042586</updated>
|
|
1107
1104
|
</task>
|
|
1108
|
-
<task id="LOCAL-
|
|
1109
|
-
<created>
|
|
1110
|
-
<option name="number" value="
|
|
1111
|
-
<option name="presentableId" value="LOCAL-
|
|
1105
|
+
<task id="LOCAL-01059" summary="Fix doc">
|
|
1106
|
+
<created>1647170248593</created>
|
|
1107
|
+
<option name="number" value="01059" />
|
|
1108
|
+
<option name="presentableId" value="LOCAL-01059" />
|
|
1112
1109
|
<option name="project" value="LOCAL" />
|
|
1113
|
-
<updated>
|
|
1110
|
+
<updated>1647170248593</updated>
|
|
1114
1111
|
</task>
|
|
1115
|
-
<task id="LOCAL-
|
|
1116
|
-
<created>
|
|
1117
|
-
<option name="number" value="
|
|
1118
|
-
<option name="presentableId" value="LOCAL-
|
|
1112
|
+
<task id="LOCAL-01060" summary="Fix doc">
|
|
1113
|
+
<created>1647170733664</created>
|
|
1114
|
+
<option name="number" value="01060" />
|
|
1115
|
+
<option name="presentableId" value="LOCAL-01060" />
|
|
1119
1116
|
<option name="project" value="LOCAL" />
|
|
1120
|
-
<updated>
|
|
1117
|
+
<updated>1647170733664</updated>
|
|
1121
1118
|
</task>
|
|
1122
|
-
<task id="LOCAL-
|
|
1123
|
-
<created>
|
|
1124
|
-
<option name="number" value="
|
|
1125
|
-
<option name="presentableId" value="LOCAL-
|
|
1119
|
+
<task id="LOCAL-01061" summary="In print preview, table border color and background color is not showing #803 Issue: https://github.com/xdan/jodit/issues/803">
|
|
1120
|
+
<created>1647409270570</created>
|
|
1121
|
+
<option name="number" value="01061" />
|
|
1122
|
+
<option name="presentableId" value="LOCAL-01061" />
|
|
1126
1123
|
<option name="project" value="LOCAL" />
|
|
1127
|
-
<updated>
|
|
1124
|
+
<updated>1647409270570</updated>
|
|
1128
1125
|
</task>
|
|
1129
|
-
<task id="LOCAL-
|
|
1130
|
-
<created>
|
|
1131
|
-
<option name="number" value="
|
|
1132
|
-
<option name="presentableId" value="LOCAL-
|
|
1126
|
+
<task id="LOCAL-01062" summary="Search plugin now highlights all found options Issue: https://github.com/xdan/jodit/issues/798">
|
|
1127
|
+
<created>1647409664163</created>
|
|
1128
|
+
<option name="number" value="01062" />
|
|
1129
|
+
<option name="presentableId" value="LOCAL-01062" />
|
|
1133
1130
|
<option name="project" value="LOCAL" />
|
|
1134
|
-
<updated>
|
|
1131
|
+
<updated>1647409664163</updated>
|
|
1135
1132
|
</task>
|
|
1136
|
-
<task id="LOCAL-
|
|
1137
|
-
<created>
|
|
1138
|
-
<option name="number" value="
|
|
1139
|
-
<option name="presentableId" value="LOCAL-
|
|
1133
|
+
<task id="LOCAL-01063" summary="Added `Jodit.constants` Issue: https://github.com/xdan/jodit/issues/806">
|
|
1134
|
+
<created>1647409710261</created>
|
|
1135
|
+
<option name="number" value="01063" />
|
|
1136
|
+
<option name="presentableId" value="LOCAL-01063" />
|
|
1140
1137
|
<option name="project" value="LOCAL" />
|
|
1141
|
-
<updated>
|
|
1138
|
+
<updated>1647409710261</updated>
|
|
1142
1139
|
</task>
|
|
1143
|
-
<task id="LOCAL-
|
|
1144
|
-
<created>
|
|
1145
|
-
<option name="number" value="
|
|
1146
|
-
<option name="presentableId" value="LOCAL-
|
|
1140
|
+
<task id="LOCAL-01064" summary="Dom.wrap can get Range">
|
|
1141
|
+
<created>1647409731805</created>
|
|
1142
|
+
<option name="number" value="01064" />
|
|
1143
|
+
<option name="presentableId" value="LOCAL-01064" />
|
|
1147
1144
|
<option name="project" value="LOCAL" />
|
|
1148
|
-
<updated>
|
|
1145
|
+
<updated>1647409731805</updated>
|
|
1149
1146
|
</task>
|
|
1150
|
-
<task id="LOCAL-
|
|
1151
|
-
<created>
|
|
1152
|
-
<option name="number" value="
|
|
1153
|
-
<option name="presentableId" value="LOCAL-
|
|
1147
|
+
<task id="LOCAL-01065" summary="Fixed tests">
|
|
1148
|
+
<created>1647410274953</created>
|
|
1149
|
+
<option name="number" value="01065" />
|
|
1150
|
+
<option name="presentableId" value="LOCAL-01065" />
|
|
1154
1151
|
<option name="project" value="LOCAL" />
|
|
1155
|
-
<updated>
|
|
1152
|
+
<updated>1647410274953</updated>
|
|
1156
1153
|
</task>
|
|
1157
|
-
<task id="LOCAL-
|
|
1158
|
-
<created>
|
|
1159
|
-
<option name="number" value="
|
|
1160
|
-
<option name="presentableId" value="LOCAL-
|
|
1154
|
+
<task id="LOCAL-01066" summary="Fixed tests">
|
|
1155
|
+
<created>1647411230710</created>
|
|
1156
|
+
<option name="number" value="01066" />
|
|
1157
|
+
<option name="presentableId" value="LOCAL-01066" />
|
|
1161
1158
|
<option name="project" value="LOCAL" />
|
|
1162
|
-
<updated>
|
|
1159
|
+
<updated>1647411230710</updated>
|
|
1163
1160
|
</task>
|
|
1164
|
-
<task id="LOCAL-
|
|
1165
|
-
<created>
|
|
1166
|
-
<option name="number" value="
|
|
1167
|
-
<option name="presentableId" value="LOCAL-
|
|
1161
|
+
<task id="LOCAL-01067" summary="Added `Config.pasteHTMLActionList` and `Config.pasteFromWordActionList` options Issue: https://github.com/xdan/jodit/issues/802.">
|
|
1162
|
+
<created>1647413135639</created>
|
|
1163
|
+
<option name="number" value="01067" />
|
|
1164
|
+
<option name="presentableId" value="LOCAL-01067" />
|
|
1168
1165
|
<option name="project" value="LOCAL" />
|
|
1169
|
-
<updated>
|
|
1166
|
+
<updated>1647413135639</updated>
|
|
1170
1167
|
</task>
|
|
1171
|
-
<task id="LOCAL-
|
|
1172
|
-
<created>
|
|
1173
|
-
<option name="number" value="
|
|
1174
|
-
<option name="presentableId" value="LOCAL-
|
|
1168
|
+
<task id="LOCAL-01068" summary="Added `Config.pasteHTMLActionList` and `Config.pasteFromWordActionList` options Issue: https://github.com/xdan/jodit/issues/802.">
|
|
1169
|
+
<created>1647413164631</created>
|
|
1170
|
+
<option name="number" value="01068" />
|
|
1171
|
+
<option name="presentableId" value="LOCAL-01068" />
|
|
1175
1172
|
<option name="project" value="LOCAL" />
|
|
1176
|
-
<updated>
|
|
1173
|
+
<updated>1647413164631</updated>
|
|
1177
1174
|
</task>
|
|
1178
|
-
<task id="LOCAL-
|
|
1179
|
-
<created>
|
|
1180
|
-
<option name="number" value="
|
|
1181
|
-
<option name="presentableId" value="LOCAL-
|
|
1175
|
+
<task id="LOCAL-01069" summary="Fix doc">
|
|
1176
|
+
<created>1647458239889</created>
|
|
1177
|
+
<option name="number" value="01069" />
|
|
1178
|
+
<option name="presentableId" value="LOCAL-01069" />
|
|
1182
1179
|
<option name="project" value="LOCAL" />
|
|
1183
|
-
<updated>
|
|
1180
|
+
<updated>1647458239890</updated>
|
|
1184
1181
|
</task>
|
|
1185
|
-
<task id="LOCAL-
|
|
1186
|
-
<created>
|
|
1187
|
-
<option name="number" value="
|
|
1188
|
-
<option name="presentableId" value="LOCAL-
|
|
1182
|
+
<task id="LOCAL-01070" summary=""Uncaught TypeError: this.setEditorValue is not a function" with Japanese input method #807 Issue: https://github.com/xdan/jodit/issues/807">
|
|
1183
|
+
<created>1647729803543</created>
|
|
1184
|
+
<option name="number" value="01070" />
|
|
1185
|
+
<option name="presentableId" value="LOCAL-01070" />
|
|
1189
1186
|
<option name="project" value="LOCAL" />
|
|
1190
|
-
<updated>
|
|
1187
|
+
<updated>1647729803543</updated>
|
|
1191
1188
|
</task>
|
|
1192
|
-
<option name="localTasksCounter" value="
|
|
1189
|
+
<option name="localTasksCounter" value="1071" />
|
|
1193
1190
|
<servers />
|
|
1194
1191
|
</component>
|
|
1195
1192
|
<component name="TypeScriptGeneratedFilesManager">
|
|
@@ -1329,32 +1326,32 @@
|
|
|
1329
1326
|
</component>
|
|
1330
1327
|
<component name="VcsManagerConfiguration">
|
|
1331
1328
|
<option name="CHECK_CODE_SMELLS_BEFORE_PROJECT_COMMIT" value="false" />
|
|
1332
|
-
<MESSAGE value="
|
|
1333
|
-
<MESSAGE value="
|
|
1329
|
+
<MESSAGE value="Separated default editor timeout and `history.timeout`. Now the second setting is just for history. Timeouts for all asynchronous operations in Jodit now apply the `defaultTimeout` setting" />
|
|
1330
|
+
<MESSAGE value="Fix version" />
|
|
1331
|
+
<MESSAGE value="Added file for contributing" />
|
|
1332
|
+
<MESSAGE value="Renamed `wrap-text-nodes` plugin to `wrap-nodes`" />
|
|
1333
|
+
<MESSAGE value="Added test for WrapNode.exclude" />
|
|
1334
|
+
<MESSAGE value="Rename file" />
|
|
1335
|
+
<MESSAGE value="Added autotest for redo-undo functionality" />
|
|
1336
|
+
<MESSAGE value="Fixed - default is not working for insert ordered list and insert unordered list #799 Issue: https://github.com/xdan/jodit/issues/799" />
|
|
1337
|
+
<MESSAGE value="Added `spellcheck` plugin" />
|
|
1338
|
+
<MESSAGE value="Refactoring `search` plugin" />
|
|
1339
|
+
<MESSAGE value="Added `Jodit.synchronizeValues()` method" />
|
|
1340
|
+
<MESSAGE value="Added spelling i18n" />
|
|
1341
|
+
<MESSAGE value="Fixed tests for spellchecking" />
|
|
1342
|
+
<MESSAGE value="Lazy Walker" />
|
|
1343
|
+
<MESSAGE value="Fixed autotests" />
|
|
1344
|
+
<MESSAGE value="Enabled `@typescript-eslint/explicit-function-return-type` in eslint" />
|
|
1345
|
+
<MESSAGE value="Fixed doc" />
|
|
1346
|
+
<MESSAGE value="In print preview, table border color and background color is not showing #803 Issue: https://github.com/xdan/jodit/issues/803" />
|
|
1347
|
+
<MESSAGE value="Search plugin now highlights all found options Issue: https://github.com/xdan/jodit/issues/798" />
|
|
1348
|
+
<MESSAGE value="Added `Jodit.constants` Issue: https://github.com/xdan/jodit/issues/806" />
|
|
1349
|
+
<MESSAGE value="Dom.wrap can get Range" />
|
|
1350
|
+
<MESSAGE value="Fixed tests" />
|
|
1351
|
+
<MESSAGE value="Added `Config.pasteHTMLActionList` and `Config.pasteFromWordActionList` options Issue: https://github.com/xdan/jodit/issues/802." />
|
|
1334
1352
|
<MESSAGE value="Fix doc" />
|
|
1335
|
-
<MESSAGE value="
|
|
1336
|
-
<
|
|
1337
|
-
<MESSAGE value="Changed the positions of some buttons on different resolutions for greater density" />
|
|
1338
|
-
<MESSAGE value="Fixed Build error: Property or signature expected. #174 Issue: https://github.com/jodit/jodit-react/issues/174" />
|
|
1339
|
-
<MESSAGE value="Small refactoring" />
|
|
1340
|
-
<MESSAGE value="Disabled the ability to drag and drop elements on mobile devices as it affected page scrollability" />
|
|
1341
|
-
<MESSAGE value="Refactoring iframe module" />
|
|
1342
|
-
<MESSAGE value="Fixed a bug in the editor preview display module - when the editor did not fix the correct image sizes" />
|
|
1343
|
-
<MESSAGE value="Added experimental entry point for VDom" />
|
|
1344
|
-
<MESSAGE value="Apply prettier" />
|
|
1345
|
-
<MESSAGE value="Added record in changelog" />
|
|
1346
|
-
<MESSAGE value="Fixed issue Ordered Bullets are getting changed to unordered bullets after copy and pasting within the editor #789 Issue: https://github.com/xdan/jodit/issues/789" />
|
|
1347
|
-
<MESSAGE value="Update npm and duck typing Dom.isNode" />
|
|
1348
|
-
<MESSAGE value="Fixed bug inside placeholder plugin" />
|
|
1349
|
-
<MESSAGE value="Refactoring paste plugin" />
|
|
1350
|
-
<MESSAGE value="Small image-editor refactoring" />
|
|
1351
|
-
<MESSAGE value="Extract logic with paste from word inside separate plugin" />
|
|
1352
|
-
<MESSAGE value="Added module description" />
|
|
1353
|
-
<MESSAGE value="Fixed a bug when it was impossible to select a normal font after selecting any other" />
|
|
1354
|
-
<MESSAGE value="The problem that the selected text disappears #790 Issue: https://github.com/xdan/jodit/issues/790" />
|
|
1355
|
-
<MESSAGE value="Refactoring" />
|
|
1356
|
-
<MESSAGE value=" Dropdowns not hiding when clicking again on the arrow #791 Issue: https://github.com/xdan/jodit/issues/791" />
|
|
1357
|
-
<option name="LAST_COMMIT_MESSAGE" value=" Dropdowns not hiding when clicking again on the arrow #791 Issue: https://github.com/xdan/jodit/issues/791" />
|
|
1353
|
+
<MESSAGE value=""Uncaught TypeError: this.setEditorValue is not a function" with Japanese input method #807 Issue: https://github.com/xdan/jodit/issues/807" />
|
|
1354
|
+
<option name="LAST_COMMIT_MESSAGE" value=""Uncaught TypeError: this.setEditorValue is not a function" with Japanese input method #807 Issue: https://github.com/xdan/jodit/issues/807" />
|
|
1358
1355
|
</component>
|
|
1359
1356
|
<component name="XDebuggerManager">
|
|
1360
1357
|
<breakpoint-manager>
|
|
@@ -1406,7 +1403,7 @@
|
|
|
1406
1403
|
</line-breakpoint>
|
|
1407
1404
|
<line-breakpoint enabled="true" type="javascript">
|
|
1408
1405
|
<url>file://$PROJECT_DIR$/test/tests/units/modules/dom.js</url>
|
|
1409
|
-
<line>
|
|
1406
|
+
<line>63</line>
|
|
1410
1407
|
<option name="timeStamp" value="52" />
|
|
1411
1408
|
</line-breakpoint>
|
|
1412
1409
|
<line-breakpoint enabled="true" type="javascript">
|
|
@@ -1414,6 +1411,11 @@
|
|
|
1414
1411
|
<line>183</line>
|
|
1415
1412
|
<option name="timeStamp" value="53" />
|
|
1416
1413
|
</line-breakpoint>
|
|
1414
|
+
<line-breakpoint enabled="true" type="javascript">
|
|
1415
|
+
<url>file://$PROJECT_DIR$/src/plugins/ordered-list/ordered-list.ts</url>
|
|
1416
|
+
<line>54</line>
|
|
1417
|
+
<option name="timeStamp" value="54" />
|
|
1418
|
+
</line-breakpoint>
|
|
1417
1419
|
</breakpoints>
|
|
1418
1420
|
</breakpoint-manager>
|
|
1419
1421
|
</component>
|