@syncfusion/ej2-angular-documenteditor 20.1.60 → 20.2.36

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 (203) hide show
  1. package/esm2020/public_api.mjs +3 -0
  2. package/esm2020/src/document-editor/documenteditor-all.module.mjs +113 -0
  3. package/esm2020/src/document-editor/documenteditor.component.mjs +262 -0
  4. package/esm2020/src/document-editor/documenteditor.module.mjs +25 -0
  5. package/esm2020/src/document-editor-container/documenteditorcontainer-all.module.mjs +29 -0
  6. package/esm2020/src/document-editor-container/documenteditorcontainer.component.mjs +66 -0
  7. package/esm2020/src/document-editor-container/documenteditorcontainer.module.mjs +25 -0
  8. package/esm2020/src/index.mjs +8 -0
  9. package/esm2020/syncfusion-ej2-angular-documenteditor.mjs +5 -0
  10. package/fesm2015/syncfusion-ej2-angular-documenteditor.mjs +506 -0
  11. package/fesm2015/syncfusion-ej2-angular-documenteditor.mjs.map +1 -0
  12. package/fesm2020/syncfusion-ej2-angular-documenteditor.mjs +506 -0
  13. package/fesm2020/syncfusion-ej2-angular-documenteditor.mjs.map +1 -0
  14. package/package.json +29 -15
  15. package/schematics/utils/lib-details.ts +2 -2
  16. package/src/document-editor/documenteditor-all.module.d.ts +6 -0
  17. package/src/document-editor/documenteditor.component.d.ts +3 -0
  18. package/src/document-editor/documenteditor.module.d.ts +6 -0
  19. package/src/document-editor-container/documenteditorcontainer-all.module.d.ts +6 -0
  20. package/src/document-editor-container/documenteditorcontainer.component.d.ts +3 -0
  21. package/src/document-editor-container/documenteditorcontainer.module.d.ts +6 -0
  22. package/styles/bootstrap-dark.css +215 -105
  23. package/styles/bootstrap.css +214 -104
  24. package/styles/bootstrap4.css +216 -106
  25. package/styles/bootstrap5-dark.css +220 -110
  26. package/styles/bootstrap5.css +220 -110
  27. package/styles/document-editor/_all.scss +3 -0
  28. package/styles/document-editor/_bootstrap-dark-definition.scss +544 -0
  29. package/styles/document-editor/_bootstrap-definition.scss +543 -0
  30. package/styles/document-editor/_bootstrap4-definition.scss +556 -0
  31. package/styles/document-editor/_bootstrap5-dark-definition.scss +1 -0
  32. package/styles/document-editor/_bootstrap5-definition.scss +556 -0
  33. package/styles/document-editor/_fabric-dark-definition.scss +546 -0
  34. package/styles/document-editor/_fabric-definition.scss +545 -0
  35. package/styles/document-editor/_fluent-dark-definition.scss +1 -0
  36. package/styles/document-editor/_fluent-definition.scss +564 -0
  37. package/styles/document-editor/_fusionnew-definition.scss +556 -0
  38. package/styles/document-editor/_highcontrast-definition.scss +545 -0
  39. package/styles/document-editor/_highcontrast-light-definition.scss +2988 -0
  40. package/styles/document-editor/_layout.scss +217 -0
  41. package/styles/document-editor/_material-dark-definition.scss +561 -0
  42. package/styles/document-editor/_material-definition.scss +563 -0
  43. package/styles/document-editor/_material3-definition.scss +556 -0
  44. package/styles/document-editor/_tailwind-dark-definition.scss +1 -0
  45. package/styles/document-editor/_tailwind-definition.scss +555 -0
  46. package/styles/document-editor/_theme.scss +3395 -0
  47. package/styles/document-editor/bootstrap-dark.css +211 -104
  48. package/styles/document-editor/bootstrap-dark.scss +4 -1
  49. package/styles/document-editor/bootstrap.css +210 -103
  50. package/styles/document-editor/bootstrap.scss +4 -1
  51. package/styles/document-editor/bootstrap4.css +211 -104
  52. package/styles/document-editor/bootstrap4.scss +4 -1
  53. package/styles/document-editor/bootstrap5-dark.css +215 -108
  54. package/styles/document-editor/bootstrap5-dark.scss +4 -1
  55. package/styles/document-editor/bootstrap5.css +215 -108
  56. package/styles/document-editor/bootstrap5.scss +4 -1
  57. package/styles/document-editor/fabric-dark.css +211 -104
  58. package/styles/document-editor/fabric-dark.scss +4 -1
  59. package/styles/document-editor/fabric.css +211 -104
  60. package/styles/document-editor/fabric.scss +4 -1
  61. package/styles/document-editor/fluent-dark.css +218 -110
  62. package/styles/document-editor/fluent-dark.scss +4 -1
  63. package/styles/document-editor/fluent.css +218 -110
  64. package/styles/document-editor/fluent.scss +4 -1
  65. package/styles/document-editor/highcontrast-light.css +74 -46
  66. package/styles/document-editor/highcontrast-light.scss +4 -1
  67. package/styles/document-editor/highcontrast.css +211 -104
  68. package/styles/document-editor/highcontrast.scss +4 -1
  69. package/styles/document-editor/icons/_bootstrap-dark.scss +609 -0
  70. package/styles/document-editor/icons/_bootstrap.scss +609 -0
  71. package/styles/document-editor/icons/_bootstrap4.scss +592 -0
  72. package/styles/document-editor/icons/_bootstrap5-dark.scss +1 -0
  73. package/styles/document-editor/icons/_bootstrap5.scss +642 -0
  74. package/styles/document-editor/icons/_fabric-dark.scss +608 -0
  75. package/styles/document-editor/icons/_fabric.scss +608 -0
  76. package/styles/document-editor/icons/_fluent-dark.scss +1 -0
  77. package/styles/document-editor/icons/_fluent.scss +640 -0
  78. package/styles/document-editor/icons/_fusionnew.scss +642 -0
  79. package/styles/document-editor/icons/_highcontrast-light.scss +612 -0
  80. package/styles/document-editor/icons/_highcontrast.scss +607 -0
  81. package/styles/document-editor/icons/_material-dark.scss +600 -0
  82. package/styles/document-editor/icons/_material.scss +600 -0
  83. package/styles/document-editor/icons/_material3.scss +642 -0
  84. package/styles/document-editor/icons/_tailwind-dark.scss +642 -0
  85. package/styles/document-editor/icons/_tailwind.scss +642 -0
  86. package/styles/document-editor/implementation/dailogs/_paragraph-dailogs.scss +171 -0
  87. package/styles/document-editor/material-dark.css +204 -97
  88. package/styles/document-editor/material-dark.scss +4 -1
  89. package/styles/document-editor/material.css +202 -95
  90. package/styles/document-editor/material.scss +4 -1
  91. package/styles/document-editor/tailwind-dark.css +221 -127
  92. package/styles/document-editor/tailwind-dark.scss +4 -1
  93. package/styles/document-editor/tailwind.css +221 -127
  94. package/styles/document-editor/tailwind.scss +4 -1
  95. package/styles/document-editor-container/_all.scss +2 -0
  96. package/styles/document-editor-container/_bootstrap-dark-definition.scss +125 -0
  97. package/styles/document-editor-container/_bootstrap-definition.scss +125 -0
  98. package/styles/document-editor-container/_bootstrap4-definition.scss +141 -0
  99. package/styles/document-editor-container/_bootstrap5-dark-definition.scss +1 -0
  100. package/styles/document-editor-container/_bootstrap5-definition.scss +152 -0
  101. package/styles/document-editor-container/_definition.scss +10 -0
  102. package/styles/document-editor-container/_fabric-dark-definition.scss +130 -0
  103. package/styles/document-editor-container/_fabric-definition.scss +127 -0
  104. package/styles/document-editor-container/_fluent-dark-definition.scss +1 -0
  105. package/styles/document-editor-container/_fluent-definition.scss +153 -0
  106. package/styles/document-editor-container/_fusionnew-definition.scss +152 -0
  107. package/styles/document-editor-container/_highcontrast-definition.scss +128 -0
  108. package/styles/document-editor-container/_highcontrast-light-definition.scss +131 -0
  109. package/styles/document-editor-container/_layout.scss +88 -0
  110. package/styles/document-editor-container/_material-dark-definition.scss +129 -0
  111. package/styles/document-editor-container/_material-definition.scss +128 -0
  112. package/styles/document-editor-container/_material3-definition.scss +152 -0
  113. package/styles/document-editor-container/_tailwind-dark-definition.scss +1 -0
  114. package/styles/document-editor-container/_tailwind-definition.scss +146 -0
  115. package/styles/document-editor-container/_theme.scss +2004 -0
  116. package/styles/document-editor-container/bootstrap-dark.css +4 -1
  117. package/styles/document-editor-container/bootstrap-dark.scss +5 -1
  118. package/styles/document-editor-container/bootstrap.css +4 -1
  119. package/styles/document-editor-container/bootstrap.scss +5 -1
  120. package/styles/document-editor-container/bootstrap4.css +5 -2
  121. package/styles/document-editor-container/bootstrap4.scss +5 -1
  122. package/styles/document-editor-container/bootstrap5-dark.css +5 -2
  123. package/styles/document-editor-container/bootstrap5-dark.scss +5 -1
  124. package/styles/document-editor-container/bootstrap5.css +5 -2
  125. package/styles/document-editor-container/bootstrap5.scss +5 -1
  126. package/styles/document-editor-container/fabric-dark.css +4 -1
  127. package/styles/document-editor-container/fabric-dark.scss +5 -1
  128. package/styles/document-editor-container/fabric.css +4 -1
  129. package/styles/document-editor-container/fabric.scss +5 -1
  130. package/styles/document-editor-container/fluent-dark.css +5 -2
  131. package/styles/document-editor-container/fluent-dark.scss +5 -1
  132. package/styles/document-editor-container/fluent.css +5 -2
  133. package/styles/document-editor-container/fluent.scss +5 -1
  134. package/styles/document-editor-container/highcontrast-light.css +22 -19
  135. package/styles/document-editor-container/highcontrast-light.scss +5 -1
  136. package/styles/document-editor-container/highcontrast.css +4 -1
  137. package/styles/document-editor-container/highcontrast.scss +5 -1
  138. package/styles/document-editor-container/icons/_bootstrap-dark.scss +397 -0
  139. package/styles/document-editor-container/icons/_bootstrap.scss +397 -0
  140. package/styles/document-editor-container/icons/_bootstrap4.scss +397 -0
  141. package/styles/document-editor-container/icons/_bootstrap5-dark.scss +1 -0
  142. package/styles/document-editor-container/icons/_bootstrap5.scss +423 -0
  143. package/styles/document-editor-container/icons/_fabric-dark.scss +397 -0
  144. package/styles/document-editor-container/icons/_fabric.scss +397 -0
  145. package/styles/document-editor-container/icons/_fluent-dark.scss +1 -0
  146. package/styles/document-editor-container/icons/_fluent.scss +423 -0
  147. package/styles/document-editor-container/icons/_fusionnew.scss +423 -0
  148. package/styles/document-editor-container/icons/_highcontrast-light.scss +397 -0
  149. package/styles/document-editor-container/icons/_highcontrast.scss +397 -0
  150. package/styles/document-editor-container/icons/_material-dark.scss +400 -0
  151. package/styles/document-editor-container/icons/_material.scss +400 -0
  152. package/styles/document-editor-container/icons/_material3.scss +423 -0
  153. package/styles/document-editor-container/icons/_tailwind-dark.scss +423 -0
  154. package/styles/document-editor-container/icons/_tailwind.scss +423 -0
  155. package/styles/document-editor-container/material-dark.css +4 -1
  156. package/styles/document-editor-container/material-dark.scss +5 -1
  157. package/styles/document-editor-container/material.css +4 -1
  158. package/styles/document-editor-container/material.scss +5 -1
  159. package/styles/document-editor-container/tailwind-dark.css +5 -3
  160. package/styles/document-editor-container/tailwind-dark.scss +5 -1
  161. package/styles/document-editor-container/tailwind.css +5 -3
  162. package/styles/document-editor-container/tailwind.scss +5 -1
  163. package/styles/fabric-dark.css +215 -105
  164. package/styles/fabric.css +215 -105
  165. package/styles/fluent-dark.css +223 -112
  166. package/styles/fluent.css +223 -112
  167. package/styles/highcontrast-light.css +78 -47
  168. package/styles/highcontrast.css +215 -105
  169. package/styles/material-dark.css +208 -98
  170. package/styles/material.css +206 -96
  171. package/styles/tailwind-dark.css +226 -130
  172. package/styles/tailwind.css +226 -130
  173. package/syncfusion-ej2-angular-documenteditor.d.ts +5 -0
  174. package/@syncfusion/ej2-angular-documenteditor.es5.js +0 -574
  175. package/@syncfusion/ej2-angular-documenteditor.es5.js.map +0 -1
  176. package/@syncfusion/ej2-angular-documenteditor.js +0 -544
  177. package/@syncfusion/ej2-angular-documenteditor.js.map +0 -1
  178. package/CHANGELOG.md +0 -3071
  179. package/dist/ej2-angular-documenteditor.umd.js +0 -838
  180. package/dist/ej2-angular-documenteditor.umd.js.map +0 -1
  181. package/dist/ej2-angular-documenteditor.umd.min.js +0 -11
  182. package/dist/ej2-angular-documenteditor.umd.min.js.map +0 -1
  183. package/ej2-angular-documenteditor.d.ts +0 -6
  184. package/ej2-angular-documenteditor.metadata.json +0 -1
  185. package/postinstall/tagchange.js +0 -18
  186. package/schematics/collection.json +0 -15
  187. package/schematics/generators/documenteditorcontainer-default/index.d.ts +0 -3
  188. package/schematics/generators/documenteditorcontainer-default/index.js +0 -8
  189. package/schematics/generators/documenteditorcontainer-default/sample-details.d.ts +0 -5
  190. package/schematics/generators/documenteditorcontainer-default/sample-details.js +0 -7
  191. package/schematics/generators/documenteditorcontainer-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -3
  192. package/schematics/generators/documenteditorcontainer-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -8
  193. package/schematics/generators/documenteditorcontainer-default/schema.d.ts +0 -3
  194. package/schematics/generators/documenteditorcontainer-default/schema.js +0 -2
  195. package/schematics/generators/documenteditorcontainer-default/schema.json +0 -124
  196. package/schematics/ng-add/index.d.ts +0 -3
  197. package/schematics/ng-add/index.js +0 -9
  198. package/schematics/ng-add/schema.d.ts +0 -13
  199. package/schematics/ng-add/schema.js +0 -2
  200. package/schematics/ng-add/schema.json +0 -34
  201. package/schematics/tsconfig.json +0 -25
  202. package/schematics/utils/lib-details.d.ts +0 -4
  203. package/schematics/utils/lib-details.js +0 -6
@@ -1 +1,4 @@
1
- @import 'ej2-documenteditor/styles/document-editor/bootstrap5.scss';
1
+ @import 'ej2-base/styles/bootstrap5-definition.scss';
2
+ @import 'bootstrap5-definition.scss';
3
+ @import 'icons/bootstrap5.scss';
4
+ @import 'all.scss';
@@ -150,25 +150,23 @@
150
150
 
151
151
  .e-de-table-border-setting {
152
152
  border: 1px solid #ddd;
153
- height: 48px;
153
+ height: 40px;
154
154
  left: 5px;
155
155
  position: relative;
156
156
  top: 5px;
157
- width: 48px;
157
+ width: 40px;
158
158
  }
159
159
 
160
160
  .e-de-table-border-setting-genral {
161
161
  border: 1px solid #ddd;
162
- display: inline-block;
163
- height: 60px;
164
- width: 60px;
162
+ height: 52px;
163
+ width: 52px;
165
164
  }
166
165
 
167
166
  .e-de-table-border-preview-genral {
168
167
  border: 1px solid #ddd;
169
- display: inline-block;
170
- height: 25px;
171
- width: 25px;
168
+ height: 24px;
169
+ width: 24px;
172
170
  }
173
171
 
174
172
  .e-de-table-border-inside-setting:hover {
@@ -194,13 +192,13 @@
194
192
 
195
193
  .e-de-table-border-none-setting::before {
196
194
  content: "\e507";
197
- font-size: 46px;
195
+ font-size: 38px;
198
196
  position: absolute;
199
197
  }
200
198
 
201
199
  .e-de-table-border-box-setting::before {
202
200
  content: "\e509";
203
- font-size: 42px;
201
+ font-size: 34px;
204
202
  left: 2px;
205
203
  position: absolute;
206
204
  top: 2px;
@@ -208,7 +206,7 @@
208
206
 
209
207
  .e-de-table-border-all-setting::before {
210
208
  content: "\e511";
211
- font-size: 42px;
209
+ font-size: 34px;
212
210
  left: 2px;
213
211
  position: absolute;
214
212
  top: 2px;
@@ -216,7 +214,37 @@
216
214
 
217
215
  .e-de-table-border-custom-setting::before {
218
216
  content: "\e516";
219
- font-size: 42px;
217
+ font-size: 34px;
218
+ left: 2px;
219
+ position: absolute;
220
+ top: 2px;
221
+ }
222
+
223
+ .e-de-para-border-none-setting::before {
224
+ content: "\e93f";
225
+ font-size: 38px;
226
+ position: absolute;
227
+ }
228
+
229
+ .e-de-para-border-box-setting::before {
230
+ content: "\e93b";
231
+ font-size: 34px;
232
+ left: 2px;
233
+ position: absolute;
234
+ top: 2px;
235
+ }
236
+
237
+ .e-de-para-border-shadow-setting::before {
238
+ content: "\e93c";
239
+ font-size: 34px;
240
+ left: 2px;
241
+ position: absolute;
242
+ top: 2px;
243
+ }
244
+
245
+ .e-de-para-border-custom-setting::before {
246
+ content: "\e939";
247
+ font-size: 34px;
220
248
  left: 2px;
221
249
  position: absolute;
222
250
  top: 2px;
@@ -225,65 +253,65 @@
225
253
  .e-de-table-border-toptop-alignment::before {
226
254
  content: "\e281";
227
255
  font-size: 16px;
228
- left: 4px;
256
+ left: 5px;
229
257
  position: absolute;
230
- top: -5px;
258
+ top: -2px;
231
259
  }
232
260
 
233
261
  .e-de-table-border-topcenter-alignment::before {
234
262
  content: "\e276";
235
263
  font-size: 16px;
236
- left: 4px;
264
+ left: 5px;
237
265
  position: absolute;
238
- top: -5px;
266
+ top: -2px;
239
267
  }
240
268
 
241
269
  .e-de-table-border-topbottom-alignment::before {
242
270
  content: "\e298";
243
271
  font-size: 16px;
244
- left: 4px;
272
+ left: 5px;
245
273
  position: absolute;
246
- top: -5px;
274
+ top: -2px;
247
275
  }
248
276
 
249
277
  .e-de-table-border-diagionalup-alignment::before {
250
278
  content: "\e262";
251
279
  font-size: 16px;
252
- left: 4px;
280
+ left: 5px;
253
281
  position: absolute;
254
- top: -5px;
282
+ top: -2px;
255
283
  }
256
284
 
257
285
  .e-de-table-border-diagionaldown-alignment::before {
258
286
  content: "\e265";
259
287
  font-size: 16px;
260
- left: 4px;
288
+ left: 5px;
261
289
  position: absolute;
262
- top: -5px;
290
+ top: -2px;
263
291
  }
264
292
 
265
293
  .e-de-table-border-bottomleft-alignment::before {
266
294
  content: "\e291";
267
295
  font-size: 16px;
268
- left: 4px;
296
+ left: 5px;
269
297
  position: absolute;
270
- top: -5px;
298
+ top: -2px;
271
299
  }
272
300
 
273
301
  .e-de-table-border-bottomcenter-alignment::before {
274
302
  content: "\e287";
275
303
  font-size: 16px;
276
- left: 4px;
304
+ left: 5px;
277
305
  position: absolute;
278
- top: -5px;
306
+ top: -2px;
279
307
  }
280
308
 
281
309
  .e-de-table-border-bottomright-alignment::before {
282
310
  content: "\e288";
283
311
  font-size: 16px;
284
- left: 4px;
312
+ left: 5px;
285
313
  position: absolute;
286
- top: -5px;
314
+ top: -2px;
287
315
  }
288
316
 
289
317
  .e-menu-item .e-de-cmt-add::before {
@@ -713,7 +741,7 @@
713
741
  .e-documenteditor .e-de-op-close-button {
714
742
  left: 267px;
715
743
  position: absolute;
716
- top: 18px;
744
+ top: 8px;
717
745
  }
718
746
  .e-documenteditor .e-de-op-close-button.e-de-rtl {
719
747
  left: 14px;
@@ -951,7 +979,7 @@
951
979
  display: block;
952
980
  font-size: 14px;
953
981
  font-weight: 500;
954
- margin-bottom: 5px !important;
982
+ margin-bottom: 10px;
955
983
  }
956
984
 
957
985
  .e-content-placeholder.e-documenteditor.e-placeholder-documenteditor {
@@ -967,18 +995,18 @@
967
995
  }
968
996
 
969
997
  .e-de-toc-modify-button {
970
- margin-left: 145px;
998
+ margin-left: 150px;
971
999
  margin-top: 10px;
972
1000
  }
973
1001
 
974
1002
  .e-de-toc-modify-button.e-de-rtl {
975
1003
  margin-left: 0;
976
- margin-right: 157px;
1004
+ margin-right: 150px;
977
1005
  }
978
1006
 
979
1007
  .e-de-toc-dlg-container {
980
1008
  height: 464px;
981
- width: 498px;
1009
+ width: 550px;
982
1010
  }
983
1011
 
984
1012
  .e-de-toc-dlg-sub-container {
@@ -989,15 +1017,12 @@
989
1017
  border: 1px solid #c8c8c8;
990
1018
  border-radius: 1px;
991
1019
  font-size: 12px;
992
- height: 193px;
993
- margin-left: 35px;
1020
+ height: 200px;
994
1021
  overflow-y: scroll;
995
- width: 210px;
996
1022
  }
997
1023
 
998
1024
  .e-de-toc-list-view.e-de-rtl {
999
1025
  margin-left: 0;
1000
- margin-right: 35px;
1001
1026
  }
1002
1027
 
1003
1028
  .e-de-toc-dlg-sub-heading {
@@ -1187,8 +1212,7 @@
1187
1212
  margin-right: 20px;
1188
1213
  }
1189
1214
 
1190
- .e-de-restrict-pane,
1191
- .e-de-op {
1215
+ .e-de-restrict-pane {
1192
1216
  border-right: 1px solid #4a4848;
1193
1217
  padding-left: 16px;
1194
1218
  padding-top: 20px;
@@ -1197,6 +1221,14 @@
1197
1221
  width: 300px;
1198
1222
  }
1199
1223
 
1224
+ .e-de-op {
1225
+ border-right: 1px solid #4a4848;
1226
+ padding-left: 16px;
1227
+ padding-right: 16px;
1228
+ position: relative;
1229
+ width: 300px;
1230
+ }
1231
+
1200
1232
  .e-de-op.e-de-rtl {
1201
1233
  padding-left: 0;
1202
1234
  padding-right: 16px;
@@ -1207,16 +1239,18 @@
1207
1239
  font-family: "Segoe UI";
1208
1240
  font-size: 15px;
1209
1241
  font-weight: 100;
1210
- margin-bottom: 4px;
1242
+ margin-bottom: 12px;
1243
+ padding-top: 12px;
1211
1244
  }
1212
1245
 
1213
1246
  .e-de-op-header.e-de-rtl {
1214
1247
  direction: rtl;
1248
+ text-align: right;
1215
1249
  }
1216
1250
 
1217
1251
  .e-de-op-tab {
1218
1252
  border: 0;
1219
- height: 40px;
1253
+ height: auto;
1220
1254
  }
1221
1255
 
1222
1256
  .e-de-op-icon {
@@ -1251,7 +1285,6 @@
1251
1285
  }
1252
1286
 
1253
1287
  .e-de-op-replacetabcontentdiv {
1254
- height: 82px;
1255
1288
  margin-top: 14px;
1256
1289
  }
1257
1290
 
@@ -1297,6 +1330,7 @@ label[for*=_wholeWord_e-de-rtl] {
1297
1330
  .e-de-table-setting-labels-heading {
1298
1331
  font-size: 12px;
1299
1332
  font-weight: normal;
1333
+ margin-left: 10px;
1300
1334
  }
1301
1335
 
1302
1336
  .e-de-table-element-subheading {
@@ -1306,13 +1340,15 @@ label[for*=_wholeWord_e-de-rtl] {
1306
1340
 
1307
1341
  .e-de-border-dlg-preview-div {
1308
1342
  border: 1px solid rgba(0, 0, 0, 0.54);
1343
+ width: 80px;
1344
+ height: 80px;
1309
1345
  }
1310
1346
 
1311
1347
  .e-de-border-dlg-preview-inside-divs {
1312
1348
  opacity: 0.54;
1313
1349
  }
1314
1350
 
1315
- .e-de-table-dia-align-div {
1351
+ .e-de-tablecell-dia-align-div {
1316
1352
  border: 1px solid #ddd;
1317
1353
  display: inline-block;
1318
1354
  height: 60px;
@@ -1320,7 +1356,7 @@ label[for*=_wholeWord_e-de-rtl] {
1320
1356
  width: 60px;
1321
1357
  }
1322
1358
 
1323
- .e-de-table-dia-align-div.e-de-rtl {
1359
+ .e-de-tablecell-dia-align-div.e-de-rtl {
1324
1360
  margin-left: 10px;
1325
1361
  margin-right: 0;
1326
1362
  }
@@ -1348,10 +1384,7 @@ label[for*=_wholeWord_e-de-rtl] {
1348
1384
  border: 1px solid #0074cc;
1349
1385
  }
1350
1386
 
1351
- .e-de-table-dialog-options-label {
1352
- font-size: 16px;
1353
- font-weight: 600;
1354
- padding-bottom: 10px;
1387
+ .e-de-table-dialog-size-label {
1355
1388
  padding-top: 10px !important;
1356
1389
  }
1357
1390
 
@@ -1405,6 +1438,7 @@ label[for*=_wholeWord_e-de-rtl] {
1405
1438
  }
1406
1439
 
1407
1440
  .e-de-tbl-dlg-border-btn.e-de-rtl {
1441
+ float: left;
1408
1442
  margin-right: 0;
1409
1443
  }
1410
1444
 
@@ -1526,7 +1560,7 @@ label[for*=_wholeWord_e-de-rtl] {
1526
1560
  .e-documenteditor .e-de-op-close-button {
1527
1561
  left: 250px;
1528
1562
  position: absolute;
1529
- top: 18px;
1563
+ top: 8px;
1530
1564
  }
1531
1565
 
1532
1566
  .e-de-restrict-pane {
@@ -1534,7 +1568,7 @@ label[for*=_wholeWord_e-de-rtl] {
1534
1568
  }
1535
1569
 
1536
1570
  .e-de-op.e-de-rtl .e-de-search-tab-content {
1537
- margin-left: 1px;
1571
+ margin-left: 12px;
1538
1572
  margin-right: 0;
1539
1573
  }
1540
1574
 
@@ -1897,8 +1931,7 @@ label[for*=_wholeWord_e-de-rtl] {
1897
1931
  }
1898
1932
 
1899
1933
  .e-de-search-tab-content {
1900
- margin-right: 1px;
1901
- margin-top: 1px;
1934
+ margin-top: 12px;
1902
1935
  width: 269px;
1903
1936
  }
1904
1937
 
@@ -1930,23 +1963,37 @@ label[for*=_wholeWord_e-de-rtl] {
1930
1963
  font-weight: normal;
1931
1964
  }
1932
1965
 
1966
+ .e-bigger .e-de-insert-spellchecker {
1967
+ width: 600px;
1968
+ }
1969
+
1933
1970
  .e-de-dlg-spellcheck-listview {
1934
1971
  border: 1px solid #e4e4e4;
1935
1972
  border-radius: 2px !important;
1936
1973
  height: 122px !important;
1974
+ margin-right: 14px;
1937
1975
  margin-top: 8px;
1938
1976
  position: relative;
1939
1977
  float: left;
1940
- width: 343px !important;
1978
+ width: 100%;
1979
+ }
1980
+
1981
+ .e-de-dlg-spellcheck-listview.e-de-rtl {
1982
+ float: right;
1941
1983
  }
1942
1984
 
1943
1985
  .e-de-spellcheck-error-container {
1944
1986
  height: 140px;
1945
1987
  margin-bottom: 25px;
1988
+ display: -ms-flexbox;
1989
+ display: flex;
1946
1990
  }
1947
1991
 
1948
1992
  .e-de-spellcheck-suggestion-container {
1949
1993
  height: 140px;
1994
+ margin-bottom: 25px;
1995
+ display: -ms-flexbox;
1996
+ display: flex;
1950
1997
  }
1951
1998
 
1952
1999
  .e-dlg-spellcheck-listitem {
@@ -1956,13 +2003,17 @@ label[for*=_wholeWord_e-de-rtl] {
1956
2003
  .e-de-spellcheck-btncontainer {
1957
2004
  margin-top: 8px;
1958
2005
  position: relative;
1959
- width: 154px;
2006
+ width: 100%;
1960
2007
  float: right;
1961
2008
  }
1962
2009
 
2010
+ .e-de-spellcheck-btncontainer.e-de-rtl {
2011
+ float: left;
2012
+ }
2013
+
1963
2014
  .e-de-spellcheck-btn {
1964
2015
  margin-bottom: 8px;
1965
- width: 154px;
2016
+ width: 100%;
1966
2017
  }
1967
2018
 
1968
2019
  .e-de-dlg-spellchecker-subheader {
@@ -1989,7 +2040,6 @@ label[for*=_wholeWord_e-de-rtl] {
1989
2040
  }
1990
2041
 
1991
2042
  .e-de-table-border-shading-dlg {
1992
- height: 432px;
1993
2043
  width: 450px;
1994
2044
  }
1995
2045
 
@@ -2146,7 +2196,7 @@ label[for*=_wholeWord_e-de-rtl] {
2146
2196
  .e-de-table-border-bottomcenter-alignment,
2147
2197
  .e-de-table-border-bottomright-alignment {
2148
2198
  left: 48%;
2149
- position: absolute;
2199
+ position: relative;
2150
2200
  top: 75%;
2151
2201
  transform: translate(-50%, -50%);
2152
2202
  }
@@ -2303,8 +2353,7 @@ label[for*=_wholeWord_e-de-rtl] {
2303
2353
 
2304
2354
  .e-de-op-replace-messagediv {
2305
2355
  color: #dadada;
2306
- position: absolute;
2307
- top: 144px;
2356
+ top: auto;
2308
2357
  }
2309
2358
 
2310
2359
  .e-de-font-content-label .e-label,
@@ -2396,16 +2445,6 @@ label[for*=_wholeWord_e-de-rtl] {
2396
2445
  margin-right: 20px;
2397
2446
  }
2398
2447
 
2399
- .e-de-table-ppty-dlg-left-indent-container {
2400
- bottom: 8px;
2401
- left: 69px;
2402
- position: relative;
2403
- }
2404
-
2405
- .e-de-table-ppty-dlg-left-indent-container.e-de-rtl {
2406
- right: 69px;
2407
- }
2408
-
2409
2448
  .e-de-table-ppty-dlg-row-height-label {
2410
2449
  float: right;
2411
2450
  margin-right: 181px;
@@ -2511,10 +2550,6 @@ label[for*=_wholeWord_e-de-rtl] {
2511
2550
  margin-right: 36px;
2512
2551
  }
2513
2552
 
2514
- .e-de-toc-dlg-build-table {
2515
- margin-top: 30px;
2516
- }
2517
-
2518
2553
  .e-de-toc-table-div .e-de-toc-dlg-toc-level {
2519
2554
  height: 24px;
2520
2555
  margin-left: 34px;
@@ -2525,7 +2560,8 @@ label[for*=_wholeWord_e-de-rtl] {
2525
2560
  border: 1px solid #c8c8c8;
2526
2561
  border-radius: 1px;
2527
2562
  margin-top: 10px;
2528
- width: 213px;
2563
+ width: 100%;
2564
+ height: 200px;
2529
2565
  }
2530
2566
 
2531
2567
  .e-de-toc-dlg-sub-level-heading {
@@ -2535,7 +2571,7 @@ label[for*=_wholeWord_e-de-rtl] {
2535
2571
  .e-de-toc-table-div {
2536
2572
  height: 160px;
2537
2573
  overflow-y: scroll;
2538
- width: 209px;
2574
+ width: 100%;
2539
2575
  }
2540
2576
 
2541
2577
  .e-de-toc-dlg-style-input {
@@ -2546,7 +2582,7 @@ label[for*=_wholeWord_e-de-rtl] {
2546
2582
 
2547
2583
  .e-de-toc-dlg-outline-levels {
2548
2584
  margin-top: 15px;
2549
- width: 137px;
2585
+ width: 148px;
2550
2586
  }
2551
2587
 
2552
2588
  .e-bookmark-textboxdiv .e-bookmark-textbox-input {
@@ -2681,15 +2717,6 @@ label[for*=_wholeWord_e-de-rtl] {
2681
2717
  padding: 10px 4px 5px 10px;
2682
2718
  }
2683
2719
 
2684
- .e-de-table-border-fill.e-de-rtl {
2685
- margin-left: 20px;
2686
- }
2687
-
2688
- .e-de-table-border-fill:not(.e-de-rtl) {
2689
- margin-right: 20px;
2690
- margin-top: 5px;
2691
- }
2692
-
2693
2720
  .e-de-table-ppty-dlg-tabs {
2694
2721
  height: 341px;
2695
2722
  position: relative;
@@ -2725,7 +2752,6 @@ label[for*=_wholeWord_e-de-rtl] {
2725
2752
  .e-de-tbl-rtl-btn-div {
2726
2753
  font-size: 12px;
2727
2754
  margin-right: 14px;
2728
- width: 140px;
2729
2755
  }
2730
2756
 
2731
2757
  .e-de-tbl-rtl-btn-div.e-de-rtl {
@@ -2735,7 +2761,6 @@ label[for*=_wholeWord_e-de-rtl] {
2735
2761
 
2736
2762
  .e-de-tbl-ltr-btn-div {
2737
2763
  font-size: 12px;
2738
- width: 140px;
2739
2764
  }
2740
2765
 
2741
2766
  .e-de-disabledbutton {
@@ -2767,11 +2792,11 @@ label[for*=_wholeWord_e-de-rtl] {
2767
2792
  width: 82px;
2768
2793
  }
2769
2794
  .e-bigger .e-de-toc-label {
2770
- margin-left: 4px;
2795
+ margin-left: 0px;
2771
2796
  }
2772
2797
  .e-bigger .e-de-toc-label-rtl {
2773
2798
  margin-left: 0px;
2774
- margin-right: 4px;
2799
+ margin-right: 0px;
2775
2800
  }
2776
2801
  .e-bigger .e-de-outline-rtl {
2777
2802
  width: 173px;
@@ -3063,34 +3088,26 @@ label[for*=_wholeWord_e-de-rtl] {
3063
3088
  }
3064
3089
 
3065
3090
  .e-btn.e-outline.e-de-track-accept-button {
3066
- border-color: #4d841e;
3067
- background-color: transparent;
3068
- color: #4d841e;
3091
+ min-width: 66px;
3069
3092
  padding: 5px 6px;
3070
3093
  text-transform: initial;
3071
3094
  }
3072
3095
 
3073
3096
  .e-btn.e-outline.e-de-track-accept-button:hover {
3074
- border-color: transparent;
3075
- background-color: #4d841e;
3076
- color: #fff;
3097
+ min-width: 66px;
3077
3098
  padding: 5px 6px;
3078
3099
  text-transform: initial;
3079
3100
  }
3080
3101
 
3081
3102
  .e-btn.e-outline.e-de-track-reject-button {
3082
- border-color: #d74113;
3083
- background-color: transparent;
3084
- color: #d74113;
3103
+ min-width: 64px;
3085
3104
  padding: 5px 6px;
3086
3105
  margin-left: 8px;
3087
3106
  text-transform: initial;
3088
3107
  }
3089
3108
 
3090
3109
  .e-btn.e-outline.e-de-track-reject-button:hover {
3091
- border-color: transparent;
3092
- background-color: #d74113;
3093
- color: #fff;
3110
+ min-width: 64px;
3094
3111
  padding: 5px 6px;
3095
3112
  margin-left: 8px;
3096
3113
  text-transform: initial;
@@ -3168,13 +3185,13 @@ label[for*=_wholeWord_e-de-rtl] {
3168
3185
  .e-de-track-chng-table {
3169
3186
  border-collapse: collapse;
3170
3187
  border-spacing: 0px;
3171
- height: 20px;
3172
3188
  opacity: 70%;
3173
3189
  width: 100%;
3174
3190
  }
3175
3191
 
3176
3192
  .e-de-tc-tble-cell {
3177
3193
  border: 1px solid;
3194
+ height: 20px;
3178
3195
  }
3179
3196
 
3180
3197
  .e-de-tc-shrink-img {
@@ -3306,7 +3323,7 @@ label[for*=_wholeWord_e-de-rtl] {
3306
3323
 
3307
3324
  .e-de-lock-mark {
3308
3325
  cursor: default;
3309
- color: #000;
3326
+ color: rgba(0, 0, 0, 0.54);
3310
3327
  font-size: 13px;
3311
3328
  height: 13px;
3312
3329
  pointer-events: all;
@@ -3315,7 +3332,7 @@ label[for*=_wholeWord_e-de-rtl] {
3315
3332
 
3316
3333
  .e-de-cmt-mark {
3317
3334
  cursor: default;
3318
- color: #000;
3335
+ color: rgba(0, 0, 0, 0.54);
3319
3336
  font-size: 13px;
3320
3337
  height: 13px;
3321
3338
  pointer-events: all;
@@ -3458,10 +3475,100 @@ label[for*=_wholeWord_e-de-rtl] {
3458
3475
  margin-top: 3px;
3459
3476
  }
3460
3477
 
3478
+ .e-de-table-dialog-row-height {
3479
+ padding-top: 28px;
3480
+ }
3481
+
3482
+ .e-de-tablecell-dialog-alignment-icon {
3483
+ width: 54px;
3484
+ height: 54px;
3485
+ margin: 2px;
3486
+ }
3487
+
3488
+ .e-de-table-dia-indent-from-left {
3489
+ right: 45px;
3490
+ }
3491
+
3492
+ .e-de-table-dia-align-div {
3493
+ border: 1px solid #ddd;
3494
+ display: inline-block;
3495
+ height: 52px;
3496
+ margin-right: 10px;
3497
+ width: 52px;
3498
+ }
3499
+
3500
+ .e-de-table-dialog-alignment-icon {
3501
+ margin: 2px;
3502
+ height: 46px;
3503
+ }
3504
+
3505
+ .e-de-table-border-setting-genral {
3506
+ margin-right: 10px;
3507
+ }
3508
+
3509
+ .e-de-table-border-clr-left-container {
3510
+ padding-right: 19px;
3511
+ }
3512
+
3513
+ .e-de-table-border-clr-heading {
3514
+ font-size: 14px;
3515
+ font-weight: normal;
3516
+ padding-bottom: 7px;
3517
+ }
3518
+
3519
+ .e-de-table-border-icon-container {
3520
+ margin-top: 4px;
3521
+ margin-right: 4px;
3522
+ }
3523
+
3524
+ .e-de-table-border-preview-container {
3525
+ padding-left: 66px;
3526
+ }
3527
+
3528
+ .e-de-table-dlg-alignment-heading {
3529
+ color: #dadada;
3530
+ display: block;
3531
+ font-size: 16px;
3532
+ font-weight: 700;
3533
+ margin-bottom: 5px;
3534
+ }
3535
+
3461
3536
  .e-rtl .e-de-cmt-author-name {
3462
3537
  padding-left: 0%;
3463
3538
  padding-right: 8px;
3464
3539
  }
3540
+ .e-rtl .e-de-ok-button {
3541
+ margin-right: 0;
3542
+ margin-left: 8px;
3543
+ }
3544
+ .e-rtl .e-de-table-dia-align-div.e-de-rtl {
3545
+ margin-left: 10px;
3546
+ margin-right: 0;
3547
+ }
3548
+ .e-rtl .e-de-table-border-clr-left-container {
3549
+ padding-right: 0;
3550
+ padding-left: 19px;
3551
+ }
3552
+ .e-rtl .e-de-table-border-preview-container {
3553
+ padding-right: 66px;
3554
+ padding-left: 0;
3555
+ }
3556
+ .e-rtl .e-de-table-border-setting-genral {
3557
+ margin-right: 0;
3558
+ margin-left: 10px;
3559
+ }
3560
+ .e-rtl .e-de-table-border-icon-container {
3561
+ margin-right: 0;
3562
+ margin-left: 4px;
3563
+ }
3564
+ .e-rtl .e-de-table-border-preview {
3565
+ width: 23px;
3566
+ }
3567
+ .e-rtl .e-de-table-setting-labels-heading {
3568
+ margin-left: 0;
3569
+ margin-right: 10px;
3570
+ }
3571
+
3465
3572
  .e-bigger .e-de-cmt-author-name {
3466
3573
  padding-left: 8px;
3467
3574
  }
@@ -1 +1,4 @@
1
- @import 'ej2-documenteditor/styles/document-editor/fabric-dark.scss';
1
+ @import 'ej2-base/styles/fabric-dark-definition.scss';
2
+ @import 'fabric-dark-definition.scss';
3
+ @import 'icons/fabric-dark.scss';
4
+ @import 'all.scss';