jodit 3.17.1 → 3.18.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 +299 -310
- package/.nvmrc +1 -1
- package/CHANGELOG.MD +91 -5
- package/build/jodit.css +1061 -1058
- package/build/jodit.es2018.css +873 -869
- package/build/jodit.es2018.en.css +873 -869
- package/build/jodit.es2018.en.js +10430 -9774
- package/build/jodit.es2018.en.min.css +1 -1
- package/build/jodit.es2018.en.min.js +1 -1
- package/build/jodit.es2018.js +10290 -9634
- package/build/jodit.es2018.min.css +1 -1
- package/build/jodit.es2018.min.js +1 -1
- package/build/jodit.js +11827 -10480
- package/build/jodit.min.css +2 -2
- package/build/jodit.min.js +1 -1
- package/build/vdom.css +1 -1
- package/build/vdom.js +45 -26
- package/package.json +24 -20
- package/src/core/component/component.ts +6 -1
- package/src/core/component/view-component.ts +4 -4
- package/src/core/constants.ts +2 -0
- package/src/core/create/create.test.js +103 -0
- package/src/core/decorators/debounce/debounce.ts +14 -10
- package/src/core/decorators/decorators.test.js +184 -0
- package/src/core/decorators/idle/idle.ts +5 -12
- package/src/core/decorators/persistent/persistent.ts +3 -3
- package/src/core/decorators/wait/wait.ts +2 -4
- package/src/core/decorators/watch/watch.ts +8 -10
- package/src/core/dom/dom.test.js +645 -0
- package/src/core/dom/dom.ts +21 -34
- package/src/core/event-emitter/event-emitter.test.js +1348 -0
- package/src/core/event-emitter/event-emitter.ts +168 -129
- package/src/core/event-emitter/object-observer.test.js +596 -0
- package/src/core/event-emitter/observable.ts +4 -2
- package/src/core/event-emitter/store.ts +35 -14
- package/src/core/global.ts +4 -4
- package/src/core/helpers/array/split-array.ts +1 -3
- package/src/core/helpers/array/to-array.ts +1 -1
- package/src/core/helpers/checker/index.ts +1 -0
- package/src/core/helpers/checker/is-imp-interface.ts +1 -1
- package/src/core/helpers/checker/is-jodit-object.ts +1 -14
- package/src/core/helpers/checker/is-string.ts +9 -0
- package/src/core/helpers/checker/is-view-object.ts +24 -0
- package/src/core/helpers/helpers.test.js +859 -0
- package/src/core/helpers/html/apply-styles.ts +2 -2
- package/src/core/helpers/html/clean-from-word.ts +2 -2
- package/src/core/helpers/html/index.ts +1 -0
- package/src/core/helpers/html/safe-html.ts +57 -0
- package/src/core/helpers/html/strip-tags.ts +1 -38
- package/src/core/helpers/normalize/normalize-css-value.ts +3 -3
- package/src/core/helpers/normalize/normalize-key-aliases.ts +1 -1
- package/src/core/helpers/normalize/normalize-node.ts +1 -1
- package/src/core/helpers/size/get-scroll-parent.ts +1 -1
- package/src/core/helpers/size/position.test.js +248 -0
- package/src/core/helpers/size/position.ts +1 -1
- package/src/core/helpers/string/i18n.ts +6 -6
- package/src/core/helpers/utils/append-script.ts +2 -1
- package/src/core/helpers/utils/assert.ts +4 -1
- package/src/core/helpers/utils/build-query.ts +1 -1
- package/src/core/helpers/utils/config-proto.ts +5 -1
- package/src/core/helpers/utils/convert-media-url-to-video-embed.ts +1 -1
- package/src/core/helpers/utils/css.ts +7 -3
- package/src/core/helpers/utils/data-bind.ts +2 -3
- package/src/core/helpers/utils/default-language.ts +1 -1
- package/src/core/helpers/utils/index.ts +1 -0
- package/src/core/helpers/utils/reset.ts +51 -0
- package/src/core/helpers/utils/scroll-into-view.ts +12 -6
- package/src/core/helpers/utils/selector.ts +9 -9
- package/src/core/helpers/utils/set.ts +1 -1
- package/src/core/helpers/utils/utils.ts +4 -47
- package/src/core/selection/select.ts +13 -3
- package/src/core/selection/selection.test.js +985 -0
- package/src/core/selection/style/api/element-has-same-style.ts +3 -1
- package/src/core/selection/style/api/toggle/toggle-css.ts +6 -8
- package/src/core/selection/style/style.test.js +1631 -0
- package/src/core/traits/mods.ts +1 -1
- package/src/core/ui/button/button/button.ts +8 -6
- package/src/core/ui/button/group/group.ts +3 -3
- package/src/core/ui/element.ts +2 -2
- package/src/core/ui/form/block/block.ts +2 -2
- package/src/core/ui/form/form.ts +1 -1
- package/src/core/ui/form/inputs/area/area.ts +1 -1
- package/src/core/ui/form/inputs/checkbox/checkbox.ts +1 -1
- package/src/core/ui/form/inputs/file/file.ts +2 -2
- package/src/core/ui/form/inputs/input/input.ts +3 -2
- package/src/core/ui/form/inputs/select/select.ts +2 -2
- package/src/core/ui/form/validators/input.ts +2 -1
- package/src/core/ui/form/validators/select.ts +1 -1
- package/src/core/ui/group/group.ts +2 -2
- package/src/core/ui/group/list.ts +2 -2
- package/src/core/ui/group/separator.ts +1 -1
- package/src/core/ui/group/spacer.ts +2 -2
- package/src/core/ui/helpers/buttons.ts +1 -1
- package/src/core/ui/helpers/get-strong-control-types.ts +2 -2
- package/src/core/ui/icon.ts +1 -1
- package/src/core/ui/popup/popup.test.js +211 -0
- package/src/core/ui/popup/popup.ts +14 -8
- package/src/core/ui/progress-bar/progress-bar.ts +1 -1
- package/src/core/view/view.ts +0 -4
- package/src/jodit.ts +2 -1
- package/src/langs/i18n.test.js +83 -0
- package/src/modules/context-menu/context-menu.ts +6 -3
- package/src/modules/dialog/dialog.test.js +189 -0
- package/src/modules/file-browser/file-browser.test.js +1313 -0
- package/src/modules/file-browser/file-browser.ts +2 -2
- package/src/modules/history/history.test.js +232 -0
- package/src/modules/table/table.test.js +2348 -0
- package/src/modules/toolbar/button/button.ts +5 -5
- package/src/modules/toolbar/collection/collection.ts +0 -2
- package/src/modules/uploader/config.ts +3 -2
- package/src/modules/uploader/helpers/build-data.ts +1 -1
- package/src/modules/uploader/uploader.test.js +193 -0
- package/src/modules/uploader/uploader.ts +6 -0
- package/src/modules/widget/tabs/tabs.ts +3 -3
- package/src/plugins/add-new-line/add-new-line.less +4 -3
- package/src/plugins/add-new-line/add-new-line.ts +40 -66
- package/src/plugins/add-new-line/config.ts +55 -0
- package/src/plugins/class-span/class-span.test.js +222 -0
- package/src/plugins/clipboard/clipboard.test.js +1306 -0
- package/src/plugins/clipboard/{drag-and-drop.ts → drag-and-drop/drag-and-drop.ts} +2 -2
- package/src/plugins/clipboard/drag-and-drop-element/drag-and-drop-element.test.js +194 -0
- package/src/plugins/clipboard/{drag-and-drop-element.ts → drag-and-drop-element/drag-and-drop-element.ts} +1 -1
- package/src/plugins/clipboard/index.ts +2 -0
- package/src/plugins/color/color.test.js +188 -0
- package/src/plugins/color/color.ts +1 -2
- package/src/plugins/error-messages/error-messages.ts +2 -1
- package/src/plugins/fix/clean-html/README.md +1 -1
- package/src/plugins/fix/clean-html/clean-html.test.js +417 -0
- package/src/plugins/fix/clean-html/clean-html.ts +41 -420
- package/src/plugins/fix/clean-html/config.ts +3 -3
- package/src/plugins/fix/clean-html/helpers/get-hash.ts +67 -0
- package/src/plugins/fix/clean-html/helpers/index.ts +14 -0
- package/src/plugins/fix/clean-html/helpers/remove-format/remove-format-for-collapsed-selection.ts +57 -0
- package/src/plugins/fix/clean-html/helpers/remove-format/remove-format-for-selection.ts +83 -0
- package/src/plugins/fix/clean-html/helpers/visitor/filters/allow-attributes.ts +48 -0
- package/src/plugins/fix/clean-html/helpers/visitor/filters/fill-empty-paragraph.ts +33 -0
- package/src/plugins/fix/clean-html/helpers/visitor/filters/index.ts +20 -0
- package/src/plugins/fix/clean-html/helpers/visitor/filters/remove-inv-text-nodes.ts +52 -0
- package/src/plugins/fix/clean-html/helpers/visitor/filters/replace-old-tags.ts +63 -0
- package/src/plugins/fix/clean-html/helpers/visitor/filters/sanitize-attributes.ts +28 -0
- package/src/plugins/fix/clean-html/helpers/visitor/filters/try-remove-node.ts +97 -0
- package/src/plugins/fix/clean-html/helpers/visitor/visit-node-walker.ts +52 -0
- package/src/plugins/fix/wrap-nodes/config.ts +1 -1
- package/src/plugins/fix/wrap-nodes/wrap-nodes.test.js +157 -0
- package/src/plugins/fix/wrap-nodes/wrap-nodes.ts +1 -1
- package/src/plugins/focus/focus.test.js +115 -0
- package/src/plugins/font/font.test.js +318 -0
- package/src/plugins/format-block/format-block.ts +2 -3
- package/src/plugins/fullsize/fullsize.ts +4 -4
- package/src/plugins/iframe/iframe.test.js +306 -0
- package/src/plugins/iframe/iframe.ts +1 -2
- package/src/plugins/image/image.test.js +99 -0
- package/src/plugins/indent/indent.test.js +282 -0
- package/src/plugins/index.ts +3 -3
- package/src/plugins/inline-popup/inline-popup.test.js +577 -0
- package/src/plugins/insert/insert.test.js +17 -0
- package/src/plugins/justify/justify.ts +2 -3
- package/src/plugins/keyboard/backspace/backspace.test.js +1342 -0
- package/src/plugins/keyboard/enter/README.md +34 -0
- package/src/plugins/keyboard/enter/enter.test.js +1145 -0
- package/src/plugins/keyboard/enter/enter.ts +136 -0
- package/src/plugins/keyboard/enter/helpers/check-br.ts +47 -0
- package/src/plugins/keyboard/enter/helpers/check-unsplittable-box.ts +34 -0
- package/src/plugins/keyboard/enter/helpers/get-block-wrapper.ts +47 -0
- package/src/plugins/keyboard/enter/helpers/has-previous-block.ts +25 -0
- package/src/plugins/keyboard/enter/helpers/index.ts +18 -0
- package/src/plugins/keyboard/enter/helpers/insert-paragraph.ts +51 -0
- package/src/plugins/keyboard/enter/helpers/process-empty-li-leaf.ts +66 -0
- package/src/plugins/keyboard/enter/helpers/split-fragment.ts +52 -0
- package/src/plugins/keyboard/enter/helpers/wrap-text.ts +42 -0
- package/src/plugins/keyboard/hotkeys.ts +2 -4
- package/src/plugins/keyboard/tab/tab.test.js +64 -0
- package/src/plugins/limit/limit.test.js +164 -0
- package/src/plugins/line-height/line-height.test.js +136 -0
- package/src/plugins/link/config.ts +118 -0
- package/src/plugins/link/link.test.js +1727 -0
- package/src/plugins/link/link.ts +5 -113
- package/src/plugins/media/media.ts +6 -3
- package/src/plugins/media/video/config.ts +8 -8
- package/src/plugins/mobile/mobile.test.js +229 -0
- package/src/plugins/ordered-list/ordered-list.test.js +312 -0
- package/src/plugins/placeholder/placeholder.test.js +138 -0
- package/src/plugins/plugins.test.js +2150 -0
- package/src/plugins/print/preview/preview.test.js +80 -0
- package/src/plugins/resizer/config.ts +17 -1
- package/src/plugins/resizer/resizer.test.js +566 -0
- package/src/plugins/resizer/resizer.ts +6 -1
- package/src/plugins/search/search.test.js +431 -0
- package/src/plugins/size/size.test.js +344 -0
- package/src/plugins/size/size.ts +3 -6
- package/src/plugins/source/editor/engines/ace.ts +2 -2
- package/src/plugins/source/source.test.js +218 -0
- package/src/plugins/stat/stat.test.js +120 -0
- package/src/plugins/table/table.common.less +11 -0
- package/src/plugins/table/table.less +1 -6
- package/src/plugins/tooltip/tooltip.test.js +97 -0
- package/src/polyfills.ts +1 -12
- package/src/types/events.d.ts +21 -42
- package/src/types/plugin.d.ts +0 -2
- package/src/types/select.d.ts +4 -5
- package/src/types/toolbar.d.ts +1 -5
- package/src/types/types.d.ts +17 -14
- package/src/types/uploader.d.ts +4 -0
- package/src/types/view.d.ts +0 -3
- package/types/core/component/component.d.ts +3 -2
- package/types/core/component/view-component.d.ts +1 -1
- package/types/core/constants.d.ts +1 -0
- package/types/core/decorators/debounce/debounce.d.ts +3 -3
- package/types/core/decorators/idle/idle.d.ts +2 -2
- package/types/core/dom/dom.d.ts +8 -9
- package/types/core/event-emitter/event-emitter.d.ts +11 -18
- package/types/core/event-emitter/store.d.ts +2 -0
- package/types/core/global.d.ts +0 -1
- package/types/core/helpers/array/split-array.d.ts +3 -0
- package/types/core/helpers/checker/index.d.ts +1 -0
- package/types/core/helpers/checker/is-jodit-object.d.ts +1 -5
- package/types/core/helpers/checker/is-string.d.ts +4 -3
- package/types/core/helpers/checker/is-view-object.d.ts +13 -0
- package/types/core/helpers/html/index.d.ts +1 -0
- package/types/core/helpers/html/safe-html.d.ts +13 -0
- package/types/core/helpers/html/strip-tags.d.ts +0 -7
- package/types/core/helpers/string/i18n.d.ts +1 -1
- package/types/core/helpers/utils/assert.d.ts +1 -1
- package/types/core/helpers/utils/index.d.ts +1 -0
- package/types/core/helpers/utils/reset.d.ts +14 -0
- package/types/core/helpers/utils/scroll-into-view.d.ts +2 -1
- package/types/core/helpers/utils/selector.d.ts +2 -2
- package/types/core/helpers/utils/utils.d.ts +1 -9
- package/types/core/selection/select.d.ts +6 -2
- package/types/core/traits/mods.d.ts +1 -1
- package/types/core/ui/button/button/button.d.ts +1 -1
- package/types/core/ui/button/group/group.d.ts +1 -1
- package/types/core/ui/form/block/block.d.ts +1 -1
- package/types/core/ui/group/spacer.d.ts +1 -1
- package/types/core/ui/popup/popup.d.ts +1 -1
- package/types/core/view/view.d.ts +1 -2
- package/types/modules/toolbar/collection/collection.d.ts +0 -1
- package/types/modules/uploader/uploader.d.ts +2 -0
- package/types/plugins/add-new-line/add-new-line.d.ts +4 -29
- package/types/plugins/add-new-line/config.d.ts +36 -0
- package/types/plugins/clipboard/{drag-and-drop.d.ts → drag-and-drop/drag-and-drop.d.ts} +0 -0
- package/types/plugins/clipboard/{drag-and-drop-element.d.ts → drag-and-drop-element/drag-and-drop-element.d.ts} +0 -0
- package/types/plugins/clipboard/index.d.ts +2 -0
- package/types/plugins/fix/clean-html/clean-html.d.ts +4 -34
- package/types/plugins/fix/clean-html/config.d.ts +3 -3
- package/types/plugins/fix/clean-html/helpers/get-hash.d.ts +13 -0
- package/types/plugins/fix/clean-html/helpers/index.d.ts +12 -0
- package/types/plugins/fix/clean-html/helpers/remove-format/remove-format-for-collapsed-selection.d.ts +18 -0
- package/types/plugins/fix/clean-html/helpers/remove-format/remove-format-for-selection.d.ts +14 -0
- package/types/plugins/fix/clean-html/helpers/visitor/filters/allow-attributes.d.ts +13 -0
- package/types/plugins/fix/clean-html/helpers/visitor/filters/fill-empty-paragraph.d.ts +13 -0
- package/types/plugins/fix/clean-html/helpers/visitor/filters/index.d.ts +17 -0
- package/types/plugins/fix/clean-html/helpers/visitor/filters/remove-inv-text-nodes.d.ts +13 -0
- package/types/plugins/fix/clean-html/helpers/visitor/filters/replace-old-tags.d.ts +13 -0
- package/types/plugins/fix/clean-html/helpers/visitor/filters/sanitize-attributes.d.ts +13 -0
- package/types/plugins/fix/clean-html/helpers/visitor/filters/try-remove-node.d.ts +10 -0
- package/types/plugins/fix/clean-html/helpers/visitor/visit-node-walker.d.ts +13 -0
- package/types/plugins/index.d.ts +2 -4
- package/types/plugins/keyboard/enter/enter.d.ts +25 -0
- package/types/plugins/keyboard/enter/helpers/check-br.d.ts +14 -0
- package/types/plugins/keyboard/enter/helpers/check-unsplittable-box.d.ts +14 -0
- package/types/plugins/keyboard/enter/helpers/get-block-wrapper.d.ts +14 -0
- package/types/plugins/keyboard/enter/helpers/has-previous-block.d.ts +13 -0
- package/types/plugins/keyboard/enter/helpers/index.d.ts +16 -0
- package/types/plugins/keyboard/enter/helpers/insert-paragraph.d.ts +14 -0
- package/types/plugins/keyboard/enter/helpers/process-empty-li-leaf.d.ts +14 -0
- package/types/plugins/keyboard/enter/helpers/split-fragment.d.ts +15 -0
- package/types/plugins/keyboard/enter/helpers/wrap-text.d.ts +15 -0
- package/types/plugins/link/config.d.ts +57 -0
- package/types/plugins/link/link.d.ts +2 -49
- package/types/plugins/resizer/config.d.ts +14 -0
- package/types/types/events.d.ts +21 -42
- package/types/types/plugin.d.ts +0 -2
- package/types/types/select.d.ts +4 -5
- package/types/types/toolbar.d.ts +1 -5
- package/types/types/types.d.ts +17 -14
- package/types/types/uploader.d.ts +4 -0
- package/types/types/view.d.ts +0 -3
- package/src/plugins/keyboard/enter.ts +0 -332
- package/types/plugins/keyboard/enter.d.ts +0 -33
package/.idea/workspace.xml
CHANGED
|
@@ -11,26 +11,7 @@
|
|
|
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$/build/jodit.css" beforeDir="false" />
|
|
16
|
-
<change beforePath="$PROJECT_DIR$/build/jodit.es2018.css" beforeDir="false" />
|
|
17
|
-
<change beforePath="$PROJECT_DIR$/build/jodit.es2018.en.css" beforeDir="false" />
|
|
18
|
-
<change beforePath="$PROJECT_DIR$/build/jodit.es2018.en.js" beforeDir="false" />
|
|
19
|
-
<change beforePath="$PROJECT_DIR$/build/jodit.es2018.en.min.css" beforeDir="false" />
|
|
20
|
-
<change beforePath="$PROJECT_DIR$/build/jodit.es2018.en.min.js" beforeDir="false" />
|
|
21
|
-
<change beforePath="$PROJECT_DIR$/build/jodit.es2018.js" beforeDir="false" />
|
|
22
|
-
<change beforePath="$PROJECT_DIR$/build/jodit.es2018.min.css" beforeDir="false" />
|
|
23
|
-
<change beforePath="$PROJECT_DIR$/build/jodit.es2018.min.js" beforeDir="false" />
|
|
24
|
-
<change beforePath="$PROJECT_DIR$/build/jodit.js" beforeDir="false" />
|
|
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/core/ui/popup/popup.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/core/ui/popup/popup.ts" afterDir="false" />
|
|
30
|
-
<change beforePath="$PROJECT_DIR$/src/plugins/image/image.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/plugins/image/image.ts" afterDir="false" />
|
|
31
|
-
<change beforePath="$PROJECT_DIR$/test/tests/acceptance/imageTest.js" beforeDir="false" afterPath="$PROJECT_DIR$/test/tests/acceptance/imageTest.js" afterDir="false" />
|
|
32
|
-
<change beforePath="$PROJECT_DIR$/test/tests/acceptance/plugins/image.js" beforeDir="false" afterPath="$PROJECT_DIR$/test/tests/acceptance/plugins/image.js" afterDir="false" />
|
|
33
|
-
</list>
|
|
14
|
+
<list default="true" id="5da7ff7f-03a8-49de-9fbb-8f8640d83b83" name="Default Changelist" comment="Moved the test files to the appropriate directories" />
|
|
34
15
|
<list id="5049e1d4-15bc-4e3a-b46b-d2ce7537fc13" name="Revert "Some small fixes"" comment="Revert "Some small fixes" This reverts commit bc391ec6" />
|
|
35
16
|
<option name="SHOW_DIALOG" value="false" />
|
|
36
17
|
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
|
@@ -66,8 +47,8 @@
|
|
|
66
47
|
</component>
|
|
67
48
|
<component name="HighlightingSettingsPerFile">
|
|
68
49
|
<setting file="file://$PROJECT_DIR$/src/jodit.ts" root0="FORCE_HIGHLIGHTING" />
|
|
69
|
-
<setting file="file://$PROJECT_DIR$/
|
|
70
|
-
<setting file="file://$PROJECT_DIR$/test/tests/acceptance/
|
|
50
|
+
<setting file="file://$PROJECT_DIR$/src/plugins/link/link.test.js" root0="FORCE_HIGHLIGHTING" />
|
|
51
|
+
<setting file="file://$PROJECT_DIR$/test/tests/acceptance/toolbar.test.js" root0="FORCE_HIGHLIGHTING" />
|
|
71
52
|
</component>
|
|
72
53
|
<component name="JsbtTreeLayoutManager">
|
|
73
54
|
<layout place="tools.popupnpm">
|
|
@@ -91,38 +72,40 @@
|
|
|
91
72
|
<option name="hideEmptyMiddlePackages" value="true" />
|
|
92
73
|
<option name="showLibraryContents" value="true" />
|
|
93
74
|
</component>
|
|
94
|
-
<component name="PropertiesComponent"
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
75
|
+
<component name="PropertiesComponent">{
|
|
76
|
+
"keyToString": {
|
|
77
|
+
"WebServerToolWindowFactoryState": "true",
|
|
78
|
+
"last_opened_file_path": "/Users/v-chupurnov/WebstormProjects/pet/jodit/src/plugins/inline-popup",
|
|
79
|
+
"node.js.detected.package.eslint": "true",
|
|
80
|
+
"node.js.detected.package.stylelint": "true",
|
|
81
|
+
"node.js.detected.package.tslint": "true",
|
|
82
|
+
"node.js.selected.package.eslint": "(autodetect)",
|
|
83
|
+
"node.js.selected.package.stylelint": "/Users/v-chupurnov/WebstormProjects/pet/jodit/node_modules/stylelint",
|
|
84
|
+
"node.js.selected.package.tslint": "(autodetect)",
|
|
85
|
+
"nodejs_package_manager_path": "npm",
|
|
86
|
+
"prettierjs.PrettierConfiguration.Package": "/Users/v-chupurnov/WebstormProjects/pet/jodit/node_modules/prettier",
|
|
87
|
+
"settings.editor.selected.configurable": "preferences.pluginManager",
|
|
88
|
+
"ts.external.directory.path": "/Users/v-chupurnov/WebstormProjects/pet/jodit/node_modules/typescript/lib",
|
|
89
|
+
"vue.rearranger.settings.migration": "true"
|
|
107
90
|
}
|
|
108
|
-
}
|
|
91
|
+
}</component>
|
|
109
92
|
<component name="RecentsManager">
|
|
110
93
|
<key name="CopyFile.RECENT_KEYS">
|
|
94
|
+
<recent name="$PROJECT_DIR$/src/plugins/inline-popup" />
|
|
95
|
+
<recent name="$PROJECT_DIR$/src/plugins/image" />
|
|
96
|
+
<recent name="$PROJECT_DIR$/src/plugins/clipboard/drag-and-drop-element" />
|
|
97
|
+
<recent name="$PROJECT_DIR$/src/plugins/line-height" />
|
|
111
98
|
<recent name="$PROJECT_DIR$" />
|
|
112
|
-
<recent name="$PROJECT_DIR$/src/plugins/spellcheck" />
|
|
113
|
-
<recent name="$PROJECT_DIR$/src/plugins/fix/clean-html" />
|
|
114
|
-
<recent name="$PROJECT_DIR$/src/styles/icons" />
|
|
115
|
-
<recent name="$PROJECT_DIR$/.github/workflows" />
|
|
116
99
|
</key>
|
|
117
100
|
<key name="MoveFile.RECENT_KEYS">
|
|
118
|
-
<recent name="$PROJECT_DIR$/src/
|
|
119
|
-
<recent name="$PROJECT_DIR$/src/
|
|
120
|
-
<recent name="$PROJECT_DIR$/src/plugins
|
|
121
|
-
<recent name="$PROJECT_DIR$/src/
|
|
122
|
-
<recent name="$PROJECT_DIR$/src/
|
|
101
|
+
<recent name="$PROJECT_DIR$/src/core/create" />
|
|
102
|
+
<recent name="$PROJECT_DIR$/src/langs" />
|
|
103
|
+
<recent name="$PROJECT_DIR$/src/plugins" />
|
|
104
|
+
<recent name="$PROJECT_DIR$/src/plugins/clipboard" />
|
|
105
|
+
<recent name="$PROJECT_DIR$/src/core/helpers/size" />
|
|
123
106
|
</key>
|
|
124
107
|
</component>
|
|
125
|
-
<component name="RunManager" selected="
|
|
108
|
+
<component name="RunManager" selected="Node.js.find-tests.js">
|
|
126
109
|
<configuration name="Count tests" type="BashConfigurationType" factoryName="Bash">
|
|
127
110
|
<module name="jodit" />
|
|
128
111
|
<option name="INTERPRETER_OPTIONS" value="" />
|
|
@@ -134,23 +117,10 @@
|
|
|
134
117
|
<option name="PARAMETERS" value="" />
|
|
135
118
|
<method v="2" />
|
|
136
119
|
</configuration>
|
|
137
|
-
<configuration name="
|
|
138
|
-
<config-file value="$PROJECT_DIR$/karma.conf.js" />
|
|
139
|
-
<karma-package-dir value="$PROJECT_DIR$/node_modules/karma" />
|
|
140
|
-
<working-directory value="$PROJECT_DIR$" />
|
|
141
|
-
<node-interpreter value="project" />
|
|
142
|
-
<envs />
|
|
143
|
-
<scope-kind value="TEST" />
|
|
144
|
-
<test-file-path value="$PROJECT_DIR$/test/tests/units/popupTest.js" />
|
|
145
|
-
<test-names>
|
|
146
|
-
<test-name value="Test popup" />
|
|
147
|
-
<test-name value="Open popup on some target" />
|
|
148
|
-
<test-name value="Usual case - there is enough space under element" />
|
|
149
|
-
<test-name value="should show popup under element" />
|
|
150
|
-
</test-names>
|
|
120
|
+
<configuration name="build.js" type="NodeJSConfigurationType" temporary="true" nameIsGenerated="true" path-to-js-file="$PROJECT_DIR$/build-system/build.js" working-dir="$PROJECT_DIR$">
|
|
151
121
|
<method v="2" />
|
|
152
122
|
</configuration>
|
|
153
|
-
<configuration name="
|
|
123
|
+
<configuration name="find-tests.js" type="NodeJSConfigurationType" temporary="true" nameIsGenerated="true" path-to-js-file="$PROJECT_DIR$/build-system/utils/find-tests.js" working-dir="$PROJECT_DIR$/build-system/utils">
|
|
154
124
|
<method v="2" />
|
|
155
125
|
</configuration>
|
|
156
126
|
<configuration name="lang-translater.js (1)" type="NodeJSConfigurationType" temporary="true" nameIsGenerated="true" path-to-js-file="$PROJECT_DIR$/src/utils/lang-translater.js" working-dir="$PROJECT_DIR$/src/utils">
|
|
@@ -196,7 +166,7 @@
|
|
|
196
166
|
</configuration>
|
|
197
167
|
<list>
|
|
198
168
|
<item itemvalue="Gulp.js.default" />
|
|
199
|
-
<item itemvalue="
|
|
169
|
+
<item itemvalue="Node.js.find-tests.js" />
|
|
200
170
|
<item itemvalue="Node.js.build.js" />
|
|
201
171
|
<item itemvalue="Node.js.lang-translater.js (1)" />
|
|
202
172
|
<item itemvalue="Node.js.lang-translater.js" />
|
|
@@ -204,11 +174,11 @@
|
|
|
204
174
|
</list>
|
|
205
175
|
<recent_temporary>
|
|
206
176
|
<list>
|
|
177
|
+
<item itemvalue="Node.js.find-tests.js" />
|
|
207
178
|
<item itemvalue="Shell Script.build" />
|
|
208
|
-
<item itemvalue="Node.js.build.js" />
|
|
209
|
-
<item itemvalue="Node.js.lang-translater.js (1)" />
|
|
210
179
|
<item itemvalue="Node.js.lang-translater.js" />
|
|
211
|
-
<item itemvalue="
|
|
180
|
+
<item itemvalue="Node.js.lang-translater.js (1)" />
|
|
181
|
+
<item itemvalue="Node.js.build.js" />
|
|
212
182
|
</list>
|
|
213
183
|
</recent_temporary>
|
|
214
184
|
</component>
|
|
@@ -829,217 +799,27 @@
|
|
|
829
799
|
<workItem from="1649235616780" duration="2214000" />
|
|
830
800
|
<workItem from="1649667282465" duration="882000" />
|
|
831
801
|
<workItem from="1649693416227" duration="14109000" />
|
|
832
|
-
<workItem from="1649712518805" duration="
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
<
|
|
836
|
-
<
|
|
837
|
-
<
|
|
838
|
-
<
|
|
839
|
-
<
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
<
|
|
843
|
-
<
|
|
844
|
-
<
|
|
845
|
-
<
|
|
846
|
-
<
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
<
|
|
850
|
-
<
|
|
851
|
-
<
|
|
852
|
-
<
|
|
853
|
-
<updated>1646774682800</updated>
|
|
854
|
-
</task>
|
|
855
|
-
<task id="LOCAL-01044" summary="Added autotest for redo-undo functionality">
|
|
856
|
-
<created>1646775180966</created>
|
|
857
|
-
<option name="number" value="01044" />
|
|
858
|
-
<option name="presentableId" value="LOCAL-01044" />
|
|
859
|
-
<option name="project" value="LOCAL" />
|
|
860
|
-
<updated>1646775180966</updated>
|
|
861
|
-
</task>
|
|
862
|
-
<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">
|
|
863
|
-
<created>1646776478679</created>
|
|
864
|
-
<option name="number" value="01045" />
|
|
865
|
-
<option name="presentableId" value="LOCAL-01045" />
|
|
866
|
-
<option name="project" value="LOCAL" />
|
|
867
|
-
<updated>1646776478679</updated>
|
|
868
|
-
</task>
|
|
869
|
-
<task id="LOCAL-01046" summary="Added `Jodit.synchronizeValues()` method">
|
|
870
|
-
<created>1646854088446</created>
|
|
871
|
-
<option name="number" value="01046" />
|
|
872
|
-
<option name="presentableId" value="LOCAL-01046" />
|
|
873
|
-
<option name="project" value="LOCAL" />
|
|
874
|
-
<updated>1646854088446</updated>
|
|
875
|
-
</task>
|
|
876
|
-
<task id="LOCAL-01047" summary="Added `Jodit.synchronizeValues()` method">
|
|
877
|
-
<created>1646854320278</created>
|
|
878
|
-
<option name="number" value="01047" />
|
|
879
|
-
<option name="presentableId" value="LOCAL-01047" />
|
|
880
|
-
<option name="project" value="LOCAL" />
|
|
881
|
-
<updated>1646854320278</updated>
|
|
882
|
-
</task>
|
|
883
|
-
<task id="LOCAL-01048" summary="Added `spellcheck` plugin">
|
|
884
|
-
<created>1646854338812</created>
|
|
885
|
-
<option name="number" value="01048" />
|
|
886
|
-
<option name="presentableId" value="LOCAL-01048" />
|
|
887
|
-
<option name="project" value="LOCAL" />
|
|
888
|
-
<updated>1646854338812</updated>
|
|
889
|
-
</task>
|
|
890
|
-
<task id="LOCAL-01049" summary="Refactoring `search` plugin">
|
|
891
|
-
<created>1646854367649</created>
|
|
892
|
-
<option name="number" value="01049" />
|
|
893
|
-
<option name="presentableId" value="LOCAL-01049" />
|
|
894
|
-
<option name="project" value="LOCAL" />
|
|
895
|
-
<updated>1646854367649</updated>
|
|
896
|
-
</task>
|
|
897
|
-
<task id="LOCAL-01050" summary="Added `Jodit.synchronizeValues()` method">
|
|
898
|
-
<created>1646854403772</created>
|
|
899
|
-
<option name="number" value="01050" />
|
|
900
|
-
<option name="presentableId" value="LOCAL-01050" />
|
|
901
|
-
<option name="project" value="LOCAL" />
|
|
902
|
-
<updated>1646854403772</updated>
|
|
903
|
-
</task>
|
|
904
|
-
<task id="LOCAL-01051" summary="Added `Jodit.synchronizeValues()` method">
|
|
905
|
-
<created>1647075217271</created>
|
|
906
|
-
<option name="number" value="01051" />
|
|
907
|
-
<option name="presentableId" value="LOCAL-01051" />
|
|
908
|
-
<option name="project" value="LOCAL" />
|
|
909
|
-
<updated>1647075217272</updated>
|
|
910
|
-
</task>
|
|
911
|
-
<task id="LOCAL-01052" summary="Added spelling i18n">
|
|
912
|
-
<created>1647075313124</created>
|
|
913
|
-
<option name="number" value="01052" />
|
|
914
|
-
<option name="presentableId" value="LOCAL-01052" />
|
|
915
|
-
<option name="project" value="LOCAL" />
|
|
916
|
-
<updated>1647075313124</updated>
|
|
917
|
-
</task>
|
|
918
|
-
<task id="LOCAL-01053" summary="Fixed tests for spellchecking">
|
|
919
|
-
<created>1647075340981</created>
|
|
920
|
-
<option name="number" value="01053" />
|
|
921
|
-
<option name="presentableId" value="LOCAL-01053" />
|
|
922
|
-
<option name="project" value="LOCAL" />
|
|
923
|
-
<updated>1647075340981</updated>
|
|
924
|
-
</task>
|
|
925
|
-
<task id="LOCAL-01054" summary="Lazy Walker">
|
|
926
|
-
<created>1647075368563</created>
|
|
927
|
-
<option name="number" value="01054" />
|
|
928
|
-
<option name="presentableId" value="LOCAL-01054" />
|
|
929
|
-
<option name="project" value="LOCAL" />
|
|
930
|
-
<updated>1647075368563</updated>
|
|
931
|
-
</task>
|
|
932
|
-
<task id="LOCAL-01055" summary="Fixed autotests">
|
|
933
|
-
<created>1647085827400</created>
|
|
934
|
-
<option name="number" value="01055" />
|
|
935
|
-
<option name="presentableId" value="LOCAL-01055" />
|
|
936
|
-
<option name="project" value="LOCAL" />
|
|
937
|
-
<updated>1647085827400</updated>
|
|
938
|
-
</task>
|
|
939
|
-
<task id="LOCAL-01056" summary="Enabled `@typescript-eslint/explicit-function-return-type` in eslint">
|
|
940
|
-
<created>1647169733781</created>
|
|
941
|
-
<option name="number" value="01056" />
|
|
942
|
-
<option name="presentableId" value="LOCAL-01056" />
|
|
943
|
-
<option name="project" value="LOCAL" />
|
|
944
|
-
<updated>1647169733781</updated>
|
|
945
|
-
</task>
|
|
946
|
-
<task id="LOCAL-01057" summary="Enabled `@typescript-eslint/explicit-function-return-type` in eslint">
|
|
947
|
-
<created>1647169915507</created>
|
|
948
|
-
<option name="number" value="01057" />
|
|
949
|
-
<option name="presentableId" value="LOCAL-01057" />
|
|
950
|
-
<option name="project" value="LOCAL" />
|
|
951
|
-
<updated>1647169915507</updated>
|
|
952
|
-
</task>
|
|
953
|
-
<task id="LOCAL-01058" summary="Fixed doc">
|
|
954
|
-
<created>1647170042586</created>
|
|
955
|
-
<option name="number" value="01058" />
|
|
956
|
-
<option name="presentableId" value="LOCAL-01058" />
|
|
957
|
-
<option name="project" value="LOCAL" />
|
|
958
|
-
<updated>1647170042586</updated>
|
|
959
|
-
</task>
|
|
960
|
-
<task id="LOCAL-01059" summary="Fix doc">
|
|
961
|
-
<created>1647170248593</created>
|
|
962
|
-
<option name="number" value="01059" />
|
|
963
|
-
<option name="presentableId" value="LOCAL-01059" />
|
|
964
|
-
<option name="project" value="LOCAL" />
|
|
965
|
-
<updated>1647170248593</updated>
|
|
966
|
-
</task>
|
|
967
|
-
<task id="LOCAL-01060" summary="Fix doc">
|
|
968
|
-
<created>1647170733664</created>
|
|
969
|
-
<option name="number" value="01060" />
|
|
970
|
-
<option name="presentableId" value="LOCAL-01060" />
|
|
971
|
-
<option name="project" value="LOCAL" />
|
|
972
|
-
<updated>1647170733664</updated>
|
|
973
|
-
</task>
|
|
974
|
-
<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">
|
|
975
|
-
<created>1647409270570</created>
|
|
976
|
-
<option name="number" value="01061" />
|
|
977
|
-
<option name="presentableId" value="LOCAL-01061" />
|
|
978
|
-
<option name="project" value="LOCAL" />
|
|
979
|
-
<updated>1647409270570</updated>
|
|
980
|
-
</task>
|
|
981
|
-
<task id="LOCAL-01062" summary="Search plugin now highlights all found options Issue: https://github.com/xdan/jodit/issues/798">
|
|
982
|
-
<created>1647409664163</created>
|
|
983
|
-
<option name="number" value="01062" />
|
|
984
|
-
<option name="presentableId" value="LOCAL-01062" />
|
|
985
|
-
<option name="project" value="LOCAL" />
|
|
986
|
-
<updated>1647409664163</updated>
|
|
987
|
-
</task>
|
|
988
|
-
<task id="LOCAL-01063" summary="Added `Jodit.constants` Issue: https://github.com/xdan/jodit/issues/806">
|
|
989
|
-
<created>1647409710261</created>
|
|
990
|
-
<option name="number" value="01063" />
|
|
991
|
-
<option name="presentableId" value="LOCAL-01063" />
|
|
992
|
-
<option name="project" value="LOCAL" />
|
|
993
|
-
<updated>1647409710261</updated>
|
|
994
|
-
</task>
|
|
995
|
-
<task id="LOCAL-01064" summary="Dom.wrap can get Range">
|
|
996
|
-
<created>1647409731805</created>
|
|
997
|
-
<option name="number" value="01064" />
|
|
998
|
-
<option name="presentableId" value="LOCAL-01064" />
|
|
999
|
-
<option name="project" value="LOCAL" />
|
|
1000
|
-
<updated>1647409731805</updated>
|
|
1001
|
-
</task>
|
|
1002
|
-
<task id="LOCAL-01065" summary="Fixed tests">
|
|
1003
|
-
<created>1647410274953</created>
|
|
1004
|
-
<option name="number" value="01065" />
|
|
1005
|
-
<option name="presentableId" value="LOCAL-01065" />
|
|
1006
|
-
<option name="project" value="LOCAL" />
|
|
1007
|
-
<updated>1647410274953</updated>
|
|
1008
|
-
</task>
|
|
1009
|
-
<task id="LOCAL-01066" summary="Fixed tests">
|
|
1010
|
-
<created>1647411230710</created>
|
|
1011
|
-
<option name="number" value="01066" />
|
|
1012
|
-
<option name="presentableId" value="LOCAL-01066" />
|
|
1013
|
-
<option name="project" value="LOCAL" />
|
|
1014
|
-
<updated>1647411230710</updated>
|
|
1015
|
-
</task>
|
|
1016
|
-
<task id="LOCAL-01067" summary="Added `Config.pasteHTMLActionList` and `Config.pasteFromWordActionList` options Issue: https://github.com/xdan/jodit/issues/802.">
|
|
1017
|
-
<created>1647413135639</created>
|
|
1018
|
-
<option name="number" value="01067" />
|
|
1019
|
-
<option name="presentableId" value="LOCAL-01067" />
|
|
1020
|
-
<option name="project" value="LOCAL" />
|
|
1021
|
-
<updated>1647413135639</updated>
|
|
1022
|
-
</task>
|
|
1023
|
-
<task id="LOCAL-01068" summary="Added `Config.pasteHTMLActionList` and `Config.pasteFromWordActionList` options Issue: https://github.com/xdan/jodit/issues/802.">
|
|
1024
|
-
<created>1647413164631</created>
|
|
1025
|
-
<option name="number" value="01068" />
|
|
1026
|
-
<option name="presentableId" value="LOCAL-01068" />
|
|
1027
|
-
<option name="project" value="LOCAL" />
|
|
1028
|
-
<updated>1647413164631</updated>
|
|
1029
|
-
</task>
|
|
1030
|
-
<task id="LOCAL-01069" summary="Fix doc">
|
|
1031
|
-
<created>1647458239889</created>
|
|
1032
|
-
<option name="number" value="01069" />
|
|
1033
|
-
<option name="presentableId" value="LOCAL-01069" />
|
|
1034
|
-
<option name="project" value="LOCAL" />
|
|
1035
|
-
<updated>1647458239890</updated>
|
|
1036
|
-
</task>
|
|
1037
|
-
<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">
|
|
1038
|
-
<created>1647729803543</created>
|
|
1039
|
-
<option name="number" value="01070" />
|
|
1040
|
-
<option name="presentableId" value="LOCAL-01070" />
|
|
1041
|
-
<option name="project" value="LOCAL" />
|
|
1042
|
-
<updated>1647729803543</updated>
|
|
802
|
+
<workItem from="1649712518805" duration="11261000" />
|
|
803
|
+
<workItem from="1649759860604" duration="10000" />
|
|
804
|
+
<workItem from="1649776192974" duration="200000" />
|
|
805
|
+
<workItem from="1649780163251" duration="184000" />
|
|
806
|
+
<workItem from="1649851221791" duration="2280000" />
|
|
807
|
+
<workItem from="1649853647485" duration="2542000" />
|
|
808
|
+
<workItem from="1650025697860" duration="4509000" />
|
|
809
|
+
<workItem from="1650285822174" duration="599000" />
|
|
810
|
+
<workItem from="1650291261378" duration="599000" />
|
|
811
|
+
<workItem from="1650293986284" duration="3151000" />
|
|
812
|
+
<workItem from="1650318913656" duration="5000" />
|
|
813
|
+
<workItem from="1650560888386" duration="599000" />
|
|
814
|
+
<workItem from="1650628906707" duration="2000" />
|
|
815
|
+
<workItem from="1651498591700" duration="20903000" />
|
|
816
|
+
<workItem from="1651697688105" duration="7176000" />
|
|
817
|
+
<workItem from="1651742825277" duration="517000" />
|
|
818
|
+
<workItem from="1651778714119" duration="26188000" />
|
|
819
|
+
<workItem from="1652042752043" duration="2143000" />
|
|
820
|
+
<workItem from="1652044910721" duration="81000" />
|
|
821
|
+
<workItem from="1652045004195" duration="17714000" />
|
|
822
|
+
<workItem from="1652217495723" duration="720000" />
|
|
1043
823
|
</task>
|
|
1044
824
|
<task id="LOCAL-01071" summary="Fixed composition `wait` and `debounce` decorators">
|
|
1045
825
|
<created>1647732750559</created>
|
|
@@ -1174,17 +954,221 @@
|
|
|
1174
954
|
<option name="project" value="LOCAL" />
|
|
1175
955
|
<updated>1649722207919</updated>
|
|
1176
956
|
</task>
|
|
1177
|
-
<
|
|
957
|
+
<task id="LOCAL-01090" summary="Image hyperlink is not working without https:// #821 Issue: https://github.com/xdan/jodit/issues/821">
|
|
958
|
+
<created>1649722992031</created>
|
|
959
|
+
<option name="number" value="01090" />
|
|
960
|
+
<option name="presentableId" value="LOCAL-01090" />
|
|
961
|
+
<option name="project" value="LOCAL" />
|
|
962
|
+
<updated>1649722992031</updated>
|
|
963
|
+
</task>
|
|
964
|
+
<task id="LOCAL-01091" summary="All components have their own instance of the Async module. What used to be `this.j.async` is now `this.async`.">
|
|
965
|
+
<created>1651499125263</created>
|
|
966
|
+
<option name="number" value="01091" />
|
|
967
|
+
<option name="presentableId" value="LOCAL-01091" />
|
|
968
|
+
<option name="project" value="LOCAL" />
|
|
969
|
+
<updated>1651499125263</updated>
|
|
970
|
+
</task>
|
|
971
|
+
<task id="LOCAL-01092" summary="All components have their own instance of the Async module. What used to be `this.j.async` is now `this.async`.">
|
|
972
|
+
<created>1651499345091</created>
|
|
973
|
+
<option name="number" value="01092" />
|
|
974
|
+
<option name="presentableId" value="LOCAL-01092" />
|
|
975
|
+
<option name="project" value="LOCAL" />
|
|
976
|
+
<updated>1651499345091</updated>
|
|
977
|
+
</task>
|
|
978
|
+
<task id="LOCAL-01093" summary="All components have their own instance of the Async module. What used to be `this.j.async` is now `this.async`.">
|
|
979
|
+
<created>1651500306472</created>
|
|
980
|
+
<option name="number" value="01093" />
|
|
981
|
+
<option name="presentableId" value="LOCAL-01093" />
|
|
982
|
+
<option name="project" value="LOCAL" />
|
|
983
|
+
<updated>1651500306472</updated>
|
|
984
|
+
</task>
|
|
985
|
+
<task id="LOCAL-01094" summary="Fixed non-removal of the event handler on destruct">
|
|
986
|
+
<created>1651525135265</created>
|
|
987
|
+
<option name="number" value="01094" />
|
|
988
|
+
<option name="presentableId" value="LOCAL-01094" />
|
|
989
|
+
<option name="project" value="LOCAL" />
|
|
990
|
+
<updated>1651525135265</updated>
|
|
991
|
+
</task>
|
|
992
|
+
<task id="LOCAL-01095" summary="Added tests for Enter plugin">
|
|
993
|
+
<created>1651530109388</created>
|
|
994
|
+
<option name="number" value="01095" />
|
|
995
|
+
<option name="presentableId" value="LOCAL-01095" />
|
|
996
|
+
<option name="project" value="LOCAL" />
|
|
997
|
+
<updated>1651530109388</updated>
|
|
998
|
+
</task>
|
|
999
|
+
<task id="LOCAL-01096" summary="Fixed non-removal of the event handler on destruct">
|
|
1000
|
+
<created>1651530367406</created>
|
|
1001
|
+
<option name="number" value="01096" />
|
|
1002
|
+
<option name="presentableId" value="LOCAL-01096" />
|
|
1003
|
+
<option name="project" value="LOCAL" />
|
|
1004
|
+
<updated>1651530367406</updated>
|
|
1005
|
+
</task>
|
|
1006
|
+
<task id="LOCAL-01097" summary="Clear events Key after destruct">
|
|
1007
|
+
<created>1651530407287</created>
|
|
1008
|
+
<option name="number" value="01097" />
|
|
1009
|
+
<option name="presentableId" value="LOCAL-01097" />
|
|
1010
|
+
<option name="project" value="LOCAL" />
|
|
1011
|
+
<updated>1651530407287</updated>
|
|
1012
|
+
</task>
|
|
1013
|
+
<task id="LOCAL-01098" summary="Added test for Enter inside nested list">
|
|
1014
|
+
<created>1651530669024</created>
|
|
1015
|
+
<option name="number" value="01098" />
|
|
1016
|
+
<option name="presentableId" value="LOCAL-01098" />
|
|
1017
|
+
<option name="project" value="LOCAL" />
|
|
1018
|
+
<updated>1651530669024</updated>
|
|
1019
|
+
</task>
|
|
1020
|
+
<task id="LOCAL-01099" summary="The on/one/off methods of the Jodit Event System have been greatly simplified">
|
|
1021
|
+
<created>1651700117756</created>
|
|
1022
|
+
<option name="number" value="01099" />
|
|
1023
|
+
<option name="presentableId" value="LOCAL-01099" />
|
|
1024
|
+
<option name="project" value="LOCAL" />
|
|
1025
|
+
<updated>1651700117756</updated>
|
|
1026
|
+
</task>
|
|
1027
|
+
<task id="LOCAL-01100" summary="Update deps">
|
|
1028
|
+
<created>1651700132966</created>
|
|
1029
|
+
<option name="number" value="01100" />
|
|
1030
|
+
<option name="presentableId" value="LOCAL-01100" />
|
|
1031
|
+
<option name="project" value="LOCAL" />
|
|
1032
|
+
<updated>1651700132966</updated>
|
|
1033
|
+
</task>
|
|
1034
|
+
<task id="LOCAL-01101" summary="Draft edit tests">
|
|
1035
|
+
<created>1651700152311</created>
|
|
1036
|
+
<option name="number" value="01101" />
|
|
1037
|
+
<option name="presentableId" value="LOCAL-01101" />
|
|
1038
|
+
<option name="project" value="LOCAL" />
|
|
1039
|
+
<updated>1651700152311</updated>
|
|
1040
|
+
</task>
|
|
1041
|
+
<task id="LOCAL-01102" summary="Fixed circular dependencies">
|
|
1042
|
+
<created>1651702254501</created>
|
|
1043
|
+
<option name="number" value="01102" />
|
|
1044
|
+
<option name="presentableId" value="LOCAL-01102" />
|
|
1045
|
+
<option name="project" value="LOCAL" />
|
|
1046
|
+
<updated>1651702254501</updated>
|
|
1047
|
+
</task>
|
|
1048
|
+
<task id="LOCAL-01103" summary="Fixed circular dependencies">
|
|
1049
|
+
<created>1651702279442</created>
|
|
1050
|
+
<option name="number" value="01103" />
|
|
1051
|
+
<option name="presentableId" value="LOCAL-01103" />
|
|
1052
|
+
<option name="project" value="LOCAL" />
|
|
1053
|
+
<updated>1651702279442</updated>
|
|
1054
|
+
</task>
|
|
1055
|
+
<task id="LOCAL-01104" summary="Refactoring the HTML cleanup plugin">
|
|
1056
|
+
<created>1651788313194</created>
|
|
1057
|
+
<option name="number" value="01104" />
|
|
1058
|
+
<option name="presentableId" value="LOCAL-01104" />
|
|
1059
|
+
<option name="project" value="LOCAL" />
|
|
1060
|
+
<updated>1651788313194</updated>
|
|
1061
|
+
</task>
|
|
1062
|
+
<task id="LOCAL-01105" summary="Refactoring the HTML cleanup plugin">
|
|
1063
|
+
<created>1651788603257</created>
|
|
1064
|
+
<option name="number" value="01105" />
|
|
1065
|
+
<option name="presentableId" value="LOCAL-01105" />
|
|
1066
|
+
<option name="project" value="LOCAL" />
|
|
1067
|
+
<updated>1651788603257</updated>
|
|
1068
|
+
</task>
|
|
1069
|
+
<task id="LOCAL-01106" summary="Refactoring clean-html plugin Move test into plugin folders">
|
|
1070
|
+
<created>1651887576662</created>
|
|
1071
|
+
<option name="number" value="01106" />
|
|
1072
|
+
<option name="presentableId" value="LOCAL-01106" />
|
|
1073
|
+
<option name="project" value="LOCAL" />
|
|
1074
|
+
<updated>1651887576662</updated>
|
|
1075
|
+
</task>
|
|
1076
|
+
<task id="LOCAL-01107" summary="Cursor goes out of edit box when moving to a new line #824 Issue: https://github.com/xdan/jodit/issues/824">
|
|
1077
|
+
<created>1652007900954</created>
|
|
1078
|
+
<option name="number" value="01107" />
|
|
1079
|
+
<option name="presentableId" value="LOCAL-01107" />
|
|
1080
|
+
<option name="project" value="LOCAL" />
|
|
1081
|
+
<updated>1652007900954</updated>
|
|
1082
|
+
</task>
|
|
1083
|
+
<task id="LOCAL-01108" summary="Cursor goes out of edit box when moving to a new line #824 Issue: https://github.com/xdan/jodit/issues/824">
|
|
1084
|
+
<created>1652007973648</created>
|
|
1085
|
+
<option name="number" value="01108" />
|
|
1086
|
+
<option name="presentableId" value="LOCAL-01108" />
|
|
1087
|
+
<option name="project" value="LOCAL" />
|
|
1088
|
+
<updated>1652007973648</updated>
|
|
1089
|
+
</task>
|
|
1090
|
+
<task id="LOCAL-01109" summary="Couldn't click next line button, when table is resized. #831 Issue: https://github.com/xdan/jodit/issues/831">
|
|
1091
|
+
<created>1652011672817</created>
|
|
1092
|
+
<option name="number" value="01109" />
|
|
1093
|
+
<option name="presentableId" value="LOCAL-01109" />
|
|
1094
|
+
<option name="project" value="LOCAL" />
|
|
1095
|
+
<updated>1652011672817</updated>
|
|
1096
|
+
</task>
|
|
1097
|
+
<task id="LOCAL-01110" summary="Couldn't click next line button, when table is resized. #831 Issue: https://github.com/xdan/jodit/issues/831">
|
|
1098
|
+
<created>1652011947866</created>
|
|
1099
|
+
<option name="number" value="01110" />
|
|
1100
|
+
<option name="presentableId" value="LOCAL-01110" />
|
|
1101
|
+
<option name="project" value="LOCAL" />
|
|
1102
|
+
<updated>1652011947866</updated>
|
|
1103
|
+
</task>
|
|
1104
|
+
<task id="LOCAL-01111" summary="Added test for Unable to add line height for Html pasted content. #830 Issue: https://github.com/xdan/jodit/issues/830">
|
|
1105
|
+
<created>1652012388452</created>
|
|
1106
|
+
<option name="number" value="01111" />
|
|
1107
|
+
<option name="presentableId" value="LOCAL-01111" />
|
|
1108
|
+
<option name="project" value="LOCAL" />
|
|
1109
|
+
<updated>1652012388452</updated>
|
|
1110
|
+
</task>
|
|
1111
|
+
<task id="LOCAL-01112" summary="Fixed Unable to add line height for Html pasted content. #830 Issue: https://github.com/xdan/jodit/issues/830">
|
|
1112
|
+
<created>1652013679032</created>
|
|
1113
|
+
<option name="number" value="01112" />
|
|
1114
|
+
<option name="presentableId" value="LOCAL-01112" />
|
|
1115
|
+
<option name="project" value="LOCAL" />
|
|
1116
|
+
<updated>1652013679032</updated>
|
|
1117
|
+
</task>
|
|
1118
|
+
<task id="LOCAL-01113" summary="Fixed Unable to add line height for Html pasted content. #830 Issue: https://github.com/xdan/jodit/issues/830">
|
|
1119
|
+
<created>1652013714731</created>
|
|
1120
|
+
<option name="number" value="01113" />
|
|
1121
|
+
<option name="presentableId" value="LOCAL-01113" />
|
|
1122
|
+
<option name="project" value="LOCAL" />
|
|
1123
|
+
<updated>1652013714731</updated>
|
|
1124
|
+
</task>
|
|
1125
|
+
<task id="LOCAL-01114" summary="Refactoring Enter plugin">
|
|
1126
|
+
<created>1652055027996</created>
|
|
1127
|
+
<option name="number" value="01114" />
|
|
1128
|
+
<option name="presentableId" value="LOCAL-01114" />
|
|
1129
|
+
<option name="project" value="LOCAL" />
|
|
1130
|
+
<updated>1652055027996</updated>
|
|
1131
|
+
</task>
|
|
1132
|
+
<task id="LOCAL-01115" summary="Refactoring Enter plugin">
|
|
1133
|
+
<created>1652055378494</created>
|
|
1134
|
+
<option name="number" value="01115" />
|
|
1135
|
+
<option name="presentableId" value="LOCAL-01115" />
|
|
1136
|
+
<option name="project" value="LOCAL" />
|
|
1137
|
+
<updated>1652055378494</updated>
|
|
1138
|
+
</task>
|
|
1139
|
+
<task id="LOCAL-01116" summary="Fix tests">
|
|
1140
|
+
<created>1652213144106</created>
|
|
1141
|
+
<option name="number" value="01116" />
|
|
1142
|
+
<option name="presentableId" value="LOCAL-01116" />
|
|
1143
|
+
<option name="project" value="LOCAL" />
|
|
1144
|
+
<updated>1652213144106</updated>
|
|
1145
|
+
</task>
|
|
1146
|
+
<task id="LOCAL-01117" summary="Moved the test files to the appropriate directories">
|
|
1147
|
+
<created>1652216321152</created>
|
|
1148
|
+
<option name="number" value="01117" />
|
|
1149
|
+
<option name="presentableId" value="LOCAL-01117" />
|
|
1150
|
+
<option name="project" value="LOCAL" />
|
|
1151
|
+
<updated>1652216321152</updated>
|
|
1152
|
+
</task>
|
|
1153
|
+
<task id="LOCAL-01118" summary="Moved the test files to the appropriate directories">
|
|
1154
|
+
<created>1652216384019</created>
|
|
1155
|
+
<option name="number" value="01118" />
|
|
1156
|
+
<option name="presentableId" value="LOCAL-01118" />
|
|
1157
|
+
<option name="project" value="LOCAL" />
|
|
1158
|
+
<updated>1652216384019</updated>
|
|
1159
|
+
</task>
|
|
1160
|
+
<task id="LOCAL-01119" summary="Added event `applyLink` for issue change default target for all links #841 Issue: https://github.com/xdan/jodit/issues/841">
|
|
1161
|
+
<created>1652217605928</created>
|
|
1162
|
+
<option name="number" value="01119" />
|
|
1163
|
+
<option name="presentableId" value="LOCAL-01119" />
|
|
1164
|
+
<option name="project" value="LOCAL" />
|
|
1165
|
+
<updated>1652217605928</updated>
|
|
1166
|
+
</task>
|
|
1167
|
+
<option name="localTasksCounter" value="1120" />
|
|
1178
1168
|
<servers />
|
|
1179
1169
|
</component>
|
|
1180
1170
|
<component name="TypeScriptGeneratedFilesManager">
|
|
1181
1171
|
<option name="version" value="3" />
|
|
1182
|
-
<option name="exactExcludedFiles">
|
|
1183
|
-
<list>
|
|
1184
|
-
<option value="$PROJECT_DIR$/types/types/core.d.ts" />
|
|
1185
|
-
<option value="$PROJECT_DIR$/types/types/storage.d.ts" />
|
|
1186
|
-
</list>
|
|
1187
|
-
</option>
|
|
1188
1172
|
</component>
|
|
1189
1173
|
<component name="UnknownFeatures">
|
|
1190
1174
|
<option featureType="com.intellij.configurationType" implementationName="BashConfigurationType" />
|
|
@@ -1320,38 +1304,38 @@
|
|
|
1320
1304
|
</component>
|
|
1321
1305
|
<component name="VcsManagerConfiguration">
|
|
1322
1306
|
<option name="CHECK_CODE_SMELLS_BEFORE_PROJECT_COMMIT" value="false" />
|
|
1323
|
-
<MESSAGE value="Fixed autotests" />
|
|
1324
|
-
<MESSAGE value="Enabled `@typescript-eslint/explicit-function-return-type` in eslint" />
|
|
1325
|
-
<MESSAGE value="Fixed doc" />
|
|
1326
|
-
<MESSAGE value="In print preview, table border color and background color is not showing #803 Issue: https://github.com/xdan/jodit/issues/803" />
|
|
1327
|
-
<MESSAGE value="Search plugin now highlights all found options Issue: https://github.com/xdan/jodit/issues/798" />
|
|
1328
|
-
<MESSAGE value="Added `Jodit.constants` Issue: https://github.com/xdan/jodit/issues/806" />
|
|
1329
|
-
<MESSAGE value="Dom.wrap can get Range" />
|
|
1330
|
-
<MESSAGE value="Fixed tests" />
|
|
1331
|
-
<MESSAGE value="Added `Config.pasteHTMLActionList` and `Config.pasteFromWordActionList` options Issue: https://github.com/xdan/jodit/issues/802." />
|
|
1332
|
-
<MESSAGE value="Fix doc" />
|
|
1333
|
-
<MESSAGE value=""Uncaught TypeError: this.setEditorValue is not a function" with Japanese input method #807 Issue: https://github.com/xdan/jodit/issues/807" />
|
|
1334
|
-
<MESSAGE value="Fixed composition `wait` and `debounce` decorators" />
|
|
1335
|
-
<MESSAGE value="Fixed apply styles inside another styles" />
|
|
1336
|
-
<MESSAGE value="Sass compile error Css3 min() #809 Issue: https://github.com/xdan/jodit/issues/809" />
|
|
1337
|
-
<MESSAGE value="Fixed image links" />
|
|
1338
|
-
<MESSAGE value="The preview popup has double scrollbars #808 Issue: https://github.com/xdan/jodit/issues/808" />
|
|
1339
|
-
<MESSAGE value="Fixed bug with sync editor size with iframe mode (Works only with [ResizeObserver](https://caniuse.com/resizeobserver))" />
|
|
1340
|
-
<MESSAGE value="Added `imageProcessor.replaceDataURIToBlobIdInView` functionality" />
|
|
1341
|
-
<MESSAGE value="Remove deprecated event emmit" />
|
|
1342
|
-
<MESSAGE value=""Uncaught TypeError: Cannot redefine property: __activeTab" occurs when I use 'brush' button twice in inline-popup for a element. #815 Issue: https://github.com/xdan/jodit/issues/815" />
|
|
1343
1307
|
<MESSAGE value="Keyboard Trap in Source Code mode #817 Issue: https://github.com/xdan/jodit/issues/817" />
|
|
1344
1308
|
<MESSAGE value="Fixed component inheritance error after component decorator" />
|
|
1345
1309
|
<MESSAGE value="Fixed processing of inserting videos from YouTube. Now you can start playing the video." />
|
|
1346
1310
|
<MESSAGE value="selection.insertHTML causes infinite blur loop when Jodit editor not active Added `insertCursorAfter` argument. Issue: https://github.com/xdan/jodit/issues/819" />
|
|
1347
1311
|
<MESSAGE value="Preview missing non styled content in a paragraph when there is any styled text in that paragraph #823 Issue: https://github.com/xdan/jodit/issues/823" />
|
|
1348
|
-
<
|
|
1312
|
+
<MESSAGE value="Image hyperlink is not working without https:// #821 Issue: https://github.com/xdan/jodit/issues/821" />
|
|
1313
|
+
<MESSAGE value="All components have their own instance of the Async module. What used to be `this.j.async` is now `this.async`." />
|
|
1314
|
+
<MESSAGE value="Added tests for Enter plugin" />
|
|
1315
|
+
<MESSAGE value="Fixed non-removal of the event handler on destruct" />
|
|
1316
|
+
<MESSAGE value="Clear events Key after destruct" />
|
|
1317
|
+
<MESSAGE value="Added test for Enter inside nested list" />
|
|
1318
|
+
<MESSAGE value="The on/one/off methods of the Jodit Event System have been greatly simplified" />
|
|
1319
|
+
<MESSAGE value="Update deps" />
|
|
1320
|
+
<MESSAGE value="Draft edit tests" />
|
|
1321
|
+
<MESSAGE value="Fixed circular dependencies" />
|
|
1322
|
+
<MESSAGE value="Refactoring the HTML cleanup plugin" />
|
|
1323
|
+
<MESSAGE value="Refactoring clean-html plugin Move test into plugin folders" />
|
|
1324
|
+
<MESSAGE value="Cursor goes out of edit box when moving to a new line #824 Issue: https://github.com/xdan/jodit/issues/824" />
|
|
1325
|
+
<MESSAGE value="Couldn't click next line button, when table is resized. #831 Issue: https://github.com/xdan/jodit/issues/831" />
|
|
1326
|
+
<MESSAGE value="Added test for Unable to add line height for Html pasted content. #830 Issue: https://github.com/xdan/jodit/issues/830" />
|
|
1327
|
+
<MESSAGE value="Fixed Unable to add line height for Html pasted content. #830 Issue: https://github.com/xdan/jodit/issues/830" />
|
|
1328
|
+
<MESSAGE value="Refactoring Enter plugin" />
|
|
1329
|
+
<MESSAGE value="Fix tests" />
|
|
1330
|
+
<MESSAGE value="Moved the test files to the appropriate directories" />
|
|
1331
|
+
<MESSAGE value="Added event `applyLink` for issue change default target for all links #841 Issue: https://github.com/xdan/jodit/issues/841" />
|
|
1332
|
+
<option name="LAST_COMMIT_MESSAGE" value="Added event `applyLink` for issue change default target for all links #841 Issue: https://github.com/xdan/jodit/issues/841" />
|
|
1349
1333
|
</component>
|
|
1350
1334
|
<component name="XDebuggerManager">
|
|
1351
1335
|
<breakpoint-manager>
|
|
1352
1336
|
<breakpoints>
|
|
1353
1337
|
<line-breakpoint enabled="true" type="javascript">
|
|
1354
|
-
<url>file://$PROJECT_DIR$/
|
|
1338
|
+
<url>file://$PROJECT_DIR$/src/plugins/size/size.test.js</url>
|
|
1355
1339
|
<line>305</line>
|
|
1356
1340
|
<option name="timeStamp" value="19" />
|
|
1357
1341
|
</line-breakpoint>
|
|
@@ -1361,8 +1345,8 @@
|
|
|
1361
1345
|
<option name="timeStamp" value="21" />
|
|
1362
1346
|
</line-breakpoint>
|
|
1363
1347
|
<line-breakpoint enabled="true" type="javascript">
|
|
1364
|
-
<url>file://$PROJECT_DIR$/
|
|
1365
|
-
<line>
|
|
1348
|
+
<url>file://$PROJECT_DIR$/src/plugins/plugins.test.js</url>
|
|
1349
|
+
<line>809</line>
|
|
1366
1350
|
<option name="timeStamp" value="24" />
|
|
1367
1351
|
</line-breakpoint>
|
|
1368
1352
|
<line-breakpoint enabled="true" type="javascript">
|
|
@@ -1371,7 +1355,7 @@
|
|
|
1371
1355
|
<option name="timeStamp" value="32" />
|
|
1372
1356
|
</line-breakpoint>
|
|
1373
1357
|
<line-breakpoint enabled="true" type="javascript">
|
|
1374
|
-
<url>file://$PROJECT_DIR$/test/tests/acceptance/
|
|
1358
|
+
<url>file://$PROJECT_DIR$/test/tests/acceptance/toolbar.test.js</url>
|
|
1375
1359
|
<line>527</line>
|
|
1376
1360
|
<option name="timeStamp" value="35" />
|
|
1377
1361
|
</line-breakpoint>
|
|
@@ -1392,11 +1376,11 @@
|
|
|
1392
1376
|
</line-breakpoint>
|
|
1393
1377
|
<line-breakpoint enabled="true" type="javascript">
|
|
1394
1378
|
<url>file://$PROJECT_DIR$/src/plugins/color/color.ts</url>
|
|
1395
|
-
<line>
|
|
1379
|
+
<line>116</line>
|
|
1396
1380
|
<option name="timeStamp" value="50" />
|
|
1397
1381
|
</line-breakpoint>
|
|
1398
1382
|
<line-breakpoint enabled="true" type="javascript">
|
|
1399
|
-
<url>file://$PROJECT_DIR$/
|
|
1383
|
+
<url>file://$PROJECT_DIR$/src/core/dom/dom.test.js</url>
|
|
1400
1384
|
<line>63</line>
|
|
1401
1385
|
<option name="timeStamp" value="52" />
|
|
1402
1386
|
</line-breakpoint>
|
|
@@ -1410,6 +1394,11 @@
|
|
|
1410
1394
|
<line>54</line>
|
|
1411
1395
|
<option name="timeStamp" value="54" />
|
|
1412
1396
|
</line-breakpoint>
|
|
1397
|
+
<line-breakpoint enabled="true" type="javascript">
|
|
1398
|
+
<url>file://$PROJECT_DIR$/src/plugins/media/media.ts</url>
|
|
1399
|
+
<line>65</line>
|
|
1400
|
+
<option name="timeStamp" value="55" />
|
|
1401
|
+
</line-breakpoint>
|
|
1413
1402
|
</breakpoints>
|
|
1414
1403
|
</breakpoint-manager>
|
|
1415
1404
|
</component>
|