@syncfusion/ej2-richtexteditor 29.2.4-795127 → 29.2.4-822566

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 (119) hide show
  1. package/dist/ej2-richtexteditor.umd.min.js +1 -1
  2. package/dist/ej2-richtexteditor.umd.min.js.map +1 -1
  3. package/dist/es6/ej2-richtexteditor.es2015.js +79 -2
  4. package/dist/es6/ej2-richtexteditor.es2015.js.map +1 -1
  5. package/dist/es6/ej2-richtexteditor.es5.js +80 -2
  6. package/dist/es6/ej2-richtexteditor.es5.js.map +1 -1
  7. package/package.json +1 -1
  8. package/src/editor-manager/base/constant.js +1 -1
  9. package/src/global.d.ts +1 -0
  10. package/src/rich-text-editor/actions/paste-clean-up.d.ts +4 -0
  11. package/src/rich-text-editor/actions/paste-clean-up.js +78 -2
  12. package/src/rich-text-editor/models/toolbar-settings-model.d.ts +7 -0
  13. package/src/rich-text-editor/models/toolbar-settings.d.ts +6 -0
  14. package/src/rich-text-editor/models/toolbar-settings.js +3 -0
  15. package/styles/bds-lite.css +397 -3
  16. package/styles/bds.css +397 -3
  17. package/styles/bootstrap-dark-lite.css +398 -0
  18. package/styles/bootstrap-dark.css +398 -0
  19. package/styles/bootstrap-lite.css +398 -0
  20. package/styles/bootstrap.css +398 -0
  21. package/styles/bootstrap4-lite.css +387 -0
  22. package/styles/bootstrap4.css +387 -0
  23. package/styles/bootstrap5-dark-lite.css +394 -0
  24. package/styles/bootstrap5-dark.css +394 -0
  25. package/styles/bootstrap5-lite.css +387 -0
  26. package/styles/bootstrap5.3-lite.css +388 -1
  27. package/styles/bootstrap5.3.css +388 -1
  28. package/styles/bootstrap5.css +387 -0
  29. package/styles/fabric-dark-lite.css +394 -0
  30. package/styles/fabric-dark.css +394 -0
  31. package/styles/fabric-lite.css +394 -0
  32. package/styles/fabric.css +394 -0
  33. package/styles/fluent-dark-lite.css +394 -0
  34. package/styles/fluent-dark.css +394 -0
  35. package/styles/fluent-lite.css +394 -0
  36. package/styles/fluent.css +394 -0
  37. package/styles/fluent2-lite.css +394 -0
  38. package/styles/fluent2.css +394 -0
  39. package/styles/highcontrast-light-lite.css +394 -0
  40. package/styles/highcontrast-light.css +394 -0
  41. package/styles/highcontrast-lite.css +394 -0
  42. package/styles/highcontrast.css +394 -0
  43. package/styles/material-dark-lite.css +394 -0
  44. package/styles/material-dark.css +394 -0
  45. package/styles/material-lite.css +394 -0
  46. package/styles/material.css +394 -0
  47. package/styles/material3-dark-lite.css +394 -19
  48. package/styles/material3-dark.css +394 -19
  49. package/styles/material3-lite.css +394 -19
  50. package/styles/material3.css +394 -19
  51. package/styles/rich-text-editor/_bds-definition.scss +13 -9
  52. package/styles/rich-text-editor/_bootstrap-dark-definition.scss +11 -7
  53. package/styles/rich-text-editor/_bootstrap-definition.scss +11 -7
  54. package/styles/rich-text-editor/_bootstrap4-definition.scss +11 -7
  55. package/styles/rich-text-editor/_bootstrap5-dark-definition.scss +11 -7
  56. package/styles/rich-text-editor/_bootstrap5-definition.scss +11 -7
  57. package/styles/rich-text-editor/_bootstrap5.3-definition.scss +12 -8
  58. package/styles/rich-text-editor/_fabric-dark-definition.scss +11 -7
  59. package/styles/rich-text-editor/_fabric-definition.scss +11 -7
  60. package/styles/rich-text-editor/_fluent-dark-definition.scss +11 -7
  61. package/styles/rich-text-editor/_fluent-definition.scss +11 -7
  62. package/styles/rich-text-editor/_fluent2-definition.scss +11 -7
  63. package/styles/rich-text-editor/_fusionnew-definition.scss +11 -7
  64. package/styles/rich-text-editor/_highcontrast-definition.scss +11 -7
  65. package/styles/rich-text-editor/_highcontrast-light-definition.scss +11 -7
  66. package/styles/rich-text-editor/_layout.scss +351 -7
  67. package/styles/rich-text-editor/_material-dark-definition.scss +11 -7
  68. package/styles/rich-text-editor/_material-definition.scss +11 -7
  69. package/styles/rich-text-editor/_material3-dark-definition.scss +11 -7
  70. package/styles/rich-text-editor/_material3-definition.scss +11 -7
  71. package/styles/rich-text-editor/_tailwind-dark-definition.scss +11 -7
  72. package/styles/rich-text-editor/_tailwind-definition.scss +11 -7
  73. package/styles/rich-text-editor/_tailwind3-definition.scss +11 -7
  74. package/styles/rich-text-editor/_theme.scss +4 -0
  75. package/styles/rich-text-editor/bds.css +397 -3
  76. package/styles/rich-text-editor/bootstrap-dark.css +398 -0
  77. package/styles/rich-text-editor/bootstrap.css +398 -0
  78. package/styles/rich-text-editor/bootstrap4.css +387 -0
  79. package/styles/rich-text-editor/bootstrap5-dark.css +394 -0
  80. package/styles/rich-text-editor/bootstrap5.3.css +388 -1
  81. package/styles/rich-text-editor/bootstrap5.css +387 -0
  82. package/styles/rich-text-editor/fabric-dark.css +394 -0
  83. package/styles/rich-text-editor/fabric.css +394 -0
  84. package/styles/rich-text-editor/fluent-dark.css +394 -0
  85. package/styles/rich-text-editor/fluent.css +394 -0
  86. package/styles/rich-text-editor/fluent2.css +394 -0
  87. package/styles/rich-text-editor/highcontrast-light.css +394 -0
  88. package/styles/rich-text-editor/highcontrast.css +394 -0
  89. package/styles/rich-text-editor/icons/_bds.scss +12 -0
  90. package/styles/rich-text-editor/icons/_bootstrap-dark.scss +12 -0
  91. package/styles/rich-text-editor/icons/_bootstrap.scss +12 -0
  92. package/styles/rich-text-editor/icons/_bootstrap4.scss +12 -0
  93. package/styles/rich-text-editor/icons/_bootstrap5.3.scss +12 -0
  94. package/styles/rich-text-editor/icons/_bootstrap5.scss +12 -0
  95. package/styles/rich-text-editor/icons/_fabric-dark.scss +12 -0
  96. package/styles/rich-text-editor/icons/_fabric.scss +12 -0
  97. package/styles/rich-text-editor/icons/_fluent.scss +12 -0
  98. package/styles/rich-text-editor/icons/_fluent2.scss +12 -0
  99. package/styles/rich-text-editor/icons/_fusionnew.scss +12 -0
  100. package/styles/rich-text-editor/icons/_highcontrast-light.scss +12 -0
  101. package/styles/rich-text-editor/icons/_highcontrast.scss +12 -0
  102. package/styles/rich-text-editor/icons/_material-dark.scss +12 -0
  103. package/styles/rich-text-editor/icons/_material.scss +12 -0
  104. package/styles/rich-text-editor/icons/_material3.scss +12 -0
  105. package/styles/rich-text-editor/icons/_tailwind.scss +12 -0
  106. package/styles/rich-text-editor/icons/_tailwind3.scss +12 -0
  107. package/styles/rich-text-editor/material-dark.css +394 -0
  108. package/styles/rich-text-editor/material.css +394 -0
  109. package/styles/rich-text-editor/material3-dark.css +394 -19
  110. package/styles/rich-text-editor/material3.css +394 -19
  111. package/styles/rich-text-editor/tailwind-dark.css +394 -0
  112. package/styles/rich-text-editor/tailwind.css +394 -0
  113. package/styles/rich-text-editor/tailwind3.css +394 -0
  114. package/styles/tailwind-dark-lite.css +394 -0
  115. package/styles/tailwind-dark.css +394 -0
  116. package/styles/tailwind-lite.css +394 -0
  117. package/styles/tailwind.css +394 -0
  118. package/styles/tailwind3-lite.css +394 -0
  119. package/styles/tailwind3.css +394 -0
@@ -45,6 +45,14 @@
45
45
  content: '\e721';
46
46
  }
47
47
 
48
+ .e-left-wrap::before {
49
+ content: '\e95b';
50
+ }
51
+
52
+ .e-right-wrap::before {
53
+ content: '\e95c';
54
+ }
55
+
48
56
  .e-font-name::before {
49
57
  content: '\e76f';
50
58
  }
@@ -267,6 +275,10 @@
267
275
  content: '\e954';
268
276
  }
269
277
 
278
+ .e-table-editCell-properties::before {
279
+ content: '\e95e';
280
+ }
281
+
270
282
  .e-create-table::before {
271
283
  content: '\e83f';
272
284
  }
@@ -41,6 +41,14 @@
41
41
  content: '\e721';
42
42
  }
43
43
 
44
+ .e-left-wrap::before {
45
+ content: '\e95b';
46
+ }
47
+
48
+ .e-right-wrap::before {
49
+ content: '\e95c';
50
+ }
51
+
44
52
  .e-font-name::before {
45
53
  content: '\e76f';
46
54
  }
@@ -263,6 +271,10 @@
263
271
  content: '\e954';
264
272
  }
265
273
 
274
+ .e-table-editCell-properties::before {
275
+ content: '\e95e';
276
+ }
277
+
266
278
  .e-create-table::before {
267
279
  content: '\e83f';
268
280
  }
@@ -40,6 +40,14 @@
40
40
  content: '\e721';
41
41
  }
42
42
 
43
+ .e-left-wrap::before {
44
+ content: '\e95b';
45
+ }
46
+
47
+ .e-right-wrap::before {
48
+ content: '\e95c';
49
+ }
50
+
43
51
  .e-font-name::before {
44
52
  content: '\e76f';
45
53
  }
@@ -259,6 +267,10 @@
259
267
  content: '\e954';
260
268
  }
261
269
 
270
+ .e-table-editCell-properties::before {
271
+ content: '\e95e';
272
+ }
273
+
262
274
  .e-create-table::before {
263
275
  content: '\e294';
264
276
  }
@@ -47,6 +47,14 @@
47
47
  content: '\e334';
48
48
  }
49
49
 
50
+ .e-left-wrap::before {
51
+ content: '\e1cd';
52
+ }
53
+
54
+ .e-right-wrap::before {
55
+ content: '\e1ce';
56
+ }
57
+
50
58
  .e-font-name::before {
51
59
  content: '\e35f';
52
60
  }
@@ -269,6 +277,10 @@
269
277
  content: '\e1c6';
270
278
  }
271
279
 
280
+ .e-table-editCell-properties::before {
281
+ content: '\e1d1';
282
+ }
283
+
272
284
  .e-create-table::before {
273
285
  content: '\e294';
274
286
  }
@@ -47,6 +47,14 @@
47
47
  content: '\e334';
48
48
  }
49
49
 
50
+ .e-left-wrap::before {
51
+ content: '\e1cd';
52
+ }
53
+
54
+ .e-right-wrap::before {
55
+ content: '\e1ce';
56
+ }
57
+
50
58
  .e-font-name::before {
51
59
  content: '\e35f';
52
60
  }
@@ -269,6 +277,10 @@
269
277
  content: '\e1c6';
270
278
  }
271
279
 
280
+ .e-table-editCell-properties::before {
281
+ content: '\e1d1';
282
+ }
283
+
272
284
  .e-create-table::before {
273
285
  content: '\e294';
274
286
  }
@@ -47,6 +47,14 @@
47
47
  content: '\e334';
48
48
  }
49
49
 
50
+ .e-left-wrap::before {
51
+ content: '\ea23';
52
+ }
53
+
54
+ .e-right-wrap::before {
55
+ content: '\ea24';
56
+ }
57
+
50
58
  .e-font-name::before {
51
59
  content: '\e35f';
52
60
  }
@@ -269,6 +277,10 @@
269
277
  content: '\ea1c';
270
278
  }
271
279
 
280
+ .e-table-editCell-properties::before {
281
+ content: '\ea27';
282
+ }
283
+
272
284
  .e-create-table::before {
273
285
  content: '\e294';
274
286
  }
@@ -47,6 +47,14 @@
47
47
  content: '\e334';
48
48
  }
49
49
 
50
+ .e-left-wrap::before {
51
+ content: '\ea23';
52
+ }
53
+
54
+ .e-right-wrap::before {
55
+ content: '\ea24';
56
+ }
57
+
50
58
  .e-font-name::before {
51
59
  content: '\e35f';
52
60
  }
@@ -269,6 +277,10 @@
269
277
  content: '\ea1c';
270
278
  }
271
279
 
280
+ .e-table-editCell-properties::before {
281
+ content: '\ea27';
282
+ }
283
+
272
284
  .e-create-table::before {
273
285
  content: '\e294';
274
286
  }
@@ -46,6 +46,14 @@
46
46
  content: '\e721';
47
47
  }
48
48
 
49
+ .e-left-wrap::before {
50
+ content: '\e95b';
51
+ }
52
+
53
+ .e-right-wrap::before {
54
+ content: '\e95c';
55
+ }
56
+
49
57
  .e-font-name::before {
50
58
  content: '\e76f';
51
59
  }
@@ -268,6 +276,10 @@
268
276
  content: '\e954';
269
277
  }
270
278
 
279
+ .e-table-editCell-properties::before {
280
+ content: '\e95e';
281
+ }
282
+
271
283
  .e-create-table::before {
272
284
  content: '\e83f';
273
285
  }
@@ -46,6 +46,14 @@
46
46
  content: '\e721';
47
47
  }
48
48
 
49
+ .e-left-wrap::before {
50
+ content: '\e95b';
51
+ }
52
+
53
+ .e-right-wrap::before {
54
+ content: '\e95c';
55
+ }
56
+
49
57
  .e-font-name::before {
50
58
  content: '\e76f';
51
59
  }
@@ -268,6 +276,10 @@
268
276
  content: '\e954';
269
277
  }
270
278
 
279
+ .e-table-editCell-properties::before {
280
+ content: '\e95e';
281
+ }
282
+
271
283
  .e-create-table::before {
272
284
  content: '\e83f';
273
285
  }
@@ -46,6 +46,14 @@
46
46
  content: '\e721';
47
47
  }
48
48
 
49
+ .e-left-wrap::before {
50
+ content: '\e95b';
51
+ }
52
+
53
+ .e-right-wrap::before {
54
+ content: '\e95c';
55
+ }
56
+
49
57
  .e-font-name::before {
50
58
  content: '\e76f';
51
59
  }
@@ -268,6 +276,10 @@
268
276
  content: '\e954';
269
277
  }
270
278
 
279
+ .e-table-editCell-properties::before {
280
+ content: '\e95e';
281
+ }
282
+
271
283
  .e-create-table::before {
272
284
  content: '\e83f';
273
285
  }