@atlaskit/editor-plugin-table 5.4.3 → 5.4.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 (96) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/dist/cjs/plugins/table/nodeviews/TableComponent.js +1 -1
  3. package/dist/cjs/plugins/table/pm-plugins/keymap.js +1 -1
  4. package/dist/cjs/plugins/table/types.js +1 -1
  5. package/dist/cjs/plugins/table/ui/DragHandle/HandleIconComponent.js +29 -0
  6. package/dist/cjs/plugins/table/ui/DragHandle/index.js +21 -20
  7. package/dist/cjs/plugins/table/ui/TableFloatingColumnControls/ColumnDropTargets/ColumnDropTarget.js +1 -1
  8. package/dist/cjs/plugins/table/ui/TableFloatingControls/RowDropTarget/index.js +1 -1
  9. package/dist/cjs/plugins/table/ui/common-styles.js +1 -1
  10. package/dist/cjs/plugins/table/ui/consts.js +1 -2
  11. package/dist/cjs/plugins/table/ui/ui-styles.js +10 -13
  12. package/dist/cjs/plugins/table/utils/decoration.js +7 -6
  13. package/dist/es2019/plugins/table/nodeviews/TableComponent.js +1 -1
  14. package/dist/es2019/plugins/table/pm-plugins/keymap.js +1 -1
  15. package/dist/es2019/plugins/table/types.js +1 -1
  16. package/dist/es2019/plugins/table/ui/DragHandle/HandleIconComponent.js +24 -0
  17. package/dist/es2019/plugins/table/ui/DragHandle/index.js +21 -20
  18. package/dist/es2019/plugins/table/ui/TableFloatingColumnControls/ColumnDropTargets/ColumnDropTarget.js +1 -1
  19. package/dist/es2019/plugins/table/ui/TableFloatingControls/RowDropTarget/index.js +1 -1
  20. package/dist/es2019/plugins/table/ui/common-styles.js +6 -2
  21. package/dist/es2019/plugins/table/ui/consts.js +0 -1
  22. package/dist/es2019/plugins/table/ui/ui-styles.js +18 -12
  23. package/dist/es2019/plugins/table/utils/decoration.js +7 -6
  24. package/dist/esm/plugins/table/nodeviews/TableComponent.js +1 -1
  25. package/dist/esm/plugins/table/pm-plugins/keymap.js +1 -1
  26. package/dist/esm/plugins/table/types.js +1 -1
  27. package/dist/esm/plugins/table/ui/DragHandle/HandleIconComponent.js +22 -0
  28. package/dist/esm/plugins/table/ui/DragHandle/index.js +21 -20
  29. package/dist/esm/plugins/table/ui/TableFloatingColumnControls/ColumnDropTargets/ColumnDropTarget.js +1 -1
  30. package/dist/esm/plugins/table/ui/TableFloatingControls/RowDropTarget/index.js +1 -1
  31. package/dist/esm/plugins/table/ui/common-styles.js +2 -2
  32. package/dist/esm/plugins/table/ui/consts.js +0 -1
  33. package/dist/esm/plugins/table/ui/ui-styles.js +10 -13
  34. package/dist/esm/plugins/table/utils/decoration.js +7 -6
  35. package/dist/types/plugins/table/types.d.ts +1 -1
  36. package/dist/types/plugins/table/ui/DragHandle/HandleIconComponent.d.ts +13 -0
  37. package/dist/types/plugins/table/ui/consts.d.ts +0 -1
  38. package/dist/types/plugins/table/ui/ui-styles.d.ts +0 -1
  39. package/dist/types-ts4.5/plugins/table/types.d.ts +1 -1
  40. package/dist/types-ts4.5/plugins/table/ui/DragHandle/HandleIconComponent.d.ts +13 -0
  41. package/dist/types-ts4.5/plugins/table/ui/consts.d.ts +0 -1
  42. package/dist/types-ts4.5/plugins/table/ui/ui-styles.d.ts +0 -1
  43. package/package.json +3 -3
  44. package/src/__tests__/integration/__fixtures__/basic-table.ts +1 -1
  45. package/src/__tests__/unit/analytics.ts +1 -1
  46. package/src/__tests__/unit/collab.ts +1 -1
  47. package/src/__tests__/unit/commands/sort.ts +1 -1
  48. package/src/__tests__/unit/copy-paste.ts +1 -1
  49. package/src/__tests__/unit/event-handlers/index.ts +1 -1
  50. package/src/__tests__/unit/event-handlers.ts +1 -1
  51. package/src/__tests__/unit/fix-tables.ts +1 -1
  52. package/src/__tests__/unit/handlers.ts +1 -1
  53. package/src/__tests__/unit/hover-selection.ts +1 -1
  54. package/src/__tests__/unit/index.ts +1 -1
  55. package/src/__tests__/unit/layout.ts +1 -1
  56. package/src/__tests__/unit/nodeviews/TableComponent.tsx +1 -1
  57. package/src/__tests__/unit/nodeviews/TableContainer.tsx +1 -1
  58. package/src/__tests__/unit/nodeviews/cell.ts +1 -1
  59. package/src/__tests__/unit/pm-plugins/safari-delete-composition-text-issue-workaround.ts +1 -1
  60. package/src/__tests__/unit/pm-plugins/table-width.ts +1 -1
  61. package/src/__tests__/unit/sort-column.ts +1 -1
  62. package/src/__tests__/unit/transforms/delete-columns.ts +1 -1
  63. package/src/__tests__/unit/transforms/delete-rows.ts +1 -1
  64. package/src/__tests__/unit/transforms/merging.ts +1 -1
  65. package/src/__tests__/unit/ui/ContextualMenu.tsx +1 -1
  66. package/src/__tests__/unit/ui/CornerControls.tsx +1 -1
  67. package/src/__tests__/unit/ui/FloatingContextualButton.tsx +1 -1
  68. package/src/__tests__/unit/ui/FloatingContextualMenu.tsx +1 -1
  69. package/src/__tests__/unit/ui/FloatingDeleteButton.tsx +1 -1
  70. package/src/__tests__/unit/ui/FloatingDragMenu.tsx +1 -1
  71. package/src/__tests__/unit/ui/FloatingInsertButton.tsx +1 -1
  72. package/src/__tests__/unit/ui/NumberColumn.tsx +1 -1
  73. package/src/__tests__/unit/ui/RowControls.tsx +1 -1
  74. package/src/__tests__/unit/ui/RowDragControls.tsx +1 -1
  75. package/src/__tests__/unit/ui/TableFloatingColumnControls.tsx +1 -1
  76. package/src/__tests__/unit/ui/TableFloatingControls.tsx +1 -1
  77. package/src/__tests__/unit/utils/nodes.ts +1 -1
  78. package/src/__tests__/unit/utils/row-controls.ts +1 -1
  79. package/src/plugins/table/nodeviews/TableComponent.tsx +2 -2
  80. package/src/plugins/table/pm-plugins/drag-and-drop/utils/monitor.ts +1 -1
  81. package/src/plugins/table/pm-plugins/keymap.ts +4 -4
  82. package/src/plugins/table/types.ts +1 -1
  83. package/src/plugins/table/ui/DragHandle/HandleIconComponent.tsx +51 -0
  84. package/src/plugins/table/ui/DragHandle/index.tsx +30 -33
  85. package/src/plugins/table/ui/TableFloatingColumnControls/ColumnDropTargets/ColumnDropTarget.tsx +1 -1
  86. package/src/plugins/table/ui/TableFloatingControls/RowDropTarget/index.tsx +1 -1
  87. package/src/plugins/table/ui/common-styles.ts +5 -2
  88. package/src/plugins/table/ui/consts.ts +0 -5
  89. package/src/plugins/table/ui/ui-styles.ts +17 -12
  90. package/src/plugins/table/utils/decoration.ts +14 -19
  91. package/src/__tests__/integration/__fixtures__/large-table-with-sticky-header.ts +0 -2311
  92. package/src/__tests__/integration/__fixtures__/table-and-paragraph-adf.ts +0 -130
  93. package/src/__tests__/integration/horizontal-scroll-shadows.ts +0 -197
  94. package/src/__tests__/integration/meta-arrowup-cursor-in-first-row.ts +0 -42
  95. package/src/__tests__/integration/sticky-header.ts +0 -133
  96. package/tmp/api-report-tmp.d.ts +0 -100
@@ -1,2311 +0,0 @@
1
- export default {
2
- version: 1,
3
- type: 'doc',
4
- content: [
5
- {
6
- type: 'table',
7
- attrs: {
8
- isNumberColumnEnabled: true,
9
- layout: 'default',
10
- localId: 'f7c5babb-2eb6-4f52-b6d3-63af3351b461',
11
- },
12
- content: [
13
- {
14
- type: 'tableRow',
15
- content: [
16
- {
17
- type: 'tableHeader',
18
- attrs: {},
19
- content: [
20
- {
21
- type: 'paragraph',
22
- content: [],
23
- },
24
- ],
25
- },
26
- {
27
- type: 'tableHeader',
28
- attrs: {},
29
- content: [
30
- {
31
- type: 'paragraph',
32
- content: [],
33
- },
34
- ],
35
- },
36
- {
37
- type: 'tableHeader',
38
- attrs: {},
39
- content: [
40
- {
41
- type: 'paragraph',
42
- content: [],
43
- },
44
- ],
45
- },
46
- {
47
- type: 'tableHeader',
48
- attrs: {},
49
- content: [
50
- {
51
- type: 'paragraph',
52
- content: [],
53
- },
54
- ],
55
- },
56
- ],
57
- },
58
- {
59
- type: 'tableRow',
60
- content: [
61
- {
62
- type: 'tableCell',
63
- attrs: {},
64
- content: [
65
- {
66
- type: 'paragraph',
67
- content: [],
68
- },
69
- ],
70
- },
71
- {
72
- type: 'tableCell',
73
- attrs: {},
74
- content: [
75
- {
76
- type: 'paragraph',
77
- content: [],
78
- },
79
- ],
80
- },
81
- {
82
- type: 'tableCell',
83
- attrs: {},
84
- content: [
85
- {
86
- type: 'paragraph',
87
- content: [],
88
- },
89
- ],
90
- },
91
- {
92
- type: 'tableCell',
93
- attrs: {},
94
- content: [
95
- {
96
- type: 'paragraph',
97
- content: [],
98
- },
99
- ],
100
- },
101
- ],
102
- },
103
- {
104
- type: 'tableRow',
105
- content: [
106
- {
107
- type: 'tableCell',
108
- attrs: {},
109
- content: [
110
- {
111
- type: 'paragraph',
112
- content: [],
113
- },
114
- ],
115
- },
116
- {
117
- type: 'tableCell',
118
- attrs: {},
119
- content: [
120
- {
121
- type: 'paragraph',
122
- content: [],
123
- },
124
- ],
125
- },
126
- {
127
- type: 'tableCell',
128
- attrs: {},
129
- content: [
130
- {
131
- type: 'paragraph',
132
- content: [],
133
- },
134
- ],
135
- },
136
- {
137
- type: 'tableCell',
138
- attrs: {},
139
- content: [
140
- {
141
- type: 'paragraph',
142
- content: [],
143
- },
144
- ],
145
- },
146
- ],
147
- },
148
- {
149
- type: 'tableRow',
150
- content: [
151
- {
152
- type: 'tableCell',
153
- attrs: {},
154
- content: [
155
- {
156
- type: 'paragraph',
157
- content: [],
158
- },
159
- ],
160
- },
161
- {
162
- type: 'tableCell',
163
- attrs: {},
164
- content: [
165
- {
166
- type: 'paragraph',
167
- content: [],
168
- },
169
- ],
170
- },
171
- {
172
- type: 'tableCell',
173
- attrs: {},
174
- content: [
175
- {
176
- type: 'paragraph',
177
- content: [],
178
- },
179
- ],
180
- },
181
- {
182
- type: 'tableCell',
183
- attrs: {},
184
- content: [
185
- {
186
- type: 'paragraph',
187
- content: [],
188
- },
189
- ],
190
- },
191
- ],
192
- },
193
- {
194
- type: 'tableRow',
195
- content: [
196
- {
197
- type: 'tableCell',
198
- attrs: {},
199
- content: [
200
- {
201
- type: 'paragraph',
202
- content: [],
203
- },
204
- ],
205
- },
206
- {
207
- type: 'tableCell',
208
- attrs: {},
209
- content: [
210
- {
211
- type: 'paragraph',
212
- content: [],
213
- },
214
- ],
215
- },
216
- {
217
- type: 'tableCell',
218
- attrs: {},
219
- content: [
220
- {
221
- type: 'paragraph',
222
- content: [],
223
- },
224
- ],
225
- },
226
- {
227
- type: 'tableCell',
228
- attrs: {},
229
- content: [
230
- {
231
- type: 'paragraph',
232
- content: [],
233
- },
234
- ],
235
- },
236
- ],
237
- },
238
- {
239
- type: 'tableRow',
240
- content: [
241
- {
242
- type: 'tableCell',
243
- attrs: {},
244
- content: [
245
- {
246
- type: 'paragraph',
247
- content: [],
248
- },
249
- ],
250
- },
251
- {
252
- type: 'tableCell',
253
- attrs: {},
254
- content: [
255
- {
256
- type: 'paragraph',
257
- content: [],
258
- },
259
- ],
260
- },
261
- {
262
- type: 'tableCell',
263
- attrs: {},
264
- content: [
265
- {
266
- type: 'paragraph',
267
- content: [],
268
- },
269
- ],
270
- },
271
- {
272
- type: 'tableCell',
273
- attrs: {},
274
- content: [
275
- {
276
- type: 'paragraph',
277
- content: [],
278
- },
279
- ],
280
- },
281
- ],
282
- },
283
- {
284
- type: 'tableRow',
285
- content: [
286
- {
287
- type: 'tableCell',
288
- attrs: {},
289
- content: [
290
- {
291
- type: 'paragraph',
292
- content: [],
293
- },
294
- ],
295
- },
296
- {
297
- type: 'tableCell',
298
- attrs: {},
299
- content: [
300
- {
301
- type: 'paragraph',
302
- content: [],
303
- },
304
- ],
305
- },
306
- {
307
- type: 'tableCell',
308
- attrs: {},
309
- content: [
310
- {
311
- type: 'paragraph',
312
- content: [],
313
- },
314
- ],
315
- },
316
- {
317
- type: 'tableCell',
318
- attrs: {},
319
- content: [
320
- {
321
- type: 'paragraph',
322
- content: [],
323
- },
324
- ],
325
- },
326
- ],
327
- },
328
- {
329
- type: 'tableRow',
330
- content: [
331
- {
332
- type: 'tableCell',
333
- attrs: {},
334
- content: [
335
- {
336
- type: 'paragraph',
337
- content: [],
338
- },
339
- ],
340
- },
341
- {
342
- type: 'tableCell',
343
- attrs: {},
344
- content: [
345
- {
346
- type: 'paragraph',
347
- content: [],
348
- },
349
- ],
350
- },
351
- {
352
- type: 'tableCell',
353
- attrs: {},
354
- content: [
355
- {
356
- type: 'paragraph',
357
- content: [],
358
- },
359
- ],
360
- },
361
- {
362
- type: 'tableCell',
363
- attrs: {},
364
- content: [
365
- {
366
- type: 'paragraph',
367
- content: [],
368
- },
369
- ],
370
- },
371
- ],
372
- },
373
- {
374
- type: 'tableRow',
375
- content: [
376
- {
377
- type: 'tableCell',
378
- attrs: {},
379
- content: [
380
- {
381
- type: 'paragraph',
382
- content: [],
383
- },
384
- ],
385
- },
386
- {
387
- type: 'tableCell',
388
- attrs: {},
389
- content: [
390
- {
391
- type: 'paragraph',
392
- content: [],
393
- },
394
- ],
395
- },
396
- {
397
- type: 'tableCell',
398
- attrs: {},
399
- content: [
400
- {
401
- type: 'paragraph',
402
- content: [],
403
- },
404
- ],
405
- },
406
- {
407
- type: 'tableCell',
408
- attrs: {},
409
- content: [
410
- {
411
- type: 'paragraph',
412
- content: [],
413
- },
414
- ],
415
- },
416
- ],
417
- },
418
- {
419
- type: 'tableRow',
420
- content: [
421
- {
422
- type: 'tableCell',
423
- attrs: {},
424
- content: [
425
- {
426
- type: 'paragraph',
427
- content: [],
428
- },
429
- ],
430
- },
431
- {
432
- type: 'tableCell',
433
- attrs: {},
434
- content: [
435
- {
436
- type: 'paragraph',
437
- content: [],
438
- },
439
- ],
440
- },
441
- {
442
- type: 'tableCell',
443
- attrs: {},
444
- content: [
445
- {
446
- type: 'paragraph',
447
- content: [],
448
- },
449
- ],
450
- },
451
- {
452
- type: 'tableCell',
453
- attrs: {},
454
- content: [
455
- {
456
- type: 'paragraph',
457
- content: [],
458
- },
459
- ],
460
- },
461
- ],
462
- },
463
- {
464
- type: 'tableRow',
465
- content: [
466
- {
467
- type: 'tableCell',
468
- attrs: {},
469
- content: [
470
- {
471
- type: 'paragraph',
472
- content: [],
473
- },
474
- ],
475
- },
476
- {
477
- type: 'tableCell',
478
- attrs: {},
479
- content: [
480
- {
481
- type: 'paragraph',
482
- content: [],
483
- },
484
- ],
485
- },
486
- {
487
- type: 'tableCell',
488
- attrs: {},
489
- content: [
490
- {
491
- type: 'paragraph',
492
- content: [],
493
- },
494
- ],
495
- },
496
- {
497
- type: 'tableCell',
498
- attrs: {},
499
- content: [
500
- {
501
- type: 'paragraph',
502
- content: [],
503
- },
504
- ],
505
- },
506
- ],
507
- },
508
- {
509
- type: 'tableRow',
510
- content: [
511
- {
512
- type: 'tableCell',
513
- attrs: {},
514
- content: [
515
- {
516
- type: 'paragraph',
517
- content: [],
518
- },
519
- ],
520
- },
521
- {
522
- type: 'tableCell',
523
- attrs: {},
524
- content: [
525
- {
526
- type: 'paragraph',
527
- content: [],
528
- },
529
- ],
530
- },
531
- {
532
- type: 'tableCell',
533
- attrs: {},
534
- content: [
535
- {
536
- type: 'paragraph',
537
- content: [],
538
- },
539
- ],
540
- },
541
- {
542
- type: 'tableCell',
543
- attrs: {},
544
- content: [
545
- {
546
- type: 'paragraph',
547
- content: [],
548
- },
549
- ],
550
- },
551
- ],
552
- },
553
- {
554
- type: 'tableRow',
555
- content: [
556
- {
557
- type: 'tableCell',
558
- attrs: {},
559
- content: [
560
- {
561
- type: 'paragraph',
562
- content: [],
563
- },
564
- ],
565
- },
566
- {
567
- type: 'tableCell',
568
- attrs: {},
569
- content: [
570
- {
571
- type: 'paragraph',
572
- content: [],
573
- },
574
- ],
575
- },
576
- {
577
- type: 'tableCell',
578
- attrs: {},
579
- content: [
580
- {
581
- type: 'paragraph',
582
- content: [],
583
- },
584
- ],
585
- },
586
- {
587
- type: 'tableCell',
588
- attrs: {},
589
- content: [
590
- {
591
- type: 'paragraph',
592
- content: [],
593
- },
594
- ],
595
- },
596
- ],
597
- },
598
- {
599
- type: 'tableRow',
600
- content: [
601
- {
602
- type: 'tableCell',
603
- attrs: {},
604
- content: [
605
- {
606
- type: 'paragraph',
607
- content: [],
608
- },
609
- ],
610
- },
611
- {
612
- type: 'tableCell',
613
- attrs: {},
614
- content: [
615
- {
616
- type: 'paragraph',
617
- content: [],
618
- },
619
- ],
620
- },
621
- {
622
- type: 'tableCell',
623
- attrs: {},
624
- content: [
625
- {
626
- type: 'paragraph',
627
- content: [],
628
- },
629
- ],
630
- },
631
- {
632
- type: 'tableCell',
633
- attrs: {},
634
- content: [
635
- {
636
- type: 'paragraph',
637
- content: [],
638
- },
639
- ],
640
- },
641
- ],
642
- },
643
- {
644
- type: 'tableRow',
645
- content: [
646
- {
647
- type: 'tableCell',
648
- attrs: {},
649
- content: [
650
- {
651
- type: 'paragraph',
652
- content: [],
653
- },
654
- ],
655
- },
656
- {
657
- type: 'tableCell',
658
- attrs: {},
659
- content: [
660
- {
661
- type: 'paragraph',
662
- content: [],
663
- },
664
- ],
665
- },
666
- {
667
- type: 'tableCell',
668
- attrs: {},
669
- content: [
670
- {
671
- type: 'paragraph',
672
- content: [],
673
- },
674
- ],
675
- },
676
- {
677
- type: 'tableCell',
678
- attrs: {},
679
- content: [
680
- {
681
- type: 'paragraph',
682
- content: [],
683
- },
684
- ],
685
- },
686
- ],
687
- },
688
- {
689
- type: 'tableRow',
690
- content: [
691
- {
692
- type: 'tableCell',
693
- attrs: {},
694
- content: [
695
- {
696
- type: 'paragraph',
697
- content: [],
698
- },
699
- ],
700
- },
701
- {
702
- type: 'tableCell',
703
- attrs: {},
704
- content: [
705
- {
706
- type: 'paragraph',
707
- content: [],
708
- },
709
- ],
710
- },
711
- {
712
- type: 'tableCell',
713
- attrs: {},
714
- content: [
715
- {
716
- type: 'paragraph',
717
- content: [],
718
- },
719
- ],
720
- },
721
- {
722
- type: 'tableCell',
723
- attrs: {},
724
- content: [
725
- {
726
- type: 'paragraph',
727
- content: [],
728
- },
729
- ],
730
- },
731
- ],
732
- },
733
- {
734
- type: 'tableRow',
735
- content: [
736
- {
737
- type: 'tableCell',
738
- attrs: {},
739
- content: [
740
- {
741
- type: 'paragraph',
742
- content: [],
743
- },
744
- ],
745
- },
746
- {
747
- type: 'tableCell',
748
- attrs: {},
749
- content: [
750
- {
751
- type: 'paragraph',
752
- content: [],
753
- },
754
- ],
755
- },
756
- {
757
- type: 'tableCell',
758
- attrs: {},
759
- content: [
760
- {
761
- type: 'paragraph',
762
- content: [],
763
- },
764
- ],
765
- },
766
- {
767
- type: 'tableCell',
768
- attrs: {},
769
- content: [
770
- {
771
- type: 'paragraph',
772
- content: [],
773
- },
774
- ],
775
- },
776
- ],
777
- },
778
- {
779
- type: 'tableRow',
780
- content: [
781
- {
782
- type: 'tableCell',
783
- attrs: {},
784
- content: [
785
- {
786
- type: 'paragraph',
787
- content: [],
788
- },
789
- ],
790
- },
791
- {
792
- type: 'tableCell',
793
- attrs: {},
794
- content: [
795
- {
796
- type: 'paragraph',
797
- content: [],
798
- },
799
- ],
800
- },
801
- {
802
- type: 'tableCell',
803
- attrs: {},
804
- content: [
805
- {
806
- type: 'paragraph',
807
- content: [],
808
- },
809
- ],
810
- },
811
- {
812
- type: 'tableCell',
813
- attrs: {},
814
- content: [
815
- {
816
- type: 'paragraph',
817
- content: [],
818
- },
819
- ],
820
- },
821
- ],
822
- },
823
- {
824
- type: 'tableRow',
825
- content: [
826
- {
827
- type: 'tableCell',
828
- attrs: {},
829
- content: [
830
- {
831
- type: 'paragraph',
832
- content: [],
833
- },
834
- ],
835
- },
836
- {
837
- type: 'tableCell',
838
- attrs: {},
839
- content: [
840
- {
841
- type: 'paragraph',
842
- content: [],
843
- },
844
- ],
845
- },
846
- {
847
- type: 'tableCell',
848
- attrs: {},
849
- content: [
850
- {
851
- type: 'paragraph',
852
- content: [],
853
- },
854
- ],
855
- },
856
- {
857
- type: 'tableCell',
858
- attrs: {},
859
- content: [
860
- {
861
- type: 'paragraph',
862
- content: [],
863
- },
864
- ],
865
- },
866
- ],
867
- },
868
- {
869
- type: 'tableRow',
870
- content: [
871
- {
872
- type: 'tableCell',
873
- attrs: {},
874
- content: [
875
- {
876
- type: 'paragraph',
877
- content: [],
878
- },
879
- ],
880
- },
881
- {
882
- type: 'tableCell',
883
- attrs: {},
884
- content: [
885
- {
886
- type: 'paragraph',
887
- content: [],
888
- },
889
- ],
890
- },
891
- {
892
- type: 'tableCell',
893
- attrs: {},
894
- content: [
895
- {
896
- type: 'paragraph',
897
- content: [],
898
- },
899
- ],
900
- },
901
- {
902
- type: 'tableCell',
903
- attrs: {},
904
- content: [
905
- {
906
- type: 'paragraph',
907
- content: [],
908
- },
909
- ],
910
- },
911
- ],
912
- },
913
- {
914
- type: 'tableRow',
915
- content: [
916
- {
917
- type: 'tableCell',
918
- attrs: {},
919
- content: [
920
- {
921
- type: 'paragraph',
922
- content: [],
923
- },
924
- ],
925
- },
926
- {
927
- type: 'tableCell',
928
- attrs: {},
929
- content: [
930
- {
931
- type: 'paragraph',
932
- content: [],
933
- },
934
- ],
935
- },
936
- {
937
- type: 'tableCell',
938
- attrs: {},
939
- content: [
940
- {
941
- type: 'paragraph',
942
- content: [],
943
- },
944
- ],
945
- },
946
- {
947
- type: 'tableCell',
948
- attrs: {},
949
- content: [
950
- {
951
- type: 'paragraph',
952
- content: [],
953
- },
954
- ],
955
- },
956
- ],
957
- },
958
- {
959
- type: 'tableRow',
960
- content: [
961
- {
962
- type: 'tableCell',
963
- attrs: {},
964
- content: [
965
- {
966
- type: 'paragraph',
967
- content: [],
968
- },
969
- ],
970
- },
971
- {
972
- type: 'tableCell',
973
- attrs: {},
974
- content: [
975
- {
976
- type: 'paragraph',
977
- content: [],
978
- },
979
- ],
980
- },
981
- {
982
- type: 'tableCell',
983
- attrs: {},
984
- content: [
985
- {
986
- type: 'paragraph',
987
- content: [],
988
- },
989
- ],
990
- },
991
- {
992
- type: 'tableCell',
993
- attrs: {},
994
- content: [
995
- {
996
- type: 'paragraph',
997
- content: [],
998
- },
999
- ],
1000
- },
1001
- ],
1002
- },
1003
- {
1004
- type: 'tableRow',
1005
- content: [
1006
- {
1007
- type: 'tableCell',
1008
- attrs: {},
1009
- content: [
1010
- {
1011
- type: 'paragraph',
1012
- content: [],
1013
- },
1014
- ],
1015
- },
1016
- {
1017
- type: 'tableCell',
1018
- attrs: {},
1019
- content: [
1020
- {
1021
- type: 'paragraph',
1022
- content: [],
1023
- },
1024
- ],
1025
- },
1026
- {
1027
- type: 'tableCell',
1028
- attrs: {},
1029
- content: [
1030
- {
1031
- type: 'paragraph',
1032
- content: [],
1033
- },
1034
- ],
1035
- },
1036
- {
1037
- type: 'tableCell',
1038
- attrs: {},
1039
- content: [
1040
- {
1041
- type: 'paragraph',
1042
- content: [],
1043
- },
1044
- ],
1045
- },
1046
- ],
1047
- },
1048
- {
1049
- type: 'tableRow',
1050
- content: [
1051
- {
1052
- type: 'tableCell',
1053
- attrs: {},
1054
- content: [
1055
- {
1056
- type: 'paragraph',
1057
- content: [],
1058
- },
1059
- ],
1060
- },
1061
- {
1062
- type: 'tableCell',
1063
- attrs: {},
1064
- content: [
1065
- {
1066
- type: 'paragraph',
1067
- content: [],
1068
- },
1069
- ],
1070
- },
1071
- {
1072
- type: 'tableCell',
1073
- attrs: {},
1074
- content: [
1075
- {
1076
- type: 'paragraph',
1077
- content: [],
1078
- },
1079
- ],
1080
- },
1081
- {
1082
- type: 'tableCell',
1083
- attrs: {},
1084
- content: [
1085
- {
1086
- type: 'paragraph',
1087
- content: [],
1088
- },
1089
- ],
1090
- },
1091
- ],
1092
- },
1093
- {
1094
- type: 'tableRow',
1095
- content: [
1096
- {
1097
- type: 'tableCell',
1098
- attrs: {},
1099
- content: [
1100
- {
1101
- type: 'paragraph',
1102
- content: [],
1103
- },
1104
- ],
1105
- },
1106
- {
1107
- type: 'tableCell',
1108
- attrs: {},
1109
- content: [
1110
- {
1111
- type: 'paragraph',
1112
- content: [],
1113
- },
1114
- ],
1115
- },
1116
- {
1117
- type: 'tableCell',
1118
- attrs: {},
1119
- content: [
1120
- {
1121
- type: 'paragraph',
1122
- content: [],
1123
- },
1124
- ],
1125
- },
1126
- {
1127
- type: 'tableCell',
1128
- attrs: {},
1129
- content: [
1130
- {
1131
- type: 'paragraph',
1132
- content: [],
1133
- },
1134
- ],
1135
- },
1136
- ],
1137
- },
1138
- {
1139
- type: 'tableRow',
1140
- content: [
1141
- {
1142
- type: 'tableCell',
1143
- attrs: {},
1144
- content: [
1145
- {
1146
- type: 'paragraph',
1147
- content: [],
1148
- },
1149
- ],
1150
- },
1151
- {
1152
- type: 'tableCell',
1153
- attrs: {},
1154
- content: [
1155
- {
1156
- type: 'paragraph',
1157
- content: [],
1158
- },
1159
- ],
1160
- },
1161
- {
1162
- type: 'tableCell',
1163
- attrs: {},
1164
- content: [
1165
- {
1166
- type: 'paragraph',
1167
- content: [],
1168
- },
1169
- ],
1170
- },
1171
- {
1172
- type: 'tableCell',
1173
- attrs: {},
1174
- content: [
1175
- {
1176
- type: 'paragraph',
1177
- content: [],
1178
- },
1179
- ],
1180
- },
1181
- ],
1182
- },
1183
- {
1184
- type: 'tableRow',
1185
- content: [
1186
- {
1187
- type: 'tableCell',
1188
- attrs: {},
1189
- content: [
1190
- {
1191
- type: 'paragraph',
1192
- content: [],
1193
- },
1194
- ],
1195
- },
1196
- {
1197
- type: 'tableCell',
1198
- attrs: {},
1199
- content: [
1200
- {
1201
- type: 'paragraph',
1202
- content: [],
1203
- },
1204
- ],
1205
- },
1206
- {
1207
- type: 'tableCell',
1208
- attrs: {},
1209
- content: [
1210
- {
1211
- type: 'paragraph',
1212
- content: [],
1213
- },
1214
- ],
1215
- },
1216
- {
1217
- type: 'tableCell',
1218
- attrs: {},
1219
- content: [
1220
- {
1221
- type: 'paragraph',
1222
- content: [],
1223
- },
1224
- ],
1225
- },
1226
- ],
1227
- },
1228
- {
1229
- type: 'tableRow',
1230
- content: [
1231
- {
1232
- type: 'tableCell',
1233
- attrs: {},
1234
- content: [
1235
- {
1236
- type: 'paragraph',
1237
- content: [],
1238
- },
1239
- ],
1240
- },
1241
- {
1242
- type: 'tableCell',
1243
- attrs: {},
1244
- content: [
1245
- {
1246
- type: 'paragraph',
1247
- content: [],
1248
- },
1249
- ],
1250
- },
1251
- {
1252
- type: 'tableCell',
1253
- attrs: {},
1254
- content: [
1255
- {
1256
- type: 'paragraph',
1257
- content: [],
1258
- },
1259
- ],
1260
- },
1261
- {
1262
- type: 'tableCell',
1263
- attrs: {},
1264
- content: [
1265
- {
1266
- type: 'paragraph',
1267
- content: [],
1268
- },
1269
- ],
1270
- },
1271
- ],
1272
- },
1273
- {
1274
- type: 'tableRow',
1275
- content: [
1276
- {
1277
- type: 'tableCell',
1278
- attrs: {},
1279
- content: [
1280
- {
1281
- type: 'paragraph',
1282
- content: [],
1283
- },
1284
- ],
1285
- },
1286
- {
1287
- type: 'tableCell',
1288
- attrs: {},
1289
- content: [
1290
- {
1291
- type: 'paragraph',
1292
- content: [],
1293
- },
1294
- ],
1295
- },
1296
- {
1297
- type: 'tableCell',
1298
- attrs: {},
1299
- content: [
1300
- {
1301
- type: 'paragraph',
1302
- content: [],
1303
- },
1304
- ],
1305
- },
1306
- {
1307
- type: 'tableCell',
1308
- attrs: {},
1309
- content: [
1310
- {
1311
- type: 'paragraph',
1312
- content: [],
1313
- },
1314
- ],
1315
- },
1316
- ],
1317
- },
1318
- {
1319
- type: 'tableRow',
1320
- content: [
1321
- {
1322
- type: 'tableCell',
1323
- attrs: {},
1324
- content: [
1325
- {
1326
- type: 'paragraph',
1327
- content: [],
1328
- },
1329
- ],
1330
- },
1331
- {
1332
- type: 'tableCell',
1333
- attrs: {},
1334
- content: [
1335
- {
1336
- type: 'paragraph',
1337
- content: [],
1338
- },
1339
- ],
1340
- },
1341
- {
1342
- type: 'tableCell',
1343
- attrs: {},
1344
- content: [
1345
- {
1346
- type: 'paragraph',
1347
- content: [],
1348
- },
1349
- ],
1350
- },
1351
- {
1352
- type: 'tableCell',
1353
- attrs: {},
1354
- content: [
1355
- {
1356
- type: 'paragraph',
1357
- content: [],
1358
- },
1359
- ],
1360
- },
1361
- ],
1362
- },
1363
- {
1364
- type: 'tableRow',
1365
- content: [
1366
- {
1367
- type: 'tableCell',
1368
- attrs: {},
1369
- content: [
1370
- {
1371
- type: 'paragraph',
1372
- content: [],
1373
- },
1374
- ],
1375
- },
1376
- {
1377
- type: 'tableCell',
1378
- attrs: {},
1379
- content: [
1380
- {
1381
- type: 'paragraph',
1382
- content: [],
1383
- },
1384
- ],
1385
- },
1386
- {
1387
- type: 'tableCell',
1388
- attrs: {},
1389
- content: [
1390
- {
1391
- type: 'paragraph',
1392
- content: [],
1393
- },
1394
- ],
1395
- },
1396
- {
1397
- type: 'tableCell',
1398
- attrs: {},
1399
- content: [
1400
- {
1401
- type: 'paragraph',
1402
- content: [],
1403
- },
1404
- ],
1405
- },
1406
- ],
1407
- },
1408
- {
1409
- type: 'tableRow',
1410
- content: [
1411
- {
1412
- type: 'tableCell',
1413
- attrs: {},
1414
- content: [
1415
- {
1416
- type: 'paragraph',
1417
- content: [],
1418
- },
1419
- ],
1420
- },
1421
- {
1422
- type: 'tableCell',
1423
- attrs: {},
1424
- content: [
1425
- {
1426
- type: 'paragraph',
1427
- content: [],
1428
- },
1429
- ],
1430
- },
1431
- {
1432
- type: 'tableCell',
1433
- attrs: {},
1434
- content: [
1435
- {
1436
- type: 'paragraph',
1437
- content: [],
1438
- },
1439
- ],
1440
- },
1441
- {
1442
- type: 'tableCell',
1443
- attrs: {},
1444
- content: [
1445
- {
1446
- type: 'paragraph',
1447
- content: [],
1448
- },
1449
- ],
1450
- },
1451
- ],
1452
- },
1453
- {
1454
- type: 'tableRow',
1455
- content: [
1456
- {
1457
- type: 'tableCell',
1458
- attrs: {},
1459
- content: [
1460
- {
1461
- type: 'paragraph',
1462
- content: [],
1463
- },
1464
- ],
1465
- },
1466
- {
1467
- type: 'tableCell',
1468
- attrs: {},
1469
- content: [
1470
- {
1471
- type: 'paragraph',
1472
- content: [],
1473
- },
1474
- ],
1475
- },
1476
- {
1477
- type: 'tableCell',
1478
- attrs: {},
1479
- content: [
1480
- {
1481
- type: 'paragraph',
1482
- content: [],
1483
- },
1484
- ],
1485
- },
1486
- {
1487
- type: 'tableCell',
1488
- attrs: {},
1489
- content: [
1490
- {
1491
- type: 'paragraph',
1492
- content: [],
1493
- },
1494
- ],
1495
- },
1496
- ],
1497
- },
1498
- {
1499
- type: 'tableRow',
1500
- content: [
1501
- {
1502
- type: 'tableCell',
1503
- attrs: {},
1504
- content: [
1505
- {
1506
- type: 'paragraph',
1507
- content: [],
1508
- },
1509
- ],
1510
- },
1511
- {
1512
- type: 'tableCell',
1513
- attrs: {},
1514
- content: [
1515
- {
1516
- type: 'paragraph',
1517
- content: [],
1518
- },
1519
- ],
1520
- },
1521
- {
1522
- type: 'tableCell',
1523
- attrs: {},
1524
- content: [
1525
- {
1526
- type: 'paragraph',
1527
- content: [],
1528
- },
1529
- ],
1530
- },
1531
- {
1532
- type: 'tableCell',
1533
- attrs: {},
1534
- content: [
1535
- {
1536
- type: 'paragraph',
1537
- content: [],
1538
- },
1539
- ],
1540
- },
1541
- ],
1542
- },
1543
- {
1544
- type: 'tableRow',
1545
- content: [
1546
- {
1547
- type: 'tableCell',
1548
- attrs: {},
1549
- content: [
1550
- {
1551
- type: 'paragraph',
1552
- content: [],
1553
- },
1554
- ],
1555
- },
1556
- {
1557
- type: 'tableCell',
1558
- attrs: {},
1559
- content: [
1560
- {
1561
- type: 'paragraph',
1562
- content: [],
1563
- },
1564
- ],
1565
- },
1566
- {
1567
- type: 'tableCell',
1568
- attrs: {},
1569
- content: [
1570
- {
1571
- type: 'paragraph',
1572
- content: [],
1573
- },
1574
- ],
1575
- },
1576
- {
1577
- type: 'tableCell',
1578
- attrs: {},
1579
- content: [
1580
- {
1581
- type: 'paragraph',
1582
- content: [],
1583
- },
1584
- ],
1585
- },
1586
- ],
1587
- },
1588
- {
1589
- type: 'tableRow',
1590
- content: [
1591
- {
1592
- type: 'tableCell',
1593
- attrs: {},
1594
- content: [
1595
- {
1596
- type: 'paragraph',
1597
- content: [],
1598
- },
1599
- ],
1600
- },
1601
- {
1602
- type: 'tableCell',
1603
- attrs: {},
1604
- content: [
1605
- {
1606
- type: 'paragraph',
1607
- content: [],
1608
- },
1609
- ],
1610
- },
1611
- {
1612
- type: 'tableCell',
1613
- attrs: {},
1614
- content: [
1615
- {
1616
- type: 'paragraph',
1617
- content: [],
1618
- },
1619
- ],
1620
- },
1621
- {
1622
- type: 'tableCell',
1623
- attrs: {},
1624
- content: [
1625
- {
1626
- type: 'paragraph',
1627
- content: [],
1628
- },
1629
- ],
1630
- },
1631
- ],
1632
- },
1633
- {
1634
- type: 'tableRow',
1635
- content: [
1636
- {
1637
- type: 'tableCell',
1638
- attrs: {},
1639
- content: [
1640
- {
1641
- type: 'paragraph',
1642
- content: [],
1643
- },
1644
- ],
1645
- },
1646
- {
1647
- type: 'tableCell',
1648
- attrs: {},
1649
- content: [
1650
- {
1651
- type: 'paragraph',
1652
- content: [],
1653
- },
1654
- ],
1655
- },
1656
- {
1657
- type: 'tableCell',
1658
- attrs: {},
1659
- content: [
1660
- {
1661
- type: 'paragraph',
1662
- content: [],
1663
- },
1664
- ],
1665
- },
1666
- {
1667
- type: 'tableCell',
1668
- attrs: {},
1669
- content: [
1670
- {
1671
- type: 'paragraph',
1672
- content: [],
1673
- },
1674
- ],
1675
- },
1676
- ],
1677
- },
1678
- {
1679
- type: 'tableRow',
1680
- content: [
1681
- {
1682
- type: 'tableCell',
1683
- attrs: {},
1684
- content: [
1685
- {
1686
- type: 'paragraph',
1687
- content: [],
1688
- },
1689
- ],
1690
- },
1691
- {
1692
- type: 'tableCell',
1693
- attrs: {},
1694
- content: [
1695
- {
1696
- type: 'paragraph',
1697
- content: [],
1698
- },
1699
- ],
1700
- },
1701
- {
1702
- type: 'tableCell',
1703
- attrs: {},
1704
- content: [
1705
- {
1706
- type: 'paragraph',
1707
- content: [],
1708
- },
1709
- ],
1710
- },
1711
- {
1712
- type: 'tableCell',
1713
- attrs: {},
1714
- content: [
1715
- {
1716
- type: 'paragraph',
1717
- content: [],
1718
- },
1719
- ],
1720
- },
1721
- ],
1722
- },
1723
- {
1724
- type: 'tableRow',
1725
- content: [
1726
- {
1727
- type: 'tableCell',
1728
- attrs: {},
1729
- content: [
1730
- {
1731
- type: 'paragraph',
1732
- content: [],
1733
- },
1734
- ],
1735
- },
1736
- {
1737
- type: 'tableCell',
1738
- attrs: {},
1739
- content: [
1740
- {
1741
- type: 'paragraph',
1742
- content: [],
1743
- },
1744
- ],
1745
- },
1746
- {
1747
- type: 'tableCell',
1748
- attrs: {},
1749
- content: [
1750
- {
1751
- type: 'paragraph',
1752
- content: [],
1753
- },
1754
- ],
1755
- },
1756
- {
1757
- type: 'tableCell',
1758
- attrs: {},
1759
- content: [
1760
- {
1761
- type: 'paragraph',
1762
- content: [],
1763
- },
1764
- ],
1765
- },
1766
- ],
1767
- },
1768
- {
1769
- type: 'tableRow',
1770
- content: [
1771
- {
1772
- type: 'tableCell',
1773
- attrs: {},
1774
- content: [
1775
- {
1776
- type: 'paragraph',
1777
- content: [],
1778
- },
1779
- ],
1780
- },
1781
- {
1782
- type: 'tableCell',
1783
- attrs: {},
1784
- content: [
1785
- {
1786
- type: 'paragraph',
1787
- content: [],
1788
- },
1789
- ],
1790
- },
1791
- {
1792
- type: 'tableCell',
1793
- attrs: {},
1794
- content: [
1795
- {
1796
- type: 'paragraph',
1797
- content: [],
1798
- },
1799
- ],
1800
- },
1801
- {
1802
- type: 'tableCell',
1803
- attrs: {},
1804
- content: [
1805
- {
1806
- type: 'paragraph',
1807
- content: [],
1808
- },
1809
- ],
1810
- },
1811
- ],
1812
- },
1813
- {
1814
- type: 'tableRow',
1815
- content: [
1816
- {
1817
- type: 'tableCell',
1818
- attrs: {},
1819
- content: [
1820
- {
1821
- type: 'paragraph',
1822
- content: [],
1823
- },
1824
- ],
1825
- },
1826
- {
1827
- type: 'tableCell',
1828
- attrs: {},
1829
- content: [
1830
- {
1831
- type: 'paragraph',
1832
- content: [],
1833
- },
1834
- ],
1835
- },
1836
- {
1837
- type: 'tableCell',
1838
- attrs: {},
1839
- content: [
1840
- {
1841
- type: 'paragraph',
1842
- content: [],
1843
- },
1844
- ],
1845
- },
1846
- {
1847
- type: 'tableCell',
1848
- attrs: {},
1849
- content: [
1850
- {
1851
- type: 'paragraph',
1852
- content: [],
1853
- },
1854
- ],
1855
- },
1856
- ],
1857
- },
1858
- {
1859
- type: 'tableRow',
1860
- content: [
1861
- {
1862
- type: 'tableCell',
1863
- attrs: {},
1864
- content: [
1865
- {
1866
- type: 'paragraph',
1867
- content: [],
1868
- },
1869
- ],
1870
- },
1871
- {
1872
- type: 'tableCell',
1873
- attrs: {},
1874
- content: [
1875
- {
1876
- type: 'paragraph',
1877
- content: [],
1878
- },
1879
- ],
1880
- },
1881
- {
1882
- type: 'tableCell',
1883
- attrs: {},
1884
- content: [
1885
- {
1886
- type: 'paragraph',
1887
- content: [],
1888
- },
1889
- ],
1890
- },
1891
- {
1892
- type: 'tableCell',
1893
- attrs: {},
1894
- content: [
1895
- {
1896
- type: 'paragraph',
1897
- content: [],
1898
- },
1899
- ],
1900
- },
1901
- ],
1902
- },
1903
- {
1904
- type: 'tableRow',
1905
- content: [
1906
- {
1907
- type: 'tableCell',
1908
- attrs: {},
1909
- content: [
1910
- {
1911
- type: 'paragraph',
1912
- content: [],
1913
- },
1914
- ],
1915
- },
1916
- {
1917
- type: 'tableCell',
1918
- attrs: {},
1919
- content: [
1920
- {
1921
- type: 'paragraph',
1922
- content: [],
1923
- },
1924
- ],
1925
- },
1926
- {
1927
- type: 'tableCell',
1928
- attrs: {},
1929
- content: [
1930
- {
1931
- type: 'paragraph',
1932
- content: [],
1933
- },
1934
- ],
1935
- },
1936
- {
1937
- type: 'tableCell',
1938
- attrs: {},
1939
- content: [
1940
- {
1941
- type: 'paragraph',
1942
- content: [],
1943
- },
1944
- ],
1945
- },
1946
- ],
1947
- },
1948
- {
1949
- type: 'tableRow',
1950
- content: [
1951
- {
1952
- type: 'tableCell',
1953
- attrs: {},
1954
- content: [
1955
- {
1956
- type: 'paragraph',
1957
- content: [],
1958
- },
1959
- ],
1960
- },
1961
- {
1962
- type: 'tableCell',
1963
- attrs: {},
1964
- content: [
1965
- {
1966
- type: 'paragraph',
1967
- content: [],
1968
- },
1969
- ],
1970
- },
1971
- {
1972
- type: 'tableCell',
1973
- attrs: {},
1974
- content: [
1975
- {
1976
- type: 'paragraph',
1977
- content: [],
1978
- },
1979
- ],
1980
- },
1981
- {
1982
- type: 'tableCell',
1983
- attrs: {},
1984
- content: [
1985
- {
1986
- type: 'paragraph',
1987
- content: [],
1988
- },
1989
- ],
1990
- },
1991
- ],
1992
- },
1993
- {
1994
- type: 'tableRow',
1995
- content: [
1996
- {
1997
- type: 'tableCell',
1998
- attrs: {},
1999
- content: [
2000
- {
2001
- type: 'paragraph',
2002
- content: [],
2003
- },
2004
- ],
2005
- },
2006
- {
2007
- type: 'tableCell',
2008
- attrs: {},
2009
- content: [
2010
- {
2011
- type: 'paragraph',
2012
- content: [],
2013
- },
2014
- ],
2015
- },
2016
- {
2017
- type: 'tableCell',
2018
- attrs: {},
2019
- content: [
2020
- {
2021
- type: 'paragraph',
2022
- content: [],
2023
- },
2024
- ],
2025
- },
2026
- {
2027
- type: 'tableCell',
2028
- attrs: {},
2029
- content: [
2030
- {
2031
- type: 'paragraph',
2032
- content: [],
2033
- },
2034
- ],
2035
- },
2036
- ],
2037
- },
2038
- {
2039
- type: 'tableRow',
2040
- content: [
2041
- {
2042
- type: 'tableCell',
2043
- attrs: {},
2044
- content: [
2045
- {
2046
- type: 'paragraph',
2047
- content: [],
2048
- },
2049
- ],
2050
- },
2051
- {
2052
- type: 'tableCell',
2053
- attrs: {},
2054
- content: [
2055
- {
2056
- type: 'paragraph',
2057
- content: [],
2058
- },
2059
- ],
2060
- },
2061
- {
2062
- type: 'tableCell',
2063
- attrs: {},
2064
- content: [
2065
- {
2066
- type: 'paragraph',
2067
- content: [],
2068
- },
2069
- ],
2070
- },
2071
- {
2072
- type: 'tableCell',
2073
- attrs: {},
2074
- content: [
2075
- {
2076
- type: 'paragraph',
2077
- content: [],
2078
- },
2079
- ],
2080
- },
2081
- ],
2082
- },
2083
- {
2084
- type: 'tableRow',
2085
- content: [
2086
- {
2087
- type: 'tableCell',
2088
- attrs: {},
2089
- content: [
2090
- {
2091
- type: 'paragraph',
2092
- content: [],
2093
- },
2094
- ],
2095
- },
2096
- {
2097
- type: 'tableCell',
2098
- attrs: {},
2099
- content: [
2100
- {
2101
- type: 'paragraph',
2102
- content: [],
2103
- },
2104
- ],
2105
- },
2106
- {
2107
- type: 'tableCell',
2108
- attrs: {},
2109
- content: [
2110
- {
2111
- type: 'paragraph',
2112
- content: [],
2113
- },
2114
- ],
2115
- },
2116
- {
2117
- type: 'tableCell',
2118
- attrs: {},
2119
- content: [
2120
- {
2121
- type: 'paragraph',
2122
- content: [],
2123
- },
2124
- ],
2125
- },
2126
- ],
2127
- },
2128
- {
2129
- type: 'tableRow',
2130
- content: [
2131
- {
2132
- type: 'tableCell',
2133
- attrs: {},
2134
- content: [
2135
- {
2136
- type: 'paragraph',
2137
- content: [],
2138
- },
2139
- ],
2140
- },
2141
- {
2142
- type: 'tableCell',
2143
- attrs: {},
2144
- content: [
2145
- {
2146
- type: 'paragraph',
2147
- content: [],
2148
- },
2149
- ],
2150
- },
2151
- {
2152
- type: 'tableCell',
2153
- attrs: {},
2154
- content: [
2155
- {
2156
- type: 'paragraph',
2157
- content: [],
2158
- },
2159
- ],
2160
- },
2161
- {
2162
- type: 'tableCell',
2163
- attrs: {},
2164
- content: [
2165
- {
2166
- type: 'paragraph',
2167
- content: [],
2168
- },
2169
- ],
2170
- },
2171
- ],
2172
- },
2173
- {
2174
- type: 'tableRow',
2175
- content: [
2176
- {
2177
- type: 'tableCell',
2178
- attrs: {},
2179
- content: [
2180
- {
2181
- type: 'paragraph',
2182
- content: [],
2183
- },
2184
- ],
2185
- },
2186
- {
2187
- type: 'tableCell',
2188
- attrs: {},
2189
- content: [
2190
- {
2191
- type: 'paragraph',
2192
- content: [],
2193
- },
2194
- ],
2195
- },
2196
- {
2197
- type: 'tableCell',
2198
- attrs: {},
2199
- content: [
2200
- {
2201
- type: 'paragraph',
2202
- content: [],
2203
- },
2204
- ],
2205
- },
2206
- {
2207
- type: 'tableCell',
2208
- attrs: {},
2209
- content: [
2210
- {
2211
- type: 'paragraph',
2212
- content: [],
2213
- },
2214
- ],
2215
- },
2216
- ],
2217
- },
2218
- {
2219
- type: 'tableRow',
2220
- content: [
2221
- {
2222
- type: 'tableCell',
2223
- attrs: {},
2224
- content: [
2225
- {
2226
- type: 'paragraph',
2227
- content: [],
2228
- },
2229
- ],
2230
- },
2231
- {
2232
- type: 'tableCell',
2233
- attrs: {},
2234
- content: [
2235
- {
2236
- type: 'paragraph',
2237
- content: [],
2238
- },
2239
- ],
2240
- },
2241
- {
2242
- type: 'tableCell',
2243
- attrs: {},
2244
- content: [
2245
- {
2246
- type: 'paragraph',
2247
- content: [],
2248
- },
2249
- ],
2250
- },
2251
- {
2252
- type: 'tableCell',
2253
- attrs: {},
2254
- content: [
2255
- {
2256
- type: 'paragraph',
2257
- content: [],
2258
- },
2259
- ],
2260
- },
2261
- ],
2262
- },
2263
- {
2264
- type: 'tableRow',
2265
- content: [
2266
- {
2267
- type: 'tableCell',
2268
- attrs: {},
2269
- content: [
2270
- {
2271
- type: 'paragraph',
2272
- content: [],
2273
- },
2274
- ],
2275
- },
2276
- {
2277
- type: 'tableCell',
2278
- attrs: {},
2279
- content: [
2280
- {
2281
- type: 'paragraph',
2282
- content: [],
2283
- },
2284
- ],
2285
- },
2286
- {
2287
- type: 'tableCell',
2288
- attrs: {},
2289
- content: [
2290
- {
2291
- type: 'paragraph',
2292
- content: [],
2293
- },
2294
- ],
2295
- },
2296
- {
2297
- type: 'tableCell',
2298
- attrs: {},
2299
- content: [
2300
- {
2301
- type: 'paragraph',
2302
- content: [],
2303
- },
2304
- ],
2305
- },
2306
- ],
2307
- },
2308
- ],
2309
- },
2310
- ],
2311
- };