@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
@@ -317,25 +317,23 @@
317
317
 
318
318
  .e-de-table-border-setting {
319
319
  border: 1px solid #f8f9fa;
320
- height: 48px;
320
+ height: 40px;
321
321
  left: 5px;
322
322
  position: relative;
323
323
  top: 5px;
324
- width: 48px;
324
+ width: 40px;
325
325
  }
326
326
 
327
327
  .e-de-table-border-setting-genral {
328
328
  border: 1px solid rgba(0, 0, 0, 0.26);
329
- display: inline-block;
330
- height: 60px;
331
- width: 60px;
329
+ height: 52px;
330
+ width: 52px;
332
331
  }
333
332
 
334
333
  .e-de-table-border-preview-genral {
335
334
  border: 1px solid rgba(0, 0, 0, 0.26);
336
- display: inline-block;
337
- height: 25px;
338
- width: 25px;
335
+ height: 24px;
336
+ width: 24px;
339
337
  }
340
338
 
341
339
  .e-de-table-border-inside-setting:hover {
@@ -362,65 +360,65 @@
362
360
  .e-de-table-border-toptop-alignment::before {
363
361
  content: "\e7a3";
364
362
  font-size: 16px;
365
- left: 4px;
363
+ left: 5px;
366
364
  position: absolute;
367
- top: 0;
365
+ top: 2px;
368
366
  }
369
367
 
370
368
  .e-de-table-border-topcenter-alignment::before {
371
369
  content: "\e7a9";
372
370
  font-size: 16px;
373
- left: 4px;
371
+ left: 5px;
374
372
  position: absolute;
375
- top: 0;
373
+ top: 2px;
376
374
  }
377
375
 
378
376
  .e-de-table-border-topbottom-alignment::before {
379
377
  content: "\e7aa";
380
378
  font-size: 16px;
381
- left: 4px;
379
+ left: 5px;
382
380
  position: absolute;
383
- top: 0;
381
+ top: 2px;
384
382
  }
385
383
 
386
384
  .e-de-table-border-bottomleft-alignment::before {
387
385
  content: "\e7a7";
388
386
  font-size: 16px;
389
- left: 4px;
387
+ left: 5px;
390
388
  position: absolute;
391
- top: 0;
389
+ top: 2px;
392
390
  }
393
391
 
394
392
  .e-de-table-border-bottomcenter-alignment::before {
395
393
  content: "\e79c";
396
394
  font-size: 16px;
397
- left: 4px;
395
+ left: 5px;
398
396
  position: absolute;
399
- top: 0;
397
+ top: 2px;
400
398
  }
401
399
 
402
400
  .e-de-table-border-bottomright-alignment::before {
403
401
  content: "\e79f";
404
402
  font-size: 16px;
405
- left: 4px;
403
+ left: 5px;
406
404
  position: absolute;
407
- top: 0;
405
+ top: 2px;
408
406
  }
409
407
 
410
408
  .e-de-table-border-diagionalup-alignment::before {
411
409
  content: "\e7ca";
412
410
  font-size: 16px;
413
- left: 4px;
411
+ left: 5px;
414
412
  position: absolute;
415
- top: 0;
413
+ top: 2px;
416
414
  }
417
415
 
418
416
  .e-de-table-border-diagionaldown-alignment::before {
419
417
  content: "\e7d8";
420
418
  font-size: 16px;
421
- left: 4px;
419
+ left: 5px;
422
420
  position: absolute;
423
- top: 0;
421
+ top: 2px;
424
422
  }
425
423
 
426
424
  .e-de-single-spacing::before {
@@ -450,13 +448,13 @@
450
448
 
451
449
  .e-de-table-border-none-setting::before {
452
450
  content: "\e7f1";
453
- font-size: 46px;
451
+ font-size: 38px;
454
452
  position: absolute;
455
453
  }
456
454
 
457
455
  .e-de-table-border-box-setting::before {
458
456
  content: "\e7f6";
459
- font-size: 42px;
457
+ font-size: 34px;
460
458
  left: 2px;
461
459
  position: absolute;
462
460
  top: 2px;
@@ -464,7 +462,7 @@
464
462
 
465
463
  .e-de-table-border-all-setting::before {
466
464
  content: "\e7f3";
467
- font-size: 42px;
465
+ font-size: 34px;
468
466
  left: 2px;
469
467
  position: absolute;
470
468
  top: 2px;
@@ -472,7 +470,37 @@
472
470
 
473
471
  .e-de-table-border-custom-setting::before {
474
472
  content: "\e7f2";
475
- font-size: 42px;
473
+ font-size: 34px;
474
+ left: 2px;
475
+ position: absolute;
476
+ top: 2px;
477
+ }
478
+
479
+ .e-de-para-border-none-setting::before {
480
+ content: "\e93f";
481
+ font-size: 38px;
482
+ position: absolute;
483
+ }
484
+
485
+ .e-de-para-border-box-setting::before {
486
+ content: "\e940";
487
+ font-size: 34px;
488
+ left: 2px;
489
+ position: absolute;
490
+ top: 2px;
491
+ }
492
+
493
+ .e-de-para-border-shadow-setting::before {
494
+ content: "\e942";
495
+ font-size: 34px;
496
+ left: 2px;
497
+ position: absolute;
498
+ top: 2px;
499
+ }
500
+
501
+ .e-de-para-border-custom-setting::before {
502
+ content: "\e945";
503
+ font-size: 34px;
476
504
  left: 2px;
477
505
  position: absolute;
478
506
  top: 2px;
@@ -710,7 +738,7 @@
710
738
  .e-documenteditor .e-de-op-close-button {
711
739
  left: 267px;
712
740
  position: absolute;
713
- top: 18px;
741
+ top: 8px;
714
742
  }
715
743
  .e-documenteditor .e-de-op-close-button.e-de-rtl {
716
744
  left: 14px;
@@ -948,7 +976,7 @@
948
976
  display: block;
949
977
  font-size: 14px;
950
978
  font-weight: 500;
951
- margin-bottom: 5px !important;
979
+ margin-bottom: 10px;
952
980
  }
953
981
 
954
982
  .e-content-placeholder.e-documenteditor.e-placeholder-documenteditor {
@@ -964,18 +992,18 @@
964
992
  }
965
993
 
966
994
  .e-de-toc-modify-button {
967
- margin-left: 162px;
995
+ margin-left: 156px;
968
996
  margin-top: 10px;
969
997
  }
970
998
 
971
999
  .e-de-toc-modify-button.e-de-rtl {
972
1000
  margin-left: 0;
973
- margin-right: 180px;
1001
+ margin-right: 156px;
974
1002
  }
975
1003
 
976
1004
  .e-de-toc-dlg-container {
977
1005
  height: 454px;
978
- width: 488px;
1006
+ width: 550px;
979
1007
  }
980
1008
 
981
1009
  .e-de-toc-dlg-sub-container {
@@ -986,15 +1014,12 @@
986
1014
  border: 1px solid #c3c3c3;
987
1015
  border-radius: 3px;
988
1016
  font-size: 12px;
989
- height: 174px;
990
- margin-left: 38px;
1017
+ height: 186px;
991
1018
  overflow-y: scroll;
992
- width: 209px;
993
1019
  }
994
1020
 
995
1021
  .e-de-toc-list-view.e-de-rtl {
996
1022
  margin-left: 0;
997
- margin-right: 38px;
998
1023
  }
999
1024
 
1000
1025
  .e-de-toc-dlg-sub-heading {
@@ -1184,8 +1209,7 @@
1184
1209
  margin-right: 20px;
1185
1210
  }
1186
1211
 
1187
- .e-de-restrict-pane,
1188
- .e-de-op {
1212
+ .e-de-restrict-pane {
1189
1213
  border-right: 1px solid #dee2e6;
1190
1214
  padding-left: 14px;
1191
1215
  padding-top: 14px;
@@ -1194,6 +1218,14 @@
1194
1218
  width: 300px;
1195
1219
  }
1196
1220
 
1221
+ .e-de-op {
1222
+ border-right: 1px solid #dee2e6;
1223
+ padding-left: 14px;
1224
+ padding-right: 14px;
1225
+ position: relative;
1226
+ width: 300px;
1227
+ }
1228
+
1197
1229
  .e-de-op.e-de-rtl {
1198
1230
  padding-left: 0;
1199
1231
  padding-right: 14px;
@@ -1204,16 +1236,18 @@
1204
1236
  font-family: "Helvetica";
1205
1237
  font-size: 15px;
1206
1238
  font-weight: 500;
1207
- margin-bottom: 0;
1239
+ margin-bottom: 12px;
1240
+ padding-top: 12px;
1208
1241
  }
1209
1242
 
1210
1243
  .e-de-op-header.e-de-rtl {
1211
1244
  direction: rtl;
1245
+ text-align: right;
1212
1246
  }
1213
1247
 
1214
1248
  .e-de-op-tab {
1215
1249
  border: 0;
1216
- height: 40px;
1250
+ height: auto;
1217
1251
  }
1218
1252
 
1219
1253
  .e-de-op-icon {
@@ -1248,7 +1282,6 @@
1248
1282
  }
1249
1283
 
1250
1284
  .e-de-op-replacetabcontentdiv {
1251
- height: 82px;
1252
1285
  margin-top: 14px;
1253
1286
  }
1254
1287
 
@@ -1294,6 +1327,7 @@ label[for*=_wholeWord_e-de-rtl] {
1294
1327
  .e-de-table-setting-labels-heading {
1295
1328
  font-size: 12px;
1296
1329
  font-weight: normal;
1330
+ margin-left: 10px;
1297
1331
  }
1298
1332
 
1299
1333
  .e-de-table-element-subheading {
@@ -1303,13 +1337,15 @@ label[for*=_wholeWord_e-de-rtl] {
1303
1337
 
1304
1338
  .e-de-border-dlg-preview-div {
1305
1339
  border: 1px solid rgba(0, 0, 0, 0.54);
1340
+ width: 80px;
1341
+ height: 80px;
1306
1342
  }
1307
1343
 
1308
1344
  .e-de-border-dlg-preview-inside-divs {
1309
1345
  opacity: 0.54;
1310
1346
  }
1311
1347
 
1312
- .e-de-table-dia-align-div {
1348
+ .e-de-tablecell-dia-align-div {
1313
1349
  border: 1px solid #ddd;
1314
1350
  display: inline-block;
1315
1351
  height: 60px;
@@ -1317,7 +1353,7 @@ label[for*=_wholeWord_e-de-rtl] {
1317
1353
  width: 60px;
1318
1354
  }
1319
1355
 
1320
- .e-de-table-dia-align-div.e-de-rtl {
1356
+ .e-de-tablecell-dia-align-div.e-de-rtl {
1321
1357
  margin-left: 10px;
1322
1358
  margin-right: 0;
1323
1359
  }
@@ -1345,10 +1381,7 @@ label[for*=_wholeWord_e-de-rtl] {
1345
1381
  border: 1px solid #007bff;
1346
1382
  }
1347
1383
 
1348
- .e-de-table-dialog-options-label {
1349
- font-size: 14px;
1350
- font-weight: 400;
1351
- padding-bottom: 8px;
1384
+ .e-de-table-dialog-size-label {
1352
1385
  padding-top: 14px !important;
1353
1386
  }
1354
1387
 
@@ -1402,6 +1435,7 @@ label[for*=_wholeWord_e-de-rtl] {
1402
1435
  }
1403
1436
 
1404
1437
  .e-de-tbl-dlg-border-btn.e-de-rtl {
1438
+ float: left;
1405
1439
  margin-right: 0;
1406
1440
  }
1407
1441
 
@@ -1523,7 +1557,7 @@ label[for*=_wholeWord_e-de-rtl] {
1523
1557
  .e-documenteditor .e-de-op-close-button {
1524
1558
  left: 250px;
1525
1559
  position: absolute;
1526
- top: 18px;
1560
+ top: 8px;
1527
1561
  padding-top: 0px;
1528
1562
  }
1529
1563
 
@@ -1679,7 +1713,7 @@ label[for*=_wholeWord_e-de-rtl] {
1679
1713
  }
1680
1714
 
1681
1715
  .e-de-op.e-de-rtl .e-de-search-tab-content {
1682
- margin-left: 14px;
1716
+ margin-left: 12px;
1683
1717
  margin-right: 0;
1684
1718
  }
1685
1719
 
@@ -2042,8 +2076,7 @@ label[for*=_wholeWord_e-de-rtl] {
2042
2076
  }
2043
2077
 
2044
2078
  .e-de-search-tab-content {
2045
- margin-right: 14px;
2046
- margin-top: 14px;
2079
+ margin-top: 12px;
2047
2080
  width: 275px;
2048
2081
  }
2049
2082
 
@@ -2075,23 +2108,37 @@ label[for*=_wholeWord_e-de-rtl] {
2075
2108
  font-weight: normal;
2076
2109
  }
2077
2110
 
2111
+ .e-bigger .e-de-insert-spellchecker {
2112
+ width: 600px;
2113
+ }
2114
+
2078
2115
  .e-de-dlg-spellcheck-listview {
2079
2116
  border: 1px solid #e4e4e4;
2080
2117
  border-radius: 2px !important;
2081
2118
  height: 122px !important;
2119
+ margin-right: 14px;
2082
2120
  margin-top: 8px;
2083
2121
  position: relative;
2084
2122
  float: left;
2085
- width: 343px !important;
2123
+ width: 100%;
2124
+ }
2125
+
2126
+ .e-de-dlg-spellcheck-listview.e-de-rtl {
2127
+ float: right;
2086
2128
  }
2087
2129
 
2088
2130
  .e-de-spellcheck-error-container {
2089
2131
  height: 140px;
2090
2132
  margin-bottom: 25px;
2133
+ display: -ms-flexbox;
2134
+ display: flex;
2091
2135
  }
2092
2136
 
2093
2137
  .e-de-spellcheck-suggestion-container {
2094
2138
  height: 140px;
2139
+ margin-bottom: 25px;
2140
+ display: -ms-flexbox;
2141
+ display: flex;
2095
2142
  }
2096
2143
 
2097
2144
  .e-dlg-spellcheck-listitem {
@@ -2101,13 +2148,17 @@ label[for*=_wholeWord_e-de-rtl] {
2101
2148
  .e-de-spellcheck-btncontainer {
2102
2149
  margin-top: 8px;
2103
2150
  position: relative;
2104
- width: 154px;
2151
+ width: 100%;
2105
2152
  float: right;
2106
2153
  }
2107
2154
 
2155
+ .e-de-spellcheck-btncontainer.e-de-rtl {
2156
+ float: left;
2157
+ }
2158
+
2108
2159
  .e-de-spellcheck-btn {
2109
2160
  margin-bottom: 8px;
2110
- width: 154px;
2161
+ width: 100%;
2111
2162
  }
2112
2163
 
2113
2164
  .e-de-dlg-spellchecker-subheader {
@@ -2134,7 +2185,6 @@ label[for*=_wholeWord_e-de-rtl] {
2134
2185
  }
2135
2186
 
2136
2187
  .e-de-table-border-shading-dlg {
2137
- height: 438px;
2138
2188
  width: 460px;
2139
2189
  }
2140
2190
 
@@ -2291,7 +2341,7 @@ label[for*=_wholeWord_e-de-rtl] {
2291
2341
  .e-de-table-border-bottomcenter-alignment,
2292
2342
  .e-de-table-border-bottomright-alignment {
2293
2343
  left: 48%;
2294
- position: absolute;
2344
+ position: relative;
2295
2345
  top: 59%;
2296
2346
  transform: translate(-50%, -50%);
2297
2347
  }
@@ -2439,8 +2489,7 @@ label[for*=_wholeWord_e-de-rtl] {
2439
2489
 
2440
2490
  .e-de-op-replace-messagediv {
2441
2491
  color: #000;
2442
- position: absolute;
2443
- top: 144px;
2492
+ top: auto;
2444
2493
  }
2445
2494
 
2446
2495
  .e-de-font-content-label .e-label,
@@ -2532,16 +2581,6 @@ label[for*=_wholeWord_e-de-rtl] {
2532
2581
  margin-right: 20px;
2533
2582
  }
2534
2583
 
2535
- .e-de-table-ppty-dlg-left-indent-container {
2536
- bottom: 4px;
2537
- left: 69px;
2538
- position: relative;
2539
- }
2540
-
2541
- .e-de-table-ppty-dlg-left-indent-container.e-de-rtl {
2542
- right: 69px;
2543
- }
2544
-
2545
2584
  .e-de-table-ppty-dlg-row-height-label {
2546
2585
  float: right;
2547
2586
  margin-right: 184px;
@@ -2647,10 +2686,6 @@ label[for*=_wholeWord_e-de-rtl] {
2647
2686
  margin-right: 38px;
2648
2687
  }
2649
2688
 
2650
- .e-de-toc-dlg-build-table {
2651
- margin-top: 30px;
2652
- }
2653
-
2654
2689
  .e-de-toc-table-div .e-de-toc-dlg-toc-level {
2655
2690
  height: 24px;
2656
2691
  margin-left: 36px;
@@ -2660,8 +2695,9 @@ label[for*=_wholeWord_e-de-rtl] {
2660
2695
  .e-de-toc-styles-table-div {
2661
2696
  border: 1px solid #c3c3c3;
2662
2697
  border-radius: 3px;
2663
- margin-top: 15px;
2664
- width: 213px;
2698
+ margin-top: 10px;
2699
+ width: 100%;
2700
+ height: 183px;
2665
2701
  }
2666
2702
 
2667
2703
  .e-de-toc-dlg-sub-level-heading {
@@ -2671,7 +2707,7 @@ label[for*=_wholeWord_e-de-rtl] {
2671
2707
  .e-de-toc-table-div {
2672
2708
  height: 143px;
2673
2709
  overflow-y: scroll;
2674
- width: 211px;
2710
+ width: 100%;
2675
2711
  }
2676
2712
 
2677
2713
  .e-de-toc-dlg-style-input {
@@ -2817,15 +2853,6 @@ label[for*=_wholeWord_e-de-rtl] {
2817
2853
  padding: 10px 4px 5px 10px;
2818
2854
  }
2819
2855
 
2820
- .e-de-table-border-fill.e-de-rtl {
2821
- margin-left: 15px;
2822
- }
2823
-
2824
- .e-de-table-border-fill:not(.e-de-rtl) {
2825
- margin-right: 15px;
2826
- margin-top: 5px;
2827
- }
2828
-
2829
2856
  .e-de-table-ppty-dlg-tabs {
2830
2857
  height: 280px;
2831
2858
  position: relative;
@@ -2861,7 +2888,6 @@ label[for*=_wholeWord_e-de-rtl] {
2861
2888
  .e-de-tbl-rtl-btn-div {
2862
2889
  font-size: 12px;
2863
2890
  margin-right: 14px;
2864
- width: 140px;
2865
2891
  }
2866
2892
 
2867
2893
  .e-de-tbl-rtl-btn-div.e-de-rtl {
@@ -2871,7 +2897,6 @@ label[for*=_wholeWord_e-de-rtl] {
2871
2897
 
2872
2898
  .e-de-tbl-ltr-btn-div {
2873
2899
  font-size: 12px;
2874
- width: 140px;
2875
2900
  }
2876
2901
 
2877
2902
  .e-de-disabledbutton {
@@ -2903,11 +2928,11 @@ label[for*=_wholeWord_e-de-rtl] {
2903
2928
  width: 68px;
2904
2929
  }
2905
2930
  .e-bigger .e-de-toc-label {
2906
- margin-left: 194px;
2931
+ margin-left: 0px;
2907
2932
  }
2908
2933
  .e-bigger .e-de-toc-label-rtl {
2909
2934
  margin-left: 0px;
2910
- margin-right: 180px;
2935
+ margin-right: 0px;
2911
2936
  }
2912
2937
  .e-bigger .e-de-outline-rtl {
2913
2938
  width: 173px;
@@ -3206,34 +3231,26 @@ label[for*=_wholeWord_e-de-rtl] {
3206
3231
  }
3207
3232
 
3208
3233
  .e-btn.e-outline.e-de-track-accept-button {
3209
- border-color: #4d841e;
3210
- background-color: transparent;
3211
- color: #4d841e;
3234
+ min-width: 66px;
3212
3235
  padding: 5px 4px;
3213
3236
  text-transform: initial;
3214
3237
  }
3215
3238
 
3216
3239
  .e-btn.e-outline.e-de-track-accept-button:hover {
3217
- border-color: transparent;
3218
- background-color: #4d841e;
3219
- color: #fff;
3240
+ min-width: 66px;
3220
3241
  padding: 5px 4px;
3221
3242
  text-transform: initial;
3222
3243
  }
3223
3244
 
3224
3245
  .e-btn.e-outline.e-de-track-reject-button {
3225
- border-color: #d74113;
3226
- background-color: transparent;
3227
- color: #d74113;
3246
+ min-width: 64px;
3228
3247
  padding: 5px 6px;
3229
3248
  margin-left: 8px;
3230
3249
  text-transform: initial;
3231
3250
  }
3232
3251
 
3233
3252
  .e-btn.e-outline.e-de-track-reject-button:hover {
3234
- border-color: transparent;
3235
- background-color: #d74113;
3236
- color: #fff;
3253
+ min-width: 64px;
3237
3254
  padding: 5px 6px;
3238
3255
  margin-left: 8px;
3239
3256
  text-transform: initial;
@@ -3311,13 +3328,13 @@ label[for*=_wholeWord_e-de-rtl] {
3311
3328
  .e-de-track-chng-table {
3312
3329
  border-collapse: collapse;
3313
3330
  border-spacing: 0px;
3314
- height: 20px;
3315
3331
  opacity: 70%;
3316
3332
  width: 100%;
3317
3333
  }
3318
3334
 
3319
3335
  .e-de-tc-tble-cell {
3320
3336
  border: 1px solid;
3337
+ height: 20px;
3321
3338
  }
3322
3339
 
3323
3340
  .e-de-tc-shrink-img {
@@ -3450,7 +3467,7 @@ label[for*=_wholeWord_e-de-rtl] {
3450
3467
 
3451
3468
  .e-de-lock-mark {
3452
3469
  cursor: default;
3453
- color: #000;
3470
+ color: rgba(0, 0, 0, 0.54);
3454
3471
  font-size: 13px;
3455
3472
  height: 13px;
3456
3473
  pointer-events: all;
@@ -3459,7 +3476,7 @@ label[for*=_wholeWord_e-de-rtl] {
3459
3476
 
3460
3477
  .e-de-cmt-mark {
3461
3478
  cursor: default;
3462
- color: #000;
3479
+ color: rgba(0, 0, 0, 0.54);
3463
3480
  font-size: 13px;
3464
3481
  height: 13px;
3465
3482
  pointer-events: all;
@@ -3606,10 +3623,100 @@ textarea.e-de-cmt-textarea {
3606
3623
  margin-top: 3px;
3607
3624
  }
3608
3625
 
3626
+ .e-de-table-dialog-row-height {
3627
+ padding-top: 24px;
3628
+ }
3629
+
3630
+ .e-de-tablecell-dialog-alignment-icon {
3631
+ width: 54px;
3632
+ height: 54px;
3633
+ margin: 2px;
3634
+ }
3635
+
3636
+ .e-de-table-dia-indent-from-left {
3637
+ right: 45px;
3638
+ }
3639
+
3640
+ .e-de-table-dia-align-div {
3641
+ border: 1px solid #ddd;
3642
+ display: inline-block;
3643
+ height: 52px;
3644
+ margin-right: 10px;
3645
+ width: 52px;
3646
+ }
3647
+
3648
+ .e-de-table-dialog-alignment-icon {
3649
+ margin: 2px;
3650
+ height: 46px;
3651
+ }
3652
+
3653
+ .e-de-table-border-setting-genral {
3654
+ margin-right: 10px;
3655
+ }
3656
+
3657
+ .e-de-table-border-clr-left-container {
3658
+ padding-right: 19px;
3659
+ }
3660
+
3661
+ .e-de-table-border-clr-heading {
3662
+ font-size: 14px;
3663
+ font-weight: normal;
3664
+ padding-bottom: 2px;
3665
+ }
3666
+
3667
+ .e-de-table-border-icon-container {
3668
+ margin-top: 4px;
3669
+ margin-right: 4px;
3670
+ }
3671
+
3672
+ .e-de-table-border-preview-container {
3673
+ padding-left: 76px;
3674
+ }
3675
+
3676
+ .e-de-table-dlg-alignment-heading {
3677
+ color: #212529;
3678
+ display: block;
3679
+ font-size: 16px;
3680
+ font-weight: 400;
3681
+ margin-bottom: 2px;
3682
+ }
3683
+
3609
3684
  .e-rtl .e-de-cmt-author-name {
3610
3685
  padding-left: 0%;
3611
3686
  padding-right: 8px;
3612
3687
  }
3688
+ .e-rtl .e-de-ok-button {
3689
+ margin-right: 0;
3690
+ margin-left: 8px;
3691
+ }
3692
+ .e-rtl .e-de-table-dia-align-div.e-de-rtl {
3693
+ margin-left: 10px;
3694
+ margin-right: 0;
3695
+ }
3696
+ .e-rtl .e-de-table-border-clr-left-container {
3697
+ padding-right: 0;
3698
+ padding-left: 19px;
3699
+ }
3700
+ .e-rtl .e-de-table-border-preview-container {
3701
+ padding-right: 76px;
3702
+ padding-left: 0;
3703
+ }
3704
+ .e-rtl .e-de-table-border-setting-genral {
3705
+ margin-right: 0;
3706
+ margin-left: 10px;
3707
+ }
3708
+ .e-rtl .e-de-table-border-icon-container {
3709
+ margin-right: 0;
3710
+ margin-left: 4px;
3711
+ }
3712
+ .e-rtl .e-de-table-border-preview {
3713
+ width: 23px;
3714
+ }
3715
+ .e-rtl .e-de-table-setting-labels-heading {
3716
+ margin-left: 0;
3717
+ margin-right: 10px;
3718
+ }
3719
+
3613
3720
  .e-bigger .e-de-cmt-author-name {
3614
3721
  padding-left: 8px;
3615
3722
  }
@@ -1 +1,4 @@
1
- @import 'ej2-documenteditor/styles/document-editor/bootstrap4.scss';
1
+ @import 'ej2-base/styles/bootstrap4-definition.scss';
2
+ @import 'bootstrap4-definition.scss';
3
+ @import 'icons/bootstrap4.scss';
4
+ @import 'all.scss';