abstract-document 6.9.4 → 6.9.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (397) hide show
  1. package/CHANGELOG.md +171 -152
  2. package/LICENSE +21 -21
  3. package/README.md +45 -45
  4. package/lib/abstract-document-exporters/__tests__/docx2/test-defs/group.js +218 -218
  5. package/lib/abstract-document-exporters/__tests__/docx2/test-defs/header-and-footer.js +69 -69
  6. package/lib/abstract-document-exporters/__tests__/docx2/test-defs/hello-arial-font.js +51 -51
  7. package/lib/abstract-document-exporters/__tests__/docx2/test-defs/hello.js +51 -51
  8. package/lib/abstract-document-exporters/__tests__/docx2/test-defs/letter-dimensions.js +51 -51
  9. package/lib/abstract-document-exporters/__tests__/docx2/test-defs/mixed-hyperlink-and-textrun.js +115 -115
  10. package/lib/abstract-document-exporters/__tests__/docx2/test-defs/mixed-textrun-and-images.js +169 -169
  11. package/lib/abstract-document-exporters/__tests__/docx2/test-defs/multiple-images.js +141 -141
  12. package/lib/abstract-document-exporters/__tests__/docx2/test-defs/multiple-tables.js +467 -467
  13. package/lib/abstract-document-exporters/__tests__/docx2/test-defs/multiple-textrun-with-center-alignment.js +97 -97
  14. package/lib/abstract-document-exporters/__tests__/docx2/test-defs/multiple-textrun-with-end-alignment.js +97 -97
  15. package/lib/abstract-document-exporters/__tests__/docx2/test-defs/multiple-textrun-with-start-alignment-that-linebreaks.js +96 -96
  16. package/lib/abstract-document-exporters/__tests__/docx2/test-defs/multiple-textrun-with-start-alignment.js +96 -96
  17. package/lib/abstract-document-exporters/__tests__/docx2/test-defs/page-numbering.js +102 -102
  18. package/lib/abstract-document-exporters/__tests__/docx2/test-defs/page-orientation-landscape.js +51 -51
  19. package/lib/abstract-document-exporters/__tests__/docx2/test-defs/page-orientation-portrait.js +51 -51
  20. package/lib/abstract-document-exporters/__tests__/docx2/test-defs/simple-table-colSpan-and-rowSpan.js +498 -498
  21. package/lib/abstract-document-exporters/__tests__/docx2/test-defs/simple-table-without-rows.js +20 -20
  22. package/lib/abstract-document-exporters/__tests__/docx2/test-defs/simple-table.js +167 -167
  23. package/lib/abstract-document-exporters/__tests__/docx2/test-defs/single-hyperlink.js +70 -70
  24. package/lib/abstract-document-exporters/__tests__/docx2/test-defs/single-image.js +97 -97
  25. package/lib/abstract-document-exporters/__tests__/docx2/test-defs/single-textrun-with-center-alignment-that-linebreaks.js +68 -68
  26. package/lib/abstract-document-exporters/__tests__/docx2/test-defs/single-textrun-with-center-alignment.js +68 -68
  27. package/lib/abstract-document-exporters/__tests__/docx2/test-defs/single-textrun-with-end-alignment-that-linebreaks.js +68 -68
  28. package/lib/abstract-document-exporters/__tests__/docx2/test-defs/single-textrun-with-end-alignment.js +68 -68
  29. package/lib/abstract-document-exporters/__tests__/docx2/test-defs/single-textrun-with-start-alignment-that-linebreaks.js +68 -68
  30. package/lib/abstract-document-exporters/__tests__/docx2/test-defs/single-textrun-with-start-alignment.js +68 -68
  31. package/lib/abstract-document-exporters/__tests__/docx2/test-defs/single-textrun.js +68 -68
  32. package/lib/abstract-document-exporters/__tests__/docx2/test-defs/toc-separator.js +48 -48
  33. package/lib/abstract-document-exporters/__tests__/docx2/test-defs/world.js +51 -51
  34. package/lib/abstract-document-exporters/__tests__/{docx2/test-defs/single-image-png.d.ts → pdf/test-defs/simple-table-minimal-row-height.d.ts} +1 -1
  35. package/lib/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-minimal-row-height.d.ts.map +1 -0
  36. package/lib/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-minimal-row-height.js +584 -0
  37. package/lib/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-minimal-row-height.js.map +1 -0
  38. package/lib/abstract-document-exporters/pdf/measure.d.ts.map +1 -1
  39. package/lib/abstract-document-exporters/pdf/measure.js +31 -2
  40. package/lib/abstract-document-exporters/pdf/measure.js.map +1 -1
  41. package/package.json +2 -2
  42. package/src/abstract-document/__tests__/hello-world-abstract-doc.ts +245 -245
  43. package/src/abstract-document/__tests__/markdown/export-test-def.ts +10 -10
  44. package/src/abstract-document/__tests__/markdown/export.test.tsx +15 -15
  45. package/src/abstract-document/__tests__/markdown/test-defs/markdown-bold-italic.tsx +31 -31
  46. package/src/abstract-document/__tests__/markdown/test-defs/markdown-bold.tsx +31 -31
  47. package/src/abstract-document/__tests__/markdown/test-defs/markdown-empty-keepTogether.tsx +54 -54
  48. package/src/abstract-document/__tests__/markdown/test-defs/markdown-header.tsx +38 -38
  49. package/src/abstract-document/__tests__/markdown/test-defs/markdown-italic.tsx +31 -31
  50. package/src/abstract-document/__tests__/markdown/test-defs/markdown-keepTogether.tsx +61 -61
  51. package/src/abstract-document/__tests__/markdown/test-defs/markdown-subscript.tsx +45 -45
  52. package/src/abstract-document/__tests__/markdown/test-defs/markdown-superscript.tsx +38 -38
  53. package/src/abstract-document/__tests__/model-builder._test.ts +48 -48
  54. package/src/abstract-document/abstract-doc.ts +19 -19
  55. package/src/abstract-document/atoms/atom.ts +14 -14
  56. package/src/abstract-document/atoms/hyper-link.ts +27 -27
  57. package/src/abstract-document/atoms/image.ts +21 -21
  58. package/src/abstract-document/atoms/link-target.ts +15 -15
  59. package/src/abstract-document/atoms/text-field.ts +36 -36
  60. package/src/abstract-document/atoms/text-run.ts +25 -25
  61. package/src/abstract-document/atoms/toc-separator.ts +18 -18
  62. package/src/abstract-document/default-styles.ts +145 -145
  63. package/src/abstract-document/index.ts +89 -89
  64. package/src/abstract-document/markdown/markdown.ts +142 -142
  65. package/src/abstract-document/markdown/types.ts +78 -78
  66. package/src/abstract-document/numberings/numbering-definition.ts +17 -17
  67. package/src/abstract-document/numberings/numbering-format.ts +7 -7
  68. package/src/abstract-document/numberings/numbering-level-definition.ts +42 -42
  69. package/src/abstract-document/numberings/numbering.ts +3 -3
  70. package/src/abstract-document/page/master-page.ts +23 -23
  71. package/src/abstract-document/page/section.ts +27 -27
  72. package/src/abstract-document/primitives/font.ts +37 -37
  73. package/src/abstract-document/primitives/image-resource.ts +27 -27
  74. package/src/abstract-document/primitives/layout-foundation-color.ts +37 -37
  75. package/src/abstract-document/primitives/layout-foundation.ts +37 -37
  76. package/src/abstract-document/primitives/length.ts +11 -11
  77. package/src/abstract-document/primitives/point.ts +11 -11
  78. package/src/abstract-document/primitives/rect.ts +15 -15
  79. package/src/abstract-document/primitives/size.ts +13 -13
  80. package/src/abstract-document/resources.ts +101 -101
  81. package/src/abstract-document/section-elements/group.ts +28 -28
  82. package/src/abstract-document/section-elements/page-break.ts +14 -14
  83. package/src/abstract-document/section-elements/paragraph-numbering.ts +6 -6
  84. package/src/abstract-document/section-elements/paragraph.ts +32 -32
  85. package/src/abstract-document/section-elements/section-element.ts +17 -17
  86. package/src/abstract-document/section-elements/table.ts +34 -34
  87. package/src/abstract-document/styles/group-style.ts +30 -30
  88. package/src/abstract-document/styles/page-style.ts +76 -76
  89. package/src/abstract-document/styles/paragraph-style.ts +49 -49
  90. package/src/abstract-document/styles/position.ts +8 -8
  91. package/src/abstract-document/styles/style-key.ts +5 -5
  92. package/src/abstract-document/styles/style.ts +44 -44
  93. package/src/abstract-document/styles/table-cell-style.ts +59 -59
  94. package/src/abstract-document/styles/table-style.ts +46 -46
  95. package/src/abstract-document/styles/text-style.ts +77 -77
  96. package/src/abstract-document/table/table-cell.ts +31 -31
  97. package/src/abstract-document/table/table-row.ts +14 -14
  98. package/src/abstract-document/types.ts +3 -3
  99. package/src/abstract-document-exporters/__tests__/docx2/export-test-def.ts +10 -10
  100. package/src/abstract-document-exporters/__tests__/docx2/export.test.tsx +67 -67
  101. package/src/abstract-document-exporters/__tests__/docx2/test-defs/group.tsx +267 -267
  102. package/src/abstract-document-exporters/__tests__/docx2/test-defs/header-and-footer.tsx +110 -110
  103. package/src/abstract-document-exporters/__tests__/docx2/test-defs/hello-arial-font.tsx +71 -71
  104. package/src/abstract-document-exporters/__tests__/docx2/test-defs/hello.tsx +70 -70
  105. package/src/abstract-document-exporters/__tests__/docx2/test-defs/letter-dimensions.tsx +74 -74
  106. package/src/abstract-document-exporters/__tests__/docx2/test-defs/mixed-hyperlink-and-textrun.tsx +137 -137
  107. package/src/abstract-document-exporters/__tests__/docx2/test-defs/mixed-textrun-and-images.tsx +217 -217
  108. package/src/abstract-document-exporters/__tests__/docx2/test-defs/multiple-images.tsx +187 -187
  109. package/src/abstract-document-exporters/__tests__/docx2/test-defs/multiple-tables.tsx +553 -553
  110. package/src/abstract-document-exporters/__tests__/docx2/test-defs/multiple-textrun-with-center-alignment.tsx +119 -119
  111. package/src/abstract-document-exporters/__tests__/docx2/test-defs/multiple-textrun-with-end-alignment.tsx +119 -119
  112. package/src/abstract-document-exporters/__tests__/docx2/test-defs/multiple-textrun-with-start-alignment-that-linebreaks.tsx +121 -121
  113. package/src/abstract-document-exporters/__tests__/docx2/test-defs/multiple-textrun-with-start-alignment.tsx +118 -118
  114. package/src/abstract-document-exporters/__tests__/docx2/test-defs/page-numbering.tsx +123 -123
  115. package/src/abstract-document-exporters/__tests__/docx2/test-defs/page-orientation-landscape.tsx +76 -76
  116. package/src/abstract-document-exporters/__tests__/docx2/test-defs/page-orientation-portrait.tsx +76 -76
  117. package/src/abstract-document-exporters/__tests__/docx2/test-defs/simple-table-colSpan-and-rowSpan.tsx +587 -587
  118. package/src/abstract-document-exporters/__tests__/docx2/test-defs/simple-table-without-rows.tsx +45 -45
  119. package/src/abstract-document-exporters/__tests__/docx2/test-defs/simple-table.tsx +210 -210
  120. package/src/abstract-document-exporters/__tests__/docx2/test-defs/single-hyperlink.tsx +89 -89
  121. package/src/abstract-document-exporters/__tests__/docx2/test-defs/single-image.tsx +142 -142
  122. package/src/abstract-document-exporters/__tests__/docx2/test-defs/single-textrun-with-center-alignment-that-linebreaks.tsx +88 -88
  123. package/src/abstract-document-exporters/__tests__/docx2/test-defs/single-textrun-with-center-alignment.tsx +88 -88
  124. package/src/abstract-document-exporters/__tests__/docx2/test-defs/single-textrun-with-end-alignment-that-linebreaks.tsx +88 -88
  125. package/src/abstract-document-exporters/__tests__/docx2/test-defs/single-textrun-with-end-alignment.tsx +88 -88
  126. package/src/abstract-document-exporters/__tests__/docx2/test-defs/single-textrun-with-start-alignment-that-linebreaks.tsx +88 -88
  127. package/src/abstract-document-exporters/__tests__/docx2/test-defs/single-textrun-with-start-alignment.tsx +88 -88
  128. package/src/abstract-document-exporters/__tests__/docx2/test-defs/single-textrun.tsx +87 -87
  129. package/src/abstract-document-exporters/__tests__/docx2/test-defs/toc-separator.tsx +67 -67
  130. package/src/abstract-document-exporters/__tests__/docx2/test-defs/world.tsx +70 -70
  131. package/src/abstract-document-exporters/__tests__/docx2/tmp/Group.docx +0 -0
  132. package/src/abstract-document-exporters/__tests__/docx2/tmp/Header and footer.docx and b/package/src/abstract-document-exporters/__tests__/docx2/tmp/Header → footer.docx +0 -0
  133. package/src/abstract-document-exporters/__tests__/docx2/tmp/Mixed hyperlink and textrun.docx and b/package/src/abstract-document-exporters/__tests__/docx2/tmp/Mixed hyperlink → textrun.docx +0 -0
  134. package/src/abstract-document-exporters/__tests__/docx2/tmp/Mixed textrun and images.docx and b/package/src/abstract-document-exporters/__tests__/docx2/tmp/Mixed textrun → images.docx +0 -0
  135. package/src/abstract-document-exporters/__tests__/docx2/tmp/Multiple images.docx +0 -0
  136. package/src/abstract-document-exporters/__tests__/docx2/tmp/Multiple tables.docx +0 -0
  137. package/src/abstract-document-exporters/__tests__/docx2/tmp/Multiple textrun with Center alignment.docx +0 -0
  138. package/src/abstract-document-exporters/__tests__/docx2/tmp/Multiple textrun with End alignment.docx +0 -0
  139. package/src/abstract-document-exporters/__tests__/docx2/tmp/Multiple textrun with Start alignment that linebreaks.docx +0 -0
  140. package/src/abstract-document-exporters/__tests__/docx2/tmp/Multiple textrun with Start alignment.docx +0 -0
  141. package/src/abstract-document-exporters/__tests__/docx2/tmp/Page numbering.docx +0 -0
  142. package/src/abstract-document-exporters/__tests__/docx2/tmp/Simple table colSpan and rowSpan.docx and b/package/src/abstract-document-exporters/__tests__/docx2/tmp/Simple table colSpan → rowSpan.docx +0 -0
  143. package/src/abstract-document-exporters/__tests__/docx2/tmp/Simple table without rows.docx +0 -0
  144. package/src/abstract-document-exporters/__tests__/docx2/tmp/Simple table.docx +0 -0
  145. package/src/abstract-document-exporters/__tests__/docx2/tmp/Single hyperlink.docx +0 -0
  146. package/src/abstract-document-exporters/__tests__/docx2/tmp/Single image.docx +0 -0
  147. package/src/abstract-document-exporters/__tests__/docx2/tmp/Single textrun with Center alignment that linebreaks.docx +0 -0
  148. package/src/abstract-document-exporters/__tests__/docx2/tmp/Single textrun with Center alignment.docx +0 -0
  149. package/src/abstract-document-exporters/__tests__/docx2/tmp/Single textrun with End alignment that linebreaks.docx +0 -0
  150. package/src/abstract-document-exporters/__tests__/docx2/tmp/Single textrun with End alignment.docx +0 -0
  151. package/src/abstract-document-exporters/__tests__/docx2/tmp/Single textrun with Start alignment that linebreaks.docx +0 -0
  152. package/src/abstract-document-exporters/__tests__/docx2/tmp/Single textrun with Start alignment.docx +0 -0
  153. package/src/abstract-document-exporters/__tests__/docx2/tmp/Single textrun.docx +0 -0
  154. package/src/abstract-document-exporters/__tests__/docx2/tmp/Table of content separator.docx +0 -0
  155. package/src/abstract-document-exporters/__tests__/docx2/tmp/hello with Arial font.docx +0 -0
  156. package/src/abstract-document-exporters/__tests__/docx2/tmp/hello.docx +0 -0
  157. package/src/abstract-document-exporters/__tests__/docx2/tmp/letter-dimensions.docx +0 -0
  158. package/src/abstract-document-exporters/__tests__/docx2/tmp/page-orientation-landscape.docx +0 -0
  159. package/src/abstract-document-exporters/__tests__/docx2/tmp/page-orientation-portrait.docx +0 -0
  160. package/src/abstract-document-exporters/__tests__/docx2/tmp/tocSeparator.docx +0 -0
  161. package/src/abstract-document-exporters/__tests__/docx2/tmp/world.docx +0 -0
  162. package/src/abstract-document-exporters/__tests__/pdf/export-test-def.ts +10 -10
  163. package/src/abstract-document-exporters/__tests__/pdf/export.test.tsx +46 -46
  164. package/src/abstract-document-exporters/__tests__/pdf/test-defs/absolute-position-group.tsx +82 -82
  165. package/src/abstract-document-exporters/__tests__/pdf/test-defs/absolute-position-header-and-footer.tsx +196 -196
  166. package/src/abstract-document-exporters/__tests__/pdf/test-defs/absolute-position-paragraph.tsx +56 -56
  167. package/src/abstract-document-exporters/__tests__/pdf/test-defs/absolute-position-section-in-group.tsx +87 -87
  168. package/src/abstract-document-exporters/__tests__/pdf/test-defs/absolute-position-section-in-table.tsx +140 -140
  169. package/src/abstract-document-exporters/__tests__/pdf/test-defs/absolute-position-table.tsx +112 -112
  170. package/src/abstract-document-exporters/__tests__/pdf/test-defs/date.tsx +57 -57
  171. package/src/abstract-document-exporters/__tests__/pdf/test-defs/group-no-keep-together.tsx +1271 -1271
  172. package/src/abstract-document-exporters/__tests__/pdf/test-defs/group-paragraphs.tsx +1275 -1275
  173. package/src/abstract-document-exporters/__tests__/pdf/test-defs/group-tables.tsx +1298 -1298
  174. package/src/abstract-document-exporters/__tests__/pdf/test-defs/group-too-big-for-one-page.tsx +272 -272
  175. package/src/abstract-document-exporters/__tests__/pdf/test-defs/header-and-footer.tsx +153 -153
  176. package/src/abstract-document-exporters/__tests__/pdf/test-defs/hello-with-different-font.tsx +54 -54
  177. package/src/abstract-document-exporters/__tests__/pdf/test-defs/hello.tsx +50 -50
  178. package/src/abstract-document-exporters/__tests__/pdf/test-defs/hyperlink-intenal-link-target.tsx +787 -787
  179. package/src/abstract-document-exporters/__tests__/pdf/test-defs/hyperlink-internal.tsx +767 -767
  180. package/src/abstract-document-exporters/__tests__/pdf/test-defs/margins-header-body-footer.tsx +992 -992
  181. package/src/abstract-document-exporters/__tests__/pdf/test-defs/mixed-hyperlink-and-textrun-no-underline.tsx +105 -105
  182. package/src/abstract-document-exporters/__tests__/pdf/test-defs/mixed-hyperlink-and-textrun-with-underline.tsx +105 -105
  183. package/src/abstract-document-exporters/__tests__/pdf/test-defs/mixed-hyperlink-and-textrun.tsx +104 -104
  184. package/src/abstract-document-exporters/__tests__/pdf/test-defs/mixed-textrun-and-images.tsx +100 -100
  185. package/src/abstract-document-exporters/__tests__/pdf/test-defs/multiple-images-overflow.tsx +71 -71
  186. package/src/abstract-document-exporters/__tests__/pdf/test-defs/multiple-images.tsx +67 -67
  187. package/src/abstract-document-exporters/__tests__/pdf/test-defs/multiple-textrun-with-center-alignment.tsx +89 -89
  188. package/src/abstract-document-exporters/__tests__/pdf/test-defs/multiple-textrun-with-end-alignment.tsx +89 -89
  189. package/src/abstract-document-exporters/__tests__/pdf/test-defs/multiple-textrun-with-start-alignment-that-linebreaks.tsx +107 -107
  190. package/src/abstract-document-exporters/__tests__/pdf/test-defs/multiple-textrun-with-start-alignment.tsx +89 -89
  191. package/src/abstract-document-exporters/__tests__/pdf/test-defs/page-break-table-row-that-doesnt-fit-page.tsx +321 -321
  192. package/src/abstract-document-exporters/__tests__/pdf/test-defs/page-break-table-single-row.tsx +223 -223
  193. package/src/abstract-document-exporters/__tests__/pdf/test-defs/page-break-table-with-group.tsx +520 -520
  194. package/src/abstract-document-exporters/__tests__/pdf/test-defs/page-break-table-with-header.tsx +1562 -1562
  195. package/src/abstract-document-exporters/__tests__/pdf/test-defs/page-break-table-with-header2.tsx +872 -872
  196. package/src/abstract-document-exporters/__tests__/pdf/test-defs/page-break-table-with-margin-bottom.tsx +471 -471
  197. package/src/abstract-document-exporters/__tests__/pdf/test-defs/page-break-table-with-margin-top-single-table.tsx +362 -362
  198. package/src/abstract-document-exporters/__tests__/pdf/test-defs/page-break-table-with-margin-top.tsx +471 -471
  199. package/src/abstract-document-exporters/__tests__/pdf/test-defs/page-break-table-with-rowSpan-multipages.tsx +1574 -1574
  200. package/src/abstract-document-exporters/__tests__/pdf/test-defs/page-break-table-with-rowSpan.tsx +573 -573
  201. package/src/abstract-document-exporters/__tests__/pdf/test-defs/page-numbering.tsx +88 -88
  202. package/src/abstract-document-exporters/__tests__/pdf/test-defs/pagebreak.tsx +86 -86
  203. package/src/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-all-auto-cell-widths.tsx +110 -110
  204. package/src/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-all-fixed-cell-widths.tsx +110 -110
  205. package/src/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-background.tsx +83 -83
  206. package/src/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-cell-padding-image.tsx +212 -212
  207. package/src/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-cell-padding-text.tsx +353 -353
  208. package/src/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-center-alignment.tsx +109 -109
  209. package/src/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-colSpan-and-rowSpan.tsx +448 -448
  210. package/src/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-minimal-row-height.tsx +616 -0
  211. package/src/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-mix-auto-fix-cell-widths.tsx +110 -110
  212. package/src/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-padding.tsx +110 -110
  213. package/src/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-right-alignment.tsx +110 -110
  214. package/src/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-row-alignment.tsx +304 -304
  215. package/src/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-text-alignment-in-cell-wrapping.tsx +498 -498
  216. package/src/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-text-alignment-in-cell.tsx +255 -255
  217. package/src/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-with-default-colored-borders.tsx +227 -227
  218. package/src/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-with-header.tsx +509 -509
  219. package/src/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-with-multi-colored-borders.tsx +228 -228
  220. package/src/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-with-single-colored-borders.tsx +228 -228
  221. package/src/abstract-document-exporters/__tests__/pdf/test-defs/single-figure.tsx +318 -318
  222. package/src/abstract-document-exporters/__tests__/pdf/test-defs/single-hyperlink-center.tsx +57 -57
  223. package/src/abstract-document-exporters/__tests__/pdf/test-defs/single-hyperlink-no-underline.tsx +61 -61
  224. package/src/abstract-document-exporters/__tests__/pdf/test-defs/single-hyperlink-right-aligned.tsx +57 -57
  225. package/src/abstract-document-exporters/__tests__/pdf/test-defs/single-hyperlink-with-underline.tsx +61 -61
  226. package/src/abstract-document-exporters/__tests__/pdf/test-defs/single-hyperlink.tsx +56 -56
  227. package/src/abstract-document-exporters/__tests__/pdf/test-defs/single-image-svg-color-hex.tsx +268 -268
  228. package/src/abstract-document-exporters/__tests__/pdf/test-defs/single-image-svg-color-name.tsx +268 -268
  229. package/src/abstract-document-exporters/__tests__/pdf/test-defs/single-image-svg-color-url.tsx +92 -92
  230. package/src/abstract-document-exporters/__tests__/pdf/test-defs/single-image-svg-dasharray.tsx +82 -82
  231. package/src/abstract-document-exporters/__tests__/pdf/test-defs/single-image-url.tsx +66 -66
  232. package/src/abstract-document-exporters/__tests__/pdf/test-defs/single-image.tsx +66 -66
  233. package/src/abstract-document-exporters/__tests__/pdf/test-defs/single-textrun-baseline-alphabetic.tsx +51 -51
  234. package/src/abstract-document-exporters/__tests__/pdf/test-defs/single-textrun-baseline-bottom.tsx +51 -51
  235. package/src/abstract-document-exporters/__tests__/pdf/test-defs/single-textrun-baseline-hanging.tsx +51 -51
  236. package/src/abstract-document-exporters/__tests__/pdf/test-defs/single-textrun-baseline-middle.tsx +51 -51
  237. package/src/abstract-document-exporters/__tests__/pdf/test-defs/single-textrun-baseline-top.tsx +51 -51
  238. package/src/abstract-document-exporters/__tests__/pdf/test-defs/single-textrun-super-subscript.tsx +89 -89
  239. package/src/abstract-document-exporters/__tests__/pdf/test-defs/single-textrun-with-center-alignment-that-linebreaks.tsx +72 -72
  240. package/src/abstract-document-exporters/__tests__/pdf/test-defs/single-textrun-with-center-alignment.tsx +57 -57
  241. package/src/abstract-document-exporters/__tests__/pdf/test-defs/single-textrun-with-end-alignment-that-linebreaks.tsx +72 -72
  242. package/src/abstract-document-exporters/__tests__/pdf/test-defs/single-textrun-with-end-alignment.tsx +57 -57
  243. package/src/abstract-document-exporters/__tests__/pdf/test-defs/single-textrun-with-justify-alignment.tsx +57 -57
  244. package/src/abstract-document-exporters/__tests__/pdf/test-defs/single-textrun-with-start-alignment-that-linebreaks.tsx +72 -72
  245. package/src/abstract-document-exporters/__tests__/pdf/test-defs/single-textrun-with-start-alignment.tsx +57 -57
  246. package/src/abstract-document-exporters/__tests__/pdf/test-defs/single-textrun.tsx +56 -56
  247. package/src/abstract-document-exporters/__tests__/pdf/test-defs/table-of-content-separator.tsx +72 -72
  248. package/src/abstract-document-exporters/__tests__/pdf/test-defs/world.tsx +56 -56
  249. package/src/abstract-document-exporters/__tests__/pdf/tmp/Absolute position group.pdf +2 -2
  250. package/src/abstract-document-exporters/__tests__/pdf/tmp/Absolute position header and footer.pdf +2 -2
  251. package/src/abstract-document-exporters/__tests__/pdf/tmp/Absolute position paragraph.pdf +2 -2
  252. package/src/abstract-document-exporters/__tests__/pdf/tmp/Absolute position section in group.pdf +2 -2
  253. package/src/abstract-document-exporters/__tests__/pdf/tmp/Absolute position section in table.pdf +2 -2
  254. package/src/abstract-document-exporters/__tests__/pdf/tmp/Absolute position table.pdf +2 -2
  255. package/src/abstract-document-exporters/__tests__/pdf/tmp/Empty Paragraph.pdf +91 -0
  256. package/src/abstract-document-exporters/__tests__/pdf/tmp/Group Paragraphs.pdf +2 -2
  257. package/src/abstract-document-exporters/__tests__/pdf/tmp/Group Tables.pdf +2 -2
  258. package/src/abstract-document-exporters/__tests__/pdf/tmp/Group no keeptogether.pdf +2 -2
  259. package/src/abstract-document-exporters/__tests__/pdf/tmp/Group too big for one page.pdf +2 -2
  260. package/src/abstract-document-exporters/__tests__/pdf/tmp/Group.pdf +2 -2
  261. package/src/abstract-document-exporters/__tests__/pdf/tmp/Header and footer.pdf +2 -2
  262. package/src/abstract-document-exporters/__tests__/pdf/tmp/Hyperlink internal linktarget.pdf +2 -2
  263. package/src/abstract-document-exporters/__tests__/pdf/tmp/Hyperlink internal.pdf +2 -2
  264. package/src/abstract-document-exporters/__tests__/pdf/tmp/Margins header body footer.pdf +2 -2
  265. package/src/abstract-document-exporters/__tests__/pdf/tmp/Mixed hyperlink and textrun no underline.pdf +2 -2
  266. package/src/abstract-document-exporters/__tests__/pdf/tmp/Mixed hyperlink and textrun with underline.pdf +2 -2
  267. package/src/abstract-document-exporters/__tests__/pdf/tmp/Mixed hyperlink and textrun.pdf +2 -2
  268. package/src/abstract-document-exporters/__tests__/pdf/tmp/Mixed textrun and images.pdf and b/package/src/abstract-document-exporters/__tests__/pdf/tmp/Mixed textrun → images.pdf +0 -0
  269. package/src/abstract-document-exporters/__tests__/pdf/tmp/Multiple images overflow.pdf +0 -0
  270. package/src/abstract-document-exporters/__tests__/pdf/tmp/Multiple images.pdf +0 -0
  271. package/src/abstract-document-exporters/__tests__/pdf/tmp/Multiple textrun with Center alignment.pdf +2 -2
  272. package/src/abstract-document-exporters/__tests__/pdf/tmp/Multiple textrun with End alignment.pdf +2 -2
  273. package/src/abstract-document-exporters/__tests__/pdf/tmp/Multiple textrun with Start alignment that linebreaks.pdf +2 -2
  274. package/src/abstract-document-exporters/__tests__/pdf/tmp/Multiple textrun with Start alignment.pdf +2 -2
  275. package/src/abstract-document-exporters/__tests__/pdf/tmp/Named destination.pdf +1761 -0
  276. package/src/abstract-document-exporters/__tests__/pdf/tmp/Page numbering.pdf +2 -2
  277. package/src/abstract-document-exporters/__tests__/pdf/tmp/Pagebreak table row that doesnt fit page.pdf +2 -2
  278. package/src/abstract-document-exporters/__tests__/pdf/tmp/Pagebreak table single row.pdf +2 -2
  279. package/src/abstract-document-exporters/__tests__/pdf/tmp/Pagebreak table with group.pdf +2 -2
  280. package/src/abstract-document-exporters/__tests__/pdf/tmp/Pagebreak table with header 2.pdf +2 -2
  281. package/src/abstract-document-exporters/__tests__/pdf/tmp/Pagebreak table with header.pdf +2 -2
  282. package/src/abstract-document-exporters/__tests__/pdf/tmp/Pagebreak table with margin bottom.pdf +2 -2
  283. package/src/abstract-document-exporters/__tests__/pdf/tmp/Pagebreak table with margin top single table.pdf +2 -2
  284. package/src/abstract-document-exporters/__tests__/pdf/tmp/Pagebreak table with margin top.pdf +2 -2
  285. package/src/abstract-document-exporters/__tests__/pdf/tmp/Pagebreak table with margin.pdf +404 -0
  286. package/src/abstract-document-exporters/__tests__/pdf/tmp/Pagebreak table with rowSpan multipages.pdf +2 -2
  287. package/src/abstract-document-exporters/__tests__/pdf/tmp/Pagebreak table with rowSpan.pdf +2 -2
  288. package/src/abstract-document-exporters/__tests__/pdf/tmp/{Simple table auto.pdf → Paragraph numbering.pdf } +28 -18
  289. package/src/abstract-document-exporters/__tests__/pdf/tmp/Simple table all auto.pdf +2 -2
  290. package/src/abstract-document-exporters/__tests__/pdf/tmp/Simple table all fix.pdf +2 -2
  291. package/src/abstract-document-exporters/__tests__/pdf/tmp/Simple table background.pdf +2 -2
  292. package/src/abstract-document-exporters/__tests__/pdf/tmp/Simple table cell padding of image.pdf +0 -0
  293. package/src/abstract-document-exporters/__tests__/pdf/tmp/Simple table cell padding of text.pdf +2 -2
  294. package/src/abstract-document-exporters/__tests__/pdf/tmp/Simple table center alignment.pdf +2 -2
  295. package/src/abstract-document-exporters/__tests__/pdf/tmp/Simple table colSpan and rowSpan.pdf +2 -2
  296. package/src/abstract-document-exporters/__tests__/pdf/tmp/Simple table minimal row height.pdf +463 -0
  297. package/src/abstract-document-exporters/__tests__/pdf/tmp/Simple table mix auto fix.pdf +2 -2
  298. package/src/abstract-document-exporters/__tests__/pdf/tmp/Simple table padding.pdf +2 -2
  299. package/src/abstract-document-exporters/__tests__/pdf/tmp/Simple table right alignment.pdf +2 -2
  300. package/src/abstract-document-exporters/__tests__/pdf/tmp/Simple table row alignment.pdf +2 -2
  301. package/src/abstract-document-exporters/__tests__/pdf/tmp/Simple table text alignment in cell with wrapping.pdf +2 -2
  302. package/src/abstract-document-exporters/__tests__/pdf/tmp/Simple table text alignment in cell.pdf +2 -2
  303. package/src/abstract-document-exporters/__tests__/pdf/tmp/Simple table with default colored borders.pdf +2 -2
  304. package/src/abstract-document-exporters/__tests__/pdf/tmp/Simple table with header.pdf +2 -2
  305. package/src/abstract-document-exporters/__tests__/pdf/tmp/Simple table with multi colored borders.pdf +2 -2
  306. package/src/abstract-document-exporters/__tests__/pdf/tmp/Simple table with single colored borders.pdf +2 -2
  307. package/src/abstract-document-exporters/__tests__/pdf/tmp/Simple table.pdf +2 -2
  308. package/src/abstract-document-exporters/__tests__/pdf/tmp/Single date.pdf +3 -3
  309. package/src/abstract-document-exporters/__tests__/pdf/tmp/Single figure.pdf +2 -2
  310. package/src/abstract-document-exporters/__tests__/pdf/tmp/Single hyperlink centered.pdf +2 -2
  311. package/src/abstract-document-exporters/__tests__/pdf/tmp/Single hyperlink no underline.pdf +2 -2
  312. package/src/abstract-document-exporters/__tests__/pdf/tmp/Single hyperlink right aligned.pdf +2 -2
  313. package/src/abstract-document-exporters/__tests__/pdf/tmp/Single hyperlink.pdf +2 -2
  314. package/src/abstract-document-exporters/__tests__/pdf/tmp/Single image from URL.pdf +0 -0
  315. package/src/abstract-document-exporters/__tests__/pdf/tmp/Single image svg color hex.pdf +2 -2
  316. package/src/abstract-document-exporters/__tests__/pdf/tmp/Single image svg color name.pdf +2 -2
  317. package/src/abstract-document-exporters/__tests__/pdf/tmp/Single image svg color url.pdf +2 -2
  318. package/src/abstract-document-exporters/__tests__/pdf/tmp/Single image svg dasharray.pdf +2 -2
  319. package/src/abstract-document-exporters/__tests__/pdf/tmp/Single image.pdf +0 -0
  320. package/src/abstract-document-exporters/__tests__/pdf/tmp/Single textrun baseline alphabetic.pdf +2 -2
  321. package/src/abstract-document-exporters/__tests__/pdf/tmp/Single textrun baseline bottom.pdf +2 -2
  322. package/src/abstract-document-exporters/__tests__/pdf/tmp/Single textrun baseline hanging.pdf +2 -2
  323. package/src/abstract-document-exporters/__tests__/pdf/tmp/Single textrun baseline middle.pdf +2 -2
  324. package/src/abstract-document-exporters/__tests__/pdf/tmp/Single textrun baseline top.pdf +2 -2
  325. package/src/abstract-document-exporters/__tests__/pdf/tmp/Single textrun with Center alignment that linebreaks.pdf +2 -2
  326. package/src/abstract-document-exporters/__tests__/pdf/tmp/Single textrun with Center alignment.pdf +2 -2
  327. package/src/abstract-document-exporters/__tests__/pdf/tmp/Single textrun with End alignment that linebreaks.pdf +2 -2
  328. package/src/abstract-document-exporters/__tests__/pdf/tmp/Single textrun with End alignment.pdf +2 -2
  329. package/src/abstract-document-exporters/__tests__/pdf/tmp/Single textrun with Justify alignment.pdf +2 -2
  330. package/src/abstract-document-exporters/__tests__/pdf/tmp/Single textrun with Start alignment that linebreaks.pdf +2 -2
  331. package/src/abstract-document-exporters/__tests__/pdf/tmp/Single textrun with Start alignment.pdf +2 -2
  332. package/src/abstract-document-exporters/__tests__/pdf/tmp/{Simple table one auto.pdf → Single textrun with default alignment.pdf } +14 -34
  333. package/src/abstract-document-exporters/__tests__/pdf/tmp/Single textrun with super and subscripts.pdf +2 -2
  334. package/src/abstract-document-exporters/__tests__/pdf/tmp/Single textrun.pdf +2 -2
  335. package/src/abstract-document-exporters/__tests__/pdf/tmp/Table of content separator.pdf +2 -2
  336. package/src/abstract-document-exporters/__tests__/pdf/tmp/hello with roman font.pdf +2 -2
  337. package/src/abstract-document-exporters/__tests__/pdf/tmp/hello.pdf +2 -2
  338. package/src/abstract-document-exporters/__tests__/pdf/tmp/pagebreak.pdf +2 -2
  339. package/src/abstract-document-exporters/__tests__/pdf/tmp/world.pdf +2 -2
  340. package/src/abstract-document-exporters/docx/document-container.ts +18 -18
  341. package/src/abstract-document-exporters/docx/docx-constants.ts +46 -46
  342. package/src/abstract-document-exporters/docx/docx-document-renderer.ts +1084 -1084
  343. package/src/abstract-document-exporters/docx/ref-container.ts +53 -53
  344. package/src/abstract-document-exporters/docx/string-utils.ts +39 -39
  345. package/src/abstract-document-exporters/docx/xml-writer.ts +333 -333
  346. package/src/abstract-document-exporters/docx2/render-image.ts +159 -159
  347. package/src/abstract-document-exporters/docx2/render.ts +516 -516
  348. package/src/abstract-document-exporters/index.ts +5 -5
  349. package/src/abstract-document-exporters/pdf/font.ts +76 -76
  350. package/src/abstract-document-exporters/pdf/measure.ts +446 -418
  351. package/src/abstract-document-exporters/pdf/paginate.ts +434 -434
  352. package/src/abstract-document-exporters/pdf/pre-process.ts +389 -389
  353. package/src/abstract-document-exporters/pdf/render-image.ts +221 -221
  354. package/src/abstract-document-exporters/pdf/render.ts +847 -847
  355. package/src/abstract-document-exporters/pdf/update-refs.ts +163 -163
  356. package/src/abstract-document-exporters/shared/get_resources.ts +71 -71
  357. package/src/abstract-document-jsx/index.ts +86 -86
  358. package/src/custom_typings/@textlint/markdown-to-ast/index.d.ts +1 -1
  359. package/src/custom_typings/json-diff/index.d.ts +1 -1
  360. package/src/custom_typings/markdown-parser/index.d.ts +1 -1
  361. package/src/custom_typings/pdf2json/index.d.ts +1 -1
  362. package/src/custom_typings/remark-parse/index.d.ts +1 -1
  363. package/src/custom_typings/remark-sub-super/index.d.ts +1 -1
  364. package/src/custom_typings/svg-to-pdfkit/index.d.ts +1 -1
  365. package/src/custom_typings/unified/index.d.ts +1 -1
  366. package/src/index.ts +5 -5
  367. package/lib/abstract-document-exporters/__tests__/docx2/test-defs/single-image-png.d.ts.map +0 -1
  368. package/lib/abstract-document-exporters/__tests__/docx2/test-defs/single-image-png.js +0 -149
  369. package/lib/abstract-document-exporters/__tests__/docx2/test-defs/single-image-png.js.map +0 -1
  370. package/lib/abstract-document-exporters/__tests__/docx2/test-defs/single-image-svg.d.ts +0 -3
  371. package/lib/abstract-document-exporters/__tests__/docx2/test-defs/single-image-svg.d.ts.map +0 -1
  372. package/lib/abstract-document-exporters/__tests__/docx2/test-defs/single-image-svg.js +0 -149
  373. package/lib/abstract-document-exporters/__tests__/docx2/test-defs/single-image-svg.js.map +0 -1
  374. package/lib/abstract-document-exporters/__tests__/pdf/test-defs/group.d.ts +0 -3
  375. package/lib/abstract-document-exporters/__tests__/pdf/test-defs/group.d.ts.map +0 -1
  376. package/lib/abstract-document-exporters/__tests__/pdf/test-defs/group.js +0 -83
  377. package/lib/abstract-document-exporters/__tests__/pdf/test-defs/group.js.map +0 -1
  378. package/lib/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-auto-cell-widths.d.ts +0 -3
  379. package/lib/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-auto-cell-widths.d.ts.map +0 -1
  380. package/lib/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-auto-cell-widths.js +0 -105
  381. package/lib/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-auto-cell-widths.js.map +0 -1
  382. package/lib/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-fixed-cell-widths.d.ts +0 -3
  383. package/lib/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-fixed-cell-widths.d.ts.map +0 -1
  384. package/lib/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-fixed-cell-widths.js +0 -104
  385. package/lib/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-fixed-cell-widths.js.map +0 -1
  386. package/lib/abstract-document-exporters/__tests__/pdf/test-defs/simple-table.d.ts +0 -3
  387. package/lib/abstract-document-exporters/__tests__/pdf/test-defs/simple-table.d.ts.map +0 -1
  388. package/lib/abstract-document-exporters/__tests__/pdf/test-defs/simple-table.js +0 -104
  389. package/lib/abstract-document-exporters/__tests__/pdf/test-defs/simple-table.js.map +0 -1
  390. package/src/abstract-document-exporters/__tests__/docx2/tmp/Single image svg.docx +0 -0
  391. package/src/abstract-document-exporters/__tests__/pdf/tmp/Group Paratraphs.pdf +0 -912
  392. package/src/abstract-document-exporters/__tests__/pdf/tmp/Margins header body footer1.pdf +0 -640
  393. package/src/abstract-document-exporters/__tests__/pdf/tmp/Margins header body footer2.pdf +0 -609
  394. package/src/abstract-document-exporters/__tests__/pdf/tmp/Margins header body footer3.pdf +0 -1188
  395. package/src/abstract-document-exporters/__tests__/pdf/tmp/Margins header body footer4.pdf +0 -1188
  396. package/src/abstract-document-exporters/__tests__/pdf/tmp/Simple table padding1.pdf +0 -133
  397. package/src/abstract-document-exporters/__tests__/pdf/tmp/Single image svg color.pdf +0 -179
@@ -1,1298 +1,1298 @@
1
- /* eslint-disable max-lines */
2
- import React from "react";
3
- import { ExportTestDef } from "../export-test-def";
4
- import {
5
- Paragraph,
6
- AbstractDoc,
7
- Section,
8
- Table,
9
- TableRow,
10
- TableCell,
11
- TextRun,
12
- Group,
13
- } from "../../../../abstract-document-jsx";
14
-
15
- const rowsList = [
16
- <Table columnWidths={[100]} key={0}>
17
- <TableRow>
18
- <TableCell>
19
- <Paragraph>
20
- <TextRun text={"I am a table"} />
21
- </Paragraph>
22
- </TableCell>
23
- </TableRow>
24
- </Table>,
25
- ];
26
-
27
- //eslint-disable-next-line
28
- for (let i = 1; i < 10; i++) {
29
- rowsList.push(
30
- <Table columnWidths={[100, 100, 100]} key={i}>
31
- <TableRow>
32
- <TableCell>
33
- <Paragraph>
34
- <TextRun text={`Cell ${i}`} />
35
- </Paragraph>
36
- </TableCell>
37
- </TableRow>
38
- </Table>
39
- );
40
- }
41
- const group = rowsList;
42
-
43
- export const test: ExportTestDef = {
44
- name: "Group Tables",
45
- abstractDocJsx: (
46
- <AbstractDoc>
47
- <Section>
48
- {[
49
- group,
50
- group,
51
- group,
52
- group,
53
- group,
54
- group,
55
- <Group key={"test"} keepTogether={true}>
56
- {[group, group]}
57
- </Group>,
58
- ]}
59
- </Section>
60
- </AbstractDoc>
61
- ),
62
- expectedPdfJson: {
63
- Transcoder: "pdf2json@2.0.1 [https://github.com/modesty/pdf2json]",
64
- Meta: {
65
- CreationDate: "*",
66
- Creator: "PDFKit",
67
- IsAcroFormPresent: false,
68
- IsXFAPresent: false,
69
- Metadata: {},
70
- PDFFormatVersion: "1.3",
71
- Producer: "PDFKit",
72
- },
73
- Pages: [
74
- {
75
- Height: 52.625,
76
- Width: 37.188,
77
- HLines: [],
78
- VLines: [],
79
- Fills: [],
80
- Texts: [
81
- {
82
- x: -0.25,
83
- y: -0.301,
84
- w: 52.25,
85
- sw: 0.32553125,
86
- oc: undefined,
87
- A: "left",
88
- R: [
89
- {
90
- T: "I%20am%20a%20table",
91
- S: -1,
92
- TS: [0, 13, 0, 0],
93
- },
94
- ],
95
- },
96
- {
97
- x: -0.25,
98
- y: 0.42100000000000004,
99
- w: 25.56,
100
- sw: 0.32553125,
101
- oc: undefined,
102
- A: "left",
103
- R: [
104
- {
105
- T: "Cell%201",
106
- S: -1,
107
- TS: [0, 13, 0, 0],
108
- },
109
- ],
110
- },
111
- {
112
- x: -0.25,
113
- y: 1.144,
114
- w: 25.56,
115
- sw: 0.32553125,
116
- oc: undefined,
117
- A: "left",
118
- R: [
119
- {
120
- T: "Cell%202",
121
- S: -1,
122
- TS: [0, 13, 0, 0],
123
- },
124
- ],
125
- },
126
- {
127
- x: -0.25,
128
- y: 1.866,
129
- w: 25.56,
130
- sw: 0.32553125,
131
- oc: undefined,
132
- A: "left",
133
- R: [
134
- {
135
- T: "Cell%203",
136
- S: -1,
137
- TS: [0, 13, 0, 0],
138
- },
139
- ],
140
- },
141
- {
142
- x: -0.25,
143
- y: 2.589,
144
- w: 25.56,
145
- sw: 0.32553125,
146
- oc: undefined,
147
- A: "left",
148
- R: [
149
- {
150
- T: "Cell%204",
151
- S: -1,
152
- TS: [0, 13, 0, 0],
153
- },
154
- ],
155
- },
156
- {
157
- x: -0.25,
158
- y: 3.311,
159
- w: 25.56,
160
- sw: 0.32553125,
161
- oc: undefined,
162
- A: "left",
163
- R: [
164
- {
165
- T: "Cell%205",
166
- S: -1,
167
- TS: [0, 13, 0, 0],
168
- },
169
- ],
170
- },
171
- {
172
- x: -0.25,
173
- y: 4.034,
174
- w: 25.56,
175
- sw: 0.32553125,
176
- oc: undefined,
177
- A: "left",
178
- R: [
179
- {
180
- T: "Cell%206",
181
- S: -1,
182
- TS: [0, 13, 0, 0],
183
- },
184
- ],
185
- },
186
- {
187
- x: -0.25,
188
- y: 4.756,
189
- w: 25.56,
190
- sw: 0.32553125,
191
- oc: undefined,
192
- A: "left",
193
- R: [
194
- {
195
- T: "Cell%207",
196
- S: -1,
197
- TS: [0, 13, 0, 0],
198
- },
199
- ],
200
- },
201
- {
202
- x: -0.25,
203
- y: 5.479,
204
- w: 25.56,
205
- sw: 0.32553125,
206
- oc: undefined,
207
- A: "left",
208
- R: [
209
- {
210
- T: "Cell%208",
211
- S: -1,
212
- TS: [0, 13, 0, 0],
213
- },
214
- ],
215
- },
216
- {
217
- x: -0.25,
218
- y: 6.201,
219
- w: 25.56,
220
- sw: 0.32553125,
221
- oc: undefined,
222
- A: "left",
223
- R: [
224
- {
225
- T: "Cell%209",
226
- S: -1,
227
- TS: [0, 13, 0, 0],
228
- },
229
- ],
230
- },
231
- {
232
- x: -0.25,
233
- y: 6.924,
234
- w: 52.25,
235
- sw: 0.32553125,
236
- oc: undefined,
237
- A: "left",
238
- R: [
239
- {
240
- T: "I%20am%20a%20table",
241
- S: -1,
242
- TS: [0, 13, 0, 0],
243
- },
244
- ],
245
- },
246
- {
247
- x: -0.25,
248
- y: 7.646000000000001,
249
- w: 25.56,
250
- sw: 0.32553125,
251
- oc: undefined,
252
- A: "left",
253
- R: [
254
- {
255
- T: "Cell%201",
256
- S: -1,
257
- TS: [0, 13, 0, 0],
258
- },
259
- ],
260
- },
261
- {
262
- x: -0.25,
263
- y: 8.369,
264
- w: 25.56,
265
- sw: 0.32553125,
266
- oc: undefined,
267
- A: "left",
268
- R: [
269
- {
270
- T: "Cell%202",
271
- S: -1,
272
- TS: [0, 13, 0, 0],
273
- },
274
- ],
275
- },
276
- {
277
- x: -0.25,
278
- y: 9.091,
279
- w: 25.56,
280
- sw: 0.32553125,
281
- oc: undefined,
282
- A: "left",
283
- R: [
284
- {
285
- T: "Cell%203",
286
- S: -1,
287
- TS: [0, 13, 0, 0],
288
- },
289
- ],
290
- },
291
- {
292
- x: -0.25,
293
- y: 9.814,
294
- w: 25.56,
295
- sw: 0.32553125,
296
- oc: undefined,
297
- A: "left",
298
- R: [
299
- {
300
- T: "Cell%204",
301
- S: -1,
302
- TS: [0, 13, 0, 0],
303
- },
304
- ],
305
- },
306
- {
307
- x: -0.25,
308
- y: 10.536,
309
- w: 25.56,
310
- sw: 0.32553125,
311
- oc: undefined,
312
- A: "left",
313
- R: [
314
- {
315
- T: "Cell%205",
316
- S: -1,
317
- TS: [0, 13, 0, 0],
318
- },
319
- ],
320
- },
321
- {
322
- x: -0.25,
323
- y: 11.259,
324
- w: 25.56,
325
- sw: 0.32553125,
326
- oc: undefined,
327
- A: "left",
328
- R: [
329
- {
330
- T: "Cell%206",
331
- S: -1,
332
- TS: [0, 13, 0, 0],
333
- },
334
- ],
335
- },
336
- {
337
- x: -0.25,
338
- y: 11.981,
339
- w: 25.56,
340
- sw: 0.32553125,
341
- oc: undefined,
342
- A: "left",
343
- R: [
344
- {
345
- T: "Cell%207",
346
- S: -1,
347
- TS: [0, 13, 0, 0],
348
- },
349
- ],
350
- },
351
- {
352
- x: -0.25,
353
- y: 12.704,
354
- w: 25.56,
355
- sw: 0.32553125,
356
- oc: undefined,
357
- A: "left",
358
- R: [
359
- {
360
- T: "Cell%208",
361
- S: -1,
362
- TS: [0, 13, 0, 0],
363
- },
364
- ],
365
- },
366
- {
367
- x: -0.25,
368
- y: 13.426,
369
- w: 25.56,
370
- sw: 0.32553125,
371
- oc: undefined,
372
- A: "left",
373
- R: [
374
- {
375
- T: "Cell%209",
376
- S: -1,
377
- TS: [0, 13, 0, 0],
378
- },
379
- ],
380
- },
381
- {
382
- x: -0.25,
383
- y: 14.149,
384
- w: 52.25,
385
- sw: 0.32553125,
386
- oc: undefined,
387
- A: "left",
388
- R: [
389
- {
390
- T: "I%20am%20a%20table",
391
- S: -1,
392
- TS: [0, 13, 0, 0],
393
- },
394
- ],
395
- },
396
- {
397
- x: -0.25,
398
- y: 14.871,
399
- w: 25.56,
400
- sw: 0.32553125,
401
- oc: undefined,
402
- A: "left",
403
- R: [
404
- {
405
- T: "Cell%201",
406
- S: -1,
407
- TS: [0, 13, 0, 0],
408
- },
409
- ],
410
- },
411
- {
412
- x: -0.25,
413
- y: 15.594000000000001,
414
- w: 25.56,
415
- sw: 0.32553125,
416
- oc: undefined,
417
- A: "left",
418
- R: [
419
- {
420
- T: "Cell%202",
421
- S: -1,
422
- TS: [0, 13, 0, 0],
423
- },
424
- ],
425
- },
426
- {
427
- x: -0.25,
428
- y: 16.316,
429
- w: 25.56,
430
- sw: 0.32553125,
431
- oc: undefined,
432
- A: "left",
433
- R: [
434
- {
435
- T: "Cell%203",
436
- S: -1,
437
- TS: [0, 13, 0, 0],
438
- },
439
- ],
440
- },
441
- {
442
- x: -0.25,
443
- y: 17.039,
444
- w: 25.56,
445
- sw: 0.32553125,
446
- oc: undefined,
447
- A: "left",
448
- R: [
449
- {
450
- T: "Cell%204",
451
- S: -1,
452
- TS: [0, 13, 0, 0],
453
- },
454
- ],
455
- },
456
- {
457
- x: -0.25,
458
- y: 17.761,
459
- w: 25.56,
460
- sw: 0.32553125,
461
- oc: undefined,
462
- A: "left",
463
- R: [
464
- {
465
- T: "Cell%205",
466
- S: -1,
467
- TS: [0, 13, 0, 0],
468
- },
469
- ],
470
- },
471
- {
472
- x: -0.25,
473
- y: 18.484,
474
- w: 25.56,
475
- sw: 0.32553125,
476
- oc: undefined,
477
- A: "left",
478
- R: [
479
- {
480
- T: "Cell%206",
481
- S: -1,
482
- TS: [0, 13, 0, 0],
483
- },
484
- ],
485
- },
486
- {
487
- x: -0.25,
488
- y: 19.206,
489
- w: 25.56,
490
- sw: 0.32553125,
491
- oc: undefined,
492
- A: "left",
493
- R: [
494
- {
495
- T: "Cell%207",
496
- S: -1,
497
- TS: [0, 13, 0, 0],
498
- },
499
- ],
500
- },
501
- {
502
- x: -0.25,
503
- y: 19.929,
504
- w: 25.56,
505
- sw: 0.32553125,
506
- oc: undefined,
507
- A: "left",
508
- R: [
509
- {
510
- T: "Cell%208",
511
- S: -1,
512
- TS: [0, 13, 0, 0],
513
- },
514
- ],
515
- },
516
- {
517
- x: -0.25,
518
- y: 20.651,
519
- w: 25.56,
520
- sw: 0.32553125,
521
- oc: undefined,
522
- A: "left",
523
- R: [
524
- {
525
- T: "Cell%209",
526
- S: -1,
527
- TS: [0, 13, 0, 0],
528
- },
529
- ],
530
- },
531
- {
532
- x: -0.25,
533
- y: 21.374,
534
- w: 52.25,
535
- sw: 0.32553125,
536
- oc: undefined,
537
- A: "left",
538
- R: [
539
- {
540
- T: "I%20am%20a%20table",
541
- S: -1,
542
- TS: [0, 13, 0, 0],
543
- },
544
- ],
545
- },
546
- {
547
- x: -0.25,
548
- y: 22.096,
549
- w: 25.56,
550
- sw: 0.32553125,
551
- oc: undefined,
552
- A: "left",
553
- R: [
554
- {
555
- T: "Cell%201",
556
- S: -1,
557
- TS: [0, 13, 0, 0],
558
- },
559
- ],
560
- },
561
- {
562
- x: -0.25,
563
- y: 22.819,
564
- w: 25.56,
565
- sw: 0.32553125,
566
- oc: undefined,
567
- A: "left",
568
- R: [
569
- {
570
- T: "Cell%202",
571
- S: -1,
572
- TS: [0, 13, 0, 0],
573
- },
574
- ],
575
- },
576
- {
577
- x: -0.25,
578
- y: 23.541,
579
- w: 25.56,
580
- sw: 0.32553125,
581
- oc: undefined,
582
- A: "left",
583
- R: [
584
- {
585
- T: "Cell%203",
586
- S: -1,
587
- TS: [0, 13, 0, 0],
588
- },
589
- ],
590
- },
591
- {
592
- x: -0.25,
593
- y: 24.264,
594
- w: 25.56,
595
- sw: 0.32553125,
596
- oc: undefined,
597
- A: "left",
598
- R: [
599
- {
600
- T: "Cell%204",
601
- S: -1,
602
- TS: [0, 13, 0, 0],
603
- },
604
- ],
605
- },
606
- {
607
- x: -0.25,
608
- y: 24.986,
609
- w: 25.56,
610
- sw: 0.32553125,
611
- oc: undefined,
612
- A: "left",
613
- R: [
614
- {
615
- T: "Cell%205",
616
- S: -1,
617
- TS: [0, 13, 0, 0],
618
- },
619
- ],
620
- },
621
- {
622
- x: -0.25,
623
- y: 25.709,
624
- w: 25.56,
625
- sw: 0.32553125,
626
- oc: undefined,
627
- A: "left",
628
- R: [
629
- {
630
- T: "Cell%206",
631
- S: -1,
632
- TS: [0, 13, 0, 0],
633
- },
634
- ],
635
- },
636
- {
637
- x: -0.25,
638
- y: 26.431,
639
- w: 25.56,
640
- sw: 0.32553125,
641
- oc: undefined,
642
- A: "left",
643
- R: [
644
- {
645
- T: "Cell%207",
646
- S: -1,
647
- TS: [0, 13, 0, 0],
648
- },
649
- ],
650
- },
651
- {
652
- x: -0.25,
653
- y: 27.154,
654
- w: 25.56,
655
- sw: 0.32553125,
656
- oc: undefined,
657
- A: "left",
658
- R: [
659
- {
660
- T: "Cell%208",
661
- S: -1,
662
- TS: [0, 13, 0, 0],
663
- },
664
- ],
665
- },
666
- {
667
- x: -0.25,
668
- y: 27.876,
669
- w: 25.56,
670
- sw: 0.32553125,
671
- oc: undefined,
672
- A: "left",
673
- R: [
674
- {
675
- T: "Cell%209",
676
- S: -1,
677
- TS: [0, 13, 0, 0],
678
- },
679
- ],
680
- },
681
- {
682
- x: -0.25,
683
- y: 28.599,
684
- w: 52.25,
685
- sw: 0.32553125,
686
- oc: undefined,
687
- A: "left",
688
- R: [
689
- {
690
- T: "I%20am%20a%20table",
691
- S: -1,
692
- TS: [0, 13, 0, 0],
693
- },
694
- ],
695
- },
696
- {
697
- x: -0.25,
698
- y: 29.321,
699
- w: 25.56,
700
- sw: 0.32553125,
701
- oc: undefined,
702
- A: "left",
703
- R: [
704
- {
705
- T: "Cell%201",
706
- S: -1,
707
- TS: [0, 13, 0, 0],
708
- },
709
- ],
710
- },
711
- {
712
- x: -0.25,
713
- y: 30.044,
714
- w: 25.56,
715
- sw: 0.32553125,
716
- oc: undefined,
717
- A: "left",
718
- R: [
719
- {
720
- T: "Cell%202",
721
- S: -1,
722
- TS: [0, 13, 0, 0],
723
- },
724
- ],
725
- },
726
- {
727
- x: -0.25,
728
- y: 30.766,
729
- w: 25.56,
730
- sw: 0.32553125,
731
- oc: undefined,
732
- A: "left",
733
- R: [
734
- {
735
- T: "Cell%203",
736
- S: -1,
737
- TS: [0, 13, 0, 0],
738
- },
739
- ],
740
- },
741
- {
742
- x: -0.25,
743
- y: 31.488999999999997,
744
- w: 25.56,
745
- sw: 0.32553125,
746
- oc: undefined,
747
- A: "left",
748
- R: [
749
- {
750
- T: "Cell%204",
751
- S: -1,
752
- TS: [0, 13, 0, 0],
753
- },
754
- ],
755
- },
756
- {
757
- x: -0.25,
758
- y: 32.211,
759
- w: 25.56,
760
- sw: 0.32553125,
761
- oc: undefined,
762
- A: "left",
763
- R: [
764
- {
765
- T: "Cell%205",
766
- S: -1,
767
- TS: [0, 13, 0, 0],
768
- },
769
- ],
770
- },
771
- {
772
- x: -0.25,
773
- y: 32.934,
774
- w: 25.56,
775
- sw: 0.32553125,
776
- oc: undefined,
777
- A: "left",
778
- R: [
779
- {
780
- T: "Cell%206",
781
- S: -1,
782
- TS: [0, 13, 0, 0],
783
- },
784
- ],
785
- },
786
- {
787
- x: -0.25,
788
- y: 33.656,
789
- w: 25.56,
790
- sw: 0.32553125,
791
- oc: undefined,
792
- A: "left",
793
- R: [
794
- {
795
- T: "Cell%207",
796
- S: -1,
797
- TS: [0, 13, 0, 0],
798
- },
799
- ],
800
- },
801
- {
802
- x: -0.25,
803
- y: 34.379,
804
- w: 25.56,
805
- sw: 0.32553125,
806
- oc: undefined,
807
- A: "left",
808
- R: [
809
- {
810
- T: "Cell%208",
811
- S: -1,
812
- TS: [0, 13, 0, 0],
813
- },
814
- ],
815
- },
816
- {
817
- x: -0.25,
818
- y: 35.101,
819
- w: 25.56,
820
- sw: 0.32553125,
821
- oc: undefined,
822
- A: "left",
823
- R: [
824
- {
825
- T: "Cell%209",
826
- S: -1,
827
- TS: [0, 13, 0, 0],
828
- },
829
- ],
830
- },
831
- {
832
- x: -0.25,
833
- y: 35.824,
834
- w: 52.25,
835
- sw: 0.32553125,
836
- oc: undefined,
837
- A: "left",
838
- R: [
839
- {
840
- T: "I%20am%20a%20table",
841
- S: -1,
842
- TS: [0, 13, 0, 0],
843
- },
844
- ],
845
- },
846
- {
847
- x: -0.25,
848
- y: 36.546,
849
- w: 25.56,
850
- sw: 0.32553125,
851
- oc: undefined,
852
- A: "left",
853
- R: [
854
- {
855
- T: "Cell%201",
856
- S: -1,
857
- TS: [0, 13, 0, 0],
858
- },
859
- ],
860
- },
861
- {
862
- x: -0.25,
863
- y: 37.269,
864
- w: 25.56,
865
- sw: 0.32553125,
866
- oc: undefined,
867
- A: "left",
868
- R: [
869
- {
870
- T: "Cell%202",
871
- S: -1,
872
- TS: [0, 13, 0, 0],
873
- },
874
- ],
875
- },
876
- {
877
- x: -0.25,
878
- y: 37.991,
879
- w: 25.56,
880
- sw: 0.32553125,
881
- oc: undefined,
882
- A: "left",
883
- R: [
884
- {
885
- T: "Cell%203",
886
- S: -1,
887
- TS: [0, 13, 0, 0],
888
- },
889
- ],
890
- },
891
- {
892
- x: -0.25,
893
- y: 38.714,
894
- w: 25.56,
895
- sw: 0.32553125,
896
- oc: undefined,
897
- A: "left",
898
- R: [
899
- {
900
- T: "Cell%204",
901
- S: -1,
902
- TS: [0, 13, 0, 0],
903
- },
904
- ],
905
- },
906
- {
907
- x: -0.25,
908
- y: 39.436,
909
- w: 25.56,
910
- sw: 0.32553125,
911
- oc: undefined,
912
- A: "left",
913
- R: [
914
- {
915
- T: "Cell%205",
916
- S: -1,
917
- TS: [0, 13, 0, 0],
918
- },
919
- ],
920
- },
921
- {
922
- x: -0.25,
923
- y: 40.159,
924
- w: 25.56,
925
- sw: 0.32553125,
926
- oc: undefined,
927
- A: "left",
928
- R: [
929
- {
930
- T: "Cell%206",
931
- S: -1,
932
- TS: [0, 13, 0, 0],
933
- },
934
- ],
935
- },
936
- {
937
- x: -0.25,
938
- y: 40.881,
939
- w: 25.56,
940
- sw: 0.32553125,
941
- oc: undefined,
942
- A: "left",
943
- R: [
944
- {
945
- T: "Cell%207",
946
- S: -1,
947
- TS: [0, 13, 0, 0],
948
- },
949
- ],
950
- },
951
- {
952
- x: -0.25,
953
- y: 41.604,
954
- w: 25.56,
955
- sw: 0.32553125,
956
- oc: undefined,
957
- A: "left",
958
- R: [
959
- {
960
- T: "Cell%208",
961
- S: -1,
962
- TS: [0, 13, 0, 0],
963
- },
964
- ],
965
- },
966
- {
967
- x: -0.25,
968
- y: 42.326,
969
- w: 25.56,
970
- sw: 0.32553125,
971
- oc: undefined,
972
- A: "left",
973
- R: [
974
- {
975
- T: "Cell%209",
976
- S: -1,
977
- TS: [0, 13, 0, 0],
978
- },
979
- ],
980
- },
981
- ],
982
- Fields: [],
983
- Boxsets: [],
984
- },
985
- {
986
- Height: 52.625,
987
- Width: 37.188,
988
- HLines: [],
989
- VLines: [],
990
- Fills: [],
991
- Texts: [
992
- {
993
- x: -0.25,
994
- y: -0.301,
995
- w: 52.25,
996
- sw: 0.32553125,
997
- oc: undefined,
998
- A: "left",
999
- R: [
1000
- {
1001
- T: "I%20am%20a%20table",
1002
- S: -1,
1003
- TS: [0, 13, 0, 0],
1004
- },
1005
- ],
1006
- },
1007
- {
1008
- x: -0.25,
1009
- y: 0.42100000000000004,
1010
- w: 25.56,
1011
- sw: 0.32553125,
1012
- oc: undefined,
1013
- A: "left",
1014
- R: [
1015
- {
1016
- T: "Cell%201",
1017
- S: -1,
1018
- TS: [0, 13, 0, 0],
1019
- },
1020
- ],
1021
- },
1022
- {
1023
- x: -0.25,
1024
- y: 1.144,
1025
- w: 25.56,
1026
- sw: 0.32553125,
1027
- oc: undefined,
1028
- A: "left",
1029
- R: [
1030
- {
1031
- T: "Cell%202",
1032
- S: -1,
1033
- TS: [0, 13, 0, 0],
1034
- },
1035
- ],
1036
- },
1037
- {
1038
- x: -0.25,
1039
- y: 1.866,
1040
- w: 25.56,
1041
- sw: 0.32553125,
1042
- oc: undefined,
1043
- A: "left",
1044
- R: [
1045
- {
1046
- T: "Cell%203",
1047
- S: -1,
1048
- TS: [0, 13, 0, 0],
1049
- },
1050
- ],
1051
- },
1052
- {
1053
- x: -0.25,
1054
- y: 2.589,
1055
- w: 25.56,
1056
- sw: 0.32553125,
1057
- oc: undefined,
1058
- A: "left",
1059
- R: [
1060
- {
1061
- T: "Cell%204",
1062
- S: -1,
1063
- TS: [0, 13, 0, 0],
1064
- },
1065
- ],
1066
- },
1067
- {
1068
- x: -0.25,
1069
- y: 3.311,
1070
- w: 25.56,
1071
- sw: 0.32553125,
1072
- oc: undefined,
1073
- A: "left",
1074
- R: [
1075
- {
1076
- T: "Cell%205",
1077
- S: -1,
1078
- TS: [0, 13, 0, 0],
1079
- },
1080
- ],
1081
- },
1082
- {
1083
- x: -0.25,
1084
- y: 4.034,
1085
- w: 25.56,
1086
- sw: 0.32553125,
1087
- oc: undefined,
1088
- A: "left",
1089
- R: [
1090
- {
1091
- T: "Cell%206",
1092
- S: -1,
1093
- TS: [0, 13, 0, 0],
1094
- },
1095
- ],
1096
- },
1097
- {
1098
- x: -0.25,
1099
- y: 4.756,
1100
- w: 25.56,
1101
- sw: 0.32553125,
1102
- oc: undefined,
1103
- A: "left",
1104
- R: [
1105
- {
1106
- T: "Cell%207",
1107
- S: -1,
1108
- TS: [0, 13, 0, 0],
1109
- },
1110
- ],
1111
- },
1112
- {
1113
- x: -0.25,
1114
- y: 5.479,
1115
- w: 25.56,
1116
- sw: 0.32553125,
1117
- oc: undefined,
1118
- A: "left",
1119
- R: [
1120
- {
1121
- T: "Cell%208",
1122
- S: -1,
1123
- TS: [0, 13, 0, 0],
1124
- },
1125
- ],
1126
- },
1127
- {
1128
- x: -0.25,
1129
- y: 6.201,
1130
- w: 25.56,
1131
- sw: 0.32553125,
1132
- oc: undefined,
1133
- A: "left",
1134
- R: [
1135
- {
1136
- T: "Cell%209",
1137
- S: -1,
1138
- TS: [0, 13, 0, 0],
1139
- },
1140
- ],
1141
- },
1142
- {
1143
- x: -0.25,
1144
- y: 6.924,
1145
- w: 52.25,
1146
- sw: 0.32553125,
1147
- oc: undefined,
1148
- A: "left",
1149
- R: [
1150
- {
1151
- T: "I%20am%20a%20table",
1152
- S: -1,
1153
- TS: [0, 13, 0, 0],
1154
- },
1155
- ],
1156
- },
1157
- {
1158
- x: -0.25,
1159
- y: 7.646000000000001,
1160
- w: 25.56,
1161
- sw: 0.32553125,
1162
- oc: undefined,
1163
- A: "left",
1164
- R: [
1165
- {
1166
- T: "Cell%201",
1167
- S: -1,
1168
- TS: [0, 13, 0, 0],
1169
- },
1170
- ],
1171
- },
1172
- {
1173
- x: -0.25,
1174
- y: 8.369,
1175
- w: 25.56,
1176
- sw: 0.32553125,
1177
- oc: undefined,
1178
- A: "left",
1179
- R: [
1180
- {
1181
- T: "Cell%202",
1182
- S: -1,
1183
- TS: [0, 13, 0, 0],
1184
- },
1185
- ],
1186
- },
1187
- {
1188
- x: -0.25,
1189
- y: 9.091,
1190
- w: 25.56,
1191
- sw: 0.32553125,
1192
- oc: undefined,
1193
- A: "left",
1194
- R: [
1195
- {
1196
- T: "Cell%203",
1197
- S: -1,
1198
- TS: [0, 13, 0, 0],
1199
- },
1200
- ],
1201
- },
1202
- {
1203
- x: -0.25,
1204
- y: 9.814,
1205
- w: 25.56,
1206
- sw: 0.32553125,
1207
- oc: undefined,
1208
- A: "left",
1209
- R: [
1210
- {
1211
- T: "Cell%204",
1212
- S: -1,
1213
- TS: [0, 13, 0, 0],
1214
- },
1215
- ],
1216
- },
1217
- {
1218
- x: -0.25,
1219
- y: 10.536,
1220
- w: 25.56,
1221
- sw: 0.32553125,
1222
- oc: undefined,
1223
- A: "left",
1224
- R: [
1225
- {
1226
- T: "Cell%205",
1227
- S: -1,
1228
- TS: [0, 13, 0, 0],
1229
- },
1230
- ],
1231
- },
1232
- {
1233
- x: -0.25,
1234
- y: 11.259,
1235
- w: 25.56,
1236
- sw: 0.32553125,
1237
- oc: undefined,
1238
- A: "left",
1239
- R: [
1240
- {
1241
- T: "Cell%206",
1242
- S: -1,
1243
- TS: [0, 13, 0, 0],
1244
- },
1245
- ],
1246
- },
1247
- {
1248
- x: -0.25,
1249
- y: 11.981,
1250
- w: 25.56,
1251
- sw: 0.32553125,
1252
- oc: undefined,
1253
- A: "left",
1254
- R: [
1255
- {
1256
- T: "Cell%207",
1257
- S: -1,
1258
- TS: [0, 13, 0, 0],
1259
- },
1260
- ],
1261
- },
1262
- {
1263
- x: -0.25,
1264
- y: 12.704,
1265
- w: 25.56,
1266
- sw: 0.32553125,
1267
- oc: undefined,
1268
- A: "left",
1269
- R: [
1270
- {
1271
- T: "Cell%208",
1272
- S: -1,
1273
- TS: [0, 13, 0, 0],
1274
- },
1275
- ],
1276
- },
1277
- {
1278
- x: -0.25,
1279
- y: 13.426,
1280
- w: 25.56,
1281
- sw: 0.32553125,
1282
- oc: undefined,
1283
- A: "left",
1284
- R: [
1285
- {
1286
- T: "Cell%209",
1287
- S: -1,
1288
- TS: [0, 13, 0, 0],
1289
- },
1290
- ],
1291
- },
1292
- ],
1293
- Fields: [],
1294
- Boxsets: [],
1295
- },
1296
- ],
1297
- },
1298
- };
1
+ /* eslint-disable max-lines */
2
+ import React from "react";
3
+ import { ExportTestDef } from "../export-test-def";
4
+ import {
5
+ Paragraph,
6
+ AbstractDoc,
7
+ Section,
8
+ Table,
9
+ TableRow,
10
+ TableCell,
11
+ TextRun,
12
+ Group,
13
+ } from "../../../../abstract-document-jsx";
14
+
15
+ const rowsList = [
16
+ <Table columnWidths={[100]} key={0}>
17
+ <TableRow>
18
+ <TableCell>
19
+ <Paragraph>
20
+ <TextRun text={"I am a table"} />
21
+ </Paragraph>
22
+ </TableCell>
23
+ </TableRow>
24
+ </Table>,
25
+ ];
26
+
27
+ //eslint-disable-next-line
28
+ for (let i = 1; i < 10; i++) {
29
+ rowsList.push(
30
+ <Table columnWidths={[100, 100, 100]} key={i}>
31
+ <TableRow>
32
+ <TableCell>
33
+ <Paragraph>
34
+ <TextRun text={`Cell ${i}`} />
35
+ </Paragraph>
36
+ </TableCell>
37
+ </TableRow>
38
+ </Table>
39
+ );
40
+ }
41
+ const group = rowsList;
42
+
43
+ export const test: ExportTestDef = {
44
+ name: "Group Tables",
45
+ abstractDocJsx: (
46
+ <AbstractDoc>
47
+ <Section>
48
+ {[
49
+ group,
50
+ group,
51
+ group,
52
+ group,
53
+ group,
54
+ group,
55
+ <Group key={"test"} keepTogether={true}>
56
+ {[group, group]}
57
+ </Group>,
58
+ ]}
59
+ </Section>
60
+ </AbstractDoc>
61
+ ),
62
+ expectedPdfJson: {
63
+ Transcoder: "pdf2json@2.0.1 [https://github.com/modesty/pdf2json]",
64
+ Meta: {
65
+ CreationDate: "*",
66
+ Creator: "PDFKit",
67
+ IsAcroFormPresent: false,
68
+ IsXFAPresent: false,
69
+ Metadata: {},
70
+ PDFFormatVersion: "1.3",
71
+ Producer: "PDFKit",
72
+ },
73
+ Pages: [
74
+ {
75
+ Height: 52.625,
76
+ Width: 37.188,
77
+ HLines: [],
78
+ VLines: [],
79
+ Fills: [],
80
+ Texts: [
81
+ {
82
+ x: -0.25,
83
+ y: -0.301,
84
+ w: 52.25,
85
+ sw: 0.32553125,
86
+ oc: undefined,
87
+ A: "left",
88
+ R: [
89
+ {
90
+ T: "I%20am%20a%20table",
91
+ S: -1,
92
+ TS: [0, 13, 0, 0],
93
+ },
94
+ ],
95
+ },
96
+ {
97
+ x: -0.25,
98
+ y: 0.42100000000000004,
99
+ w: 25.56,
100
+ sw: 0.32553125,
101
+ oc: undefined,
102
+ A: "left",
103
+ R: [
104
+ {
105
+ T: "Cell%201",
106
+ S: -1,
107
+ TS: [0, 13, 0, 0],
108
+ },
109
+ ],
110
+ },
111
+ {
112
+ x: -0.25,
113
+ y: 1.144,
114
+ w: 25.56,
115
+ sw: 0.32553125,
116
+ oc: undefined,
117
+ A: "left",
118
+ R: [
119
+ {
120
+ T: "Cell%202",
121
+ S: -1,
122
+ TS: [0, 13, 0, 0],
123
+ },
124
+ ],
125
+ },
126
+ {
127
+ x: -0.25,
128
+ y: 1.866,
129
+ w: 25.56,
130
+ sw: 0.32553125,
131
+ oc: undefined,
132
+ A: "left",
133
+ R: [
134
+ {
135
+ T: "Cell%203",
136
+ S: -1,
137
+ TS: [0, 13, 0, 0],
138
+ },
139
+ ],
140
+ },
141
+ {
142
+ x: -0.25,
143
+ y: 2.589,
144
+ w: 25.56,
145
+ sw: 0.32553125,
146
+ oc: undefined,
147
+ A: "left",
148
+ R: [
149
+ {
150
+ T: "Cell%204",
151
+ S: -1,
152
+ TS: [0, 13, 0, 0],
153
+ },
154
+ ],
155
+ },
156
+ {
157
+ x: -0.25,
158
+ y: 3.311,
159
+ w: 25.56,
160
+ sw: 0.32553125,
161
+ oc: undefined,
162
+ A: "left",
163
+ R: [
164
+ {
165
+ T: "Cell%205",
166
+ S: -1,
167
+ TS: [0, 13, 0, 0],
168
+ },
169
+ ],
170
+ },
171
+ {
172
+ x: -0.25,
173
+ y: 4.034,
174
+ w: 25.56,
175
+ sw: 0.32553125,
176
+ oc: undefined,
177
+ A: "left",
178
+ R: [
179
+ {
180
+ T: "Cell%206",
181
+ S: -1,
182
+ TS: [0, 13, 0, 0],
183
+ },
184
+ ],
185
+ },
186
+ {
187
+ x: -0.25,
188
+ y: 4.756,
189
+ w: 25.56,
190
+ sw: 0.32553125,
191
+ oc: undefined,
192
+ A: "left",
193
+ R: [
194
+ {
195
+ T: "Cell%207",
196
+ S: -1,
197
+ TS: [0, 13, 0, 0],
198
+ },
199
+ ],
200
+ },
201
+ {
202
+ x: -0.25,
203
+ y: 5.479,
204
+ w: 25.56,
205
+ sw: 0.32553125,
206
+ oc: undefined,
207
+ A: "left",
208
+ R: [
209
+ {
210
+ T: "Cell%208",
211
+ S: -1,
212
+ TS: [0, 13, 0, 0],
213
+ },
214
+ ],
215
+ },
216
+ {
217
+ x: -0.25,
218
+ y: 6.201,
219
+ w: 25.56,
220
+ sw: 0.32553125,
221
+ oc: undefined,
222
+ A: "left",
223
+ R: [
224
+ {
225
+ T: "Cell%209",
226
+ S: -1,
227
+ TS: [0, 13, 0, 0],
228
+ },
229
+ ],
230
+ },
231
+ {
232
+ x: -0.25,
233
+ y: 6.924,
234
+ w: 52.25,
235
+ sw: 0.32553125,
236
+ oc: undefined,
237
+ A: "left",
238
+ R: [
239
+ {
240
+ T: "I%20am%20a%20table",
241
+ S: -1,
242
+ TS: [0, 13, 0, 0],
243
+ },
244
+ ],
245
+ },
246
+ {
247
+ x: -0.25,
248
+ y: 7.646000000000001,
249
+ w: 25.56,
250
+ sw: 0.32553125,
251
+ oc: undefined,
252
+ A: "left",
253
+ R: [
254
+ {
255
+ T: "Cell%201",
256
+ S: -1,
257
+ TS: [0, 13, 0, 0],
258
+ },
259
+ ],
260
+ },
261
+ {
262
+ x: -0.25,
263
+ y: 8.369,
264
+ w: 25.56,
265
+ sw: 0.32553125,
266
+ oc: undefined,
267
+ A: "left",
268
+ R: [
269
+ {
270
+ T: "Cell%202",
271
+ S: -1,
272
+ TS: [0, 13, 0, 0],
273
+ },
274
+ ],
275
+ },
276
+ {
277
+ x: -0.25,
278
+ y: 9.091,
279
+ w: 25.56,
280
+ sw: 0.32553125,
281
+ oc: undefined,
282
+ A: "left",
283
+ R: [
284
+ {
285
+ T: "Cell%203",
286
+ S: -1,
287
+ TS: [0, 13, 0, 0],
288
+ },
289
+ ],
290
+ },
291
+ {
292
+ x: -0.25,
293
+ y: 9.814,
294
+ w: 25.56,
295
+ sw: 0.32553125,
296
+ oc: undefined,
297
+ A: "left",
298
+ R: [
299
+ {
300
+ T: "Cell%204",
301
+ S: -1,
302
+ TS: [0, 13, 0, 0],
303
+ },
304
+ ],
305
+ },
306
+ {
307
+ x: -0.25,
308
+ y: 10.536,
309
+ w: 25.56,
310
+ sw: 0.32553125,
311
+ oc: undefined,
312
+ A: "left",
313
+ R: [
314
+ {
315
+ T: "Cell%205",
316
+ S: -1,
317
+ TS: [0, 13, 0, 0],
318
+ },
319
+ ],
320
+ },
321
+ {
322
+ x: -0.25,
323
+ y: 11.259,
324
+ w: 25.56,
325
+ sw: 0.32553125,
326
+ oc: undefined,
327
+ A: "left",
328
+ R: [
329
+ {
330
+ T: "Cell%206",
331
+ S: -1,
332
+ TS: [0, 13, 0, 0],
333
+ },
334
+ ],
335
+ },
336
+ {
337
+ x: -0.25,
338
+ y: 11.981,
339
+ w: 25.56,
340
+ sw: 0.32553125,
341
+ oc: undefined,
342
+ A: "left",
343
+ R: [
344
+ {
345
+ T: "Cell%207",
346
+ S: -1,
347
+ TS: [0, 13, 0, 0],
348
+ },
349
+ ],
350
+ },
351
+ {
352
+ x: -0.25,
353
+ y: 12.704,
354
+ w: 25.56,
355
+ sw: 0.32553125,
356
+ oc: undefined,
357
+ A: "left",
358
+ R: [
359
+ {
360
+ T: "Cell%208",
361
+ S: -1,
362
+ TS: [0, 13, 0, 0],
363
+ },
364
+ ],
365
+ },
366
+ {
367
+ x: -0.25,
368
+ y: 13.426,
369
+ w: 25.56,
370
+ sw: 0.32553125,
371
+ oc: undefined,
372
+ A: "left",
373
+ R: [
374
+ {
375
+ T: "Cell%209",
376
+ S: -1,
377
+ TS: [0, 13, 0, 0],
378
+ },
379
+ ],
380
+ },
381
+ {
382
+ x: -0.25,
383
+ y: 14.149,
384
+ w: 52.25,
385
+ sw: 0.32553125,
386
+ oc: undefined,
387
+ A: "left",
388
+ R: [
389
+ {
390
+ T: "I%20am%20a%20table",
391
+ S: -1,
392
+ TS: [0, 13, 0, 0],
393
+ },
394
+ ],
395
+ },
396
+ {
397
+ x: -0.25,
398
+ y: 14.871,
399
+ w: 25.56,
400
+ sw: 0.32553125,
401
+ oc: undefined,
402
+ A: "left",
403
+ R: [
404
+ {
405
+ T: "Cell%201",
406
+ S: -1,
407
+ TS: [0, 13, 0, 0],
408
+ },
409
+ ],
410
+ },
411
+ {
412
+ x: -0.25,
413
+ y: 15.594000000000001,
414
+ w: 25.56,
415
+ sw: 0.32553125,
416
+ oc: undefined,
417
+ A: "left",
418
+ R: [
419
+ {
420
+ T: "Cell%202",
421
+ S: -1,
422
+ TS: [0, 13, 0, 0],
423
+ },
424
+ ],
425
+ },
426
+ {
427
+ x: -0.25,
428
+ y: 16.316,
429
+ w: 25.56,
430
+ sw: 0.32553125,
431
+ oc: undefined,
432
+ A: "left",
433
+ R: [
434
+ {
435
+ T: "Cell%203",
436
+ S: -1,
437
+ TS: [0, 13, 0, 0],
438
+ },
439
+ ],
440
+ },
441
+ {
442
+ x: -0.25,
443
+ y: 17.039,
444
+ w: 25.56,
445
+ sw: 0.32553125,
446
+ oc: undefined,
447
+ A: "left",
448
+ R: [
449
+ {
450
+ T: "Cell%204",
451
+ S: -1,
452
+ TS: [0, 13, 0, 0],
453
+ },
454
+ ],
455
+ },
456
+ {
457
+ x: -0.25,
458
+ y: 17.761,
459
+ w: 25.56,
460
+ sw: 0.32553125,
461
+ oc: undefined,
462
+ A: "left",
463
+ R: [
464
+ {
465
+ T: "Cell%205",
466
+ S: -1,
467
+ TS: [0, 13, 0, 0],
468
+ },
469
+ ],
470
+ },
471
+ {
472
+ x: -0.25,
473
+ y: 18.484,
474
+ w: 25.56,
475
+ sw: 0.32553125,
476
+ oc: undefined,
477
+ A: "left",
478
+ R: [
479
+ {
480
+ T: "Cell%206",
481
+ S: -1,
482
+ TS: [0, 13, 0, 0],
483
+ },
484
+ ],
485
+ },
486
+ {
487
+ x: -0.25,
488
+ y: 19.206,
489
+ w: 25.56,
490
+ sw: 0.32553125,
491
+ oc: undefined,
492
+ A: "left",
493
+ R: [
494
+ {
495
+ T: "Cell%207",
496
+ S: -1,
497
+ TS: [0, 13, 0, 0],
498
+ },
499
+ ],
500
+ },
501
+ {
502
+ x: -0.25,
503
+ y: 19.929,
504
+ w: 25.56,
505
+ sw: 0.32553125,
506
+ oc: undefined,
507
+ A: "left",
508
+ R: [
509
+ {
510
+ T: "Cell%208",
511
+ S: -1,
512
+ TS: [0, 13, 0, 0],
513
+ },
514
+ ],
515
+ },
516
+ {
517
+ x: -0.25,
518
+ y: 20.651,
519
+ w: 25.56,
520
+ sw: 0.32553125,
521
+ oc: undefined,
522
+ A: "left",
523
+ R: [
524
+ {
525
+ T: "Cell%209",
526
+ S: -1,
527
+ TS: [0, 13, 0, 0],
528
+ },
529
+ ],
530
+ },
531
+ {
532
+ x: -0.25,
533
+ y: 21.374,
534
+ w: 52.25,
535
+ sw: 0.32553125,
536
+ oc: undefined,
537
+ A: "left",
538
+ R: [
539
+ {
540
+ T: "I%20am%20a%20table",
541
+ S: -1,
542
+ TS: [0, 13, 0, 0],
543
+ },
544
+ ],
545
+ },
546
+ {
547
+ x: -0.25,
548
+ y: 22.096,
549
+ w: 25.56,
550
+ sw: 0.32553125,
551
+ oc: undefined,
552
+ A: "left",
553
+ R: [
554
+ {
555
+ T: "Cell%201",
556
+ S: -1,
557
+ TS: [0, 13, 0, 0],
558
+ },
559
+ ],
560
+ },
561
+ {
562
+ x: -0.25,
563
+ y: 22.819,
564
+ w: 25.56,
565
+ sw: 0.32553125,
566
+ oc: undefined,
567
+ A: "left",
568
+ R: [
569
+ {
570
+ T: "Cell%202",
571
+ S: -1,
572
+ TS: [0, 13, 0, 0],
573
+ },
574
+ ],
575
+ },
576
+ {
577
+ x: -0.25,
578
+ y: 23.541,
579
+ w: 25.56,
580
+ sw: 0.32553125,
581
+ oc: undefined,
582
+ A: "left",
583
+ R: [
584
+ {
585
+ T: "Cell%203",
586
+ S: -1,
587
+ TS: [0, 13, 0, 0],
588
+ },
589
+ ],
590
+ },
591
+ {
592
+ x: -0.25,
593
+ y: 24.264,
594
+ w: 25.56,
595
+ sw: 0.32553125,
596
+ oc: undefined,
597
+ A: "left",
598
+ R: [
599
+ {
600
+ T: "Cell%204",
601
+ S: -1,
602
+ TS: [0, 13, 0, 0],
603
+ },
604
+ ],
605
+ },
606
+ {
607
+ x: -0.25,
608
+ y: 24.986,
609
+ w: 25.56,
610
+ sw: 0.32553125,
611
+ oc: undefined,
612
+ A: "left",
613
+ R: [
614
+ {
615
+ T: "Cell%205",
616
+ S: -1,
617
+ TS: [0, 13, 0, 0],
618
+ },
619
+ ],
620
+ },
621
+ {
622
+ x: -0.25,
623
+ y: 25.709,
624
+ w: 25.56,
625
+ sw: 0.32553125,
626
+ oc: undefined,
627
+ A: "left",
628
+ R: [
629
+ {
630
+ T: "Cell%206",
631
+ S: -1,
632
+ TS: [0, 13, 0, 0],
633
+ },
634
+ ],
635
+ },
636
+ {
637
+ x: -0.25,
638
+ y: 26.431,
639
+ w: 25.56,
640
+ sw: 0.32553125,
641
+ oc: undefined,
642
+ A: "left",
643
+ R: [
644
+ {
645
+ T: "Cell%207",
646
+ S: -1,
647
+ TS: [0, 13, 0, 0],
648
+ },
649
+ ],
650
+ },
651
+ {
652
+ x: -0.25,
653
+ y: 27.154,
654
+ w: 25.56,
655
+ sw: 0.32553125,
656
+ oc: undefined,
657
+ A: "left",
658
+ R: [
659
+ {
660
+ T: "Cell%208",
661
+ S: -1,
662
+ TS: [0, 13, 0, 0],
663
+ },
664
+ ],
665
+ },
666
+ {
667
+ x: -0.25,
668
+ y: 27.876,
669
+ w: 25.56,
670
+ sw: 0.32553125,
671
+ oc: undefined,
672
+ A: "left",
673
+ R: [
674
+ {
675
+ T: "Cell%209",
676
+ S: -1,
677
+ TS: [0, 13, 0, 0],
678
+ },
679
+ ],
680
+ },
681
+ {
682
+ x: -0.25,
683
+ y: 28.599,
684
+ w: 52.25,
685
+ sw: 0.32553125,
686
+ oc: undefined,
687
+ A: "left",
688
+ R: [
689
+ {
690
+ T: "I%20am%20a%20table",
691
+ S: -1,
692
+ TS: [0, 13, 0, 0],
693
+ },
694
+ ],
695
+ },
696
+ {
697
+ x: -0.25,
698
+ y: 29.321,
699
+ w: 25.56,
700
+ sw: 0.32553125,
701
+ oc: undefined,
702
+ A: "left",
703
+ R: [
704
+ {
705
+ T: "Cell%201",
706
+ S: -1,
707
+ TS: [0, 13, 0, 0],
708
+ },
709
+ ],
710
+ },
711
+ {
712
+ x: -0.25,
713
+ y: 30.044,
714
+ w: 25.56,
715
+ sw: 0.32553125,
716
+ oc: undefined,
717
+ A: "left",
718
+ R: [
719
+ {
720
+ T: "Cell%202",
721
+ S: -1,
722
+ TS: [0, 13, 0, 0],
723
+ },
724
+ ],
725
+ },
726
+ {
727
+ x: -0.25,
728
+ y: 30.766,
729
+ w: 25.56,
730
+ sw: 0.32553125,
731
+ oc: undefined,
732
+ A: "left",
733
+ R: [
734
+ {
735
+ T: "Cell%203",
736
+ S: -1,
737
+ TS: [0, 13, 0, 0],
738
+ },
739
+ ],
740
+ },
741
+ {
742
+ x: -0.25,
743
+ y: 31.488999999999997,
744
+ w: 25.56,
745
+ sw: 0.32553125,
746
+ oc: undefined,
747
+ A: "left",
748
+ R: [
749
+ {
750
+ T: "Cell%204",
751
+ S: -1,
752
+ TS: [0, 13, 0, 0],
753
+ },
754
+ ],
755
+ },
756
+ {
757
+ x: -0.25,
758
+ y: 32.211,
759
+ w: 25.56,
760
+ sw: 0.32553125,
761
+ oc: undefined,
762
+ A: "left",
763
+ R: [
764
+ {
765
+ T: "Cell%205",
766
+ S: -1,
767
+ TS: [0, 13, 0, 0],
768
+ },
769
+ ],
770
+ },
771
+ {
772
+ x: -0.25,
773
+ y: 32.934,
774
+ w: 25.56,
775
+ sw: 0.32553125,
776
+ oc: undefined,
777
+ A: "left",
778
+ R: [
779
+ {
780
+ T: "Cell%206",
781
+ S: -1,
782
+ TS: [0, 13, 0, 0],
783
+ },
784
+ ],
785
+ },
786
+ {
787
+ x: -0.25,
788
+ y: 33.656,
789
+ w: 25.56,
790
+ sw: 0.32553125,
791
+ oc: undefined,
792
+ A: "left",
793
+ R: [
794
+ {
795
+ T: "Cell%207",
796
+ S: -1,
797
+ TS: [0, 13, 0, 0],
798
+ },
799
+ ],
800
+ },
801
+ {
802
+ x: -0.25,
803
+ y: 34.379,
804
+ w: 25.56,
805
+ sw: 0.32553125,
806
+ oc: undefined,
807
+ A: "left",
808
+ R: [
809
+ {
810
+ T: "Cell%208",
811
+ S: -1,
812
+ TS: [0, 13, 0, 0],
813
+ },
814
+ ],
815
+ },
816
+ {
817
+ x: -0.25,
818
+ y: 35.101,
819
+ w: 25.56,
820
+ sw: 0.32553125,
821
+ oc: undefined,
822
+ A: "left",
823
+ R: [
824
+ {
825
+ T: "Cell%209",
826
+ S: -1,
827
+ TS: [0, 13, 0, 0],
828
+ },
829
+ ],
830
+ },
831
+ {
832
+ x: -0.25,
833
+ y: 35.824,
834
+ w: 52.25,
835
+ sw: 0.32553125,
836
+ oc: undefined,
837
+ A: "left",
838
+ R: [
839
+ {
840
+ T: "I%20am%20a%20table",
841
+ S: -1,
842
+ TS: [0, 13, 0, 0],
843
+ },
844
+ ],
845
+ },
846
+ {
847
+ x: -0.25,
848
+ y: 36.546,
849
+ w: 25.56,
850
+ sw: 0.32553125,
851
+ oc: undefined,
852
+ A: "left",
853
+ R: [
854
+ {
855
+ T: "Cell%201",
856
+ S: -1,
857
+ TS: [0, 13, 0, 0],
858
+ },
859
+ ],
860
+ },
861
+ {
862
+ x: -0.25,
863
+ y: 37.269,
864
+ w: 25.56,
865
+ sw: 0.32553125,
866
+ oc: undefined,
867
+ A: "left",
868
+ R: [
869
+ {
870
+ T: "Cell%202",
871
+ S: -1,
872
+ TS: [0, 13, 0, 0],
873
+ },
874
+ ],
875
+ },
876
+ {
877
+ x: -0.25,
878
+ y: 37.991,
879
+ w: 25.56,
880
+ sw: 0.32553125,
881
+ oc: undefined,
882
+ A: "left",
883
+ R: [
884
+ {
885
+ T: "Cell%203",
886
+ S: -1,
887
+ TS: [0, 13, 0, 0],
888
+ },
889
+ ],
890
+ },
891
+ {
892
+ x: -0.25,
893
+ y: 38.714,
894
+ w: 25.56,
895
+ sw: 0.32553125,
896
+ oc: undefined,
897
+ A: "left",
898
+ R: [
899
+ {
900
+ T: "Cell%204",
901
+ S: -1,
902
+ TS: [0, 13, 0, 0],
903
+ },
904
+ ],
905
+ },
906
+ {
907
+ x: -0.25,
908
+ y: 39.436,
909
+ w: 25.56,
910
+ sw: 0.32553125,
911
+ oc: undefined,
912
+ A: "left",
913
+ R: [
914
+ {
915
+ T: "Cell%205",
916
+ S: -1,
917
+ TS: [0, 13, 0, 0],
918
+ },
919
+ ],
920
+ },
921
+ {
922
+ x: -0.25,
923
+ y: 40.159,
924
+ w: 25.56,
925
+ sw: 0.32553125,
926
+ oc: undefined,
927
+ A: "left",
928
+ R: [
929
+ {
930
+ T: "Cell%206",
931
+ S: -1,
932
+ TS: [0, 13, 0, 0],
933
+ },
934
+ ],
935
+ },
936
+ {
937
+ x: -0.25,
938
+ y: 40.881,
939
+ w: 25.56,
940
+ sw: 0.32553125,
941
+ oc: undefined,
942
+ A: "left",
943
+ R: [
944
+ {
945
+ T: "Cell%207",
946
+ S: -1,
947
+ TS: [0, 13, 0, 0],
948
+ },
949
+ ],
950
+ },
951
+ {
952
+ x: -0.25,
953
+ y: 41.604,
954
+ w: 25.56,
955
+ sw: 0.32553125,
956
+ oc: undefined,
957
+ A: "left",
958
+ R: [
959
+ {
960
+ T: "Cell%208",
961
+ S: -1,
962
+ TS: [0, 13, 0, 0],
963
+ },
964
+ ],
965
+ },
966
+ {
967
+ x: -0.25,
968
+ y: 42.326,
969
+ w: 25.56,
970
+ sw: 0.32553125,
971
+ oc: undefined,
972
+ A: "left",
973
+ R: [
974
+ {
975
+ T: "Cell%209",
976
+ S: -1,
977
+ TS: [0, 13, 0, 0],
978
+ },
979
+ ],
980
+ },
981
+ ],
982
+ Fields: [],
983
+ Boxsets: [],
984
+ },
985
+ {
986
+ Height: 52.625,
987
+ Width: 37.188,
988
+ HLines: [],
989
+ VLines: [],
990
+ Fills: [],
991
+ Texts: [
992
+ {
993
+ x: -0.25,
994
+ y: -0.301,
995
+ w: 52.25,
996
+ sw: 0.32553125,
997
+ oc: undefined,
998
+ A: "left",
999
+ R: [
1000
+ {
1001
+ T: "I%20am%20a%20table",
1002
+ S: -1,
1003
+ TS: [0, 13, 0, 0],
1004
+ },
1005
+ ],
1006
+ },
1007
+ {
1008
+ x: -0.25,
1009
+ y: 0.42100000000000004,
1010
+ w: 25.56,
1011
+ sw: 0.32553125,
1012
+ oc: undefined,
1013
+ A: "left",
1014
+ R: [
1015
+ {
1016
+ T: "Cell%201",
1017
+ S: -1,
1018
+ TS: [0, 13, 0, 0],
1019
+ },
1020
+ ],
1021
+ },
1022
+ {
1023
+ x: -0.25,
1024
+ y: 1.144,
1025
+ w: 25.56,
1026
+ sw: 0.32553125,
1027
+ oc: undefined,
1028
+ A: "left",
1029
+ R: [
1030
+ {
1031
+ T: "Cell%202",
1032
+ S: -1,
1033
+ TS: [0, 13, 0, 0],
1034
+ },
1035
+ ],
1036
+ },
1037
+ {
1038
+ x: -0.25,
1039
+ y: 1.866,
1040
+ w: 25.56,
1041
+ sw: 0.32553125,
1042
+ oc: undefined,
1043
+ A: "left",
1044
+ R: [
1045
+ {
1046
+ T: "Cell%203",
1047
+ S: -1,
1048
+ TS: [0, 13, 0, 0],
1049
+ },
1050
+ ],
1051
+ },
1052
+ {
1053
+ x: -0.25,
1054
+ y: 2.589,
1055
+ w: 25.56,
1056
+ sw: 0.32553125,
1057
+ oc: undefined,
1058
+ A: "left",
1059
+ R: [
1060
+ {
1061
+ T: "Cell%204",
1062
+ S: -1,
1063
+ TS: [0, 13, 0, 0],
1064
+ },
1065
+ ],
1066
+ },
1067
+ {
1068
+ x: -0.25,
1069
+ y: 3.311,
1070
+ w: 25.56,
1071
+ sw: 0.32553125,
1072
+ oc: undefined,
1073
+ A: "left",
1074
+ R: [
1075
+ {
1076
+ T: "Cell%205",
1077
+ S: -1,
1078
+ TS: [0, 13, 0, 0],
1079
+ },
1080
+ ],
1081
+ },
1082
+ {
1083
+ x: -0.25,
1084
+ y: 4.034,
1085
+ w: 25.56,
1086
+ sw: 0.32553125,
1087
+ oc: undefined,
1088
+ A: "left",
1089
+ R: [
1090
+ {
1091
+ T: "Cell%206",
1092
+ S: -1,
1093
+ TS: [0, 13, 0, 0],
1094
+ },
1095
+ ],
1096
+ },
1097
+ {
1098
+ x: -0.25,
1099
+ y: 4.756,
1100
+ w: 25.56,
1101
+ sw: 0.32553125,
1102
+ oc: undefined,
1103
+ A: "left",
1104
+ R: [
1105
+ {
1106
+ T: "Cell%207",
1107
+ S: -1,
1108
+ TS: [0, 13, 0, 0],
1109
+ },
1110
+ ],
1111
+ },
1112
+ {
1113
+ x: -0.25,
1114
+ y: 5.479,
1115
+ w: 25.56,
1116
+ sw: 0.32553125,
1117
+ oc: undefined,
1118
+ A: "left",
1119
+ R: [
1120
+ {
1121
+ T: "Cell%208",
1122
+ S: -1,
1123
+ TS: [0, 13, 0, 0],
1124
+ },
1125
+ ],
1126
+ },
1127
+ {
1128
+ x: -0.25,
1129
+ y: 6.201,
1130
+ w: 25.56,
1131
+ sw: 0.32553125,
1132
+ oc: undefined,
1133
+ A: "left",
1134
+ R: [
1135
+ {
1136
+ T: "Cell%209",
1137
+ S: -1,
1138
+ TS: [0, 13, 0, 0],
1139
+ },
1140
+ ],
1141
+ },
1142
+ {
1143
+ x: -0.25,
1144
+ y: 6.924,
1145
+ w: 52.25,
1146
+ sw: 0.32553125,
1147
+ oc: undefined,
1148
+ A: "left",
1149
+ R: [
1150
+ {
1151
+ T: "I%20am%20a%20table",
1152
+ S: -1,
1153
+ TS: [0, 13, 0, 0],
1154
+ },
1155
+ ],
1156
+ },
1157
+ {
1158
+ x: -0.25,
1159
+ y: 7.646000000000001,
1160
+ w: 25.56,
1161
+ sw: 0.32553125,
1162
+ oc: undefined,
1163
+ A: "left",
1164
+ R: [
1165
+ {
1166
+ T: "Cell%201",
1167
+ S: -1,
1168
+ TS: [0, 13, 0, 0],
1169
+ },
1170
+ ],
1171
+ },
1172
+ {
1173
+ x: -0.25,
1174
+ y: 8.369,
1175
+ w: 25.56,
1176
+ sw: 0.32553125,
1177
+ oc: undefined,
1178
+ A: "left",
1179
+ R: [
1180
+ {
1181
+ T: "Cell%202",
1182
+ S: -1,
1183
+ TS: [0, 13, 0, 0],
1184
+ },
1185
+ ],
1186
+ },
1187
+ {
1188
+ x: -0.25,
1189
+ y: 9.091,
1190
+ w: 25.56,
1191
+ sw: 0.32553125,
1192
+ oc: undefined,
1193
+ A: "left",
1194
+ R: [
1195
+ {
1196
+ T: "Cell%203",
1197
+ S: -1,
1198
+ TS: [0, 13, 0, 0],
1199
+ },
1200
+ ],
1201
+ },
1202
+ {
1203
+ x: -0.25,
1204
+ y: 9.814,
1205
+ w: 25.56,
1206
+ sw: 0.32553125,
1207
+ oc: undefined,
1208
+ A: "left",
1209
+ R: [
1210
+ {
1211
+ T: "Cell%204",
1212
+ S: -1,
1213
+ TS: [0, 13, 0, 0],
1214
+ },
1215
+ ],
1216
+ },
1217
+ {
1218
+ x: -0.25,
1219
+ y: 10.536,
1220
+ w: 25.56,
1221
+ sw: 0.32553125,
1222
+ oc: undefined,
1223
+ A: "left",
1224
+ R: [
1225
+ {
1226
+ T: "Cell%205",
1227
+ S: -1,
1228
+ TS: [0, 13, 0, 0],
1229
+ },
1230
+ ],
1231
+ },
1232
+ {
1233
+ x: -0.25,
1234
+ y: 11.259,
1235
+ w: 25.56,
1236
+ sw: 0.32553125,
1237
+ oc: undefined,
1238
+ A: "left",
1239
+ R: [
1240
+ {
1241
+ T: "Cell%206",
1242
+ S: -1,
1243
+ TS: [0, 13, 0, 0],
1244
+ },
1245
+ ],
1246
+ },
1247
+ {
1248
+ x: -0.25,
1249
+ y: 11.981,
1250
+ w: 25.56,
1251
+ sw: 0.32553125,
1252
+ oc: undefined,
1253
+ A: "left",
1254
+ R: [
1255
+ {
1256
+ T: "Cell%207",
1257
+ S: -1,
1258
+ TS: [0, 13, 0, 0],
1259
+ },
1260
+ ],
1261
+ },
1262
+ {
1263
+ x: -0.25,
1264
+ y: 12.704,
1265
+ w: 25.56,
1266
+ sw: 0.32553125,
1267
+ oc: undefined,
1268
+ A: "left",
1269
+ R: [
1270
+ {
1271
+ T: "Cell%208",
1272
+ S: -1,
1273
+ TS: [0, 13, 0, 0],
1274
+ },
1275
+ ],
1276
+ },
1277
+ {
1278
+ x: -0.25,
1279
+ y: 13.426,
1280
+ w: 25.56,
1281
+ sw: 0.32553125,
1282
+ oc: undefined,
1283
+ A: "left",
1284
+ R: [
1285
+ {
1286
+ T: "Cell%209",
1287
+ S: -1,
1288
+ TS: [0, 13, 0, 0],
1289
+ },
1290
+ ],
1291
+ },
1292
+ ],
1293
+ Fields: [],
1294
+ Boxsets: [],
1295
+ },
1296
+ ],
1297
+ },
1298
+ };