jodit 3.18.5 → 3.18.6

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 (97) hide show
  1. package/.idea/workspace.xml +145 -92
  2. package/CHANGELOG.MD +13 -5
  3. package/build/jodit.css +5 -2
  4. package/build/jodit.es2018.css +4 -1
  5. package/build/jodit.es2018.en.css +4 -1
  6. package/build/jodit.es2018.en.js +14864 -14373
  7. package/build/jodit.es2018.en.min.css +1 -1
  8. package/build/jodit.es2018.en.min.js +1 -1
  9. package/build/jodit.es2018.js +18683 -18192
  10. package/build/jodit.es2018.min.css +1 -1
  11. package/build/jodit.es2018.min.js +1 -1
  12. package/build/jodit.js +2188 -2053
  13. package/build/jodit.min.css +2 -2
  14. package/build/jodit.min.js +1 -1
  15. package/build/plugins/speech/speech-recognize/speech-recognize.css +38 -0
  16. package/build/plugins/speech/speech-recognize/speech-recognize.es2018.css +38 -0
  17. package/build/plugins/speech/speech-recognize/speech-recognize.es2018.en.css +38 -0
  18. package/build/plugins/speech/speech-recognize/speech-recognize.es2018.en.js +901 -0
  19. package/build/plugins/speech/speech-recognize/speech-recognize.es2018.en.min.css +1 -0
  20. package/build/plugins/speech/speech-recognize/speech-recognize.es2018.en.min.js +1 -0
  21. package/build/plugins/speech/speech-recognize/speech-recognize.es2018.js +901 -0
  22. package/build/plugins/speech/speech-recognize/speech-recognize.es2018.min.css +1 -0
  23. package/build/plugins/speech/speech-recognize/speech-recognize.es2018.min.js +1 -0
  24. package/build/plugins/speech/speech-recognize/speech-recognize.js +980 -0
  25. package/build/plugins/speech/speech-recognize/speech-recognize.min.css +1 -0
  26. package/build/plugins/speech/speech-recognize/speech-recognize.min.js +1 -0
  27. package/build/vdom.css +1 -1
  28. package/build/vdom.js +1 -1
  29. package/package.json +20 -20
  30. package/src/core/decorators/spy/spy.ts +56 -0
  31. package/src/core/dom/lazy-walker.ts +2 -1
  32. package/src/core/event-emitter/eventify.ts +7 -2
  33. package/src/jodit.ts +1 -0
  34. package/src/modules/toolbar/button/button.less +4 -0
  35. package/src/modules/toolbar/button/button.ts +10 -1
  36. package/src/plugins/fix/clean-html/clean-html.ts +1 -1
  37. package/src/plugins/keyboard/enter/enter.ts +9 -3
  38. package/src/plugins/keyboard/enter/helpers/check-br.ts +1 -1
  39. package/src/plugins/print/lib/generate-critical-css.ts +4 -0
  40. package/src/plugins/speech/speech-recognize/README.md +111 -0
  41. package/src/plugins/speech/speech-recognize/config.ts +174 -5
  42. package/src/plugins/speech/speech-recognize/constants.ts +12 -0
  43. package/src/plugins/speech/speech-recognize/helpers/api.ts +15 -0
  44. package/src/plugins/speech/speech-recognize/helpers/exec-spell-command.ts +16 -0
  45. package/src/plugins/speech/speech-recognize/helpers/recognize-manager.ts +208 -0
  46. package/src/plugins/speech/speech-recognize/helpers/sound.ts +44 -0
  47. package/src/plugins/speech/speech-recognize/interface.ts +51 -0
  48. package/src/plugins/speech/speech-recognize/langs/ar.js +10 -0
  49. package/src/plugins/speech/speech-recognize/langs/cs_cz.js +10 -0
  50. package/src/plugins/speech/speech-recognize/langs/de.js +10 -0
  51. package/src/plugins/speech/speech-recognize/langs/es.js +10 -0
  52. package/src/plugins/speech/speech-recognize/langs/fa.js +10 -0
  53. package/src/plugins/speech/speech-recognize/langs/fr.js +10 -0
  54. package/src/plugins/speech/speech-recognize/langs/he.js +10 -0
  55. package/src/plugins/speech/speech-recognize/langs/hu.js +10 -0
  56. package/src/plugins/speech/speech-recognize/langs/id.js +10 -0
  57. package/src/plugins/speech/speech-recognize/langs/index.ts +47 -0
  58. package/src/plugins/speech/speech-recognize/langs/it.js +10 -0
  59. package/src/plugins/speech/speech-recognize/langs/ja.js +10 -0
  60. package/src/plugins/speech/speech-recognize/langs/ko.js +10 -0
  61. package/src/plugins/speech/speech-recognize/langs/nl.js +10 -0
  62. package/src/plugins/speech/speech-recognize/langs/pl.js +10 -0
  63. package/src/plugins/speech/speech-recognize/langs/pt_br.js +10 -0
  64. package/src/plugins/speech/speech-recognize/langs/ru.js +10 -0
  65. package/src/plugins/speech/speech-recognize/langs/tr.js +10 -0
  66. package/src/plugins/speech/speech-recognize/langs/zh_cn.js +10 -0
  67. package/src/plugins/speech/speech-recognize/langs/zh_tw.js +10 -0
  68. package/src/plugins/speech/speech-recognize/speech-recognize.less +40 -0
  69. package/src/plugins/speech/speech-recognize/speech-recognize.ts +118 -12
  70. package/src/types/toolbar.d.ts +4 -3
  71. package/src/types/types.d.ts +1 -1
  72. package/tsconfig.json +1 -0
  73. package/types/core/decorators/spy/spy.d.ts +9 -0
  74. package/types/core/event-emitter/eventify.d.ts +3 -2
  75. package/types/core/helpers/string/i18n.d.ts +1 -1
  76. package/types/core/helpers/utils/append-script.d.ts +1 -1
  77. package/types/core/helpers/utils/build-query.d.ts +1 -1
  78. package/types/core/helpers/utils/default-language.d.ts +1 -1
  79. package/types/core/helpers/utils/val.d.ts +1 -1
  80. package/types/modules/dialog/alert.d.ts +1 -1
  81. package/types/modules/dialog/prompt.d.ts +1 -1
  82. package/types/modules/widget/tabs/tabs.d.ts +1 -1
  83. package/types/plugins/fix/clean-html/clean-html.d.ts +1 -1
  84. package/types/plugins/keyboard/enter/helpers/check-br.d.ts +1 -1
  85. package/types/plugins/print/lib/generate-critical-css.d.ts +3 -0
  86. package/types/plugins/speech/speech-recognize/config.d.ts +60 -0
  87. package/types/plugins/speech/speech-recognize/constants.d.ts +10 -0
  88. package/types/plugins/speech/speech-recognize/helpers/api.d.ts +10 -0
  89. package/types/plugins/speech/speech-recognize/helpers/exec-spell-command.d.ts +10 -0
  90. package/types/plugins/speech/speech-recognize/helpers/recognize-manager.d.ts +48 -0
  91. package/types/plugins/speech/speech-recognize/helpers/sound.d.ts +11 -0
  92. package/types/plugins/speech/speech-recognize/interface.d.ts +42 -0
  93. package/types/plugins/speech/speech-recognize/speech-recognize.d.ts +24 -0
  94. package/types/types/toolbar.d.ts +4 -3
  95. package/types/types/types.d.ts +1 -1
  96. package/src/plugins/speech/speech-recognize/helpers/microphone-input.ts +0 -218
  97. package/src/plugins/speech/speech-recognize/helpers/voice-command.ts +0 -118
@@ -11,8 +11,22 @@
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$/CHANGELOG.MD" beforeDir="false" afterPath="$PROJECT_DIR$/CHANGELOG.MD" afterDir="false" />
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">
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/plugins/speech/speech-recognize/speech-recognize.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/plugins/speech/speech-recognize/speech-recognize.ts" afterDir="false" />
16
30
  </list>
17
31
  <list id="5049e1d4-15bc-4e3a-b46b-d2ce7537fc13" name="Revert &quot;Some small fixes&quot;" comment="Revert &quot;Some small fixes&quot;&#10;&#10;This reverts commit bc391ec6" />
18
32
  <option name="SHOW_DIALOG" value="false" />
@@ -100,11 +114,11 @@
100
114
  <recent name="$PROJECT_DIR$/src/plugins/line-height" />
101
115
  </key>
102
116
  <key name="MoveFile.RECENT_KEYS">
117
+ <recent name="$PROJECT_DIR$/src/plugins/speech/speech-recognize" />
118
+ <recent name="$PROJECT_DIR$/src/plugins/speech/speech-recognize/helpers" />
119
+ <recent name="$PROJECT_DIR$/src/plugins/speech/speech-recognize/commands" />
103
120
  <recent name="$PROJECT_DIR$/src/plugins/print" />
104
121
  <recent name="$PROJECT_DIR$/src/core/helpers/utils/errors" />
105
- <recent name="$PROJECT_DIR$/src/plugins/speech/speech-recognize" />
106
- <recent name="$PROJECT_DIR$/src/core/create" />
107
- <recent name="$PROJECT_DIR$/src/langs" />
108
122
  </key>
109
123
  </component>
110
124
  <component name="RunManager" selected="Node.js.find-tests.js">
@@ -832,84 +846,14 @@
832
846
  <workItem from="1652381164201" duration="2798000" />
833
847
  <workItem from="1652442012011" duration="62000" />
834
848
  <workItem from="1652610834842" duration="8668000" />
835
- <workItem from="1652719253405" duration="4951000" />
836
- </task>
837
- <task id="LOCAL-01083" summary="&quot;Uncaught TypeError: Cannot redefine property: __activeTab&quot; occurs when I use 'brush' button twice in inline-popup for a element. #815&#10;Issue: https://github.com/xdan/jodit/issues/815">
838
- <created>1648755114501</created>
839
- <option name="number" value="01083" />
840
- <option name="presentableId" value="LOCAL-01083" />
841
- <option name="project" value="LOCAL" />
842
- <updated>1648755114501</updated>
843
- </task>
844
- <task id="LOCAL-01084" summary="Keyboard Trap in Source Code mode #817&#10;Issue: https://github.com/xdan/jodit/issues/817">
845
- <created>1648755745557</created>
846
- <option name="number" value="01084" />
847
- <option name="presentableId" value="LOCAL-01084" />
848
- <option name="project" value="LOCAL" />
849
- <updated>1648755745557</updated>
850
- </task>
851
- <task id="LOCAL-01085" summary="Keyboard Trap in Source Code mode #817&#10;Issue: https://github.com/xdan/jodit/issues/817">
852
- <created>1648755785244</created>
853
- <option name="number" value="01085" />
854
- <option name="presentableId" value="LOCAL-01085" />
855
- <option name="project" value="LOCAL" />
856
- <updated>1648755785244</updated>
857
- </task>
858
- <task id="LOCAL-01086" summary="Fixed component inheritance error after component decorator">
859
- <created>1649721240283</created>
860
- <option name="number" value="01086" />
861
- <option name="presentableId" value="LOCAL-01086" />
862
- <option name="project" value="LOCAL" />
863
- <updated>1649721240284</updated>
864
- </task>
865
- <task id="LOCAL-01087" summary="Fixed processing of inserting videos from YouTube. Now you can start playing the video.">
866
- <created>1649721334440</created>
867
- <option name="number" value="01087" />
868
- <option name="presentableId" value="LOCAL-01087" />
869
- <option name="project" value="LOCAL" />
870
- <updated>1649721334440</updated>
871
- </task>
872
- <task id="LOCAL-01088" summary="selection.insertHTML causes infinite blur loop when Jodit editor not active&#10;Added `insertCursorAfter` argument.&#10;&#10;Issue: https://github.com/xdan/jodit/issues/819">
873
- <created>1649721568763</created>
874
- <option name="number" value="01088" />
875
- <option name="presentableId" value="LOCAL-01088" />
876
- <option name="project" value="LOCAL" />
877
- <updated>1649721568763</updated>
878
- </task>
879
- <task id="LOCAL-01089" summary="Preview missing non styled content in a paragraph when there is any styled text in that paragraph #823&#10;Issue: https://github.com/xdan/jodit/issues/823">
880
- <created>1649722207918</created>
881
- <option name="number" value="01089" />
882
- <option name="presentableId" value="LOCAL-01089" />
883
- <option name="project" value="LOCAL" />
884
- <updated>1649722207919</updated>
885
- </task>
886
- <task id="LOCAL-01090" summary="Image hyperlink is not working without https:// #821&#10;Issue: https://github.com/xdan/jodit/issues/821">
887
- <created>1649722992031</created>
888
- <option name="number" value="01090" />
889
- <option name="presentableId" value="LOCAL-01090" />
890
- <option name="project" value="LOCAL" />
891
- <updated>1649722992031</updated>
892
- </task>
893
- <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`.">
894
- <created>1651499125263</created>
895
- <option name="number" value="01091" />
896
- <option name="presentableId" value="LOCAL-01091" />
897
- <option name="project" value="LOCAL" />
898
- <updated>1651499125263</updated>
899
- </task>
900
- <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`.">
901
- <created>1651499345091</created>
902
- <option name="number" value="01092" />
903
- <option name="presentableId" value="LOCAL-01092" />
904
- <option name="project" value="LOCAL" />
905
- <updated>1651499345091</updated>
906
- </task>
907
- <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`.">
908
- <created>1651500306472</created>
909
- <option name="number" value="01093" />
910
- <option name="presentableId" value="LOCAL-01093" />
911
- <option name="project" value="LOCAL" />
912
- <updated>1651500306472</updated>
849
+ <workItem from="1652719253405" duration="7098000" />
850
+ <workItem from="1652957712199" duration="1072000" />
851
+ <workItem from="1652969884870" duration="1050000" />
852
+ <workItem from="1653300567782" duration="105000" />
853
+ <workItem from="1653334761446" duration="10805000" />
854
+ <workItem from="1653487711494" duration="1406000" />
855
+ <workItem from="1653819714453" duration="237000" />
856
+ <workItem from="1653942101883" duration="15136000" />
913
857
  </task>
914
858
  <task id="LOCAL-01094" summary="Fixed non-removal of the event handler on destruct">
915
859
  <created>1651525135265</created>
@@ -1177,11 +1121,94 @@
1177
1121
  <option name="project" value="LOCAL" />
1178
1122
  <updated>1652724201058</updated>
1179
1123
  </task>
1180
- <option name="localTasksCounter" value="1132" />
1124
+ <task id="LOCAL-01132" summary="Fixed All td elements got double border style. #842&#10;&#10;Issue: https://github.com/xdan/jodit/issues/842">
1125
+ <created>1652724265926</created>
1126
+ <option name="number" value="01132" />
1127
+ <option name="presentableId" value="LOCAL-01132" />
1128
+ <option name="project" value="LOCAL" />
1129
+ <updated>1652724265926</updated>
1130
+ </task>
1131
+ <task id="LOCAL-01133" summary="Speech recognize plugin">
1132
+ <created>1653342560857</created>
1133
+ <option name="number" value="01133" />
1134
+ <option name="presentableId" value="LOCAL-01133" />
1135
+ <option name="project" value="LOCAL" />
1136
+ <updated>1653342560858</updated>
1137
+ </task>
1138
+ <task id="LOCAL-01134" summary="PoC Speech Recognize plugin">
1139
+ <created>1653344969074</created>
1140
+ <option name="number" value="01134" />
1141
+ <option name="presentableId" value="LOCAL-01134" />
1142
+ <option name="project" value="LOCAL" />
1143
+ <updated>1653344969074</updated>
1144
+ </task>
1145
+ <task id="LOCAL-01135" summary="PoC Speech Recognize plugin">
1146
+ <created>1653345441989</created>
1147
+ <option name="number" value="01135" />
1148
+ <option name="presentableId" value="LOCAL-01135" />
1149
+ <option name="project" value="LOCAL" />
1150
+ <updated>1653345441989</updated>
1151
+ </task>
1152
+ <task id="LOCAL-01136" summary="PoC Speech Recognize plugin">
1153
+ <created>1653345498260</created>
1154
+ <option name="number" value="01136" />
1155
+ <option name="presentableId" value="LOCAL-01136" />
1156
+ <option name="project" value="LOCAL" />
1157
+ <updated>1653345498261</updated>
1158
+ </task>
1159
+ <task id="LOCAL-01137" summary="Working voice recognition plugin">
1160
+ <created>1653955748216</created>
1161
+ <option name="number" value="01137" />
1162
+ <option name="presentableId" value="LOCAL-01137" />
1163
+ <option name="project" value="LOCAL" />
1164
+ <updated>1653955748216</updated>
1165
+ </task>
1166
+ <task id="LOCAL-01138" summary="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">
1167
+ <created>1653955872318</created>
1168
+ <option name="number" value="01138" />
1169
+ <option name="presentableId" value="LOCAL-01138" />
1170
+ <option name="project" value="LOCAL" />
1171
+ <updated>1653955872318</updated>
1172
+ </task>
1173
+ <task id="LOCAL-01139" summary="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">
1174
+ <created>1653956527641</created>
1175
+ <option name="number" value="01139" />
1176
+ <option name="presentableId" value="LOCAL-01139" />
1177
+ <option name="project" value="LOCAL" />
1178
+ <updated>1653956527641</updated>
1179
+ </task>
1180
+ <task id="LOCAL-01140" summary="Fix docs">
1181
+ <created>1653956929439</created>
1182
+ <option name="number" value="01140" />
1183
+ <option name="presentableId" value="LOCAL-01140" />
1184
+ <option name="project" value="LOCAL" />
1185
+ <updated>1653956929439</updated>
1186
+ </task>
1187
+ <task id="LOCAL-01141" summary="Fixed speech docs">
1188
+ <created>1653958350877</created>
1189
+ <option name="number" value="01141" />
1190
+ <option name="presentableId" value="LOCAL-01141" />
1191
+ <option name="project" value="LOCAL" />
1192
+ <updated>1653958350878</updated>
1193
+ </task>
1194
+ <task id="LOCAL-01142" summary="Fixed speech docs">
1195
+ <created>1653958383790</created>
1196
+ <option name="number" value="01142" />
1197
+ <option name="presentableId" value="LOCAL-01142" />
1198
+ <option name="project" value="LOCAL" />
1199
+ <updated>1653958383791</updated>
1200
+ </task>
1201
+ <option name="localTasksCounter" value="1143" />
1181
1202
  <servers />
1182
1203
  </component>
1183
1204
  <component name="TypeScriptGeneratedFilesManager">
1184
1205
  <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>
1185
1212
  </component>
1186
1213
  <component name="UnknownFeatures">
1187
1214
  <option featureType="com.intellij.configurationType" implementationName="BashConfigurationType" />
@@ -1249,6 +1276,31 @@
1249
1276
  </State>
1250
1277
  </value>
1251
1278
  </entry>
1279
+ <entry key="9efb17d6-6cb5-4dd7-8476-b4e0bbae340c">
1280
+ <value>
1281
+ <State>
1282
+ <option name="SHOW_ONLY_AFFECTED_CHANGES" value="true" />
1283
+ <option name="FILTERS">
1284
+ <map>
1285
+ <entry key="branch">
1286
+ <value>
1287
+ <list>
1288
+ <option value="HEAD" />
1289
+ </list>
1290
+ </value>
1291
+ </entry>
1292
+ <entry key="structure">
1293
+ <value>
1294
+ <list>
1295
+ <option value="dir:/Users/v-chupurnov/WebstormProjects/pet/jodit/src/core/decorators" />
1296
+ </list>
1297
+ </value>
1298
+ </entry>
1299
+ </map>
1300
+ </option>
1301
+ </State>
1302
+ </value>
1303
+ </entry>
1252
1304
  <entry key="MAIN">
1253
1305
  <value>
1254
1306
  <State>
@@ -1297,6 +1349,7 @@
1297
1349
  <map>
1298
1350
  <entry key="1" value="TOOL_WINDOW" />
1299
1351
  <entry key="2" value="TOOL_WINDOW" />
1352
+ <entry key="9efb17d6-6cb5-4dd7-8476-b4e0bbae340c" value="TOOL_WINDOW" />
1300
1353
  <entry key="e9207ee6-0ed8-4617-a2df-2ad787cfa51a" value="TOOL_WINDOW" />
1301
1354
  </map>
1302
1355
  </option>
@@ -1317,13 +1370,6 @@
1317
1370
  </component>
1318
1371
  <component name="VcsManagerConfiguration">
1319
1372
  <option name="CHECK_CODE_SMELLS_BEFORE_PROJECT_COMMIT" value="false" />
1320
- <MESSAGE value="Fixed non-removal of the event handler on destruct" />
1321
- <MESSAGE value="Clear events Key after destruct" />
1322
- <MESSAGE value="Added test for Enter inside nested list" />
1323
- <MESSAGE value="The on/one/off methods of the Jodit Event System have been greatly simplified" />
1324
- <MESSAGE value="Update deps" />
1325
- <MESSAGE value="Draft edit tests" />
1326
- <MESSAGE value="Fixed circular dependencies" />
1327
1373
  <MESSAGE value="Refactoring the HTML cleanup plugin" />
1328
1374
  <MESSAGE value="Refactoring clean-html plugin&#10;Move test into plugin folders" />
1329
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" />
@@ -1342,7 +1388,14 @@
1342
1388
  <MESSAGE value="Fixed a bug where the download cancellation business exceptions were shown as errors in the file browser. Also fixed uncatchable exceptions inside Async.promise" />
1343
1389
  <MESSAGE value="Fixed table default style" />
1344
1390
  <MESSAGE value="Fixed styles inside print mode" />
1345
- <option name="LAST_COMMIT_MESSAGE" value="Fixed styles inside print mode" />
1391
+ <MESSAGE value="Fixed All td elements got double border style. #842&#10;&#10;Issue: https://github.com/xdan/jodit/issues/842" />
1392
+ <MESSAGE value="Speech recognize plugin" />
1393
+ <MESSAGE value="PoC Speech Recognize plugin" />
1394
+ <MESSAGE value="Working voice recognition plugin" />
1395
+ <MESSAGE value="Fix docs" />
1396
+ <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
+ <MESSAGE value="Fixed speech docs" />
1398
+ <option name="LAST_COMMIT_MESSAGE" value="Fixed speech docs" />
1346
1399
  </component>
1347
1400
  <component name="XDebuggerManager">
1348
1401
  <breakpoint-manager>
package/CHANGELOG.MD CHANGED
@@ -9,6 +9,14 @@
9
9
  > - :house: [Internal]
10
10
  > - :nail_care: [Polish]
11
11
 
12
+ ## 3.18.6
13
+
14
+ #### :rocket: New Feature
15
+
16
+ - Separate plugin for voice recognition and input of recognized text into the editor.
17
+ [Feature Request: Add ability for user to dictate using local device microphone as input #828](https://github.com/xdan/jodit/issues/828)
18
+ > This plugin is not included in the main Jodit build. It must be connected separately [Подробнее](./src/plugins/speech/speech-recognize/README.md)
19
+
12
20
  ## 3.18.5
13
21
 
14
22
  #### :boom: Breaking Change
@@ -1472,11 +1480,11 @@ Related with https://github.com/xdan/jodit/issues/574. In some cases need to lim
1472
1480
  - @property {IUIOption[]} link.selectOptionsClassName=[] The list of the option for the select (to use with
1473
1481
  modeClassName="select")
1474
1482
  - ex: [
1475
- - { value: "", text: "" },
1476
- - { value: "val1", text: "text1" },
1477
- - { value: "val2", text: "text2" },
1478
- - { value: "val3", text: "text3" }
1479
- - ]
1483
+ - { value: "", text: "" },
1484
+ - { value: "val1", text: "text1" },
1485
+ - { value: "val2", text: "text2" },
1486
+ - { value: "val3", text: "text3" }
1487
+ - ]
1480
1488
  PR: https://github.com/xdan/jodit/pull/577 Thanks @s-renier-taonix-fr
1481
1489
 
1482
1490
  ##### 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.5
4
+ * Version: v3.18.6
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.5
11
+ * Version: v3.18.6
12
12
  * Url: https://xdsoft.net/jodit/
13
13
  * License(s): MIT
14
14
  */
@@ -3468,6 +3468,9 @@ svg.jodit-icon {
3468
3468
  .jodit-toolbar-button_with-trigger_true:hover:not([disabled]) {
3469
3469
  border-color: #dadada;
3470
3470
  }
3471
+ .jodit-toolbar-button_stroke_false svg {
3472
+ stroke: none;
3473
+ }
3471
3474
 
3472
3475
  /*!
3473
3476
  * Jodit Editor (https://xdsoft.net/jodit/)
@@ -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.5
4
+ * Version: v3.18.6
5
5
  * Url: https://xdsoft.net/jodit/
6
6
  * License(s): MIT
7
7
  */
@@ -2780,6 +2780,9 @@ svg.jodit-icon {
2780
2780
  .jodit-toolbar-button_with-trigger_true:hover:not([disabled]) {
2781
2781
  border-color: var(--jd-color-border);
2782
2782
  }
2783
+ .jodit-toolbar-button_stroke_false svg {
2784
+ stroke: none;
2785
+ }
2783
2786
 
2784
2787
  /*!
2785
2788
  * Jodit Editor (https://xdsoft.net/jodit/)
@@ -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.5
4
+ * Version: v3.18.6
5
5
  * Url: https://xdsoft.net/jodit/
6
6
  * License(s): MIT
7
7
  */
@@ -2780,6 +2780,9 @@ svg.jodit-icon {
2780
2780
  .jodit-toolbar-button_with-trigger_true:hover:not([disabled]) {
2781
2781
  border-color: var(--jd-color-border);
2782
2782
  }
2783
+ .jodit-toolbar-button_stroke_false svg {
2784
+ stroke: none;
2785
+ }
2783
2786
 
2784
2787
  /*!
2785
2788
  * Jodit Editor (https://xdsoft.net/jodit/)