@flozy/editor 1.0.0 → 1.0.5

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 (105) hide show
  1. package/package.json +6 -2
  2. package/.eslintignore +0 -4
  3. package/.eslintrc.json +0 -6
  4. package/.github/workflows/npm-publish.yml +0 -33
  5. package/.husky/pre-commit +0 -1
  6. package/.storybook/main.js +0 -20
  7. package/.storybook/preview.js +0 -14
  8. package/.vscode/extensions.json +0 -7
  9. package/.vscode/launch.json +0 -15
  10. package/.vscode/settings.json +0 -22
  11. package/craco.config.js +0 -16
  12. package/public/favicon.ico +0 -0
  13. package/public/index.html +0 -43
  14. package/public/logo192.png +0 -0
  15. package/public/logo512.png +0 -0
  16. package/public/manifest.json +0 -25
  17. package/public/robots.txt +0 -3
  18. package/src/components/Editor/CollaborativeEditor.js +0 -119
  19. package/src/components/Editor/CommonEditor.js +0 -549
  20. package/src/components/Editor/Editor.css +0 -115
  21. package/src/components/Editor/Elements/CodeToText/CodeToText.css +0 -57
  22. package/src/components/Editor/Elements/CodeToText/CodeToText.jsx +0 -115
  23. package/src/components/Editor/Elements/CodeToText/CodeToTextButton.jsx +0 -16
  24. package/src/components/Editor/Elements/CodeToText/HtmlCode.jsx +0 -59
  25. package/src/components/Editor/Elements/CodeToText/HtmlContextMenu.jsx +0 -39
  26. package/src/components/Editor/Elements/Color Picker/ColorPicker.css +0 -38
  27. package/src/components/Editor/Elements/Color Picker/ColorPicker.jsx +0 -110
  28. package/src/components/Editor/Elements/Color Picker/defaultColors.js +0 -34
  29. package/src/components/Editor/Elements/Embed/Embed.css +0 -14
  30. package/src/components/Editor/Elements/Embed/Embed.jsx +0 -74
  31. package/src/components/Editor/Elements/Embed/Image.jsx +0 -82
  32. package/src/components/Editor/Elements/Embed/Video.jsx +0 -65
  33. package/src/components/Editor/Elements/Equation/Equation.jsx +0 -19
  34. package/src/components/Editor/Elements/Equation/EquationButton.jsx +0 -59
  35. package/src/components/Editor/Elements/Equation/styles.css +0 -4
  36. package/src/components/Editor/Elements/Grid/Grid.js +0 -48
  37. package/src/components/Editor/Elements/Grid/GridButton.js +0 -21
  38. package/src/components/Editor/Elements/Grid/GridItem.js +0 -57
  39. package/src/components/Editor/Elements/ID/Id.jsx +0 -56
  40. package/src/components/Editor/Elements/Link/Link.jsx +0 -24
  41. package/src/components/Editor/Elements/Link/LinkButton.jsx +0 -71
  42. package/src/components/Editor/Elements/Link/styles.css +0 -20
  43. package/src/components/Editor/Elements/Mentions/Mentions.jsx +0 -37
  44. package/src/components/Editor/Elements/NewLine/NewLineButton.js +0 -29
  45. package/src/components/Editor/Elements/Table/Table.jsx +0 -13
  46. package/src/components/Editor/Elements/Table/TableSelector.css +0 -18
  47. package/src/components/Editor/Elements/Table/TableSelector.jsx +0 -76
  48. package/src/components/Editor/Elements/TableContextMenu/TableContextMenu.jsx +0 -97
  49. package/src/components/Editor/Elements/TableContextMenu/styles.css +0 -18
  50. package/src/components/Editor/RemoteCursorOverlay/Overlay.js +0 -78
  51. package/src/components/Editor/Toolbar/Toolbar.jsx +0 -167
  52. package/src/components/Editor/Toolbar/styles.css +0 -28
  53. package/src/components/Editor/Toolbar/toolbarGroups.js +0 -167
  54. package/src/components/Editor/Toolbar/toolbarIcons/align-center.svg +0 -1
  55. package/src/components/Editor/Toolbar/toolbarIcons/align-left.svg +0 -1
  56. package/src/components/Editor/Toolbar/toolbarIcons/align-right.svg +0 -1
  57. package/src/components/Editor/Toolbar/toolbarIcons/blockquote.svg +0 -1
  58. package/src/components/Editor/Toolbar/toolbarIcons/bold.png +0 -0
  59. package/src/components/Editor/Toolbar/toolbarIcons/fontColor.svg +0 -4
  60. package/src/components/Editor/Toolbar/toolbarIcons/headingOne.svg +0 -3
  61. package/src/components/Editor/Toolbar/toolbarIcons/headingTwo.svg +0 -3
  62. package/src/components/Editor/Toolbar/toolbarIcons/italic.png +0 -0
  63. package/src/components/Editor/Toolbar/toolbarIcons/link.svg +0 -1
  64. package/src/components/Editor/Toolbar/toolbarIcons/orderedList.svg +0 -1
  65. package/src/components/Editor/Toolbar/toolbarIcons/strikethrough.png +0 -0
  66. package/src/components/Editor/Toolbar/toolbarIcons/subscript.svg +0 -1
  67. package/src/components/Editor/Toolbar/toolbarIcons/superscript.svg +0 -1
  68. package/src/components/Editor/Toolbar/toolbarIcons/textColor.png +0 -0
  69. package/src/components/Editor/Toolbar/toolbarIcons/underline.png +0 -0
  70. package/src/components/Editor/Toolbar/toolbarIcons/unlink.svg +0 -1
  71. package/src/components/Editor/Toolbar/toolbarIcons/unorderedList.svg +0 -1
  72. package/src/components/Editor/YjsProvider.js +0 -11
  73. package/src/components/Editor/common/Button.jsx +0 -12
  74. package/src/components/Editor/common/Icon.jsx +0 -82
  75. package/src/components/Editor/common/MentionsPopup.jsx +0 -56
  76. package/src/components/Editor/hooks/useMentions.js +0 -44
  77. package/src/components/Editor/hooks/withCollaborative.js +0 -15
  78. package/src/components/Editor/hooks/withCommon.js +0 -17
  79. package/src/components/Editor/plugins/withEmbeds.js +0 -36
  80. package/src/components/Editor/plugins/withEquation.js +0 -8
  81. package/src/components/Editor/plugins/withLinks.js +0 -9
  82. package/src/components/Editor/plugins/withMentions.js +0 -19
  83. package/src/components/Editor/plugins/withTable.js +0 -74
  84. package/src/components/Editor/utils/SlateUtilityFunctions.js +0 -273
  85. package/src/components/Editor/utils/customHooks/useContextMenu.js +0 -42
  86. package/src/components/Editor/utils/customHooks/useFormat.js +0 -26
  87. package/src/components/Editor/utils/customHooks/usePopup.jsx +0 -26
  88. package/src/components/Editor/utils/customHooks/useResize.js +0 -41
  89. package/src/components/Editor/utils/draftToSlate.js +0 -104
  90. package/src/components/Editor/utils/embed.js +0 -18
  91. package/src/components/Editor/utils/equation.js +0 -22
  92. package/src/components/Editor/utils/events.js +0 -56
  93. package/src/components/Editor/utils/grid.js +0 -12
  94. package/src/components/Editor/utils/gridItem.js +0 -19
  95. package/src/components/Editor/utils/link.js +0 -53
  96. package/src/components/Editor/utils/mentions.js +0 -11
  97. package/src/components/Editor/utils/paragraph.js +0 -4
  98. package/src/components/Editor/utils/serializer.js +0 -32
  99. package/src/components/Editor/utils/table.js +0 -151
  100. package/src/components/index.js +0 -5
  101. package/src/index.js +0 -1
  102. package/src/stories/CollaborativeEditor.stories.js +0 -30
  103. package/src/stories/Editor.stories.js +0 -24
  104. package/src/stories/EditorSampleProps/ChatSample.js +0 -43
  105. package/src/stories/EditorSampleProps/LayoutOne.js +0 -551
@@ -1,551 +0,0 @@
1
- const sample = [
2
- { type: "paragraph", children: [{ text: "" }] },
3
- {
4
- type: "grid",
5
- grid: "container",
6
- children: [
7
- {
8
- type: "grid-item",
9
- grid: 12,
10
- children: [
11
- { type: "paragraph", children: [{ text: "" }] },
12
- {
13
- type: "image",
14
- alt: "",
15
- url: "https://img.freepik.com/free-vector/stylish-glowing-digital-red-lines-banner_1017-23964.jpg",
16
- children: [{ text: "" }],
17
- size: { width: 438, height: 100, widthInPercent: 100 },
18
- },
19
- { type: "paragraph", children: [{ text: "" }] },
20
- {
21
- type: "alignCenter",
22
- children: [
23
- {
24
- type: "paragraph",
25
- children: [
26
- { text: "Sample Links", fontSize: "huge", bold: true },
27
- ],
28
- },
29
- ],
30
- },
31
- {
32
- type: "alignCenter",
33
- children: [
34
- {
35
- type: "paragraph",
36
- children: [
37
- {
38
- fontSize: "huge",
39
- text: "It is a long established fact that a reader will be",
40
- },
41
- ],
42
- },
43
- {
44
- type: "paragraph",
45
- children: [
46
- {
47
- fontSize: "huge",
48
- text: " Various versions have evolved over the years, ",
49
- },
50
- ],
51
- },
52
- {
53
- type: "paragraph",
54
- children: [
55
- {
56
- fontSize: "huge",
57
- text: "sometimes by accident, sometimes on ",
58
- },
59
- ],
60
- },
61
- {
62
- type: "paragraph",
63
- children: [
64
- {
65
- fontSize: "huge",
66
- text: "purpose (injected humour and the like).",
67
- },
68
- ],
69
- },
70
- ],
71
- },
72
- {
73
- type: "grid",
74
- grid: "container",
75
- children: [
76
- {
77
- type: "grid-item",
78
- grid: 3,
79
- children: [
80
- { type: "paragraph", children: [{ text: "" }] },
81
- {
82
- type: "image",
83
- alt: "",
84
- url: "https://images.unsplash.com/photo-1503023345310-bd7c1de61c7d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8aHVtYW58ZW58MHx8MHx8fDA%3D&w=1000&q=80",
85
- children: [{ text: "" }],
86
- },
87
- { type: "paragraph", children: [{ text: "" }] },
88
- {
89
- type: "grid",
90
- grid: "container",
91
- children: [
92
- {
93
- type: "grid-item",
94
- grid: 12,
95
- children: [
96
- {
97
- type: "paragraph",
98
- children: [
99
- {
100
- text: "Lorem Ipsum is simply dummy text of the printing and typesetting industry. ",
101
- },
102
- { text: "Lorem Ipsum ", bold: true },
103
- {
104
- text: "has been the industry's standard dummy text ever since the 1500s",
105
- },
106
- ],
107
- },
108
- ],
109
- },
110
- ],
111
- },
112
- ],
113
- },
114
- {
115
- type: "grid-item",
116
- grid: 3,
117
- children: [
118
- { type: "paragraph", children: [{ text: "" }] },
119
- {
120
- type: "image",
121
- alt: "",
122
- url: "https://images.unsplash.com/photo-1503023345310-bd7c1de61c7d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8aHVtYW58ZW58MHx8MHx8fDA%3D&w=1000&q=80",
123
- children: [{ text: "" }],
124
- },
125
- { type: "paragraph", children: [{ text: "" }] },
126
- {
127
- type: "grid",
128
- grid: "container",
129
- children: [
130
- {
131
- type: "grid-item",
132
- grid: 12,
133
- children: [
134
- {
135
- type: "paragraph",
136
- children: [
137
- { text: "Lorem Ipsum", bold: true },
138
- {
139
- text: " is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard ",
140
- },
141
- {
142
- text: "dummy text ever since the 1500s",
143
- bold: false,
144
- },
145
- ],
146
- },
147
- ],
148
- },
149
- ],
150
- },
151
- ],
152
- },
153
- {
154
- type: "grid-item",
155
- grid: 3,
156
- children: [
157
- { type: "paragraph", children: [{ text: "" }] },
158
- {
159
- type: "image",
160
- alt: "",
161
- url: "https://images.unsplash.com/photo-1503023345310-bd7c1de61c7d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8aHVtYW58ZW58MHx8MHx8fDA%3D&w=1000&q=80",
162
- children: [{ text: "" }],
163
- },
164
- { type: "paragraph", children: [{ text: "" }] },
165
- {
166
- type: "grid",
167
- grid: "container",
168
- children: [
169
- {
170
- type: "grid-item",
171
- grid: 12,
172
- children: [
173
- {
174
- type: "paragraph",
175
- children: [
176
- { text: "Lorem Ipsum", bold: true },
177
- {
178
- text: " is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s",
179
- },
180
- ],
181
- },
182
- ],
183
- },
184
- ],
185
- },
186
- ],
187
- },
188
- {
189
- type: "grid-item",
190
- grid: 3,
191
- children: [
192
- { type: "paragraph", children: [{ text: "" }] },
193
- {
194
- type: "image",
195
- alt: "",
196
- url: "https://images.unsplash.com/photo-1503023345310-bd7c1de61c7d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8aHVtYW58ZW58MHx8MHx8fDA%3D&w=1000&q=80",
197
- children: [{ text: "" }],
198
- },
199
- { type: "paragraph", children: [{ text: "" }] },
200
- {
201
- type: "grid",
202
- grid: "container",
203
- children: [
204
- {
205
- type: "grid-item",
206
- grid: 12,
207
- children: [
208
- {
209
- type: "paragraph",
210
- children: [
211
- {
212
- text: "Lorem Ipsum is simply dummy text of the ",
213
- },
214
- { text: "printing and typesetting ", bold: true },
215
- {
216
- text: "industry. Lorem Ipsum has been the industry's standard dummy text",
217
- },
218
- ],
219
- },
220
- ],
221
- },
222
- ],
223
- },
224
- ],
225
- },
226
- ],
227
- },
228
- ],
229
- },
230
- {
231
- type: "grid-item",
232
- grid: 12,
233
- children: [
234
- {
235
- type: "alignCenter",
236
- children: [
237
- {
238
- type: "paragraph",
239
- children: [
240
- { text: "Table Datas", fontSize: "huge", bold: true },
241
- ],
242
- },
243
- ],
244
- },
245
- {
246
- type: "alignLeft",
247
- children: [
248
- {
249
- type: "paragraph",
250
- children: [{ fontSize: "huge", bold: true, text: "" }],
251
- },
252
- ],
253
- },
254
- {
255
- type: "grid",
256
- grid: "container",
257
- children: [
258
- {
259
- type: "grid-item",
260
- grid: 6,
261
- children: [
262
- { type: "paragraph", children: [{ text: "" }] },
263
- {
264
- type: "alignCenter",
265
- children: [
266
- {
267
- type: "paragraph",
268
- children: [
269
- { text: "Pie Chart", fontSize: "medium", bold: true },
270
- ],
271
- },
272
- {
273
- type: "paragraph",
274
- children: [
275
- { fontSize: "medium", bold: true, text: "" },
276
- ],
277
- },
278
- {
279
- type: "image",
280
- alt: "",
281
- url: "data:image/jpeg;base64,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3Nzfdbex7S4+C7VkQWvTw2AAC3o2rZpwUIqKNKENWNjG+na4WcAQdhFwtSmwOmieZI4GMeRYlrQD4KURS3H6qMbYgFeqokHWCIiACIiACtLVciAInGcHiqYzHI2+0EdZp3grzLG8FmpHWeM6MnoyDqngfungvYiFrVNK17S1zQ5pFiCLgjkq1bDxqLmWqGJlS6jxRLLs8byJIu+lOj9m46PwO+R71yM8L43FkjCx49Vwsf7jisupSnTzRrUq0Ki+VmFYqrqO90rOWrDVDoP90+SjeRKs0TWFG8EB/wDUz+ULZWrgn/5oP9Nvkt2ypvNmPNfM+tll1XOKrZW2SOzzGlRK4aiVd9pf993eVZZUsjVjwQXMhqHn1j3lYi8q6ypZGrHgFyhKsWSypZOELLKllkslkCnNUXVP+o/+ZbFlrYd1D77/AOZbRKtnON7WWq17gFu4bhk9SbQx3btedEY/Ft5C67nAckooCJH+ll+8R0W+63Zz1qelh51OSJKdGUzncnslXzES1ALItYYdD3+990cNZ4L0Glpg0AAAACwA0ADctiOBbDGLUpUo01aJfp01BWRbGxZQgVVMShERABERABERABERABERABERAFpatDEMMinbmyxteOI0jiDrB5KRRI0mKpNO5weJZDazTy29iTSOxw0jtuuZxPAaqMOa6nebggFgz2ntbq7bL2Eq0sVWeEpy5dRbp42pHPb1nlGHUjoYo4niz2tAI3HWtgtXoVZhEEul8YJ36nfENKip8k4z1JHs4aHDx0+KzqujZ3bg178CPpU3dnJZqtzV0MuS0w6sjHcwW/mtaTAKof4Yd7rh87KtLB1l9IuuiHsqWUi7Cqkf+O7szT5FYnYfP+wk+FM6Cr+19zC6NKypZb36OqNlPJ3W8yqtweqOqncOZYP6kKhV/a+5hrI0LIpZmTdW71WN5uJPgFtQ5ISHrzgcGN095PyUscHWf099hNdHPlYw65zW3c7cNJ7gu1pskqdvWDpD7TjbubYKYpqCOMWYxrBuaAPJWIaNk/zO3VtGupwPMqDIur6nQa3OJzidh09Uabrp8MyJgZZ0t53e1oj+Aa+2668QhXhq0oYanF3SKcaEE72NWGlDQAAABqA1LO2NZAFVWLEtigVURKKEREAEREAEREAEREAEREAEREAEREAEREAEREAEKIk3gWlWlETBS0qiIgQoiIkHFwV7VREohcFciJyECIiVAEREoBERABERABERABERABERAH//2Q==",
282
- children: [{ text: "" }],
283
- },
284
- { type: "paragraph", children: [{ text: "" }] },
285
- ],
286
- },
287
- {
288
- type: "paragraph",
289
- children: [
290
- {
291
- type: "table",
292
- children: [
293
- {
294
- type: "table-row",
295
- children: [
296
- {
297
- type: "table-cell",
298
- children: [
299
- {
300
- type: "paragraph",
301
- children: [{ text: "Column 1" }],
302
- },
303
- ],
304
- },
305
- {
306
- type: "table-cell",
307
- children: [
308
- {
309
- type: "paragraph",
310
- children: [{ text: "Column Two" }],
311
- },
312
- ],
313
- },
314
- {
315
- type: "table-cell",
316
- children: [
317
- {
318
- type: "paragraph",
319
- children: [{ text: "Column 3" }],
320
- },
321
- ],
322
- },
323
- {
324
- type: "table-cell",
325
- children: [
326
- {
327
- type: "paragraph",
328
- children: [{ text: "Column 4" }],
329
- },
330
- ],
331
- },
332
- {
333
- type: "table-cell",
334
- children: [
335
- {
336
- type: "paragraph",
337
- children: [{ text: "Column 5" }],
338
- },
339
- ],
340
- },
341
- {
342
- type: "table-cell",
343
- children: [
344
- {
345
- type: "paragraph",
346
- children: [{ text: "Column 6" }],
347
- },
348
- ],
349
- },
350
- ],
351
- },
352
- {
353
- type: "table-row",
354
- children: [
355
- {
356
- type: "table-cell",
357
- children: [
358
- {
359
- type: "paragraph",
360
- children: [{ text: "Data 1" }],
361
- },
362
- ],
363
- },
364
- {
365
- type: "table-cell",
366
- children: [
367
- {
368
- type: "paragraph",
369
- children: [{ text: "Data 2" }],
370
- },
371
- ],
372
- },
373
- {
374
- type: "table-cell",
375
- children: [
376
- {
377
- type: "paragraph",
378
- children: [{ text: "Data 3" }],
379
- },
380
- ],
381
- },
382
- {
383
- type: "table-cell",
384
- children: [
385
- {
386
- type: "paragraph",
387
- children: [{ text: "Data 4" }],
388
- },
389
- ],
390
- },
391
- {
392
- type: "table-cell",
393
- children: [
394
- {
395
- type: "paragraph",
396
- children: [
397
- { text: "Data for big columns" },
398
- ],
399
- },
400
- ],
401
- },
402
- {
403
- type: "table-cell",
404
- children: [
405
- {
406
- type: "paragraph",
407
- children: [{ text: "otheres" }],
408
- },
409
- ],
410
- },
411
- ],
412
- },
413
- {
414
- type: "table-row",
415
- children: [
416
- {
417
- type: "table-cell",
418
- children: [
419
- {
420
- type: "paragraph",
421
- children: [{ text: "Other data" }],
422
- },
423
- ],
424
- },
425
- {
426
- type: "table-cell",
427
- children: [
428
- {
429
- type: "paragraph",
430
- children: [{ text: "some medium" }],
431
- },
432
- ],
433
- },
434
- {
435
- type: "table-cell",
436
- children: [
437
- {
438
- type: "paragraph",
439
- children: [{ text: "Normal" }],
440
- },
441
- ],
442
- },
443
- {
444
- type: "table-cell",
445
- children: [
446
- {
447
- type: "paragraph",
448
- children: [
449
- { text: "another big column data" },
450
- ],
451
- },
452
- ],
453
- },
454
- {
455
- type: "table-cell",
456
- children: [
457
- {
458
- type: "paragraph",
459
- children: [{ text: "8/9" }],
460
- },
461
- ],
462
- },
463
- {
464
- type: "table-cell",
465
- children: [
466
- {
467
- type: "paragraph",
468
- children: [{ text: "" }],
469
- },
470
- {
471
- type: "paragraph",
472
- children: [{ text: "othere" }],
473
- },
474
- ],
475
- },
476
- ],
477
- },
478
- ],
479
- rows: 3,
480
- columns: 6,
481
- },
482
- ],
483
- },
484
- ],
485
- },
486
- {
487
- type: "grid-item",
488
- grid: 6,
489
- children: [
490
- { type: "paragraph", children: [{ text: "" }] },
491
- {
492
- type: "paragraph",
493
- children: [
494
- {
495
- text: "Some Description about the table data to check Some Description about the table data to check Some Description about the table data to check Some Description about the table data to check Some Description about the table data to check Some Description about the table data to check Some Description about the table data to check ",
496
- },
497
- ],
498
- },
499
- {
500
- type: "paragraph",
501
- children: [
502
- {
503
- text: "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s",
504
- },
505
- ],
506
- },
507
- {
508
- type: "paragraph",
509
- children: [
510
- {
511
- text: "Pie charts are very widely used in the business world and the mass media.[3] However, they have been criticized,[4] and many experts recommend avoiding them,[5][6][7][8] as research has shown it is difficult to compare different sections of a given pie chart, or to compare data across different pie charts. Pie charts can be replaced in most cases by other plots such as the bar chart, box plot, dot plot, etc.",
512
- },
513
- ],
514
- },
515
- {
516
- type: "paragraph",
517
- children: [
518
- {
519
- text: "Pie charts are very widely used in the business world and the mass media.[3] However, they have been criticized,[4] and many experts recommend avoiding them,[5][6][7][8] as research has shown it is difficult to compare different sections of a given pie chart, or to compare data across different pie charts. Pie charts can be replaced in most cases by other plots such as the bar chart, box plot, dot plot, etc.",
520
- },
521
- ],
522
- },
523
- {
524
- type: "paragraph",
525
- children: [
526
- {
527
- text: "Pie charts are very widely used in the business world and the mass media.[3] However, they have been criticized,[4] and many experts recommend avoiding them,[5][6][7][8] as research has shown it is difficult to compare different sections of a given pie chart, or to compare data across different pie charts. Pie charts can be replaced in most cases by other plots such as the bar chart, box plot, dot plot, etc.",
528
- },
529
- ],
530
- },
531
- { type: "paragraph", children: [{ text: "Ending..." }] },
532
- ],
533
- },
534
- ],
535
- },
536
- {
537
- type: "alignCenter",
538
- children: [
539
- {
540
- type: "paragraph",
541
- children: [{ fontSize: "huge", bold: true, text: "" }],
542
- },
543
- ],
544
- },
545
- ],
546
- },
547
- ],
548
- },
549
- ];
550
-
551
- export default sample;