jodit 3.13.3 → 3.13.4

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 (94) hide show
  1. package/.idea/workspace.xml +99 -81
  2. package/CHANGELOG.MD +17 -7
  3. package/build/jodit.css +51 -7
  4. package/build/jodit.es2018.css +25 -5
  5. package/build/jodit.es2018.en.css +25 -5
  6. package/build/jodit.es2018.en.js +559 -372
  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 +595 -392
  10. package/build/jodit.es2018.min.css +1 -1
  11. package/build/jodit.es2018.min.js +1 -1
  12. package/build/jodit.js +1188 -910
  13. package/build/jodit.min.css +2 -2
  14. package/build/jodit.min.js +1 -1
  15. package/package.json +6 -3
  16. package/src/core/helpers/utils/css.ts +1 -1
  17. package/src/core/selection/select.ts +4 -0
  18. package/src/core/selection/style/api/get-suit-parent.ts +1 -1
  19. package/src/core/view/view.ts +5 -5
  20. package/src/jodit.ts +32 -38
  21. package/src/langs/README.md +14 -11
  22. package/src/langs/ar.js +2 -1
  23. package/src/langs/cs_cz.js +2 -1
  24. package/src/langs/de.js +2 -1
  25. package/src/langs/es.js +2 -2
  26. package/src/langs/fa.js +2 -1
  27. package/src/langs/fr.js +2 -1
  28. package/src/langs/he.js +2 -1
  29. package/src/langs/hu.js +2 -1
  30. package/src/langs/id.js +2 -1
  31. package/src/langs/it.js +2 -1
  32. package/src/langs/ja.js +2 -1
  33. package/src/langs/ko.js +2 -1
  34. package/src/langs/nl.js +2 -1
  35. package/src/langs/pl.js +2 -1
  36. package/src/langs/pt_br.js +2 -2
  37. package/src/langs/ru.js +2 -1
  38. package/src/langs/tr.js +2 -1
  39. package/src/langs/zh_cn.js +2 -1
  40. package/src/langs/zh_tw.js +2 -1
  41. package/src/modules/file-browser/file-browser.ts +7 -5
  42. package/src/modules/file-browser/styles/file-browser.less +0 -4
  43. package/src/modules/table/table.ts +0 -12
  44. package/src/modules/uploader/README.md +213 -1
  45. package/src/modules/uploader/config.ts +123 -0
  46. package/src/modules/uploader/helpers/build-data.ts +43 -0
  47. package/src/modules/uploader/helpers/data-uri-to-blob.ts +30 -0
  48. package/src/modules/uploader/helpers/index.ts +25 -0
  49. package/src/modules/uploader/helpers/process-old-browser-drag.ts +62 -0
  50. package/src/modules/uploader/helpers/send-files.ts +169 -0
  51. package/src/modules/uploader/helpers/send.ts +103 -0
  52. package/src/modules/uploader/uploader.less +4 -0
  53. package/src/modules/uploader/uploader.ts +107 -568
  54. package/src/modules/widget/file-selector/file-selector.ts +3 -7
  55. package/src/plugins/image/image-properties/image-properties.ts +5 -9
  56. package/src/plugins/index.ts +1 -0
  57. package/src/plugins/keyboard/tab/cases/index.ts +5 -0
  58. package/src/plugins/keyboard/tab/tab.ts +4 -4
  59. package/src/plugins/line-height/README.md +11 -0
  60. package/src/plugins/line-height/config.ts +40 -0
  61. package/src/plugins/line-height/line-height.ts +83 -0
  62. package/src/plugins/ordered-list/ordered-list.ts +7 -3
  63. package/src/plugins/print/preview.less +7 -0
  64. package/src/plugins/print/preview.ts +8 -2
  65. package/src/plugins/table/config.ts +12 -0
  66. package/src/plugins/table/table.less +1 -21
  67. package/src/styles/icons/index.ts +2 -0
  68. package/src/styles/icons/line-height.svg +8 -0
  69. package/src/styles/mixins.less +24 -0
  70. package/src/types/toolbar.d.ts +1 -1
  71. package/src/types/uploader.d.ts +8 -136
  72. package/src/types/view.d.ts +13 -13
  73. package/types/core/view/view.d.ts +4 -4
  74. package/types/jodit.d.ts +9 -11
  75. package/types/modules/table/table.d.ts +0 -10
  76. package/types/modules/uploader/config.d.ts +18 -0
  77. package/types/modules/uploader/helpers/build-data.d.ts +10 -0
  78. package/types/modules/uploader/helpers/data-uri-to-blob.d.ts +12 -0
  79. package/types/modules/uploader/helpers/index.d.ts +16 -0
  80. package/types/modules/uploader/helpers/process-old-browser-drag.d.ts +10 -0
  81. package/types/modules/uploader/helpers/send-files.d.ts +13 -0
  82. package/types/modules/uploader/helpers/send.d.ts +12 -0
  83. package/types/modules/uploader/uploader.d.ts +8 -26
  84. package/types/plugins/index.d.ts +1 -0
  85. package/types/plugins/keyboard/tab/cases/index.d.ts +3 -0
  86. package/types/plugins/keyboard/tab/tab.d.ts +2 -0
  87. package/types/plugins/line-height/config.d.ts +20 -0
  88. package/types/plugins/line-height/line-height.d.ts +19 -0
  89. package/types/plugins/print/preview.d.ts +1 -0
  90. package/types/plugins/table/config.d.ts +10 -0
  91. package/types/styles/icons/index.d.ts +2 -1
  92. package/types/types/toolbar.d.ts +1 -1
  93. package/types/types/uploader.d.ts +8 -136
  94. package/types/types/view.d.ts +13 -13
@@ -12,8 +12,19 @@
12
12
  </component>
13
13
  <component name="ChangeListManager">
14
14
  <list default="true" id="5da7ff7f-03a8-49de-9fbb-8f8640d83b83" name="Default Changelist" comment="">
15
- <change beforePath="$PROJECT_DIR$/src/core/selection/style/api/get-suit-parent.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/core/selection/style/api/get-suit-parent.ts" afterDir="false" />
16
- <change beforePath="$PROJECT_DIR$/src/core/selection/style/commit-style.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/core/selection/style/commit-style.ts" afterDir="false" />
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" 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$/test/tests/acceptance/toolbarTest.js" beforeDir="false" afterPath="$PROJECT_DIR$/test/tests/acceptance/toolbarTest.js" afterDir="false" />
17
28
  </list>
18
29
  <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" />
19
30
  <option name="SHOW_DIALOG" value="false" />
@@ -96,7 +107,7 @@
96
107
  <property name="js.linters.configure.manually.selectedeslint" value="true" />
97
108
  <property name="jsx.switch.disabled" value="true" />
98
109
  <property name="last.edited.regexp" value="Sample Text" />
99
- <property name="last_opened_file_path" value="$PROJECT_DIR$/.github/workflows" />
110
+ <property name="last_opened_file_path" value="$PROJECT_DIR$/src/styles/icons" />
100
111
  <property name="node.js.detected.package.eslint" value="true" />
101
112
  <property name="node.js.detected.package.jscs" value="true" />
102
113
  <property name="node.js.detected.package.standard" value="true" />
@@ -129,11 +140,11 @@
129
140
  </component>
130
141
  <component name="RecentsManager">
131
142
  <key name="CopyFile.RECENT_KEYS">
143
+ <recent name="$PROJECT_DIR$/src/styles/icons" />
132
144
  <recent name="$PROJECT_DIR$/.github/workflows" />
133
145
  <recent name="$PROJECT_DIR$/src/modules/widget/tabs" />
134
146
  <recent name="$PROJECT_DIR$/src/modules/widget/file-selector" />
135
147
  <recent name="$PROJECT_DIR$/src/modules/widget/color-picker" />
136
- <recent name="$PROJECT_DIR$/src/modules/widget" />
137
148
  </key>
138
149
  <key name="MoveFile.RECENT_KEYS">
139
150
  <recent name="$PROJECT_DIR$/src/plugins/keyboard/tab" />
@@ -799,70 +810,19 @@
799
810
  <workItem from="1644247279752" duration="1468000" />
800
811
  <workItem from="1644248796483" duration="176000" />
801
812
  <workItem from="1644249993867" duration="1397000" />
802
- <workItem from="1644263504303" duration="2917000" />
803
- </task>
804
- <task id="LOCAL-00941" summary="Remove `elementsMap` field from IFileBrowser">
805
- <created>1641415529355</created>
806
- <option name="number" value="00941" />
807
- <option name="presentableId" value="LOCAL-00941" />
808
- <option name="project" value="LOCAL" />
809
- <updated>1641415529355</updated>
810
- </task>
811
- <task id="LOCAL-00942" summary="Remove `loadTree`/`loadItems`/`deleteFile` methods from IFileBrowser">
812
- <created>1641418598238</created>
813
- <option name="number" value="00942" />
814
- <option name="presentableId" value="LOCAL-00942" />
815
- <option name="project" value="LOCAL" />
816
- <updated>1641418598238</updated>
817
- </task>
818
- <task id="LOCAL-00943" summary="Remove `loadTree`/`loadItems`/`deleteFile` methods from IFileBrowser">
819
- <created>1641418775628</created>
820
- <option name="number" value="00943" />
821
- <option name="presentableId" value="LOCAL-00943" />
822
- <option name="project" value="LOCAL" />
823
- <updated>1641418775628</updated>
824
- </task>
825
- <task id="LOCAL-00944" summary="Fixed test for https://github.com/xdan/jodit/pull/772">
826
- <created>1641419189809</created>
827
- <option name="number" value="00944" />
828
- <option name="presentableId" value="LOCAL-00944" />
829
- <option name="project" value="LOCAL" />
830
- <updated>1641419189809</updated>
831
- </task>
832
- <task id="LOCAL-00945" summary="Fixed docs">
833
- <created>1641419334419</created>
834
- <option name="number" value="00945" />
835
- <option name="presentableId" value="LOCAL-00945" />
836
- <option name="project" value="LOCAL" />
837
- <updated>1641419334419</updated>
838
- </task>
839
- <task id="LOCAL-00946" summary="Added `monospace` button in format list">
840
- <created>1641421305714</created>
841
- <option name="number" value="00946" />
842
- <option name="presentableId" value="LOCAL-00946" />
843
- <option name="project" value="LOCAL" />
844
- <updated>1641421305714</updated>
845
- </task>
846
- <task id="LOCAL-00947" summary="Added `monospace` button in format list&#10;Issue: https://github.com/xdan/jodit/issues/767">
847
- <created>1641421425353</created>
848
- <option name="number" value="00947" />
849
- <option name="presentableId" value="LOCAL-00947" />
850
- <option name="project" value="LOCAL" />
851
- <updated>1641421425353</updated>
852
- </task>
853
- <task id="LOCAL-00948" summary="Fixed docs">
854
- <created>1641421576437</created>
855
- <option name="number" value="00948" />
856
- <option name="presentableId" value="LOCAL-00948" />
857
- <option name="project" value="LOCAL" />
858
- <updated>1641421576437</updated>
859
- </task>
860
- <task id="LOCAL-00949" summary="Fixed docs">
861
- <created>1641421630129</created>
862
- <option name="number" value="00949" />
863
- <option name="presentableId" value="LOCAL-00949" />
864
- <option name="project" value="LOCAL" />
865
- <updated>1641421630129</updated>
813
+ <workItem from="1644263504303" duration="5576000" />
814
+ <workItem from="1644318416285" duration="913000" />
815
+ <workItem from="1644336450297" duration="2977000" />
816
+ <workItem from="1644339831078" duration="1001000" />
817
+ <workItem from="1644341270394" duration="1986000" />
818
+ <workItem from="1644343754362" duration="440000" />
819
+ <workItem from="1644344235711" duration="1061000" />
820
+ <workItem from="1644346088967" duration="2704000" />
821
+ <workItem from="1644419244508" duration="1738000" />
822
+ <workItem from="1644501269774" duration="1377000" />
823
+ <workItem from="1644503408597" duration="803000" />
824
+ <workItem from="1644504393226" duration="345000" />
825
+ <workItem from="1644515490368" duration="6410000" />
866
826
  </task>
867
827
  <task id="LOCAL-00950" summary="Fixed docs">
868
828
  <created>1641421665395</created>
@@ -1144,7 +1104,70 @@
1144
1104
  <option name="project" value="LOCAL" />
1145
1105
  <updated>1644265470862</updated>
1146
1106
  </task>
1147
- <option name="localTasksCounter" value="990" />
1107
+ <task id="LOCAL-00990" summary="Fixed Not maintaining styles set when switching format blocks #773&#10;Issue: https://github.com/xdan/jodit/issues/773">
1108
+ <created>1644266525443</created>
1109
+ <option name="number" value="00990" />
1110
+ <option name="presentableId" value="LOCAL-00990" />
1111
+ <option name="project" value="LOCAL" />
1112
+ <updated>1644266525443</updated>
1113
+ </task>
1114
+ <task id="LOCAL-00991" summary="New line-height plugin">
1115
+ <created>1644520354801</created>
1116
+ <option name="number" value="00991" />
1117
+ <option name="presentableId" value="LOCAL-00991" />
1118
+ <option name="project" value="LOCAL" />
1119
+ <updated>1644520354801</updated>
1120
+ </task>
1121
+ <task id="LOCAL-00992" summary="Fixed Previewing data not showing table content #780&#10;Issue: https://github.com/xdan/jodit/issues/780">
1122
+ <created>1644520474705</created>
1123
+ <option name="number" value="00992" />
1124
+ <option name="presentableId" value="LOCAL-00992" />
1125
+ <option name="project" value="LOCAL" />
1126
+ <updated>1644520474705</updated>
1127
+ </task>
1128
+ <task id="LOCAL-00993" summary="Refactoring uploader module">
1129
+ <created>1644520512387</created>
1130
+ <option name="number" value="00993" />
1131
+ <option name="presentableId" value="LOCAL-00993" />
1132
+ <option name="project" value="LOCAL" />
1133
+ <updated>1644520512387</updated>
1134
+ </task>
1135
+ <task id="LOCAL-00994" summary="Restore translate utils">
1136
+ <created>1644521368525</created>
1137
+ <option name="number" value="00994" />
1138
+ <option name="presentableId" value="LOCAL-00994" />
1139
+ <option name="project" value="LOCAL" />
1140
+ <updated>1644521368525</updated>
1141
+ </task>
1142
+ <task id="LOCAL-00995" summary="Restore translate utils">
1143
+ <created>1644521383938</created>
1144
+ <option name="number" value="00995" />
1145
+ <option name="presentableId" value="LOCAL-00995" />
1146
+ <option name="project" value="LOCAL" />
1147
+ <updated>1644521383938</updated>
1148
+ </task>
1149
+ <task id="LOCAL-00996" summary="Restore translate utils">
1150
+ <created>1644521549466</created>
1151
+ <option name="number" value="00996" />
1152
+ <option name="presentableId" value="LOCAL-00996" />
1153
+ <option name="project" value="LOCAL" />
1154
+ <updated>1644521549466</updated>
1155
+ </task>
1156
+ <task id="LOCAL-00997" summary="Restore translate utils">
1157
+ <created>1644521693868</created>
1158
+ <option name="number" value="00997" />
1159
+ <option name="presentableId" value="LOCAL-00997" />
1160
+ <option name="project" value="LOCAL" />
1161
+ <updated>1644521693868</updated>
1162
+ </task>
1163
+ <task id="LOCAL-00998" summary="Added new translation">
1164
+ <created>1644521801804</created>
1165
+ <option name="number" value="00998" />
1166
+ <option name="presentableId" value="LOCAL-00998" />
1167
+ <option name="project" value="LOCAL" />
1168
+ <updated>1644521801804</updated>
1169
+ </task>
1170
+ <option name="localTasksCounter" value="999" />
1148
1171
  <servers />
1149
1172
  </component>
1150
1173
  <component name="TypeScriptGeneratedFilesManager">
@@ -1284,12 +1307,6 @@
1284
1307
  </component>
1285
1308
  <component name="VcsManagerConfiguration">
1286
1309
  <option name="CHECK_CODE_SMELLS_BEFORE_PROJECT_COMMIT" value="false" />
1287
- <MESSAGE value="Added `memorizeChoiceWhenPasteFragment` option" />
1288
- <MESSAGE value="Added TODO" />
1289
- <MESSAGE value="Added test for memorizeChoiceWhenPasteFragment" />
1290
- <MESSAGE value="Fixed work in ie11" />
1291
- <MESSAGE value="Added new option `safeMode`" />
1292
- <MESSAGE value="Removed relative paths" />
1293
1310
  <MESSAGE value="Replace relative paths to absolute" />
1294
1311
  <MESSAGE value="Fixed docs" />
1295
1312
  <MESSAGE value="Added new alias in webpack" />
@@ -1309,16 +1326,17 @@
1309
1326
  <MESSAGE value="Added static `Jodit.isJoditAssigned` method&#10;Issue: https://github.com/xdan/jodit/issues/778" />
1310
1327
  <MESSAGE value="- Fixed a bug when switching between source and wysiwyg mode, the FORM tag was wrapped in P" />
1311
1328
  <MESSAGE value="Added test for issue: Not maintaining styles set when switching format blocks #773&#10;Issue: https://github.com/xdan/jodit/issues/773" />
1312
- <option name="LAST_COMMIT_MESSAGE" value="Added test for issue: Not maintaining styles set when switching format blocks #773&#10;Issue: https://github.com/xdan/jodit/issues/773" />
1329
+ <MESSAGE value="Fixed Not maintaining styles set when switching format blocks #773&#10;Issue: https://github.com/xdan/jodit/issues/773" />
1330
+ <MESSAGE value="New line-height plugin" />
1331
+ <MESSAGE value="Fixed Previewing data not showing table content #780&#10;Issue: https://github.com/xdan/jodit/issues/780" />
1332
+ <MESSAGE value="Refactoring uploader module" />
1333
+ <MESSAGE value="Restore translate utils" />
1334
+ <MESSAGE value="Added new translation" />
1335
+ <option name="LAST_COMMIT_MESSAGE" value="Added new translation" />
1313
1336
  </component>
1314
1337
  <component name="XDebuggerManager">
1315
1338
  <breakpoint-manager>
1316
1339
  <breakpoints>
1317
- <line-breakpoint enabled="true" type="javascript">
1318
- <url>file://$PROJECT_DIR$/src/types/uploader.d.ts</url>
1319
- <line>14</line>
1320
- <option name="timeStamp" value="9" />
1321
- </line-breakpoint>
1322
1340
  <line-breakpoint enabled="true" type="javascript">
1323
1341
  <url>file://$PROJECT_DIR$/test/tests/acceptance/plugins/size.js</url>
1324
1342
  <line>305</line>
package/CHANGELOG.MD CHANGED
@@ -9,6 +9,16 @@
9
9
  > - :house: [Internal]
10
10
  > - :nail_care: [Polish]
11
11
 
12
+ ## 3.13.4
13
+
14
+ #### :rocket: New Feature
15
+
16
+ - Plugin for setting line spacing
17
+
18
+ #### :bug: Bug Fix
19
+
20
+ - [Previewing data not showing table content #780](https://github.com/xdan/jodit/issues/780)
21
+
12
22
  ## 3.13.2
13
23
 
14
24
  #### :rocket: New Feature
@@ -28,8 +38,8 @@ console.log(Jodit.isJoditAssigned(area)); // false
28
38
 
29
39
  #### :bug: Bug Fix
30
40
 
31
- - Fixed a bug when switching between source and wysiwyg mode, the FORM tag was wrapped in P
32
- - [Not maintaining styles set when switching format blocks #773](https://github.com/xdan/jodit/issues/773)
41
+ - Fixed a bug when switching between source and wysiwyg mode, the FORM tag was wrapped in P
42
+ - [Not maintaining styles set when switching format blocks #773](https://github.com/xdan/jodit/issues/773)
33
43
 
34
44
  ## 3.13.1
35
45
 
@@ -1058,11 +1068,11 @@ Related with https://github.com/xdan/jodit/issues/574. In some cases need to lim
1058
1068
  - @property {IUIOption[]} link.selectOptionsClassName=[] The list of the option for the select (to use with
1059
1069
  modeClassName="select")
1060
1070
  - ex: [
1061
- - { value: "", text: "" },
1062
- - { value: "val1", text: "text1" },
1063
- - { value: "val2", text: "text2" },
1064
- - { value: "val3", text: "text3" }
1065
- - ]
1071
+ - { value: "", text: "" },
1072
+ - { value: "val1", text: "text1" },
1073
+ - { value: "val2", text: "text2" },
1074
+ - { value: "val3", text: "text3" }
1075
+ - ]
1066
1076
  PR: https://github.com/xdan/jodit/pull/577 Thanks @s-renier-taonix-fr
1067
1077
 
1068
1078
  ##### 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.13.3
4
+ * Version: v3.13.4
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.13.3
11
+ * Version: v3.13.4
12
12
  * Url: https://xdsoft.net/jodit/
13
13
  * License(s): MIT
14
14
  */
@@ -3858,9 +3858,6 @@ svg.jodit-icon {
3858
3858
  opacity: 1;
3859
3859
  visibility: visible;
3860
3860
  }
3861
- .jodit_draghover {
3862
- background-color: #ecebe9;
3863
- }
3864
3861
  .jodit-dialog .jodit-dialog__header-title.jodit-filebrowser__title-box {
3865
3862
  display: -webkit-box;
3866
3863
  display: -ms-flexbox;
@@ -4672,6 +4669,9 @@ a + .jodit-filebrowser-tree__source-title {
4672
4669
  max-width: 100%;
4673
4670
  }
4674
4671
  }
4672
+ .jodit_drag_hover {
4673
+ background-color: #ecebe9;
4674
+ }
4675
4675
 
4676
4676
  /*!
4677
4677
  * Jodit Editor (https://xdsoft.net/jodit/)
@@ -5577,11 +5577,20 @@ html.jodit_fullsize-box_true {
5577
5577
  -ms-user-select: none;
5578
5578
  user-select: none;
5579
5579
  }
5580
- .jodit-wysiwyg table tr th,
5580
+ .jodit-wysiwyg table tr th {
5581
+ min-width: 2em;
5582
+ padding: 0.4em;
5583
+ border: 1px solid #dadada;
5584
+ -webkit-user-select: text;
5585
+ -moz-user-select: text;
5586
+ -ms-user-select: text;
5587
+ user-select: text;
5588
+ vertical-align: middle;
5589
+ }
5581
5590
  .jodit-wysiwyg table tr td {
5582
5591
  min-width: 2em;
5583
5592
  padding: 0.4em;
5584
- border: 1px solid #bfbfbf;
5593
+ border: 1px solid #dadada;
5585
5594
  -webkit-user-select: text;
5586
5595
  -moz-user-select: text;
5587
5596
  -ms-user-select: text;
@@ -5682,6 +5691,41 @@ html.jodit_fullsize-box_true {
5682
5691
  opacity: 1;
5683
5692
  }
5684
5693
 
5694
+ .jodit__preview-box table {
5695
+ max-width: 100%;
5696
+ border: none;
5697
+ margin-top: 1em;
5698
+ margin-bottom: 1em;
5699
+ border-collapse: collapse;
5700
+ empty-cells: show;
5701
+ }
5702
+ .jodit__preview-box table tr {
5703
+ -webkit-user-select: none;
5704
+ -moz-user-select: none;
5705
+ -ms-user-select: none;
5706
+ user-select: none;
5707
+ }
5708
+ .jodit__preview-box table tr th {
5709
+ min-width: 2em;
5710
+ padding: 0.4em;
5711
+ border: 1px solid #dadada;
5712
+ -webkit-user-select: text;
5713
+ -moz-user-select: text;
5714
+ -ms-user-select: text;
5715
+ user-select: text;
5716
+ vertical-align: middle;
5717
+ }
5718
+ .jodit__preview-box table tr td {
5719
+ min-width: 2em;
5720
+ padding: 0.4em;
5721
+ border: 1px solid #dadada;
5722
+ -webkit-user-select: text;
5723
+ -moz-user-select: text;
5724
+ -ms-user-select: text;
5725
+ user-select: text;
5726
+ vertical-align: middle;
5727
+ }
5728
+
5685
5729
  /*!
5686
5730
  * Jodit Editor (https://xdsoft.net/jodit/)
5687
5731
  * Released under MIT see LICENSE.txt in the project root for license information.
@@ -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.13.3
4
+ * Version: v3.13.4
5
5
  * Url: https://xdsoft.net/jodit/
6
6
  * License(s): MIT
7
7
  */
@@ -3147,9 +3147,6 @@ svg.jodit-icon {
3147
3147
  opacity: 1;
3148
3148
  visibility: visible;
3149
3149
  }
3150
- .jodit_draghover {
3151
- background-color: var(--jd-color-background-button-hover);
3152
- }
3153
3150
  .jodit-dialog .jodit-dialog__header-title.jodit-filebrowser__title-box {
3154
3151
  display: flex;
3155
3152
  align-items: center;
@@ -3825,6 +3822,9 @@ a + .jodit-filebrowser-tree__source-title {
3825
3822
  max-width: 100%;
3826
3823
  }
3827
3824
  }
3825
+ .jodit_drag_hover {
3826
+ background-color: var(--jd-color-background-button-hover);
3827
+ }
3828
3828
 
3829
3829
  /*!
3830
3830
  * Jodit Editor (https://xdsoft.net/jodit/)
@@ -4646,7 +4646,7 @@ html.jodit_fullsize-box_true {
4646
4646
  .jodit-wysiwyg table tr td {
4647
4647
  min-width: 2em;
4648
4648
  padding: 0.4em;
4649
- border: 1px solid #bfbfbf;
4649
+ border: 1px solid var(--jd-color-border);
4650
4650
  user-select: text;
4651
4651
  vertical-align: middle;
4652
4652
  }
@@ -4732,6 +4732,26 @@ html.jodit_fullsize-box_true {
4732
4732
  opacity: 1;
4733
4733
  }
4734
4734
 
4735
+ .jodit__preview-box table {
4736
+ max-width: 100%;
4737
+ border: none;
4738
+ margin-top: 1em;
4739
+ margin-bottom: 1em;
4740
+ border-collapse: collapse;
4741
+ empty-cells: show;
4742
+ }
4743
+ .jodit__preview-box table tr {
4744
+ user-select: none;
4745
+ }
4746
+ .jodit__preview-box table tr th,
4747
+ .jodit__preview-box table tr td {
4748
+ min-width: 2em;
4749
+ padding: 0.4em;
4750
+ border: 1px solid var(--jd-color-border);
4751
+ user-select: text;
4752
+ vertical-align: middle;
4753
+ }
4754
+
4735
4755
  /*!
4736
4756
  * Jodit Editor (https://xdsoft.net/jodit/)
4737
4757
  * Released under MIT see LICENSE.txt in the project root for license information.
@@ -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.13.3
4
+ * Version: v3.13.4
5
5
  * Url: https://xdsoft.net/jodit/
6
6
  * License(s): MIT
7
7
  */
@@ -3147,9 +3147,6 @@ svg.jodit-icon {
3147
3147
  opacity: 1;
3148
3148
  visibility: visible;
3149
3149
  }
3150
- .jodit_draghover {
3151
- background-color: var(--jd-color-background-button-hover);
3152
- }
3153
3150
  .jodit-dialog .jodit-dialog__header-title.jodit-filebrowser__title-box {
3154
3151
  display: flex;
3155
3152
  align-items: center;
@@ -3825,6 +3822,9 @@ a + .jodit-filebrowser-tree__source-title {
3825
3822
  max-width: 100%;
3826
3823
  }
3827
3824
  }
3825
+ .jodit_drag_hover {
3826
+ background-color: var(--jd-color-background-button-hover);
3827
+ }
3828
3828
 
3829
3829
  /*!
3830
3830
  * Jodit Editor (https://xdsoft.net/jodit/)
@@ -4646,7 +4646,7 @@ html.jodit_fullsize-box_true {
4646
4646
  .jodit-wysiwyg table tr td {
4647
4647
  min-width: 2em;
4648
4648
  padding: 0.4em;
4649
- border: 1px solid #bfbfbf;
4649
+ border: 1px solid var(--jd-color-border);
4650
4650
  user-select: text;
4651
4651
  vertical-align: middle;
4652
4652
  }
@@ -4732,6 +4732,26 @@ html.jodit_fullsize-box_true {
4732
4732
  opacity: 1;
4733
4733
  }
4734
4734
 
4735
+ .jodit__preview-box table {
4736
+ max-width: 100%;
4737
+ border: none;
4738
+ margin-top: 1em;
4739
+ margin-bottom: 1em;
4740
+ border-collapse: collapse;
4741
+ empty-cells: show;
4742
+ }
4743
+ .jodit__preview-box table tr {
4744
+ user-select: none;
4745
+ }
4746
+ .jodit__preview-box table tr th,
4747
+ .jodit__preview-box table tr td {
4748
+ min-width: 2em;
4749
+ padding: 0.4em;
4750
+ border: 1px solid var(--jd-color-border);
4751
+ user-select: text;
4752
+ vertical-align: middle;
4753
+ }
4754
+
4735
4755
  /*!
4736
4756
  * Jodit Editor (https://xdsoft.net/jodit/)
4737
4757
  * Released under MIT see LICENSE.txt in the project root for license information.