@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
@@ -162,25 +162,23 @@
162
162
 
163
163
  .e-de-table-border-setting {
164
164
  border: 1px solid #d1d5db;
165
- height: 48px;
165
+ height: 40px;
166
166
  left: 5px;
167
167
  position: relative;
168
168
  top: 5px;
169
- width: 48px;
169
+ width: 40px;
170
170
  }
171
171
 
172
172
  .e-de-table-border-setting-genral {
173
173
  border: 1px solid #6b7280;
174
- display: inline-block;
175
- height: 60px;
176
- width: 60px;
174
+ height: 52px;
175
+ width: 52px;
177
176
  }
178
177
 
179
178
  .e-de-table-border-preview-genral {
180
179
  border: 1px solid #6b7280;
181
- display: inline-block;
182
- height: 25px;
183
- width: 25px;
180
+ height: 24px;
181
+ width: 24px;
184
182
  }
185
183
 
186
184
  .e-de-table-border-inside-setting:hover {
@@ -207,14 +205,14 @@
207
205
  .e-de-table-border-none-setting::before {
208
206
  color: #6b7280;
209
207
  content: "\e7eb";
210
- font-size: 46px;
208
+ font-size: 38px;
211
209
  position: absolute;
212
210
  }
213
211
 
214
212
  .e-de-table-border-box-setting::before {
215
213
  color: #6b7280;
216
214
  content: "\e834";
217
- font-size: 42px;
215
+ font-size: 34px;
218
216
  left: 2px;
219
217
  position: absolute;
220
218
  top: 2px;
@@ -224,7 +222,7 @@
224
222
  color: #6b7280;
225
223
  content: "\e7e8";
226
224
  font-family: "e-icons";
227
- font-size: 42px;
225
+ font-size: 34px;
228
226
  left: 2px;
229
227
  position: absolute;
230
228
  top: 2px;
@@ -233,7 +231,41 @@
233
231
  .e-de-table-border-custom-setting::before {
234
232
  color: #6b7280;
235
233
  content: "\e7d5";
236
- font-size: 42px;
234
+ font-size: 34px;
235
+ left: 2px;
236
+ position: absolute;
237
+ top: 2px;
238
+ }
239
+
240
+ .e-de-para-border-none-setting::before {
241
+ color: #6b7280;
242
+ content: "\e890";
243
+ font-size: 38px;
244
+ position: absolute;
245
+ }
246
+
247
+ .e-de-para-border-box-setting::before {
248
+ color: #6b7280;
249
+ content: "\e891";
250
+ font-size: 34px;
251
+ left: 2px;
252
+ position: absolute;
253
+ top: 2px;
254
+ }
255
+
256
+ .e-de-para-border-shadow-setting::before {
257
+ color: #6b7280;
258
+ content: "\e892";
259
+ font-size: 34px;
260
+ left: 2px;
261
+ position: absolute;
262
+ top: 2px;
263
+ }
264
+
265
+ .e-de-para-border-custom-setting::before {
266
+ color: #6b7280;
267
+ content: "\e88f";
268
+ font-size: 34px;
237
269
  left: 2px;
238
270
  position: absolute;
239
271
  top: 2px;
@@ -244,72 +276,72 @@
244
276
  content: "\e7e0";
245
277
  font-family: "e-icons";
246
278
  font-size: 16px;
247
- left: 4px;
279
+ left: 5px;
248
280
  position: absolute;
249
- top: 0;
281
+ top: 2px;
250
282
  }
251
283
 
252
284
  .e-de-table-border-topcenter-alignment::before {
253
285
  color: #6b7280;
254
286
  content: "\e83b";
255
287
  font-size: 16px;
256
- left: 4px;
288
+ left: 5px;
257
289
  position: absolute;
258
- top: 0;
290
+ top: 2px;
259
291
  }
260
292
 
261
293
  .e-de-table-border-topbottom-alignment::before {
262
294
  color: #6b7280;
263
295
  content: "\e766";
264
296
  font-size: 16px;
265
- left: 4px;
297
+ left: 5px;
266
298
  position: absolute;
267
- top: 0;
299
+ top: 2px;
268
300
  }
269
301
 
270
302
  .e-de-table-border-diagionalup-alignment::before {
271
303
  color: #6b7280;
272
304
  content: "\e79d";
273
305
  font-size: 16px;
274
- left: 4px;
306
+ left: 5px;
275
307
  position: absolute;
276
- top: 0;
308
+ top: 2px;
277
309
  }
278
310
 
279
311
  .e-de-table-border-diagionaldown-alignment::before {
280
312
  color: #6b7280;
281
313
  content: "\e784";
282
314
  font-size: 16px;
283
- left: 4px;
315
+ left: 5px;
284
316
  position: absolute;
285
- top: 0;
317
+ top: 2px;
286
318
  }
287
319
 
288
320
  .e-de-table-border-bottomleft-alignment::before {
289
321
  color: #6b7280;
290
322
  content: "\e806";
291
323
  font-size: 16px;
292
- left: 4px;
324
+ left: 5px;
293
325
  position: absolute;
294
- top: 0;
326
+ top: 2px;
295
327
  }
296
328
 
297
329
  .e-de-table-border-bottomcenter-alignment::before {
298
330
  color: #6b7280;
299
331
  content: "\e792";
300
332
  font-size: 16px;
301
- left: 4px;
333
+ left: 5px;
302
334
  position: absolute;
303
- top: 0;
335
+ top: 2px;
304
336
  }
305
337
 
306
338
  .e-de-table-border-bottomright-alignment::before {
307
339
  color: #6b7280;
308
340
  content: "\e7ab";
309
341
  font-size: 16px;
310
- left: 4px;
342
+ left: 5px;
311
343
  position: absolute;
312
- top: 0;
344
+ top: 2px;
313
345
  }
314
346
 
315
347
  .e-menu-item .e-de-cmt-add::before {
@@ -745,7 +777,7 @@
745
777
  .e-documenteditor .e-de-op-close-button {
746
778
  left: 267px;
747
779
  position: absolute;
748
- top: 10px;
780
+ top: 12px;
749
781
  }
750
782
  .e-documenteditor .e-de-op-close-button.e-de-rtl {
751
783
  left: 14px;
@@ -950,7 +982,7 @@
950
982
  display: block;
951
983
  font-size: 14px;
952
984
  font-weight: 500;
953
- margin-bottom: 8px !important;
985
+ margin-bottom: 8px;
954
986
  }
955
987
 
956
988
  .e-content-placeholder.e-documenteditor.e-placeholder-documenteditor {
@@ -966,18 +998,18 @@
966
998
  }
967
999
 
968
1000
  .e-de-toc-modify-button {
969
- margin-left: 162px;
1001
+ margin-left: 156px;
970
1002
  margin-top: 10px;
971
1003
  }
972
1004
 
973
1005
  .e-de-toc-modify-button.e-de-rtl {
974
1006
  margin-left: 0;
975
- margin-right: 180px;
1007
+ margin-right: 156px;
976
1008
  }
977
1009
 
978
1010
  .e-de-toc-dlg-container {
979
1011
  height: 454px;
980
- width: 500px;
1012
+ width: 550px;
981
1013
  }
982
1014
 
983
1015
  .e-de-toc-dlg-sub-container {
@@ -988,15 +1020,12 @@
988
1020
  border: 1px solid #d1d5db;
989
1021
  border-radius: 3px;
990
1022
  font-size: 12px;
991
- height: 174px;
992
- margin-left: 38px;
1023
+ height: 186px;
993
1024
  overflow-y: scroll;
994
- width: 209px;
995
1025
  }
996
1026
 
997
1027
  .e-de-toc-list-view.e-de-rtl {
998
1028
  margin-left: 0;
999
- margin-right: 38px;
1000
1029
  }
1001
1030
 
1002
1031
  .e-de-toc-dlg-sub-heading {
@@ -1176,8 +1205,7 @@
1176
1205
  margin-right: 20px;
1177
1206
  }
1178
1207
 
1179
- .e-de-restrict-pane,
1180
- .e-de-op {
1208
+ .e-de-restrict-pane {
1181
1209
  border-right: 1px solid #d1d5db;
1182
1210
  padding-left: 12px;
1183
1211
  padding-top: 12px;
@@ -1186,6 +1214,14 @@
1186
1214
  width: 300px;
1187
1215
  }
1188
1216
 
1217
+ .e-de-op {
1218
+ border-right: 1px solid #d1d5db;
1219
+ padding-left: 12px;
1220
+ padding-right: 12px;
1221
+ position: relative;
1222
+ width: 300px;
1223
+ }
1224
+
1189
1225
  .e-de-op.e-de-rtl {
1190
1226
  padding-left: 0;
1191
1227
  padding-right: 12px;
@@ -1196,17 +1232,19 @@
1196
1232
  font-family: inherit;
1197
1233
  font-size: 15px;
1198
1234
  font-weight: 500;
1199
- margin-bottom: 0;
1235
+ margin-bottom: 12px;
1236
+ padding-top: 12px;
1200
1237
  line-height: 24px;
1201
1238
  }
1202
1239
 
1203
1240
  .e-de-op-header.e-de-rtl {
1204
1241
  direction: rtl;
1242
+ text-align: right;
1205
1243
  }
1206
1244
 
1207
1245
  .e-de-op-tab {
1208
1246
  border: 0;
1209
- height: 40px;
1247
+ height: auto;
1210
1248
  background: transparent;
1211
1249
  }
1212
1250
 
@@ -1235,7 +1273,6 @@
1235
1273
  }
1236
1274
 
1237
1275
  .e-de-op-replacetabcontentdiv {
1238
- height: 82px;
1239
1276
  margin-top: 12px;
1240
1277
  }
1241
1278
 
@@ -1264,7 +1301,7 @@ label[for*=_wholeWord_e-de-rtl] {
1264
1301
  .e-de-table-border-heading {
1265
1302
  font-size: 16px;
1266
1303
  font-weight: 500;
1267
- padding-bottom: 15px;
1304
+ padding-bottom: 8px;
1268
1305
  color: #6b7280;
1269
1306
  }
1270
1307
 
@@ -1283,6 +1320,7 @@ label[for*=_wholeWord_e-de-rtl] {
1283
1320
  .e-de-table-setting-labels-heading {
1284
1321
  font-size: 12px;
1285
1322
  font-weight: 500;
1323
+ margin-left: 10px;
1286
1324
  }
1287
1325
 
1288
1326
  .e-de-table-element-subheading {
@@ -1293,13 +1331,15 @@ label[for*=_wholeWord_e-de-rtl] {
1293
1331
 
1294
1332
  .e-de-border-dlg-preview-div {
1295
1333
  border: 1px solid rgba(0, 0, 0, 0.54);
1334
+ width: 80px;
1335
+ height: 80px;
1296
1336
  }
1297
1337
 
1298
1338
  .e-de-border-dlg-preview-inside-divs {
1299
1339
  opacity: 0.54;
1300
1340
  }
1301
1341
 
1302
- .e-de-table-dia-align-div {
1342
+ .e-de-tablecell-dia-align-div {
1303
1343
  border: 1px solid #d1d5db;
1304
1344
  display: inline-block;
1305
1345
  height: 60px;
@@ -1307,7 +1347,7 @@ label[for*=_wholeWord_e-de-rtl] {
1307
1347
  width: 60px;
1308
1348
  }
1309
1349
 
1310
- .e-de-table-dia-align-div.e-de-rtl {
1350
+ .e-de-tablecell-dia-align-div.e-de-rtl {
1311
1351
  margin-left: 11px;
1312
1352
  margin-right: 0;
1313
1353
  }
@@ -1335,16 +1375,8 @@ label[for*=_wholeWord_e-de-rtl] {
1335
1375
  border: 1px solid #4f46e5;
1336
1376
  }
1337
1377
 
1338
- .e-de-table-dialog-options-label {
1339
- font-size: 14px;
1340
- font-weight: 500;
1341
- padding-bottom: 12px;
1378
+ .e-de-table-dialog-size-label {
1342
1379
  padding-top: 16px !important;
1343
- color: #6b7280;
1344
- }
1345
-
1346
- .e-de-table-dialog-options-label.e-de-table-dialog-size-label {
1347
- padding-top: 0 !important;
1348
1380
  }
1349
1381
 
1350
1382
  .e-de-list-ddl-header {
@@ -1399,6 +1431,7 @@ label[for*=_wholeWord_e-de-rtl] {
1399
1431
  }
1400
1432
 
1401
1433
  .e-de-tbl-dlg-border-btn.e-de-rtl {
1434
+ float: left;
1402
1435
  margin-right: 0;
1403
1436
  }
1404
1437
 
@@ -1520,7 +1553,7 @@ label[for*=_wholeWord_e-de-rtl] {
1520
1553
  .e-documenteditor .e-de-op-close-button {
1521
1554
  left: 250px;
1522
1555
  position: absolute;
1523
- top: 10px;
1556
+ top: 12px;
1524
1557
  }
1525
1558
 
1526
1559
  .e-bigger .e-de-table-properties-dlg {
@@ -1579,7 +1612,6 @@ label[for*=_wholeWord_e-de-rtl] {
1579
1612
  .e-bigger .e-de-cmt-date {
1580
1613
  font-size: 14px !important;
1581
1614
  }
1582
- .e-bigger .e-de-table-dialog-options-label,
1583
1615
  .e-bigger .e-de-table-setting-heading,
1584
1616
  .e-bigger .e-de-cell-dia-options-label,
1585
1617
  .e-bigger .e-de-style-formatting,
@@ -1610,7 +1642,6 @@ label[for*=_wholeWord_e-de-rtl] {
1610
1642
  }
1611
1643
  .e-bigger .e-de-op {
1612
1644
  padding-left: 16px;
1613
- padding-top: 16px;
1614
1645
  padding-right: 16px;
1615
1646
  width: 308px;
1616
1647
  }
@@ -1640,11 +1671,7 @@ label[for*=_wholeWord_e-de-rtl] {
1640
1671
  margin-right: 12px;
1641
1672
  }
1642
1673
  .e-bigger .e-de-font-clr-div,
1643
- .e-bigger .e-de-toc-dlg-build-table,
1644
1674
  .e-bigger .e-de-toc-dlg-styles,
1645
- .e-bigger .e-de-tbl-dlg-border-btn {
1646
- margin-top: 20px;
1647
- }
1648
1675
  .e-bigger .e-de-font-dlg-padding,
1649
1676
  .e-bigger .e-de-page-setup-dlg-sub-title-header,
1650
1677
  .e-bigger .e-de-op-result-container .e-de-list-ddl-subheaderbottom,
@@ -1653,15 +1680,6 @@ label[for*=_wholeWord_e-de-rtl] {
1653
1680
  .e-bigger .e-de-op-dlg-footer {
1654
1681
  margin-top: 16px;
1655
1682
  }
1656
- .e-bigger .e-de-table-ppty-dlg-left-indent-container {
1657
- bottom: 14px;
1658
- }
1659
- .e-bigger .e-de-table-ppty-dlg-left-indent-container {
1660
- left: 50px;
1661
- }
1662
- .e-bigger .e-de-table-ppty-dlg-left-indent-container.e-de-rtl {
1663
- right: 50px;
1664
- }
1665
1683
  .e-bigger .e-de-ff-drpdwn-mvdn,
1666
1684
  .e-bigger .e-de-ff-drpdwn-mvup {
1667
1685
  width: 46px !important;
@@ -1683,7 +1701,13 @@ label[for*=_wholeWord_e-de-rtl] {
1683
1701
  height: 38px;
1684
1702
  }
1685
1703
  .e-bigger .e-de-toc-dlg-container {
1686
- width: 525px;
1704
+ width: 640px;
1705
+ }
1706
+ .e-bigger .e-de-toc-styles-table-div {
1707
+ height: 195px;
1708
+ }
1709
+ .e-bigger .e-de-toc-table-div {
1710
+ height: 127px;
1687
1711
  }
1688
1712
  .e-bigger .e-de-toc-list-view {
1689
1713
  height: 204px;
@@ -1724,9 +1748,6 @@ label[for*=_wholeWord_e-de-rtl] {
1724
1748
  }
1725
1749
  .e-bigger .e-de-list-ddl-subheader,
1726
1750
  .e-bigger .e-de-cell-dia-label-common,
1727
- .e-bigger .e-de-table-ppty-options-break {
1728
- margin-top: 12px;
1729
- }
1730
1751
  .e-bigger .e-de-page-setup-dlg-sub-container-port {
1731
1752
  margin-top: 42px;
1732
1753
  }
@@ -2283,7 +2304,6 @@ label[for*=_wholeWord_e-de-rtl] {
2283
2304
  }
2284
2305
 
2285
2306
  .e-de-search-tab-content {
2286
- margin-right: 12px;
2287
2307
  margin-top: 12px;
2288
2308
  width: 275px;
2289
2309
  }
@@ -2316,21 +2336,35 @@ label[for*=_wholeWord_e-de-rtl] {
2316
2336
  font-weight: 500;
2317
2337
  }
2318
2338
 
2339
+ .e-bigger .e-de-insert-spellchecker {
2340
+ width: 600px;
2341
+ }
2342
+
2319
2343
  .e-de-dlg-spellcheck-listview {
2320
2344
  height: 122px !important;
2345
+ margin-right: 12px;
2321
2346
  margin-top: 8px;
2322
2347
  position: relative;
2323
2348
  float: left;
2324
- width: 343px !important;
2349
+ width: 100%;
2350
+ }
2351
+
2352
+ .e-de-dlg-spellcheck-listview.e-de-rtl {
2353
+ float: right;
2325
2354
  }
2326
2355
 
2327
2356
  .e-de-spellcheck-error-container {
2328
2357
  height: 140px;
2329
2358
  margin-bottom: 16px;
2359
+ display: -ms-flexbox;
2360
+ display: flex;
2330
2361
  }
2331
2362
 
2332
2363
  .e-de-spellcheck-suggestion-container {
2333
2364
  height: 140px;
2365
+ margin-bottom: 16px;
2366
+ display: -ms-flexbox;
2367
+ display: flex;
2334
2368
  }
2335
2369
 
2336
2370
  .e-dlg-spellcheck-listitem {
@@ -2340,13 +2374,17 @@ label[for*=_wholeWord_e-de-rtl] {
2340
2374
  .e-de-spellcheck-btncontainer {
2341
2375
  margin-top: 8px;
2342
2376
  position: relative;
2343
- width: 154px;
2377
+ width: 100%;
2344
2378
  float: right;
2345
2379
  }
2346
2380
 
2381
+ .e-de-spellcheck-btncontainer.e-de-rtl {
2382
+ float: left;
2383
+ }
2384
+
2347
2385
  .e-de-spellcheck-btn {
2348
2386
  margin-bottom: 8px;
2349
- width: 154px;
2387
+ width: 100%;
2350
2388
  }
2351
2389
 
2352
2390
  .e-de-dlg-spellchecker-subheader {
@@ -2374,7 +2412,6 @@ label[for*=_wholeWord_e-de-rtl] {
2374
2412
  }
2375
2413
 
2376
2414
  .e-de-table-border-shading-dlg {
2377
- height: 438px;
2378
2415
  width: 460px;
2379
2416
  }
2380
2417
 
@@ -2531,7 +2568,7 @@ label[for*=_wholeWord_e-de-rtl] {
2531
2568
  .e-de-table-border-bottomcenter-alignment,
2532
2569
  .e-de-table-border-bottomright-alignment {
2533
2570
  left: 48%;
2534
- position: absolute;
2571
+ position: relative;
2535
2572
  top: 59%;
2536
2573
  transform: translate(-50%, -50%);
2537
2574
  }
@@ -2655,8 +2692,7 @@ label[for*=_wholeWord_e-de-rtl] {
2655
2692
 
2656
2693
  .e-de-op-replace-messagediv {
2657
2694
  color: #111827;
2658
- position: absolute;
2659
- top: 144px;
2695
+ top: auto;
2660
2696
  }
2661
2697
 
2662
2698
  .e-de-font-content-label .e-label,
@@ -2725,16 +2761,6 @@ label[for*=_wholeWord_e-de-rtl] {
2725
2761
  margin-right: 12px;
2726
2762
  }
2727
2763
 
2728
- .e-de-table-ppty-dlg-left-indent-container {
2729
- bottom: 8px;
2730
- left: 46px;
2731
- position: relative;
2732
- }
2733
-
2734
- .e-de-table-ppty-dlg-left-indent-container.e-de-rtl {
2735
- right: 46px;
2736
- }
2737
-
2738
2764
  .e-de-table-ppty-dlg-row-height-label {
2739
2765
  float: right;
2740
2766
  margin-right: 184px;
@@ -2840,10 +2866,6 @@ label[for*=_wholeWord_e-de-rtl] {
2840
2866
  margin-right: 38px;
2841
2867
  }
2842
2868
 
2843
- .e-de-toc-dlg-build-table {
2844
- margin-top: 16px;
2845
- }
2846
-
2847
2869
  .e-de-toc-table-div .e-de-toc-dlg-toc-level {
2848
2870
  height: 24px;
2849
2871
  margin-left: 36px;
@@ -2853,8 +2875,9 @@ label[for*=_wholeWord_e-de-rtl] {
2853
2875
  .e-de-toc-styles-table-div {
2854
2876
  border: 1px solid #d1d5db;
2855
2877
  border-radius: 3px;
2856
- margin-top: 15px;
2857
- width: 213px;
2878
+ margin-top: 10px;
2879
+ width: 100%;
2880
+ height: 183px;
2858
2881
  }
2859
2882
 
2860
2883
  .e-de-toc-dlg-sub-level-heading {
@@ -2864,7 +2887,7 @@ label[for*=_wholeWord_e-de-rtl] {
2864
2887
  .e-de-toc-table-div {
2865
2888
  height: 143px;
2866
2889
  overflow-y: scroll;
2867
- width: 211px;
2890
+ width: 100%;
2868
2891
  }
2869
2892
 
2870
2893
  .e-de-toc-dlg-style-input {
@@ -3011,15 +3034,6 @@ label[for*=_wholeWord_e-de-rtl] {
3011
3034
  padding: 0;
3012
3035
  }
3013
3036
 
3014
- .e-de-table-border-fill.e-de-rtl {
3015
- margin-left: 15px;
3016
- }
3017
-
3018
- .e-de-table-border-fill:not(.e-de-rtl) {
3019
- margin-right: 15px;
3020
- margin-top: 5px;
3021
- }
3022
-
3023
3037
  .e-de-table-ppty-dlg-tabs {
3024
3038
  height: 280px;
3025
3039
  position: relative;
@@ -3055,7 +3069,6 @@ label[for*=_wholeWord_e-de-rtl] {
3055
3069
  .e-de-tbl-rtl-btn-div {
3056
3070
  font-size: 12px;
3057
3071
  margin-right: 14px;
3058
- width: 140px;
3059
3072
  }
3060
3073
 
3061
3074
  .e-de-tbl-rtl-btn-div.e-de-rtl {
@@ -3065,7 +3078,6 @@ label[for*=_wholeWord_e-de-rtl] {
3065
3078
 
3066
3079
  .e-de-tbl-ltr-btn-div {
3067
3080
  font-size: 12px;
3068
- width: 140px;
3069
3081
  }
3070
3082
 
3071
3083
  .e-de-disabledbutton {
@@ -3097,11 +3109,11 @@ label[for*=_wholeWord_e-de-rtl] {
3097
3109
  width: 90px;
3098
3110
  }
3099
3111
  .e-bigger .e-de-toc-label {
3100
- margin-left: 0;
3112
+ margin-left: 0px;
3101
3113
  }
3102
3114
  .e-bigger .e-de-toc-label-rtl {
3103
3115
  margin-left: 0px;
3104
- margin-right: 0;
3116
+ margin-right: 0px;
3105
3117
  }
3106
3118
  .e-bigger .e-de-outline-rtl {
3107
3119
  width: 173px;
@@ -3384,34 +3396,26 @@ label[for*=_wholeWord_e-de-rtl] {
3384
3396
  }
3385
3397
 
3386
3398
  .e-btn.e-outline.e-de-track-accept-button {
3387
- border-color: #4d841e;
3388
- background-color: transparent;
3389
- color: #4d841e;
3399
+ min-width: 66px;
3390
3400
  padding: 5px 4px;
3391
3401
  text-transform: initial;
3392
3402
  }
3393
3403
 
3394
3404
  .e-btn.e-outline.e-de-track-accept-button:hover {
3395
- border-color: transparent;
3396
- background-color: #15803d;
3397
- color: #fff;
3405
+ min-width: 66px;
3398
3406
  padding: 5px 4px;
3399
3407
  text-transform: initial;
3400
3408
  }
3401
3409
 
3402
3410
  .e-btn.e-outline.e-de-track-reject-button {
3403
- border-color: #dc2626;
3404
- background-color: transparent;
3405
- color: #dc2626;
3411
+ min-width: 64px;
3406
3412
  padding: 5px 6px;
3407
3413
  margin-left: 8px;
3408
3414
  text-transform: initial;
3409
3415
  }
3410
3416
 
3411
3417
  .e-btn.e-outline.e-de-track-reject-button:hover {
3412
- border-color: transparent;
3413
- background-color: #dc2626;
3414
- color: #fff;
3418
+ min-width: 64px;
3415
3419
  padding: 5px 6px;
3416
3420
  margin-left: 8px;
3417
3421
  text-transform: initial;
@@ -3475,13 +3479,13 @@ label[for*=_wholeWord_e-de-rtl] {
3475
3479
  .e-de-track-chng-table {
3476
3480
  border-collapse: collapse;
3477
3481
  border-spacing: 0px;
3478
- height: 20px;
3479
3482
  opacity: 70%;
3480
3483
  width: 100%;
3481
3484
  }
3482
3485
 
3483
3486
  .e-de-tc-tble-cell {
3484
3487
  border: 1px solid;
3488
+ height: 20px;
3485
3489
  }
3486
3490
 
3487
3491
  .e-de-tc-shrink-img {
@@ -3615,7 +3619,7 @@ label[for*=_wholeWord_e-de-rtl] {
3615
3619
 
3616
3620
  .e-de-lock-mark {
3617
3621
  cursor: default;
3618
- color: #000;
3622
+ color: #6b7280;
3619
3623
  font-size: 13px;
3620
3624
  height: 13px;
3621
3625
  pointer-events: all;
@@ -3624,7 +3628,7 @@ label[for*=_wholeWord_e-de-rtl] {
3624
3628
 
3625
3629
  .e-de-cmt-mark {
3626
3630
  cursor: default;
3627
- color: #000;
3631
+ color: #6b7280;
3628
3632
  font-size: 13px;
3629
3633
  height: 13px;
3630
3634
  pointer-events: all;
@@ -3771,6 +3775,65 @@ label[for*=_wholeWord_e-de-rtl] {
3771
3775
  margin-top: 3px;
3772
3776
  }
3773
3777
 
3778
+ .e-de-table-dialog-row-height {
3779
+ padding-top: 24px;
3780
+ }
3781
+
3782
+ .e-de-tablecell-dialog-alignment-icon {
3783
+ width: 54px;
3784
+ height: 54px;
3785
+ margin: 2px;
3786
+ }
3787
+
3788
+ .e-de-table-dia-indent-from-left {
3789
+ right: 45px;
3790
+ }
3791
+
3792
+ .e-de-table-dia-align-div {
3793
+ border: 1px solid #d1d5db;
3794
+ display: inline-block;
3795
+ height: 52px;
3796
+ margin-right: 11px;
3797
+ width: 52px;
3798
+ }
3799
+
3800
+ .e-de-table-dialog-alignment-icon {
3801
+ margin: 2px;
3802
+ height: 46px;
3803
+ }
3804
+
3805
+ .e-de-table-border-setting-genral {
3806
+ margin-right: 11px;
3807
+ }
3808
+
3809
+ .e-de-table-border-clr-left-container {
3810
+ padding-right: 19px;
3811
+ }
3812
+
3813
+ .e-de-table-border-clr-heading {
3814
+ font-size: 12px;
3815
+ font-weight: 500;
3816
+ padding-bottom: 4px;
3817
+ }
3818
+
3819
+ .e-de-table-border-icon-container {
3820
+ margin-top: 4px;
3821
+ margin-right: 4px;
3822
+ }
3823
+
3824
+ .e-de-table-border-preview-container {
3825
+ padding-left: 72px;
3826
+ }
3827
+
3828
+ .e-de-table-dlg-alignment-heading {
3829
+ color: #6b7280;
3830
+ display: block;
3831
+ font-size: 14px;
3832
+ font-weight: 500;
3833
+ margin-bottom: 2px;
3834
+ line-height: 22px;
3835
+ }
3836
+
3774
3837
  .e-rtl .e-de-cmt-author-name {
3775
3838
  padding-left: 0%;
3776
3839
  padding-right: 12px;
@@ -3780,6 +3843,37 @@ label[for*=_wholeWord_e-de-rtl] {
3780
3843
  padding-bottom: 7px;
3781
3844
  padding-right: 9px;
3782
3845
  }
3846
+ .e-rtl .e-de-ok-button {
3847
+ margin-right: 0;
3848
+ margin-left: 8px;
3849
+ }
3850
+ .e-rtl .e-de-table-dia-align-div.e-de-rtl {
3851
+ margin-left: 11px;
3852
+ margin-right: 0;
3853
+ }
3854
+ .e-rtl .e-de-table-border-clr-left-container {
3855
+ padding-right: 0;
3856
+ padding-left: 19px;
3857
+ }
3858
+ .e-rtl .e-de-table-border-preview-container {
3859
+ padding-right: 72px;
3860
+ padding-left: 0;
3861
+ }
3862
+ .e-rtl .e-de-table-border-setting-genral {
3863
+ margin-right: 0;
3864
+ margin-left: 11px;
3865
+ }
3866
+ .e-rtl .e-de-table-border-icon-container {
3867
+ margin-right: 0;
3868
+ margin-left: 4px;
3869
+ }
3870
+ .e-rtl .e-de-table-border-preview {
3871
+ width: 23px;
3872
+ }
3873
+ .e-rtl .e-de-table-setting-labels-heading {
3874
+ margin-left: 0;
3875
+ margin-right: 10px;
3876
+ }
3783
3877
 
3784
3878
  .e-bigger .e-de-cmt-author-name {
3785
3879
  padding-left: 16px;