jodit 3.9.6 → 3.11.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/dictionaries/v_chupurnov.xml +1 -0
- package/.idea/workspace.xml +197 -179
- package/CHANGELOG.MD +279 -133
- package/build/jodit.css +185 -130
- package/build/jodit.es2018.css +175 -126
- package/build/jodit.es2018.en.css +175 -126
- package/build/jodit.es2018.en.js +709 -367
- package/build/jodit.es2018.en.min.css +1 -1
- package/build/jodit.es2018.en.min.js +1 -1
- package/build/jodit.es2018.js +709 -367
- package/build/jodit.es2018.min.css +1 -1
- package/build/jodit.es2018.min.js +1 -1
- package/build/jodit.js +1362 -900
- package/build/jodit.min.css +2 -2
- package/build/jodit.min.js +1 -1
- package/package.json +22 -11
- package/src/core/async.ts +4 -0
- package/src/core/component/statuses.ts +6 -6
- package/src/core/dom.ts +25 -5
- package/src/core/events/event-emitter.ts +4 -2
- package/src/core/global.ts +15 -4
- package/src/core/helpers/append-script.ts +14 -0
- package/src/core/helpers/selector.ts +8 -3
- package/src/core/request/ajax.ts +5 -2
- package/src/core/request/response.ts +8 -4
- package/src/core/selection/style/api/toggle/toggle-css.ts +1 -1
- package/src/core/ui/button/button/button.less +8 -8
- package/src/core/ui/button/button/button.ts +9 -9
- package/src/core/ui/button/group/group.ts +2 -2
- package/src/core/ui/element.ts +4 -3
- package/src/core/ui/form/block/block.ts +1 -1
- package/src/core/ui/form/form.ts +8 -0
- package/src/core/ui/form/inputs/area/area.less +5 -0
- package/src/core/ui/form/inputs/area/area.ts +22 -1
- package/src/core/ui/form/inputs/checkbox/checkbox.less +50 -0
- package/src/core/ui/form/inputs/checkbox/checkbox.ts +48 -4
- package/src/core/ui/form/inputs/input/input.less +1 -1
- package/src/core/ui/form/inputs/input/input.ts +14 -4
- package/src/core/ui/icon.ts +2 -1
- package/src/core/ui/list/group.ts +2 -2
- package/src/core/ui/popup/popup.ts +59 -3
- package/src/jodit.ts +17 -14
- package/src/modules/dialog/dialog.less +0 -1
- package/src/modules/dialog/dialog.ts +2 -2
- package/src/modules/toolbar/collection/collection.ts +1 -6
- package/src/modules/toolbar/collection/editor-collection.ts +5 -1
- package/src/modules/widget/file-selector/file-selector.ts +1 -1
- package/src/modules/widget/tabs/tabs.less +1 -1
- package/src/modules/widget/tabs/tabs.ts +5 -3
- package/src/plugins/add-new-line/add-new-line.ts +1 -0
- package/src/plugins/clipboard/paste/paste.ts +1 -1
- package/src/plugins/image/image-properties/image-properties.ts +7 -0
- package/src/plugins/index.ts +1 -1
- package/src/plugins/keyboard/backspace/backspace.ts +183 -0
- package/src/plugins/keyboard/backspace/cases/check-join-neighbors.ts +117 -0
- package/src/plugins/keyboard/backspace/cases/check-join-two-lists.ts +55 -0
- package/src/plugins/keyboard/backspace/cases/check-not-collapsed.ts +27 -0
- package/src/plugins/keyboard/backspace/cases/check-remove-char.ts +191 -0
- package/src/plugins/keyboard/backspace/cases/check-remove-content-not-editable.ts +46 -0
- package/src/plugins/keyboard/backspace/cases/check-remove-empty-neighbor.ts +43 -0
- package/src/plugins/keyboard/backspace/cases/check-remove-empty-parent.ts +80 -0
- package/src/plugins/keyboard/backspace/cases/check-remove-unbreakable-element.ts +46 -0
- package/src/plugins/keyboard/backspace/cases/check-table-cell.ts +30 -0
- package/src/plugins/keyboard/backspace/cases/check-unwrap-first-list-item.ts +57 -0
- package/src/plugins/keyboard/backspace/cases/index.ts +27 -0
- package/src/plugins/keyboard/backspace/config.ts +33 -0
- package/src/plugins/keyboard/backspace/interface.d.ts +7 -0
- package/src/plugins/keyboard/helpers.ts +7 -3
- package/src/plugins/link/template.ts +2 -2
- package/src/plugins/print/preview.ts +103 -55
- package/src/plugins/resizer/resizer.ts +7 -2
- package/src/plugins/select.ts +0 -1
- package/src/plugins/source/const.ts +7 -0
- package/src/plugins/source/editor/engines/ace.ts +5 -0
- package/src/plugins/source/source.ts +19 -7
- package/src/styles/jodit.less +6 -0
- package/src/types/ajax.d.ts +3 -0
- package/src/types/async.d.ts +2 -0
- package/src/types/jodit.d.ts +5 -8
- package/src/types/popup.d.ts +1 -0
- package/src/types/ui.d.ts +23 -4
- package/types/core/async.d.ts +1 -0
- package/types/core/component/component.d.ts +6 -2
- package/types/core/component/statuses.d.ts +6 -6
- package/types/core/dom.d.ts +6 -2
- package/types/core/global.d.ts +1 -1
- package/types/core/helpers/append-script.d.ts +1 -0
- package/types/core/helpers/selector.d.ts +2 -3
- package/types/core/request/response.d.ts +2 -1
- package/types/core/ui/button/button/button.d.ts +3 -3
- package/types/core/ui/form/form.d.ts +1 -0
- package/types/core/ui/form/inputs/area/area.d.ts +7 -1
- package/types/core/ui/form/inputs/checkbox/checkbox.d.ts +10 -3
- package/types/core/ui/icon.d.ts +1 -1
- package/types/core/ui/list/group.d.ts +2 -1
- package/types/core/ui/popup/popup.d.ts +2 -1
- package/types/jodit.d.ts +6 -6
- package/types/modules/toolbar/button/button.d.ts +1 -1
- package/types/modules/widget/tabs/tabs.d.ts +2 -1
- package/types/plugins/index.d.ts +1 -1
- package/types/plugins/keyboard/backspace/backspace.d.ts +28 -0
- package/types/plugins/keyboard/backspace/cases/check-join-neighbors.d.ts +10 -0
- package/types/plugins/keyboard/backspace/cases/check-join-two-lists.d.ts +19 -0
- package/types/plugins/keyboard/backspace/cases/check-not-collapsed.d.ts +19 -0
- package/types/plugins/keyboard/backspace/cases/check-remove-char.d.ts +20 -0
- package/types/plugins/keyboard/backspace/cases/check-remove-content-not-editable.d.ts +10 -0
- package/types/plugins/keyboard/backspace/cases/check-remove-empty-neighbor.d.ts +19 -0
- package/types/plugins/keyboard/backspace/cases/check-remove-empty-parent.d.ts +19 -0
- package/types/plugins/keyboard/backspace/cases/check-remove-unbreakable-element.d.ts +19 -0
- package/types/plugins/keyboard/backspace/cases/check-table-cell.d.ts +19 -0
- package/types/plugins/keyboard/backspace/cases/check-unwrap-first-list-item.d.ts +19 -0
- package/types/plugins/keyboard/backspace/cases/index.d.ts +8 -0
- package/types/plugins/keyboard/backspace/config.d.ts +20 -0
- package/types/plugins/keyboard/helpers.d.ts +2 -2
- package/types/plugins/select.d.ts +0 -1
- package/types/plugins/source/const.d.ts +6 -0
- package/types/plugins/source/editor/engines/ace.d.ts +1 -0
- package/types/plugins/source/source.d.ts +1 -0
- package/types/types/{ajax.d.ts → types/ajax.d.ts} +3 -0
- package/types/types/{async.d.ts → types/async.d.ts} +2 -0
- package/types/types/{context.d.ts → types/context.d.ts} +0 -0
- package/types/types/{core.ts → types/core.ts} +0 -0
- package/types/types/{create.d.ts → types/create.d.ts} +0 -0
- package/types/types/{dialog.d.ts → types/dialog.d.ts} +0 -0
- package/types/types/{events.d.ts → types/events.d.ts} +0 -0
- package/types/types/{file-browser.d.ts → types/file-browser.d.ts} +0 -0
- package/types/types/{form.d.ts → types/form.d.ts} +0 -0
- package/types/types/{index.d.ts → types/index.d.ts} +0 -0
- package/types/types/{jodit.d.ts → types/jodit.d.ts} +5 -8
- package/types/types/{observe.d.ts → types/observe.d.ts} +0 -0
- package/types/types/{plugin.d.ts → types/plugin.d.ts} +0 -0
- package/types/types/{popup.d.ts → types/popup.d.ts} +1 -0
- package/types/types/{select.d.ts → types/select.d.ts} +0 -0
- package/types/types/{source.d.ts → types/source.d.ts} +0 -0
- package/types/types/{storage.ts → types/storage.ts} +0 -0
- package/types/types/{style.d.ts → types/style.d.ts} +0 -0
- package/types/types/{toolbar.d.ts → types/toolbar.d.ts} +0 -0
- package/types/types/{traits.d.ts → types/traits.d.ts} +0 -0
- package/types/types/{types.d.ts → types/types.d.ts} +0 -0
- package/types/types/{ui.d.ts → types/ui.d.ts} +23 -4
- package/types/types/{uploader.d.ts → types/uploader.d.ts} +0 -0
- package/types/types/{view.d.ts → types/view.d.ts} +0 -0
- package/src/plugins/keyboard/delete.ts +0 -746
- package/types/plugins/keyboard/delete.d.ts +0 -161
package/.idea/workspace.xml
CHANGED
|
@@ -11,20 +11,11 @@
|
|
|
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$/
|
|
17
|
-
<change beforePath="$PROJECT_DIR$/
|
|
18
|
-
<change beforePath="$PROJECT_DIR$/
|
|
19
|
-
<change beforePath="$PROJECT_DIR$/build/jodit.es2018.en.min.css" beforeDir="false" />
|
|
20
|
-
<change beforePath="$PROJECT_DIR$/build/jodit.es2018.en.min.js" beforeDir="false" />
|
|
21
|
-
<change beforePath="$PROJECT_DIR$/build/jodit.es2018.js" beforeDir="false" />
|
|
22
|
-
<change beforePath="$PROJECT_DIR$/build/jodit.es2018.min.css" beforeDir="false" />
|
|
23
|
-
<change beforePath="$PROJECT_DIR$/build/jodit.es2018.min.js" beforeDir="false" />
|
|
24
|
-
<change beforePath="$PROJECT_DIR$/build/jodit.js" beforeDir="false" afterPath="$PROJECT_DIR$/build/jodit.js" afterDir="false" />
|
|
25
|
-
<change beforePath="$PROJECT_DIR$/build/jodit.min.css" beforeDir="false" />
|
|
26
|
-
<change beforePath="$PROJECT_DIR$/build/jodit.min.js" beforeDir="false" />
|
|
27
|
-
<change beforePath="$PROJECT_DIR$/src/types/jodit.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/types/jodit.d.ts" afterDir="false" />
|
|
14
|
+
<list default="true" id="5da7ff7f-03a8-49de-9fbb-8f8640d83b83" name="Default Changelist" comment="Fixed es2018 build don't works properly starting from jodit 3.9.4 #758 Issue: https://github.com/xdan/jodit/issues/758">
|
|
15
|
+
<change beforePath="$PROJECT_DIR$/CHANGELOG.MD" beforeDir="false" afterPath="$PROJECT_DIR$/CHANGELOG.MD" afterDir="false" />
|
|
16
|
+
<change beforePath="$PROJECT_DIR$/src/plugins/resizer/resizer.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/plugins/resizer/resizer.ts" afterDir="false" />
|
|
17
|
+
<change beforePath="$PROJECT_DIR$/test/bootstrap.js" beforeDir="false" afterPath="$PROJECT_DIR$/test/bootstrap.js" afterDir="false" />
|
|
18
|
+
<change beforePath="$PROJECT_DIR$/test/tests/acceptance/plugins/resizer.js" beforeDir="false" afterPath="$PROJECT_DIR$/test/tests/acceptance/plugins/resizer.js" afterDir="false" />
|
|
28
19
|
</list>
|
|
29
20
|
<list id="5049e1d4-15bc-4e3a-b46b-d2ce7537fc13" name="Revert "Some small fixes"" comment="Revert "Some small fixes" This reverts commit bc391ec6" />
|
|
30
21
|
<option name="SHOW_DIALOG" value="false" />
|
|
@@ -61,8 +52,8 @@
|
|
|
61
52
|
</component>
|
|
62
53
|
<component name="HighlightingSettingsPerFile">
|
|
63
54
|
<setting file="file://$PROJECT_DIR$/test/tests/acceptance/toolbarTest.js" root0="FORCE_HIGHLIGHTING" />
|
|
64
|
-
<setting file="file://$PROJECT_DIR$/test/tests/acceptance/plugins/link.js" root0="FORCE_HIGHLIGHTING" />
|
|
65
55
|
<setting file="file://$PROJECT_DIR$/src/jodit.ts" root0="FORCE_HIGHLIGHTING" />
|
|
56
|
+
<setting file="file://$PROJECT_DIR$/test/tests/acceptance/plugins/link.js" root0="FORCE_HIGHLIGHTING" />
|
|
66
57
|
</component>
|
|
67
58
|
<component name="JsFlowSettings">
|
|
68
59
|
<service-enabled>true</service-enabled>
|
|
@@ -75,6 +66,9 @@
|
|
|
75
66
|
<scroll-view-position x="0" y="0" />
|
|
76
67
|
</layout>
|
|
77
68
|
</component>
|
|
69
|
+
<component name="MarkdownSettingsMigration">
|
|
70
|
+
<option name="stateVersion" value="1" />
|
|
71
|
+
</component>
|
|
78
72
|
<component name="PackageJsonUpdateNotifier">
|
|
79
73
|
<dismissed value="$PROJECT_DIR$/package.json" />
|
|
80
74
|
</component>
|
|
@@ -96,7 +90,7 @@
|
|
|
96
90
|
<property name="SearchEverywhereHistoryKey" value="inde	FILE	file:///Users/v-chupurnov/WebstormProjects/pet/jodit/index.html index	FILE	file:///Users/v-chupurnov/WebstormProjects/pet/jodit/index.html Sele	FILE	file:///Users/v-chupurnov/WebstormProjects/jodit/src/modules/Selection.ts" />
|
|
97
91
|
<property name="TERMINAL_CUSTOM_COMMANDS_GOT_IT" value="true" />
|
|
98
92
|
<property name="WebServerToolWindowFactoryState" value="false" />
|
|
99
|
-
<property name="add_unversioned_files" value="true /Users/v-chupurnov/WebstormProjects/pet/jodit/test.html" />
|
|
93
|
+
<property name="add_unversioned_files" value="true /Users/v-chupurnov/WebstormProjects/pet/jodit/test.html /Users/v-chupurnov/WebstormProjects/pet/jodit/types/core/ui/button/button/button.d.ts" />
|
|
100
94
|
<property name="editor.config.ad.shown" value="true" />
|
|
101
95
|
<property name="javascript.nodejs.core.library.configured.version" value="14.6.0" />
|
|
102
96
|
<property name="javascript.nodejs.core.library.typings.version" value="14.6.0" />
|
|
@@ -130,7 +124,7 @@
|
|
|
130
124
|
<property name="nodejs_package_manager_path" value="npm" />
|
|
131
125
|
<property name="prettierjs.PrettierConfiguration.Package" value="$PROJECT_DIR$/node_modules/prettier" />
|
|
132
126
|
<property name="run.code.analysis.last.selected.profile" value="pProject Default" />
|
|
133
|
-
<property name="settings.editor.selected.configurable" value="
|
|
127
|
+
<property name="settings.editor.selected.configurable" value="preferences.pluginManager" />
|
|
134
128
|
<property name="ts.external.directory.path" value="$PROJECT_DIR$/node_modules/typescript/lib" />
|
|
135
129
|
<property name="typescript-compiler-editor-notification" value="false" />
|
|
136
130
|
<property name="vue.rearranger.settings.migration" value="true" />
|
|
@@ -144,11 +138,11 @@
|
|
|
144
138
|
<recent name="$PROJECT_DIR$/src/core/helpers/utils" />
|
|
145
139
|
</key>
|
|
146
140
|
<key name="MoveFile.RECENT_KEYS">
|
|
141
|
+
<recent name="$PROJECT_DIR$/src/plugins/keyboard/backspace" />
|
|
147
142
|
<recent name="$PROJECT_DIR$/src/styles/icons" />
|
|
148
143
|
<recent name="$PROJECT_DIR$/src/core/ui/list" />
|
|
149
144
|
<recent name="$PROJECT_DIR$/src/plugins" />
|
|
150
145
|
<recent name="$PROJECT_DIR$/src/plugins/size/assests" />
|
|
151
|
-
<recent name="$PROJECT_DIR$/src/core/request" />
|
|
152
146
|
</key>
|
|
153
147
|
</component>
|
|
154
148
|
<component name="RunManager" selected="Shell Script.build">
|
|
@@ -739,147 +733,27 @@
|
|
|
739
733
|
<workItem from="1636477464236" duration="2846000" />
|
|
740
734
|
<workItem from="1636561946240" duration="87000" />
|
|
741
735
|
<workItem from="1636569485566" duration="670000" />
|
|
742
|
-
<workItem from="1636640886988" duration="
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
<
|
|
746
|
-
<
|
|
747
|
-
<
|
|
748
|
-
<
|
|
749
|
-
<
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
<
|
|
753
|
-
<
|
|
754
|
-
<
|
|
755
|
-
<
|
|
756
|
-
<
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
<
|
|
760
|
-
<
|
|
761
|
-
<
|
|
762
|
-
<
|
|
763
|
-
<updated>1635184690546</updated>
|
|
764
|
-
</task>
|
|
765
|
-
<task id="LOCAL-00848" summary="Remove from NPM extra files">
|
|
766
|
-
<created>1635185314916</created>
|
|
767
|
-
<option name="number" value="00848" />
|
|
768
|
-
<option name="presentableId" value="LOCAL-00848" />
|
|
769
|
-
<option name="project" value="LOCAL" />
|
|
770
|
-
<updated>1635185314916</updated>
|
|
771
|
-
</task>
|
|
772
|
-
<task id="LOCAL-00849" summary="Fixed Resize column table #712 Issue: https://github.com/xdan/jodit/issues/712 Delete multi rows and colums #690 Issue: https://github.com/xdan/jodit/issues/690">
|
|
773
|
-
<created>1635196606990</created>
|
|
774
|
-
<option name="number" value="00849" />
|
|
775
|
-
<option name="presentableId" value="LOCAL-00849" />
|
|
776
|
-
<option name="project" value="LOCAL" />
|
|
777
|
-
<updated>1635196606990</updated>
|
|
778
|
-
</task>
|
|
779
|
-
<task id="LOCAL-00850" summary="Fixed Resize column table #712 Issue: https://github.com/xdan/jodit/issues/712 Delete multi rows and colums #690 Issue: https://github.com/xdan/jodit/issues/690">
|
|
780
|
-
<created>1635196663335</created>
|
|
781
|
-
<option name="number" value="00850" />
|
|
782
|
-
<option name="presentableId" value="LOCAL-00850" />
|
|
783
|
-
<option name="project" value="LOCAL" />
|
|
784
|
-
<updated>1635196663335</updated>
|
|
785
|
-
</task>
|
|
786
|
-
<task id="LOCAL-00851" summary="Fixed Indent doesn't work in table cell #729 Issue: https://github.com/xdan/jodit/issues/729">
|
|
787
|
-
<created>1635197814774</created>
|
|
788
|
-
<option name="number" value="00851" />
|
|
789
|
-
<option name="presentableId" value="LOCAL-00851" />
|
|
790
|
-
<option name="project" value="LOCAL" />
|
|
791
|
-
<updated>1635197814774</updated>
|
|
792
|
-
</task>
|
|
793
|
-
<task id="LOCAL-00852" summary="When {"enter": "BR"} option is enabled, adding a heading to the text causes it to become wrapped by a "h*" tag #547 Issue: https://github.com/xdan/jodit/issues/547">
|
|
794
|
-
<created>1635198782089</created>
|
|
795
|
-
<option name="number" value="00852" />
|
|
796
|
-
<option name="presentableId" value="LOCAL-00852" />
|
|
797
|
-
<option name="project" value="LOCAL" />
|
|
798
|
-
<updated>1635198782089</updated>
|
|
799
|
-
</task>
|
|
800
|
-
<task id="LOCAL-00853" summary="Change Dom.each/find to generator API">
|
|
801
|
-
<created>1635207749968</created>
|
|
802
|
-
<option name="number" value="00853" />
|
|
803
|
-
<option name="presentableId" value="LOCAL-00853" />
|
|
804
|
-
<option name="project" value="LOCAL" />
|
|
805
|
-
<updated>1635207749968</updated>
|
|
806
|
-
</task>
|
|
807
|
-
<task id="LOCAL-00854" summary="Issue with clear format on <p> tags #680 Issue: https://github.com/xdan/jodit/issues/680">
|
|
808
|
-
<created>1635263441562</created>
|
|
809
|
-
<option name="number" value="00854" />
|
|
810
|
-
<option name="presentableId" value="LOCAL-00854" />
|
|
811
|
-
<option name="project" value="LOCAL" />
|
|
812
|
-
<updated>1635263441562</updated>
|
|
813
|
-
</task>
|
|
814
|
-
<task id="LOCAL-00855" summary="Indent doesn't work in table cell #729 Issue: https://github.com/xdan/jodit/issues/729">
|
|
815
|
-
<created>1635263566598</created>
|
|
816
|
-
<option name="number" value="00855" />
|
|
817
|
-
<option name="presentableId" value="LOCAL-00855" />
|
|
818
|
-
<option name="project" value="LOCAL" />
|
|
819
|
-
<updated>1635263566598</updated>
|
|
820
|
-
</task>
|
|
821
|
-
<task id="LOCAL-00856" summary="Added generators methods">
|
|
822
|
-
<created>1635263605966</created>
|
|
823
|
-
<option name="number" value="00856" />
|
|
824
|
-
<option name="presentableId" value="LOCAL-00856" />
|
|
825
|
-
<option name="project" value="LOCAL" />
|
|
826
|
-
<updated>1635263605966</updated>
|
|
827
|
-
</task>
|
|
828
|
-
<task id="LOCAL-00857" summary="Fix test">
|
|
829
|
-
<created>1635263664350</created>
|
|
830
|
-
<option name="number" value="00857" />
|
|
831
|
-
<option name="presentableId" value="LOCAL-00857" />
|
|
832
|
-
<option name="project" value="LOCAL" />
|
|
833
|
-
<updated>1635263664350</updated>
|
|
834
|
-
</task>
|
|
835
|
-
<task id="LOCAL-00858" summary="BOOM: Move Ajax class into `request` folder. Change `send`">
|
|
836
|
-
<created>1635263697875</created>
|
|
837
|
-
<option name="number" value="00858" />
|
|
838
|
-
<option name="presentableId" value="LOCAL-00858" />
|
|
839
|
-
<option name="project" value="LOCAL" />
|
|
840
|
-
<updated>1635263697875</updated>
|
|
841
|
-
</task>
|
|
842
|
-
<task id="LOCAL-00859" summary="Font and font size settings are not applied to all text if part of it has been changed earlier #706 Issue: https://github.com/xdan/jodit/issues/706">
|
|
843
|
-
<created>1635263745819</created>
|
|
844
|
-
<option name="number" value="00859" />
|
|
845
|
-
<option name="presentableId" value="LOCAL-00859" />
|
|
846
|
-
<option name="project" value="LOCAL" />
|
|
847
|
-
<updated>1635263745819</updated>
|
|
848
|
-
</task>
|
|
849
|
-
<task id="LOCAL-00860" summary="cleanHTML replaceOldTags doesn't seem to do anything #728 Issue: https://github.com/xdan/jodit/issues/728">
|
|
850
|
-
<created>1635265019779</created>
|
|
851
|
-
<option name="number" value="00860" />
|
|
852
|
-
<option name="presentableId" value="LOCAL-00860" />
|
|
853
|
-
<option name="project" value="LOCAL" />
|
|
854
|
-
<updated>1635265019780</updated>
|
|
855
|
-
</task>
|
|
856
|
-
<task id="LOCAL-00861" summary="cleanHTML replaceOldTags doesn't seem to do anything #728 Issue: https://github.com/xdan/jodit/issues/728">
|
|
857
|
-
<created>1635265058570</created>
|
|
858
|
-
<option name="number" value="00861" />
|
|
859
|
-
<option name="presentableId" value="LOCAL-00861" />
|
|
860
|
-
<option name="project" value="LOCAL" />
|
|
861
|
-
<updated>1635265058570</updated>
|
|
862
|
-
</task>
|
|
863
|
-
<task id="LOCAL-00862" summary="cleanHTML replaceOldTags doesn't seem to do anything #728 Issue: https://github.com/xdan/jodit/issues/728">
|
|
864
|
-
<created>1635265116373</created>
|
|
865
|
-
<option name="number" value="00862" />
|
|
866
|
-
<option name="presentableId" value="LOCAL-00862" />
|
|
867
|
-
<option name="project" value="LOCAL" />
|
|
868
|
-
<updated>1635265116373</updated>
|
|
869
|
-
</task>
|
|
870
|
-
<task id="LOCAL-00863" summary="cleanHTML replaceOldTags doesn't seem to do anything #728 Issue: https://github.com/xdan/jodit/issues/728">
|
|
871
|
-
<created>1635265314052</created>
|
|
872
|
-
<option name="number" value="00863" />
|
|
873
|
-
<option name="presentableId" value="LOCAL-00863" />
|
|
874
|
-
<option name="project" value="LOCAL" />
|
|
875
|
-
<updated>1635265314052</updated>
|
|
876
|
-
</task>
|
|
877
|
-
<task id="LOCAL-00864" summary="Up">
|
|
878
|
-
<created>1635265778599</created>
|
|
879
|
-
<option name="number" value="00864" />
|
|
880
|
-
<option name="presentableId" value="LOCAL-00864" />
|
|
881
|
-
<option name="project" value="LOCAL" />
|
|
882
|
-
<updated>1635265778599</updated>
|
|
736
|
+
<workItem from="1636640886988" duration="23802000" />
|
|
737
|
+
<workItem from="1636722553266" duration="1000" />
|
|
738
|
+
<workItem from="1636722573113" duration="6269000" />
|
|
739
|
+
<workItem from="1636974596602" duration="322000" />
|
|
740
|
+
<workItem from="1636975150423" duration="642000" />
|
|
741
|
+
<workItem from="1637008157319" duration="3972000" />
|
|
742
|
+
<workItem from="1637175210502" duration="13584000" />
|
|
743
|
+
<workItem from="1637613757864" duration="11973000" />
|
|
744
|
+
<workItem from="1637706424442" duration="13503000" />
|
|
745
|
+
<workItem from="1637778244979" duration="138000" />
|
|
746
|
+
<workItem from="1637781146492" duration="3100000" />
|
|
747
|
+
<workItem from="1638129676572" duration="342000" />
|
|
748
|
+
<workItem from="1638196445558" duration="991000" />
|
|
749
|
+
<workItem from="1638435714457" duration="947000" />
|
|
750
|
+
<workItem from="1638438421755" duration="2870000" />
|
|
751
|
+
<workItem from="1638474546947" duration="598000" />
|
|
752
|
+
<workItem from="1638478664583" duration="2065000" />
|
|
753
|
+
<workItem from="1638745527539" duration="683000" />
|
|
754
|
+
<workItem from="1638782582242" duration="2836000" />
|
|
755
|
+
<workItem from="1638785436431" duration="4634000" />
|
|
756
|
+
<workItem from="1638812171565" duration="13172000" />
|
|
883
757
|
</task>
|
|
884
758
|
<task id="LOCAL-00865" summary="Added test for issue https://github.com/xdan/jodit/issues/522">
|
|
885
759
|
<created>1635265918713</created>
|
|
@@ -1084,7 +958,147 @@
|
|
|
1084
958
|
<option name="project" value="LOCAL" />
|
|
1085
959
|
<updated>1636664686084</updated>
|
|
1086
960
|
</task>
|
|
1087
|
-
<
|
|
961
|
+
<task id="LOCAL-00894" summary="Added boolean in build system">
|
|
962
|
+
<created>1637707143215</created>
|
|
963
|
+
<option name="number" value="00894" />
|
|
964
|
+
<option name="presentableId" value="LOCAL-00894" />
|
|
965
|
+
<option name="project" value="LOCAL" />
|
|
966
|
+
<updated>1637707143215</updated>
|
|
967
|
+
</task>
|
|
968
|
+
<task id="LOCAL-00895" summary="Changed status to varian name">
|
|
969
|
+
<created>1637707315390</created>
|
|
970
|
+
<option name="number" value="00895" />
|
|
971
|
+
<option name="presentableId" value="LOCAL-00895" />
|
|
972
|
+
<option name="project" value="LOCAL" />
|
|
973
|
+
<updated>1637707315390</updated>
|
|
974
|
+
</task>
|
|
975
|
+
<task id="LOCAL-00896" summary="Added `loadNextStyle` helper">
|
|
976
|
+
<created>1637707344221</created>
|
|
977
|
+
<option name="number" value="00896" />
|
|
978
|
+
<option name="presentableId" value="LOCAL-00896" />
|
|
979
|
+
<option name="project" value="LOCAL" />
|
|
980
|
+
<updated>1637707344221</updated>
|
|
981
|
+
</task>
|
|
982
|
+
<task id="LOCAL-00897" summary="Reformat">
|
|
983
|
+
<created>1637707482729</created>
|
|
984
|
+
<option name="number" value="00897" />
|
|
985
|
+
<option name="presentableId" value="LOCAL-00897" />
|
|
986
|
+
<option name="project" value="LOCAL" />
|
|
987
|
+
<updated>1637707482729</updated>
|
|
988
|
+
</task>
|
|
989
|
+
<task id="LOCAL-00898" summary="Reformat">
|
|
990
|
+
<created>1637707496779</created>
|
|
991
|
+
<option name="number" value="00898" />
|
|
992
|
+
<option name="presentableId" value="LOCAL-00898" />
|
|
993
|
+
<option name="project" value="LOCAL" />
|
|
994
|
+
<updated>1637707496779</updated>
|
|
995
|
+
</task>
|
|
996
|
+
<task id="LOCAL-00899" summary="Fixed input change value bug">
|
|
997
|
+
<created>1637707536887</created>
|
|
998
|
+
<option name="number" value="00899" />
|
|
999
|
+
<option name="presentableId" value="LOCAL-00899" />
|
|
1000
|
+
<option name="project" value="LOCAL" />
|
|
1001
|
+
<updated>1637707536887</updated>
|
|
1002
|
+
</task>
|
|
1003
|
+
<task id="LOCAL-00900" summary="Fixed ui inherits. Added preventing closing in dialog system">
|
|
1004
|
+
<created>1637707639569</created>
|
|
1005
|
+
<option name="number" value="00900" />
|
|
1006
|
+
<option name="presentableId" value="LOCAL-00900" />
|
|
1007
|
+
<option name="project" value="LOCAL" />
|
|
1008
|
+
<updated>1637707639569</updated>
|
|
1009
|
+
</task>
|
|
1010
|
+
<task id="LOCAL-00901" summary="Added command `preview`">
|
|
1011
|
+
<created>1637707682055</created>
|
|
1012
|
+
<option name="number" value="00901" />
|
|
1013
|
+
<option name="presentableId" value="LOCAL-00901" />
|
|
1014
|
+
<option name="project" value="LOCAL" />
|
|
1015
|
+
<updated>1637707682055</updated>
|
|
1016
|
+
</task>
|
|
1017
|
+
<task id="LOCAL-00902" summary="Added source information for `afterGetValueFromEditor` event">
|
|
1018
|
+
<created>1637707721637</created>
|
|
1019
|
+
<option name="number" value="00902" />
|
|
1020
|
+
<option name="presentableId" value="LOCAL-00902" />
|
|
1021
|
+
<option name="project" value="LOCAL" />
|
|
1022
|
+
<updated>1637707721638</updated>
|
|
1023
|
+
</task>
|
|
1024
|
+
<task id="LOCAL-00903" summary="Fixed source plugin">
|
|
1025
|
+
<created>1637708668453</created>
|
|
1026
|
+
<option name="number" value="00903" />
|
|
1027
|
+
<option name="presentableId" value="LOCAL-00903" />
|
|
1028
|
+
<option name="project" value="LOCAL" />
|
|
1029
|
+
<updated>1637708668453</updated>
|
|
1030
|
+
</task>
|
|
1031
|
+
<task id="LOCAL-00904" summary="Fixed source plugin">
|
|
1032
|
+
<created>1637708799060</created>
|
|
1033
|
+
<option name="number" value="00904" />
|
|
1034
|
+
<option name="presentableId" value="LOCAL-00904" />
|
|
1035
|
+
<option name="project" value="LOCAL" />
|
|
1036
|
+
<updated>1637708799060</updated>
|
|
1037
|
+
</task>
|
|
1038
|
+
<task id="LOCAL-00905" summary="Added switch mod in checkbox">
|
|
1039
|
+
<created>1637778269041</created>
|
|
1040
|
+
<option name="number" value="00905" />
|
|
1041
|
+
<option name="presentableId" value="LOCAL-00905" />
|
|
1042
|
+
<option name="project" value="LOCAL" />
|
|
1043
|
+
<updated>1637778269041</updated>
|
|
1044
|
+
</task>
|
|
1045
|
+
<task id="LOCAL-00906" summary="Added `delete.hotkeys.deleteSentence` and `delete.hotkeys.backspaceSentence` options">
|
|
1046
|
+
<created>1637783013839</created>
|
|
1047
|
+
<option name="number" value="00906" />
|
|
1048
|
+
<option name="presentableId" value="LOCAL-00906" />
|
|
1049
|
+
<option name="project" value="LOCAL" />
|
|
1050
|
+
<updated>1637783013839</updated>
|
|
1051
|
+
</task>
|
|
1052
|
+
<task id="LOCAL-00907" summary="Backspace refactoring">
|
|
1053
|
+
<created>1638815569175</created>
|
|
1054
|
+
<option name="number" value="00907" />
|
|
1055
|
+
<option name="presentableId" value="LOCAL-00907" />
|
|
1056
|
+
<option name="project" value="LOCAL" />
|
|
1057
|
+
<updated>1638815569175</updated>
|
|
1058
|
+
</task>
|
|
1059
|
+
<task id="LOCAL-00908" summary="Backspace refactoring">
|
|
1060
|
+
<created>1638818024843</created>
|
|
1061
|
+
<option name="number" value="00908" />
|
|
1062
|
+
<option name="presentableId" value="LOCAL-00908" />
|
|
1063
|
+
<option name="project" value="LOCAL" />
|
|
1064
|
+
<updated>1638818024843</updated>
|
|
1065
|
+
</task>
|
|
1066
|
+
<task id="LOCAL-00909" summary="Fixed es2018 build don't works properly starting from jodit 3.9.4 #758 Issue: https://github.com/xdan/jodit/issues/758">
|
|
1067
|
+
<created>1638818065422</created>
|
|
1068
|
+
<option name="number" value="00909" />
|
|
1069
|
+
<option name="presentableId" value="LOCAL-00909" />
|
|
1070
|
+
<option name="project" value="LOCAL" />
|
|
1071
|
+
<updated>1638818065423</updated>
|
|
1072
|
+
</task>
|
|
1073
|
+
<task id="LOCAL-00910" summary="Fixed shadow dom support only partly fixed #746 Issue: https://github.com/xdan/jodit/issues/746">
|
|
1074
|
+
<created>1638823963689</created>
|
|
1075
|
+
<option name="number" value="00910" />
|
|
1076
|
+
<option name="presentableId" value="LOCAL-00910" />
|
|
1077
|
+
<option name="project" value="LOCAL" />
|
|
1078
|
+
<updated>1638823963689</updated>
|
|
1079
|
+
</task>
|
|
1080
|
+
<task id="LOCAL-00911" summary="Open localhost on `npm start`">
|
|
1081
|
+
<created>1638824353578</created>
|
|
1082
|
+
<option name="number" value="00911" />
|
|
1083
|
+
<option name="presentableId" value="LOCAL-00911" />
|
|
1084
|
+
<option name="project" value="LOCAL" />
|
|
1085
|
+
<updated>1638824353578</updated>
|
|
1086
|
+
</task>
|
|
1087
|
+
<task id="LOCAL-00912" summary="Open localhost on `npm start`">
|
|
1088
|
+
<created>1638824426725</created>
|
|
1089
|
+
<option name="number" value="00912" />
|
|
1090
|
+
<option name="presentableId" value="LOCAL-00912" />
|
|
1091
|
+
<option name="project" value="LOCAL" />
|
|
1092
|
+
<updated>1638824426725</updated>
|
|
1093
|
+
</task>
|
|
1094
|
+
<task id="LOCAL-00913" summary="- Added `Async.prototype.delay` method - Added `Ajax.options.responseType` option `XMLHttpRequestResponseType` - Added `Response.prototype.blob()` method">
|
|
1095
|
+
<created>1638824726203</created>
|
|
1096
|
+
<option name="number" value="00913" />
|
|
1097
|
+
<option name="presentableId" value="LOCAL-00913" />
|
|
1098
|
+
<option name="project" value="LOCAL" />
|
|
1099
|
+
<updated>1638824726203</updated>
|
|
1100
|
+
</task>
|
|
1101
|
+
<option name="localTasksCounter" value="914" />
|
|
1088
1102
|
<servers />
|
|
1089
1103
|
</component>
|
|
1090
1104
|
<component name="TypeScriptGeneratedFilesManager">
|
|
@@ -1221,25 +1235,9 @@
|
|
|
1221
1235
|
</entry>
|
|
1222
1236
|
</map>
|
|
1223
1237
|
</option>
|
|
1224
|
-
<option name="oldMeFiltersMigrated" value="true" />
|
|
1225
1238
|
</component>
|
|
1226
1239
|
<component name="VcsManagerConfiguration">
|
|
1227
1240
|
<option name="CHECK_CODE_SMELLS_BEFORE_PROJECT_COMMIT" value="false" />
|
|
1228
|
-
<MESSAGE value="BOOM: Move Ajax class into `request` folder. Change `send`" />
|
|
1229
|
-
<MESSAGE value="cleanHTML replaceOldTags doesn't seem to do anything #728 Issue: https://github.com/xdan/jodit/issues/728" />
|
|
1230
|
-
<MESSAGE value="Up" />
|
|
1231
|
-
<MESSAGE value="Added test for issue https://github.com/xdan/jodit/issues/522" />
|
|
1232
|
-
<MESSAGE value="Goodbye Travis! You were a good helper" />
|
|
1233
|
-
<MESSAGE value="Fixed tests in FF" />
|
|
1234
|
-
<MESSAGE value="Remove gitter" />
|
|
1235
|
-
<MESSAGE value="Fixed tables resizing" />
|
|
1236
|
-
<MESSAGE value="- Changed style resize rectangle for resize image or table - Added link `POWERED BY JODIT` in statusbar - Changed icon for resize handle in the bottom right corner - Fixed popup color for dark theme" />
|
|
1237
|
-
<MESSAGE value="Added test for issue: https://github.com/xdan/jodit/issues/738" />
|
|
1238
|
-
<MESSAGE value="Fixed unsupported fonts preview" />
|
|
1239
|
-
<MESSAGE value="Small facelift" />
|
|
1240
|
-
<MESSAGE value="Big apply style system - refactoring" />
|
|
1241
|
-
<MESSAGE value="Change html tags when list style on/off #738 Issue: https://github.com/xdan/jodit/issues/738 order list/unorder list in source view #732 Issue: https://github.com/xdan/jodit/issues/732" />
|
|
1242
|
-
<MESSAGE value="Fix condition for Jodit power" />
|
|
1243
1241
|
<MESSAGE value="Fix test for new resizer style" />
|
|
1244
1242
|
<MESSAGE value="Fix lints" />
|
|
1245
1243
|
<MESSAGE value="Jodit adds unexpected <span> tag when user lefts cursor inside <script> tag #687 Issue: https://github.com/xdan/jodit/issues/687" />
|
|
@@ -1249,8 +1247,23 @@
|
|
|
1249
1247
|
<MESSAGE value="Changed IStorage signature" />
|
|
1250
1248
|
<MESSAGE value="Remember last opened folder with FileBrowser #675 Issue: https://github.com/xdan/jodit/issues/675" />
|
|
1251
1249
|
<MESSAGE value="Feature request: Open the inline toolbar without having to highlight text. #600 Inline: https://github.com/xdan/jodit/issues/600" />
|
|
1250
|
+
<MESSAGE value="Added boolean in build system" />
|
|
1251
|
+
<MESSAGE value="Changed status to varian name" />
|
|
1252
|
+
<MESSAGE value="Added `loadNextStyle` helper" />
|
|
1252
1253
|
<MESSAGE value="Reformat" />
|
|
1253
|
-
<
|
|
1254
|
+
<MESSAGE value="Fixed input change value bug" />
|
|
1255
|
+
<MESSAGE value="Fixed ui inherits. Added preventing closing in dialog system" />
|
|
1256
|
+
<MESSAGE value="Added command `preview`" />
|
|
1257
|
+
<MESSAGE value="Added source information for `afterGetValueFromEditor` event" />
|
|
1258
|
+
<MESSAGE value="Fixed source plugin" />
|
|
1259
|
+
<MESSAGE value="Added switch mod in checkbox" />
|
|
1260
|
+
<MESSAGE value="Added `delete.hotkeys.deleteSentence` and `delete.hotkeys.backspaceSentence` options" />
|
|
1261
|
+
<MESSAGE value="Backspace refactoring" />
|
|
1262
|
+
<MESSAGE value="Fixed shadow dom support only partly fixed #746 Issue: https://github.com/xdan/jodit/issues/746" />
|
|
1263
|
+
<MESSAGE value="Fixed es2018 build don't works properly starting from jodit 3.9.4 #758 Issue: https://github.com/xdan/jodit/issues/758" />
|
|
1264
|
+
<MESSAGE value="Open localhost on `npm start`" />
|
|
1265
|
+
<MESSAGE value="- Added `Async.prototype.delay` method - Added `Ajax.options.responseType` option `XMLHttpRequestResponseType` - Added `Response.prototype.blob()` method" />
|
|
1266
|
+
<option name="LAST_COMMIT_MESSAGE" value="- Added `Async.prototype.delay` method - Added `Ajax.options.responseType` option `XMLHttpRequestResponseType` - Added `Response.prototype.blob()` method" />
|
|
1254
1267
|
</component>
|
|
1255
1268
|
<component name="XDebuggerManager">
|
|
1256
1269
|
<breakpoint-manager>
|
|
@@ -1297,12 +1310,12 @@
|
|
|
1297
1310
|
</line-breakpoint>
|
|
1298
1311
|
<line-breakpoint enabled="true" type="javascript">
|
|
1299
1312
|
<url>file://$PROJECT_DIR$/src/plugins/resizer/resizer.ts</url>
|
|
1300
|
-
<line>
|
|
1313
|
+
<line>385</line>
|
|
1301
1314
|
<option name="timeStamp" value="43" />
|
|
1302
1315
|
</line-breakpoint>
|
|
1303
1316
|
<line-breakpoint enabled="true" type="javascript">
|
|
1304
1317
|
<url>file://$PROJECT_DIR$/node_modules/postcss/lib/processor.js</url>
|
|
1305
|
-
<line>
|
|
1318
|
+
<line>53</line>
|
|
1306
1319
|
<option name="timeStamp" value="48" />
|
|
1307
1320
|
</line-breakpoint>
|
|
1308
1321
|
<line-breakpoint enabled="true" type="javascript">
|
|
@@ -1320,6 +1333,11 @@
|
|
|
1320
1333
|
<line>60</line>
|
|
1321
1334
|
<option name="timeStamp" value="52" />
|
|
1322
1335
|
</line-breakpoint>
|
|
1336
|
+
<line-breakpoint enabled="true" type="javascript">
|
|
1337
|
+
<url>file://$PROJECT_DIR$/src/plugins/keyboard/backspace/cases/check-remove-char.ts</url>
|
|
1338
|
+
<line>182</line>
|
|
1339
|
+
<option name="timeStamp" value="53" />
|
|
1340
|
+
</line-breakpoint>
|
|
1323
1341
|
</breakpoints>
|
|
1324
1342
|
</breakpoint-manager>
|
|
1325
1343
|
</component>
|