@syncfusion/ej2-angular-documenteditor 20.2.39-ngcc → 20.2.39

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 +27 -13
  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 +9 -1
  23. package/styles/bootstrap.css +9 -1
  24. package/styles/bootstrap4.css +9 -1
  25. package/styles/bootstrap5-dark.css +10 -3
  26. package/styles/bootstrap5.css +10 -3
  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 +557 -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 +566 -0
  37. package/styles/document-editor/_fusionnew-definition.scss +557 -0
  38. package/styles/document-editor/_highcontrast-definition.scss +545 -0
  39. package/styles/document-editor/_highcontrast-light-definition.scss +2985 -0
  40. package/styles/document-editor/_layout.scss +216 -0
  41. package/styles/document-editor/_material-dark-definition.scss +562 -0
  42. package/styles/document-editor/_material-definition.scss +562 -0
  43. package/styles/document-editor/_material3-definition.scss +557 -0
  44. package/styles/document-editor/_tailwind-dark-definition.scss +1 -0
  45. package/styles/document-editor/_tailwind-definition.scss +554 -0
  46. package/styles/document-editor/_theme.scss +3391 -0
  47. package/styles/document-editor/bootstrap-dark.css +5 -0
  48. package/styles/document-editor/bootstrap-dark.scss +4 -1
  49. package/styles/document-editor/bootstrap.css +5 -0
  50. package/styles/document-editor/bootstrap.scss +4 -1
  51. package/styles/document-editor/bootstrap4.css +5 -0
  52. package/styles/document-editor/bootstrap4.scss +4 -1
  53. package/styles/document-editor/bootstrap5-dark.css +5 -0
  54. package/styles/document-editor/bootstrap5-dark.scss +4 -1
  55. package/styles/document-editor/bootstrap5.css +5 -0
  56. package/styles/document-editor/bootstrap5.scss +4 -1
  57. package/styles/document-editor/fabric-dark.css +5 -0
  58. package/styles/document-editor/fabric-dark.scss +4 -1
  59. package/styles/document-editor/fabric.css +5 -0
  60. package/styles/document-editor/fabric.scss +4 -1
  61. package/styles/document-editor/fluent-dark.css +5 -0
  62. package/styles/document-editor/fluent-dark.scss +4 -1
  63. package/styles/document-editor/fluent.css +5 -0
  64. package/styles/document-editor/fluent.scss +4 -1
  65. package/styles/document-editor/highcontrast-light.css +18 -14
  66. package/styles/document-editor/highcontrast-light.scss +4 -1
  67. package/styles/document-editor/highcontrast.css +5 -0
  68. package/styles/document-editor/highcontrast.scss +4 -1
  69. package/styles/document-editor/icons/_bootstrap-dark.scss +607 -0
  70. package/styles/document-editor/icons/_bootstrap.scss +607 -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 +607 -0
  75. package/styles/document-editor/icons/_fabric.scss +607 -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 +5 -0
  88. package/styles/document-editor/material-dark.scss +4 -1
  89. package/styles/document-editor/material.css +5 -0
  90. package/styles/document-editor/material.scss +4 -1
  91. package/styles/document-editor/tailwind-dark.css +5 -0
  92. package/styles/document-editor/tailwind-dark.scss +4 -1
  93. package/styles/document-editor/tailwind.css +5 -0
  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 +127 -0
  97. package/styles/document-editor-container/_bootstrap-definition.scss +127 -0
  98. package/styles/document-editor-container/_bootstrap4-definition.scss +143 -0
  99. package/styles/document-editor-container/_bootstrap5-dark-definition.scss +1 -0
  100. package/styles/document-editor-container/_bootstrap5-definition.scss +153 -0
  101. package/styles/document-editor-container/_definition.scss +11 -0
  102. package/styles/document-editor-container/_fabric-dark-definition.scss +132 -0
  103. package/styles/document-editor-container/_fabric-definition.scss +129 -0
  104. package/styles/document-editor-container/_fluent-dark-definition.scss +1 -0
  105. package/styles/document-editor-container/_fluent-definition.scss +154 -0
  106. package/styles/document-editor-container/_fusionnew-definition.scss +153 -0
  107. package/styles/document-editor-container/_highcontrast-definition.scss +130 -0
  108. package/styles/document-editor-container/_highcontrast-light-definition.scss +133 -0
  109. package/styles/document-editor-container/_layout.scss +87 -0
  110. package/styles/document-editor-container/_material-dark-definition.scss +131 -0
  111. package/styles/document-editor-container/_material-definition.scss +130 -0
  112. package/styles/document-editor-container/_material3-definition.scss +153 -0
  113. package/styles/document-editor-container/_tailwind-dark-definition.scss +1 -0
  114. package/styles/document-editor-container/_tailwind-definition.scss +147 -0
  115. package/styles/document-editor-container/_theme.scss +2001 -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 +4 -1
  121. package/styles/document-editor-container/bootstrap4.scss +5 -1
  122. package/styles/document-editor-container/bootstrap5-dark.css +5 -3
  123. package/styles/document-editor-container/bootstrap5-dark.scss +5 -1
  124. package/styles/document-editor-container/bootstrap5.css +5 -3
  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 -3
  131. package/styles/document-editor-container/fluent-dark.scss +5 -1
  132. package/styles/document-editor-container/fluent.css +5 -3
  133. package/styles/document-editor-container/fluent.scss +5 -1
  134. package/styles/document-editor-container/highcontrast-light.css +18 -15
  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 +399 -0
  151. package/styles/document-editor-container/icons/_material.scss +399 -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 +9 -1
  164. package/styles/fabric.css +9 -1
  165. package/styles/fluent-dark.css +10 -3
  166. package/styles/fluent.css +10 -3
  167. package/styles/highcontrast-light.css +22 -15
  168. package/styles/highcontrast.css +9 -1
  169. package/styles/material-dark.css +9 -1
  170. package/styles/material.css +9 -1
  171. package/styles/tailwind-dark.css +10 -3
  172. package/styles/tailwind.css +10 -3
  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 -3015
  179. package/dist/ej2-angular-documenteditor.umd.js +0 -841
  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 -125
  196. package/schematics/ng-add/index.d.ts +0 -3
  197. package/schematics/ng-add/index.js +0 -9
  198. package/schematics/ng-add/schema.d.ts +0 -13
  199. package/schematics/ng-add/schema.js +0 -2
  200. package/schematics/ng-add/schema.json +0 -34
  201. package/schematics/tsconfig.json +0 -25
  202. package/schematics/utils/lib-details.d.ts +0 -4
  203. package/schematics/utils/lib-details.js +0 -6
@@ -1,4 +1,3 @@
1
- @charset "UTF-8";
2
1
  .e-documenteditor .e-close::before {
3
2
  color: #a19f9d;
4
3
  content: "\e7e7";
@@ -781,6 +780,7 @@
781
780
  left: 14px;
782
781
  }
783
782
 
783
+ /* stylelint-disable */
784
784
  .e-de-background {
785
785
  background-color: #323130;
786
786
  }
@@ -3653,6 +3653,10 @@ label[for*=_wholeWord_e-de-rtl] {
3653
3653
  right: 15px;
3654
3654
  }
3655
3655
 
3656
+ .e-bigger {
3657
+ /* stylelint-disable */
3658
+ /* stylelint-enable */
3659
+ }
3656
3660
  .e-bigger .e-de-para-dlg-container .e-checkbox-wrapper .e-label,
3657
3661
  .e-bigger .e-de-table-options-dlg .e-checkbox-wrapper .e-label {
3658
3662
  font-size: 14px;
@@ -4245,13 +4249,14 @@ label[for*=_wholeWord_e-de-rtl] {
4245
4249
 
4246
4250
  .e-de-ctnr-hglt-no-color {
4247
4251
  font-size: 12px;
4248
- font-weight: 400;
4252
+ font-weight: normal;
4249
4253
  left: 40px;
4250
4254
  padding-top: 11px;
4251
4255
  position: absolute;
4252
4256
  top: 100px;
4253
4257
  }
4254
4258
 
4259
+ /* stylelint-disable */
4255
4260
  .e-de-scrollbar-hide::-webkit-scrollbar {
4256
4261
  width: 0;
4257
4262
  }
@@ -4261,6 +4266,7 @@ label[for*=_wholeWord_e-de-rtl] {
4261
4266
  scrollbar-width: none;
4262
4267
  }
4263
4268
 
4269
+ /* stylelint-enable */
4264
4270
  .e-de-ctnr-group-btn .e-btn .e-btn-icon.e-icons.e-de-ctnr-fontcolor,
4265
4271
  .e-de-ctnr-group-btn .e-btn .e-btn-icon.e-icons.e-de-ctnr-change-case {
4266
4272
  font-size: 18px;
@@ -4271,6 +4277,7 @@ label[for*=_wholeWord_e-de-rtl] {
4271
4277
  font-size: 21px;
4272
4278
  }
4273
4279
 
4280
+ /* stylelint-disable */
4274
4281
  .e-de-toolbar {
4275
4282
  height: 100%;
4276
4283
  }
@@ -4372,7 +4379,7 @@ label[for*=_wholeWord_e-de-rtl] {
4372
4379
  }
4373
4380
  .e-bigger .e-de-ctn-title button {
4374
4381
  font-size: 16px !important;
4375
- height: auto !important;
4382
+ height: auto !important;
4376
4383
  margin: 0 !important;
4377
4384
  }
4378
4385
  .e-bigger .e-de-ctn-title button .e-btn-icon {
package/styles/fluent.css CHANGED
@@ -1,4 +1,3 @@
1
- @charset "UTF-8";
2
1
  .e-documenteditor .e-close::before {
3
2
  color: #605e5c;
4
3
  content: "\e7e7";
@@ -781,6 +780,7 @@
781
780
  left: 14px;
782
781
  }
783
782
 
783
+ /* stylelint-disable */
784
784
  .e-de-background {
785
785
  background-color: #e1dfdd;
786
786
  }
@@ -3653,6 +3653,10 @@ label[for*=_wholeWord_e-de-rtl] {
3653
3653
  right: 15px;
3654
3654
  }
3655
3655
 
3656
+ .e-bigger {
3657
+ /* stylelint-disable */
3658
+ /* stylelint-enable */
3659
+ }
3656
3660
  .e-bigger .e-de-para-dlg-container .e-checkbox-wrapper .e-label,
3657
3661
  .e-bigger .e-de-table-options-dlg .e-checkbox-wrapper .e-label {
3658
3662
  font-size: 14px;
@@ -4245,13 +4249,14 @@ label[for*=_wholeWord_e-de-rtl] {
4245
4249
 
4246
4250
  .e-de-ctnr-hglt-no-color {
4247
4251
  font-size: 12px;
4248
- font-weight: 400;
4252
+ font-weight: normal;
4249
4253
  left: 40px;
4250
4254
  padding-top: 11px;
4251
4255
  position: absolute;
4252
4256
  top: 100px;
4253
4257
  }
4254
4258
 
4259
+ /* stylelint-disable */
4255
4260
  .e-de-scrollbar-hide::-webkit-scrollbar {
4256
4261
  width: 0;
4257
4262
  }
@@ -4261,6 +4266,7 @@ label[for*=_wholeWord_e-de-rtl] {
4261
4266
  scrollbar-width: none;
4262
4267
  }
4263
4268
 
4269
+ /* stylelint-enable */
4264
4270
  .e-de-ctnr-group-btn .e-btn .e-btn-icon.e-icons.e-de-ctnr-fontcolor,
4265
4271
  .e-de-ctnr-group-btn .e-btn .e-btn-icon.e-icons.e-de-ctnr-change-case {
4266
4272
  font-size: 18px;
@@ -4271,6 +4277,7 @@ label[for*=_wholeWord_e-de-rtl] {
4271
4277
  font-size: 21px;
4272
4278
  }
4273
4279
 
4280
+ /* stylelint-disable */
4274
4281
  .e-de-toolbar {
4275
4282
  height: 100%;
4276
4283
  }
@@ -4372,7 +4379,7 @@ label[for*=_wholeWord_e-de-rtl] {
4372
4379
  }
4373
4380
  .e-bigger .e-de-ctn-title button {
4374
4381
  font-size: 16px !important;
4375
- height: auto !important;
4382
+ height: auto !important;
4376
4383
  margin: 0 !important;
4377
4384
  }
4378
4385
  .e-bigger .e-de-ctn-title button .e-btn-icon {
@@ -308,63 +308,63 @@
308
308
  content: "\e339";
309
309
  font-family: "e-icons";
310
310
  font-size: 16px;
311
- font-weight: 400;
311
+ font-weight: normal;
312
312
  }
313
313
 
314
314
  .e-de-italic::before {
315
315
  content: "\e35a";
316
316
  font-family: "e-icons";
317
317
  font-size: 16px;
318
- font-weight: 400;
318
+ font-weight: normal;
319
319
  }
320
320
 
321
321
  .e-de-underline::before {
322
322
  content: "\e343";
323
323
  font-family: "e-icons";
324
324
  font-size: 16px;
325
- font-weight: 400;
325
+ font-weight: normal;
326
326
  }
327
327
 
328
328
  .e-de-indent::before {
329
329
  content: "\e35d";
330
330
  font-family: "e-icons";
331
331
  font-size: 16px;
332
- font-weight: 400;
332
+ font-weight: normal;
333
333
  }
334
334
 
335
335
  .e-de-outdent::before {
336
336
  content: "\e33f";
337
337
  font-family: "e-icons";
338
338
  font-size: 16px;
339
- font-weight: 400;
339
+ font-weight: normal;
340
340
  }
341
341
 
342
342
  .e-de-align-left::before {
343
343
  content: "\e33a";
344
344
  font-family: "e-icons";
345
345
  font-size: 16px;
346
- font-weight: 400;
346
+ font-weight: normal;
347
347
  }
348
348
 
349
349
  .e-de-align-center::before {
350
350
  content: "\e35e";
351
351
  font-family: "e-icons";
352
352
  font-size: 16px;
353
- font-weight: 400;
353
+ font-weight: normal;
354
354
  }
355
355
 
356
356
  .e-de-align-right::before {
357
357
  content: "\e34d";
358
358
  font-family: "e-icons";
359
359
  font-size: 16px;
360
- font-weight: 400;
360
+ font-weight: normal;
361
361
  }
362
362
 
363
363
  .e-de-justify::before {
364
364
  content: "\e334";
365
365
  font-family: "e-icons";
366
366
  font-size: 16px;
367
- font-weight: 400;
367
+ font-weight: normal;
368
368
  }
369
369
 
370
370
  .e-de-single-spacing::before {
@@ -737,7 +737,7 @@
737
737
 
738
738
  .e-de-hyperlink-dlg-title {
739
739
  font-size: 12px;
740
- font-weight: 400;
740
+ font-weight: normal;
741
741
  margin-bottom: 8px;
742
742
  margin-top: 8px;
743
743
  }
@@ -848,7 +848,7 @@ label[for=container_wholeWord] {
848
848
  .e-de-cell-dia-label-common {
849
849
  display: inline-block;
850
850
  font-size: 12px;
851
- font-weight: 400;
851
+ font-weight: normal;
852
852
  margin-bottom: 8px;
853
853
  margin-top: 8px;
854
854
  width: 150px;
@@ -1631,7 +1631,7 @@ label[for=container_wholeWord] {
1631
1631
  .e-de-style-style-based-on,
1632
1632
  .e-de-style-style-paragraph {
1633
1633
  font-size: 13px;
1634
- font-weight: 400;
1634
+ font-weight: normal;
1635
1635
  margin-bottom: 8px;
1636
1636
  width: 180px;
1637
1637
  }
@@ -1900,7 +1900,7 @@ label[for=container_wholeWord] {
1900
1900
  }
1901
1901
 
1902
1902
  .e-styles-dlgfields {
1903
- font-weight: 400;
1903
+ font-weight: normal;
1904
1904
  margin-bottom: 6px;
1905
1905
  }
1906
1906
 
@@ -1919,7 +1919,7 @@ label[for=container_wholeWord] {
1919
1919
  }
1920
1920
 
1921
1921
  .e-bookmark-dlgfields {
1922
- font-weight: 400;
1922
+ font-weight: normal;
1923
1923
  margin-bottom: 0;
1924
1924
  }
1925
1925
 
@@ -2612,6 +2612,10 @@ label[for=container_wholeWord] {
2612
2612
  content: "\e68a";
2613
2613
  }
2614
2614
 
2615
+ .e-bigger {
2616
+ /* stylelint-disable */
2617
+ /* stylelint-enable */
2618
+ }
2615
2619
  .e-bigger .e-de-para-dlg-container .e-checkbox-wrapper .e-label,
2616
2620
  .e-bigger .e-de-table-options-dlg .e-checkbox-wrapper .e-label {
2617
2621
  font-size: 14px;
@@ -3177,13 +3181,14 @@ label[for=container_wholeWord] {
3177
3181
 
3178
3182
  .e-de-ctnr-hglt-no-color {
3179
3183
  font-size: 12px;
3180
- font-weight: 400;
3184
+ font-weight: normal;
3181
3185
  left: 40px;
3182
3186
  padding-top: 11px;
3183
3187
  position: absolute;
3184
3188
  top: 100px;
3185
3189
  }
3186
3190
 
3191
+ /* stylelint-disable */
3187
3192
  .e-de-scrollbar-hide::-webkit-scrollbar {
3188
3193
  width: 0;
3189
3194
  }
@@ -3193,6 +3198,8 @@ label[for=container_wholeWord] {
3193
3198
  scrollbar-width: none;
3194
3199
  }
3195
3200
 
3201
+ /* stylelint-enable */
3202
+ /* stylelint-disable */
3196
3203
  .e-de-toolbar {
3197
3204
  height: 100%;
3198
3205
  }
@@ -747,6 +747,7 @@
747
747
  left: 14px;
748
748
  }
749
749
 
750
+ /* stylelint-disable */
750
751
  .e-de-background {
751
752
  background-color: #000;
752
753
  }
@@ -3620,6 +3621,10 @@ label[for*=_wholeWord_e-de-rtl] {
3620
3621
  right: 10px;
3621
3622
  }
3622
3623
 
3624
+ .e-bigger {
3625
+ /* stylelint-disable */
3626
+ /* stylelint-enable */
3627
+ }
3623
3628
  .e-bigger .e-de-para-dlg-container .e-checkbox-wrapper .e-label,
3624
3629
  .e-bigger .e-de-table-options-dlg .e-checkbox-wrapper .e-label {
3625
3630
  font-size: 14px;
@@ -4185,13 +4190,14 @@ label[for*=_wholeWord_e-de-rtl] {
4185
4190
 
4186
4191
  .e-de-ctnr-hglt-no-color {
4187
4192
  font-size: 12px;
4188
- font-weight: 400;
4193
+ font-weight: normal;
4189
4194
  left: 40px;
4190
4195
  padding-top: 11px;
4191
4196
  position: absolute;
4192
4197
  top: 100px;
4193
4198
  }
4194
4199
 
4200
+ /* stylelint-disable */
4195
4201
  .e-de-scrollbar-hide::-webkit-scrollbar {
4196
4202
  width: 0;
4197
4203
  }
@@ -4201,6 +4207,8 @@ label[for*=_wholeWord_e-de-rtl] {
4201
4207
  scrollbar-width: none;
4202
4208
  }
4203
4209
 
4210
+ /* stylelint-enable */
4211
+ /* stylelint-disable */
4204
4212
  .e-de-toolbar {
4205
4213
  height: 100%;
4206
4214
  }
@@ -742,6 +742,7 @@
742
742
  left: 14px;
743
743
  }
744
744
 
745
+ /* stylelint-disable */
745
746
  .e-de-background {
746
747
  background-color: #212121;
747
748
  }
@@ -3615,6 +3616,10 @@ label[for*=_wholeWord_e-de-rtl] {
3615
3616
  right: 10px;
3616
3617
  }
3617
3618
 
3619
+ .e-bigger {
3620
+ /* stylelint-disable */
3621
+ /* stylelint-enable */
3622
+ }
3618
3623
  .e-bigger .e-de-para-dlg-container .e-checkbox-wrapper .e-label,
3619
3624
  .e-bigger .e-de-table-options-dlg .e-checkbox-wrapper .e-label {
3620
3625
  font-size: 14px;
@@ -4182,13 +4187,14 @@ label[for*=_wholeWord_e-de-rtl] {
4182
4187
 
4183
4188
  .e-de-ctnr-hglt-no-color {
4184
4189
  font-size: 12px;
4185
- font-weight: 400;
4190
+ font-weight: normal;
4186
4191
  left: 40px;
4187
4192
  padding-top: 11px;
4188
4193
  position: absolute;
4189
4194
  top: 100px;
4190
4195
  }
4191
4196
 
4197
+ /* stylelint-disable */
4192
4198
  .e-de-scrollbar-hide::-webkit-scrollbar {
4193
4199
  width: 0;
4194
4200
  }
@@ -4198,6 +4204,8 @@ label[for*=_wholeWord_e-de-rtl] {
4198
4204
  scrollbar-width: none;
4199
4205
  }
4200
4206
 
4207
+ /* stylelint-enable */
4208
+ /* stylelint-disable */
4201
4209
  .e-de-toolbar {
4202
4210
  height: 100%;
4203
4211
  }
@@ -742,6 +742,7 @@
742
742
  left: 14px;
743
743
  }
744
744
 
745
+ /* stylelint-disable */
745
746
  .e-de-background {
746
747
  background-color: #fff;
747
748
  }
@@ -3615,6 +3616,10 @@ label[for*=_wholeWord_e-de-rtl] {
3615
3616
  right: 10px;
3616
3617
  }
3617
3618
 
3619
+ .e-bigger {
3620
+ /* stylelint-disable */
3621
+ /* stylelint-enable */
3622
+ }
3618
3623
  .e-bigger .e-de-para-dlg-container .e-checkbox-wrapper .e-label,
3619
3624
  .e-bigger .e-de-table-options-dlg .e-checkbox-wrapper .e-label {
3620
3625
  font-size: 14px;
@@ -4182,13 +4187,14 @@ label[for*=_wholeWord_e-de-rtl] {
4182
4187
 
4183
4188
  .e-de-ctnr-hglt-no-color {
4184
4189
  font-size: 12px;
4185
- font-weight: 400;
4190
+ font-weight: normal;
4186
4191
  left: 40px;
4187
4192
  padding-top: 11px;
4188
4193
  position: absolute;
4189
4194
  top: 100px;
4190
4195
  }
4191
4196
 
4197
+ /* stylelint-disable */
4192
4198
  .e-de-scrollbar-hide::-webkit-scrollbar {
4193
4199
  width: 0;
4194
4200
  }
@@ -4198,6 +4204,8 @@ label[for*=_wholeWord_e-de-rtl] {
4198
4204
  scrollbar-width: none;
4199
4205
  }
4200
4206
 
4207
+ /* stylelint-enable */
4208
+ /* stylelint-disable */
4201
4209
  .e-de-toolbar {
4202
4210
  height: 100%;
4203
4211
  }
@@ -1,4 +1,3 @@
1
- @charset "UTF-8";
2
1
  @import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
3
2
  @import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
4
3
  .e-documenteditor .e-close::before {
@@ -785,6 +784,7 @@
785
784
  left: 14px;
786
785
  }
787
786
 
787
+ /* stylelint-disable */
788
788
  .e-de-background {
789
789
  background-color: #4b5563;
790
790
  }
@@ -3928,6 +3928,10 @@ label[for*=_wholeWord_e-de-rtl] {
3928
3928
  right: 19px;
3929
3929
  }
3930
3930
 
3931
+ .e-bigger {
3932
+ /* stylelint-disable */
3933
+ /* stylelint-enable */
3934
+ }
3931
3935
  .e-bigger .e-de-para-dlg-container .e-checkbox-wrapper .e-label,
3932
3936
  .e-bigger .e-de-table-options-dlg .e-checkbox-wrapper .e-label {
3933
3937
  font-size: 14px;
@@ -4521,13 +4525,14 @@ label[for*=_wholeWord_e-de-rtl] {
4521
4525
 
4522
4526
  .e-de-ctnr-hglt-no-color {
4523
4527
  font-size: 12px;
4524
- font-weight: 400;
4528
+ font-weight: normal;
4525
4529
  left: 40px;
4526
4530
  padding-top: 11px;
4527
4531
  position: absolute;
4528
4532
  top: 100px;
4529
4533
  }
4530
4534
 
4535
+ /* stylelint-disable */
4531
4536
  .e-de-scrollbar-hide::-webkit-scrollbar {
4532
4537
  width: 0;
4533
4538
  }
@@ -4537,6 +4542,8 @@ label[for*=_wholeWord_e-de-rtl] {
4537
4542
  scrollbar-width: none;
4538
4543
  }
4539
4544
 
4545
+ /* stylelint-enable */
4546
+ /* stylelint-disable */
4540
4547
  .e-de-toolbar {
4541
4548
  height: 100%;
4542
4549
  }
@@ -4637,7 +4644,7 @@ label[for*=_wholeWord_e-de-rtl] {
4637
4644
  }
4638
4645
  .e-bigger .e-de-ctn-title button {
4639
4646
  font-size: 16px !important;
4640
- height: auto !important;
4647
+ height: auto !important;
4641
4648
  }
4642
4649
  .e-bigger .e-de-ctn-title button .e-btn-icon {
4643
4650
  font-size: 18px !important;
@@ -1,4 +1,3 @@
1
- @charset "UTF-8";
2
1
  @import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
3
2
  @import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
4
3
  .e-documenteditor .e-close::before {
@@ -785,6 +784,7 @@
785
784
  left: 14px;
786
785
  }
787
786
 
787
+ /* stylelint-disable */
788
788
  .e-de-background {
789
789
  background-color: #e5e7eb;
790
790
  }
@@ -3928,6 +3928,10 @@ label[for*=_wholeWord_e-de-rtl] {
3928
3928
  right: 19px;
3929
3929
  }
3930
3930
 
3931
+ .e-bigger {
3932
+ /* stylelint-disable */
3933
+ /* stylelint-enable */
3934
+ }
3931
3935
  .e-bigger .e-de-para-dlg-container .e-checkbox-wrapper .e-label,
3932
3936
  .e-bigger .e-de-table-options-dlg .e-checkbox-wrapper .e-label {
3933
3937
  font-size: 14px;
@@ -4521,13 +4525,14 @@ label[for*=_wholeWord_e-de-rtl] {
4521
4525
 
4522
4526
  .e-de-ctnr-hglt-no-color {
4523
4527
  font-size: 12px;
4524
- font-weight: 400;
4528
+ font-weight: normal;
4525
4529
  left: 40px;
4526
4530
  padding-top: 11px;
4527
4531
  position: absolute;
4528
4532
  top: 100px;
4529
4533
  }
4530
4534
 
4535
+ /* stylelint-disable */
4531
4536
  .e-de-scrollbar-hide::-webkit-scrollbar {
4532
4537
  width: 0;
4533
4538
  }
@@ -4537,6 +4542,8 @@ label[for*=_wholeWord_e-de-rtl] {
4537
4542
  scrollbar-width: none;
4538
4543
  }
4539
4544
 
4545
+ /* stylelint-enable */
4546
+ /* stylelint-disable */
4540
4547
  .e-de-toolbar {
4541
4548
  height: 100%;
4542
4549
  }
@@ -4637,7 +4644,7 @@ label[for*=_wholeWord_e-de-rtl] {
4637
4644
  }
4638
4645
  .e-bigger .e-de-ctn-title button {
4639
4646
  font-size: 16px !important;
4640
- height: auto !important;
4647
+ height: auto !important;
4641
4648
  }
4642
4649
  .e-bigger .e-de-ctn-title button .e-btn-icon {
4643
4650
  font-size: 18px !important;
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@syncfusion/ej2-angular-documenteditor" />
5
+ export * from './public_api';