@atlaskit/editor-plugin-table 5.4.5 → 5.4.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 (115) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/dist/cjs/plugins/table/commands/insert.js +12 -2
  3. package/dist/cjs/plugins/table/commands/misc.js +49 -1
  4. package/dist/cjs/plugins/table/index.js +46 -35
  5. package/dist/cjs/plugins/table/nodeviews/TableComponent.js +12 -16
  6. package/dist/cjs/plugins/table/nodeviews/TableResizer.js +1 -1
  7. package/dist/cjs/plugins/table/nodeviews/table.js +3 -1
  8. package/dist/cjs/plugins/table/pm-plugins/analytics/actions.js +14 -0
  9. package/dist/cjs/plugins/table/pm-plugins/analytics/commands.js +45 -0
  10. package/dist/cjs/plugins/table/pm-plugins/analytics/plugin-factory.js +13 -0
  11. package/dist/cjs/plugins/table/pm-plugins/analytics/plugin-key.js +8 -0
  12. package/dist/cjs/plugins/table/pm-plugins/analytics/plugin.js +74 -0
  13. package/dist/cjs/plugins/table/pm-plugins/analytics/reducer.js +26 -0
  14. package/dist/cjs/plugins/table/pm-plugins/analytics/types.js +13 -0
  15. package/dist/cjs/plugins/table/pm-plugins/analytics/utils/moved-event.js +38 -0
  16. package/dist/cjs/plugins/table/pm-plugins/main.js +1 -1
  17. package/dist/cjs/plugins/table/pm-plugins/table-analytics.js +1 -1
  18. package/dist/es2019/plugins/table/commands/insert.js +12 -3
  19. package/dist/es2019/plugins/table/commands/misc.js +49 -0
  20. package/dist/es2019/plugins/table/index.js +14 -4
  21. package/dist/es2019/plugins/table/nodeviews/TableComponent.js +13 -17
  22. package/dist/es2019/plugins/table/nodeviews/TableResizer.js +1 -1
  23. package/dist/es2019/plugins/table/nodeviews/table.js +3 -1
  24. package/dist/es2019/plugins/table/pm-plugins/analytics/actions.js +8 -0
  25. package/dist/es2019/plugins/table/pm-plugins/analytics/commands.js +33 -0
  26. package/dist/es2019/plugins/table/pm-plugins/analytics/plugin-factory.js +8 -0
  27. package/dist/es2019/plugins/table/pm-plugins/analytics/plugin-key.js +2 -0
  28. package/dist/es2019/plugins/table/pm-plugins/analytics/plugin.js +72 -0
  29. package/dist/es2019/plugins/table/pm-plugins/analytics/reducer.js +21 -0
  30. package/dist/es2019/plugins/table/pm-plugins/analytics/types.js +7 -0
  31. package/dist/es2019/plugins/table/pm-plugins/analytics/utils/moved-event.js +30 -0
  32. package/dist/es2019/plugins/table/pm-plugins/main.js +1 -1
  33. package/dist/es2019/plugins/table/pm-plugins/table-analytics.js +1 -1
  34. package/dist/esm/plugins/table/commands/insert.js +12 -3
  35. package/dist/esm/plugins/table/commands/misc.js +48 -0
  36. package/dist/esm/plugins/table/index.js +43 -32
  37. package/dist/esm/plugins/table/nodeviews/TableComponent.js +13 -17
  38. package/dist/esm/plugins/table/nodeviews/TableResizer.js +1 -1
  39. package/dist/esm/plugins/table/nodeviews/table.js +3 -1
  40. package/dist/esm/plugins/table/pm-plugins/analytics/actions.js +8 -0
  41. package/dist/esm/plugins/table/pm-plugins/analytics/commands.js +39 -0
  42. package/dist/esm/plugins/table/pm-plugins/analytics/plugin-factory.js +8 -0
  43. package/dist/esm/plugins/table/pm-plugins/analytics/plugin-key.js +2 -0
  44. package/dist/esm/plugins/table/pm-plugins/analytics/plugin.js +68 -0
  45. package/dist/esm/plugins/table/pm-plugins/analytics/reducer.js +19 -0
  46. package/dist/esm/plugins/table/pm-plugins/analytics/types.js +7 -0
  47. package/dist/esm/plugins/table/pm-plugins/analytics/utils/moved-event.js +31 -0
  48. package/dist/esm/plugins/table/pm-plugins/main.js +1 -1
  49. package/dist/esm/plugins/table/pm-plugins/table-analytics.js +1 -1
  50. package/dist/types/plugins/table/commands/misc.d.ts +5 -1
  51. package/dist/types/plugins/table/nodeviews/TableComponent.d.ts +2 -0
  52. package/dist/types/plugins/table/nodeviews/table.d.ts +2 -1
  53. package/dist/types/plugins/table/nodeviews/types.d.ts +2 -0
  54. package/dist/types/plugins/table/pm-plugins/analytics/actions.d.ts +17 -0
  55. package/dist/types/plugins/table/pm-plugins/analytics/commands.d.ts +5 -0
  56. package/dist/types/plugins/table/pm-plugins/analytics/plugin-factory.d.ts +1 -0
  57. package/dist/types/plugins/table/pm-plugins/analytics/plugin-key.d.ts +3 -0
  58. package/dist/types/plugins/table/pm-plugins/analytics/plugin.d.ts +4 -0
  59. package/dist/types/plugins/table/pm-plugins/analytics/reducer.d.ts +3 -0
  60. package/dist/types/plugins/table/pm-plugins/analytics/types.d.ts +11 -0
  61. package/dist/types/plugins/table/pm-plugins/analytics/utils/moved-event.d.ts +6 -0
  62. package/dist/types-ts4.5/plugins/table/commands/misc.d.ts +5 -1
  63. package/dist/types-ts4.5/plugins/table/nodeviews/TableComponent.d.ts +2 -0
  64. package/dist/types-ts4.5/plugins/table/nodeviews/table.d.ts +2 -1
  65. package/dist/types-ts4.5/plugins/table/nodeviews/types.d.ts +2 -0
  66. package/dist/types-ts4.5/plugins/table/pm-plugins/analytics/actions.d.ts +17 -0
  67. package/dist/types-ts4.5/plugins/table/pm-plugins/analytics/commands.d.ts +5 -0
  68. package/dist/types-ts4.5/plugins/table/pm-plugins/analytics/plugin-factory.d.ts +1 -0
  69. package/dist/types-ts4.5/plugins/table/pm-plugins/analytics/plugin-key.d.ts +3 -0
  70. package/dist/types-ts4.5/plugins/table/pm-plugins/analytics/plugin.d.ts +4 -0
  71. package/dist/types-ts4.5/plugins/table/pm-plugins/analytics/reducer.d.ts +3 -0
  72. package/dist/types-ts4.5/plugins/table/pm-plugins/analytics/types.d.ts +11 -0
  73. package/dist/types-ts4.5/plugins/table/pm-plugins/analytics/utils/moved-event.d.ts +6 -0
  74. package/package.json +7 -4
  75. package/src/__tests__/unit/index-with-fake-timers.ts +1 -0
  76. package/src/__tests__/unit/nodeviews/table.ts +1 -0
  77. package/src/__tests__/unit/pm-plugins/analytics.ts +327 -0
  78. package/src/plugins/table/commands/insert.ts +23 -2
  79. package/src/plugins/table/commands/misc.ts +84 -1
  80. package/src/plugins/table/index.tsx +13 -6
  81. package/src/plugins/table/nodeviews/TableComponent.tsx +15 -22
  82. package/src/plugins/table/nodeviews/TableResizer.tsx +1 -2
  83. package/src/plugins/table/nodeviews/table.tsx +4 -0
  84. package/src/plugins/table/nodeviews/types.ts +2 -0
  85. package/src/plugins/table/pm-plugins/analytics/actions.ts +23 -0
  86. package/src/plugins/table/pm-plugins/analytics/commands.ts +53 -0
  87. package/src/plugins/table/pm-plugins/analytics/plugin-factory.ts +7 -0
  88. package/src/plugins/table/pm-plugins/analytics/plugin-key.ts +7 -0
  89. package/src/plugins/table/pm-plugins/analytics/plugin.ts +98 -0
  90. package/src/plugins/table/pm-plugins/analytics/reducer.ts +27 -0
  91. package/src/plugins/table/pm-plugins/analytics/types.ts +20 -0
  92. package/src/plugins/table/pm-plugins/analytics/utils/moved-event.ts +51 -0
  93. package/src/plugins/table/pm-plugins/main.ts +1 -0
  94. package/src/plugins/table/pm-plugins/table-analytics.ts +1 -1
  95. package/tsconfig.dev.json +3 -3
  96. package/src/__tests__/integration/__fixtures__/auto-size-documents.ts +0 -434
  97. package/src/__tests__/integration/__fixtures__/basic-table-with-merged-cell.ts +0 -112
  98. package/src/__tests__/integration/__fixtures__/basic-table.ts +0 -120
  99. package/src/__tests__/integration/__fixtures__/empty-layout.ts +0 -35
  100. package/src/__tests__/integration/__fixtures__/empty-paragraph-underneath-table.ts +0 -396
  101. package/src/__tests__/integration/__fixtures__/even-columns.ts +0 -493
  102. package/src/__tests__/integration/__fixtures__/layout-documents.ts +0 -606
  103. package/src/__tests__/integration/__fixtures__/merged-rows-and-cols-document.ts +0 -343
  104. package/src/__tests__/integration/__fixtures__/nested-in-expand.ts +0 -129
  105. package/src/__tests__/integration/__fixtures__/nested-in-extension.ts +0 -163
  106. package/src/__tests__/integration/__fixtures__/paragraph-and-table-adf.ts +0 -132
  107. package/src/__tests__/integration/__fixtures__/resize-documents.ts +0 -1605
  108. package/src/__tests__/integration/__fixtures__/scale.ts +0 -825
  109. package/src/__tests__/integration/__fixtures__/table-inside-layout.ts +0 -145
  110. package/src/__tests__/integration/__fixtures__/table-with-min-width-columns-document.ts +0 -175
  111. package/src/__tests__/integration/__fixtures__/table-with-multiline-date.adf.json +0 -168
  112. package/src/__tests__/integration/__fixtures__/table-with-text-and-empty-row.ts +0 -216
  113. package/src/__tests__/integration/__snapshots__/copy-button.ts.snap +0 -423
  114. package/src/__tests__/integration/copy-button.ts +0 -179
  115. package/src/__tests__/integration/table-controls-selection.ts +0 -71
@@ -1,825 +0,0 @@
1
- export const tableWithManyMinWidthCols = {
2
- version: 1,
3
- type: 'doc',
4
- content: [
5
- {
6
- type: 'table',
7
- attrs: {
8
- isNumberColumnEnabled: false,
9
- layout: 'default',
10
- },
11
- content: [
12
- {
13
- type: 'tableRow',
14
- content: [
15
- {
16
- type: 'tableHeader',
17
- attrs: {
18
- colwidth: [48],
19
- },
20
- content: [
21
- {
22
- type: 'paragraph',
23
- content: [],
24
- },
25
- ],
26
- },
27
- {
28
- type: 'tableHeader',
29
- attrs: {
30
- colwidth: [64],
31
- },
32
- content: [
33
- {
34
- type: 'paragraph',
35
- content: [],
36
- },
37
- ],
38
- },
39
- {
40
- type: 'tableHeader',
41
- attrs: {
42
- colwidth: [48],
43
- },
44
- content: [
45
- {
46
- type: 'paragraph',
47
- content: [],
48
- },
49
- ],
50
- },
51
- {
52
- type: 'tableHeader',
53
- attrs: {
54
- colwidth: [48],
55
- },
56
- content: [
57
- {
58
- type: 'paragraph',
59
- content: [],
60
- },
61
- ],
62
- },
63
- {
64
- type: 'tableHeader',
65
- attrs: {
66
- colwidth: [87],
67
- },
68
- content: [
69
- {
70
- type: 'paragraph',
71
- content: [],
72
- },
73
- ],
74
- },
75
- {
76
- type: 'tableHeader',
77
- attrs: {
78
- colwidth: [58],
79
- },
80
- content: [
81
- {
82
- type: 'paragraph',
83
- content: [],
84
- },
85
- ],
86
- },
87
- {
88
- type: 'tableHeader',
89
- attrs: {
90
- colwidth: [58],
91
- },
92
- content: [
93
- {
94
- type: 'paragraph',
95
- content: [],
96
- },
97
- ],
98
- },
99
- {
100
- type: 'tableHeader',
101
- attrs: {
102
- colwidth: [58],
103
- },
104
- content: [
105
- {
106
- type: 'paragraph',
107
- content: [],
108
- },
109
- ],
110
- },
111
- {
112
- type: 'tableHeader',
113
- attrs: {
114
- colwidth: [58],
115
- },
116
- content: [
117
- {
118
- type: 'paragraph',
119
- content: [],
120
- },
121
- ],
122
- },
123
- {
124
- type: 'tableHeader',
125
- attrs: {
126
- colwidth: [87],
127
- },
128
- content: [
129
- {
130
- type: 'paragraph',
131
- content: [],
132
- },
133
- ],
134
- },
135
- {
136
- type: 'tableHeader',
137
- attrs: {
138
- colwidth: [48],
139
- },
140
- content: [
141
- {
142
- type: 'paragraph',
143
- content: [],
144
- },
145
- ],
146
- },
147
- {
148
- type: 'tableHeader',
149
- attrs: {
150
- colwidth: [48],
151
- },
152
- content: [
153
- {
154
- type: 'paragraph',
155
- content: [],
156
- },
157
- ],
158
- },
159
- {
160
- type: 'tableHeader',
161
- attrs: {
162
- colwidth: [50],
163
- },
164
- content: [
165
- {
166
- type: 'paragraph',
167
- content: [],
168
- },
169
- ],
170
- },
171
- ],
172
- },
173
- {
174
- type: 'tableRow',
175
- content: [
176
- {
177
- type: 'tableCell',
178
- attrs: {
179
- colwidth: [48],
180
- },
181
- content: [
182
- {
183
- type: 'paragraph',
184
- content: [],
185
- },
186
- ],
187
- },
188
- {
189
- type: 'tableCell',
190
- attrs: {
191
- colwidth: [64],
192
- },
193
- content: [
194
- {
195
- type: 'paragraph',
196
- content: [],
197
- },
198
- ],
199
- },
200
- {
201
- type: 'tableCell',
202
- attrs: {
203
- colwidth: [48],
204
- },
205
- content: [
206
- {
207
- type: 'paragraph',
208
- content: [],
209
- },
210
- ],
211
- },
212
- {
213
- type: 'tableCell',
214
- attrs: {
215
- colwidth: [48],
216
- },
217
- content: [
218
- {
219
- type: 'paragraph',
220
- content: [],
221
- },
222
- ],
223
- },
224
- {
225
- type: 'tableCell',
226
- attrs: {
227
- colwidth: [87],
228
- },
229
- content: [
230
- {
231
- type: 'paragraph',
232
- content: [],
233
- },
234
- ],
235
- },
236
- {
237
- type: 'tableCell',
238
- attrs: {
239
- colwidth: [58],
240
- },
241
- content: [
242
- {
243
- type: 'paragraph',
244
- content: [],
245
- },
246
- ],
247
- },
248
- {
249
- type: 'tableCell',
250
- attrs: {
251
- colwidth: [58],
252
- },
253
- content: [
254
- {
255
- type: 'paragraph',
256
- content: [],
257
- },
258
- ],
259
- },
260
- {
261
- type: 'tableCell',
262
- attrs: {
263
- colwidth: [58],
264
- },
265
- content: [
266
- {
267
- type: 'paragraph',
268
- content: [],
269
- },
270
- ],
271
- },
272
- {
273
- type: 'tableCell',
274
- attrs: {
275
- colwidth: [58],
276
- },
277
- content: [
278
- {
279
- type: 'paragraph',
280
- content: [],
281
- },
282
- ],
283
- },
284
- {
285
- type: 'tableCell',
286
- attrs: {
287
- colwidth: [87],
288
- },
289
- content: [
290
- {
291
- type: 'paragraph',
292
- content: [],
293
- },
294
- ],
295
- },
296
- {
297
- type: 'tableCell',
298
- attrs: {
299
- colwidth: [48],
300
- },
301
- content: [
302
- {
303
- type: 'paragraph',
304
- content: [],
305
- },
306
- ],
307
- },
308
- {
309
- type: 'tableCell',
310
- attrs: {
311
- colwidth: [48],
312
- },
313
- content: [
314
- {
315
- type: 'paragraph',
316
- content: [],
317
- },
318
- ],
319
- },
320
- {
321
- type: 'tableCell',
322
- attrs: {
323
- colwidth: [50],
324
- },
325
- content: [
326
- {
327
- type: 'paragraph',
328
- content: [],
329
- },
330
- ],
331
- },
332
- ],
333
- },
334
- {
335
- type: 'tableRow',
336
- content: [
337
- {
338
- type: 'tableCell',
339
- attrs: {
340
- colwidth: [48],
341
- },
342
- content: [
343
- {
344
- type: 'paragraph',
345
- content: [],
346
- },
347
- ],
348
- },
349
- {
350
- type: 'tableCell',
351
- attrs: {
352
- colwidth: [64],
353
- },
354
- content: [
355
- {
356
- type: 'paragraph',
357
- content: [],
358
- },
359
- ],
360
- },
361
- {
362
- type: 'tableCell',
363
- attrs: {
364
- colwidth: [48],
365
- },
366
- content: [
367
- {
368
- type: 'paragraph',
369
- content: [],
370
- },
371
- ],
372
- },
373
- {
374
- type: 'tableCell',
375
- attrs: {
376
- colwidth: [48],
377
- },
378
- content: [
379
- {
380
- type: 'paragraph',
381
- content: [],
382
- },
383
- ],
384
- },
385
- {
386
- type: 'tableCell',
387
- attrs: {
388
- colwidth: [87],
389
- },
390
- content: [
391
- {
392
- type: 'paragraph',
393
- content: [],
394
- },
395
- ],
396
- },
397
- {
398
- type: 'tableCell',
399
- attrs: {
400
- colwidth: [58],
401
- },
402
- content: [
403
- {
404
- type: 'paragraph',
405
- content: [],
406
- },
407
- ],
408
- },
409
- {
410
- type: 'tableCell',
411
- attrs: {
412
- colwidth: [58],
413
- },
414
- content: [
415
- {
416
- type: 'paragraph',
417
- content: [],
418
- },
419
- ],
420
- },
421
- {
422
- type: 'tableCell',
423
- attrs: {
424
- colwidth: [58],
425
- },
426
- content: [
427
- {
428
- type: 'paragraph',
429
- content: [],
430
- },
431
- ],
432
- },
433
- {
434
- type: 'tableCell',
435
- attrs: {
436
- colwidth: [58],
437
- },
438
- content: [
439
- {
440
- type: 'paragraph',
441
- content: [],
442
- },
443
- ],
444
- },
445
- {
446
- type: 'tableCell',
447
- attrs: {
448
- colwidth: [87],
449
- },
450
- content: [
451
- {
452
- type: 'paragraph',
453
- content: [],
454
- },
455
- ],
456
- },
457
- {
458
- type: 'tableCell',
459
- attrs: {
460
- colwidth: [48],
461
- },
462
- content: [
463
- {
464
- type: 'paragraph',
465
- content: [],
466
- },
467
- ],
468
- },
469
- {
470
- type: 'tableCell',
471
- attrs: {
472
- colwidth: [48],
473
- },
474
- content: [
475
- {
476
- type: 'paragraph',
477
- content: [],
478
- },
479
- ],
480
- },
481
- {
482
- type: 'tableCell',
483
- attrs: {
484
- colwidth: [50],
485
- },
486
- content: [
487
- {
488
- type: 'paragraph',
489
- content: [],
490
- },
491
- ],
492
- },
493
- ],
494
- },
495
- ],
496
- },
497
- {
498
- type: 'paragraph',
499
- content: [],
500
- },
501
- ],
502
- };
503
-
504
- export const tableInOverflow = {
505
- version: 1,
506
- type: 'doc',
507
- content: [
508
- {
509
- type: 'table',
510
- attrs: {
511
- isNumberColumnEnabled: false,
512
- layout: 'default',
513
- },
514
- content: [
515
- {
516
- type: 'tableRow',
517
- content: [
518
- {
519
- type: 'tableHeader',
520
- attrs: {
521
- colwidth: [199],
522
- },
523
- content: [
524
- {
525
- type: 'paragraph',
526
- content: [],
527
- },
528
- ],
529
- },
530
- {
531
- type: 'tableHeader',
532
- attrs: {
533
- colwidth: [190],
534
- },
535
- content: [
536
- {
537
- type: 'paragraph',
538
- content: [],
539
- },
540
- ],
541
- },
542
- {
543
- type: 'tableHeader',
544
- attrs: {
545
- colwidth: [305],
546
- },
547
- content: [
548
- {
549
- type: 'paragraph',
550
- content: [],
551
- },
552
- ],
553
- },
554
- {
555
- type: 'tableHeader',
556
- attrs: {
557
- colwidth: [48],
558
- },
559
- content: [
560
- {
561
- type: 'paragraph',
562
- content: [],
563
- },
564
- ],
565
- },
566
- {
567
- type: 'tableHeader',
568
- attrs: {
569
- colwidth: [48],
570
- },
571
- content: [
572
- {
573
- type: 'paragraph',
574
- content: [],
575
- },
576
- ],
577
- },
578
- {
579
- type: 'tableHeader',
580
- attrs: {
581
- colwidth: [48],
582
- },
583
- content: [
584
- {
585
- type: 'paragraph',
586
- content: [],
587
- },
588
- ],
589
- },
590
- {
591
- type: 'tableHeader',
592
- attrs: {
593
- colwidth: [48],
594
- },
595
- content: [
596
- {
597
- type: 'paragraph',
598
- content: [],
599
- },
600
- ],
601
- },
602
- {
603
- type: 'tableHeader',
604
- attrs: {
605
- colwidth: [48],
606
- },
607
- content: [
608
- {
609
- type: 'paragraph',
610
- content: [],
611
- },
612
- ],
613
- },
614
- ],
615
- },
616
- {
617
- type: 'tableRow',
618
- content: [
619
- {
620
- type: 'tableCell',
621
- attrs: {
622
- colwidth: [199],
623
- },
624
- content: [
625
- {
626
- type: 'paragraph',
627
- content: [],
628
- },
629
- ],
630
- },
631
- {
632
- type: 'tableCell',
633
- attrs: {
634
- colwidth: [190],
635
- },
636
- content: [
637
- {
638
- type: 'paragraph',
639
- content: [],
640
- },
641
- ],
642
- },
643
- {
644
- type: 'tableCell',
645
- attrs: {
646
- colwidth: [305],
647
- },
648
- content: [
649
- {
650
- type: 'paragraph',
651
- content: [],
652
- },
653
- ],
654
- },
655
- {
656
- type: 'tableCell',
657
- attrs: {
658
- colwidth: [48],
659
- },
660
- content: [
661
- {
662
- type: 'paragraph',
663
- content: [],
664
- },
665
- ],
666
- },
667
- {
668
- type: 'tableCell',
669
- attrs: {
670
- colwidth: [48],
671
- },
672
- content: [
673
- {
674
- type: 'paragraph',
675
- content: [],
676
- },
677
- ],
678
- },
679
- {
680
- type: 'tableCell',
681
- attrs: {
682
- colwidth: [48],
683
- },
684
- content: [
685
- {
686
- type: 'paragraph',
687
- content: [],
688
- },
689
- ],
690
- },
691
- {
692
- type: 'tableCell',
693
- attrs: {
694
- colwidth: [48],
695
- },
696
- content: [
697
- {
698
- type: 'paragraph',
699
- content: [],
700
- },
701
- ],
702
- },
703
- {
704
- type: 'tableCell',
705
- attrs: {
706
- colwidth: [48],
707
- },
708
- content: [
709
- {
710
- type: 'paragraph',
711
- content: [],
712
- },
713
- ],
714
- },
715
- ],
716
- },
717
- {
718
- type: 'tableRow',
719
- content: [
720
- {
721
- type: 'tableCell',
722
- attrs: {
723
- colwidth: [199],
724
- },
725
- content: [
726
- {
727
- type: 'paragraph',
728
- content: [],
729
- },
730
- ],
731
- },
732
- {
733
- type: 'tableCell',
734
- attrs: {
735
- colwidth: [190],
736
- },
737
- content: [
738
- {
739
- type: 'paragraph',
740
- content: [],
741
- },
742
- ],
743
- },
744
- {
745
- type: 'tableCell',
746
- attrs: {
747
- colwidth: [305],
748
- },
749
- content: [
750
- {
751
- type: 'paragraph',
752
- content: [],
753
- },
754
- ],
755
- },
756
- {
757
- type: 'tableCell',
758
- attrs: {
759
- colwidth: [48],
760
- },
761
- content: [
762
- {
763
- type: 'paragraph',
764
- content: [],
765
- },
766
- ],
767
- },
768
- {
769
- type: 'tableCell',
770
- attrs: {
771
- colwidth: [48],
772
- },
773
- content: [
774
- {
775
- type: 'paragraph',
776
- content: [],
777
- },
778
- ],
779
- },
780
- {
781
- type: 'tableCell',
782
- attrs: {
783
- colwidth: [48],
784
- },
785
- content: [
786
- {
787
- type: 'paragraph',
788
- content: [],
789
- },
790
- ],
791
- },
792
- {
793
- type: 'tableCell',
794
- attrs: {
795
- colwidth: [48],
796
- },
797
- content: [
798
- {
799
- type: 'paragraph',
800
- content: [],
801
- },
802
- ],
803
- },
804
- {
805
- type: 'tableCell',
806
- attrs: {
807
- colwidth: [48],
808
- },
809
- content: [
810
- {
811
- type: 'paragraph',
812
- content: [],
813
- },
814
- ],
815
- },
816
- ],
817
- },
818
- ],
819
- },
820
- {
821
- type: 'paragraph',
822
- content: [],
823
- },
824
- ],
825
- };