@syncfusion/ej2-richtexteditor 19.4.56 → 20.1.50
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 +9 -67
- 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 +121 -40
- package/dist/es6/ej2-richtexteditor.es2015.js.map +1 -1
- package/dist/es6/ej2-richtexteditor.es5.js +119 -38
- 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/editor-manager/base/constant.d.ts +6 -0
- package/src/editor-manager/base/constant.js +6 -0
- package/src/editor-manager/plugin/clearformat.js +3 -2
- package/src/editor-manager/plugin/inserthtml.js +8 -4
- package/src/editor-manager/plugin/lists.js +18 -6
- package/src/editor-manager/plugin/ms-word-clean-up.js +6 -0
- package/src/editor-manager/plugin/table.js +6 -5
- package/src/editor-manager/plugin/undo.js +1 -1
- package/src/rich-text-editor/actions/count.js +2 -2
- package/src/rich-text-editor/actions/dropdown-buttons.js +1 -1
- package/src/rich-text-editor/actions/html-editor.js +3 -2
- package/src/rich-text-editor/actions/paste-clean-up.d.ts +1 -0
- package/src/rich-text-editor/actions/paste-clean-up.js +11 -1
- package/src/rich-text-editor/base/classes.d.ts +5 -0
- package/src/rich-text-editor/base/classes.js +5 -0
- package/src/rich-text-editor/base/rich-text-editor.js +4 -3
- package/src/rich-text-editor/renderer/image-module.js +21 -5
- package/src/rich-text-editor/renderer/table-module.js +20 -5
- package/src/selection/selection.js +3 -0
- package/styles/bootstrap-dark.css +6 -3
- package/styles/bootstrap.css +6 -3
- package/styles/bootstrap4.css +2 -2
- package/styles/bootstrap5-dark.css +30 -6
- package/styles/bootstrap5.css +31 -7
- package/styles/fabric-dark.css +2 -2
- package/styles/fabric.css +2 -2
- package/styles/fluent-dark.css +3001 -0
- package/styles/fluent-dark.scss +1 -0
- package/styles/fluent.css +3001 -0
- package/styles/fluent.scss +1 -0
- package/styles/highcontrast-light.css +2 -2
- package/styles/highcontrast.css +2 -2
- package/styles/material-dark.css +2 -2
- package/styles/material.css +2 -2
- package/styles/rich-text-editor/_bootstrap-dark-definition.scss +19 -0
- package/styles/rich-text-editor/_bootstrap-definition.scss +19 -0
- package/styles/rich-text-editor/_bootstrap4-definition.scss +19 -0
- package/styles/rich-text-editor/_bootstrap5-definition.scss +24 -3
- package/styles/rich-text-editor/_fabric-dark-definition.scss +19 -0
- package/styles/rich-text-editor/_fabric-definition.scss +19 -0
- package/styles/rich-text-editor/_fluent-dark-definition.scss +1 -0
- package/styles/rich-text-editor/_fluent-definition.scss +42 -19
- package/styles/rich-text-editor/_highcontrast-definition.scss +19 -0
- package/styles/rich-text-editor/_highcontrast-light-definition.scss +19 -0
- package/styles/rich-text-editor/_layout.scss +96 -6
- package/styles/rich-text-editor/_material-dark-definition.scss +18 -1
- package/styles/rich-text-editor/_material-definition.scss +19 -0
- package/styles/rich-text-editor/_tailwind-definition.scss +26 -6
- package/styles/rich-text-editor/_theme.scss +17 -2
- package/styles/rich-text-editor/bootstrap-dark.css +6 -3
- package/styles/rich-text-editor/bootstrap.css +6 -3
- package/styles/rich-text-editor/bootstrap4.css +2 -2
- package/styles/rich-text-editor/bootstrap5-dark.css +30 -6
- package/styles/rich-text-editor/bootstrap5.css +31 -7
- package/styles/rich-text-editor/fabric-dark.css +2 -2
- package/styles/rich-text-editor/fabric.css +2 -2
- package/styles/rich-text-editor/fluent-dark.css +3001 -0
- package/styles/rich-text-editor/fluent-dark.scss +4 -0
- package/styles/rich-text-editor/fluent.css +3001 -0
- package/styles/rich-text-editor/fluent.scss +4 -0
- package/styles/rich-text-editor/highcontrast-light.css +2 -2
- package/styles/rich-text-editor/highcontrast.css +2 -2
- package/styles/rich-text-editor/icons/_fluent-dark.scss +1 -0
- package/styles/rich-text-editor/icons/_fluent.scss +74 -74
- package/styles/rich-text-editor/icons/_tailwind.scss +73 -74
- package/styles/rich-text-editor/material-dark.css +2 -2
- package/styles/rich-text-editor/material.css +2 -2
- package/styles/rich-text-editor/tailwind-dark.css +104 -85
- package/styles/rich-text-editor/tailwind.css +105 -86
- package/styles/tailwind-dark.css +104 -85
- package/styles/tailwind.css +105 -86
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
/*! component's theme wise override definitions and variables */
|
|
2
|
-
|
|
3
2
|
@include export-module('richtexteditor-material-icons') {
|
|
4
3
|
/*! richtexteditor icons */
|
|
5
4
|
|
|
@@ -7,298 +6,298 @@
|
|
|
7
6
|
.e-rte-dropdown-popup {
|
|
8
7
|
|
|
9
8
|
.e-alignments::before {
|
|
10
|
-
content: '\
|
|
9
|
+
content: '\e7b8';
|
|
11
10
|
}
|
|
12
11
|
|
|
13
12
|
.e-justify-left::before {
|
|
14
|
-
content: '\
|
|
13
|
+
content: '\e7b8';
|
|
15
14
|
}
|
|
16
15
|
|
|
17
16
|
.e-justify-center::before {
|
|
18
|
-
content: '\
|
|
17
|
+
content: '\e813';
|
|
19
18
|
}
|
|
20
19
|
|
|
21
20
|
.e-justify-right::before {
|
|
22
|
-
content: '\
|
|
21
|
+
content: '\e719';
|
|
23
22
|
}
|
|
24
23
|
|
|
25
24
|
.e-justify-full::before {
|
|
26
|
-
content: '\
|
|
25
|
+
content: '\e721';
|
|
27
26
|
}
|
|
28
27
|
|
|
29
28
|
.e-font-name::before {
|
|
30
|
-
content: '\
|
|
29
|
+
content: '\e76f';
|
|
31
30
|
}
|
|
32
31
|
|
|
33
32
|
.e-font-color::before {
|
|
34
|
-
content: '\
|
|
33
|
+
content: '\e79f';
|
|
35
34
|
}
|
|
36
35
|
|
|
37
36
|
.e-background-color::before {
|
|
38
|
-
content: '\
|
|
37
|
+
content: '\e783';
|
|
39
38
|
}
|
|
40
39
|
|
|
41
40
|
.e-bold::before {
|
|
42
|
-
content: '\
|
|
41
|
+
content: '\e737';
|
|
43
42
|
}
|
|
44
43
|
|
|
45
44
|
.e-italic::before {
|
|
46
|
-
content: '\
|
|
45
|
+
content: '\e75a';
|
|
47
46
|
}
|
|
48
47
|
|
|
49
48
|
.e-underline::before {
|
|
50
|
-
content: '\
|
|
49
|
+
content: '\e82f';
|
|
51
50
|
}
|
|
52
51
|
|
|
53
52
|
.e-strike-through::before {
|
|
54
|
-
content: '\
|
|
53
|
+
content: '\e758';
|
|
55
54
|
}
|
|
56
55
|
|
|
57
56
|
.e-clear-format::before {
|
|
58
|
-
content: '\
|
|
57
|
+
content: '\e803';
|
|
59
58
|
}
|
|
60
59
|
|
|
61
60
|
.e-clear-all::before {
|
|
62
|
-
content: '\
|
|
61
|
+
content: '\e7cc';
|
|
63
62
|
}
|
|
64
63
|
|
|
65
64
|
.e-cut::before {
|
|
66
|
-
content: '\
|
|
65
|
+
content: '\e7fb';
|
|
67
66
|
}
|
|
68
67
|
|
|
69
68
|
.e-copy::before {
|
|
70
|
-
content: '\
|
|
69
|
+
content: '\e77c';
|
|
71
70
|
}
|
|
72
71
|
|
|
73
72
|
.e-paste::before {
|
|
74
|
-
content: '\
|
|
73
|
+
content: '\e70b';
|
|
75
74
|
}
|
|
76
75
|
|
|
77
76
|
.e-unorder-list::before {
|
|
78
|
-
content: '\
|
|
77
|
+
content: '\e77e';
|
|
79
78
|
}
|
|
80
79
|
|
|
81
80
|
.e-order-list::before {
|
|
82
|
-
content: '\
|
|
81
|
+
content: '\e7cb';
|
|
83
82
|
}
|
|
84
83
|
|
|
85
84
|
.e-indent::before {
|
|
86
|
-
content: '\
|
|
85
|
+
content: '\e810';
|
|
87
86
|
}
|
|
88
87
|
|
|
89
88
|
.e-outdent::before {
|
|
90
|
-
content: '\
|
|
89
|
+
content: '\e72a';
|
|
91
90
|
}
|
|
92
91
|
|
|
93
92
|
.e-undo::before {
|
|
94
|
-
content: '\
|
|
93
|
+
content: '\e713';
|
|
95
94
|
}
|
|
96
95
|
|
|
97
96
|
.e-redo::before {
|
|
98
|
-
content: '\
|
|
97
|
+
content: '\e755';
|
|
99
98
|
}
|
|
100
99
|
|
|
101
100
|
.e-super-script::before {
|
|
102
|
-
content: '\
|
|
101
|
+
content: '\e7a7';
|
|
103
102
|
}
|
|
104
103
|
|
|
105
104
|
.e-sub-script::before {
|
|
106
|
-
content: '\
|
|
105
|
+
content: '\e80a';
|
|
107
106
|
}
|
|
108
107
|
|
|
109
108
|
.e-create-link::before {
|
|
110
|
-
content: '\
|
|
109
|
+
content: '\e757';
|
|
111
110
|
}
|
|
112
111
|
|
|
113
112
|
.e-open-link::before {
|
|
114
|
-
content: '\
|
|
113
|
+
content: '\e77a';
|
|
115
114
|
}
|
|
116
115
|
|
|
117
116
|
.e-edit-link::before {
|
|
118
|
-
content: '\
|
|
117
|
+
content: '\e722';
|
|
119
118
|
}
|
|
120
119
|
|
|
121
120
|
.e-remove-link::before {
|
|
122
|
-
content: '\
|
|
121
|
+
content: '\e80c';
|
|
123
122
|
}
|
|
124
123
|
|
|
125
124
|
.e-image::before {
|
|
126
|
-
content: '\
|
|
125
|
+
content: '\e786';
|
|
127
126
|
}
|
|
128
127
|
|
|
129
128
|
.e-replace::before {
|
|
130
|
-
content: '\
|
|
129
|
+
content: '\e710';
|
|
131
130
|
}
|
|
132
131
|
|
|
133
132
|
.e-align::before {
|
|
134
|
-
content: '\
|
|
133
|
+
content: '\e7b8';
|
|
135
134
|
}
|
|
136
135
|
|
|
137
136
|
.e-caption::before {
|
|
138
|
-
content: '\
|
|
137
|
+
content: '\e82e';
|
|
139
138
|
}
|
|
140
139
|
|
|
141
140
|
.e-remove::before {
|
|
142
|
-
content: '\
|
|
141
|
+
content: '\e820';
|
|
143
142
|
}
|
|
144
143
|
|
|
145
144
|
.e-insert-link::before {
|
|
146
|
-
content: '\
|
|
145
|
+
content: '\e757';
|
|
147
146
|
}
|
|
148
147
|
|
|
149
148
|
.e-display::before {
|
|
150
|
-
content: '\
|
|
149
|
+
content: '\e7b7';
|
|
151
150
|
}
|
|
152
151
|
|
|
153
152
|
.e-alt-text::before {
|
|
154
|
-
content: '\
|
|
153
|
+
content: '\e769';
|
|
155
154
|
}
|
|
156
155
|
|
|
157
156
|
.e-img-dimension::before {
|
|
158
|
-
content: '\
|
|
157
|
+
content: '\e879';
|
|
159
158
|
}
|
|
160
159
|
|
|
161
160
|
.e-maximize::before {
|
|
162
|
-
content: '\
|
|
161
|
+
content: '\e81c';
|
|
163
162
|
}
|
|
164
163
|
|
|
165
164
|
.e-minimize::before {
|
|
166
|
-
content: '\
|
|
165
|
+
content: '\e7b0';
|
|
167
166
|
}
|
|
168
167
|
|
|
169
168
|
.e-zoom-in::before {
|
|
170
|
-
content: '\
|
|
169
|
+
content: '\e795';
|
|
171
170
|
}
|
|
172
171
|
|
|
173
172
|
.e-zoom-out::before {
|
|
174
|
-
content: '\
|
|
173
|
+
content: '\e825';
|
|
175
174
|
}
|
|
176
175
|
|
|
177
176
|
.e-lower-case::before {
|
|
178
|
-
content: '\
|
|
177
|
+
content: '\e746';
|
|
179
178
|
}
|
|
180
179
|
|
|
181
180
|
.e-upper-case::before {
|
|
182
|
-
content: '\
|
|
181
|
+
content: '\e793';
|
|
183
182
|
}
|
|
184
183
|
|
|
185
184
|
.e-print::before {
|
|
186
|
-
content: '\
|
|
185
|
+
content: '\e75d';
|
|
187
186
|
}
|
|
188
187
|
|
|
189
188
|
.e-formats::before {
|
|
190
|
-
content: '\
|
|
189
|
+
content: '\e844';
|
|
191
190
|
}
|
|
192
191
|
|
|
193
192
|
.e-source-code::before {
|
|
194
|
-
content: '\
|
|
193
|
+
content: '\e80e';
|
|
195
194
|
}
|
|
196
195
|
|
|
197
196
|
.e-preview::before {
|
|
198
|
-
content: '\
|
|
197
|
+
content: '\e7de';
|
|
199
198
|
}
|
|
200
199
|
|
|
201
200
|
.e-view-side::before {
|
|
202
|
-
content: '\
|
|
201
|
+
content: '\e82b';
|
|
203
202
|
}
|
|
204
203
|
|
|
205
204
|
.e-insert-code::before {
|
|
206
|
-
content: '\
|
|
205
|
+
content: '\e831';
|
|
207
206
|
}
|
|
208
207
|
|
|
209
208
|
.e-table-header::before {
|
|
210
|
-
content: '\
|
|
209
|
+
content: '\e7c3';
|
|
211
210
|
}
|
|
212
211
|
|
|
213
212
|
.e-table-remove::before {
|
|
214
|
-
content: '\
|
|
213
|
+
content: '\e820';
|
|
215
214
|
}
|
|
216
215
|
|
|
217
216
|
.e-table-rows::before {
|
|
218
|
-
content: '\
|
|
217
|
+
content: '\e77f';
|
|
219
218
|
}
|
|
220
219
|
|
|
221
220
|
.e-table-columns::before {
|
|
222
|
-
content: '\
|
|
221
|
+
content: '\e841';
|
|
223
222
|
}
|
|
224
223
|
|
|
225
224
|
.e-table-cell-ver-align::before {
|
|
226
|
-
content: '\
|
|
225
|
+
content: '\e74f';
|
|
227
226
|
}
|
|
228
227
|
|
|
229
228
|
.e-table-edit-properties::before {
|
|
230
|
-
content: '\
|
|
229
|
+
content: '\e730';
|
|
231
230
|
}
|
|
232
231
|
|
|
233
232
|
.e-create-table::before {
|
|
234
|
-
content: '\
|
|
233
|
+
content: '\e7e9';
|
|
235
234
|
}
|
|
236
235
|
|
|
237
236
|
.e-align-bottom::before {
|
|
238
|
-
content: '\
|
|
237
|
+
content: '\e7a0';
|
|
239
238
|
}
|
|
240
239
|
|
|
241
240
|
.e-align-middle::before {
|
|
242
|
-
content: '\
|
|
241
|
+
content: '\e74f';
|
|
243
242
|
}
|
|
244
243
|
|
|
245
244
|
.e-align-top::before {
|
|
246
|
-
content: '\
|
|
245
|
+
content: '\e707';
|
|
247
246
|
}
|
|
248
247
|
|
|
249
248
|
.e-insert-column-left::before {
|
|
250
|
-
content: '\
|
|
249
|
+
content: '\e78b';
|
|
251
250
|
}
|
|
252
251
|
|
|
253
252
|
.e-insert-column-right::before {
|
|
254
|
-
content: '\
|
|
253
|
+
content: '\e70e';
|
|
255
254
|
}
|
|
256
255
|
|
|
257
256
|
.e-delete-column::before {
|
|
258
|
-
content: '\
|
|
257
|
+
content: '\e714';
|
|
259
258
|
}
|
|
260
259
|
|
|
261
260
|
.e-insert-row-before::before {
|
|
262
|
-
content: '\
|
|
261
|
+
content: '\e836';
|
|
263
262
|
}
|
|
264
263
|
|
|
265
264
|
.e-insert-row-after::before {
|
|
266
|
-
content: '\
|
|
265
|
+
content: '\e801';
|
|
267
266
|
}
|
|
268
267
|
|
|
269
268
|
.e-delete-row::before {
|
|
270
|
-
content: '\
|
|
269
|
+
content: '\e7f2';
|
|
271
270
|
}
|
|
272
271
|
|
|
273
272
|
.e-style::before {
|
|
274
|
-
content: '\
|
|
273
|
+
content: '\e76e';
|
|
275
274
|
}
|
|
276
275
|
|
|
277
276
|
.e-rte-file-manager::before {
|
|
278
|
-
content: '\
|
|
277
|
+
content: '\e83c';
|
|
279
278
|
}
|
|
280
279
|
}
|
|
281
280
|
|
|
282
281
|
.e-richtexteditor {
|
|
283
282
|
.e-south-east::before,
|
|
284
283
|
.e-south-west::before {
|
|
285
|
-
content: '\
|
|
284
|
+
content: '\e761';
|
|
286
285
|
}
|
|
287
286
|
}
|
|
288
287
|
|
|
289
288
|
.e-cell-merge::before {
|
|
290
|
-
content: '\
|
|
289
|
+
content: '\e83a';
|
|
291
290
|
}
|
|
292
291
|
|
|
293
292
|
.e-cell-horizontal-split::before {
|
|
294
|
-
content: '\
|
|
293
|
+
content: '\e7a4';
|
|
295
294
|
}
|
|
296
295
|
|
|
297
296
|
.e-cell-vertical-split::before {
|
|
298
|
-
content: '\
|
|
297
|
+
content: '\e732';
|
|
299
298
|
}
|
|
300
299
|
|
|
301
300
|
.e-table-cell::before {
|
|
302
|
-
content: '\
|
|
301
|
+
content: '\e7c2';
|
|
303
302
|
}
|
|
304
303
|
}
|
|
@@ -746,6 +746,7 @@
|
|
|
746
746
|
line-height: 16px;
|
|
747
747
|
opacity: 00.54;
|
|
748
748
|
overflow: hidden;
|
|
749
|
+
padding: 16px;
|
|
749
750
|
position: absolute;
|
|
750
751
|
text-align: start;
|
|
751
752
|
top: 0;
|
|
@@ -910,10 +911,9 @@
|
|
|
910
911
|
.e-richtexteditor .e-rte-character-count {
|
|
911
912
|
bottom: 0;
|
|
912
913
|
color: #fff;
|
|
913
|
-
font-family: 'Times New Roman', Georgia, Serif;
|
|
914
914
|
font-size: 14px;
|
|
915
915
|
margin-right: 30px;
|
|
916
|
-
opacity:
|
|
916
|
+
opacity: 0.54;
|
|
917
917
|
padding-bottom: 2px;
|
|
918
918
|
position: absolute;
|
|
919
919
|
right: 0;
|
|
@@ -746,6 +746,7 @@
|
|
|
746
746
|
line-height: 16px;
|
|
747
747
|
opacity: 00.54;
|
|
748
748
|
overflow: hidden;
|
|
749
|
+
padding: 16px;
|
|
749
750
|
position: absolute;
|
|
750
751
|
text-align: start;
|
|
751
752
|
top: 0;
|
|
@@ -910,10 +911,9 @@
|
|
|
910
911
|
.e-richtexteditor .e-rte-character-count {
|
|
911
912
|
bottom: 0;
|
|
912
913
|
color: #000;
|
|
913
|
-
font-family: 'Times New Roman', Georgia, Serif;
|
|
914
914
|
font-size: 14px;
|
|
915
915
|
margin-right: 30px;
|
|
916
|
-
opacity:
|
|
916
|
+
opacity: 0.54;
|
|
917
917
|
padding-bottom: 2px;
|
|
918
918
|
position: absolute;
|
|
919
919
|
right: 0;
|