@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
@@ -150,25 +150,23 @@
150
150
 
151
151
  .e-de-table-border-setting {
152
152
  border: 1px solid #333;
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 rgba(0, 0, 0, 0.26);
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 rgba(0, 0, 0, 0.26);
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: "\e940";
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: "\e942";
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: "\e945";
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: 0;
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: 0;
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: 0;
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: 0;
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: 0;
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: 0;
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: 0;
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: 0;
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: 6px;
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: 162px;
998
+ margin-left: 156px;
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: 180px;
1004
+ margin-right: 156px;
977
1005
  }
978
1006
 
979
1007
  .e-de-toc-dlg-container {
980
1008
  height: 454px;
981
- width: 488px;
1009
+ width: 550px;
982
1010
  }
983
1011
 
984
1012
  .e-de-toc-dlg-sub-container {
@@ -989,15 +1017,12 @@
989
1017
  border: 1px solid #c3c3c3;
990
1018
  border-radius: 3px;
991
1019
  font-size: 12px;
992
- height: 174px;
993
- margin-left: 38px;
1020
+ height: 183px;
994
1021
  overflow-y: scroll;
995
- width: 209px;
996
1022
  }
997
1023
 
998
1024
  .e-de-toc-list-view.e-de-rtl {
999
1025
  margin-left: 0;
1000
- margin-right: 38px;
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 #e6e6e6;
1193
1217
  padding-left: 15px;
1194
1218
  padding-top: 22px;
@@ -1197,6 +1221,14 @@
1197
1221
  width: 300px;
1198
1222
  }
1199
1223
 
1224
+ .e-de-op {
1225
+ border-right: 1px solid #e6e6e6;
1226
+ padding-left: 15px;
1227
+ padding-right: 15px;
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: 15px;
@@ -1207,16 +1239,18 @@
1207
1239
  font-family: "Helvetica";
1208
1240
  font-size: 15px;
1209
1241
  font-weight: 500;
1210
- margin-bottom: 5px;
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 {
@@ -1247,7 +1281,6 @@
1247
1281
  }
1248
1282
 
1249
1283
  .e-de-op-replacetabcontentdiv {
1250
- height: 82px;
1251
1284
  margin-top: 14px;
1252
1285
  }
1253
1286
 
@@ -1293,6 +1326,7 @@ label[for*=_wholeWord_e-de-rtl] {
1293
1326
  .e-de-table-setting-labels-heading {
1294
1327
  font-size: 12px;
1295
1328
  font-weight: normal;
1329
+ margin-left: 10px;
1296
1330
  }
1297
1331
 
1298
1332
  .e-de-table-element-subheading {
@@ -1302,13 +1336,15 @@ label[for*=_wholeWord_e-de-rtl] {
1302
1336
 
1303
1337
  .e-de-border-dlg-preview-div {
1304
1338
  border: 1px solid rgba(0, 0, 0, 0.54);
1339
+ width: 80px;
1340
+ height: 80px;
1305
1341
  }
1306
1342
 
1307
1343
  .e-de-border-dlg-preview-inside-divs {
1308
1344
  opacity: 0.54;
1309
1345
  }
1310
1346
 
1311
- .e-de-table-dia-align-div {
1347
+ .e-de-tablecell-dia-align-div {
1312
1348
  border: 1px solid #ddd;
1313
1349
  display: inline-block;
1314
1350
  height: 60px;
@@ -1316,7 +1352,7 @@ label[for*=_wholeWord_e-de-rtl] {
1316
1352
  width: 60px;
1317
1353
  }
1318
1354
 
1319
- .e-de-table-dia-align-div.e-de-rtl {
1355
+ .e-de-tablecell-dia-align-div.e-de-rtl {
1320
1356
  margin-left: 10px;
1321
1357
  margin-right: 0;
1322
1358
  }
@@ -1344,10 +1380,7 @@ label[for*=_wholeWord_e-de-rtl] {
1344
1380
  border: 1px solid #317ab9;
1345
1381
  }
1346
1382
 
1347
- .e-de-table-dialog-options-label {
1348
- font-size: 14px;
1349
- font-weight: 400;
1350
- padding-bottom: 10px;
1383
+ .e-de-table-dialog-size-label {
1351
1384
  padding-top: 10px !important;
1352
1385
  }
1353
1386
 
@@ -1401,6 +1434,7 @@ label[for*=_wholeWord_e-de-rtl] {
1401
1434
  }
1402
1435
 
1403
1436
  .e-de-tbl-dlg-border-btn.e-de-rtl {
1437
+ float: left;
1404
1438
  margin-right: 0;
1405
1439
  }
1406
1440
 
@@ -1522,7 +1556,7 @@ label[for*=_wholeWord_e-de-rtl] {
1522
1556
  .e-documenteditor .e-de-op-close-button {
1523
1557
  left: 250px;
1524
1558
  position: absolute;
1525
- top: 18px;
1559
+ top: 6px;
1526
1560
  }
1527
1561
 
1528
1562
  .e-de-restrict-pane {
@@ -1530,7 +1564,7 @@ label[for*=_wholeWord_e-de-rtl] {
1530
1564
  }
1531
1565
 
1532
1566
  .e-de-op.e-de-rtl .e-de-search-tab-content {
1533
- margin-left: 20px;
1567
+ margin-left: 12px;
1534
1568
  margin-right: 0;
1535
1569
  }
1536
1570
 
@@ -1893,8 +1927,7 @@ label[for*=_wholeWord_e-de-rtl] {
1893
1927
  }
1894
1928
 
1895
1929
  .e-de-search-tab-content {
1896
- margin-right: 20px;
1897
- margin-top: 20px;
1930
+ margin-top: 12px;
1898
1931
  width: 275px;
1899
1932
  }
1900
1933
 
@@ -1926,23 +1959,37 @@ label[for*=_wholeWord_e-de-rtl] {
1926
1959
  font-weight: normal;
1927
1960
  }
1928
1961
 
1962
+ .e-bigger .e-de-insert-spellchecker {
1963
+ width: 600px;
1964
+ }
1965
+
1929
1966
  .e-de-dlg-spellcheck-listview {
1930
1967
  border: 1px solid #e4e4e4;
1931
1968
  border-radius: 2px !important;
1932
1969
  height: 122px !important;
1970
+ margin-right: 14px;
1933
1971
  margin-top: 8px;
1934
1972
  position: relative;
1935
1973
  float: left;
1936
- width: 343px !important;
1974
+ width: 100%;
1975
+ }
1976
+
1977
+ .e-de-dlg-spellcheck-listview.e-de-rtl {
1978
+ float: right;
1937
1979
  }
1938
1980
 
1939
1981
  .e-de-spellcheck-error-container {
1940
1982
  height: 140px;
1941
1983
  margin-bottom: 25px;
1984
+ display: -ms-flexbox;
1985
+ display: flex;
1942
1986
  }
1943
1987
 
1944
1988
  .e-de-spellcheck-suggestion-container {
1945
1989
  height: 140px;
1990
+ margin-bottom: 25px;
1991
+ display: -ms-flexbox;
1992
+ display: flex;
1946
1993
  }
1947
1994
 
1948
1995
  .e-dlg-spellcheck-listitem {
@@ -1952,13 +1999,17 @@ label[for*=_wholeWord_e-de-rtl] {
1952
1999
  .e-de-spellcheck-btncontainer {
1953
2000
  margin-top: 8px;
1954
2001
  position: relative;
1955
- width: 154px;
2002
+ width: 100%;
1956
2003
  float: right;
1957
2004
  }
1958
2005
 
2006
+ .e-de-spellcheck-btncontainer.e-de-rtl {
2007
+ float: left;
2008
+ }
2009
+
1959
2010
  .e-de-spellcheck-btn {
1960
2011
  margin-bottom: 8px;
1961
- width: 154px;
2012
+ width: 100%;
1962
2013
  }
1963
2014
 
1964
2015
  .e-de-dlg-spellchecker-subheader {
@@ -1985,7 +2036,6 @@ label[for*=_wholeWord_e-de-rtl] {
1985
2036
  }
1986
2037
 
1987
2038
  .e-de-table-border-shading-dlg {
1988
- height: 438px;
1989
2039
  width: 460px;
1990
2040
  }
1991
2041
 
@@ -2142,7 +2192,7 @@ label[for*=_wholeWord_e-de-rtl] {
2142
2192
  .e-de-table-border-bottomcenter-alignment,
2143
2193
  .e-de-table-border-bottomright-alignment {
2144
2194
  left: 48%;
2145
- position: absolute;
2195
+ position: relative;
2146
2196
  top: 59%;
2147
2197
  transform: translate(-50%, -50%);
2148
2198
  }
@@ -2299,8 +2349,7 @@ label[for*=_wholeWord_e-de-rtl] {
2299
2349
 
2300
2350
  .e-de-op-replace-messagediv {
2301
2351
  color: #000;
2302
- position: absolute;
2303
- top: 144px;
2352
+ top: auto;
2304
2353
  }
2305
2354
 
2306
2355
  .e-de-font-content-label .e-label,
@@ -2392,16 +2441,6 @@ label[for*=_wholeWord_e-de-rtl] {
2392
2441
  margin-right: 20px;
2393
2442
  }
2394
2443
 
2395
- .e-de-table-ppty-dlg-left-indent-container {
2396
- bottom: 4px;
2397
- left: 69px;
2398
- position: relative;
2399
- }
2400
-
2401
- .e-de-table-ppty-dlg-left-indent-container.e-de-rtl {
2402
- right: 69px;
2403
- }
2404
-
2405
2444
  .e-de-table-ppty-dlg-row-height-label {
2406
2445
  float: right;
2407
2446
  margin-right: 184px;
@@ -2507,10 +2546,6 @@ label[for*=_wholeWord_e-de-rtl] {
2507
2546
  margin-right: 38px;
2508
2547
  }
2509
2548
 
2510
- .e-de-toc-dlg-build-table {
2511
- margin-top: 30px;
2512
- }
2513
-
2514
2549
  .e-de-toc-table-div .e-de-toc-dlg-toc-level {
2515
2550
  height: 24px;
2516
2551
  margin-left: 36px;
@@ -2521,7 +2556,8 @@ label[for*=_wholeWord_e-de-rtl] {
2521
2556
  border: 1px solid #c3c3c3;
2522
2557
  border-radius: 3px;
2523
2558
  margin-top: 15px;
2524
- width: 213px;
2559
+ width: 100%;
2560
+ height: 180px;
2525
2561
  }
2526
2562
 
2527
2563
  .e-de-toc-dlg-sub-level-heading {
@@ -2531,7 +2567,7 @@ label[for*=_wholeWord_e-de-rtl] {
2531
2567
  .e-de-toc-table-div {
2532
2568
  height: 143px;
2533
2569
  overflow-y: scroll;
2534
- width: 211px;
2570
+ width: 100%;
2535
2571
  }
2536
2572
 
2537
2573
  .e-de-toc-dlg-style-input {
@@ -2677,15 +2713,6 @@ label[for*=_wholeWord_e-de-rtl] {
2677
2713
  padding: 10px 4px 5px 10px;
2678
2714
  }
2679
2715
 
2680
- .e-de-table-border-fill.e-de-rtl {
2681
- margin-left: 15px;
2682
- }
2683
-
2684
- .e-de-table-border-fill:not(.e-de-rtl) {
2685
- margin-right: 15px;
2686
- margin-top: 10px;
2687
- }
2688
-
2689
2716
  .e-de-table-ppty-dlg-tabs {
2690
2717
  height: 320px;
2691
2718
  position: relative;
@@ -2721,7 +2748,6 @@ label[for*=_wholeWord_e-de-rtl] {
2721
2748
  .e-de-tbl-rtl-btn-div {
2722
2749
  font-size: 12px;
2723
2750
  margin-right: 14px;
2724
- width: 140px;
2725
2751
  }
2726
2752
 
2727
2753
  .e-de-tbl-rtl-btn-div.e-de-rtl {
@@ -2731,7 +2757,6 @@ label[for*=_wholeWord_e-de-rtl] {
2731
2757
 
2732
2758
  .e-de-tbl-ltr-btn-div {
2733
2759
  font-size: 12px;
2734
- width: 140px;
2735
2760
  }
2736
2761
 
2737
2762
  .e-de-disabledbutton {
@@ -2763,11 +2788,11 @@ label[for*=_wholeWord_e-de-rtl] {
2763
2788
  width: 68px;
2764
2789
  }
2765
2790
  .e-bigger .e-de-toc-label {
2766
- margin-left: 194px;
2791
+ margin-left: 0px;
2767
2792
  }
2768
2793
  .e-bigger .e-de-toc-label-rtl {
2769
2794
  margin-left: 0px;
2770
- margin-right: 180px;
2795
+ margin-right: 0px;
2771
2796
  }
2772
2797
  .e-bigger .e-de-outline-rtl {
2773
2798
  width: 173px;
@@ -3059,34 +3084,26 @@ label[for*=_wholeWord_e-de-rtl] {
3059
3084
  }
3060
3085
 
3061
3086
  .e-btn.e-outline.e-de-track-accept-button {
3062
- border-color: #4d841e;
3063
- background-color: transparent;
3064
- color: #4d841e;
3087
+ min-width: 66px;
3065
3088
  padding: 5px 4px;
3066
3089
  text-transform: initial;
3067
3090
  }
3068
3091
 
3069
3092
  .e-btn.e-outline.e-de-track-accept-button:hover {
3070
- border-color: transparent;
3071
- background-color: #4d841e;
3072
- color: #fff;
3093
+ min-width: 66px;
3073
3094
  padding: 5px 4px;
3074
3095
  text-transform: initial;
3075
3096
  }
3076
3097
 
3077
3098
  .e-btn.e-outline.e-de-track-reject-button {
3078
- border-color: #d74113;
3079
- background-color: transparent;
3080
- color: #d74113;
3099
+ min-width: 64px;
3081
3100
  padding: 5px 6px;
3082
3101
  margin-left: 8px;
3083
3102
  text-transform: initial;
3084
3103
  }
3085
3104
 
3086
3105
  .e-btn.e-outline.e-de-track-reject-button:hover {
3087
- border-color: transparent;
3088
- background-color: #d74113;
3089
- color: #fff;
3106
+ min-width: 64px;
3090
3107
  padding: 5px 6px;
3091
3108
  margin-left: 8px;
3092
3109
  text-transform: initial;
@@ -3164,13 +3181,13 @@ label[for*=_wholeWord_e-de-rtl] {
3164
3181
  .e-de-track-chng-table {
3165
3182
  border-collapse: collapse;
3166
3183
  border-spacing: 0px;
3167
- height: 20px;
3168
3184
  opacity: 70%;
3169
3185
  width: 100%;
3170
3186
  }
3171
3187
 
3172
3188
  .e-de-tc-tble-cell {
3173
3189
  border: 1px solid;
3190
+ height: 20px;
3174
3191
  }
3175
3192
 
3176
3193
  .e-de-tc-shrink-img {
@@ -3303,7 +3320,7 @@ label[for*=_wholeWord_e-de-rtl] {
3303
3320
 
3304
3321
  .e-de-lock-mark {
3305
3322
  cursor: default;
3306
- color: #000;
3323
+ color: rgba(0, 0, 0, 0.54);
3307
3324
  font-size: 13px;
3308
3325
  height: 13px;
3309
3326
  pointer-events: all;
@@ -3312,7 +3329,7 @@ label[for*=_wholeWord_e-de-rtl] {
3312
3329
 
3313
3330
  .e-de-cmt-mark {
3314
3331
  cursor: default;
3315
- color: #000;
3332
+ color: rgba(0, 0, 0, 0.54);
3316
3333
  font-size: 13px;
3317
3334
  height: 13px;
3318
3335
  pointer-events: all;
@@ -3455,10 +3472,100 @@ label[for*=_wholeWord_e-de-rtl] {
3455
3472
  margin-top: 3px;
3456
3473
  }
3457
3474
 
3475
+ .e-de-table-dialog-row-height {
3476
+ padding-top: 24px;
3477
+ }
3478
+
3479
+ .e-de-tablecell-dialog-alignment-icon {
3480
+ width: 54px;
3481
+ height: 54px;
3482
+ margin: 2px;
3483
+ }
3484
+
3485
+ .e-de-table-dia-indent-from-left {
3486
+ right: 45px;
3487
+ }
3488
+
3489
+ .e-de-table-dia-align-div {
3490
+ border: 1px solid #ddd;
3491
+ display: inline-block;
3492
+ height: 52px;
3493
+ margin-right: 10px;
3494
+ width: 52px;
3495
+ }
3496
+
3497
+ .e-de-table-dialog-alignment-icon {
3498
+ margin: 2px;
3499
+ height: 46px;
3500
+ }
3501
+
3502
+ .e-de-table-border-setting-genral {
3503
+ margin-right: 10px;
3504
+ }
3505
+
3506
+ .e-de-table-border-clr-left-container {
3507
+ padding-right: 19px;
3508
+ }
3509
+
3510
+ .e-de-table-border-clr-heading {
3511
+ font-size: 14px;
3512
+ font-weight: normal;
3513
+ padding-bottom: 6px;
3514
+ }
3515
+
3516
+ .e-de-table-border-icon-container {
3517
+ margin-top: 4px;
3518
+ margin-right: 4px;
3519
+ }
3520
+
3521
+ .e-de-table-border-preview-container {
3522
+ padding-left: 76px;
3523
+ }
3524
+
3525
+ .e-de-table-dlg-alignment-heading {
3526
+ color: #333;
3527
+ display: block;
3528
+ font-size: 16px;
3529
+ font-weight: 400;
3530
+ margin-bottom: 4px;
3531
+ }
3532
+
3458
3533
  .e-rtl .e-de-cmt-author-name {
3459
3534
  padding-left: 0%;
3460
3535
  padding-right: 8px;
3461
3536
  }
3537
+ .e-rtl .e-de-ok-button {
3538
+ margin-right: 0;
3539
+ margin-left: 8px;
3540
+ }
3541
+ .e-rtl .e-de-table-dia-align-div.e-de-rtl {
3542
+ margin-left: 10px;
3543
+ margin-right: 0;
3544
+ }
3545
+ .e-rtl .e-de-table-border-clr-left-container {
3546
+ padding-right: 0;
3547
+ padding-left: 19px;
3548
+ }
3549
+ .e-rtl .e-de-table-border-preview-container {
3550
+ padding-right: 76px;
3551
+ padding-left: 0;
3552
+ }
3553
+ .e-rtl .e-de-table-border-setting-genral {
3554
+ margin-right: 0;
3555
+ margin-left: 10px;
3556
+ }
3557
+ .e-rtl .e-de-table-border-icon-container {
3558
+ margin-right: 0;
3559
+ margin-left: 4px;
3560
+ }
3561
+ .e-rtl .e-de-table-border-preview {
3562
+ width: 23px;
3563
+ }
3564
+ .e-rtl .e-de-table-setting-labels-heading {
3565
+ margin-left: 0;
3566
+ margin-right: 10px;
3567
+ }
3568
+
3462
3569
  .e-bigger .e-de-cmt-author-name {
3463
3570
  padding-left: 8px;
3464
3571
  }
@@ -1 +1,4 @@
1
- @import 'ej2-documenteditor/styles/document-editor/bootstrap.scss';
1
+ @import 'ej2-base/styles/bootstrap-definition.scss';
2
+ @import 'bootstrap-definition.scss';
3
+ @import 'icons/bootstrap.scss';
4
+ @import 'all.scss';