jodit 3.18.6 → 3.18.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (66) hide show
  1. package/.idea/workspace.xml +92 -55
  2. package/CHANGELOG.MD +16 -5
  3. package/build/jodit.css +2 -2
  4. package/build/jodit.es2018.css +1 -1
  5. package/build/jodit.es2018.en.css +1 -1
  6. package/build/jodit.es2018.en.js +176 -103
  7. package/build/jodit.es2018.en.min.js +1 -1
  8. package/build/jodit.es2018.js +221 -121
  9. package/build/jodit.es2018.min.js +1 -1
  10. package/build/jodit.js +221 -122
  11. package/build/jodit.min.css +1 -1
  12. package/build/jodit.min.js +1 -1
  13. package/build/plugins/speech/speech-recognize/speech-recognize.css +2 -1
  14. package/build/plugins/speech/speech-recognize/speech-recognize.es2018.css +2 -1
  15. package/build/plugins/speech/speech-recognize/speech-recognize.es2018.en.css +2 -1
  16. package/build/plugins/speech/speech-recognize/speech-recognize.es2018.en.js +7 -7
  17. package/build/plugins/speech/speech-recognize/speech-recognize.es2018.en.min.css +1 -1
  18. package/build/plugins/speech/speech-recognize/speech-recognize.es2018.en.min.js +1 -1
  19. package/build/plugins/speech/speech-recognize/speech-recognize.es2018.js +7 -7
  20. package/build/plugins/speech/speech-recognize/speech-recognize.es2018.min.css +1 -1
  21. package/build/plugins/speech/speech-recognize/speech-recognize.es2018.min.js +1 -1
  22. package/build/plugins/speech/speech-recognize/speech-recognize.js +5 -5
  23. package/build/plugins/speech/speech-recognize/speech-recognize.min.css +1 -1
  24. package/build/plugins/speech/speech-recognize/speech-recognize.min.js +1 -1
  25. package/build/vdom.css +1 -1
  26. package/build/vdom.js +1 -1
  27. package/package.json +1 -1
  28. package/src/core/constants.ts +1 -0
  29. package/src/core/selection/select.ts +3 -2
  30. package/src/jodit.ts +10 -2
  31. package/src/langs/ar.js +2 -1
  32. package/src/langs/cs_cz.js +2 -1
  33. package/src/langs/de.js +3 -1
  34. package/src/langs/es.js +3 -1
  35. package/src/langs/fa.js +2 -1
  36. package/src/langs/fr.js +3 -1
  37. package/src/langs/he.js +2 -1
  38. package/src/langs/hu.js +2 -1
  39. package/src/langs/id.js +2 -1
  40. package/src/langs/it.js +3 -1
  41. package/src/langs/ja.js +3 -1
  42. package/src/langs/ko.js +3 -1
  43. package/src/langs/nl.js +2 -1
  44. package/src/langs/pl.js +2 -1
  45. package/src/langs/pt_br.js +3 -1
  46. package/src/langs/ru.js +3 -1
  47. package/src/langs/tr.js +3 -1
  48. package/src/langs/zh_cn.js +2 -1
  49. package/src/langs/zh_tw.js +2 -1
  50. package/src/plugins/clipboard/clipboard.test.js +0 -1251
  51. package/src/plugins/clipboard/paste/CHANGELOG.md +4 -0
  52. package/src/plugins/clipboard/paste/paste.test.js +1263 -0
  53. package/src/plugins/clipboard/paste/paste.ts +27 -6
  54. package/src/plugins/keyboard/backspace/backspace.ts +1 -1
  55. package/src/plugins/keyboard/backspace/cases/check-not-collapsed.ts +1 -0
  56. package/src/plugins/resizer/resizer.test.js +26 -0
  57. package/src/plugins/resizer/resizer.ts +106 -62
  58. package/src/plugins/speech/speech-recognize/config.ts +7 -3
  59. package/src/plugins/speech/speech-recognize/speech-recognize.less +1 -0
  60. package/src/plugins/speech/speech-recognize/speech-recognize.ts +2 -3
  61. package/src/types/jodit.d.ts +6 -0
  62. package/types/core/constants.d.ts +1 -0
  63. package/types/jodit.d.ts +6 -1
  64. package/types/plugins/clipboard/paste/paste.d.ts +6 -2
  65. package/types/plugins/resizer/resizer.d.ts +12 -6
  66. package/types/types/jodit.d.ts +6 -0
@@ -11,7 +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="Working voice recognition plugin&#10;Feature Request: Add ability for user to dictate using local device microphone as input #828&#10;Issue: https://github.com/xdan/jodit/issues/828">
14
+ <list default="true" id="5da7ff7f-03a8-49de-9fbb-8f8640d83b83" name="Default Changelist" comment="Allow custom resizing with Alt btn&#10;Issue: https://github.com/xdan/jodit/issues/839">
15
15
  <change beforePath="$PROJECT_DIR$/build/jodit.css" beforeDir="false" />
16
16
  <change beforePath="$PROJECT_DIR$/build/jodit.es2018.css" beforeDir="false" />
17
17
  <change beforePath="$PROJECT_DIR$/build/jodit.es2018.en.css" beforeDir="false" />
@@ -21,11 +21,45 @@
21
21
  <change beforePath="$PROJECT_DIR$/build/jodit.es2018.js" beforeDir="false" />
22
22
  <change beforePath="$PROJECT_DIR$/build/jodit.es2018.min.css" beforeDir="false" />
23
23
  <change beforePath="$PROJECT_DIR$/build/jodit.es2018.min.js" beforeDir="false" />
24
- <change beforePath="$PROJECT_DIR$/build/jodit.js" beforeDir="false" />
24
+ <change beforePath="$PROJECT_DIR$/build/jodit.js" beforeDir="false" afterPath="$PROJECT_DIR$/build/jodit.js" afterDir="false" />
25
25
  <change beforePath="$PROJECT_DIR$/build/jodit.min.css" beforeDir="false" />
26
26
  <change beforePath="$PROJECT_DIR$/build/jodit.min.js" beforeDir="false" />
27
+ <change beforePath="$PROJECT_DIR$/build/plugins/speech/speech-recognize/speech-recognize.css" beforeDir="false" />
28
+ <change beforePath="$PROJECT_DIR$/build/plugins/speech/speech-recognize/speech-recognize.es2018.css" beforeDir="false" />
29
+ <change beforePath="$PROJECT_DIR$/build/plugins/speech/speech-recognize/speech-recognize.es2018.en.css" beforeDir="false" />
30
+ <change beforePath="$PROJECT_DIR$/build/plugins/speech/speech-recognize/speech-recognize.es2018.en.js" beforeDir="false" />
31
+ <change beforePath="$PROJECT_DIR$/build/plugins/speech/speech-recognize/speech-recognize.es2018.en.min.css" beforeDir="false" />
32
+ <change beforePath="$PROJECT_DIR$/build/plugins/speech/speech-recognize/speech-recognize.es2018.en.min.js" beforeDir="false" />
33
+ <change beforePath="$PROJECT_DIR$/build/plugins/speech/speech-recognize/speech-recognize.es2018.js" beforeDir="false" />
34
+ <change beforePath="$PROJECT_DIR$/build/plugins/speech/speech-recognize/speech-recognize.es2018.min.css" beforeDir="false" />
35
+ <change beforePath="$PROJECT_DIR$/build/plugins/speech/speech-recognize/speech-recognize.es2018.min.js" beforeDir="false" />
36
+ <change beforePath="$PROJECT_DIR$/build/plugins/speech/speech-recognize/speech-recognize.js" beforeDir="false" afterPath="$PROJECT_DIR$/build/plugins/speech/speech-recognize/speech-recognize.js" afterDir="false" />
37
+ <change beforePath="$PROJECT_DIR$/build/plugins/speech/speech-recognize/speech-recognize.min.css" beforeDir="false" />
38
+ <change beforePath="$PROJECT_DIR$/build/plugins/speech/speech-recognize/speech-recognize.min.js" beforeDir="false" />
27
39
  <change beforePath="$PROJECT_DIR$/build/vdom.css" beforeDir="false" />
28
40
  <change beforePath="$PROJECT_DIR$/build/vdom.js" beforeDir="false" />
41
+ <change beforePath="$PROJECT_DIR$/src/langs/ar.js" beforeDir="false" afterPath="$PROJECT_DIR$/src/langs/ar.js" afterDir="false" />
42
+ <change beforePath="$PROJECT_DIR$/src/langs/cs_cz.js" beforeDir="false" afterPath="$PROJECT_DIR$/src/langs/cs_cz.js" afterDir="false" />
43
+ <change beforePath="$PROJECT_DIR$/src/langs/de.js" beforeDir="false" afterPath="$PROJECT_DIR$/src/langs/de.js" afterDir="false" />
44
+ <change beforePath="$PROJECT_DIR$/src/langs/es.js" beforeDir="false" afterPath="$PROJECT_DIR$/src/langs/es.js" afterDir="false" />
45
+ <change beforePath="$PROJECT_DIR$/src/langs/fa.js" beforeDir="false" afterPath="$PROJECT_DIR$/src/langs/fa.js" afterDir="false" />
46
+ <change beforePath="$PROJECT_DIR$/src/langs/fr.js" beforeDir="false" afterPath="$PROJECT_DIR$/src/langs/fr.js" afterDir="false" />
47
+ <change beforePath="$PROJECT_DIR$/src/langs/he.js" beforeDir="false" afterPath="$PROJECT_DIR$/src/langs/he.js" afterDir="false" />
48
+ <change beforePath="$PROJECT_DIR$/src/langs/hu.js" beforeDir="false" afterPath="$PROJECT_DIR$/src/langs/hu.js" afterDir="false" />
49
+ <change beforePath="$PROJECT_DIR$/src/langs/id.js" beforeDir="false" afterPath="$PROJECT_DIR$/src/langs/id.js" afterDir="false" />
50
+ <change beforePath="$PROJECT_DIR$/src/langs/it.js" beforeDir="false" afterPath="$PROJECT_DIR$/src/langs/it.js" afterDir="false" />
51
+ <change beforePath="$PROJECT_DIR$/src/langs/ja.js" beforeDir="false" afterPath="$PROJECT_DIR$/src/langs/ja.js" afterDir="false" />
52
+ <change beforePath="$PROJECT_DIR$/src/langs/ko.js" beforeDir="false" afterPath="$PROJECT_DIR$/src/langs/ko.js" afterDir="false" />
53
+ <change beforePath="$PROJECT_DIR$/src/langs/nl.js" beforeDir="false" afterPath="$PROJECT_DIR$/src/langs/nl.js" afterDir="false" />
54
+ <change beforePath="$PROJECT_DIR$/src/langs/pl.js" beforeDir="false" afterPath="$PROJECT_DIR$/src/langs/pl.js" afterDir="false" />
55
+ <change beforePath="$PROJECT_DIR$/src/langs/pt_br.js" beforeDir="false" afterPath="$PROJECT_DIR$/src/langs/pt_br.js" afterDir="false" />
56
+ <change beforePath="$PROJECT_DIR$/src/langs/ru.js" beforeDir="false" afterPath="$PROJECT_DIR$/src/langs/ru.js" afterDir="false" />
57
+ <change beforePath="$PROJECT_DIR$/src/langs/tr.js" beforeDir="false" afterPath="$PROJECT_DIR$/src/langs/tr.js" afterDir="false" />
58
+ <change beforePath="$PROJECT_DIR$/src/langs/zh_cn.js" beforeDir="false" afterPath="$PROJECT_DIR$/src/langs/zh_cn.js" afterDir="false" />
59
+ <change beforePath="$PROJECT_DIR$/src/langs/zh_tw.js" beforeDir="false" afterPath="$PROJECT_DIR$/src/langs/zh_tw.js" afterDir="false" />
60
+ <change beforePath="$PROJECT_DIR$/src/plugins/clipboard/paste/paste.test.js" beforeDir="false" afterPath="$PROJECT_DIR$/src/plugins/clipboard/paste/paste.test.js" afterDir="false" />
61
+ <change beforePath="$PROJECT_DIR$/src/plugins/resizer/resizer.test.js" beforeDir="false" afterPath="$PROJECT_DIR$/src/plugins/resizer/resizer.test.js" afterDir="false" />
62
+ <change beforePath="$PROJECT_DIR$/src/plugins/resizer/resizer.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/plugins/resizer/resizer.ts" afterDir="false" />
29
63
  <change beforePath="$PROJECT_DIR$/src/plugins/speech/speech-recognize/speech-recognize.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/plugins/speech/speech-recognize/speech-recognize.ts" afterDir="false" />
30
64
  </list>
31
65
  <list id="5049e1d4-15bc-4e3a-b46b-d2ce7537fc13" name="Revert &quot;Some small fixes&quot;" comment="Revert &quot;Some small fixes&quot;&#10;&#10;This reverts commit bc391ec6" />
@@ -121,7 +155,7 @@
121
155
  <recent name="$PROJECT_DIR$/src/core/helpers/utils/errors" />
122
156
  </key>
123
157
  </component>
124
- <component name="RunManager" selected="Node.js.find-tests.js">
158
+ <component name="RunManager" selected="npm.find-test">
125
159
  <configuration name="Count tests" type="BashConfigurationType" factoryName="Bash">
126
160
  <module name="jodit" />
127
161
  <option name="INTERPRETER_OPTIONS" value="" />
@@ -133,9 +167,6 @@
133
167
  <option name="PARAMETERS" value="" />
134
168
  <method v="2" />
135
169
  </configuration>
136
- <configuration name="build.js" type="NodeJSConfigurationType" temporary="true" nameIsGenerated="true" path-to-js-file="$PROJECT_DIR$/build-system/build.js" working-dir="$PROJECT_DIR$">
137
- <method v="2" />
138
- </configuration>
139
170
  <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">
140
171
  <method v="2" />
141
172
  </configuration>
@@ -180,21 +211,31 @@
180
211
  <envs />
181
212
  <method v="2" />
182
213
  </configuration>
214
+ <configuration name="find-test" type="js.build_tools.npm" temporary="true" nameIsGenerated="true">
215
+ <package-json value="$PROJECT_DIR$/package.json" />
216
+ <command value="run" />
217
+ <scripts>
218
+ <script value="find-test" />
219
+ </scripts>
220
+ <node-interpreter value="project" />
221
+ <envs />
222
+ <method v="2" />
223
+ </configuration>
183
224
  <list>
184
225
  <item itemvalue="Gulp.js.default" />
185
226
  <item itemvalue="Node.js.find-tests.js" />
186
- <item itemvalue="Node.js.build.js" />
187
227
  <item itemvalue="Node.js.lang-translater.js (1)" />
188
228
  <item itemvalue="Node.js.lang-translater.js" />
229
+ <item itemvalue="npm.find-test" />
189
230
  <item itemvalue="Shell Script.build" />
190
231
  </list>
191
232
  <recent_temporary>
192
233
  <list>
234
+ <item itemvalue="npm.find-test" />
193
235
  <item itemvalue="Node.js.find-tests.js" />
194
236
  <item itemvalue="Shell Script.build" />
195
237
  <item itemvalue="Node.js.lang-translater.js" />
196
238
  <item itemvalue="Node.js.lang-translater.js (1)" />
197
- <item itemvalue="Node.js.build.js" />
198
239
  </list>
199
240
  </recent_temporary>
200
241
  </component>
@@ -853,42 +894,9 @@
853
894
  <workItem from="1653334761446" duration="10805000" />
854
895
  <workItem from="1653487711494" duration="1406000" />
855
896
  <workItem from="1653819714453" duration="237000" />
856
- <workItem from="1653942101883" duration="15136000" />
857
- </task>
858
- <task id="LOCAL-01094" summary="Fixed non-removal of the event handler on destruct">
859
- <created>1651525135265</created>
860
- <option name="number" value="01094" />
861
- <option name="presentableId" value="LOCAL-01094" />
862
- <option name="project" value="LOCAL" />
863
- <updated>1651525135265</updated>
864
- </task>
865
- <task id="LOCAL-01095" summary="Added tests for Enter plugin">
866
- <created>1651530109388</created>
867
- <option name="number" value="01095" />
868
- <option name="presentableId" value="LOCAL-01095" />
869
- <option name="project" value="LOCAL" />
870
- <updated>1651530109388</updated>
871
- </task>
872
- <task id="LOCAL-01096" summary="Fixed non-removal of the event handler on destruct">
873
- <created>1651530367406</created>
874
- <option name="number" value="01096" />
875
- <option name="presentableId" value="LOCAL-01096" />
876
- <option name="project" value="LOCAL" />
877
- <updated>1651530367406</updated>
878
- </task>
879
- <task id="LOCAL-01097" summary="Clear events Key after destruct">
880
- <created>1651530407287</created>
881
- <option name="number" value="01097" />
882
- <option name="presentableId" value="LOCAL-01097" />
883
- <option name="project" value="LOCAL" />
884
- <updated>1651530407287</updated>
885
- </task>
886
- <task id="LOCAL-01098" summary="Added test for Enter inside nested list">
887
- <created>1651530669024</created>
888
- <option name="number" value="01098" />
889
- <option name="presentableId" value="LOCAL-01098" />
890
- <option name="project" value="LOCAL" />
891
- <updated>1651530669024</updated>
897
+ <workItem from="1653942101883" duration="17078000" />
898
+ <workItem from="1653995174056" duration="81000" />
899
+ <workItem from="1654258922777" duration="13011000" />
892
900
  </task>
893
901
  <task id="LOCAL-01099" summary="The on/one/off methods of the Jodit Event System have been greatly simplified">
894
902
  <created>1651700117756</created>
@@ -1198,17 +1206,46 @@
1198
1206
  <option name="project" value="LOCAL" />
1199
1207
  <updated>1653958383791</updated>
1200
1208
  </task>
1201
- <option name="localTasksCounter" value="1143" />
1209
+ <task id="LOCAL-01143" summary="Multiple modals 'Paste as HTML' after longer pressing ctrl+v #849&#10;Issue: https://github.com/xdan/jodit/issues/849">
1210
+ <created>1654331969847</created>
1211
+ <option name="number" value="01143" />
1212
+ <option name="presentableId" value="LOCAL-01143" />
1213
+ <option name="project" value="LOCAL" />
1214
+ <updated>1654331969848</updated>
1215
+ </task>
1216
+ <task id="LOCAL-01144" summary="All added videos are deleted when you click Delete or Backspace #847&#10;Issue: https://github.com/xdan/jodit/issues/847">
1217
+ <created>1654338625282</created>
1218
+ <option name="number" value="01144" />
1219
+ <option name="presentableId" value="LOCAL-01144" />
1220
+ <option name="project" value="LOCAL" />
1221
+ <updated>1654338625282</updated>
1222
+ </task>
1223
+ <task id="LOCAL-01145" summary="All added videos are deleted when you click Delete or Backspace #847&#10;Issue: https://github.com/xdan/jodit/issues/847">
1224
+ <created>1654338663334</created>
1225
+ <option name="number" value="01145" />
1226
+ <option name="presentableId" value="LOCAL-01145" />
1227
+ <option name="project" value="LOCAL" />
1228
+ <updated>1654338663334</updated>
1229
+ </task>
1230
+ <task id="LOCAL-01146" summary="Allow custom resizing with Alt btn&#10;Issue: https://github.com/xdan/jodit/issues/839">
1231
+ <created>1654344533809</created>
1232
+ <option name="number" value="01146" />
1233
+ <option name="presentableId" value="LOCAL-01146" />
1234
+ <option name="project" value="LOCAL" />
1235
+ <updated>1654344533809</updated>
1236
+ </task>
1237
+ <task id="LOCAL-01147" summary="Allow custom resizing with Alt btn&#10;Issue: https://github.com/xdan/jodit/issues/839">
1238
+ <created>1654344541363</created>
1239
+ <option name="number" value="01147" />
1240
+ <option name="presentableId" value="LOCAL-01147" />
1241
+ <option name="project" value="LOCAL" />
1242
+ <updated>1654344541363</updated>
1243
+ </task>
1244
+ <option name="localTasksCounter" value="1148" />
1202
1245
  <servers />
1203
1246
  </component>
1204
1247
  <component name="TypeScriptGeneratedFilesManager">
1205
1248
  <option name="version" value="3" />
1206
- <option name="exactExcludedFiles">
1207
- <list>
1208
- <option value="$PROJECT_DIR$/types/types/core.d.ts" />
1209
- <option value="$PROJECT_DIR$/types/types/storage.d.ts" />
1210
- </list>
1211
- </option>
1212
1249
  </component>
1213
1250
  <component name="UnknownFeatures">
1214
1251
  <option featureType="com.intellij.configurationType" implementationName="BashConfigurationType" />
@@ -1370,9 +1407,6 @@
1370
1407
  </component>
1371
1408
  <component name="VcsManagerConfiguration">
1372
1409
  <option name="CHECK_CODE_SMELLS_BEFORE_PROJECT_COMMIT" value="false" />
1373
- <MESSAGE value="Refactoring the HTML cleanup plugin" />
1374
- <MESSAGE value="Refactoring clean-html plugin&#10;Move test into plugin folders" />
1375
- <MESSAGE value="Cursor goes out of edit box when moving to a new line #824&#10;Issue: https://github.com/xdan/jodit/issues/824" />
1376
1410
  <MESSAGE value="Couldn't click next line button, when table is resized. #831&#10;Issue: https://github.com/xdan/jodit/issues/831" />
1377
1411
  <MESSAGE value="Added test for Unable to add line height for Html pasted content. #830&#10;Issue: https://github.com/xdan/jodit/issues/830" />
1378
1412
  <MESSAGE value="Fixed Unable to add line height for Html pasted content. #830&#10;Issue: https://github.com/xdan/jodit/issues/830" />
@@ -1395,7 +1429,10 @@
1395
1429
  <MESSAGE value="Fix docs" />
1396
1430
  <MESSAGE value="Working voice recognition plugin&#10;Feature Request: Add ability for user to dictate using local device microphone as input #828&#10;Issue: https://github.com/xdan/jodit/issues/828" />
1397
1431
  <MESSAGE value="Fixed speech docs" />
1398
- <option name="LAST_COMMIT_MESSAGE" value="Fixed speech docs" />
1432
+ <MESSAGE value="Multiple modals 'Paste as HTML' after longer pressing ctrl+v #849&#10;Issue: https://github.com/xdan/jodit/issues/849" />
1433
+ <MESSAGE value="All added videos are deleted when you click Delete or Backspace #847&#10;Issue: https://github.com/xdan/jodit/issues/847" />
1434
+ <MESSAGE value="Allow custom resizing with Alt btn&#10;Issue: https://github.com/xdan/jodit/issues/839" />
1435
+ <option name="LAST_COMMIT_MESSAGE" value="Allow custom resizing with Alt btn&#10;Issue: https://github.com/xdan/jodit/issues/839" />
1399
1436
  </component>
1400
1437
  <component name="XDebuggerManager">
1401
1438
  <breakpoint-manager>
package/CHANGELOG.MD CHANGED
@@ -9,6 +9,17 @@
9
9
  > - :house: [Internal]
10
10
  > - :nail_care: [Polish]
11
11
 
12
+ ## 3.18.7
13
+
14
+ #### :rocket: New Feature
15
+
16
+ - Allow custom resizing with Alt btn [How to resize image with the handle bars without fixed aspect ratio #839](https://github.com/xdan/jodit/issues/839)
17
+
18
+ #### :bug: Bug Fix
19
+
20
+ - [Multiple modals 'Paste as HTML' after longer pressing ctrl+v #849](https://github.com/xdan/jodit/issues/849)
21
+ - [All added videos are deleted when you click Delete or Backspace #847](https://github.com/xdan/jodit/issues/847)
22
+
12
23
  ## 3.18.6
13
24
 
14
25
  #### :rocket: New Feature
@@ -1480,11 +1491,11 @@ Related with https://github.com/xdan/jodit/issues/574. In some cases need to lim
1480
1491
  - @property {IUIOption[]} link.selectOptionsClassName=[] The list of the option for the select (to use with
1481
1492
  modeClassName="select")
1482
1493
  - ex: [
1483
- - { value: "", text: "" },
1484
- - { value: "val1", text: "text1" },
1485
- - { value: "val2", text: "text2" },
1486
- - { value: "val3", text: "text3" }
1487
- - ]
1494
+ - { value: "", text: "" },
1495
+ - { value: "val1", text: "text1" },
1496
+ - { value: "val2", text: "text2" },
1497
+ - { value: "val3", text: "text3" }
1498
+ - ]
1488
1499
  PR: https://github.com/xdan/jodit/pull/577 Thanks @s-renier-taonix-fr
1489
1500
 
1490
1501
  ##### New option `statusbar: boolean = true`
package/build/jodit.css CHANGED
@@ -1,14 +1,14 @@
1
1
  /*!
2
2
  * jodit - Jodit is awesome and usefully wysiwyg editor with filebrowser
3
3
  * Author: Chupurnov <chupurnov@gmail.com> (https://xdsoft.net/)
4
- * Version: v3.18.6
4
+ * Version: v3.18.7
5
5
  * Url: https://xdsoft.net/jodit/
6
6
  * License(s): MIT
7
7
  */
8
8
  /*!
9
9
  * jodit - Jodit is awesome and usefully wysiwyg editor with filebrowser
10
10
  * Author: Chupurnov <chupurnov@gmail.com> (https://xdsoft.net/)
11
- * Version: v3.18.6
11
+ * Version: v3.18.7
12
12
  * Url: https://xdsoft.net/jodit/
13
13
  * License(s): MIT
14
14
  */
@@ -1,7 +1,7 @@
1
1
  /*!
2
2
  * jodit - Jodit is awesome and usefully wysiwyg editor with filebrowser
3
3
  * Author: Chupurnov <chupurnov@gmail.com> (https://xdsoft.net/)
4
- * Version: v3.18.6
4
+ * Version: v3.18.7
5
5
  * Url: https://xdsoft.net/jodit/
6
6
  * License(s): MIT
7
7
  */
@@ -1,7 +1,7 @@
1
1
  /*!
2
2
  * jodit - Jodit is awesome and usefully wysiwyg editor with filebrowser
3
3
  * Author: Chupurnov <chupurnov@gmail.com> (https://xdsoft.net/)
4
- * Version: v3.18.6
4
+ * Version: v3.18.7
5
5
  * Url: https://xdsoft.net/jodit/
6
6
  * License(s): MIT
7
7
  */