@blocknote/core 0.24.2 → 0.25.0
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.
- package/dist/blocknote.cjs +12 -0
- package/dist/blocknote.cjs.map +1 -0
- package/dist/blocknote.js +4754 -3514
- package/dist/blocknote.js.map +1 -1
- package/dist/comments.cjs +2 -0
- package/dist/comments.cjs.map +1 -0
- package/dist/comments.js +593 -0
- package/dist/comments.js.map +1 -0
- package/dist/style.css +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/webpack-stats.json +1 -1
- package/package.json +39 -26
- package/src/api/blockManipulation/commands/insertBlocks/__snapshots__/insertBlocks.test.ts.snap +1022 -378
- package/src/api/blockManipulation/commands/mergeBlocks/__snapshots__/mergeBlocks.test.ts.snap +730 -270
- package/src/api/blockManipulation/commands/moveBlocks/__snapshots__/moveBlocks.test.ts.snap +3100 -1260
- package/src/api/blockManipulation/commands/removeBlocks/__snapshots__/removeBlocks.test.ts.snap +438 -162
- package/src/api/blockManipulation/commands/replaceBlocks/__snapshots__/replaceBlocks.test.ts.snap +1168 -432
- package/src/api/blockManipulation/commands/splitBlock/__snapshots__/splitBlock.test.ts.snap +930 -378
- package/src/api/blockManipulation/commands/updateBlock/__snapshots__/updateBlock.test.ts.snap +2485 -1015
- package/src/api/blockManipulation/commands/updateBlock/updateBlock.test.ts +28 -1
- package/src/api/blockManipulation/commands/updateBlock/updateBlock.ts +1 -1
- package/src/api/blockManipulation/selections/__snapshots__/selection.test.ts.snap +292 -108
- package/src/api/blockManipulation/setupTestEnv.ts +14 -1
- package/src/api/blockManipulation/tables/tables.test.ts +1987 -0
- package/src/api/blockManipulation/tables/tables.ts +887 -0
- package/src/api/clipboard/__snapshots__/external/pasteEndOfParagraph.html +66 -24
- package/src/api/clipboard/__snapshots__/external/pasteEndOfParagraphText.html +66 -24
- package/src/api/clipboard/__snapshots__/external/pasteImage.html +66 -24
- package/src/api/clipboard/__snapshots__/external/pasteParagraphInCustomBlock.html +66 -24
- package/src/api/clipboard/__snapshots__/external/pasteTable.html +132 -48
- package/src/api/clipboard/__snapshots__/external/pasteTableInExistingTable.html +136 -44
- package/src/api/clipboard/toClipboard/copyExtension.ts +2 -3
- package/src/api/exporters/html/__snapshots__/table/headerCols/external.html +1 -0
- package/src/api/exporters/html/__snapshots__/table/headerCols/internal.html +1 -0
- package/src/api/exporters/html/__snapshots__/table/headerRows/external.html +1 -0
- package/src/api/exporters/html/__snapshots__/table/headerRows/internal.html +1 -0
- package/src/api/exporters/html/__snapshots__/table/headersRows/external.html +1 -0
- package/src/api/exporters/html/__snapshots__/table/headersRows/internal.html +1 -0
- package/src/api/exporters/html/__snapshots__/table/mixedCellColors/external.html +1 -0
- package/src/api/exporters/html/__snapshots__/table/mixedCellColors/internal.html +1 -0
- package/src/api/exporters/html/__snapshots__/table/mixedRowspansAndColspans/external.html +1 -0
- package/src/api/exporters/html/__snapshots__/table/mixedRowspansAndColspans/internal.html +1 -0
- package/src/api/exporters/markdown/__snapshots__/table/headerCols/markdown.md +4 -0
- package/src/api/exporters/markdown/__snapshots__/table/headerRows/markdown.md +4 -0
- package/src/api/exporters/markdown/__snapshots__/table/mixedCellColors/markdown.md +5 -0
- package/src/api/exporters/markdown/__snapshots__/table/mixedRowspansAndColspans/markdown.md +5 -0
- package/src/api/nodeConversions/__snapshots__/nodeConversions.test.ts.snap +985 -20
- package/src/api/nodeConversions/blockToNode.ts +63 -20
- package/src/api/nodeConversions/nodeToBlock.ts +75 -13
- package/src/api/parsers/html/__snapshots__/parse-notion-html.json +145 -54
- package/src/api/testUtil/cases/defaultSchema.ts +782 -9
- package/src/api/testUtil/partialBlockTestUtil.ts +39 -4
- package/src/blocks/TableBlockContent/TableBlockContent.ts +11 -5
- package/src/blocks/defaultBlockTypeGuards.ts +8 -0
- package/src/comments/index.ts +9 -0
- package/src/comments/models/User.ts +8 -0
- package/src/comments/threadstore/DefaultThreadStoreAuth.ts +106 -0
- package/src/comments/threadstore/ThreadStore.ts +134 -0
- package/src/comments/threadstore/ThreadStoreAuth.ts +13 -0
- package/src/comments/threadstore/TipTapThreadStore.ts +292 -0
- package/src/comments/threadstore/yjs/RESTYjsThreadStore.ts +144 -0
- package/src/comments/threadstore/yjs/YjsThreadStore.test.ts +294 -0
- package/src/comments/threadstore/yjs/YjsThreadStore.ts +340 -0
- package/src/comments/threadstore/yjs/YjsThreadStoreBase.ts +48 -0
- package/src/comments/threadstore/yjs/yjsHelpers.ts +121 -0
- package/src/comments/types.ts +117 -0
- package/src/editor/Block.css +16 -8
- package/src/editor/BlockNoteEditor.ts +269 -92
- package/src/editor/BlockNoteExtensions.ts +24 -1
- package/src/editor/BlockNoteTipTapEditor.ts +5 -1
- package/src/editor/editor.css +17 -0
- package/src/extensions/BackgroundColor/BackgroundColorExtension.ts +1 -1
- package/src/extensions/Comments/CommentMark.ts +61 -0
- package/src/extensions/Comments/CommentsPlugin.ts +301 -0
- package/src/extensions/Comments/userstore/UserStore.ts +72 -0
- package/src/extensions/FormattingToolbar/FormattingToolbarPlugin.ts +9 -5
- package/src/extensions/LinkToolbar/LinkToolbarPlugin.ts +3 -3
- package/src/extensions/ShowSelection/ShowSelectionPlugin.ts +52 -0
- package/src/extensions/TableHandles/TableHandlesPlugin.ts +409 -57
- package/src/extensions/TextAlignment/TextAlignmentExtension.ts +2 -0
- package/src/extensions/TextColor/TextColorExtension.ts +1 -1
- package/src/i18n/locales/ar.ts +23 -0
- package/src/i18n/locales/de.ts +15 -0
- package/src/i18n/locales/en.ts +25 -1
- package/src/i18n/locales/es.ts +16 -1
- package/src/i18n/locales/fr.ts +23 -0
- package/src/i18n/locales/hr.ts +18 -0
- package/src/i18n/locales/is.ts +24 -1
- package/src/i18n/locales/it.ts +15 -0
- package/src/i18n/locales/ja.ts +23 -0
- package/src/i18n/locales/ko.ts +23 -0
- package/src/i18n/locales/nl.ts +23 -0
- package/src/i18n/locales/no.ts +23 -0
- package/src/i18n/locales/pl.ts +23 -0
- package/src/i18n/locales/pt.ts +23 -0
- package/src/i18n/locales/ru.ts +23 -0
- package/src/i18n/locales/uk.ts +23 -0
- package/src/i18n/locales/vi.ts +23 -0
- package/src/i18n/locales/zh.ts +23 -0
- package/src/index.ts +6 -4
- package/src/schema/blocks/types.ts +32 -2
- package/src/util/browser.ts +1 -1
- package/src/util/table.ts +107 -0
- package/types/src/api/blockManipulation/tables/tables.d.ts +343 -0
- package/types/src/api/blockManipulation/tables/tables.test.d.ts +1 -0
- package/types/src/api/clipboard/toClipboard/copyExtension.d.ts +1 -1
- package/types/src/blocks/TableBlockContent/TableBlockContent.d.ts +1 -2
- package/types/src/blocks/defaultBlockTypeGuards.d.ts +3 -0
- package/types/src/comments/index.d.ts +9 -0
- package/types/src/comments/models/User.d.ts +8 -0
- package/types/src/comments/threadstore/DefaultThreadStoreAuth.d.ts +47 -0
- package/types/src/comments/threadstore/ThreadStore.d.ts +121 -0
- package/types/src/comments/threadstore/ThreadStoreAuth.d.ts +12 -0
- package/types/src/comments/threadstore/TipTapThreadStore.d.ts +97 -0
- package/types/src/comments/threadstore/yjs/RESTYjsThreadStore.d.ts +83 -0
- package/types/src/comments/threadstore/yjs/YjsThreadStore.d.ts +79 -0
- package/types/src/comments/threadstore/yjs/YjsThreadStore.test.d.ts +1 -0
- package/types/src/comments/threadstore/yjs/YjsThreadStoreBase.d.ts +15 -0
- package/types/src/comments/threadstore/yjs/yjsHelpers.d.ts +13 -0
- package/types/src/comments/types.d.ts +109 -0
- package/types/src/editor/BlockNoteEditor.d.ts +146 -66
- package/types/src/editor/BlockNoteExtensions.d.ts +4 -0
- package/types/src/extensions/Collaboration/createCollaborationExtensions.d.ts +1 -1
- package/types/src/extensions/Comments/CommentMark.d.ts +2 -0
- package/types/src/extensions/Comments/CommentsPlugin.d.ts +49 -0
- package/types/src/extensions/Comments/userstore/UserStore.d.ts +31 -0
- package/types/src/extensions/ShowSelection/ShowSelectionPlugin.d.ts +15 -0
- package/types/src/extensions/TableHandles/TableHandlesPlugin.d.ts +66 -1
- package/types/src/i18n/locales/de.d.ts +15 -0
- package/types/src/i18n/locales/en.d.ts +20 -0
- package/types/src/i18n/locales/es.d.ts +15 -0
- package/types/src/i18n/locales/hr.d.ts +18 -0
- package/types/src/i18n/locales/it.d.ts +15 -0
- package/types/src/index.d.ts +5 -4
- package/types/src/pm-nodes/BlockContainer.d.ts +2 -2
- package/types/src/pm-nodes/BlockGroup.d.ts +2 -2
- package/types/src/schema/blocks/types.d.ts +23 -2
- package/types/src/util/browser.d.ts +1 -1
- package/types/src/util/table.d.ts +12 -0
- package/dist/blocknote.umd.cjs +0 -11
- package/dist/blocknote.umd.cjs.map +0 -1
|
@@ -263,80 +263,172 @@ exports[`Test moveBlocksDown > Basic 1`] = `
|
|
|
263
263
|
undefined,
|
|
264
264
|
undefined,
|
|
265
265
|
],
|
|
266
|
+
"headerCols": undefined,
|
|
267
|
+
"headerRows": undefined,
|
|
266
268
|
"rows": [
|
|
267
269
|
{
|
|
268
270
|
"cells": [
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
{
|
|
278
|
-
"
|
|
279
|
-
"
|
|
280
|
-
"
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
271
|
+
{
|
|
272
|
+
"content": [
|
|
273
|
+
{
|
|
274
|
+
"styles": {},
|
|
275
|
+
"text": "Cell 1",
|
|
276
|
+
"type": "text",
|
|
277
|
+
},
|
|
278
|
+
],
|
|
279
|
+
"props": {
|
|
280
|
+
"backgroundColor": "default",
|
|
281
|
+
"colspan": 1,
|
|
282
|
+
"rowspan": 1,
|
|
283
|
+
"textAlignment": "left",
|
|
284
|
+
"textColor": "default",
|
|
285
|
+
},
|
|
286
|
+
"type": "tableCell",
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
"content": [
|
|
290
|
+
{
|
|
291
|
+
"styles": {},
|
|
292
|
+
"text": "Cell 2",
|
|
293
|
+
"type": "text",
|
|
294
|
+
},
|
|
295
|
+
],
|
|
296
|
+
"props": {
|
|
297
|
+
"backgroundColor": "default",
|
|
298
|
+
"colspan": 1,
|
|
299
|
+
"rowspan": 1,
|
|
300
|
+
"textAlignment": "left",
|
|
301
|
+
"textColor": "default",
|
|
302
|
+
},
|
|
303
|
+
"type": "tableCell",
|
|
304
|
+
},
|
|
305
|
+
{
|
|
306
|
+
"content": [
|
|
307
|
+
{
|
|
308
|
+
"styles": {},
|
|
309
|
+
"text": "Cell 3",
|
|
310
|
+
"type": "text",
|
|
311
|
+
},
|
|
312
|
+
],
|
|
313
|
+
"props": {
|
|
314
|
+
"backgroundColor": "default",
|
|
315
|
+
"colspan": 1,
|
|
316
|
+
"rowspan": 1,
|
|
317
|
+
"textAlignment": "left",
|
|
318
|
+
"textColor": "default",
|
|
319
|
+
},
|
|
320
|
+
"type": "tableCell",
|
|
321
|
+
},
|
|
290
322
|
],
|
|
291
323
|
},
|
|
292
324
|
{
|
|
293
325
|
"cells": [
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
{
|
|
303
|
-
"
|
|
304
|
-
"
|
|
305
|
-
"
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
326
|
+
{
|
|
327
|
+
"content": [
|
|
328
|
+
{
|
|
329
|
+
"styles": {},
|
|
330
|
+
"text": "Cell 4",
|
|
331
|
+
"type": "text",
|
|
332
|
+
},
|
|
333
|
+
],
|
|
334
|
+
"props": {
|
|
335
|
+
"backgroundColor": "default",
|
|
336
|
+
"colspan": 1,
|
|
337
|
+
"rowspan": 1,
|
|
338
|
+
"textAlignment": "left",
|
|
339
|
+
"textColor": "default",
|
|
340
|
+
},
|
|
341
|
+
"type": "tableCell",
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
"content": [
|
|
345
|
+
{
|
|
346
|
+
"styles": {},
|
|
347
|
+
"text": "Cell 5",
|
|
348
|
+
"type": "text",
|
|
349
|
+
},
|
|
350
|
+
],
|
|
351
|
+
"props": {
|
|
352
|
+
"backgroundColor": "default",
|
|
353
|
+
"colspan": 1,
|
|
354
|
+
"rowspan": 1,
|
|
355
|
+
"textAlignment": "left",
|
|
356
|
+
"textColor": "default",
|
|
357
|
+
},
|
|
358
|
+
"type": "tableCell",
|
|
359
|
+
},
|
|
360
|
+
{
|
|
361
|
+
"content": [
|
|
362
|
+
{
|
|
363
|
+
"styles": {},
|
|
364
|
+
"text": "Cell 6",
|
|
365
|
+
"type": "text",
|
|
366
|
+
},
|
|
367
|
+
],
|
|
368
|
+
"props": {
|
|
369
|
+
"backgroundColor": "default",
|
|
370
|
+
"colspan": 1,
|
|
371
|
+
"rowspan": 1,
|
|
372
|
+
"textAlignment": "left",
|
|
373
|
+
"textColor": "default",
|
|
374
|
+
},
|
|
375
|
+
"type": "tableCell",
|
|
376
|
+
},
|
|
315
377
|
],
|
|
316
378
|
},
|
|
317
379
|
{
|
|
318
380
|
"cells": [
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
{
|
|
328
|
-
"
|
|
329
|
-
"
|
|
330
|
-
"
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
381
|
+
{
|
|
382
|
+
"content": [
|
|
383
|
+
{
|
|
384
|
+
"styles": {},
|
|
385
|
+
"text": "Cell 7",
|
|
386
|
+
"type": "text",
|
|
387
|
+
},
|
|
388
|
+
],
|
|
389
|
+
"props": {
|
|
390
|
+
"backgroundColor": "default",
|
|
391
|
+
"colspan": 1,
|
|
392
|
+
"rowspan": 1,
|
|
393
|
+
"textAlignment": "left",
|
|
394
|
+
"textColor": "default",
|
|
395
|
+
},
|
|
396
|
+
"type": "tableCell",
|
|
397
|
+
},
|
|
398
|
+
{
|
|
399
|
+
"content": [
|
|
400
|
+
{
|
|
401
|
+
"styles": {},
|
|
402
|
+
"text": "Cell 8",
|
|
403
|
+
"type": "text",
|
|
404
|
+
},
|
|
405
|
+
],
|
|
406
|
+
"props": {
|
|
407
|
+
"backgroundColor": "default",
|
|
408
|
+
"colspan": 1,
|
|
409
|
+
"rowspan": 1,
|
|
410
|
+
"textAlignment": "left",
|
|
411
|
+
"textColor": "default",
|
|
412
|
+
},
|
|
413
|
+
"type": "tableCell",
|
|
414
|
+
},
|
|
415
|
+
{
|
|
416
|
+
"content": [
|
|
417
|
+
{
|
|
418
|
+
"styles": {},
|
|
419
|
+
"text": "Cell 9",
|
|
420
|
+
"type": "text",
|
|
421
|
+
},
|
|
422
|
+
],
|
|
423
|
+
"props": {
|
|
424
|
+
"backgroundColor": "default",
|
|
425
|
+
"colspan": 1,
|
|
426
|
+
"rowspan": 1,
|
|
427
|
+
"textAlignment": "left",
|
|
428
|
+
"textColor": "default",
|
|
429
|
+
},
|
|
430
|
+
"type": "tableCell",
|
|
431
|
+
},
|
|
340
432
|
],
|
|
341
433
|
},
|
|
342
434
|
],
|
|
@@ -738,80 +830,172 @@ exports[`Test moveBlocksDown > Into children 1`] = `
|
|
|
738
830
|
undefined,
|
|
739
831
|
undefined,
|
|
740
832
|
],
|
|
833
|
+
"headerCols": undefined,
|
|
834
|
+
"headerRows": undefined,
|
|
741
835
|
"rows": [
|
|
742
836
|
{
|
|
743
837
|
"cells": [
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
{
|
|
753
|
-
"
|
|
754
|
-
"
|
|
755
|
-
"
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
838
|
+
{
|
|
839
|
+
"content": [
|
|
840
|
+
{
|
|
841
|
+
"styles": {},
|
|
842
|
+
"text": "Cell 1",
|
|
843
|
+
"type": "text",
|
|
844
|
+
},
|
|
845
|
+
],
|
|
846
|
+
"props": {
|
|
847
|
+
"backgroundColor": "default",
|
|
848
|
+
"colspan": 1,
|
|
849
|
+
"rowspan": 1,
|
|
850
|
+
"textAlignment": "left",
|
|
851
|
+
"textColor": "default",
|
|
852
|
+
},
|
|
853
|
+
"type": "tableCell",
|
|
854
|
+
},
|
|
855
|
+
{
|
|
856
|
+
"content": [
|
|
857
|
+
{
|
|
858
|
+
"styles": {},
|
|
859
|
+
"text": "Cell 2",
|
|
860
|
+
"type": "text",
|
|
861
|
+
},
|
|
862
|
+
],
|
|
863
|
+
"props": {
|
|
864
|
+
"backgroundColor": "default",
|
|
865
|
+
"colspan": 1,
|
|
866
|
+
"rowspan": 1,
|
|
867
|
+
"textAlignment": "left",
|
|
868
|
+
"textColor": "default",
|
|
869
|
+
},
|
|
870
|
+
"type": "tableCell",
|
|
871
|
+
},
|
|
872
|
+
{
|
|
873
|
+
"content": [
|
|
874
|
+
{
|
|
875
|
+
"styles": {},
|
|
876
|
+
"text": "Cell 3",
|
|
877
|
+
"type": "text",
|
|
878
|
+
},
|
|
879
|
+
],
|
|
880
|
+
"props": {
|
|
881
|
+
"backgroundColor": "default",
|
|
882
|
+
"colspan": 1,
|
|
883
|
+
"rowspan": 1,
|
|
884
|
+
"textAlignment": "left",
|
|
885
|
+
"textColor": "default",
|
|
886
|
+
},
|
|
887
|
+
"type": "tableCell",
|
|
888
|
+
},
|
|
765
889
|
],
|
|
766
890
|
},
|
|
767
891
|
{
|
|
768
892
|
"cells": [
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
{
|
|
778
|
-
"
|
|
779
|
-
"
|
|
780
|
-
"
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
893
|
+
{
|
|
894
|
+
"content": [
|
|
895
|
+
{
|
|
896
|
+
"styles": {},
|
|
897
|
+
"text": "Cell 4",
|
|
898
|
+
"type": "text",
|
|
899
|
+
},
|
|
900
|
+
],
|
|
901
|
+
"props": {
|
|
902
|
+
"backgroundColor": "default",
|
|
903
|
+
"colspan": 1,
|
|
904
|
+
"rowspan": 1,
|
|
905
|
+
"textAlignment": "left",
|
|
906
|
+
"textColor": "default",
|
|
907
|
+
},
|
|
908
|
+
"type": "tableCell",
|
|
909
|
+
},
|
|
910
|
+
{
|
|
911
|
+
"content": [
|
|
912
|
+
{
|
|
913
|
+
"styles": {},
|
|
914
|
+
"text": "Cell 5",
|
|
915
|
+
"type": "text",
|
|
916
|
+
},
|
|
917
|
+
],
|
|
918
|
+
"props": {
|
|
919
|
+
"backgroundColor": "default",
|
|
920
|
+
"colspan": 1,
|
|
921
|
+
"rowspan": 1,
|
|
922
|
+
"textAlignment": "left",
|
|
923
|
+
"textColor": "default",
|
|
924
|
+
},
|
|
925
|
+
"type": "tableCell",
|
|
926
|
+
},
|
|
927
|
+
{
|
|
928
|
+
"content": [
|
|
929
|
+
{
|
|
930
|
+
"styles": {},
|
|
931
|
+
"text": "Cell 6",
|
|
932
|
+
"type": "text",
|
|
933
|
+
},
|
|
934
|
+
],
|
|
935
|
+
"props": {
|
|
936
|
+
"backgroundColor": "default",
|
|
937
|
+
"colspan": 1,
|
|
938
|
+
"rowspan": 1,
|
|
939
|
+
"textAlignment": "left",
|
|
940
|
+
"textColor": "default",
|
|
941
|
+
},
|
|
942
|
+
"type": "tableCell",
|
|
943
|
+
},
|
|
790
944
|
],
|
|
791
945
|
},
|
|
792
946
|
{
|
|
793
947
|
"cells": [
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
{
|
|
803
|
-
"
|
|
804
|
-
"
|
|
805
|
-
"
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
948
|
+
{
|
|
949
|
+
"content": [
|
|
950
|
+
{
|
|
951
|
+
"styles": {},
|
|
952
|
+
"text": "Cell 7",
|
|
953
|
+
"type": "text",
|
|
954
|
+
},
|
|
955
|
+
],
|
|
956
|
+
"props": {
|
|
957
|
+
"backgroundColor": "default",
|
|
958
|
+
"colspan": 1,
|
|
959
|
+
"rowspan": 1,
|
|
960
|
+
"textAlignment": "left",
|
|
961
|
+
"textColor": "default",
|
|
962
|
+
},
|
|
963
|
+
"type": "tableCell",
|
|
964
|
+
},
|
|
965
|
+
{
|
|
966
|
+
"content": [
|
|
967
|
+
{
|
|
968
|
+
"styles": {},
|
|
969
|
+
"text": "Cell 8",
|
|
970
|
+
"type": "text",
|
|
971
|
+
},
|
|
972
|
+
],
|
|
973
|
+
"props": {
|
|
974
|
+
"backgroundColor": "default",
|
|
975
|
+
"colspan": 1,
|
|
976
|
+
"rowspan": 1,
|
|
977
|
+
"textAlignment": "left",
|
|
978
|
+
"textColor": "default",
|
|
979
|
+
},
|
|
980
|
+
"type": "tableCell",
|
|
981
|
+
},
|
|
982
|
+
{
|
|
983
|
+
"content": [
|
|
984
|
+
{
|
|
985
|
+
"styles": {},
|
|
986
|
+
"text": "Cell 9",
|
|
987
|
+
"type": "text",
|
|
988
|
+
},
|
|
989
|
+
],
|
|
990
|
+
"props": {
|
|
991
|
+
"backgroundColor": "default",
|
|
992
|
+
"colspan": 1,
|
|
993
|
+
"rowspan": 1,
|
|
994
|
+
"textAlignment": "left",
|
|
995
|
+
"textColor": "default",
|
|
996
|
+
},
|
|
997
|
+
"type": "tableCell",
|
|
998
|
+
},
|
|
815
999
|
],
|
|
816
1000
|
},
|
|
817
1001
|
],
|
|
@@ -1213,80 +1397,172 @@ exports[`Test moveBlocksDown > Last block 1`] = `
|
|
|
1213
1397
|
undefined,
|
|
1214
1398
|
undefined,
|
|
1215
1399
|
],
|
|
1400
|
+
"headerCols": undefined,
|
|
1401
|
+
"headerRows": undefined,
|
|
1216
1402
|
"rows": [
|
|
1217
1403
|
{
|
|
1218
1404
|
"cells": [
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
{
|
|
1228
|
-
"
|
|
1229
|
-
"
|
|
1230
|
-
"
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1405
|
+
{
|
|
1406
|
+
"content": [
|
|
1407
|
+
{
|
|
1408
|
+
"styles": {},
|
|
1409
|
+
"text": "Cell 1",
|
|
1410
|
+
"type": "text",
|
|
1411
|
+
},
|
|
1412
|
+
],
|
|
1413
|
+
"props": {
|
|
1414
|
+
"backgroundColor": "default",
|
|
1415
|
+
"colspan": 1,
|
|
1416
|
+
"rowspan": 1,
|
|
1417
|
+
"textAlignment": "left",
|
|
1418
|
+
"textColor": "default",
|
|
1419
|
+
},
|
|
1420
|
+
"type": "tableCell",
|
|
1421
|
+
},
|
|
1422
|
+
{
|
|
1423
|
+
"content": [
|
|
1424
|
+
{
|
|
1425
|
+
"styles": {},
|
|
1426
|
+
"text": "Cell 2",
|
|
1427
|
+
"type": "text",
|
|
1428
|
+
},
|
|
1429
|
+
],
|
|
1430
|
+
"props": {
|
|
1431
|
+
"backgroundColor": "default",
|
|
1432
|
+
"colspan": 1,
|
|
1433
|
+
"rowspan": 1,
|
|
1434
|
+
"textAlignment": "left",
|
|
1435
|
+
"textColor": "default",
|
|
1436
|
+
},
|
|
1437
|
+
"type": "tableCell",
|
|
1438
|
+
},
|
|
1439
|
+
{
|
|
1440
|
+
"content": [
|
|
1441
|
+
{
|
|
1442
|
+
"styles": {},
|
|
1443
|
+
"text": "Cell 3",
|
|
1444
|
+
"type": "text",
|
|
1445
|
+
},
|
|
1446
|
+
],
|
|
1447
|
+
"props": {
|
|
1448
|
+
"backgroundColor": "default",
|
|
1449
|
+
"colspan": 1,
|
|
1450
|
+
"rowspan": 1,
|
|
1451
|
+
"textAlignment": "left",
|
|
1452
|
+
"textColor": "default",
|
|
1453
|
+
},
|
|
1454
|
+
"type": "tableCell",
|
|
1455
|
+
},
|
|
1240
1456
|
],
|
|
1241
1457
|
},
|
|
1242
1458
|
{
|
|
1243
1459
|
"cells": [
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
{
|
|
1253
|
-
"
|
|
1254
|
-
"
|
|
1255
|
-
"
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1460
|
+
{
|
|
1461
|
+
"content": [
|
|
1462
|
+
{
|
|
1463
|
+
"styles": {},
|
|
1464
|
+
"text": "Cell 4",
|
|
1465
|
+
"type": "text",
|
|
1466
|
+
},
|
|
1467
|
+
],
|
|
1468
|
+
"props": {
|
|
1469
|
+
"backgroundColor": "default",
|
|
1470
|
+
"colspan": 1,
|
|
1471
|
+
"rowspan": 1,
|
|
1472
|
+
"textAlignment": "left",
|
|
1473
|
+
"textColor": "default",
|
|
1474
|
+
},
|
|
1475
|
+
"type": "tableCell",
|
|
1476
|
+
},
|
|
1477
|
+
{
|
|
1478
|
+
"content": [
|
|
1479
|
+
{
|
|
1480
|
+
"styles": {},
|
|
1481
|
+
"text": "Cell 5",
|
|
1482
|
+
"type": "text",
|
|
1483
|
+
},
|
|
1484
|
+
],
|
|
1485
|
+
"props": {
|
|
1486
|
+
"backgroundColor": "default",
|
|
1487
|
+
"colspan": 1,
|
|
1488
|
+
"rowspan": 1,
|
|
1489
|
+
"textAlignment": "left",
|
|
1490
|
+
"textColor": "default",
|
|
1491
|
+
},
|
|
1492
|
+
"type": "tableCell",
|
|
1493
|
+
},
|
|
1494
|
+
{
|
|
1495
|
+
"content": [
|
|
1496
|
+
{
|
|
1497
|
+
"styles": {},
|
|
1498
|
+
"text": "Cell 6",
|
|
1499
|
+
"type": "text",
|
|
1500
|
+
},
|
|
1501
|
+
],
|
|
1502
|
+
"props": {
|
|
1503
|
+
"backgroundColor": "default",
|
|
1504
|
+
"colspan": 1,
|
|
1505
|
+
"rowspan": 1,
|
|
1506
|
+
"textAlignment": "left",
|
|
1507
|
+
"textColor": "default",
|
|
1508
|
+
},
|
|
1509
|
+
"type": "tableCell",
|
|
1510
|
+
},
|
|
1265
1511
|
],
|
|
1266
1512
|
},
|
|
1267
1513
|
{
|
|
1268
1514
|
"cells": [
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
{
|
|
1278
|
-
"
|
|
1279
|
-
"
|
|
1280
|
-
"
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1515
|
+
{
|
|
1516
|
+
"content": [
|
|
1517
|
+
{
|
|
1518
|
+
"styles": {},
|
|
1519
|
+
"text": "Cell 7",
|
|
1520
|
+
"type": "text",
|
|
1521
|
+
},
|
|
1522
|
+
],
|
|
1523
|
+
"props": {
|
|
1524
|
+
"backgroundColor": "default",
|
|
1525
|
+
"colspan": 1,
|
|
1526
|
+
"rowspan": 1,
|
|
1527
|
+
"textAlignment": "left",
|
|
1528
|
+
"textColor": "default",
|
|
1529
|
+
},
|
|
1530
|
+
"type": "tableCell",
|
|
1531
|
+
},
|
|
1532
|
+
{
|
|
1533
|
+
"content": [
|
|
1534
|
+
{
|
|
1535
|
+
"styles": {},
|
|
1536
|
+
"text": "Cell 8",
|
|
1537
|
+
"type": "text",
|
|
1538
|
+
},
|
|
1539
|
+
],
|
|
1540
|
+
"props": {
|
|
1541
|
+
"backgroundColor": "default",
|
|
1542
|
+
"colspan": 1,
|
|
1543
|
+
"rowspan": 1,
|
|
1544
|
+
"textAlignment": "left",
|
|
1545
|
+
"textColor": "default",
|
|
1546
|
+
},
|
|
1547
|
+
"type": "tableCell",
|
|
1548
|
+
},
|
|
1549
|
+
{
|
|
1550
|
+
"content": [
|
|
1551
|
+
{
|
|
1552
|
+
"styles": {},
|
|
1553
|
+
"text": "Cell 9",
|
|
1554
|
+
"type": "text",
|
|
1555
|
+
},
|
|
1556
|
+
],
|
|
1557
|
+
"props": {
|
|
1558
|
+
"backgroundColor": "default",
|
|
1559
|
+
"colspan": 1,
|
|
1560
|
+
"rowspan": 1,
|
|
1561
|
+
"textAlignment": "left",
|
|
1562
|
+
"textColor": "default",
|
|
1563
|
+
},
|
|
1564
|
+
"type": "tableCell",
|
|
1565
|
+
},
|
|
1290
1566
|
],
|
|
1291
1567
|
},
|
|
1292
1568
|
],
|
|
@@ -1688,80 +1964,172 @@ exports[`Test moveBlocksDown > Multiple blocks 1`] = `
|
|
|
1688
1964
|
undefined,
|
|
1689
1965
|
undefined,
|
|
1690
1966
|
],
|
|
1967
|
+
"headerCols": undefined,
|
|
1968
|
+
"headerRows": undefined,
|
|
1691
1969
|
"rows": [
|
|
1692
1970
|
{
|
|
1693
1971
|
"cells": [
|
|
1694
|
-
|
|
1695
|
-
|
|
1696
|
-
|
|
1697
|
-
|
|
1698
|
-
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
{
|
|
1703
|
-
"
|
|
1704
|
-
"
|
|
1705
|
-
"
|
|
1706
|
-
|
|
1707
|
-
|
|
1708
|
-
|
|
1709
|
-
|
|
1710
|
-
|
|
1711
|
-
|
|
1712
|
-
|
|
1713
|
-
|
|
1714
|
-
|
|
1972
|
+
{
|
|
1973
|
+
"content": [
|
|
1974
|
+
{
|
|
1975
|
+
"styles": {},
|
|
1976
|
+
"text": "Cell 1",
|
|
1977
|
+
"type": "text",
|
|
1978
|
+
},
|
|
1979
|
+
],
|
|
1980
|
+
"props": {
|
|
1981
|
+
"backgroundColor": "default",
|
|
1982
|
+
"colspan": 1,
|
|
1983
|
+
"rowspan": 1,
|
|
1984
|
+
"textAlignment": "left",
|
|
1985
|
+
"textColor": "default",
|
|
1986
|
+
},
|
|
1987
|
+
"type": "tableCell",
|
|
1988
|
+
},
|
|
1989
|
+
{
|
|
1990
|
+
"content": [
|
|
1991
|
+
{
|
|
1992
|
+
"styles": {},
|
|
1993
|
+
"text": "Cell 2",
|
|
1994
|
+
"type": "text",
|
|
1995
|
+
},
|
|
1996
|
+
],
|
|
1997
|
+
"props": {
|
|
1998
|
+
"backgroundColor": "default",
|
|
1999
|
+
"colspan": 1,
|
|
2000
|
+
"rowspan": 1,
|
|
2001
|
+
"textAlignment": "left",
|
|
2002
|
+
"textColor": "default",
|
|
2003
|
+
},
|
|
2004
|
+
"type": "tableCell",
|
|
2005
|
+
},
|
|
2006
|
+
{
|
|
2007
|
+
"content": [
|
|
2008
|
+
{
|
|
2009
|
+
"styles": {},
|
|
2010
|
+
"text": "Cell 3",
|
|
2011
|
+
"type": "text",
|
|
2012
|
+
},
|
|
2013
|
+
],
|
|
2014
|
+
"props": {
|
|
2015
|
+
"backgroundColor": "default",
|
|
2016
|
+
"colspan": 1,
|
|
2017
|
+
"rowspan": 1,
|
|
2018
|
+
"textAlignment": "left",
|
|
2019
|
+
"textColor": "default",
|
|
2020
|
+
},
|
|
2021
|
+
"type": "tableCell",
|
|
2022
|
+
},
|
|
1715
2023
|
],
|
|
1716
2024
|
},
|
|
1717
2025
|
{
|
|
1718
2026
|
"cells": [
|
|
1719
|
-
|
|
1720
|
-
|
|
1721
|
-
|
|
1722
|
-
|
|
1723
|
-
|
|
1724
|
-
|
|
1725
|
-
|
|
1726
|
-
|
|
1727
|
-
{
|
|
1728
|
-
"
|
|
1729
|
-
"
|
|
1730
|
-
"
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
|
|
1736
|
-
|
|
1737
|
-
|
|
1738
|
-
|
|
1739
|
-
|
|
2027
|
+
{
|
|
2028
|
+
"content": [
|
|
2029
|
+
{
|
|
2030
|
+
"styles": {},
|
|
2031
|
+
"text": "Cell 4",
|
|
2032
|
+
"type": "text",
|
|
2033
|
+
},
|
|
2034
|
+
],
|
|
2035
|
+
"props": {
|
|
2036
|
+
"backgroundColor": "default",
|
|
2037
|
+
"colspan": 1,
|
|
2038
|
+
"rowspan": 1,
|
|
2039
|
+
"textAlignment": "left",
|
|
2040
|
+
"textColor": "default",
|
|
2041
|
+
},
|
|
2042
|
+
"type": "tableCell",
|
|
2043
|
+
},
|
|
2044
|
+
{
|
|
2045
|
+
"content": [
|
|
2046
|
+
{
|
|
2047
|
+
"styles": {},
|
|
2048
|
+
"text": "Cell 5",
|
|
2049
|
+
"type": "text",
|
|
2050
|
+
},
|
|
2051
|
+
],
|
|
2052
|
+
"props": {
|
|
2053
|
+
"backgroundColor": "default",
|
|
2054
|
+
"colspan": 1,
|
|
2055
|
+
"rowspan": 1,
|
|
2056
|
+
"textAlignment": "left",
|
|
2057
|
+
"textColor": "default",
|
|
2058
|
+
},
|
|
2059
|
+
"type": "tableCell",
|
|
2060
|
+
},
|
|
2061
|
+
{
|
|
2062
|
+
"content": [
|
|
2063
|
+
{
|
|
2064
|
+
"styles": {},
|
|
2065
|
+
"text": "Cell 6",
|
|
2066
|
+
"type": "text",
|
|
2067
|
+
},
|
|
2068
|
+
],
|
|
2069
|
+
"props": {
|
|
2070
|
+
"backgroundColor": "default",
|
|
2071
|
+
"colspan": 1,
|
|
2072
|
+
"rowspan": 1,
|
|
2073
|
+
"textAlignment": "left",
|
|
2074
|
+
"textColor": "default",
|
|
2075
|
+
},
|
|
2076
|
+
"type": "tableCell",
|
|
2077
|
+
},
|
|
1740
2078
|
],
|
|
1741
2079
|
},
|
|
1742
2080
|
{
|
|
1743
2081
|
"cells": [
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
|
|
1751
|
-
|
|
1752
|
-
{
|
|
1753
|
-
"
|
|
1754
|
-
"
|
|
1755
|
-
"
|
|
1756
|
-
|
|
1757
|
-
|
|
1758
|
-
|
|
1759
|
-
|
|
1760
|
-
|
|
1761
|
-
|
|
1762
|
-
|
|
1763
|
-
|
|
1764
|
-
|
|
2082
|
+
{
|
|
2083
|
+
"content": [
|
|
2084
|
+
{
|
|
2085
|
+
"styles": {},
|
|
2086
|
+
"text": "Cell 7",
|
|
2087
|
+
"type": "text",
|
|
2088
|
+
},
|
|
2089
|
+
],
|
|
2090
|
+
"props": {
|
|
2091
|
+
"backgroundColor": "default",
|
|
2092
|
+
"colspan": 1,
|
|
2093
|
+
"rowspan": 1,
|
|
2094
|
+
"textAlignment": "left",
|
|
2095
|
+
"textColor": "default",
|
|
2096
|
+
},
|
|
2097
|
+
"type": "tableCell",
|
|
2098
|
+
},
|
|
2099
|
+
{
|
|
2100
|
+
"content": [
|
|
2101
|
+
{
|
|
2102
|
+
"styles": {},
|
|
2103
|
+
"text": "Cell 8",
|
|
2104
|
+
"type": "text",
|
|
2105
|
+
},
|
|
2106
|
+
],
|
|
2107
|
+
"props": {
|
|
2108
|
+
"backgroundColor": "default",
|
|
2109
|
+
"colspan": 1,
|
|
2110
|
+
"rowspan": 1,
|
|
2111
|
+
"textAlignment": "left",
|
|
2112
|
+
"textColor": "default",
|
|
2113
|
+
},
|
|
2114
|
+
"type": "tableCell",
|
|
2115
|
+
},
|
|
2116
|
+
{
|
|
2117
|
+
"content": [
|
|
2118
|
+
{
|
|
2119
|
+
"styles": {},
|
|
2120
|
+
"text": "Cell 9",
|
|
2121
|
+
"type": "text",
|
|
2122
|
+
},
|
|
2123
|
+
],
|
|
2124
|
+
"props": {
|
|
2125
|
+
"backgroundColor": "default",
|
|
2126
|
+
"colspan": 1,
|
|
2127
|
+
"rowspan": 1,
|
|
2128
|
+
"textAlignment": "left",
|
|
2129
|
+
"textColor": "default",
|
|
2130
|
+
},
|
|
2131
|
+
"type": "tableCell",
|
|
2132
|
+
},
|
|
1765
2133
|
],
|
|
1766
2134
|
},
|
|
1767
2135
|
],
|
|
@@ -2163,80 +2531,172 @@ exports[`Test moveBlocksDown > Multiple blocks ending in block with children 1`]
|
|
|
2163
2531
|
undefined,
|
|
2164
2532
|
undefined,
|
|
2165
2533
|
],
|
|
2534
|
+
"headerCols": undefined,
|
|
2535
|
+
"headerRows": undefined,
|
|
2166
2536
|
"rows": [
|
|
2167
2537
|
{
|
|
2168
2538
|
"cells": [
|
|
2169
|
-
|
|
2170
|
-
|
|
2171
|
-
|
|
2172
|
-
|
|
2173
|
-
|
|
2174
|
-
|
|
2175
|
-
|
|
2176
|
-
|
|
2177
|
-
{
|
|
2178
|
-
"
|
|
2179
|
-
"
|
|
2180
|
-
"
|
|
2181
|
-
|
|
2182
|
-
|
|
2183
|
-
|
|
2184
|
-
|
|
2185
|
-
|
|
2186
|
-
|
|
2187
|
-
|
|
2188
|
-
|
|
2189
|
-
|
|
2539
|
+
{
|
|
2540
|
+
"content": [
|
|
2541
|
+
{
|
|
2542
|
+
"styles": {},
|
|
2543
|
+
"text": "Cell 1",
|
|
2544
|
+
"type": "text",
|
|
2545
|
+
},
|
|
2546
|
+
],
|
|
2547
|
+
"props": {
|
|
2548
|
+
"backgroundColor": "default",
|
|
2549
|
+
"colspan": 1,
|
|
2550
|
+
"rowspan": 1,
|
|
2551
|
+
"textAlignment": "left",
|
|
2552
|
+
"textColor": "default",
|
|
2553
|
+
},
|
|
2554
|
+
"type": "tableCell",
|
|
2555
|
+
},
|
|
2556
|
+
{
|
|
2557
|
+
"content": [
|
|
2558
|
+
{
|
|
2559
|
+
"styles": {},
|
|
2560
|
+
"text": "Cell 2",
|
|
2561
|
+
"type": "text",
|
|
2562
|
+
},
|
|
2563
|
+
],
|
|
2564
|
+
"props": {
|
|
2565
|
+
"backgroundColor": "default",
|
|
2566
|
+
"colspan": 1,
|
|
2567
|
+
"rowspan": 1,
|
|
2568
|
+
"textAlignment": "left",
|
|
2569
|
+
"textColor": "default",
|
|
2570
|
+
},
|
|
2571
|
+
"type": "tableCell",
|
|
2572
|
+
},
|
|
2573
|
+
{
|
|
2574
|
+
"content": [
|
|
2575
|
+
{
|
|
2576
|
+
"styles": {},
|
|
2577
|
+
"text": "Cell 3",
|
|
2578
|
+
"type": "text",
|
|
2579
|
+
},
|
|
2580
|
+
],
|
|
2581
|
+
"props": {
|
|
2582
|
+
"backgroundColor": "default",
|
|
2583
|
+
"colspan": 1,
|
|
2584
|
+
"rowspan": 1,
|
|
2585
|
+
"textAlignment": "left",
|
|
2586
|
+
"textColor": "default",
|
|
2587
|
+
},
|
|
2588
|
+
"type": "tableCell",
|
|
2589
|
+
},
|
|
2190
2590
|
],
|
|
2191
2591
|
},
|
|
2192
2592
|
{
|
|
2193
2593
|
"cells": [
|
|
2194
|
-
|
|
2195
|
-
|
|
2196
|
-
|
|
2197
|
-
|
|
2198
|
-
|
|
2199
|
-
|
|
2200
|
-
|
|
2201
|
-
|
|
2202
|
-
{
|
|
2203
|
-
"
|
|
2204
|
-
"
|
|
2205
|
-
"
|
|
2206
|
-
|
|
2207
|
-
|
|
2208
|
-
|
|
2209
|
-
|
|
2210
|
-
|
|
2211
|
-
|
|
2212
|
-
|
|
2213
|
-
|
|
2214
|
-
|
|
2594
|
+
{
|
|
2595
|
+
"content": [
|
|
2596
|
+
{
|
|
2597
|
+
"styles": {},
|
|
2598
|
+
"text": "Cell 4",
|
|
2599
|
+
"type": "text",
|
|
2600
|
+
},
|
|
2601
|
+
],
|
|
2602
|
+
"props": {
|
|
2603
|
+
"backgroundColor": "default",
|
|
2604
|
+
"colspan": 1,
|
|
2605
|
+
"rowspan": 1,
|
|
2606
|
+
"textAlignment": "left",
|
|
2607
|
+
"textColor": "default",
|
|
2608
|
+
},
|
|
2609
|
+
"type": "tableCell",
|
|
2610
|
+
},
|
|
2611
|
+
{
|
|
2612
|
+
"content": [
|
|
2613
|
+
{
|
|
2614
|
+
"styles": {},
|
|
2615
|
+
"text": "Cell 5",
|
|
2616
|
+
"type": "text",
|
|
2617
|
+
},
|
|
2618
|
+
],
|
|
2619
|
+
"props": {
|
|
2620
|
+
"backgroundColor": "default",
|
|
2621
|
+
"colspan": 1,
|
|
2622
|
+
"rowspan": 1,
|
|
2623
|
+
"textAlignment": "left",
|
|
2624
|
+
"textColor": "default",
|
|
2625
|
+
},
|
|
2626
|
+
"type": "tableCell",
|
|
2627
|
+
},
|
|
2628
|
+
{
|
|
2629
|
+
"content": [
|
|
2630
|
+
{
|
|
2631
|
+
"styles": {},
|
|
2632
|
+
"text": "Cell 6",
|
|
2633
|
+
"type": "text",
|
|
2634
|
+
},
|
|
2635
|
+
],
|
|
2636
|
+
"props": {
|
|
2637
|
+
"backgroundColor": "default",
|
|
2638
|
+
"colspan": 1,
|
|
2639
|
+
"rowspan": 1,
|
|
2640
|
+
"textAlignment": "left",
|
|
2641
|
+
"textColor": "default",
|
|
2642
|
+
},
|
|
2643
|
+
"type": "tableCell",
|
|
2644
|
+
},
|
|
2215
2645
|
],
|
|
2216
2646
|
},
|
|
2217
2647
|
{
|
|
2218
2648
|
"cells": [
|
|
2219
|
-
|
|
2220
|
-
|
|
2221
|
-
|
|
2222
|
-
|
|
2223
|
-
|
|
2224
|
-
|
|
2225
|
-
|
|
2226
|
-
|
|
2227
|
-
{
|
|
2228
|
-
"
|
|
2229
|
-
"
|
|
2230
|
-
"
|
|
2231
|
-
|
|
2232
|
-
|
|
2233
|
-
|
|
2234
|
-
|
|
2235
|
-
|
|
2236
|
-
|
|
2237
|
-
|
|
2238
|
-
|
|
2239
|
-
|
|
2649
|
+
{
|
|
2650
|
+
"content": [
|
|
2651
|
+
{
|
|
2652
|
+
"styles": {},
|
|
2653
|
+
"text": "Cell 7",
|
|
2654
|
+
"type": "text",
|
|
2655
|
+
},
|
|
2656
|
+
],
|
|
2657
|
+
"props": {
|
|
2658
|
+
"backgroundColor": "default",
|
|
2659
|
+
"colspan": 1,
|
|
2660
|
+
"rowspan": 1,
|
|
2661
|
+
"textAlignment": "left",
|
|
2662
|
+
"textColor": "default",
|
|
2663
|
+
},
|
|
2664
|
+
"type": "tableCell",
|
|
2665
|
+
},
|
|
2666
|
+
{
|
|
2667
|
+
"content": [
|
|
2668
|
+
{
|
|
2669
|
+
"styles": {},
|
|
2670
|
+
"text": "Cell 8",
|
|
2671
|
+
"type": "text",
|
|
2672
|
+
},
|
|
2673
|
+
],
|
|
2674
|
+
"props": {
|
|
2675
|
+
"backgroundColor": "default",
|
|
2676
|
+
"colspan": 1,
|
|
2677
|
+
"rowspan": 1,
|
|
2678
|
+
"textAlignment": "left",
|
|
2679
|
+
"textColor": "default",
|
|
2680
|
+
},
|
|
2681
|
+
"type": "tableCell",
|
|
2682
|
+
},
|
|
2683
|
+
{
|
|
2684
|
+
"content": [
|
|
2685
|
+
{
|
|
2686
|
+
"styles": {},
|
|
2687
|
+
"text": "Cell 9",
|
|
2688
|
+
"type": "text",
|
|
2689
|
+
},
|
|
2690
|
+
],
|
|
2691
|
+
"props": {
|
|
2692
|
+
"backgroundColor": "default",
|
|
2693
|
+
"colspan": 1,
|
|
2694
|
+
"rowspan": 1,
|
|
2695
|
+
"textAlignment": "left",
|
|
2696
|
+
"textColor": "default",
|
|
2697
|
+
},
|
|
2698
|
+
"type": "tableCell",
|
|
2699
|
+
},
|
|
2240
2700
|
],
|
|
2241
2701
|
},
|
|
2242
2702
|
],
|
|
@@ -2638,80 +3098,172 @@ exports[`Test moveBlocksDown > Multiple blocks ending in nested block 1`] = `
|
|
|
2638
3098
|
undefined,
|
|
2639
3099
|
undefined,
|
|
2640
3100
|
],
|
|
3101
|
+
"headerCols": undefined,
|
|
3102
|
+
"headerRows": undefined,
|
|
2641
3103
|
"rows": [
|
|
2642
3104
|
{
|
|
2643
3105
|
"cells": [
|
|
2644
|
-
|
|
2645
|
-
|
|
2646
|
-
|
|
2647
|
-
|
|
2648
|
-
|
|
2649
|
-
|
|
2650
|
-
|
|
2651
|
-
|
|
2652
|
-
{
|
|
2653
|
-
"
|
|
2654
|
-
"
|
|
2655
|
-
"
|
|
2656
|
-
|
|
2657
|
-
|
|
2658
|
-
|
|
2659
|
-
|
|
2660
|
-
|
|
2661
|
-
|
|
2662
|
-
|
|
2663
|
-
|
|
2664
|
-
|
|
3106
|
+
{
|
|
3107
|
+
"content": [
|
|
3108
|
+
{
|
|
3109
|
+
"styles": {},
|
|
3110
|
+
"text": "Cell 1",
|
|
3111
|
+
"type": "text",
|
|
3112
|
+
},
|
|
3113
|
+
],
|
|
3114
|
+
"props": {
|
|
3115
|
+
"backgroundColor": "default",
|
|
3116
|
+
"colspan": 1,
|
|
3117
|
+
"rowspan": 1,
|
|
3118
|
+
"textAlignment": "left",
|
|
3119
|
+
"textColor": "default",
|
|
3120
|
+
},
|
|
3121
|
+
"type": "tableCell",
|
|
3122
|
+
},
|
|
3123
|
+
{
|
|
3124
|
+
"content": [
|
|
3125
|
+
{
|
|
3126
|
+
"styles": {},
|
|
3127
|
+
"text": "Cell 2",
|
|
3128
|
+
"type": "text",
|
|
3129
|
+
},
|
|
3130
|
+
],
|
|
3131
|
+
"props": {
|
|
3132
|
+
"backgroundColor": "default",
|
|
3133
|
+
"colspan": 1,
|
|
3134
|
+
"rowspan": 1,
|
|
3135
|
+
"textAlignment": "left",
|
|
3136
|
+
"textColor": "default",
|
|
3137
|
+
},
|
|
3138
|
+
"type": "tableCell",
|
|
3139
|
+
},
|
|
3140
|
+
{
|
|
3141
|
+
"content": [
|
|
3142
|
+
{
|
|
3143
|
+
"styles": {},
|
|
3144
|
+
"text": "Cell 3",
|
|
3145
|
+
"type": "text",
|
|
3146
|
+
},
|
|
3147
|
+
],
|
|
3148
|
+
"props": {
|
|
3149
|
+
"backgroundColor": "default",
|
|
3150
|
+
"colspan": 1,
|
|
3151
|
+
"rowspan": 1,
|
|
3152
|
+
"textAlignment": "left",
|
|
3153
|
+
"textColor": "default",
|
|
3154
|
+
},
|
|
3155
|
+
"type": "tableCell",
|
|
3156
|
+
},
|
|
2665
3157
|
],
|
|
2666
3158
|
},
|
|
2667
3159
|
{
|
|
2668
3160
|
"cells": [
|
|
2669
|
-
|
|
2670
|
-
|
|
2671
|
-
|
|
2672
|
-
|
|
2673
|
-
|
|
2674
|
-
|
|
2675
|
-
|
|
2676
|
-
|
|
2677
|
-
{
|
|
2678
|
-
"
|
|
2679
|
-
"
|
|
2680
|
-
"
|
|
2681
|
-
|
|
2682
|
-
|
|
2683
|
-
|
|
2684
|
-
|
|
2685
|
-
|
|
2686
|
-
|
|
2687
|
-
|
|
2688
|
-
|
|
2689
|
-
|
|
3161
|
+
{
|
|
3162
|
+
"content": [
|
|
3163
|
+
{
|
|
3164
|
+
"styles": {},
|
|
3165
|
+
"text": "Cell 4",
|
|
3166
|
+
"type": "text",
|
|
3167
|
+
},
|
|
3168
|
+
],
|
|
3169
|
+
"props": {
|
|
3170
|
+
"backgroundColor": "default",
|
|
3171
|
+
"colspan": 1,
|
|
3172
|
+
"rowspan": 1,
|
|
3173
|
+
"textAlignment": "left",
|
|
3174
|
+
"textColor": "default",
|
|
3175
|
+
},
|
|
3176
|
+
"type": "tableCell",
|
|
3177
|
+
},
|
|
3178
|
+
{
|
|
3179
|
+
"content": [
|
|
3180
|
+
{
|
|
3181
|
+
"styles": {},
|
|
3182
|
+
"text": "Cell 5",
|
|
3183
|
+
"type": "text",
|
|
3184
|
+
},
|
|
3185
|
+
],
|
|
3186
|
+
"props": {
|
|
3187
|
+
"backgroundColor": "default",
|
|
3188
|
+
"colspan": 1,
|
|
3189
|
+
"rowspan": 1,
|
|
3190
|
+
"textAlignment": "left",
|
|
3191
|
+
"textColor": "default",
|
|
3192
|
+
},
|
|
3193
|
+
"type": "tableCell",
|
|
3194
|
+
},
|
|
3195
|
+
{
|
|
3196
|
+
"content": [
|
|
3197
|
+
{
|
|
3198
|
+
"styles": {},
|
|
3199
|
+
"text": "Cell 6",
|
|
3200
|
+
"type": "text",
|
|
3201
|
+
},
|
|
3202
|
+
],
|
|
3203
|
+
"props": {
|
|
3204
|
+
"backgroundColor": "default",
|
|
3205
|
+
"colspan": 1,
|
|
3206
|
+
"rowspan": 1,
|
|
3207
|
+
"textAlignment": "left",
|
|
3208
|
+
"textColor": "default",
|
|
3209
|
+
},
|
|
3210
|
+
"type": "tableCell",
|
|
3211
|
+
},
|
|
2690
3212
|
],
|
|
2691
3213
|
},
|
|
2692
3214
|
{
|
|
2693
3215
|
"cells": [
|
|
2694
|
-
|
|
2695
|
-
|
|
2696
|
-
|
|
2697
|
-
|
|
2698
|
-
|
|
2699
|
-
|
|
2700
|
-
|
|
2701
|
-
|
|
2702
|
-
{
|
|
2703
|
-
"
|
|
2704
|
-
"
|
|
2705
|
-
"
|
|
2706
|
-
|
|
2707
|
-
|
|
2708
|
-
|
|
2709
|
-
|
|
2710
|
-
|
|
2711
|
-
|
|
2712
|
-
|
|
2713
|
-
|
|
2714
|
-
|
|
3216
|
+
{
|
|
3217
|
+
"content": [
|
|
3218
|
+
{
|
|
3219
|
+
"styles": {},
|
|
3220
|
+
"text": "Cell 7",
|
|
3221
|
+
"type": "text",
|
|
3222
|
+
},
|
|
3223
|
+
],
|
|
3224
|
+
"props": {
|
|
3225
|
+
"backgroundColor": "default",
|
|
3226
|
+
"colspan": 1,
|
|
3227
|
+
"rowspan": 1,
|
|
3228
|
+
"textAlignment": "left",
|
|
3229
|
+
"textColor": "default",
|
|
3230
|
+
},
|
|
3231
|
+
"type": "tableCell",
|
|
3232
|
+
},
|
|
3233
|
+
{
|
|
3234
|
+
"content": [
|
|
3235
|
+
{
|
|
3236
|
+
"styles": {},
|
|
3237
|
+
"text": "Cell 8",
|
|
3238
|
+
"type": "text",
|
|
3239
|
+
},
|
|
3240
|
+
],
|
|
3241
|
+
"props": {
|
|
3242
|
+
"backgroundColor": "default",
|
|
3243
|
+
"colspan": 1,
|
|
3244
|
+
"rowspan": 1,
|
|
3245
|
+
"textAlignment": "left",
|
|
3246
|
+
"textColor": "default",
|
|
3247
|
+
},
|
|
3248
|
+
"type": "tableCell",
|
|
3249
|
+
},
|
|
3250
|
+
{
|
|
3251
|
+
"content": [
|
|
3252
|
+
{
|
|
3253
|
+
"styles": {},
|
|
3254
|
+
"text": "Cell 9",
|
|
3255
|
+
"type": "text",
|
|
3256
|
+
},
|
|
3257
|
+
],
|
|
3258
|
+
"props": {
|
|
3259
|
+
"backgroundColor": "default",
|
|
3260
|
+
"colspan": 1,
|
|
3261
|
+
"rowspan": 1,
|
|
3262
|
+
"textAlignment": "left",
|
|
3263
|
+
"textColor": "default",
|
|
3264
|
+
},
|
|
3265
|
+
"type": "tableCell",
|
|
3266
|
+
},
|
|
2715
3267
|
],
|
|
2716
3268
|
},
|
|
2717
3269
|
],
|
|
@@ -3123,80 +3675,172 @@ exports[`Test moveBlocksDown > Multiple blocks starting and ending in nested blo
|
|
|
3123
3675
|
undefined,
|
|
3124
3676
|
undefined,
|
|
3125
3677
|
],
|
|
3678
|
+
"headerCols": undefined,
|
|
3679
|
+
"headerRows": undefined,
|
|
3126
3680
|
"rows": [
|
|
3127
3681
|
{
|
|
3128
3682
|
"cells": [
|
|
3129
|
-
|
|
3130
|
-
|
|
3131
|
-
|
|
3132
|
-
|
|
3133
|
-
|
|
3134
|
-
|
|
3135
|
-
|
|
3136
|
-
|
|
3137
|
-
{
|
|
3138
|
-
"
|
|
3139
|
-
"
|
|
3140
|
-
"
|
|
3141
|
-
|
|
3142
|
-
|
|
3143
|
-
|
|
3144
|
-
|
|
3145
|
-
|
|
3146
|
-
|
|
3147
|
-
|
|
3148
|
-
|
|
3149
|
-
|
|
3683
|
+
{
|
|
3684
|
+
"content": [
|
|
3685
|
+
{
|
|
3686
|
+
"styles": {},
|
|
3687
|
+
"text": "Cell 1",
|
|
3688
|
+
"type": "text",
|
|
3689
|
+
},
|
|
3690
|
+
],
|
|
3691
|
+
"props": {
|
|
3692
|
+
"backgroundColor": "default",
|
|
3693
|
+
"colspan": 1,
|
|
3694
|
+
"rowspan": 1,
|
|
3695
|
+
"textAlignment": "left",
|
|
3696
|
+
"textColor": "default",
|
|
3697
|
+
},
|
|
3698
|
+
"type": "tableCell",
|
|
3699
|
+
},
|
|
3700
|
+
{
|
|
3701
|
+
"content": [
|
|
3702
|
+
{
|
|
3703
|
+
"styles": {},
|
|
3704
|
+
"text": "Cell 2",
|
|
3705
|
+
"type": "text",
|
|
3706
|
+
},
|
|
3707
|
+
],
|
|
3708
|
+
"props": {
|
|
3709
|
+
"backgroundColor": "default",
|
|
3710
|
+
"colspan": 1,
|
|
3711
|
+
"rowspan": 1,
|
|
3712
|
+
"textAlignment": "left",
|
|
3713
|
+
"textColor": "default",
|
|
3714
|
+
},
|
|
3715
|
+
"type": "tableCell",
|
|
3716
|
+
},
|
|
3717
|
+
{
|
|
3718
|
+
"content": [
|
|
3719
|
+
{
|
|
3720
|
+
"styles": {},
|
|
3721
|
+
"text": "Cell 3",
|
|
3722
|
+
"type": "text",
|
|
3723
|
+
},
|
|
3724
|
+
],
|
|
3725
|
+
"props": {
|
|
3726
|
+
"backgroundColor": "default",
|
|
3727
|
+
"colspan": 1,
|
|
3728
|
+
"rowspan": 1,
|
|
3729
|
+
"textAlignment": "left",
|
|
3730
|
+
"textColor": "default",
|
|
3731
|
+
},
|
|
3732
|
+
"type": "tableCell",
|
|
3733
|
+
},
|
|
3150
3734
|
],
|
|
3151
3735
|
},
|
|
3152
3736
|
{
|
|
3153
3737
|
"cells": [
|
|
3154
|
-
|
|
3155
|
-
|
|
3156
|
-
|
|
3157
|
-
|
|
3158
|
-
|
|
3159
|
-
|
|
3160
|
-
|
|
3161
|
-
|
|
3162
|
-
{
|
|
3163
|
-
"
|
|
3164
|
-
"
|
|
3165
|
-
"
|
|
3166
|
-
|
|
3167
|
-
|
|
3168
|
-
|
|
3169
|
-
|
|
3170
|
-
|
|
3171
|
-
|
|
3172
|
-
|
|
3173
|
-
|
|
3174
|
-
|
|
3738
|
+
{
|
|
3739
|
+
"content": [
|
|
3740
|
+
{
|
|
3741
|
+
"styles": {},
|
|
3742
|
+
"text": "Cell 4",
|
|
3743
|
+
"type": "text",
|
|
3744
|
+
},
|
|
3745
|
+
],
|
|
3746
|
+
"props": {
|
|
3747
|
+
"backgroundColor": "default",
|
|
3748
|
+
"colspan": 1,
|
|
3749
|
+
"rowspan": 1,
|
|
3750
|
+
"textAlignment": "left",
|
|
3751
|
+
"textColor": "default",
|
|
3752
|
+
},
|
|
3753
|
+
"type": "tableCell",
|
|
3754
|
+
},
|
|
3755
|
+
{
|
|
3756
|
+
"content": [
|
|
3757
|
+
{
|
|
3758
|
+
"styles": {},
|
|
3759
|
+
"text": "Cell 5",
|
|
3760
|
+
"type": "text",
|
|
3761
|
+
},
|
|
3762
|
+
],
|
|
3763
|
+
"props": {
|
|
3764
|
+
"backgroundColor": "default",
|
|
3765
|
+
"colspan": 1,
|
|
3766
|
+
"rowspan": 1,
|
|
3767
|
+
"textAlignment": "left",
|
|
3768
|
+
"textColor": "default",
|
|
3769
|
+
},
|
|
3770
|
+
"type": "tableCell",
|
|
3771
|
+
},
|
|
3772
|
+
{
|
|
3773
|
+
"content": [
|
|
3774
|
+
{
|
|
3775
|
+
"styles": {},
|
|
3776
|
+
"text": "Cell 6",
|
|
3777
|
+
"type": "text",
|
|
3778
|
+
},
|
|
3779
|
+
],
|
|
3780
|
+
"props": {
|
|
3781
|
+
"backgroundColor": "default",
|
|
3782
|
+
"colspan": 1,
|
|
3783
|
+
"rowspan": 1,
|
|
3784
|
+
"textAlignment": "left",
|
|
3785
|
+
"textColor": "default",
|
|
3786
|
+
},
|
|
3787
|
+
"type": "tableCell",
|
|
3788
|
+
},
|
|
3175
3789
|
],
|
|
3176
3790
|
},
|
|
3177
3791
|
{
|
|
3178
3792
|
"cells": [
|
|
3179
|
-
|
|
3180
|
-
|
|
3181
|
-
|
|
3182
|
-
|
|
3183
|
-
|
|
3184
|
-
|
|
3185
|
-
|
|
3186
|
-
|
|
3187
|
-
{
|
|
3188
|
-
"
|
|
3189
|
-
"
|
|
3190
|
-
"
|
|
3191
|
-
|
|
3192
|
-
|
|
3193
|
-
|
|
3194
|
-
|
|
3195
|
-
|
|
3196
|
-
|
|
3197
|
-
|
|
3198
|
-
|
|
3199
|
-
|
|
3793
|
+
{
|
|
3794
|
+
"content": [
|
|
3795
|
+
{
|
|
3796
|
+
"styles": {},
|
|
3797
|
+
"text": "Cell 7",
|
|
3798
|
+
"type": "text",
|
|
3799
|
+
},
|
|
3800
|
+
],
|
|
3801
|
+
"props": {
|
|
3802
|
+
"backgroundColor": "default",
|
|
3803
|
+
"colspan": 1,
|
|
3804
|
+
"rowspan": 1,
|
|
3805
|
+
"textAlignment": "left",
|
|
3806
|
+
"textColor": "default",
|
|
3807
|
+
},
|
|
3808
|
+
"type": "tableCell",
|
|
3809
|
+
},
|
|
3810
|
+
{
|
|
3811
|
+
"content": [
|
|
3812
|
+
{
|
|
3813
|
+
"styles": {},
|
|
3814
|
+
"text": "Cell 8",
|
|
3815
|
+
"type": "text",
|
|
3816
|
+
},
|
|
3817
|
+
],
|
|
3818
|
+
"props": {
|
|
3819
|
+
"backgroundColor": "default",
|
|
3820
|
+
"colspan": 1,
|
|
3821
|
+
"rowspan": 1,
|
|
3822
|
+
"textAlignment": "left",
|
|
3823
|
+
"textColor": "default",
|
|
3824
|
+
},
|
|
3825
|
+
"type": "tableCell",
|
|
3826
|
+
},
|
|
3827
|
+
{
|
|
3828
|
+
"content": [
|
|
3829
|
+
{
|
|
3830
|
+
"styles": {},
|
|
3831
|
+
"text": "Cell 9",
|
|
3832
|
+
"type": "text",
|
|
3833
|
+
},
|
|
3834
|
+
],
|
|
3835
|
+
"props": {
|
|
3836
|
+
"backgroundColor": "default",
|
|
3837
|
+
"colspan": 1,
|
|
3838
|
+
"rowspan": 1,
|
|
3839
|
+
"textAlignment": "left",
|
|
3840
|
+
"textColor": "default",
|
|
3841
|
+
},
|
|
3842
|
+
"type": "tableCell",
|
|
3843
|
+
},
|
|
3200
3844
|
],
|
|
3201
3845
|
},
|
|
3202
3846
|
],
|
|
@@ -3598,80 +4242,172 @@ exports[`Test moveBlocksDown > Multiple blocks starting in block with children 1
|
|
|
3598
4242
|
undefined,
|
|
3599
4243
|
undefined,
|
|
3600
4244
|
],
|
|
4245
|
+
"headerCols": undefined,
|
|
4246
|
+
"headerRows": undefined,
|
|
3601
4247
|
"rows": [
|
|
3602
4248
|
{
|
|
3603
4249
|
"cells": [
|
|
3604
|
-
|
|
3605
|
-
|
|
3606
|
-
|
|
3607
|
-
|
|
3608
|
-
|
|
3609
|
-
|
|
3610
|
-
|
|
3611
|
-
|
|
3612
|
-
{
|
|
3613
|
-
"
|
|
3614
|
-
"
|
|
3615
|
-
"
|
|
3616
|
-
|
|
3617
|
-
|
|
3618
|
-
|
|
3619
|
-
|
|
3620
|
-
|
|
3621
|
-
|
|
3622
|
-
|
|
3623
|
-
|
|
3624
|
-
|
|
4250
|
+
{
|
|
4251
|
+
"content": [
|
|
4252
|
+
{
|
|
4253
|
+
"styles": {},
|
|
4254
|
+
"text": "Cell 1",
|
|
4255
|
+
"type": "text",
|
|
4256
|
+
},
|
|
4257
|
+
],
|
|
4258
|
+
"props": {
|
|
4259
|
+
"backgroundColor": "default",
|
|
4260
|
+
"colspan": 1,
|
|
4261
|
+
"rowspan": 1,
|
|
4262
|
+
"textAlignment": "left",
|
|
4263
|
+
"textColor": "default",
|
|
4264
|
+
},
|
|
4265
|
+
"type": "tableCell",
|
|
4266
|
+
},
|
|
4267
|
+
{
|
|
4268
|
+
"content": [
|
|
4269
|
+
{
|
|
4270
|
+
"styles": {},
|
|
4271
|
+
"text": "Cell 2",
|
|
4272
|
+
"type": "text",
|
|
4273
|
+
},
|
|
4274
|
+
],
|
|
4275
|
+
"props": {
|
|
4276
|
+
"backgroundColor": "default",
|
|
4277
|
+
"colspan": 1,
|
|
4278
|
+
"rowspan": 1,
|
|
4279
|
+
"textAlignment": "left",
|
|
4280
|
+
"textColor": "default",
|
|
4281
|
+
},
|
|
4282
|
+
"type": "tableCell",
|
|
4283
|
+
},
|
|
4284
|
+
{
|
|
4285
|
+
"content": [
|
|
4286
|
+
{
|
|
4287
|
+
"styles": {},
|
|
4288
|
+
"text": "Cell 3",
|
|
4289
|
+
"type": "text",
|
|
4290
|
+
},
|
|
4291
|
+
],
|
|
4292
|
+
"props": {
|
|
4293
|
+
"backgroundColor": "default",
|
|
4294
|
+
"colspan": 1,
|
|
4295
|
+
"rowspan": 1,
|
|
4296
|
+
"textAlignment": "left",
|
|
4297
|
+
"textColor": "default",
|
|
4298
|
+
},
|
|
4299
|
+
"type": "tableCell",
|
|
4300
|
+
},
|
|
3625
4301
|
],
|
|
3626
4302
|
},
|
|
3627
4303
|
{
|
|
3628
4304
|
"cells": [
|
|
3629
|
-
|
|
3630
|
-
|
|
3631
|
-
|
|
3632
|
-
|
|
3633
|
-
|
|
3634
|
-
|
|
3635
|
-
|
|
3636
|
-
|
|
3637
|
-
{
|
|
3638
|
-
"
|
|
3639
|
-
"
|
|
3640
|
-
"
|
|
3641
|
-
|
|
3642
|
-
|
|
3643
|
-
|
|
3644
|
-
|
|
3645
|
-
|
|
3646
|
-
|
|
3647
|
-
|
|
3648
|
-
|
|
3649
|
-
|
|
4305
|
+
{
|
|
4306
|
+
"content": [
|
|
4307
|
+
{
|
|
4308
|
+
"styles": {},
|
|
4309
|
+
"text": "Cell 4",
|
|
4310
|
+
"type": "text",
|
|
4311
|
+
},
|
|
4312
|
+
],
|
|
4313
|
+
"props": {
|
|
4314
|
+
"backgroundColor": "default",
|
|
4315
|
+
"colspan": 1,
|
|
4316
|
+
"rowspan": 1,
|
|
4317
|
+
"textAlignment": "left",
|
|
4318
|
+
"textColor": "default",
|
|
4319
|
+
},
|
|
4320
|
+
"type": "tableCell",
|
|
4321
|
+
},
|
|
4322
|
+
{
|
|
4323
|
+
"content": [
|
|
4324
|
+
{
|
|
4325
|
+
"styles": {},
|
|
4326
|
+
"text": "Cell 5",
|
|
4327
|
+
"type": "text",
|
|
4328
|
+
},
|
|
4329
|
+
],
|
|
4330
|
+
"props": {
|
|
4331
|
+
"backgroundColor": "default",
|
|
4332
|
+
"colspan": 1,
|
|
4333
|
+
"rowspan": 1,
|
|
4334
|
+
"textAlignment": "left",
|
|
4335
|
+
"textColor": "default",
|
|
4336
|
+
},
|
|
4337
|
+
"type": "tableCell",
|
|
4338
|
+
},
|
|
4339
|
+
{
|
|
4340
|
+
"content": [
|
|
4341
|
+
{
|
|
4342
|
+
"styles": {},
|
|
4343
|
+
"text": "Cell 6",
|
|
4344
|
+
"type": "text",
|
|
4345
|
+
},
|
|
4346
|
+
],
|
|
4347
|
+
"props": {
|
|
4348
|
+
"backgroundColor": "default",
|
|
4349
|
+
"colspan": 1,
|
|
4350
|
+
"rowspan": 1,
|
|
4351
|
+
"textAlignment": "left",
|
|
4352
|
+
"textColor": "default",
|
|
4353
|
+
},
|
|
4354
|
+
"type": "tableCell",
|
|
4355
|
+
},
|
|
3650
4356
|
],
|
|
3651
4357
|
},
|
|
3652
4358
|
{
|
|
3653
4359
|
"cells": [
|
|
3654
|
-
|
|
3655
|
-
|
|
3656
|
-
|
|
3657
|
-
|
|
3658
|
-
|
|
3659
|
-
|
|
3660
|
-
|
|
3661
|
-
|
|
3662
|
-
{
|
|
3663
|
-
"
|
|
3664
|
-
"
|
|
3665
|
-
"
|
|
3666
|
-
|
|
3667
|
-
|
|
3668
|
-
|
|
3669
|
-
|
|
3670
|
-
|
|
3671
|
-
|
|
3672
|
-
|
|
3673
|
-
|
|
3674
|
-
|
|
4360
|
+
{
|
|
4361
|
+
"content": [
|
|
4362
|
+
{
|
|
4363
|
+
"styles": {},
|
|
4364
|
+
"text": "Cell 7",
|
|
4365
|
+
"type": "text",
|
|
4366
|
+
},
|
|
4367
|
+
],
|
|
4368
|
+
"props": {
|
|
4369
|
+
"backgroundColor": "default",
|
|
4370
|
+
"colspan": 1,
|
|
4371
|
+
"rowspan": 1,
|
|
4372
|
+
"textAlignment": "left",
|
|
4373
|
+
"textColor": "default",
|
|
4374
|
+
},
|
|
4375
|
+
"type": "tableCell",
|
|
4376
|
+
},
|
|
4377
|
+
{
|
|
4378
|
+
"content": [
|
|
4379
|
+
{
|
|
4380
|
+
"styles": {},
|
|
4381
|
+
"text": "Cell 8",
|
|
4382
|
+
"type": "text",
|
|
4383
|
+
},
|
|
4384
|
+
],
|
|
4385
|
+
"props": {
|
|
4386
|
+
"backgroundColor": "default",
|
|
4387
|
+
"colspan": 1,
|
|
4388
|
+
"rowspan": 1,
|
|
4389
|
+
"textAlignment": "left",
|
|
4390
|
+
"textColor": "default",
|
|
4391
|
+
},
|
|
4392
|
+
"type": "tableCell",
|
|
4393
|
+
},
|
|
4394
|
+
{
|
|
4395
|
+
"content": [
|
|
4396
|
+
{
|
|
4397
|
+
"styles": {},
|
|
4398
|
+
"text": "Cell 9",
|
|
4399
|
+
"type": "text",
|
|
4400
|
+
},
|
|
4401
|
+
],
|
|
4402
|
+
"props": {
|
|
4403
|
+
"backgroundColor": "default",
|
|
4404
|
+
"colspan": 1,
|
|
4405
|
+
"rowspan": 1,
|
|
4406
|
+
"textAlignment": "left",
|
|
4407
|
+
"textColor": "default",
|
|
4408
|
+
},
|
|
4409
|
+
"type": "tableCell",
|
|
4410
|
+
},
|
|
3675
4411
|
],
|
|
3676
4412
|
},
|
|
3677
4413
|
],
|
|
@@ -4072,80 +4808,172 @@ exports[`Test moveBlocksDown > Multiple blocks starting in nested block 1`] = `
|
|
|
4072
4808
|
undefined,
|
|
4073
4809
|
undefined,
|
|
4074
4810
|
],
|
|
4811
|
+
"headerCols": undefined,
|
|
4812
|
+
"headerRows": undefined,
|
|
4075
4813
|
"rows": [
|
|
4076
4814
|
{
|
|
4077
4815
|
"cells": [
|
|
4078
|
-
|
|
4079
|
-
|
|
4080
|
-
|
|
4081
|
-
|
|
4082
|
-
|
|
4083
|
-
|
|
4084
|
-
|
|
4085
|
-
|
|
4086
|
-
{
|
|
4087
|
-
"
|
|
4088
|
-
"
|
|
4089
|
-
"
|
|
4090
|
-
|
|
4091
|
-
|
|
4092
|
-
|
|
4093
|
-
|
|
4094
|
-
|
|
4095
|
-
|
|
4096
|
-
|
|
4097
|
-
|
|
4098
|
-
|
|
4816
|
+
{
|
|
4817
|
+
"content": [
|
|
4818
|
+
{
|
|
4819
|
+
"styles": {},
|
|
4820
|
+
"text": "Cell 1",
|
|
4821
|
+
"type": "text",
|
|
4822
|
+
},
|
|
4823
|
+
],
|
|
4824
|
+
"props": {
|
|
4825
|
+
"backgroundColor": "default",
|
|
4826
|
+
"colspan": 1,
|
|
4827
|
+
"rowspan": 1,
|
|
4828
|
+
"textAlignment": "left",
|
|
4829
|
+
"textColor": "default",
|
|
4830
|
+
},
|
|
4831
|
+
"type": "tableCell",
|
|
4832
|
+
},
|
|
4833
|
+
{
|
|
4834
|
+
"content": [
|
|
4835
|
+
{
|
|
4836
|
+
"styles": {},
|
|
4837
|
+
"text": "Cell 2",
|
|
4838
|
+
"type": "text",
|
|
4839
|
+
},
|
|
4840
|
+
],
|
|
4841
|
+
"props": {
|
|
4842
|
+
"backgroundColor": "default",
|
|
4843
|
+
"colspan": 1,
|
|
4844
|
+
"rowspan": 1,
|
|
4845
|
+
"textAlignment": "left",
|
|
4846
|
+
"textColor": "default",
|
|
4847
|
+
},
|
|
4848
|
+
"type": "tableCell",
|
|
4849
|
+
},
|
|
4850
|
+
{
|
|
4851
|
+
"content": [
|
|
4852
|
+
{
|
|
4853
|
+
"styles": {},
|
|
4854
|
+
"text": "Cell 3",
|
|
4855
|
+
"type": "text",
|
|
4856
|
+
},
|
|
4857
|
+
],
|
|
4858
|
+
"props": {
|
|
4859
|
+
"backgroundColor": "default",
|
|
4860
|
+
"colspan": 1,
|
|
4861
|
+
"rowspan": 1,
|
|
4862
|
+
"textAlignment": "left",
|
|
4863
|
+
"textColor": "default",
|
|
4864
|
+
},
|
|
4865
|
+
"type": "tableCell",
|
|
4866
|
+
},
|
|
4099
4867
|
],
|
|
4100
4868
|
},
|
|
4101
4869
|
{
|
|
4102
4870
|
"cells": [
|
|
4103
|
-
|
|
4104
|
-
|
|
4105
|
-
|
|
4106
|
-
|
|
4107
|
-
|
|
4108
|
-
|
|
4109
|
-
|
|
4110
|
-
|
|
4111
|
-
{
|
|
4112
|
-
"
|
|
4113
|
-
"
|
|
4114
|
-
"
|
|
4115
|
-
|
|
4116
|
-
|
|
4117
|
-
|
|
4118
|
-
|
|
4119
|
-
|
|
4120
|
-
|
|
4121
|
-
|
|
4122
|
-
|
|
4123
|
-
|
|
4871
|
+
{
|
|
4872
|
+
"content": [
|
|
4873
|
+
{
|
|
4874
|
+
"styles": {},
|
|
4875
|
+
"text": "Cell 4",
|
|
4876
|
+
"type": "text",
|
|
4877
|
+
},
|
|
4878
|
+
],
|
|
4879
|
+
"props": {
|
|
4880
|
+
"backgroundColor": "default",
|
|
4881
|
+
"colspan": 1,
|
|
4882
|
+
"rowspan": 1,
|
|
4883
|
+
"textAlignment": "left",
|
|
4884
|
+
"textColor": "default",
|
|
4885
|
+
},
|
|
4886
|
+
"type": "tableCell",
|
|
4887
|
+
},
|
|
4888
|
+
{
|
|
4889
|
+
"content": [
|
|
4890
|
+
{
|
|
4891
|
+
"styles": {},
|
|
4892
|
+
"text": "Cell 5",
|
|
4893
|
+
"type": "text",
|
|
4894
|
+
},
|
|
4895
|
+
],
|
|
4896
|
+
"props": {
|
|
4897
|
+
"backgroundColor": "default",
|
|
4898
|
+
"colspan": 1,
|
|
4899
|
+
"rowspan": 1,
|
|
4900
|
+
"textAlignment": "left",
|
|
4901
|
+
"textColor": "default",
|
|
4902
|
+
},
|
|
4903
|
+
"type": "tableCell",
|
|
4904
|
+
},
|
|
4905
|
+
{
|
|
4906
|
+
"content": [
|
|
4907
|
+
{
|
|
4908
|
+
"styles": {},
|
|
4909
|
+
"text": "Cell 6",
|
|
4910
|
+
"type": "text",
|
|
4911
|
+
},
|
|
4912
|
+
],
|
|
4913
|
+
"props": {
|
|
4914
|
+
"backgroundColor": "default",
|
|
4915
|
+
"colspan": 1,
|
|
4916
|
+
"rowspan": 1,
|
|
4917
|
+
"textAlignment": "left",
|
|
4918
|
+
"textColor": "default",
|
|
4919
|
+
},
|
|
4920
|
+
"type": "tableCell",
|
|
4921
|
+
},
|
|
4124
4922
|
],
|
|
4125
4923
|
},
|
|
4126
4924
|
{
|
|
4127
4925
|
"cells": [
|
|
4128
|
-
|
|
4129
|
-
|
|
4130
|
-
|
|
4131
|
-
|
|
4132
|
-
|
|
4133
|
-
|
|
4134
|
-
|
|
4135
|
-
|
|
4136
|
-
{
|
|
4137
|
-
"
|
|
4138
|
-
"
|
|
4139
|
-
"
|
|
4140
|
-
|
|
4141
|
-
|
|
4142
|
-
|
|
4143
|
-
|
|
4144
|
-
|
|
4145
|
-
|
|
4146
|
-
|
|
4147
|
-
|
|
4148
|
-
|
|
4926
|
+
{
|
|
4927
|
+
"content": [
|
|
4928
|
+
{
|
|
4929
|
+
"styles": {},
|
|
4930
|
+
"text": "Cell 7",
|
|
4931
|
+
"type": "text",
|
|
4932
|
+
},
|
|
4933
|
+
],
|
|
4934
|
+
"props": {
|
|
4935
|
+
"backgroundColor": "default",
|
|
4936
|
+
"colspan": 1,
|
|
4937
|
+
"rowspan": 1,
|
|
4938
|
+
"textAlignment": "left",
|
|
4939
|
+
"textColor": "default",
|
|
4940
|
+
},
|
|
4941
|
+
"type": "tableCell",
|
|
4942
|
+
},
|
|
4943
|
+
{
|
|
4944
|
+
"content": [
|
|
4945
|
+
{
|
|
4946
|
+
"styles": {},
|
|
4947
|
+
"text": "Cell 8",
|
|
4948
|
+
"type": "text",
|
|
4949
|
+
},
|
|
4950
|
+
],
|
|
4951
|
+
"props": {
|
|
4952
|
+
"backgroundColor": "default",
|
|
4953
|
+
"colspan": 1,
|
|
4954
|
+
"rowspan": 1,
|
|
4955
|
+
"textAlignment": "left",
|
|
4956
|
+
"textColor": "default",
|
|
4957
|
+
},
|
|
4958
|
+
"type": "tableCell",
|
|
4959
|
+
},
|
|
4960
|
+
{
|
|
4961
|
+
"content": [
|
|
4962
|
+
{
|
|
4963
|
+
"styles": {},
|
|
4964
|
+
"text": "Cell 9",
|
|
4965
|
+
"type": "text",
|
|
4966
|
+
},
|
|
4967
|
+
],
|
|
4968
|
+
"props": {
|
|
4969
|
+
"backgroundColor": "default",
|
|
4970
|
+
"colspan": 1,
|
|
4971
|
+
"rowspan": 1,
|
|
4972
|
+
"textAlignment": "left",
|
|
4973
|
+
"textColor": "default",
|
|
4974
|
+
},
|
|
4975
|
+
"type": "tableCell",
|
|
4976
|
+
},
|
|
4149
4977
|
],
|
|
4150
4978
|
},
|
|
4151
4979
|
],
|
|
@@ -4547,80 +5375,172 @@ exports[`Test moveBlocksDown > Out of children 1`] = `
|
|
|
4547
5375
|
undefined,
|
|
4548
5376
|
undefined,
|
|
4549
5377
|
],
|
|
5378
|
+
"headerCols": undefined,
|
|
5379
|
+
"headerRows": undefined,
|
|
4550
5380
|
"rows": [
|
|
4551
5381
|
{
|
|
4552
5382
|
"cells": [
|
|
4553
|
-
|
|
4554
|
-
|
|
4555
|
-
|
|
4556
|
-
|
|
4557
|
-
|
|
4558
|
-
|
|
4559
|
-
|
|
4560
|
-
|
|
4561
|
-
{
|
|
4562
|
-
"
|
|
4563
|
-
"
|
|
4564
|
-
"
|
|
4565
|
-
|
|
4566
|
-
|
|
4567
|
-
|
|
4568
|
-
|
|
4569
|
-
|
|
4570
|
-
|
|
4571
|
-
|
|
4572
|
-
|
|
4573
|
-
|
|
5383
|
+
{
|
|
5384
|
+
"content": [
|
|
5385
|
+
{
|
|
5386
|
+
"styles": {},
|
|
5387
|
+
"text": "Cell 1",
|
|
5388
|
+
"type": "text",
|
|
5389
|
+
},
|
|
5390
|
+
],
|
|
5391
|
+
"props": {
|
|
5392
|
+
"backgroundColor": "default",
|
|
5393
|
+
"colspan": 1,
|
|
5394
|
+
"rowspan": 1,
|
|
5395
|
+
"textAlignment": "left",
|
|
5396
|
+
"textColor": "default",
|
|
5397
|
+
},
|
|
5398
|
+
"type": "tableCell",
|
|
5399
|
+
},
|
|
5400
|
+
{
|
|
5401
|
+
"content": [
|
|
5402
|
+
{
|
|
5403
|
+
"styles": {},
|
|
5404
|
+
"text": "Cell 2",
|
|
5405
|
+
"type": "text",
|
|
5406
|
+
},
|
|
5407
|
+
],
|
|
5408
|
+
"props": {
|
|
5409
|
+
"backgroundColor": "default",
|
|
5410
|
+
"colspan": 1,
|
|
5411
|
+
"rowspan": 1,
|
|
5412
|
+
"textAlignment": "left",
|
|
5413
|
+
"textColor": "default",
|
|
5414
|
+
},
|
|
5415
|
+
"type": "tableCell",
|
|
5416
|
+
},
|
|
5417
|
+
{
|
|
5418
|
+
"content": [
|
|
5419
|
+
{
|
|
5420
|
+
"styles": {},
|
|
5421
|
+
"text": "Cell 3",
|
|
5422
|
+
"type": "text",
|
|
5423
|
+
},
|
|
5424
|
+
],
|
|
5425
|
+
"props": {
|
|
5426
|
+
"backgroundColor": "default",
|
|
5427
|
+
"colspan": 1,
|
|
5428
|
+
"rowspan": 1,
|
|
5429
|
+
"textAlignment": "left",
|
|
5430
|
+
"textColor": "default",
|
|
5431
|
+
},
|
|
5432
|
+
"type": "tableCell",
|
|
5433
|
+
},
|
|
4574
5434
|
],
|
|
4575
5435
|
},
|
|
4576
5436
|
{
|
|
4577
5437
|
"cells": [
|
|
4578
|
-
|
|
4579
|
-
|
|
4580
|
-
|
|
4581
|
-
|
|
4582
|
-
|
|
4583
|
-
|
|
4584
|
-
|
|
4585
|
-
|
|
4586
|
-
{
|
|
4587
|
-
"
|
|
4588
|
-
"
|
|
4589
|
-
"
|
|
4590
|
-
|
|
4591
|
-
|
|
4592
|
-
|
|
4593
|
-
|
|
4594
|
-
|
|
4595
|
-
|
|
4596
|
-
|
|
4597
|
-
|
|
4598
|
-
|
|
5438
|
+
{
|
|
5439
|
+
"content": [
|
|
5440
|
+
{
|
|
5441
|
+
"styles": {},
|
|
5442
|
+
"text": "Cell 4",
|
|
5443
|
+
"type": "text",
|
|
5444
|
+
},
|
|
5445
|
+
],
|
|
5446
|
+
"props": {
|
|
5447
|
+
"backgroundColor": "default",
|
|
5448
|
+
"colspan": 1,
|
|
5449
|
+
"rowspan": 1,
|
|
5450
|
+
"textAlignment": "left",
|
|
5451
|
+
"textColor": "default",
|
|
5452
|
+
},
|
|
5453
|
+
"type": "tableCell",
|
|
5454
|
+
},
|
|
5455
|
+
{
|
|
5456
|
+
"content": [
|
|
5457
|
+
{
|
|
5458
|
+
"styles": {},
|
|
5459
|
+
"text": "Cell 5",
|
|
5460
|
+
"type": "text",
|
|
5461
|
+
},
|
|
5462
|
+
],
|
|
5463
|
+
"props": {
|
|
5464
|
+
"backgroundColor": "default",
|
|
5465
|
+
"colspan": 1,
|
|
5466
|
+
"rowspan": 1,
|
|
5467
|
+
"textAlignment": "left",
|
|
5468
|
+
"textColor": "default",
|
|
5469
|
+
},
|
|
5470
|
+
"type": "tableCell",
|
|
5471
|
+
},
|
|
5472
|
+
{
|
|
5473
|
+
"content": [
|
|
5474
|
+
{
|
|
5475
|
+
"styles": {},
|
|
5476
|
+
"text": "Cell 6",
|
|
5477
|
+
"type": "text",
|
|
5478
|
+
},
|
|
5479
|
+
],
|
|
5480
|
+
"props": {
|
|
5481
|
+
"backgroundColor": "default",
|
|
5482
|
+
"colspan": 1,
|
|
5483
|
+
"rowspan": 1,
|
|
5484
|
+
"textAlignment": "left",
|
|
5485
|
+
"textColor": "default",
|
|
5486
|
+
},
|
|
5487
|
+
"type": "tableCell",
|
|
5488
|
+
},
|
|
4599
5489
|
],
|
|
4600
5490
|
},
|
|
4601
5491
|
{
|
|
4602
5492
|
"cells": [
|
|
4603
|
-
|
|
4604
|
-
|
|
4605
|
-
|
|
4606
|
-
|
|
4607
|
-
|
|
4608
|
-
|
|
4609
|
-
|
|
4610
|
-
|
|
4611
|
-
{
|
|
4612
|
-
"
|
|
4613
|
-
"
|
|
4614
|
-
"
|
|
4615
|
-
|
|
4616
|
-
|
|
4617
|
-
|
|
4618
|
-
|
|
4619
|
-
|
|
4620
|
-
|
|
4621
|
-
|
|
4622
|
-
|
|
4623
|
-
|
|
5493
|
+
{
|
|
5494
|
+
"content": [
|
|
5495
|
+
{
|
|
5496
|
+
"styles": {},
|
|
5497
|
+
"text": "Cell 7",
|
|
5498
|
+
"type": "text",
|
|
5499
|
+
},
|
|
5500
|
+
],
|
|
5501
|
+
"props": {
|
|
5502
|
+
"backgroundColor": "default",
|
|
5503
|
+
"colspan": 1,
|
|
5504
|
+
"rowspan": 1,
|
|
5505
|
+
"textAlignment": "left",
|
|
5506
|
+
"textColor": "default",
|
|
5507
|
+
},
|
|
5508
|
+
"type": "tableCell",
|
|
5509
|
+
},
|
|
5510
|
+
{
|
|
5511
|
+
"content": [
|
|
5512
|
+
{
|
|
5513
|
+
"styles": {},
|
|
5514
|
+
"text": "Cell 8",
|
|
5515
|
+
"type": "text",
|
|
5516
|
+
},
|
|
5517
|
+
],
|
|
5518
|
+
"props": {
|
|
5519
|
+
"backgroundColor": "default",
|
|
5520
|
+
"colspan": 1,
|
|
5521
|
+
"rowspan": 1,
|
|
5522
|
+
"textAlignment": "left",
|
|
5523
|
+
"textColor": "default",
|
|
5524
|
+
},
|
|
5525
|
+
"type": "tableCell",
|
|
5526
|
+
},
|
|
5527
|
+
{
|
|
5528
|
+
"content": [
|
|
5529
|
+
{
|
|
5530
|
+
"styles": {},
|
|
5531
|
+
"text": "Cell 9",
|
|
5532
|
+
"type": "text",
|
|
5533
|
+
},
|
|
5534
|
+
],
|
|
5535
|
+
"props": {
|
|
5536
|
+
"backgroundColor": "default",
|
|
5537
|
+
"colspan": 1,
|
|
5538
|
+
"rowspan": 1,
|
|
5539
|
+
"textAlignment": "left",
|
|
5540
|
+
"textColor": "default",
|
|
5541
|
+
},
|
|
5542
|
+
"type": "tableCell",
|
|
5543
|
+
},
|
|
4624
5544
|
],
|
|
4625
5545
|
},
|
|
4626
5546
|
],
|
|
@@ -5021,80 +5941,172 @@ exports[`Test moveBlocksUp > Basic 1`] = `
|
|
|
5021
5941
|
undefined,
|
|
5022
5942
|
undefined,
|
|
5023
5943
|
],
|
|
5944
|
+
"headerCols": undefined,
|
|
5945
|
+
"headerRows": undefined,
|
|
5024
5946
|
"rows": [
|
|
5025
5947
|
{
|
|
5026
5948
|
"cells": [
|
|
5027
|
-
|
|
5028
|
-
|
|
5029
|
-
|
|
5030
|
-
|
|
5031
|
-
|
|
5032
|
-
|
|
5033
|
-
|
|
5034
|
-
|
|
5035
|
-
{
|
|
5036
|
-
"
|
|
5037
|
-
"
|
|
5038
|
-
"
|
|
5039
|
-
|
|
5040
|
-
|
|
5041
|
-
|
|
5042
|
-
|
|
5043
|
-
|
|
5044
|
-
|
|
5045
|
-
|
|
5046
|
-
|
|
5047
|
-
|
|
5949
|
+
{
|
|
5950
|
+
"content": [
|
|
5951
|
+
{
|
|
5952
|
+
"styles": {},
|
|
5953
|
+
"text": "Cell 1",
|
|
5954
|
+
"type": "text",
|
|
5955
|
+
},
|
|
5956
|
+
],
|
|
5957
|
+
"props": {
|
|
5958
|
+
"backgroundColor": "default",
|
|
5959
|
+
"colspan": 1,
|
|
5960
|
+
"rowspan": 1,
|
|
5961
|
+
"textAlignment": "left",
|
|
5962
|
+
"textColor": "default",
|
|
5963
|
+
},
|
|
5964
|
+
"type": "tableCell",
|
|
5965
|
+
},
|
|
5966
|
+
{
|
|
5967
|
+
"content": [
|
|
5968
|
+
{
|
|
5969
|
+
"styles": {},
|
|
5970
|
+
"text": "Cell 2",
|
|
5971
|
+
"type": "text",
|
|
5972
|
+
},
|
|
5973
|
+
],
|
|
5974
|
+
"props": {
|
|
5975
|
+
"backgroundColor": "default",
|
|
5976
|
+
"colspan": 1,
|
|
5977
|
+
"rowspan": 1,
|
|
5978
|
+
"textAlignment": "left",
|
|
5979
|
+
"textColor": "default",
|
|
5980
|
+
},
|
|
5981
|
+
"type": "tableCell",
|
|
5982
|
+
},
|
|
5983
|
+
{
|
|
5984
|
+
"content": [
|
|
5985
|
+
{
|
|
5986
|
+
"styles": {},
|
|
5987
|
+
"text": "Cell 3",
|
|
5988
|
+
"type": "text",
|
|
5989
|
+
},
|
|
5990
|
+
],
|
|
5991
|
+
"props": {
|
|
5992
|
+
"backgroundColor": "default",
|
|
5993
|
+
"colspan": 1,
|
|
5994
|
+
"rowspan": 1,
|
|
5995
|
+
"textAlignment": "left",
|
|
5996
|
+
"textColor": "default",
|
|
5997
|
+
},
|
|
5998
|
+
"type": "tableCell",
|
|
5999
|
+
},
|
|
5048
6000
|
],
|
|
5049
6001
|
},
|
|
5050
6002
|
{
|
|
5051
6003
|
"cells": [
|
|
5052
|
-
|
|
5053
|
-
|
|
5054
|
-
|
|
5055
|
-
|
|
5056
|
-
|
|
5057
|
-
|
|
5058
|
-
|
|
5059
|
-
|
|
5060
|
-
{
|
|
5061
|
-
"
|
|
5062
|
-
"
|
|
5063
|
-
"
|
|
5064
|
-
|
|
5065
|
-
|
|
5066
|
-
|
|
5067
|
-
|
|
5068
|
-
|
|
5069
|
-
|
|
5070
|
-
|
|
5071
|
-
|
|
5072
|
-
|
|
6004
|
+
{
|
|
6005
|
+
"content": [
|
|
6006
|
+
{
|
|
6007
|
+
"styles": {},
|
|
6008
|
+
"text": "Cell 4",
|
|
6009
|
+
"type": "text",
|
|
6010
|
+
},
|
|
6011
|
+
],
|
|
6012
|
+
"props": {
|
|
6013
|
+
"backgroundColor": "default",
|
|
6014
|
+
"colspan": 1,
|
|
6015
|
+
"rowspan": 1,
|
|
6016
|
+
"textAlignment": "left",
|
|
6017
|
+
"textColor": "default",
|
|
6018
|
+
},
|
|
6019
|
+
"type": "tableCell",
|
|
6020
|
+
},
|
|
6021
|
+
{
|
|
6022
|
+
"content": [
|
|
6023
|
+
{
|
|
6024
|
+
"styles": {},
|
|
6025
|
+
"text": "Cell 5",
|
|
6026
|
+
"type": "text",
|
|
6027
|
+
},
|
|
6028
|
+
],
|
|
6029
|
+
"props": {
|
|
6030
|
+
"backgroundColor": "default",
|
|
6031
|
+
"colspan": 1,
|
|
6032
|
+
"rowspan": 1,
|
|
6033
|
+
"textAlignment": "left",
|
|
6034
|
+
"textColor": "default",
|
|
6035
|
+
},
|
|
6036
|
+
"type": "tableCell",
|
|
6037
|
+
},
|
|
6038
|
+
{
|
|
6039
|
+
"content": [
|
|
6040
|
+
{
|
|
6041
|
+
"styles": {},
|
|
6042
|
+
"text": "Cell 6",
|
|
6043
|
+
"type": "text",
|
|
6044
|
+
},
|
|
6045
|
+
],
|
|
6046
|
+
"props": {
|
|
6047
|
+
"backgroundColor": "default",
|
|
6048
|
+
"colspan": 1,
|
|
6049
|
+
"rowspan": 1,
|
|
6050
|
+
"textAlignment": "left",
|
|
6051
|
+
"textColor": "default",
|
|
6052
|
+
},
|
|
6053
|
+
"type": "tableCell",
|
|
6054
|
+
},
|
|
5073
6055
|
],
|
|
5074
6056
|
},
|
|
5075
6057
|
{
|
|
5076
6058
|
"cells": [
|
|
5077
|
-
|
|
5078
|
-
|
|
5079
|
-
|
|
5080
|
-
|
|
5081
|
-
|
|
5082
|
-
|
|
5083
|
-
|
|
5084
|
-
|
|
5085
|
-
{
|
|
5086
|
-
"
|
|
5087
|
-
"
|
|
5088
|
-
"
|
|
5089
|
-
|
|
5090
|
-
|
|
5091
|
-
|
|
5092
|
-
|
|
5093
|
-
|
|
5094
|
-
|
|
5095
|
-
|
|
5096
|
-
|
|
5097
|
-
|
|
6059
|
+
{
|
|
6060
|
+
"content": [
|
|
6061
|
+
{
|
|
6062
|
+
"styles": {},
|
|
6063
|
+
"text": "Cell 7",
|
|
6064
|
+
"type": "text",
|
|
6065
|
+
},
|
|
6066
|
+
],
|
|
6067
|
+
"props": {
|
|
6068
|
+
"backgroundColor": "default",
|
|
6069
|
+
"colspan": 1,
|
|
6070
|
+
"rowspan": 1,
|
|
6071
|
+
"textAlignment": "left",
|
|
6072
|
+
"textColor": "default",
|
|
6073
|
+
},
|
|
6074
|
+
"type": "tableCell",
|
|
6075
|
+
},
|
|
6076
|
+
{
|
|
6077
|
+
"content": [
|
|
6078
|
+
{
|
|
6079
|
+
"styles": {},
|
|
6080
|
+
"text": "Cell 8",
|
|
6081
|
+
"type": "text",
|
|
6082
|
+
},
|
|
6083
|
+
],
|
|
6084
|
+
"props": {
|
|
6085
|
+
"backgroundColor": "default",
|
|
6086
|
+
"colspan": 1,
|
|
6087
|
+
"rowspan": 1,
|
|
6088
|
+
"textAlignment": "left",
|
|
6089
|
+
"textColor": "default",
|
|
6090
|
+
},
|
|
6091
|
+
"type": "tableCell",
|
|
6092
|
+
},
|
|
6093
|
+
{
|
|
6094
|
+
"content": [
|
|
6095
|
+
{
|
|
6096
|
+
"styles": {},
|
|
6097
|
+
"text": "Cell 9",
|
|
6098
|
+
"type": "text",
|
|
6099
|
+
},
|
|
6100
|
+
],
|
|
6101
|
+
"props": {
|
|
6102
|
+
"backgroundColor": "default",
|
|
6103
|
+
"colspan": 1,
|
|
6104
|
+
"rowspan": 1,
|
|
6105
|
+
"textAlignment": "left",
|
|
6106
|
+
"textColor": "default",
|
|
6107
|
+
},
|
|
6108
|
+
"type": "tableCell",
|
|
6109
|
+
},
|
|
5098
6110
|
],
|
|
5099
6111
|
},
|
|
5100
6112
|
],
|
|
@@ -5496,80 +6508,172 @@ exports[`Test moveBlocksUp > First block 1`] = `
|
|
|
5496
6508
|
undefined,
|
|
5497
6509
|
undefined,
|
|
5498
6510
|
],
|
|
6511
|
+
"headerCols": undefined,
|
|
6512
|
+
"headerRows": undefined,
|
|
5499
6513
|
"rows": [
|
|
5500
6514
|
{
|
|
5501
6515
|
"cells": [
|
|
5502
|
-
|
|
5503
|
-
|
|
5504
|
-
|
|
5505
|
-
|
|
5506
|
-
|
|
5507
|
-
|
|
5508
|
-
|
|
5509
|
-
|
|
5510
|
-
{
|
|
5511
|
-
"
|
|
5512
|
-
"
|
|
5513
|
-
"
|
|
5514
|
-
|
|
5515
|
-
|
|
5516
|
-
|
|
5517
|
-
|
|
5518
|
-
|
|
5519
|
-
|
|
5520
|
-
|
|
5521
|
-
|
|
5522
|
-
|
|
6516
|
+
{
|
|
6517
|
+
"content": [
|
|
6518
|
+
{
|
|
6519
|
+
"styles": {},
|
|
6520
|
+
"text": "Cell 1",
|
|
6521
|
+
"type": "text",
|
|
6522
|
+
},
|
|
6523
|
+
],
|
|
6524
|
+
"props": {
|
|
6525
|
+
"backgroundColor": "default",
|
|
6526
|
+
"colspan": 1,
|
|
6527
|
+
"rowspan": 1,
|
|
6528
|
+
"textAlignment": "left",
|
|
6529
|
+
"textColor": "default",
|
|
6530
|
+
},
|
|
6531
|
+
"type": "tableCell",
|
|
6532
|
+
},
|
|
6533
|
+
{
|
|
6534
|
+
"content": [
|
|
6535
|
+
{
|
|
6536
|
+
"styles": {},
|
|
6537
|
+
"text": "Cell 2",
|
|
6538
|
+
"type": "text",
|
|
6539
|
+
},
|
|
6540
|
+
],
|
|
6541
|
+
"props": {
|
|
6542
|
+
"backgroundColor": "default",
|
|
6543
|
+
"colspan": 1,
|
|
6544
|
+
"rowspan": 1,
|
|
6545
|
+
"textAlignment": "left",
|
|
6546
|
+
"textColor": "default",
|
|
6547
|
+
},
|
|
6548
|
+
"type": "tableCell",
|
|
6549
|
+
},
|
|
6550
|
+
{
|
|
6551
|
+
"content": [
|
|
6552
|
+
{
|
|
6553
|
+
"styles": {},
|
|
6554
|
+
"text": "Cell 3",
|
|
6555
|
+
"type": "text",
|
|
6556
|
+
},
|
|
6557
|
+
],
|
|
6558
|
+
"props": {
|
|
6559
|
+
"backgroundColor": "default",
|
|
6560
|
+
"colspan": 1,
|
|
6561
|
+
"rowspan": 1,
|
|
6562
|
+
"textAlignment": "left",
|
|
6563
|
+
"textColor": "default",
|
|
6564
|
+
},
|
|
6565
|
+
"type": "tableCell",
|
|
6566
|
+
},
|
|
5523
6567
|
],
|
|
5524
6568
|
},
|
|
5525
6569
|
{
|
|
5526
6570
|
"cells": [
|
|
5527
|
-
|
|
5528
|
-
|
|
5529
|
-
|
|
5530
|
-
|
|
5531
|
-
|
|
5532
|
-
|
|
5533
|
-
|
|
5534
|
-
|
|
5535
|
-
{
|
|
5536
|
-
"
|
|
5537
|
-
"
|
|
5538
|
-
"
|
|
5539
|
-
|
|
5540
|
-
|
|
5541
|
-
|
|
5542
|
-
|
|
5543
|
-
|
|
5544
|
-
|
|
5545
|
-
|
|
5546
|
-
|
|
5547
|
-
|
|
6571
|
+
{
|
|
6572
|
+
"content": [
|
|
6573
|
+
{
|
|
6574
|
+
"styles": {},
|
|
6575
|
+
"text": "Cell 4",
|
|
6576
|
+
"type": "text",
|
|
6577
|
+
},
|
|
6578
|
+
],
|
|
6579
|
+
"props": {
|
|
6580
|
+
"backgroundColor": "default",
|
|
6581
|
+
"colspan": 1,
|
|
6582
|
+
"rowspan": 1,
|
|
6583
|
+
"textAlignment": "left",
|
|
6584
|
+
"textColor": "default",
|
|
6585
|
+
},
|
|
6586
|
+
"type": "tableCell",
|
|
6587
|
+
},
|
|
6588
|
+
{
|
|
6589
|
+
"content": [
|
|
6590
|
+
{
|
|
6591
|
+
"styles": {},
|
|
6592
|
+
"text": "Cell 5",
|
|
6593
|
+
"type": "text",
|
|
6594
|
+
},
|
|
6595
|
+
],
|
|
6596
|
+
"props": {
|
|
6597
|
+
"backgroundColor": "default",
|
|
6598
|
+
"colspan": 1,
|
|
6599
|
+
"rowspan": 1,
|
|
6600
|
+
"textAlignment": "left",
|
|
6601
|
+
"textColor": "default",
|
|
6602
|
+
},
|
|
6603
|
+
"type": "tableCell",
|
|
6604
|
+
},
|
|
6605
|
+
{
|
|
6606
|
+
"content": [
|
|
6607
|
+
{
|
|
6608
|
+
"styles": {},
|
|
6609
|
+
"text": "Cell 6",
|
|
6610
|
+
"type": "text",
|
|
6611
|
+
},
|
|
6612
|
+
],
|
|
6613
|
+
"props": {
|
|
6614
|
+
"backgroundColor": "default",
|
|
6615
|
+
"colspan": 1,
|
|
6616
|
+
"rowspan": 1,
|
|
6617
|
+
"textAlignment": "left",
|
|
6618
|
+
"textColor": "default",
|
|
6619
|
+
},
|
|
6620
|
+
"type": "tableCell",
|
|
6621
|
+
},
|
|
5548
6622
|
],
|
|
5549
6623
|
},
|
|
5550
6624
|
{
|
|
5551
6625
|
"cells": [
|
|
5552
|
-
|
|
5553
|
-
|
|
5554
|
-
|
|
5555
|
-
|
|
5556
|
-
|
|
5557
|
-
|
|
5558
|
-
|
|
5559
|
-
|
|
5560
|
-
{
|
|
5561
|
-
"
|
|
5562
|
-
"
|
|
5563
|
-
"
|
|
5564
|
-
|
|
5565
|
-
|
|
5566
|
-
|
|
5567
|
-
|
|
5568
|
-
|
|
5569
|
-
|
|
5570
|
-
|
|
5571
|
-
|
|
5572
|
-
|
|
6626
|
+
{
|
|
6627
|
+
"content": [
|
|
6628
|
+
{
|
|
6629
|
+
"styles": {},
|
|
6630
|
+
"text": "Cell 7",
|
|
6631
|
+
"type": "text",
|
|
6632
|
+
},
|
|
6633
|
+
],
|
|
6634
|
+
"props": {
|
|
6635
|
+
"backgroundColor": "default",
|
|
6636
|
+
"colspan": 1,
|
|
6637
|
+
"rowspan": 1,
|
|
6638
|
+
"textAlignment": "left",
|
|
6639
|
+
"textColor": "default",
|
|
6640
|
+
},
|
|
6641
|
+
"type": "tableCell",
|
|
6642
|
+
},
|
|
6643
|
+
{
|
|
6644
|
+
"content": [
|
|
6645
|
+
{
|
|
6646
|
+
"styles": {},
|
|
6647
|
+
"text": "Cell 8",
|
|
6648
|
+
"type": "text",
|
|
6649
|
+
},
|
|
6650
|
+
],
|
|
6651
|
+
"props": {
|
|
6652
|
+
"backgroundColor": "default",
|
|
6653
|
+
"colspan": 1,
|
|
6654
|
+
"rowspan": 1,
|
|
6655
|
+
"textAlignment": "left",
|
|
6656
|
+
"textColor": "default",
|
|
6657
|
+
},
|
|
6658
|
+
"type": "tableCell",
|
|
6659
|
+
},
|
|
6660
|
+
{
|
|
6661
|
+
"content": [
|
|
6662
|
+
{
|
|
6663
|
+
"styles": {},
|
|
6664
|
+
"text": "Cell 9",
|
|
6665
|
+
"type": "text",
|
|
6666
|
+
},
|
|
6667
|
+
],
|
|
6668
|
+
"props": {
|
|
6669
|
+
"backgroundColor": "default",
|
|
6670
|
+
"colspan": 1,
|
|
6671
|
+
"rowspan": 1,
|
|
6672
|
+
"textAlignment": "left",
|
|
6673
|
+
"textColor": "default",
|
|
6674
|
+
},
|
|
6675
|
+
"type": "tableCell",
|
|
6676
|
+
},
|
|
5573
6677
|
],
|
|
5574
6678
|
},
|
|
5575
6679
|
],
|
|
@@ -5971,80 +7075,172 @@ exports[`Test moveBlocksUp > Into children 1`] = `
|
|
|
5971
7075
|
undefined,
|
|
5972
7076
|
undefined,
|
|
5973
7077
|
],
|
|
7078
|
+
"headerCols": undefined,
|
|
7079
|
+
"headerRows": undefined,
|
|
5974
7080
|
"rows": [
|
|
5975
7081
|
{
|
|
5976
7082
|
"cells": [
|
|
5977
|
-
|
|
5978
|
-
|
|
5979
|
-
|
|
5980
|
-
|
|
5981
|
-
|
|
5982
|
-
|
|
5983
|
-
|
|
5984
|
-
|
|
5985
|
-
{
|
|
5986
|
-
"
|
|
5987
|
-
"
|
|
5988
|
-
"
|
|
5989
|
-
|
|
5990
|
-
|
|
5991
|
-
|
|
5992
|
-
|
|
5993
|
-
|
|
5994
|
-
|
|
5995
|
-
|
|
5996
|
-
|
|
5997
|
-
|
|
7083
|
+
{
|
|
7084
|
+
"content": [
|
|
7085
|
+
{
|
|
7086
|
+
"styles": {},
|
|
7087
|
+
"text": "Cell 1",
|
|
7088
|
+
"type": "text",
|
|
7089
|
+
},
|
|
7090
|
+
],
|
|
7091
|
+
"props": {
|
|
7092
|
+
"backgroundColor": "default",
|
|
7093
|
+
"colspan": 1,
|
|
7094
|
+
"rowspan": 1,
|
|
7095
|
+
"textAlignment": "left",
|
|
7096
|
+
"textColor": "default",
|
|
7097
|
+
},
|
|
7098
|
+
"type": "tableCell",
|
|
7099
|
+
},
|
|
7100
|
+
{
|
|
7101
|
+
"content": [
|
|
7102
|
+
{
|
|
7103
|
+
"styles": {},
|
|
7104
|
+
"text": "Cell 2",
|
|
7105
|
+
"type": "text",
|
|
7106
|
+
},
|
|
7107
|
+
],
|
|
7108
|
+
"props": {
|
|
7109
|
+
"backgroundColor": "default",
|
|
7110
|
+
"colspan": 1,
|
|
7111
|
+
"rowspan": 1,
|
|
7112
|
+
"textAlignment": "left",
|
|
7113
|
+
"textColor": "default",
|
|
7114
|
+
},
|
|
7115
|
+
"type": "tableCell",
|
|
7116
|
+
},
|
|
7117
|
+
{
|
|
7118
|
+
"content": [
|
|
7119
|
+
{
|
|
7120
|
+
"styles": {},
|
|
7121
|
+
"text": "Cell 3",
|
|
7122
|
+
"type": "text",
|
|
7123
|
+
},
|
|
7124
|
+
],
|
|
7125
|
+
"props": {
|
|
7126
|
+
"backgroundColor": "default",
|
|
7127
|
+
"colspan": 1,
|
|
7128
|
+
"rowspan": 1,
|
|
7129
|
+
"textAlignment": "left",
|
|
7130
|
+
"textColor": "default",
|
|
7131
|
+
},
|
|
7132
|
+
"type": "tableCell",
|
|
7133
|
+
},
|
|
5998
7134
|
],
|
|
5999
7135
|
},
|
|
6000
7136
|
{
|
|
6001
7137
|
"cells": [
|
|
6002
|
-
|
|
6003
|
-
|
|
6004
|
-
|
|
6005
|
-
|
|
6006
|
-
|
|
6007
|
-
|
|
6008
|
-
|
|
6009
|
-
|
|
6010
|
-
{
|
|
6011
|
-
"
|
|
6012
|
-
"
|
|
6013
|
-
"
|
|
6014
|
-
|
|
6015
|
-
|
|
6016
|
-
|
|
6017
|
-
|
|
6018
|
-
|
|
6019
|
-
|
|
6020
|
-
|
|
6021
|
-
|
|
6022
|
-
|
|
7138
|
+
{
|
|
7139
|
+
"content": [
|
|
7140
|
+
{
|
|
7141
|
+
"styles": {},
|
|
7142
|
+
"text": "Cell 4",
|
|
7143
|
+
"type": "text",
|
|
7144
|
+
},
|
|
7145
|
+
],
|
|
7146
|
+
"props": {
|
|
7147
|
+
"backgroundColor": "default",
|
|
7148
|
+
"colspan": 1,
|
|
7149
|
+
"rowspan": 1,
|
|
7150
|
+
"textAlignment": "left",
|
|
7151
|
+
"textColor": "default",
|
|
7152
|
+
},
|
|
7153
|
+
"type": "tableCell",
|
|
7154
|
+
},
|
|
7155
|
+
{
|
|
7156
|
+
"content": [
|
|
7157
|
+
{
|
|
7158
|
+
"styles": {},
|
|
7159
|
+
"text": "Cell 5",
|
|
7160
|
+
"type": "text",
|
|
7161
|
+
},
|
|
7162
|
+
],
|
|
7163
|
+
"props": {
|
|
7164
|
+
"backgroundColor": "default",
|
|
7165
|
+
"colspan": 1,
|
|
7166
|
+
"rowspan": 1,
|
|
7167
|
+
"textAlignment": "left",
|
|
7168
|
+
"textColor": "default",
|
|
7169
|
+
},
|
|
7170
|
+
"type": "tableCell",
|
|
7171
|
+
},
|
|
7172
|
+
{
|
|
7173
|
+
"content": [
|
|
7174
|
+
{
|
|
7175
|
+
"styles": {},
|
|
7176
|
+
"text": "Cell 6",
|
|
7177
|
+
"type": "text",
|
|
7178
|
+
},
|
|
7179
|
+
],
|
|
7180
|
+
"props": {
|
|
7181
|
+
"backgroundColor": "default",
|
|
7182
|
+
"colspan": 1,
|
|
7183
|
+
"rowspan": 1,
|
|
7184
|
+
"textAlignment": "left",
|
|
7185
|
+
"textColor": "default",
|
|
7186
|
+
},
|
|
7187
|
+
"type": "tableCell",
|
|
7188
|
+
},
|
|
6023
7189
|
],
|
|
6024
7190
|
},
|
|
6025
7191
|
{
|
|
6026
7192
|
"cells": [
|
|
6027
|
-
|
|
6028
|
-
|
|
6029
|
-
|
|
6030
|
-
|
|
6031
|
-
|
|
6032
|
-
|
|
6033
|
-
|
|
6034
|
-
|
|
6035
|
-
{
|
|
6036
|
-
"
|
|
6037
|
-
"
|
|
6038
|
-
"
|
|
6039
|
-
|
|
6040
|
-
|
|
6041
|
-
|
|
6042
|
-
|
|
6043
|
-
|
|
6044
|
-
|
|
6045
|
-
|
|
6046
|
-
|
|
6047
|
-
|
|
7193
|
+
{
|
|
7194
|
+
"content": [
|
|
7195
|
+
{
|
|
7196
|
+
"styles": {},
|
|
7197
|
+
"text": "Cell 7",
|
|
7198
|
+
"type": "text",
|
|
7199
|
+
},
|
|
7200
|
+
],
|
|
7201
|
+
"props": {
|
|
7202
|
+
"backgroundColor": "default",
|
|
7203
|
+
"colspan": 1,
|
|
7204
|
+
"rowspan": 1,
|
|
7205
|
+
"textAlignment": "left",
|
|
7206
|
+
"textColor": "default",
|
|
7207
|
+
},
|
|
7208
|
+
"type": "tableCell",
|
|
7209
|
+
},
|
|
7210
|
+
{
|
|
7211
|
+
"content": [
|
|
7212
|
+
{
|
|
7213
|
+
"styles": {},
|
|
7214
|
+
"text": "Cell 8",
|
|
7215
|
+
"type": "text",
|
|
7216
|
+
},
|
|
7217
|
+
],
|
|
7218
|
+
"props": {
|
|
7219
|
+
"backgroundColor": "default",
|
|
7220
|
+
"colspan": 1,
|
|
7221
|
+
"rowspan": 1,
|
|
7222
|
+
"textAlignment": "left",
|
|
7223
|
+
"textColor": "default",
|
|
7224
|
+
},
|
|
7225
|
+
"type": "tableCell",
|
|
7226
|
+
},
|
|
7227
|
+
{
|
|
7228
|
+
"content": [
|
|
7229
|
+
{
|
|
7230
|
+
"styles": {},
|
|
7231
|
+
"text": "Cell 9",
|
|
7232
|
+
"type": "text",
|
|
7233
|
+
},
|
|
7234
|
+
],
|
|
7235
|
+
"props": {
|
|
7236
|
+
"backgroundColor": "default",
|
|
7237
|
+
"colspan": 1,
|
|
7238
|
+
"rowspan": 1,
|
|
7239
|
+
"textAlignment": "left",
|
|
7240
|
+
"textColor": "default",
|
|
7241
|
+
},
|
|
7242
|
+
"type": "tableCell",
|
|
7243
|
+
},
|
|
6048
7244
|
],
|
|
6049
7245
|
},
|
|
6050
7246
|
],
|
|
@@ -6446,80 +7642,172 @@ exports[`Test moveBlocksUp > Multiple blocks 1`] = `
|
|
|
6446
7642
|
undefined,
|
|
6447
7643
|
undefined,
|
|
6448
7644
|
],
|
|
7645
|
+
"headerCols": undefined,
|
|
7646
|
+
"headerRows": undefined,
|
|
6449
7647
|
"rows": [
|
|
6450
7648
|
{
|
|
6451
7649
|
"cells": [
|
|
6452
|
-
|
|
6453
|
-
|
|
6454
|
-
|
|
6455
|
-
|
|
6456
|
-
|
|
6457
|
-
|
|
6458
|
-
|
|
6459
|
-
|
|
6460
|
-
{
|
|
6461
|
-
"
|
|
6462
|
-
"
|
|
6463
|
-
"
|
|
6464
|
-
|
|
6465
|
-
|
|
6466
|
-
|
|
6467
|
-
|
|
6468
|
-
|
|
6469
|
-
|
|
6470
|
-
|
|
6471
|
-
|
|
6472
|
-
|
|
7650
|
+
{
|
|
7651
|
+
"content": [
|
|
7652
|
+
{
|
|
7653
|
+
"styles": {},
|
|
7654
|
+
"text": "Cell 1",
|
|
7655
|
+
"type": "text",
|
|
7656
|
+
},
|
|
7657
|
+
],
|
|
7658
|
+
"props": {
|
|
7659
|
+
"backgroundColor": "default",
|
|
7660
|
+
"colspan": 1,
|
|
7661
|
+
"rowspan": 1,
|
|
7662
|
+
"textAlignment": "left",
|
|
7663
|
+
"textColor": "default",
|
|
7664
|
+
},
|
|
7665
|
+
"type": "tableCell",
|
|
7666
|
+
},
|
|
7667
|
+
{
|
|
7668
|
+
"content": [
|
|
7669
|
+
{
|
|
7670
|
+
"styles": {},
|
|
7671
|
+
"text": "Cell 2",
|
|
7672
|
+
"type": "text",
|
|
7673
|
+
},
|
|
7674
|
+
],
|
|
7675
|
+
"props": {
|
|
7676
|
+
"backgroundColor": "default",
|
|
7677
|
+
"colspan": 1,
|
|
7678
|
+
"rowspan": 1,
|
|
7679
|
+
"textAlignment": "left",
|
|
7680
|
+
"textColor": "default",
|
|
7681
|
+
},
|
|
7682
|
+
"type": "tableCell",
|
|
7683
|
+
},
|
|
7684
|
+
{
|
|
7685
|
+
"content": [
|
|
7686
|
+
{
|
|
7687
|
+
"styles": {},
|
|
7688
|
+
"text": "Cell 3",
|
|
7689
|
+
"type": "text",
|
|
7690
|
+
},
|
|
7691
|
+
],
|
|
7692
|
+
"props": {
|
|
7693
|
+
"backgroundColor": "default",
|
|
7694
|
+
"colspan": 1,
|
|
7695
|
+
"rowspan": 1,
|
|
7696
|
+
"textAlignment": "left",
|
|
7697
|
+
"textColor": "default",
|
|
7698
|
+
},
|
|
7699
|
+
"type": "tableCell",
|
|
7700
|
+
},
|
|
6473
7701
|
],
|
|
6474
7702
|
},
|
|
6475
7703
|
{
|
|
6476
7704
|
"cells": [
|
|
6477
|
-
|
|
6478
|
-
|
|
6479
|
-
|
|
6480
|
-
|
|
6481
|
-
|
|
6482
|
-
|
|
6483
|
-
|
|
6484
|
-
|
|
6485
|
-
{
|
|
6486
|
-
"
|
|
6487
|
-
"
|
|
6488
|
-
"
|
|
6489
|
-
|
|
6490
|
-
|
|
6491
|
-
|
|
6492
|
-
|
|
6493
|
-
|
|
6494
|
-
|
|
6495
|
-
|
|
6496
|
-
|
|
6497
|
-
|
|
7705
|
+
{
|
|
7706
|
+
"content": [
|
|
7707
|
+
{
|
|
7708
|
+
"styles": {},
|
|
7709
|
+
"text": "Cell 4",
|
|
7710
|
+
"type": "text",
|
|
7711
|
+
},
|
|
7712
|
+
],
|
|
7713
|
+
"props": {
|
|
7714
|
+
"backgroundColor": "default",
|
|
7715
|
+
"colspan": 1,
|
|
7716
|
+
"rowspan": 1,
|
|
7717
|
+
"textAlignment": "left",
|
|
7718
|
+
"textColor": "default",
|
|
7719
|
+
},
|
|
7720
|
+
"type": "tableCell",
|
|
7721
|
+
},
|
|
7722
|
+
{
|
|
7723
|
+
"content": [
|
|
7724
|
+
{
|
|
7725
|
+
"styles": {},
|
|
7726
|
+
"text": "Cell 5",
|
|
7727
|
+
"type": "text",
|
|
7728
|
+
},
|
|
7729
|
+
],
|
|
7730
|
+
"props": {
|
|
7731
|
+
"backgroundColor": "default",
|
|
7732
|
+
"colspan": 1,
|
|
7733
|
+
"rowspan": 1,
|
|
7734
|
+
"textAlignment": "left",
|
|
7735
|
+
"textColor": "default",
|
|
7736
|
+
},
|
|
7737
|
+
"type": "tableCell",
|
|
7738
|
+
},
|
|
7739
|
+
{
|
|
7740
|
+
"content": [
|
|
7741
|
+
{
|
|
7742
|
+
"styles": {},
|
|
7743
|
+
"text": "Cell 6",
|
|
7744
|
+
"type": "text",
|
|
7745
|
+
},
|
|
7746
|
+
],
|
|
7747
|
+
"props": {
|
|
7748
|
+
"backgroundColor": "default",
|
|
7749
|
+
"colspan": 1,
|
|
7750
|
+
"rowspan": 1,
|
|
7751
|
+
"textAlignment": "left",
|
|
7752
|
+
"textColor": "default",
|
|
7753
|
+
},
|
|
7754
|
+
"type": "tableCell",
|
|
7755
|
+
},
|
|
6498
7756
|
],
|
|
6499
7757
|
},
|
|
6500
7758
|
{
|
|
6501
7759
|
"cells": [
|
|
6502
|
-
|
|
6503
|
-
|
|
6504
|
-
|
|
6505
|
-
|
|
6506
|
-
|
|
6507
|
-
|
|
6508
|
-
|
|
6509
|
-
|
|
6510
|
-
{
|
|
6511
|
-
"
|
|
6512
|
-
"
|
|
6513
|
-
"
|
|
6514
|
-
|
|
6515
|
-
|
|
6516
|
-
|
|
6517
|
-
|
|
6518
|
-
|
|
6519
|
-
|
|
6520
|
-
|
|
6521
|
-
|
|
6522
|
-
|
|
7760
|
+
{
|
|
7761
|
+
"content": [
|
|
7762
|
+
{
|
|
7763
|
+
"styles": {},
|
|
7764
|
+
"text": "Cell 7",
|
|
7765
|
+
"type": "text",
|
|
7766
|
+
},
|
|
7767
|
+
],
|
|
7768
|
+
"props": {
|
|
7769
|
+
"backgroundColor": "default",
|
|
7770
|
+
"colspan": 1,
|
|
7771
|
+
"rowspan": 1,
|
|
7772
|
+
"textAlignment": "left",
|
|
7773
|
+
"textColor": "default",
|
|
7774
|
+
},
|
|
7775
|
+
"type": "tableCell",
|
|
7776
|
+
},
|
|
7777
|
+
{
|
|
7778
|
+
"content": [
|
|
7779
|
+
{
|
|
7780
|
+
"styles": {},
|
|
7781
|
+
"text": "Cell 8",
|
|
7782
|
+
"type": "text",
|
|
7783
|
+
},
|
|
7784
|
+
],
|
|
7785
|
+
"props": {
|
|
7786
|
+
"backgroundColor": "default",
|
|
7787
|
+
"colspan": 1,
|
|
7788
|
+
"rowspan": 1,
|
|
7789
|
+
"textAlignment": "left",
|
|
7790
|
+
"textColor": "default",
|
|
7791
|
+
},
|
|
7792
|
+
"type": "tableCell",
|
|
7793
|
+
},
|
|
7794
|
+
{
|
|
7795
|
+
"content": [
|
|
7796
|
+
{
|
|
7797
|
+
"styles": {},
|
|
7798
|
+
"text": "Cell 9",
|
|
7799
|
+
"type": "text",
|
|
7800
|
+
},
|
|
7801
|
+
],
|
|
7802
|
+
"props": {
|
|
7803
|
+
"backgroundColor": "default",
|
|
7804
|
+
"colspan": 1,
|
|
7805
|
+
"rowspan": 1,
|
|
7806
|
+
"textAlignment": "left",
|
|
7807
|
+
"textColor": "default",
|
|
7808
|
+
},
|
|
7809
|
+
"type": "tableCell",
|
|
7810
|
+
},
|
|
6523
7811
|
],
|
|
6524
7812
|
},
|
|
6525
7813
|
],
|
|
@@ -6921,80 +8209,172 @@ exports[`Test moveBlocksUp > Multiple blocks ending in block with children 1`] =
|
|
|
6921
8209
|
undefined,
|
|
6922
8210
|
undefined,
|
|
6923
8211
|
],
|
|
8212
|
+
"headerCols": undefined,
|
|
8213
|
+
"headerRows": undefined,
|
|
6924
8214
|
"rows": [
|
|
6925
8215
|
{
|
|
6926
8216
|
"cells": [
|
|
6927
|
-
|
|
6928
|
-
|
|
6929
|
-
|
|
6930
|
-
|
|
6931
|
-
|
|
6932
|
-
|
|
6933
|
-
|
|
6934
|
-
|
|
6935
|
-
{
|
|
6936
|
-
"
|
|
6937
|
-
"
|
|
6938
|
-
"
|
|
6939
|
-
|
|
6940
|
-
|
|
6941
|
-
|
|
6942
|
-
|
|
6943
|
-
|
|
6944
|
-
|
|
6945
|
-
|
|
6946
|
-
|
|
6947
|
-
|
|
8217
|
+
{
|
|
8218
|
+
"content": [
|
|
8219
|
+
{
|
|
8220
|
+
"styles": {},
|
|
8221
|
+
"text": "Cell 1",
|
|
8222
|
+
"type": "text",
|
|
8223
|
+
},
|
|
8224
|
+
],
|
|
8225
|
+
"props": {
|
|
8226
|
+
"backgroundColor": "default",
|
|
8227
|
+
"colspan": 1,
|
|
8228
|
+
"rowspan": 1,
|
|
8229
|
+
"textAlignment": "left",
|
|
8230
|
+
"textColor": "default",
|
|
8231
|
+
},
|
|
8232
|
+
"type": "tableCell",
|
|
8233
|
+
},
|
|
8234
|
+
{
|
|
8235
|
+
"content": [
|
|
8236
|
+
{
|
|
8237
|
+
"styles": {},
|
|
8238
|
+
"text": "Cell 2",
|
|
8239
|
+
"type": "text",
|
|
8240
|
+
},
|
|
8241
|
+
],
|
|
8242
|
+
"props": {
|
|
8243
|
+
"backgroundColor": "default",
|
|
8244
|
+
"colspan": 1,
|
|
8245
|
+
"rowspan": 1,
|
|
8246
|
+
"textAlignment": "left",
|
|
8247
|
+
"textColor": "default",
|
|
8248
|
+
},
|
|
8249
|
+
"type": "tableCell",
|
|
8250
|
+
},
|
|
8251
|
+
{
|
|
8252
|
+
"content": [
|
|
8253
|
+
{
|
|
8254
|
+
"styles": {},
|
|
8255
|
+
"text": "Cell 3",
|
|
8256
|
+
"type": "text",
|
|
8257
|
+
},
|
|
8258
|
+
],
|
|
8259
|
+
"props": {
|
|
8260
|
+
"backgroundColor": "default",
|
|
8261
|
+
"colspan": 1,
|
|
8262
|
+
"rowspan": 1,
|
|
8263
|
+
"textAlignment": "left",
|
|
8264
|
+
"textColor": "default",
|
|
8265
|
+
},
|
|
8266
|
+
"type": "tableCell",
|
|
8267
|
+
},
|
|
6948
8268
|
],
|
|
6949
8269
|
},
|
|
6950
8270
|
{
|
|
6951
8271
|
"cells": [
|
|
6952
|
-
|
|
6953
|
-
|
|
6954
|
-
|
|
6955
|
-
|
|
6956
|
-
|
|
6957
|
-
|
|
6958
|
-
|
|
6959
|
-
|
|
6960
|
-
{
|
|
6961
|
-
"
|
|
6962
|
-
"
|
|
6963
|
-
"
|
|
6964
|
-
|
|
6965
|
-
|
|
6966
|
-
|
|
6967
|
-
|
|
6968
|
-
|
|
6969
|
-
|
|
6970
|
-
|
|
6971
|
-
|
|
6972
|
-
|
|
8272
|
+
{
|
|
8273
|
+
"content": [
|
|
8274
|
+
{
|
|
8275
|
+
"styles": {},
|
|
8276
|
+
"text": "Cell 4",
|
|
8277
|
+
"type": "text",
|
|
8278
|
+
},
|
|
8279
|
+
],
|
|
8280
|
+
"props": {
|
|
8281
|
+
"backgroundColor": "default",
|
|
8282
|
+
"colspan": 1,
|
|
8283
|
+
"rowspan": 1,
|
|
8284
|
+
"textAlignment": "left",
|
|
8285
|
+
"textColor": "default",
|
|
8286
|
+
},
|
|
8287
|
+
"type": "tableCell",
|
|
8288
|
+
},
|
|
8289
|
+
{
|
|
8290
|
+
"content": [
|
|
8291
|
+
{
|
|
8292
|
+
"styles": {},
|
|
8293
|
+
"text": "Cell 5",
|
|
8294
|
+
"type": "text",
|
|
8295
|
+
},
|
|
8296
|
+
],
|
|
8297
|
+
"props": {
|
|
8298
|
+
"backgroundColor": "default",
|
|
8299
|
+
"colspan": 1,
|
|
8300
|
+
"rowspan": 1,
|
|
8301
|
+
"textAlignment": "left",
|
|
8302
|
+
"textColor": "default",
|
|
8303
|
+
},
|
|
8304
|
+
"type": "tableCell",
|
|
8305
|
+
},
|
|
8306
|
+
{
|
|
8307
|
+
"content": [
|
|
8308
|
+
{
|
|
8309
|
+
"styles": {},
|
|
8310
|
+
"text": "Cell 6",
|
|
8311
|
+
"type": "text",
|
|
8312
|
+
},
|
|
8313
|
+
],
|
|
8314
|
+
"props": {
|
|
8315
|
+
"backgroundColor": "default",
|
|
8316
|
+
"colspan": 1,
|
|
8317
|
+
"rowspan": 1,
|
|
8318
|
+
"textAlignment": "left",
|
|
8319
|
+
"textColor": "default",
|
|
8320
|
+
},
|
|
8321
|
+
"type": "tableCell",
|
|
8322
|
+
},
|
|
6973
8323
|
],
|
|
6974
8324
|
},
|
|
6975
8325
|
{
|
|
6976
8326
|
"cells": [
|
|
6977
|
-
|
|
6978
|
-
|
|
6979
|
-
|
|
6980
|
-
|
|
6981
|
-
|
|
6982
|
-
|
|
6983
|
-
|
|
6984
|
-
|
|
6985
|
-
{
|
|
6986
|
-
"
|
|
6987
|
-
"
|
|
6988
|
-
"
|
|
6989
|
-
|
|
6990
|
-
|
|
6991
|
-
|
|
6992
|
-
|
|
6993
|
-
|
|
6994
|
-
|
|
6995
|
-
|
|
6996
|
-
|
|
6997
|
-
|
|
8327
|
+
{
|
|
8328
|
+
"content": [
|
|
8329
|
+
{
|
|
8330
|
+
"styles": {},
|
|
8331
|
+
"text": "Cell 7",
|
|
8332
|
+
"type": "text",
|
|
8333
|
+
},
|
|
8334
|
+
],
|
|
8335
|
+
"props": {
|
|
8336
|
+
"backgroundColor": "default",
|
|
8337
|
+
"colspan": 1,
|
|
8338
|
+
"rowspan": 1,
|
|
8339
|
+
"textAlignment": "left",
|
|
8340
|
+
"textColor": "default",
|
|
8341
|
+
},
|
|
8342
|
+
"type": "tableCell",
|
|
8343
|
+
},
|
|
8344
|
+
{
|
|
8345
|
+
"content": [
|
|
8346
|
+
{
|
|
8347
|
+
"styles": {},
|
|
8348
|
+
"text": "Cell 8",
|
|
8349
|
+
"type": "text",
|
|
8350
|
+
},
|
|
8351
|
+
],
|
|
8352
|
+
"props": {
|
|
8353
|
+
"backgroundColor": "default",
|
|
8354
|
+
"colspan": 1,
|
|
8355
|
+
"rowspan": 1,
|
|
8356
|
+
"textAlignment": "left",
|
|
8357
|
+
"textColor": "default",
|
|
8358
|
+
},
|
|
8359
|
+
"type": "tableCell",
|
|
8360
|
+
},
|
|
8361
|
+
{
|
|
8362
|
+
"content": [
|
|
8363
|
+
{
|
|
8364
|
+
"styles": {},
|
|
8365
|
+
"text": "Cell 9",
|
|
8366
|
+
"type": "text",
|
|
8367
|
+
},
|
|
8368
|
+
],
|
|
8369
|
+
"props": {
|
|
8370
|
+
"backgroundColor": "default",
|
|
8371
|
+
"colspan": 1,
|
|
8372
|
+
"rowspan": 1,
|
|
8373
|
+
"textAlignment": "left",
|
|
8374
|
+
"textColor": "default",
|
|
8375
|
+
},
|
|
8376
|
+
"type": "tableCell",
|
|
8377
|
+
},
|
|
6998
8378
|
],
|
|
6999
8379
|
},
|
|
7000
8380
|
],
|
|
@@ -7396,80 +8776,172 @@ exports[`Test moveBlocksUp > Multiple blocks ending in nested block 1`] = `
|
|
|
7396
8776
|
undefined,
|
|
7397
8777
|
undefined,
|
|
7398
8778
|
],
|
|
8779
|
+
"headerCols": undefined,
|
|
8780
|
+
"headerRows": undefined,
|
|
7399
8781
|
"rows": [
|
|
7400
8782
|
{
|
|
7401
8783
|
"cells": [
|
|
7402
|
-
|
|
7403
|
-
|
|
7404
|
-
|
|
7405
|
-
|
|
7406
|
-
|
|
7407
|
-
|
|
7408
|
-
|
|
7409
|
-
|
|
7410
|
-
{
|
|
7411
|
-
"
|
|
7412
|
-
"
|
|
7413
|
-
"
|
|
7414
|
-
|
|
7415
|
-
|
|
7416
|
-
|
|
7417
|
-
|
|
7418
|
-
|
|
7419
|
-
|
|
7420
|
-
|
|
7421
|
-
|
|
7422
|
-
|
|
8784
|
+
{
|
|
8785
|
+
"content": [
|
|
8786
|
+
{
|
|
8787
|
+
"styles": {},
|
|
8788
|
+
"text": "Cell 1",
|
|
8789
|
+
"type": "text",
|
|
8790
|
+
},
|
|
8791
|
+
],
|
|
8792
|
+
"props": {
|
|
8793
|
+
"backgroundColor": "default",
|
|
8794
|
+
"colspan": 1,
|
|
8795
|
+
"rowspan": 1,
|
|
8796
|
+
"textAlignment": "left",
|
|
8797
|
+
"textColor": "default",
|
|
8798
|
+
},
|
|
8799
|
+
"type": "tableCell",
|
|
8800
|
+
},
|
|
8801
|
+
{
|
|
8802
|
+
"content": [
|
|
8803
|
+
{
|
|
8804
|
+
"styles": {},
|
|
8805
|
+
"text": "Cell 2",
|
|
8806
|
+
"type": "text",
|
|
8807
|
+
},
|
|
8808
|
+
],
|
|
8809
|
+
"props": {
|
|
8810
|
+
"backgroundColor": "default",
|
|
8811
|
+
"colspan": 1,
|
|
8812
|
+
"rowspan": 1,
|
|
8813
|
+
"textAlignment": "left",
|
|
8814
|
+
"textColor": "default",
|
|
8815
|
+
},
|
|
8816
|
+
"type": "tableCell",
|
|
8817
|
+
},
|
|
8818
|
+
{
|
|
8819
|
+
"content": [
|
|
8820
|
+
{
|
|
8821
|
+
"styles": {},
|
|
8822
|
+
"text": "Cell 3",
|
|
8823
|
+
"type": "text",
|
|
8824
|
+
},
|
|
8825
|
+
],
|
|
8826
|
+
"props": {
|
|
8827
|
+
"backgroundColor": "default",
|
|
8828
|
+
"colspan": 1,
|
|
8829
|
+
"rowspan": 1,
|
|
8830
|
+
"textAlignment": "left",
|
|
8831
|
+
"textColor": "default",
|
|
8832
|
+
},
|
|
8833
|
+
"type": "tableCell",
|
|
8834
|
+
},
|
|
7423
8835
|
],
|
|
7424
8836
|
},
|
|
7425
8837
|
{
|
|
7426
8838
|
"cells": [
|
|
7427
|
-
|
|
7428
|
-
|
|
7429
|
-
|
|
7430
|
-
|
|
7431
|
-
|
|
7432
|
-
|
|
7433
|
-
|
|
7434
|
-
|
|
7435
|
-
{
|
|
7436
|
-
"
|
|
7437
|
-
"
|
|
7438
|
-
"
|
|
7439
|
-
|
|
7440
|
-
|
|
7441
|
-
|
|
7442
|
-
|
|
7443
|
-
|
|
7444
|
-
|
|
7445
|
-
|
|
7446
|
-
|
|
7447
|
-
|
|
8839
|
+
{
|
|
8840
|
+
"content": [
|
|
8841
|
+
{
|
|
8842
|
+
"styles": {},
|
|
8843
|
+
"text": "Cell 4",
|
|
8844
|
+
"type": "text",
|
|
8845
|
+
},
|
|
8846
|
+
],
|
|
8847
|
+
"props": {
|
|
8848
|
+
"backgroundColor": "default",
|
|
8849
|
+
"colspan": 1,
|
|
8850
|
+
"rowspan": 1,
|
|
8851
|
+
"textAlignment": "left",
|
|
8852
|
+
"textColor": "default",
|
|
8853
|
+
},
|
|
8854
|
+
"type": "tableCell",
|
|
8855
|
+
},
|
|
8856
|
+
{
|
|
8857
|
+
"content": [
|
|
8858
|
+
{
|
|
8859
|
+
"styles": {},
|
|
8860
|
+
"text": "Cell 5",
|
|
8861
|
+
"type": "text",
|
|
8862
|
+
},
|
|
8863
|
+
],
|
|
8864
|
+
"props": {
|
|
8865
|
+
"backgroundColor": "default",
|
|
8866
|
+
"colspan": 1,
|
|
8867
|
+
"rowspan": 1,
|
|
8868
|
+
"textAlignment": "left",
|
|
8869
|
+
"textColor": "default",
|
|
8870
|
+
},
|
|
8871
|
+
"type": "tableCell",
|
|
8872
|
+
},
|
|
8873
|
+
{
|
|
8874
|
+
"content": [
|
|
8875
|
+
{
|
|
8876
|
+
"styles": {},
|
|
8877
|
+
"text": "Cell 6",
|
|
8878
|
+
"type": "text",
|
|
8879
|
+
},
|
|
8880
|
+
],
|
|
8881
|
+
"props": {
|
|
8882
|
+
"backgroundColor": "default",
|
|
8883
|
+
"colspan": 1,
|
|
8884
|
+
"rowspan": 1,
|
|
8885
|
+
"textAlignment": "left",
|
|
8886
|
+
"textColor": "default",
|
|
8887
|
+
},
|
|
8888
|
+
"type": "tableCell",
|
|
8889
|
+
},
|
|
7448
8890
|
],
|
|
7449
8891
|
},
|
|
7450
8892
|
{
|
|
7451
8893
|
"cells": [
|
|
7452
|
-
|
|
7453
|
-
|
|
7454
|
-
|
|
7455
|
-
|
|
7456
|
-
|
|
7457
|
-
|
|
7458
|
-
|
|
7459
|
-
|
|
7460
|
-
{
|
|
7461
|
-
"
|
|
7462
|
-
"
|
|
7463
|
-
"
|
|
7464
|
-
|
|
7465
|
-
|
|
7466
|
-
|
|
7467
|
-
|
|
7468
|
-
|
|
7469
|
-
|
|
7470
|
-
|
|
7471
|
-
|
|
7472
|
-
|
|
8894
|
+
{
|
|
8895
|
+
"content": [
|
|
8896
|
+
{
|
|
8897
|
+
"styles": {},
|
|
8898
|
+
"text": "Cell 7",
|
|
8899
|
+
"type": "text",
|
|
8900
|
+
},
|
|
8901
|
+
],
|
|
8902
|
+
"props": {
|
|
8903
|
+
"backgroundColor": "default",
|
|
8904
|
+
"colspan": 1,
|
|
8905
|
+
"rowspan": 1,
|
|
8906
|
+
"textAlignment": "left",
|
|
8907
|
+
"textColor": "default",
|
|
8908
|
+
},
|
|
8909
|
+
"type": "tableCell",
|
|
8910
|
+
},
|
|
8911
|
+
{
|
|
8912
|
+
"content": [
|
|
8913
|
+
{
|
|
8914
|
+
"styles": {},
|
|
8915
|
+
"text": "Cell 8",
|
|
8916
|
+
"type": "text",
|
|
8917
|
+
},
|
|
8918
|
+
],
|
|
8919
|
+
"props": {
|
|
8920
|
+
"backgroundColor": "default",
|
|
8921
|
+
"colspan": 1,
|
|
8922
|
+
"rowspan": 1,
|
|
8923
|
+
"textAlignment": "left",
|
|
8924
|
+
"textColor": "default",
|
|
8925
|
+
},
|
|
8926
|
+
"type": "tableCell",
|
|
8927
|
+
},
|
|
8928
|
+
{
|
|
8929
|
+
"content": [
|
|
8930
|
+
{
|
|
8931
|
+
"styles": {},
|
|
8932
|
+
"text": "Cell 9",
|
|
8933
|
+
"type": "text",
|
|
8934
|
+
},
|
|
8935
|
+
],
|
|
8936
|
+
"props": {
|
|
8937
|
+
"backgroundColor": "default",
|
|
8938
|
+
"colspan": 1,
|
|
8939
|
+
"rowspan": 1,
|
|
8940
|
+
"textAlignment": "left",
|
|
8941
|
+
"textColor": "default",
|
|
8942
|
+
},
|
|
8943
|
+
"type": "tableCell",
|
|
8944
|
+
},
|
|
7473
8945
|
],
|
|
7474
8946
|
},
|
|
7475
8947
|
],
|
|
@@ -7853,80 +9325,172 @@ exports[`Test moveBlocksUp > Multiple blocks starting and ending in nested block
|
|
|
7853
9325
|
undefined,
|
|
7854
9326
|
undefined,
|
|
7855
9327
|
],
|
|
9328
|
+
"headerCols": undefined,
|
|
9329
|
+
"headerRows": undefined,
|
|
7856
9330
|
"rows": [
|
|
7857
9331
|
{
|
|
7858
9332
|
"cells": [
|
|
7859
|
-
|
|
7860
|
-
|
|
7861
|
-
|
|
7862
|
-
|
|
7863
|
-
|
|
7864
|
-
|
|
7865
|
-
|
|
7866
|
-
|
|
7867
|
-
{
|
|
7868
|
-
"
|
|
7869
|
-
"
|
|
7870
|
-
"
|
|
7871
|
-
|
|
7872
|
-
|
|
7873
|
-
|
|
7874
|
-
|
|
7875
|
-
|
|
7876
|
-
|
|
7877
|
-
|
|
7878
|
-
|
|
7879
|
-
|
|
9333
|
+
{
|
|
9334
|
+
"content": [
|
|
9335
|
+
{
|
|
9336
|
+
"styles": {},
|
|
9337
|
+
"text": "Cell 1",
|
|
9338
|
+
"type": "text",
|
|
9339
|
+
},
|
|
9340
|
+
],
|
|
9341
|
+
"props": {
|
|
9342
|
+
"backgroundColor": "default",
|
|
9343
|
+
"colspan": 1,
|
|
9344
|
+
"rowspan": 1,
|
|
9345
|
+
"textAlignment": "left",
|
|
9346
|
+
"textColor": "default",
|
|
9347
|
+
},
|
|
9348
|
+
"type": "tableCell",
|
|
9349
|
+
},
|
|
9350
|
+
{
|
|
9351
|
+
"content": [
|
|
9352
|
+
{
|
|
9353
|
+
"styles": {},
|
|
9354
|
+
"text": "Cell 2",
|
|
9355
|
+
"type": "text",
|
|
9356
|
+
},
|
|
9357
|
+
],
|
|
9358
|
+
"props": {
|
|
9359
|
+
"backgroundColor": "default",
|
|
9360
|
+
"colspan": 1,
|
|
9361
|
+
"rowspan": 1,
|
|
9362
|
+
"textAlignment": "left",
|
|
9363
|
+
"textColor": "default",
|
|
9364
|
+
},
|
|
9365
|
+
"type": "tableCell",
|
|
9366
|
+
},
|
|
9367
|
+
{
|
|
9368
|
+
"content": [
|
|
9369
|
+
{
|
|
9370
|
+
"styles": {},
|
|
9371
|
+
"text": "Cell 3",
|
|
9372
|
+
"type": "text",
|
|
9373
|
+
},
|
|
9374
|
+
],
|
|
9375
|
+
"props": {
|
|
9376
|
+
"backgroundColor": "default",
|
|
9377
|
+
"colspan": 1,
|
|
9378
|
+
"rowspan": 1,
|
|
9379
|
+
"textAlignment": "left",
|
|
9380
|
+
"textColor": "default",
|
|
9381
|
+
},
|
|
9382
|
+
"type": "tableCell",
|
|
9383
|
+
},
|
|
7880
9384
|
],
|
|
7881
9385
|
},
|
|
7882
9386
|
{
|
|
7883
9387
|
"cells": [
|
|
7884
|
-
|
|
7885
|
-
|
|
7886
|
-
|
|
7887
|
-
|
|
7888
|
-
|
|
7889
|
-
|
|
7890
|
-
|
|
7891
|
-
|
|
7892
|
-
{
|
|
7893
|
-
"
|
|
7894
|
-
"
|
|
7895
|
-
"
|
|
7896
|
-
|
|
7897
|
-
|
|
7898
|
-
|
|
7899
|
-
|
|
7900
|
-
|
|
7901
|
-
|
|
7902
|
-
|
|
7903
|
-
|
|
7904
|
-
|
|
9388
|
+
{
|
|
9389
|
+
"content": [
|
|
9390
|
+
{
|
|
9391
|
+
"styles": {},
|
|
9392
|
+
"text": "Cell 4",
|
|
9393
|
+
"type": "text",
|
|
9394
|
+
},
|
|
9395
|
+
],
|
|
9396
|
+
"props": {
|
|
9397
|
+
"backgroundColor": "default",
|
|
9398
|
+
"colspan": 1,
|
|
9399
|
+
"rowspan": 1,
|
|
9400
|
+
"textAlignment": "left",
|
|
9401
|
+
"textColor": "default",
|
|
9402
|
+
},
|
|
9403
|
+
"type": "tableCell",
|
|
9404
|
+
},
|
|
9405
|
+
{
|
|
9406
|
+
"content": [
|
|
9407
|
+
{
|
|
9408
|
+
"styles": {},
|
|
9409
|
+
"text": "Cell 5",
|
|
9410
|
+
"type": "text",
|
|
9411
|
+
},
|
|
9412
|
+
],
|
|
9413
|
+
"props": {
|
|
9414
|
+
"backgroundColor": "default",
|
|
9415
|
+
"colspan": 1,
|
|
9416
|
+
"rowspan": 1,
|
|
9417
|
+
"textAlignment": "left",
|
|
9418
|
+
"textColor": "default",
|
|
9419
|
+
},
|
|
9420
|
+
"type": "tableCell",
|
|
9421
|
+
},
|
|
9422
|
+
{
|
|
9423
|
+
"content": [
|
|
9424
|
+
{
|
|
9425
|
+
"styles": {},
|
|
9426
|
+
"text": "Cell 6",
|
|
9427
|
+
"type": "text",
|
|
9428
|
+
},
|
|
9429
|
+
],
|
|
9430
|
+
"props": {
|
|
9431
|
+
"backgroundColor": "default",
|
|
9432
|
+
"colspan": 1,
|
|
9433
|
+
"rowspan": 1,
|
|
9434
|
+
"textAlignment": "left",
|
|
9435
|
+
"textColor": "default",
|
|
9436
|
+
},
|
|
9437
|
+
"type": "tableCell",
|
|
9438
|
+
},
|
|
7905
9439
|
],
|
|
7906
9440
|
},
|
|
7907
9441
|
{
|
|
7908
9442
|
"cells": [
|
|
7909
|
-
|
|
7910
|
-
|
|
7911
|
-
|
|
7912
|
-
|
|
7913
|
-
|
|
7914
|
-
|
|
7915
|
-
|
|
7916
|
-
|
|
7917
|
-
{
|
|
7918
|
-
"
|
|
7919
|
-
"
|
|
7920
|
-
"
|
|
7921
|
-
|
|
7922
|
-
|
|
7923
|
-
|
|
7924
|
-
|
|
7925
|
-
|
|
7926
|
-
|
|
7927
|
-
|
|
7928
|
-
|
|
7929
|
-
|
|
9443
|
+
{
|
|
9444
|
+
"content": [
|
|
9445
|
+
{
|
|
9446
|
+
"styles": {},
|
|
9447
|
+
"text": "Cell 7",
|
|
9448
|
+
"type": "text",
|
|
9449
|
+
},
|
|
9450
|
+
],
|
|
9451
|
+
"props": {
|
|
9452
|
+
"backgroundColor": "default",
|
|
9453
|
+
"colspan": 1,
|
|
9454
|
+
"rowspan": 1,
|
|
9455
|
+
"textAlignment": "left",
|
|
9456
|
+
"textColor": "default",
|
|
9457
|
+
},
|
|
9458
|
+
"type": "tableCell",
|
|
9459
|
+
},
|
|
9460
|
+
{
|
|
9461
|
+
"content": [
|
|
9462
|
+
{
|
|
9463
|
+
"styles": {},
|
|
9464
|
+
"text": "Cell 8",
|
|
9465
|
+
"type": "text",
|
|
9466
|
+
},
|
|
9467
|
+
],
|
|
9468
|
+
"props": {
|
|
9469
|
+
"backgroundColor": "default",
|
|
9470
|
+
"colspan": 1,
|
|
9471
|
+
"rowspan": 1,
|
|
9472
|
+
"textAlignment": "left",
|
|
9473
|
+
"textColor": "default",
|
|
9474
|
+
},
|
|
9475
|
+
"type": "tableCell",
|
|
9476
|
+
},
|
|
9477
|
+
{
|
|
9478
|
+
"content": [
|
|
9479
|
+
{
|
|
9480
|
+
"styles": {},
|
|
9481
|
+
"text": "Cell 9",
|
|
9482
|
+
"type": "text",
|
|
9483
|
+
},
|
|
9484
|
+
],
|
|
9485
|
+
"props": {
|
|
9486
|
+
"backgroundColor": "default",
|
|
9487
|
+
"colspan": 1,
|
|
9488
|
+
"rowspan": 1,
|
|
9489
|
+
"textAlignment": "left",
|
|
9490
|
+
"textColor": "default",
|
|
9491
|
+
},
|
|
9492
|
+
"type": "tableCell",
|
|
9493
|
+
},
|
|
7930
9494
|
],
|
|
7931
9495
|
},
|
|
7932
9496
|
],
|
|
@@ -8345,80 +9909,172 @@ exports[`Test moveBlocksUp > Multiple blocks starting in block with children 1`]
|
|
|
8345
9909
|
undefined,
|
|
8346
9910
|
undefined,
|
|
8347
9911
|
],
|
|
9912
|
+
"headerCols": undefined,
|
|
9913
|
+
"headerRows": undefined,
|
|
8348
9914
|
"rows": [
|
|
8349
9915
|
{
|
|
8350
9916
|
"cells": [
|
|
8351
|
-
|
|
8352
|
-
|
|
8353
|
-
|
|
8354
|
-
|
|
8355
|
-
|
|
8356
|
-
|
|
8357
|
-
|
|
8358
|
-
|
|
8359
|
-
{
|
|
8360
|
-
"
|
|
8361
|
-
"
|
|
8362
|
-
"
|
|
8363
|
-
|
|
8364
|
-
|
|
8365
|
-
|
|
8366
|
-
|
|
8367
|
-
|
|
8368
|
-
|
|
8369
|
-
|
|
8370
|
-
|
|
8371
|
-
|
|
9917
|
+
{
|
|
9918
|
+
"content": [
|
|
9919
|
+
{
|
|
9920
|
+
"styles": {},
|
|
9921
|
+
"text": "Cell 1",
|
|
9922
|
+
"type": "text",
|
|
9923
|
+
},
|
|
9924
|
+
],
|
|
9925
|
+
"props": {
|
|
9926
|
+
"backgroundColor": "default",
|
|
9927
|
+
"colspan": 1,
|
|
9928
|
+
"rowspan": 1,
|
|
9929
|
+
"textAlignment": "left",
|
|
9930
|
+
"textColor": "default",
|
|
9931
|
+
},
|
|
9932
|
+
"type": "tableCell",
|
|
9933
|
+
},
|
|
9934
|
+
{
|
|
9935
|
+
"content": [
|
|
9936
|
+
{
|
|
9937
|
+
"styles": {},
|
|
9938
|
+
"text": "Cell 2",
|
|
9939
|
+
"type": "text",
|
|
9940
|
+
},
|
|
9941
|
+
],
|
|
9942
|
+
"props": {
|
|
9943
|
+
"backgroundColor": "default",
|
|
9944
|
+
"colspan": 1,
|
|
9945
|
+
"rowspan": 1,
|
|
9946
|
+
"textAlignment": "left",
|
|
9947
|
+
"textColor": "default",
|
|
9948
|
+
},
|
|
9949
|
+
"type": "tableCell",
|
|
9950
|
+
},
|
|
9951
|
+
{
|
|
9952
|
+
"content": [
|
|
9953
|
+
{
|
|
9954
|
+
"styles": {},
|
|
9955
|
+
"text": "Cell 3",
|
|
9956
|
+
"type": "text",
|
|
9957
|
+
},
|
|
9958
|
+
],
|
|
9959
|
+
"props": {
|
|
9960
|
+
"backgroundColor": "default",
|
|
9961
|
+
"colspan": 1,
|
|
9962
|
+
"rowspan": 1,
|
|
9963
|
+
"textAlignment": "left",
|
|
9964
|
+
"textColor": "default",
|
|
9965
|
+
},
|
|
9966
|
+
"type": "tableCell",
|
|
9967
|
+
},
|
|
8372
9968
|
],
|
|
8373
9969
|
},
|
|
8374
9970
|
{
|
|
8375
9971
|
"cells": [
|
|
8376
|
-
|
|
8377
|
-
|
|
8378
|
-
|
|
8379
|
-
|
|
8380
|
-
|
|
8381
|
-
|
|
8382
|
-
|
|
8383
|
-
|
|
8384
|
-
{
|
|
8385
|
-
"
|
|
8386
|
-
"
|
|
8387
|
-
"
|
|
8388
|
-
|
|
8389
|
-
|
|
8390
|
-
|
|
8391
|
-
|
|
8392
|
-
|
|
8393
|
-
|
|
8394
|
-
|
|
8395
|
-
|
|
8396
|
-
|
|
9972
|
+
{
|
|
9973
|
+
"content": [
|
|
9974
|
+
{
|
|
9975
|
+
"styles": {},
|
|
9976
|
+
"text": "Cell 4",
|
|
9977
|
+
"type": "text",
|
|
9978
|
+
},
|
|
9979
|
+
],
|
|
9980
|
+
"props": {
|
|
9981
|
+
"backgroundColor": "default",
|
|
9982
|
+
"colspan": 1,
|
|
9983
|
+
"rowspan": 1,
|
|
9984
|
+
"textAlignment": "left",
|
|
9985
|
+
"textColor": "default",
|
|
9986
|
+
},
|
|
9987
|
+
"type": "tableCell",
|
|
9988
|
+
},
|
|
9989
|
+
{
|
|
9990
|
+
"content": [
|
|
9991
|
+
{
|
|
9992
|
+
"styles": {},
|
|
9993
|
+
"text": "Cell 5",
|
|
9994
|
+
"type": "text",
|
|
9995
|
+
},
|
|
9996
|
+
],
|
|
9997
|
+
"props": {
|
|
9998
|
+
"backgroundColor": "default",
|
|
9999
|
+
"colspan": 1,
|
|
10000
|
+
"rowspan": 1,
|
|
10001
|
+
"textAlignment": "left",
|
|
10002
|
+
"textColor": "default",
|
|
10003
|
+
},
|
|
10004
|
+
"type": "tableCell",
|
|
10005
|
+
},
|
|
10006
|
+
{
|
|
10007
|
+
"content": [
|
|
10008
|
+
{
|
|
10009
|
+
"styles": {},
|
|
10010
|
+
"text": "Cell 6",
|
|
10011
|
+
"type": "text",
|
|
10012
|
+
},
|
|
10013
|
+
],
|
|
10014
|
+
"props": {
|
|
10015
|
+
"backgroundColor": "default",
|
|
10016
|
+
"colspan": 1,
|
|
10017
|
+
"rowspan": 1,
|
|
10018
|
+
"textAlignment": "left",
|
|
10019
|
+
"textColor": "default",
|
|
10020
|
+
},
|
|
10021
|
+
"type": "tableCell",
|
|
10022
|
+
},
|
|
8397
10023
|
],
|
|
8398
10024
|
},
|
|
8399
10025
|
{
|
|
8400
10026
|
"cells": [
|
|
8401
|
-
|
|
8402
|
-
|
|
8403
|
-
|
|
8404
|
-
|
|
8405
|
-
|
|
8406
|
-
|
|
8407
|
-
|
|
8408
|
-
|
|
8409
|
-
{
|
|
8410
|
-
"
|
|
8411
|
-
"
|
|
8412
|
-
"
|
|
8413
|
-
|
|
8414
|
-
|
|
8415
|
-
|
|
8416
|
-
|
|
8417
|
-
|
|
8418
|
-
|
|
8419
|
-
|
|
8420
|
-
|
|
8421
|
-
|
|
10027
|
+
{
|
|
10028
|
+
"content": [
|
|
10029
|
+
{
|
|
10030
|
+
"styles": {},
|
|
10031
|
+
"text": "Cell 7",
|
|
10032
|
+
"type": "text",
|
|
10033
|
+
},
|
|
10034
|
+
],
|
|
10035
|
+
"props": {
|
|
10036
|
+
"backgroundColor": "default",
|
|
10037
|
+
"colspan": 1,
|
|
10038
|
+
"rowspan": 1,
|
|
10039
|
+
"textAlignment": "left",
|
|
10040
|
+
"textColor": "default",
|
|
10041
|
+
},
|
|
10042
|
+
"type": "tableCell",
|
|
10043
|
+
},
|
|
10044
|
+
{
|
|
10045
|
+
"content": [
|
|
10046
|
+
{
|
|
10047
|
+
"styles": {},
|
|
10048
|
+
"text": "Cell 8",
|
|
10049
|
+
"type": "text",
|
|
10050
|
+
},
|
|
10051
|
+
],
|
|
10052
|
+
"props": {
|
|
10053
|
+
"backgroundColor": "default",
|
|
10054
|
+
"colspan": 1,
|
|
10055
|
+
"rowspan": 1,
|
|
10056
|
+
"textAlignment": "left",
|
|
10057
|
+
"textColor": "default",
|
|
10058
|
+
},
|
|
10059
|
+
"type": "tableCell",
|
|
10060
|
+
},
|
|
10061
|
+
{
|
|
10062
|
+
"content": [
|
|
10063
|
+
{
|
|
10064
|
+
"styles": {},
|
|
10065
|
+
"text": "Cell 9",
|
|
10066
|
+
"type": "text",
|
|
10067
|
+
},
|
|
10068
|
+
],
|
|
10069
|
+
"props": {
|
|
10070
|
+
"backgroundColor": "default",
|
|
10071
|
+
"colspan": 1,
|
|
10072
|
+
"rowspan": 1,
|
|
10073
|
+
"textAlignment": "left",
|
|
10074
|
+
"textColor": "default",
|
|
10075
|
+
},
|
|
10076
|
+
"type": "tableCell",
|
|
10077
|
+
},
|
|
8422
10078
|
],
|
|
8423
10079
|
},
|
|
8424
10080
|
],
|
|
@@ -8819,80 +10475,172 @@ exports[`Test moveBlocksUp > Multiple blocks starting in nested block 1`] = `
|
|
|
8819
10475
|
undefined,
|
|
8820
10476
|
undefined,
|
|
8821
10477
|
],
|
|
10478
|
+
"headerCols": undefined,
|
|
10479
|
+
"headerRows": undefined,
|
|
8822
10480
|
"rows": [
|
|
8823
10481
|
{
|
|
8824
10482
|
"cells": [
|
|
8825
|
-
|
|
8826
|
-
|
|
8827
|
-
|
|
8828
|
-
|
|
8829
|
-
|
|
8830
|
-
|
|
8831
|
-
|
|
8832
|
-
|
|
8833
|
-
{
|
|
8834
|
-
"
|
|
8835
|
-
"
|
|
8836
|
-
"
|
|
8837
|
-
|
|
8838
|
-
|
|
8839
|
-
|
|
8840
|
-
|
|
8841
|
-
|
|
8842
|
-
|
|
8843
|
-
|
|
8844
|
-
|
|
8845
|
-
|
|
10483
|
+
{
|
|
10484
|
+
"content": [
|
|
10485
|
+
{
|
|
10486
|
+
"styles": {},
|
|
10487
|
+
"text": "Cell 1",
|
|
10488
|
+
"type": "text",
|
|
10489
|
+
},
|
|
10490
|
+
],
|
|
10491
|
+
"props": {
|
|
10492
|
+
"backgroundColor": "default",
|
|
10493
|
+
"colspan": 1,
|
|
10494
|
+
"rowspan": 1,
|
|
10495
|
+
"textAlignment": "left",
|
|
10496
|
+
"textColor": "default",
|
|
10497
|
+
},
|
|
10498
|
+
"type": "tableCell",
|
|
10499
|
+
},
|
|
10500
|
+
{
|
|
10501
|
+
"content": [
|
|
10502
|
+
{
|
|
10503
|
+
"styles": {},
|
|
10504
|
+
"text": "Cell 2",
|
|
10505
|
+
"type": "text",
|
|
10506
|
+
},
|
|
10507
|
+
],
|
|
10508
|
+
"props": {
|
|
10509
|
+
"backgroundColor": "default",
|
|
10510
|
+
"colspan": 1,
|
|
10511
|
+
"rowspan": 1,
|
|
10512
|
+
"textAlignment": "left",
|
|
10513
|
+
"textColor": "default",
|
|
10514
|
+
},
|
|
10515
|
+
"type": "tableCell",
|
|
10516
|
+
},
|
|
10517
|
+
{
|
|
10518
|
+
"content": [
|
|
10519
|
+
{
|
|
10520
|
+
"styles": {},
|
|
10521
|
+
"text": "Cell 3",
|
|
10522
|
+
"type": "text",
|
|
10523
|
+
},
|
|
10524
|
+
],
|
|
10525
|
+
"props": {
|
|
10526
|
+
"backgroundColor": "default",
|
|
10527
|
+
"colspan": 1,
|
|
10528
|
+
"rowspan": 1,
|
|
10529
|
+
"textAlignment": "left",
|
|
10530
|
+
"textColor": "default",
|
|
10531
|
+
},
|
|
10532
|
+
"type": "tableCell",
|
|
10533
|
+
},
|
|
8846
10534
|
],
|
|
8847
10535
|
},
|
|
8848
10536
|
{
|
|
8849
10537
|
"cells": [
|
|
8850
|
-
|
|
8851
|
-
|
|
8852
|
-
|
|
8853
|
-
|
|
8854
|
-
|
|
8855
|
-
|
|
8856
|
-
|
|
8857
|
-
|
|
8858
|
-
{
|
|
8859
|
-
"
|
|
8860
|
-
"
|
|
8861
|
-
"
|
|
8862
|
-
|
|
8863
|
-
|
|
8864
|
-
|
|
8865
|
-
|
|
8866
|
-
|
|
8867
|
-
|
|
8868
|
-
|
|
8869
|
-
|
|
8870
|
-
|
|
10538
|
+
{
|
|
10539
|
+
"content": [
|
|
10540
|
+
{
|
|
10541
|
+
"styles": {},
|
|
10542
|
+
"text": "Cell 4",
|
|
10543
|
+
"type": "text",
|
|
10544
|
+
},
|
|
10545
|
+
],
|
|
10546
|
+
"props": {
|
|
10547
|
+
"backgroundColor": "default",
|
|
10548
|
+
"colspan": 1,
|
|
10549
|
+
"rowspan": 1,
|
|
10550
|
+
"textAlignment": "left",
|
|
10551
|
+
"textColor": "default",
|
|
10552
|
+
},
|
|
10553
|
+
"type": "tableCell",
|
|
10554
|
+
},
|
|
10555
|
+
{
|
|
10556
|
+
"content": [
|
|
10557
|
+
{
|
|
10558
|
+
"styles": {},
|
|
10559
|
+
"text": "Cell 5",
|
|
10560
|
+
"type": "text",
|
|
10561
|
+
},
|
|
10562
|
+
],
|
|
10563
|
+
"props": {
|
|
10564
|
+
"backgroundColor": "default",
|
|
10565
|
+
"colspan": 1,
|
|
10566
|
+
"rowspan": 1,
|
|
10567
|
+
"textAlignment": "left",
|
|
10568
|
+
"textColor": "default",
|
|
10569
|
+
},
|
|
10570
|
+
"type": "tableCell",
|
|
10571
|
+
},
|
|
10572
|
+
{
|
|
10573
|
+
"content": [
|
|
10574
|
+
{
|
|
10575
|
+
"styles": {},
|
|
10576
|
+
"text": "Cell 6",
|
|
10577
|
+
"type": "text",
|
|
10578
|
+
},
|
|
10579
|
+
],
|
|
10580
|
+
"props": {
|
|
10581
|
+
"backgroundColor": "default",
|
|
10582
|
+
"colspan": 1,
|
|
10583
|
+
"rowspan": 1,
|
|
10584
|
+
"textAlignment": "left",
|
|
10585
|
+
"textColor": "default",
|
|
10586
|
+
},
|
|
10587
|
+
"type": "tableCell",
|
|
10588
|
+
},
|
|
8871
10589
|
],
|
|
8872
10590
|
},
|
|
8873
10591
|
{
|
|
8874
10592
|
"cells": [
|
|
8875
|
-
|
|
8876
|
-
|
|
8877
|
-
|
|
8878
|
-
|
|
8879
|
-
|
|
8880
|
-
|
|
8881
|
-
|
|
8882
|
-
|
|
8883
|
-
{
|
|
8884
|
-
"
|
|
8885
|
-
"
|
|
8886
|
-
"
|
|
8887
|
-
|
|
8888
|
-
|
|
8889
|
-
|
|
8890
|
-
|
|
8891
|
-
|
|
8892
|
-
|
|
8893
|
-
|
|
8894
|
-
|
|
8895
|
-
|
|
10593
|
+
{
|
|
10594
|
+
"content": [
|
|
10595
|
+
{
|
|
10596
|
+
"styles": {},
|
|
10597
|
+
"text": "Cell 7",
|
|
10598
|
+
"type": "text",
|
|
10599
|
+
},
|
|
10600
|
+
],
|
|
10601
|
+
"props": {
|
|
10602
|
+
"backgroundColor": "default",
|
|
10603
|
+
"colspan": 1,
|
|
10604
|
+
"rowspan": 1,
|
|
10605
|
+
"textAlignment": "left",
|
|
10606
|
+
"textColor": "default",
|
|
10607
|
+
},
|
|
10608
|
+
"type": "tableCell",
|
|
10609
|
+
},
|
|
10610
|
+
{
|
|
10611
|
+
"content": [
|
|
10612
|
+
{
|
|
10613
|
+
"styles": {},
|
|
10614
|
+
"text": "Cell 8",
|
|
10615
|
+
"type": "text",
|
|
10616
|
+
},
|
|
10617
|
+
],
|
|
10618
|
+
"props": {
|
|
10619
|
+
"backgroundColor": "default",
|
|
10620
|
+
"colspan": 1,
|
|
10621
|
+
"rowspan": 1,
|
|
10622
|
+
"textAlignment": "left",
|
|
10623
|
+
"textColor": "default",
|
|
10624
|
+
},
|
|
10625
|
+
"type": "tableCell",
|
|
10626
|
+
},
|
|
10627
|
+
{
|
|
10628
|
+
"content": [
|
|
10629
|
+
{
|
|
10630
|
+
"styles": {},
|
|
10631
|
+
"text": "Cell 9",
|
|
10632
|
+
"type": "text",
|
|
10633
|
+
},
|
|
10634
|
+
],
|
|
10635
|
+
"props": {
|
|
10636
|
+
"backgroundColor": "default",
|
|
10637
|
+
"colspan": 1,
|
|
10638
|
+
"rowspan": 1,
|
|
10639
|
+
"textAlignment": "left",
|
|
10640
|
+
"textColor": "default",
|
|
10641
|
+
},
|
|
10642
|
+
"type": "tableCell",
|
|
10643
|
+
},
|
|
8896
10644
|
],
|
|
8897
10645
|
},
|
|
8898
10646
|
],
|
|
@@ -9294,80 +11042,172 @@ exports[`Test moveBlocksUp > Out of children 1`] = `
|
|
|
9294
11042
|
undefined,
|
|
9295
11043
|
undefined,
|
|
9296
11044
|
],
|
|
11045
|
+
"headerCols": undefined,
|
|
11046
|
+
"headerRows": undefined,
|
|
9297
11047
|
"rows": [
|
|
9298
11048
|
{
|
|
9299
11049
|
"cells": [
|
|
9300
|
-
|
|
9301
|
-
|
|
9302
|
-
|
|
9303
|
-
|
|
9304
|
-
|
|
9305
|
-
|
|
9306
|
-
|
|
9307
|
-
|
|
9308
|
-
{
|
|
9309
|
-
"
|
|
9310
|
-
"
|
|
9311
|
-
"
|
|
9312
|
-
|
|
9313
|
-
|
|
9314
|
-
|
|
9315
|
-
|
|
9316
|
-
|
|
9317
|
-
|
|
9318
|
-
|
|
9319
|
-
|
|
9320
|
-
|
|
11050
|
+
{
|
|
11051
|
+
"content": [
|
|
11052
|
+
{
|
|
11053
|
+
"styles": {},
|
|
11054
|
+
"text": "Cell 1",
|
|
11055
|
+
"type": "text",
|
|
11056
|
+
},
|
|
11057
|
+
],
|
|
11058
|
+
"props": {
|
|
11059
|
+
"backgroundColor": "default",
|
|
11060
|
+
"colspan": 1,
|
|
11061
|
+
"rowspan": 1,
|
|
11062
|
+
"textAlignment": "left",
|
|
11063
|
+
"textColor": "default",
|
|
11064
|
+
},
|
|
11065
|
+
"type": "tableCell",
|
|
11066
|
+
},
|
|
11067
|
+
{
|
|
11068
|
+
"content": [
|
|
11069
|
+
{
|
|
11070
|
+
"styles": {},
|
|
11071
|
+
"text": "Cell 2",
|
|
11072
|
+
"type": "text",
|
|
11073
|
+
},
|
|
11074
|
+
],
|
|
11075
|
+
"props": {
|
|
11076
|
+
"backgroundColor": "default",
|
|
11077
|
+
"colspan": 1,
|
|
11078
|
+
"rowspan": 1,
|
|
11079
|
+
"textAlignment": "left",
|
|
11080
|
+
"textColor": "default",
|
|
11081
|
+
},
|
|
11082
|
+
"type": "tableCell",
|
|
11083
|
+
},
|
|
11084
|
+
{
|
|
11085
|
+
"content": [
|
|
11086
|
+
{
|
|
11087
|
+
"styles": {},
|
|
11088
|
+
"text": "Cell 3",
|
|
11089
|
+
"type": "text",
|
|
11090
|
+
},
|
|
11091
|
+
],
|
|
11092
|
+
"props": {
|
|
11093
|
+
"backgroundColor": "default",
|
|
11094
|
+
"colspan": 1,
|
|
11095
|
+
"rowspan": 1,
|
|
11096
|
+
"textAlignment": "left",
|
|
11097
|
+
"textColor": "default",
|
|
11098
|
+
},
|
|
11099
|
+
"type": "tableCell",
|
|
11100
|
+
},
|
|
9321
11101
|
],
|
|
9322
11102
|
},
|
|
9323
11103
|
{
|
|
9324
11104
|
"cells": [
|
|
9325
|
-
|
|
9326
|
-
|
|
9327
|
-
|
|
9328
|
-
|
|
9329
|
-
|
|
9330
|
-
|
|
9331
|
-
|
|
9332
|
-
|
|
9333
|
-
{
|
|
9334
|
-
"
|
|
9335
|
-
"
|
|
9336
|
-
"
|
|
9337
|
-
|
|
9338
|
-
|
|
9339
|
-
|
|
9340
|
-
|
|
9341
|
-
|
|
9342
|
-
|
|
9343
|
-
|
|
9344
|
-
|
|
9345
|
-
|
|
11105
|
+
{
|
|
11106
|
+
"content": [
|
|
11107
|
+
{
|
|
11108
|
+
"styles": {},
|
|
11109
|
+
"text": "Cell 4",
|
|
11110
|
+
"type": "text",
|
|
11111
|
+
},
|
|
11112
|
+
],
|
|
11113
|
+
"props": {
|
|
11114
|
+
"backgroundColor": "default",
|
|
11115
|
+
"colspan": 1,
|
|
11116
|
+
"rowspan": 1,
|
|
11117
|
+
"textAlignment": "left",
|
|
11118
|
+
"textColor": "default",
|
|
11119
|
+
},
|
|
11120
|
+
"type": "tableCell",
|
|
11121
|
+
},
|
|
11122
|
+
{
|
|
11123
|
+
"content": [
|
|
11124
|
+
{
|
|
11125
|
+
"styles": {},
|
|
11126
|
+
"text": "Cell 5",
|
|
11127
|
+
"type": "text",
|
|
11128
|
+
},
|
|
11129
|
+
],
|
|
11130
|
+
"props": {
|
|
11131
|
+
"backgroundColor": "default",
|
|
11132
|
+
"colspan": 1,
|
|
11133
|
+
"rowspan": 1,
|
|
11134
|
+
"textAlignment": "left",
|
|
11135
|
+
"textColor": "default",
|
|
11136
|
+
},
|
|
11137
|
+
"type": "tableCell",
|
|
11138
|
+
},
|
|
11139
|
+
{
|
|
11140
|
+
"content": [
|
|
11141
|
+
{
|
|
11142
|
+
"styles": {},
|
|
11143
|
+
"text": "Cell 6",
|
|
11144
|
+
"type": "text",
|
|
11145
|
+
},
|
|
11146
|
+
],
|
|
11147
|
+
"props": {
|
|
11148
|
+
"backgroundColor": "default",
|
|
11149
|
+
"colspan": 1,
|
|
11150
|
+
"rowspan": 1,
|
|
11151
|
+
"textAlignment": "left",
|
|
11152
|
+
"textColor": "default",
|
|
11153
|
+
},
|
|
11154
|
+
"type": "tableCell",
|
|
11155
|
+
},
|
|
9346
11156
|
],
|
|
9347
11157
|
},
|
|
9348
11158
|
{
|
|
9349
11159
|
"cells": [
|
|
9350
|
-
|
|
9351
|
-
|
|
9352
|
-
|
|
9353
|
-
|
|
9354
|
-
|
|
9355
|
-
|
|
9356
|
-
|
|
9357
|
-
|
|
9358
|
-
{
|
|
9359
|
-
"
|
|
9360
|
-
"
|
|
9361
|
-
"
|
|
9362
|
-
|
|
9363
|
-
|
|
9364
|
-
|
|
9365
|
-
|
|
9366
|
-
|
|
9367
|
-
|
|
9368
|
-
|
|
9369
|
-
|
|
9370
|
-
|
|
11160
|
+
{
|
|
11161
|
+
"content": [
|
|
11162
|
+
{
|
|
11163
|
+
"styles": {},
|
|
11164
|
+
"text": "Cell 7",
|
|
11165
|
+
"type": "text",
|
|
11166
|
+
},
|
|
11167
|
+
],
|
|
11168
|
+
"props": {
|
|
11169
|
+
"backgroundColor": "default",
|
|
11170
|
+
"colspan": 1,
|
|
11171
|
+
"rowspan": 1,
|
|
11172
|
+
"textAlignment": "left",
|
|
11173
|
+
"textColor": "default",
|
|
11174
|
+
},
|
|
11175
|
+
"type": "tableCell",
|
|
11176
|
+
},
|
|
11177
|
+
{
|
|
11178
|
+
"content": [
|
|
11179
|
+
{
|
|
11180
|
+
"styles": {},
|
|
11181
|
+
"text": "Cell 8",
|
|
11182
|
+
"type": "text",
|
|
11183
|
+
},
|
|
11184
|
+
],
|
|
11185
|
+
"props": {
|
|
11186
|
+
"backgroundColor": "default",
|
|
11187
|
+
"colspan": 1,
|
|
11188
|
+
"rowspan": 1,
|
|
11189
|
+
"textAlignment": "left",
|
|
11190
|
+
"textColor": "default",
|
|
11191
|
+
},
|
|
11192
|
+
"type": "tableCell",
|
|
11193
|
+
},
|
|
11194
|
+
{
|
|
11195
|
+
"content": [
|
|
11196
|
+
{
|
|
11197
|
+
"styles": {},
|
|
11198
|
+
"text": "Cell 9",
|
|
11199
|
+
"type": "text",
|
|
11200
|
+
},
|
|
11201
|
+
],
|
|
11202
|
+
"props": {
|
|
11203
|
+
"backgroundColor": "default",
|
|
11204
|
+
"colspan": 1,
|
|
11205
|
+
"rowspan": 1,
|
|
11206
|
+
"textAlignment": "left",
|
|
11207
|
+
"textColor": "default",
|
|
11208
|
+
},
|
|
11209
|
+
"type": "tableCell",
|
|
11210
|
+
},
|
|
9371
11211
|
],
|
|
9372
11212
|
},
|
|
9373
11213
|
],
|