@syncfusion/ej2-angular-richtexteditor 23.2.7-ngcc → 23.2.7

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 (87) hide show
  1. package/esm2020/public_api.mjs +3 -0
  2. package/esm2020/src/index.mjs +5 -0
  3. package/esm2020/src/rich-text-editor/richtexteditor-all.module.mjs +71 -0
  4. package/esm2020/src/rich-text-editor/richtexteditor.component.mjs +197 -0
  5. package/esm2020/src/rich-text-editor/richtexteditor.module.mjs +25 -0
  6. package/esm2020/syncfusion-ej2-angular-richtexteditor.mjs +5 -0
  7. package/fesm2015/syncfusion-ej2-angular-richtexteditor.mjs +293 -0
  8. package/fesm2015/syncfusion-ej2-angular-richtexteditor.mjs.map +1 -0
  9. package/fesm2020/syncfusion-ej2-angular-richtexteditor.mjs +293 -0
  10. package/fesm2020/syncfusion-ej2-angular-richtexteditor.mjs.map +1 -0
  11. package/package.json +27 -13
  12. package/schematics/utils/lib-details.d.ts +2 -2
  13. package/src/rich-text-editor/richtexteditor-all.module.d.ts +6 -0
  14. package/src/rich-text-editor/richtexteditor.component.d.ts +3 -0
  15. package/src/rich-text-editor/richtexteditor.module.d.ts +6 -0
  16. package/styles/_all.scss +1 -0
  17. package/styles/material3-dark.scss +1 -0
  18. package/styles/material3.scss +1 -0
  19. package/styles/rich-text-editor/_all.scss +2 -0
  20. package/styles/rich-text-editor/_bootstrap-dark-definition.scss +277 -0
  21. package/styles/rich-text-editor/_bootstrap-definition.scss +334 -0
  22. package/styles/rich-text-editor/_bootstrap4-definition.scss +460 -0
  23. package/styles/rich-text-editor/_bootstrap5-dark-definition.scss +1 -0
  24. package/styles/rich-text-editor/_bootstrap5-definition.scss +262 -0
  25. package/styles/rich-text-editor/_fabric-dark-definition.scss +259 -0
  26. package/styles/rich-text-editor/_fabric-definition.scss +257 -0
  27. package/styles/rich-text-editor/_fluent-dark-definition.scss +1 -0
  28. package/styles/rich-text-editor/_fluent-definition.scss +263 -0
  29. package/styles/rich-text-editor/_fusionnew-definition.scss +261 -0
  30. package/styles/rich-text-editor/_highcontrast-definition.scss +257 -0
  31. package/styles/rich-text-editor/_highcontrast-light-definition.scss +257 -0
  32. package/styles/rich-text-editor/_layout.scss +2072 -0
  33. package/styles/rich-text-editor/_material-dark-definition.scss +262 -0
  34. package/styles/rich-text-editor/_material-definition.scss +260 -0
  35. package/styles/rich-text-editor/_material3-dark-definition.scss +1 -0
  36. package/styles/rich-text-editor/_material3-definition.scss +262 -0
  37. package/styles/rich-text-editor/_tailwind-dark-definition.scss +1 -0
  38. package/styles/rich-text-editor/_tailwind-definition.scss +257 -0
  39. package/styles/rich-text-editor/_theme.scss +837 -0
  40. package/styles/rich-text-editor/bootstrap-dark.scss +4 -1
  41. package/styles/rich-text-editor/bootstrap.scss +4 -1
  42. package/styles/rich-text-editor/bootstrap4.scss +4 -1
  43. package/styles/rich-text-editor/bootstrap5-dark.scss +4 -1
  44. package/styles/rich-text-editor/bootstrap5.scss +4 -1
  45. package/styles/rich-text-editor/fabric-dark.scss +4 -1
  46. package/styles/rich-text-editor/fabric.scss +4 -1
  47. package/styles/rich-text-editor/fluent-dark.scss +4 -1
  48. package/styles/rich-text-editor/fluent.scss +4 -1
  49. package/styles/rich-text-editor/highcontrast-light.scss +4 -1
  50. package/styles/rich-text-editor/highcontrast.scss +4 -1
  51. package/styles/rich-text-editor/icons/_bootstrap-dark.scss +349 -0
  52. package/styles/rich-text-editor/icons/_bootstrap.scss +349 -0
  53. package/styles/rich-text-editor/icons/_bootstrap4.scss +349 -0
  54. package/styles/rich-text-editor/icons/_bootstrap5-dark.scss +1 -0
  55. package/styles/rich-text-editor/icons/_bootstrap5.scss +348 -0
  56. package/styles/rich-text-editor/icons/_fabric-dark.scss +349 -0
  57. package/styles/rich-text-editor/icons/_fabric.scss +349 -0
  58. package/styles/rich-text-editor/icons/_fluent-dark.scss +1 -0
  59. package/styles/rich-text-editor/icons/_fluent.scss +348 -0
  60. package/styles/rich-text-editor/icons/_fusionnew.scss +348 -0
  61. package/styles/rich-text-editor/icons/_highcontrast-light.scss +349 -0
  62. package/styles/rich-text-editor/icons/_highcontrast.scss +349 -0
  63. package/styles/rich-text-editor/icons/_material-dark.scss +349 -0
  64. package/styles/rich-text-editor/icons/_material.scss +349 -0
  65. package/styles/rich-text-editor/icons/_material3-dark.scss +1 -0
  66. package/styles/rich-text-editor/icons/_material3.scss +348 -0
  67. package/styles/rich-text-editor/icons/_tailwind-dark.scss +1 -0
  68. package/styles/rich-text-editor/icons/_tailwind.scss +348 -0
  69. package/styles/rich-text-editor/material-dark.scss +4 -1
  70. package/styles/rich-text-editor/material.scss +4 -1
  71. package/styles/rich-text-editor/material3-dark.scss +4 -1
  72. package/styles/rich-text-editor/material3.scss +4 -1
  73. package/styles/rich-text-editor/tailwind-dark.scss +4 -1
  74. package/styles/rich-text-editor/tailwind.scss +4 -1
  75. package/syncfusion-ej2-angular-richtexteditor.d.ts +5 -0
  76. package/@syncfusion/ej2-angular-richtexteditor.es5.js +0 -343
  77. package/@syncfusion/ej2-angular-richtexteditor.es5.js.map +0 -1
  78. package/@syncfusion/ej2-angular-richtexteditor.js +0 -324
  79. package/@syncfusion/ej2-angular-richtexteditor.js.map +0 -1
  80. package/CHANGELOG.md +0 -1532
  81. package/dist/ej2-angular-richtexteditor.umd.js +0 -828
  82. package/dist/ej2-angular-richtexteditor.umd.js.map +0 -1
  83. package/dist/ej2-angular-richtexteditor.umd.min.js +0 -11
  84. package/dist/ej2-angular-richtexteditor.umd.min.js.map +0 -1
  85. package/ej2-angular-richtexteditor.d.ts +0 -5
  86. package/ej2-angular-richtexteditor.metadata.json +0 -1
  87. package/postinstall/tagchange.js +0 -18
@@ -0,0 +1,348 @@
1
+ /*! component's theme wise override definitions and variables */
2
+ @include export-module('richtexteditor-material-icons') {
3
+
4
+ /*! richtexteditor icons */
5
+
6
+ .e-rte-toolbar,
7
+ .e-rte-dropdown-popup {
8
+
9
+ .e-alignments::before {
10
+ content: '\e7b8';
11
+ }
12
+
13
+ .e-justify-left::before {
14
+ content: '\e7b8';
15
+ }
16
+
17
+ .e-justify-center::before {
18
+ content: '\e813';
19
+ }
20
+
21
+ .e-justify-right::before {
22
+ content: '\e719';
23
+ }
24
+
25
+ .e-justify-full::before {
26
+ content: '\e721';
27
+ }
28
+
29
+ .e-font-name::before {
30
+ content: '\e76f';
31
+ }
32
+
33
+ .e-rte-font-color::before {
34
+ content: '\e79f';
35
+ }
36
+
37
+ .e-background-color::before {
38
+ content: '\e783';
39
+ }
40
+
41
+ .e-bold::before {
42
+ content: '\e737';
43
+ }
44
+
45
+ .e-italic::before {
46
+ content: '\e75a';
47
+ }
48
+
49
+ .e-underline::before {
50
+ content: '\e82f';
51
+ }
52
+
53
+ .e-strike-through::before {
54
+ content: '\e758';
55
+ }
56
+
57
+ .e-clear-format::before {
58
+ content: '\e803';
59
+ }
60
+
61
+ .e-clear-all::before {
62
+ content: '\e7cc';
63
+ }
64
+
65
+ .e-cut::before {
66
+ content: '\e7fb';
67
+ }
68
+
69
+ .e-copy::before {
70
+ content: '\e77c';
71
+ }
72
+
73
+ .e-paste::before {
74
+ content: '\e70b';
75
+ }
76
+
77
+ .e-unorder-list::before {
78
+ content: '\e77e';
79
+ }
80
+
81
+ .e-order-list::before {
82
+ content: '\e7cb';
83
+ }
84
+
85
+ .e-indent::before {
86
+ content: '\e810';
87
+ }
88
+
89
+ .e-outdent::before {
90
+ content: '\e72a';
91
+ }
92
+
93
+ .e-undo::before {
94
+ content: '\e713';
95
+ }
96
+
97
+ .e-redo::before {
98
+ content: '\e755';
99
+ }
100
+
101
+ .e-super-script::before {
102
+ content: '\e7a7';
103
+ }
104
+
105
+ .e-sub-script::before {
106
+ content: '\e80a';
107
+ }
108
+
109
+ .e-create-link::before {
110
+ content: '\e757';
111
+ }
112
+
113
+ .e-open-link::before {
114
+ content: '\e77a';
115
+ }
116
+
117
+ .e-edit-link::before {
118
+ content: '\e722';
119
+ }
120
+
121
+ .e-remove-link::before {
122
+ content: '\e80c';
123
+ }
124
+
125
+ .e-image::before {
126
+ content: '\e786';
127
+ }
128
+
129
+ .e-audio::before {
130
+ content: '\e894';
131
+ }
132
+
133
+ .e-video::before {
134
+ content: '\e895';
135
+ }
136
+
137
+ .e-replace::before,
138
+ .e-audio-replace::before,
139
+ .e-video-replace::before {
140
+ content: '\e710';
141
+ }
142
+
143
+ .e-align::before {
144
+ content: '\e7b8';
145
+ }
146
+
147
+ .e-caption::before {
148
+ content: '\e82e';
149
+ }
150
+
151
+ .e-remove::before,
152
+ .e-audio-remove::before,
153
+ .e-video-remove::before {
154
+ content: '\e820';
155
+ }
156
+
157
+ .e-insert-link::before {
158
+ content: '\e757';
159
+ }
160
+
161
+ .e-display::before,
162
+ .e-audio-display::before,
163
+ .e-video-display::before {
164
+ content: '\e7b7';
165
+ }
166
+
167
+ .e-alt-text::before {
168
+ content: '\e769';
169
+ }
170
+
171
+ .e-img-dimension::before,
172
+ .e-video-dimension::before {
173
+ content: '\e879';
174
+ }
175
+
176
+ .e-maximize::before {
177
+ content: '\e81c';
178
+ }
179
+
180
+ .e-minimize::before {
181
+ content: '\e7b0';
182
+ }
183
+
184
+ .e-zoom-in::before {
185
+ content: '\e795';
186
+ }
187
+
188
+ .e-zoom-out::before {
189
+ content: '\e825';
190
+ }
191
+
192
+ .e-lower-case::before {
193
+ content: '\e746';
194
+ }
195
+
196
+ .e-upper-case::before {
197
+ content: '\e793';
198
+ }
199
+
200
+ .e-print::before {
201
+ content: '\e75d';
202
+ }
203
+
204
+ .e-formats::before {
205
+ content: '\e844';
206
+ }
207
+
208
+ .e-source-code::before {
209
+ content: '\e80e';
210
+ }
211
+
212
+ .e-preview::before {
213
+ content: '\e7de';
214
+ }
215
+
216
+ .e-view-side::before {
217
+ content: '\e82b';
218
+ }
219
+
220
+ .e-insert-code::before {
221
+ content: '\e831';
222
+ }
223
+
224
+ .e-table-header::before {
225
+ content: '\e7c3';
226
+ }
227
+
228
+ .e-table-remove::before {
229
+ content: '\e820';
230
+ }
231
+
232
+ .e-table-rows::before {
233
+ content: '\e77f';
234
+ }
235
+
236
+ .e-table-columns::before {
237
+ content: '\e841';
238
+ }
239
+
240
+ .e-table-cell-ver-align::before {
241
+ content: '\e74f';
242
+ }
243
+
244
+ .e-table-edit-properties::before {
245
+ content: '\e730';
246
+ }
247
+
248
+ .e-create-table::before {
249
+ content: '\e7e9';
250
+ }
251
+
252
+ .e-align-bottom::before {
253
+ content: '\e7a0';
254
+ }
255
+
256
+ .e-align-middle::before {
257
+ content: '\e74f';
258
+ }
259
+
260
+ .e-align-top::before {
261
+ content: '\e707';
262
+ }
263
+
264
+ .e-insert-column-left::before {
265
+ content: '\e78b';
266
+ }
267
+
268
+ .e-insert-column-right::before {
269
+ content: '\e70e';
270
+ }
271
+
272
+ .e-delete-column::before {
273
+ content: '\e714';
274
+ }
275
+
276
+ .e-insert-row-before::before {
277
+ content: '\e836';
278
+ }
279
+
280
+ .e-insert-row-after::before {
281
+ content: '\e801';
282
+ }
283
+
284
+ .e-delete-row::before {
285
+ content: '\e7f2';
286
+ }
287
+
288
+ .e-style::before {
289
+ content: '\e76e';
290
+ }
291
+
292
+ .e-rte-file-manager::before {
293
+ content: '\e83c';
294
+ }
295
+
296
+ .e-rte-format-painter::before {
297
+ content: '\e8bd';
298
+ }
299
+ }
300
+
301
+ .e-richtexteditor {
302
+ .e-south-east::before,
303
+ .e-south-west::before {
304
+ content: '\e761';
305
+ }
306
+ }
307
+
308
+ .e-rtl {
309
+ .e-rte-toolbar,
310
+ .e-rte-dropdown-popup {
311
+ .e-unorder-list::before {
312
+ content: '\e8c4';
313
+ }
314
+
315
+ .e-order-list::before {
316
+ content: '\e8c5';
317
+ }
318
+
319
+ .e-indent::before {
320
+ content: '\e8c6';
321
+ }
322
+
323
+ .e-outdent::before {
324
+ content: '\e8c7';
325
+ }
326
+ }
327
+ }
328
+
329
+ .e-cell-merge::before {
330
+ content: '\e83a';
331
+ }
332
+
333
+ .e-cell-horizontal-split::before {
334
+ content: '\e7a4';
335
+ }
336
+
337
+ .e-cell-vertical-split::before {
338
+ content: '\e732';
339
+ }
340
+
341
+ .e-table-cell::before {
342
+ content: '\e7c2';
343
+ }
344
+
345
+ .e-rte-cursor-brush {
346
+ cursor: $rte-format-painter-cursor;
347
+ }
348
+ }
@@ -1 +1,4 @@
1
- @import 'ej2-richtexteditor/styles/rich-text-editor/material-dark.scss';
1
+ @import 'ej2-base/styles/definition/material-dark.scss';
2
+ @import 'material-dark-definition.scss';
3
+ @import 'icons/material-dark.scss';
4
+ @import 'all.scss';
@@ -1 +1,4 @@
1
- @import 'ej2-richtexteditor/styles/rich-text-editor/material.scss';
1
+ @import 'ej2-base/styles/definition/material.scss';
2
+ @import 'material-definition.scss';
3
+ @import 'icons/material.scss';
4
+ @import 'all.scss';
@@ -1,2 +1,5 @@
1
1
 
2
- @import 'ej2-richtexteditor/styles/rich-text-editor/material3-dark.scss';
2
+
3
+ @import 'material3-dark-definition.scss';
4
+ @import 'icons/material3-dark.scss';
5
+ @import 'all.scss';
@@ -1,2 +1,5 @@
1
1
 
2
- @import 'ej2-richtexteditor/styles/rich-text-editor/material3.scss';
2
+
3
+ @import 'material3-definition.scss';
4
+ @import 'icons/material3.scss';
5
+ @import 'all.scss';
@@ -1 +1,4 @@
1
- @import 'ej2-richtexteditor/styles/rich-text-editor/tailwind-dark.scss';
1
+ @import 'ej2-base/styles/definition/tailwind-dark.scss';
2
+ @import 'tailwind-dark-definition.scss';
3
+ @import 'icons/tailwind-dark.scss';
4
+ @import 'all.scss';
@@ -1 +1,4 @@
1
- @import 'ej2-richtexteditor/styles/rich-text-editor/tailwind.scss';
1
+ @import 'ej2-base/styles/definition/tailwind.scss';
2
+ @import 'tailwind-definition.scss';
3
+ @import 'icons/tailwind.scss';
4
+ @import 'all.scss';
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@syncfusion/ej2-angular-richtexteditor" />
5
+ export * from './public_api';