@syncfusion/ej2-richtexteditor 25.1.41 → 25.2.3
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 +38 -0
- 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 +226 -90
- package/dist/es6/ej2-richtexteditor.es2015.js.map +1 -1
- package/dist/es6/ej2-richtexteditor.es5.js +226 -91
- 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 +23 -13
- package/src/common/util.d.ts +8 -0
- package/src/common/util.js +52 -0
- package/src/editor-manager/plugin/inserthtml.js +8 -2
- package/src/editor-manager/plugin/lists.d.ts +1 -0
- package/src/editor-manager/plugin/lists.js +97 -51
- package/src/editor-manager/plugin/ms-word-clean-up.js +2 -2
- package/src/editor-manager/plugin/nodecutter.js +2 -2
- package/src/editor-manager/plugin/undo.js +3 -1
- package/src/rich-text-editor/actions/emoji-picker.js +1 -1
- package/src/rich-text-editor/actions/enter-key.js +9 -0
- package/src/rich-text-editor/actions/html-editor.js +10 -12
- package/src/rich-text-editor/actions/paste-clean-up.js +13 -9
- package/src/rich-text-editor/base/enum.d.ts +4 -4
- package/src/rich-text-editor/base/enum.js +9 -9
- package/src/rich-text-editor/base/interface.d.ts +3 -3
- package/src/rich-text-editor/base/rich-text-editor.js +7 -0
- package/src/rich-text-editor/renderer/iframe-content-renderer.js +1 -1
- package/src/rich-text-editor/renderer/image-module.js +3 -3
- package/src/rich-text-editor/renderer/link-module.js +3 -0
- package/src/rich-text-editor/renderer/table-module.js +3 -0
- package/src/rich-text-editor/renderer/toolbar-renderer.d.ts +2 -0
- package/src/rich-text-editor/renderer/toolbar-renderer.js +7 -1
- package/styles/bootstrap-dark.css +7 -6
- package/styles/bootstrap.css +7 -6
- package/styles/bootstrap4.css +7 -6
- package/styles/bootstrap5-dark.css +7 -6
- package/styles/bootstrap5.css +7 -6
- package/styles/fabric-dark.css +7 -6
- package/styles/fabric.css +7 -6
- package/styles/fluent-dark.css +7 -6
- package/styles/fluent.css +7 -6
- package/styles/highcontrast-light.css +7 -6
- package/styles/highcontrast.css +7 -6
- package/styles/material-dark.css +7 -6
- package/styles/material.css +7 -6
- package/styles/material3-dark.css +7 -6
- package/styles/material3.css +7 -6
- package/styles/rich-text-editor/_layout.scss +7 -6
- package/styles/rich-text-editor/bootstrap-dark.css +7 -6
- package/styles/rich-text-editor/bootstrap.css +7 -6
- package/styles/rich-text-editor/bootstrap4.css +7 -6
- package/styles/rich-text-editor/bootstrap5-dark.css +7 -6
- package/styles/rich-text-editor/bootstrap5.css +7 -6
- package/styles/rich-text-editor/fabric-dark.css +7 -6
- package/styles/rich-text-editor/fabric.css +7 -6
- package/styles/rich-text-editor/fluent-dark.css +7 -6
- package/styles/rich-text-editor/fluent.css +7 -6
- package/styles/rich-text-editor/highcontrast-light.css +7 -6
- package/styles/rich-text-editor/highcontrast.css +7 -6
- package/styles/rich-text-editor/material-dark.css +7 -6
- package/styles/rich-text-editor/material.css +7 -6
- package/styles/rich-text-editor/material3-dark.css +7 -6
- package/styles/rich-text-editor/material3.css +7 -6
- package/styles/rich-text-editor/tailwind-dark.css +7 -6
- package/styles/rich-text-editor/tailwind.css +7 -6
- package/styles/tailwind-dark.css +7 -6
- package/styles/tailwind.css +7 -6
package/styles/tailwind.css
CHANGED
|
@@ -889,6 +889,12 @@
|
|
|
889
889
|
margin-left: 0;
|
|
890
890
|
padding-left: 5px;
|
|
891
891
|
}
|
|
892
|
+
.e-richtexteditor .e-rte-content .e-content table,
|
|
893
|
+
.e-richtexteditor .e-source-content .e-content table {
|
|
894
|
+
margin-bottom: 10px;
|
|
895
|
+
border-collapse: collapse;
|
|
896
|
+
empty-cells: show;
|
|
897
|
+
}
|
|
892
898
|
.e-richtexteditor .e-rte-content .e-content pre,
|
|
893
899
|
.e-richtexteditor .e-source-content .e-content pre {
|
|
894
900
|
background-color: inherit;
|
|
@@ -1201,7 +1207,7 @@
|
|
|
1201
1207
|
margin-right: 5px;
|
|
1202
1208
|
display: inline-block;
|
|
1203
1209
|
float: none;
|
|
1204
|
-
max-width:
|
|
1210
|
+
max-width: 100%;
|
|
1205
1211
|
padding: 1px;
|
|
1206
1212
|
vertical-align: bottom;
|
|
1207
1213
|
}
|
|
@@ -1286,11 +1292,6 @@
|
|
|
1286
1292
|
display: contents;
|
|
1287
1293
|
}
|
|
1288
1294
|
|
|
1289
|
-
.e-rte-table {
|
|
1290
|
-
border-collapse: collapse;
|
|
1291
|
-
empty-cells: show;
|
|
1292
|
-
}
|
|
1293
|
-
|
|
1294
1295
|
.e-rte-table td,
|
|
1295
1296
|
.e-rte-table th {
|
|
1296
1297
|
border: 1px solid #e5e7eb;
|