@zipify/wysiwyg 1.0.0-dev.4 → 1.0.0-dev.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 (95) hide show
  1. package/.eslintignore +1 -0
  2. package/.release-it.json +0 -1
  3. package/.stylelintignore +1 -0
  4. package/README.md +3 -1
  5. package/config/jest/setupTests.js +7 -1
  6. package/config/webpack/example.config.js +2 -0
  7. package/config/webpack/lib.config.js +40 -0
  8. package/config/webpack/loaders/style-loader.js +3 -1
  9. package/config/webpack/loaders/svg-loader.js +1 -1
  10. package/dist/wysiwyg.css +837 -0
  11. package/dist/wysiwyg.js +2 -0
  12. package/dist/wysiwyg.js.LICENSE.txt +1 -0
  13. package/example/ExampleApp.vue +39 -31
  14. package/example/example.js +26 -0
  15. package/example/presets.js +2 -0
  16. package/lib/Wysiwyg.vue +6 -0
  17. package/lib/assets/icons/alignment-center.svg +3 -0
  18. package/lib/assets/icons/alignment-justify.svg +3 -0
  19. package/lib/assets/icons/alignment-left.svg +3 -0
  20. package/lib/assets/icons/alignment-right.svg +3 -0
  21. package/lib/assets/icons/arrow.svg +3 -0
  22. package/lib/assets/icons/background-color.svg +3 -0
  23. package/lib/assets/icons/case-style.svg +3 -0
  24. package/lib/assets/icons/font-color.svg +5 -0
  25. package/lib/assets/icons/italic.svg +3 -0
  26. package/lib/assets/icons/line-height.svg +3 -0
  27. package/lib/assets/icons/list-circle.svg +3 -0
  28. package/lib/assets/icons/list-decimal.svg +3 -0
  29. package/lib/assets/icons/list-disc.svg +3 -0
  30. package/lib/assets/icons/list-latin.svg +3 -0
  31. package/lib/assets/icons/list-roman.svg +3 -0
  32. package/lib/assets/icons/list-square.svg +3 -0
  33. package/lib/assets/icons/remove-format.svg +3 -0
  34. package/lib/assets/icons/reset-styles.svg +3 -0
  35. package/lib/assets/icons/strike-through.svg +3 -0
  36. package/lib/assets/icons/superscript.svg +3 -0
  37. package/lib/assets/icons/underline.svg +3 -0
  38. package/lib/components/base/Icon.vue +17 -9
  39. package/lib/components/base/__tests__/Icon.test.js +6 -13
  40. package/lib/composables/__tests__/useEditor.test.js +12 -3
  41. package/lib/composables/useEditor.js +12 -5
  42. package/lib/extensions/Alignment.js +6 -0
  43. package/lib/extensions/BackgroundColor.js +8 -1
  44. package/lib/extensions/FontColor.js +8 -1
  45. package/lib/extensions/FontFamily.js +7 -0
  46. package/lib/extensions/FontSize.js +12 -0
  47. package/lib/extensions/FontStyle.js +11 -0
  48. package/lib/extensions/FontWeight.js +25 -1
  49. package/lib/extensions/LineHeight.js +17 -0
  50. package/lib/extensions/StylePreset.js +30 -3
  51. package/lib/extensions/TextDecoration.js +11 -0
  52. package/lib/extensions/__tests__/Alignment.test.js +22 -1
  53. package/lib/extensions/__tests__/BackgroundColor.test.js +30 -1
  54. package/lib/extensions/__tests__/CaseStyle.test.js +4 -1
  55. package/lib/extensions/__tests__/FontColor.test.js +30 -1
  56. package/lib/extensions/__tests__/FontFamily.test.js +30 -1
  57. package/lib/extensions/__tests__/FontSize.test.js +30 -1
  58. package/lib/extensions/__tests__/FontStyle.test.js +38 -1
  59. package/lib/extensions/__tests__/FontWeight.test.js +58 -1
  60. package/lib/extensions/__tests__/LineHeight.test.js +41 -1
  61. package/lib/extensions/__tests__/StylePreset.test.js +76 -1
  62. package/lib/extensions/__tests__/TextDecoration.test.js +63 -1
  63. package/lib/extensions/__tests__/__snapshots__/Alignment.test.js.snap +44 -0
  64. package/lib/extensions/__tests__/__snapshots__/BackgroundColor.test.js.snap +91 -0
  65. package/lib/extensions/__tests__/__snapshots__/FontColor.test.js.snap +91 -0
  66. package/lib/extensions/__tests__/__snapshots__/FontFamily.test.js.snap +91 -0
  67. package/lib/extensions/__tests__/__snapshots__/FontSize.test.js.snap +99 -0
  68. package/lib/extensions/__tests__/__snapshots__/FontStyle.test.js.snap +120 -0
  69. package/lib/extensions/__tests__/__snapshots__/FontWeight.test.js.snap +149 -0
  70. package/lib/extensions/__tests__/__snapshots__/LineHeight.test.js.snap +92 -0
  71. package/lib/extensions/__tests__/__snapshots__/StylePreset.test.js.snap +167 -2
  72. package/lib/extensions/__tests__/__snapshots__/TextDecoration.test.js.snap +207 -0
  73. package/lib/extensions/core/__tests__/NodeProcessor.test.js +4 -1
  74. package/lib/extensions/core/__tests__/SelectionProcessor.test.js +9 -4
  75. package/lib/extensions/core/__tests__/TextProcessor.test.js +4 -1
  76. package/lib/extensions/index.js +1 -0
  77. package/lib/extensions/list/List.js +34 -0
  78. package/lib/extensions/list/__tests__/List.test.js +115 -3
  79. package/lib/extensions/list/__tests__/__snapshots__/List.test.js.snap +457 -6
  80. package/lib/services/ContentNormalizer.js +113 -0
  81. package/lib/services/Storage.js +1 -13
  82. package/lib/services/__tests__/ContentNormalizer.test.js +41 -0
  83. package/lib/services/__tests__/FavoriteColors.test.js +20 -0
  84. package/lib/services/__tests__/JsonSerializer.test.js +23 -0
  85. package/lib/services/__tests__/Storage.test.js +79 -0
  86. package/lib/services/index.js +1 -0
  87. package/lib/utils/__tests__/convertColor.test.js +19 -0
  88. package/lib/utils/__tests__/createKeyboardShortcut.test.js +25 -0
  89. package/lib/utils/__tests__/renderInlineSetting.test.js +26 -0
  90. package/lib/utils/convertColor.js +7 -0
  91. package/lib/utils/importIcon.js +12 -0
  92. package/lib/utils/index.js +2 -0
  93. package/lib/utils/renderInlineSetting.js +1 -1
  94. package/package.json +5 -6
  95. package/lib/assets/icons.svg +0 -69
@@ -137,4 +137,153 @@ Object {
137
137
  }
138
138
  `;
139
139
 
140
+ exports[`parsing html should get value from b tag 1`] = `
141
+ Object {
142
+ "content": Array [
143
+ Object {
144
+ "content": Array [
145
+ Object {
146
+ "marks": Array [
147
+ Object {
148
+ "attrs": Object {
149
+ "value": "700",
150
+ },
151
+ "type": "font_weight",
152
+ },
153
+ ],
154
+ "text": "lorem",
155
+ "type": "text",
156
+ },
157
+ Object {
158
+ "text": " ipsum",
159
+ "type": "text",
160
+ },
161
+ ],
162
+ "type": "paragraph",
163
+ },
164
+ ],
165
+ "type": "doc",
166
+ }
167
+ `;
168
+
169
+ exports[`parsing html should get value from paragraph 1`] = `
170
+ Object {
171
+ "content": Array [
172
+ Object {
173
+ "content": Array [
174
+ Object {
175
+ "marks": Array [
176
+ Object {
177
+ "attrs": Object {
178
+ "value": "700",
179
+ },
180
+ "type": "font_weight",
181
+ },
182
+ ],
183
+ "text": "test",
184
+ "type": "text",
185
+ },
186
+ ],
187
+ "type": "paragraph",
188
+ },
189
+ ],
190
+ "type": "doc",
191
+ }
192
+ `;
193
+
194
+ exports[`parsing html should get value from strong tag 1`] = `
195
+ Object {
196
+ "content": Array [
197
+ Object {
198
+ "content": Array [
199
+ Object {
200
+ "marks": Array [
201
+ Object {
202
+ "attrs": Object {
203
+ "value": "700",
204
+ },
205
+ "type": "font_weight",
206
+ },
207
+ ],
208
+ "text": "lorem",
209
+ "type": "text",
210
+ },
211
+ Object {
212
+ "text": " ipsum",
213
+ "type": "text",
214
+ },
215
+ ],
216
+ "type": "paragraph",
217
+ },
218
+ ],
219
+ "type": "doc",
220
+ }
221
+ `;
222
+
223
+ exports[`parsing html should get value from text 1`] = `
224
+ Object {
225
+ "content": Array [
226
+ Object {
227
+ "content": Array [
228
+ Object {
229
+ "marks": Array [
230
+ Object {
231
+ "attrs": Object {
232
+ "value": "700",
233
+ },
234
+ "type": "font_weight",
235
+ },
236
+ ],
237
+ "text": "lorem",
238
+ "type": "text",
239
+ },
240
+ Object {
241
+ "text": " ipsum",
242
+ "type": "text",
243
+ },
244
+ ],
245
+ "type": "paragraph",
246
+ },
247
+ ],
248
+ "type": "doc",
249
+ }
250
+ `;
251
+
252
+ exports[`parsing html should merge paragraph and text settings 1`] = `
253
+ Object {
254
+ "content": Array [
255
+ Object {
256
+ "content": Array [
257
+ Object {
258
+ "marks": Array [
259
+ Object {
260
+ "attrs": Object {
261
+ "value": "700",
262
+ },
263
+ "type": "font_weight",
264
+ },
265
+ ],
266
+ "text": "lorem",
267
+ "type": "text",
268
+ },
269
+ Object {
270
+ "marks": Array [
271
+ Object {
272
+ "attrs": Object {
273
+ "value": "500",
274
+ },
275
+ "type": "font_weight",
276
+ },
277
+ ],
278
+ "text": " ipsum",
279
+ "type": "text",
280
+ },
281
+ ],
282
+ "type": "paragraph",
283
+ },
284
+ ],
285
+ "type": "doc",
286
+ }
287
+ `;
288
+
140
289
  exports[`rendering should render html 1`] = `"<p class=\\"zw-style\\"><span style=\\"--zw-font-weight: 700;\\" class=\\"zw-style\\">hello world</span></p>"`;
@@ -24,6 +24,98 @@ Object {
24
24
  }
25
25
  `;
26
26
 
27
+ exports[`parsing html should get value from text in px units with font size 1`] = `
28
+ Object {
29
+ "content": Array [
30
+ Object {
31
+ "attrs": Object {
32
+ "line_height": Object {
33
+ "desktop": "1.20",
34
+ "mobile": "1.20",
35
+ "tablet": "1.20",
36
+ },
37
+ },
38
+ "content": Array [
39
+ Object {
40
+ "text": "test",
41
+ "type": "text",
42
+ },
43
+ ],
44
+ "type": "paragraph",
45
+ },
46
+ ],
47
+ "type": "doc",
48
+ }
49
+ `;
50
+
51
+ exports[`parsing html should get value from text in px units with no font size 1`] = `
52
+ Object {
53
+ "content": Array [
54
+ Object {
55
+ "attrs": Object {
56
+ "line_height": Object {
57
+ "desktop": "1.20",
58
+ "mobile": "1.20",
59
+ "tablet": "1.20",
60
+ },
61
+ },
62
+ "content": Array [
63
+ Object {
64
+ "text": "test",
65
+ "type": "text",
66
+ },
67
+ ],
68
+ "type": "paragraph",
69
+ },
70
+ ],
71
+ "type": "doc",
72
+ }
73
+ `;
74
+
75
+ exports[`parsing html should get value from text in relative units 1`] = `
76
+ Object {
77
+ "content": Array [
78
+ Object {
79
+ "attrs": Object {
80
+ "line_height": Object {
81
+ "desktop": "1.2",
82
+ "mobile": "1.2",
83
+ "tablet": "1.2",
84
+ },
85
+ },
86
+ "content": Array [
87
+ Object {
88
+ "text": "test",
89
+ "type": "text",
90
+ },
91
+ ],
92
+ "type": "paragraph",
93
+ },
94
+ ],
95
+ "type": "doc",
96
+ }
97
+ `;
98
+
99
+ exports[`parsing html should set null if no alignment 1`] = `
100
+ Object {
101
+ "content": Array [
102
+ Object {
103
+ "attrs": Object {
104
+ "line_height": null,
105
+ },
106
+ "content": Array [
107
+ Object {
108
+ "text": "test",
109
+ "type": "text",
110
+ },
111
+ ],
112
+ "type": "paragraph",
113
+ },
114
+ ],
115
+ "type": "doc",
116
+ }
117
+ `;
118
+
27
119
  exports[`rendering should render all devices 1`] = `"<p class=\\"zw-style\\" style=\\"--zw-mobile-line-height: 1.21; --zw-tablet-line-height: 1.4; --zw-desktop-line-height: 1.6;\\">hello world</p>"`;
28
120
 
29
121
  exports[`rendering should render only desktop 1`] = `"<p class=\\"zw-style\\" style=\\"--zw-desktop-line-height: 1.3;\\">hello world</p>"`;
@@ -241,6 +241,171 @@ Object {
241
241
  }
242
242
  `;
243
243
 
244
+ exports[`parsing html should get by fallback class 1`] = `
245
+ Object {
246
+ "content": Array [
247
+ Object {
248
+ "attrs": Object {
249
+ "alignment": null,
250
+ "preset": Object {
251
+ "id": "regular-2",
252
+ },
253
+ },
254
+ "content": Array [
255
+ Object {
256
+ "text": "lorem ipsum",
257
+ "type": "text",
258
+ },
259
+ ],
260
+ "type": "paragraph",
261
+ },
262
+ ],
263
+ "type": "doc",
264
+ }
265
+ `;
266
+
267
+ exports[`parsing html should get by heading tag 1`] = `
268
+ Object {
269
+ "content": Array [
270
+ Object {
271
+ "attrs": Object {
272
+ "alignment": null,
273
+ "level": 3,
274
+ "preset": Object {
275
+ "id": "h3",
276
+ },
277
+ },
278
+ "content": Array [
279
+ Object {
280
+ "text": "lorem ipsum",
281
+ "type": "text",
282
+ },
283
+ ],
284
+ "type": "heading",
285
+ },
286
+ ],
287
+ "type": "doc",
288
+ }
289
+ `;
290
+
291
+ exports[`parsing html should get by preset class 1`] = `
292
+ Object {
293
+ "content": Array [
294
+ Object {
295
+ "attrs": Object {
296
+ "alignment": null,
297
+ "preset": Object {
298
+ "id": "regular-2",
299
+ },
300
+ },
301
+ "content": Array [
302
+ Object {
303
+ "text": "lorem ipsum",
304
+ "type": "text",
305
+ },
306
+ ],
307
+ "type": "paragraph",
308
+ },
309
+ ],
310
+ "type": "doc",
311
+ }
312
+ `;
313
+
314
+ exports[`parsing html should set default preset to unstyled paragraph 1`] = `
315
+ Object {
316
+ "content": Array [
317
+ Object {
318
+ "attrs": Object {
319
+ "alignment": null,
320
+ "preset": Object {
321
+ "id": "regular-1",
322
+ },
323
+ },
324
+ "content": Array [
325
+ Object {
326
+ "text": "lorem ipsum",
327
+ "type": "text",
328
+ },
329
+ ],
330
+ "type": "paragraph",
331
+ },
332
+ ],
333
+ "type": "doc",
334
+ }
335
+ `;
336
+
337
+ exports[`parsing html should set null to list item 1`] = `
338
+ Object {
339
+ "content": Array [
340
+ Object {
341
+ "attrs": Object {
342
+ "bullet": Object {
343
+ "type": "disc",
344
+ },
345
+ },
346
+ "content": Array [
347
+ Object {
348
+ "content": Array [
349
+ Object {
350
+ "attrs": Object {
351
+ "alignment": null,
352
+ "preset": null,
353
+ },
354
+ "content": Array [
355
+ Object {
356
+ "text": "lorem ipsum",
357
+ "type": "text",
358
+ },
359
+ ],
360
+ "type": "paragraph",
361
+ },
362
+ ],
363
+ "type": "listItem",
364
+ },
365
+ ],
366
+ "type": "list",
367
+ },
368
+ ],
369
+ "type": "doc",
370
+ }
371
+ `;
372
+
373
+ exports[`parsing html should set null to list item with preset 1`] = `
374
+ Object {
375
+ "content": Array [
376
+ Object {
377
+ "attrs": Object {
378
+ "bullet": Object {
379
+ "type": "disc",
380
+ },
381
+ },
382
+ "content": Array [
383
+ Object {
384
+ "content": Array [
385
+ Object {
386
+ "attrs": Object {
387
+ "alignment": null,
388
+ "preset": null,
389
+ },
390
+ "content": Array [
391
+ Object {
392
+ "text": "lorem ipsum",
393
+ "type": "text",
394
+ },
395
+ ],
396
+ "type": "paragraph",
397
+ },
398
+ ],
399
+ "type": "listItem",
400
+ },
401
+ ],
402
+ "type": "list",
403
+ },
404
+ ],
405
+ "type": "doc",
406
+ }
407
+ `;
408
+
244
409
  exports[`remove preset customization should remove all attributes 1`] = `
245
410
  Object {
246
411
  "content": Array [
@@ -305,6 +470,6 @@ Object {
305
470
 
306
471
  exports[`render preset styles should render node without preset 1`] = `"<p class=\\"zw-style\\">test</p>"`;
307
472
 
308
- exports[`render preset styles should render preset class 1`] = `"<p class=\\"zw-style zw-preset--regular-1\\">test</p>"`;
473
+ exports[`render preset styles should render preset class 1`] = `"<p class=\\"zw-style zw ts-regular-1\\">test</p>"`;
309
474
 
310
- exports[`render preset styles should render styles 1`] = `" .zw-preset--regular-1 { --zw-preset-font-weight: var(--common-regular-1-font-weight, inherit); --zw-preset-mobile-font-size: var(--mobile-regular-1-font-size, inherit); --zw-preset-tablet-font-size: var(--tablet-regular-1-font-size, inherit); --zw-preset-desktop-font-size: var(--desktop-regular-1-font-size, inherit); }"`;
475
+ exports[`render preset styles should render styles 1`] = `" .zw.ts-regular-1 { --zw-preset-font-weight: var(--common-regular-1-font-weight, inherit); --zw-preset-mobile-font-size: var(--mobile-regular-1-font-size, inherit); --zw-preset-tablet-font-size: var(--tablet-regular-1-font-size, inherit); --zw-preset-desktop-font-size: var(--desktop-regular-1-font-size, inherit); }"`;
@@ -199,6 +199,213 @@ Object {
199
199
  }
200
200
  `;
201
201
 
202
+ exports[`parsing html should get both from paragraph 1`] = `
203
+ Object {
204
+ "content": Array [
205
+ Object {
206
+ "content": Array [
207
+ Object {
208
+ "marks": Array [
209
+ Object {
210
+ "attrs": Object {
211
+ "strike_through": true,
212
+ "underline": true,
213
+ },
214
+ "type": "text_decoration",
215
+ },
216
+ ],
217
+ "text": "test",
218
+ "type": "text",
219
+ },
220
+ ],
221
+ "type": "paragraph",
222
+ },
223
+ ],
224
+ "type": "doc",
225
+ }
226
+ `;
227
+
228
+ exports[`parsing html should get both from text 1`] = `
229
+ Object {
230
+ "content": Array [
231
+ Object {
232
+ "content": Array [
233
+ Object {
234
+ "marks": Array [
235
+ Object {
236
+ "attrs": Object {
237
+ "strike_through": true,
238
+ "underline": true,
239
+ },
240
+ "type": "text_decoration",
241
+ },
242
+ ],
243
+ "text": "lorem",
244
+ "type": "text",
245
+ },
246
+ Object {
247
+ "text": " ipsum",
248
+ "type": "text",
249
+ },
250
+ ],
251
+ "type": "paragraph",
252
+ },
253
+ ],
254
+ "type": "doc",
255
+ }
256
+ `;
257
+
258
+ exports[`parsing html should get strike through from paragraph 1`] = `
259
+ Object {
260
+ "content": Array [
261
+ Object {
262
+ "content": Array [
263
+ Object {
264
+ "marks": Array [
265
+ Object {
266
+ "attrs": Object {
267
+ "strike_through": true,
268
+ "underline": false,
269
+ },
270
+ "type": "text_decoration",
271
+ },
272
+ ],
273
+ "text": "test",
274
+ "type": "text",
275
+ },
276
+ ],
277
+ "type": "paragraph",
278
+ },
279
+ ],
280
+ "type": "doc",
281
+ }
282
+ `;
283
+
284
+ exports[`parsing html should get strike through from text 1`] = `
285
+ Object {
286
+ "content": Array [
287
+ Object {
288
+ "content": Array [
289
+ Object {
290
+ "marks": Array [
291
+ Object {
292
+ "attrs": Object {
293
+ "strike_through": true,
294
+ "underline": false,
295
+ },
296
+ "type": "text_decoration",
297
+ },
298
+ ],
299
+ "text": "lorem",
300
+ "type": "text",
301
+ },
302
+ Object {
303
+ "text": " ipsum",
304
+ "type": "text",
305
+ },
306
+ ],
307
+ "type": "paragraph",
308
+ },
309
+ ],
310
+ "type": "doc",
311
+ }
312
+ `;
313
+
314
+ exports[`parsing html should get underline from paragraph 1`] = `
315
+ Object {
316
+ "content": Array [
317
+ Object {
318
+ "content": Array [
319
+ Object {
320
+ "marks": Array [
321
+ Object {
322
+ "attrs": Object {
323
+ "strike_through": false,
324
+ "underline": true,
325
+ },
326
+ "type": "text_decoration",
327
+ },
328
+ ],
329
+ "text": "test",
330
+ "type": "text",
331
+ },
332
+ ],
333
+ "type": "paragraph",
334
+ },
335
+ ],
336
+ "type": "doc",
337
+ }
338
+ `;
339
+
340
+ exports[`parsing html should get underline from text 1`] = `
341
+ Object {
342
+ "content": Array [
343
+ Object {
344
+ "content": Array [
345
+ Object {
346
+ "marks": Array [
347
+ Object {
348
+ "attrs": Object {
349
+ "strike_through": false,
350
+ "underline": true,
351
+ },
352
+ "type": "text_decoration",
353
+ },
354
+ ],
355
+ "text": "lorem",
356
+ "type": "text",
357
+ },
358
+ Object {
359
+ "text": " ipsum",
360
+ "type": "text",
361
+ },
362
+ ],
363
+ "type": "paragraph",
364
+ },
365
+ ],
366
+ "type": "doc",
367
+ }
368
+ `;
369
+
370
+ exports[`parsing html should merge paragraph and text settings 1`] = `
371
+ Object {
372
+ "content": Array [
373
+ Object {
374
+ "content": Array [
375
+ Object {
376
+ "marks": Array [
377
+ Object {
378
+ "attrs": Object {
379
+ "strike_through": true,
380
+ "underline": false,
381
+ },
382
+ "type": "text_decoration",
383
+ },
384
+ ],
385
+ "text": "lorem",
386
+ "type": "text",
387
+ },
388
+ Object {
389
+ "marks": Array [
390
+ Object {
391
+ "attrs": Object {
392
+ "strike_through": false,
393
+ "underline": true,
394
+ },
395
+ "type": "text_decoration",
396
+ },
397
+ ],
398
+ "text": " ipsum",
399
+ "type": "text",
400
+ },
401
+ ],
402
+ "type": "paragraph",
403
+ },
404
+ ],
405
+ "type": "doc",
406
+ }
407
+ `;
408
+
202
409
  exports[`rendering should render both 1`] = `"<p class=\\"zw-style\\"><span style=\\"--zw-text-decoration: underline line-through;\\" class=\\"zw-style\\">hello world</span></p>"`;
203
410
 
204
411
  exports[`rendering should render strike through only 1`] = `"<p class=\\"zw-style\\"><span style=\\"--zw-text-decoration: line-through;\\" class=\\"zw-style\\">hello world</span></p>"`;
@@ -2,6 +2,7 @@ import { Editor, Extension } from '@tiptap/vue-2';
2
2
  import { NodeFactory } from '../../../__tests__/utils';
3
3
  import { CORE_EXTENSIONS } from '../index';
4
4
  import { NodeTypes } from '../../../enums';
5
+ import { ContentNormalizer } from '../../../services';
5
6
 
6
7
  const LineHeight = Extension.create({
7
8
  name: 'line_height',
@@ -20,8 +21,10 @@ const LineHeight = Extension.create({
20
21
  });
21
22
 
22
23
  function createEditor({ content }) {
24
+ const normalizer = new ContentNormalizer();
25
+
23
26
  return new Editor({
24
- content,
27
+ content: normalizer.normalize(content),
25
28
  extensions: CORE_EXTENSIONS.concat(LineHeight) // Included to core extensions
26
29
  });
27
30
  }
@@ -1,13 +1,18 @@
1
1
  import { Editor } from '@tiptap/vue-2';
2
2
  import { CORE_EXTENSIONS } from '../index';
3
3
  import { NodeFactory } from '../../../__tests__/utils';
4
+ import { ContentNormalizer } from '../../../services';
4
5
 
5
6
  function createEditor() {
7
+ const normalizer = new ContentNormalizer();
8
+
9
+ const content = NodeFactory.doc([
10
+ NodeFactory.paragraph('Lorem ipsum dolor sit amet'),
11
+ NodeFactory.paragraph('consectetur adipisicing elit')
12
+ ]);
13
+
6
14
  return new Editor({
7
- content: NodeFactory.doc([
8
- NodeFactory.paragraph('Lorem ipsum dolor sit amet'),
9
- NodeFactory.paragraph('consectetur adipisicing elit')
10
- ]),
15
+ content: normalizer.normalize(content),
11
16
  extensions: CORE_EXTENSIONS // included to core
12
17
  });
13
18
  }
@@ -1,6 +1,7 @@
1
1
  import { Editor, Mark } from '@tiptap/vue-2';
2
2
  import { NodeFactory } from '../../../__tests__/utils';
3
3
  import { CORE_EXTENSIONS } from '../index';
4
+ import { ContentNormalizer } from '../../../services';
4
5
 
5
6
  const MockFontWeight = Mark.create({
6
7
  name: 'font_weight',
@@ -17,8 +18,10 @@ const MockFontWeight = Mark.create({
17
18
  });
18
19
 
19
20
  function createEditor({ content }) {
21
+ const normalizer = new ContentNormalizer();
22
+
20
23
  return new Editor({
21
- content,
24
+ content: normalizer.normalize(content),
22
25
  element: document.createElement('div'),
23
26
  extensions: CORE_EXTENSIONS.concat(MockFontWeight)
24
27
  });