@syncfusion/ej2-richtexteditor 25.1.42 → 25.2.4
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.
- package/CHANGELOG.md +26 -4
- package/dist/ej2-richtexteditor.min.js +2 -2
- package/dist/ej2-richtexteditor.umd.min.js +2 -2
- package/dist/ej2-richtexteditor.umd.min.js.map +1 -1
- package/dist/es6/ej2-richtexteditor.es2015.js +110 -24
- package/dist/es6/ej2-richtexteditor.es2015.js.map +1 -1
- package/dist/es6/ej2-richtexteditor.es5.js +115 -26
- package/dist/es6/ej2-richtexteditor.es5.js.map +1 -1
- package/dist/global/ej2-richtexteditor.min.js +2 -2
- package/dist/global/ej2-richtexteditor.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +12 -12
- package/src/common/util.d.ts +8 -0
- package/src/common/util.js +52 -0
- package/src/editor-manager/plugin/dom-node.js +1 -1
- package/src/editor-manager/plugin/ms-word-clean-up.js +2 -2
- package/src/editor-manager/plugin/undo.js +3 -1
- package/src/rich-text-editor/actions/html-editor.js +2 -10
- package/src/rich-text-editor/actions/paste-clean-up.d.ts +1 -0
- package/src/rich-text-editor/actions/paste-clean-up.js +52 -12
- package/src/rich-text-editor/base/rich-text-editor.d.ts +1 -0
- package/src/rich-text-editor/base/rich-text-editor.js +6 -2
- package/styles/bootstrap-dark.css +3 -6
- package/styles/bootstrap.css +3 -6
- package/styles/bootstrap4.css +3 -6
- package/styles/bootstrap5-dark.css +3 -6
- package/styles/bootstrap5.css +3 -6
- package/styles/fabric-dark.css +3 -6
- package/styles/fabric.css +3 -6
- package/styles/fluent-dark.css +3 -6
- package/styles/fluent.css +3 -6
- package/styles/highcontrast-light.css +3 -6
- package/styles/highcontrast.css +3 -6
- package/styles/material-dark.css +3 -6
- package/styles/material.css +3 -6
- package/styles/material3-dark.css +3 -6
- package/styles/material3.css +3 -6
- package/styles/rich-text-editor/_layout.scss +3 -6
- package/styles/rich-text-editor/bootstrap-dark.css +3 -6
- package/styles/rich-text-editor/bootstrap.css +3 -6
- package/styles/rich-text-editor/bootstrap4.css +3 -6
- package/styles/rich-text-editor/bootstrap5-dark.css +3 -6
- package/styles/rich-text-editor/bootstrap5.css +3 -6
- package/styles/rich-text-editor/fabric-dark.css +3 -6
- package/styles/rich-text-editor/fabric.css +3 -6
- package/styles/rich-text-editor/fluent-dark.css +3 -6
- package/styles/rich-text-editor/fluent.css +3 -6
- package/styles/rich-text-editor/highcontrast-light.css +3 -6
- package/styles/rich-text-editor/highcontrast.css +3 -6
- package/styles/rich-text-editor/material-dark.css +3 -6
- package/styles/rich-text-editor/material.css +3 -6
- package/styles/rich-text-editor/material3-dark.css +3 -6
- package/styles/rich-text-editor/material3.css +3 -6
- package/styles/rich-text-editor/tailwind-dark.css +3 -6
- package/styles/rich-text-editor/tailwind.css +3 -6
- package/styles/tailwind-dark.css +3 -6
- package/styles/tailwind.css +3 -6
|
@@ -892,6 +892,8 @@
|
|
|
892
892
|
.e-richtexteditor .e-rte-content .e-content table,
|
|
893
893
|
.e-richtexteditor .e-source-content .e-content table {
|
|
894
894
|
margin-bottom: 10px;
|
|
895
|
+
border-collapse: collapse;
|
|
896
|
+
empty-cells: show;
|
|
895
897
|
}
|
|
896
898
|
.e-richtexteditor .e-rte-content .e-content pre,
|
|
897
899
|
.e-richtexteditor .e-source-content .e-content pre {
|
|
@@ -1205,7 +1207,7 @@
|
|
|
1205
1207
|
margin-right: 5px;
|
|
1206
1208
|
display: inline-block;
|
|
1207
1209
|
float: none;
|
|
1208
|
-
max-width:
|
|
1210
|
+
max-width: 100%;
|
|
1209
1211
|
padding: 1px;
|
|
1210
1212
|
vertical-align: bottom;
|
|
1211
1213
|
}
|
|
@@ -1290,11 +1292,6 @@
|
|
|
1290
1292
|
display: contents;
|
|
1291
1293
|
}
|
|
1292
1294
|
|
|
1293
|
-
.e-rte-table {
|
|
1294
|
-
border-collapse: collapse;
|
|
1295
|
-
empty-cells: show;
|
|
1296
|
-
}
|
|
1297
|
-
|
|
1298
1295
|
.e-rte-table td,
|
|
1299
1296
|
.e-rte-table th {
|
|
1300
1297
|
border: 1px solid #e5e7eb;
|
package/styles/tailwind-dark.css
CHANGED
|
@@ -892,6 +892,8 @@
|
|
|
892
892
|
.e-richtexteditor .e-rte-content .e-content table,
|
|
893
893
|
.e-richtexteditor .e-source-content .e-content table {
|
|
894
894
|
margin-bottom: 10px;
|
|
895
|
+
border-collapse: collapse;
|
|
896
|
+
empty-cells: show;
|
|
895
897
|
}
|
|
896
898
|
.e-richtexteditor .e-rte-content .e-content pre,
|
|
897
899
|
.e-richtexteditor .e-source-content .e-content pre {
|
|
@@ -1205,7 +1207,7 @@
|
|
|
1205
1207
|
margin-right: 5px;
|
|
1206
1208
|
display: inline-block;
|
|
1207
1209
|
float: none;
|
|
1208
|
-
max-width:
|
|
1210
|
+
max-width: 100%;
|
|
1209
1211
|
padding: 1px;
|
|
1210
1212
|
vertical-align: bottom;
|
|
1211
1213
|
}
|
|
@@ -1290,11 +1292,6 @@
|
|
|
1290
1292
|
display: contents;
|
|
1291
1293
|
}
|
|
1292
1294
|
|
|
1293
|
-
.e-rte-table {
|
|
1294
|
-
border-collapse: collapse;
|
|
1295
|
-
empty-cells: show;
|
|
1296
|
-
}
|
|
1297
|
-
|
|
1298
1295
|
.e-rte-table td,
|
|
1299
1296
|
.e-rte-table th {
|
|
1300
1297
|
border: 1px solid #4b5563;
|
package/styles/tailwind.css
CHANGED
|
@@ -892,6 +892,8 @@
|
|
|
892
892
|
.e-richtexteditor .e-rte-content .e-content table,
|
|
893
893
|
.e-richtexteditor .e-source-content .e-content table {
|
|
894
894
|
margin-bottom: 10px;
|
|
895
|
+
border-collapse: collapse;
|
|
896
|
+
empty-cells: show;
|
|
895
897
|
}
|
|
896
898
|
.e-richtexteditor .e-rte-content .e-content pre,
|
|
897
899
|
.e-richtexteditor .e-source-content .e-content pre {
|
|
@@ -1205,7 +1207,7 @@
|
|
|
1205
1207
|
margin-right: 5px;
|
|
1206
1208
|
display: inline-block;
|
|
1207
1209
|
float: none;
|
|
1208
|
-
max-width:
|
|
1210
|
+
max-width: 100%;
|
|
1209
1211
|
padding: 1px;
|
|
1210
1212
|
vertical-align: bottom;
|
|
1211
1213
|
}
|
|
@@ -1290,11 +1292,6 @@
|
|
|
1290
1292
|
display: contents;
|
|
1291
1293
|
}
|
|
1292
1294
|
|
|
1293
|
-
.e-rte-table {
|
|
1294
|
-
border-collapse: collapse;
|
|
1295
|
-
empty-cells: show;
|
|
1296
|
-
}
|
|
1297
|
-
|
|
1298
1295
|
.e-rte-table td,
|
|
1299
1296
|
.e-rte-table th {
|
|
1300
1297
|
border: 1px solid #e5e7eb;
|