abstract-document 6.9.4 → 6.9.6

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 +180 -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 +3 -3
  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,992 +1,992 @@
1
- import React from "react";
2
- import { ExportTestDef } from "../export-test-def";
3
- import * as AD from "../../../../index";
4
- import { Paragraph, AbstractDoc, Section, TextRun, render } from "../../../../abstract-document-jsx";
5
- import * as PageStyle from "../../../../abstract-document/styles/page-style";
6
-
7
- const fillerString = "a b c d e f g h i j k l m n o p q r s t u v x y z å ä ö 1 2 3 4 5 6 7 8 9 0 ! # ¤ % & / ( ) = ?";
8
-
9
- const header = [
10
- render(
11
- <Paragraph>
12
- <TextRun text="I am a header with padding. " />
13
- <TextRun text={fillerString} />
14
- </Paragraph>
15
- ),
16
- ];
17
-
18
- const footer = [
19
- render(
20
- <Paragraph>
21
- <TextRun text="I am a footer with padding. " />
22
- <TextRun text={fillerString} />
23
- </Paragraph>
24
- ),
25
- ];
26
-
27
- const margins = { left: 50, bottom: 50, right: 50, top: 50 };
28
- const pageStyle = {
29
- headerMargins: margins,
30
- footerMargins: margins,
31
- contentMargins: margins,
32
- //paperSize: "A4",
33
- //orientation: "Portrait",
34
- noTopBottomMargin: false,
35
- };
36
-
37
- const elementList = [];
38
- //eslint-disable-next-line
39
- for (let i = 0; i < 25; i++) {
40
- elementList.push(
41
- <Paragraph key={i}>
42
- <TextRun text={"I am a body and I have padding " + fillerString} />
43
- </Paragraph>
44
- );
45
- }
46
-
47
- const page = AD.AbstractDoc.MasterPage.create({ header: header, footer: footer, style: PageStyle.create(pageStyle) });
48
-
49
- export const test: ExportTestDef = {
50
- name: "Margins header body footer",
51
- abstractDocJsx: (
52
- <AbstractDoc>
53
- <Section page={page}>{elementList}</Section>
54
- </AbstractDoc>
55
- ),
56
- expectedPdfJson: {
57
- Transcoder: "pdf2json@2.0.1 [https://github.com/modesty/pdf2json]",
58
- Meta: {
59
- CreationDate: "*",
60
- Creator: "PDFKit",
61
- IsAcroFormPresent: false,
62
- IsXFAPresent: false,
63
- Metadata: {},
64
- PDFFormatVersion: "1.3",
65
- Producer: "PDFKit",
66
- },
67
- Pages: [
68
- {
69
- Height: 52.625,
70
- Width: 37.188,
71
- HLines: [],
72
- VLines: [],
73
- Fills: [],
74
- Fields: [],
75
- Boxsets: [],
76
- Texts: [
77
- {
78
- x: 2.875,
79
- y: 2.824,
80
- w: 126.18,
81
- sw: 0.32553125,
82
- oc: undefined,
83
- A: "left",
84
- R: [
85
- {
86
- T: "I%20am%20a%20header%20with%20padding.%20",
87
- S: -1,
88
- TS: [0, 13, 0, 0],
89
- },
90
- ],
91
- },
92
- {
93
- x: 10.724,
94
- y: 2.824,
95
- w: 359.1,
96
- sw: 0.32553125,
97
- oc: undefined,
98
- A: "left",
99
- R: [
100
- {
101
- T: "a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20(%20)%20",
102
- S: -1,
103
- TS: [0, 13, 0, 0],
104
- },
105
- ],
106
- },
107
- {
108
- x: 2.875,
109
- y: 3.5460000000000003,
110
- w: 14.18,
111
- sw: 0.32553125,
112
- oc: undefined,
113
- A: "left",
114
- R: [
115
- {
116
- T: "%3D%20%3F",
117
- S: -1,
118
- TS: [0, 13, 0, 0],
119
- },
120
- ],
121
- },
122
- {
123
- x: 2.875,
124
- y: 48.476,
125
- w: 120.62,
126
- sw: 0.32553125,
127
- oc: undefined,
128
- A: "left",
129
- R: [
130
- {
131
- T: "I%20am%20a%20footer%20with%20padding.%20",
132
- S: -1,
133
- TS: [0, 13, 0, 0],
134
- },
135
- ],
136
- },
137
- {
138
- x: 10.357,
139
- y: 48.476,
140
- w: 373.28,
141
- sw: 0.32553125,
142
- oc: undefined,
143
- A: "left",
144
- R: [
145
- {
146
- T: "a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20(%20)%20%3D%20%3F",
147
- S: -1,
148
- TS: [0, 13, 0, 0],
149
- },
150
- ],
151
- },
152
- {
153
- x: 2.875,
154
- y: 10.519,
155
- w: 489.75,
156
- sw: 0.32553125,
157
- oc: undefined,
158
- A: "left",
159
- R: [
160
- {
161
- T: "I%20am%20a%20body%20and%20I%20have%20padding%20a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20",
162
- S: -1,
163
- TS: [0, 13, 0, 0],
164
- },
165
- ],
166
- },
167
- {
168
- x: 2.875,
169
- y: 11.241,
170
- w: 26.4,
171
- sw: 0.32553125,
172
- oc: undefined,
173
- A: "left",
174
- R: [
175
- {
176
- T: "(%20)%20%3D%20%3F",
177
- S: -1,
178
- TS: [0, 13, 0, 0],
179
- },
180
- ],
181
- },
182
- {
183
- x: 2.875,
184
- y: 11.964,
185
- w: 489.75,
186
- sw: 0.32553125,
187
- oc: undefined,
188
- A: "left",
189
- R: [
190
- {
191
- T: "I%20am%20a%20body%20and%20I%20have%20padding%20a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20",
192
- S: -1,
193
- TS: [0, 13, 0, 0],
194
- },
195
- ],
196
- },
197
- {
198
- x: 2.875,
199
- y: 12.686,
200
- w: 26.4,
201
- sw: 0.32553125,
202
- oc: undefined,
203
- A: "left",
204
- R: [
205
- {
206
- T: "(%20)%20%3D%20%3F",
207
- S: -1,
208
- TS: [0, 13, 0, 0],
209
- },
210
- ],
211
- },
212
- {
213
- x: 2.875,
214
- y: 13.409,
215
- w: 489.75,
216
- sw: 0.32553125,
217
- oc: undefined,
218
- A: "left",
219
- R: [
220
- {
221
- T: "I%20am%20a%20body%20and%20I%20have%20padding%20a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20",
222
- S: -1,
223
- TS: [0, 13, 0, 0],
224
- },
225
- ],
226
- },
227
- {
228
- x: 2.875,
229
- y: 14.131,
230
- w: 26.4,
231
- sw: 0.32553125,
232
- oc: undefined,
233
- A: "left",
234
- R: [
235
- {
236
- T: "(%20)%20%3D%20%3F",
237
- S: -1,
238
- TS: [0, 13, 0, 0],
239
- },
240
- ],
241
- },
242
- {
243
- x: 2.875,
244
- y: 14.854,
245
- w: 489.75,
246
- sw: 0.32553125,
247
- oc: undefined,
248
- A: "left",
249
- R: [
250
- {
251
- T: "I%20am%20a%20body%20and%20I%20have%20padding%20a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20",
252
- S: -1,
253
- TS: [0, 13, 0, 0],
254
- },
255
- ],
256
- },
257
- {
258
- x: 2.875,
259
- y: 15.576,
260
- w: 26.4,
261
- sw: 0.32553125,
262
- oc: undefined,
263
- A: "left",
264
- R: [
265
- {
266
- T: "(%20)%20%3D%20%3F",
267
- S: -1,
268
- TS: [0, 13, 0, 0],
269
- },
270
- ],
271
- },
272
- {
273
- x: 2.875,
274
- y: 16.299,
275
- w: 489.75,
276
- sw: 0.32553125,
277
- oc: undefined,
278
- A: "left",
279
- R: [
280
- {
281
- T: "I%20am%20a%20body%20and%20I%20have%20padding%20a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20",
282
- S: -1,
283
- TS: [0, 13, 0, 0],
284
- },
285
- ],
286
- },
287
- {
288
- x: 2.875,
289
- y: 17.021,
290
- w: 26.4,
291
- sw: 0.32553125,
292
- oc: undefined,
293
- A: "left",
294
- R: [
295
- {
296
- T: "(%20)%20%3D%20%3F",
297
- S: -1,
298
- TS: [0, 13, 0, 0],
299
- },
300
- ],
301
- },
302
- {
303
- x: 2.875,
304
- y: 17.744,
305
- w: 489.75,
306
- sw: 0.32553125,
307
- oc: undefined,
308
- A: "left",
309
- R: [
310
- {
311
- T: "I%20am%20a%20body%20and%20I%20have%20padding%20a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20",
312
- S: -1,
313
- TS: [0, 13, 0, 0],
314
- },
315
- ],
316
- },
317
- {
318
- x: 2.875,
319
- y: 18.466,
320
- w: 26.4,
321
- sw: 0.32553125,
322
- oc: undefined,
323
- A: "left",
324
- R: [
325
- {
326
- T: "(%20)%20%3D%20%3F",
327
- S: -1,
328
- TS: [0, 13, 0, 0],
329
- },
330
- ],
331
- },
332
- {
333
- x: 2.875,
334
- y: 19.189,
335
- w: 489.75,
336
- sw: 0.32553125,
337
- oc: undefined,
338
- A: "left",
339
- R: [
340
- {
341
- T: "I%20am%20a%20body%20and%20I%20have%20padding%20a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20",
342
- S: -1,
343
- TS: [0, 13, 0, 0],
344
- },
345
- ],
346
- },
347
- {
348
- x: 2.875,
349
- y: 19.911,
350
- w: 26.4,
351
- sw: 0.32553125,
352
- oc: undefined,
353
- A: "left",
354
- R: [
355
- {
356
- T: "(%20)%20%3D%20%3F",
357
- S: -1,
358
- TS: [0, 13, 0, 0],
359
- },
360
- ],
361
- },
362
- {
363
- x: 2.875,
364
- y: 20.634,
365
- w: 489.75,
366
- sw: 0.32553125,
367
- oc: undefined,
368
- A: "left",
369
- R: [
370
- {
371
- T: "I%20am%20a%20body%20and%20I%20have%20padding%20a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20",
372
- S: -1,
373
- TS: [0, 13, 0, 0],
374
- },
375
- ],
376
- },
377
- {
378
- x: 2.875,
379
- y: 21.356,
380
- w: 26.4,
381
- sw: 0.32553125,
382
- oc: undefined,
383
- A: "left",
384
- R: [
385
- {
386
- T: "(%20)%20%3D%20%3F",
387
- S: -1,
388
- TS: [0, 13, 0, 0],
389
- },
390
- ],
391
- },
392
- {
393
- x: 2.875,
394
- y: 22.079,
395
- w: 489.75,
396
- sw: 0.32553125,
397
- oc: undefined,
398
- A: "left",
399
- R: [
400
- {
401
- T: "I%20am%20a%20body%20and%20I%20have%20padding%20a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20",
402
- S: -1,
403
- TS: [0, 13, 0, 0],
404
- },
405
- ],
406
- },
407
- {
408
- x: 2.875,
409
- y: 22.801,
410
- w: 26.4,
411
- sw: 0.32553125,
412
- oc: undefined,
413
- A: "left",
414
- R: [
415
- {
416
- T: "(%20)%20%3D%20%3F",
417
- S: -1,
418
- TS: [0, 13, 0, 0],
419
- },
420
- ],
421
- },
422
- {
423
- x: 2.875,
424
- y: 23.524,
425
- w: 489.75,
426
- sw: 0.32553125,
427
- oc: undefined,
428
- A: "left",
429
- R: [
430
- {
431
- T: "I%20am%20a%20body%20and%20I%20have%20padding%20a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20",
432
- S: -1,
433
- TS: [0, 13, 0, 0],
434
- },
435
- ],
436
- },
437
- {
438
- x: 2.875,
439
- y: 24.246,
440
- w: 26.4,
441
- sw: 0.32553125,
442
- oc: undefined,
443
- A: "left",
444
- R: [
445
- {
446
- T: "(%20)%20%3D%20%3F",
447
- S: -1,
448
- TS: [0, 13, 0, 0],
449
- },
450
- ],
451
- },
452
- {
453
- x: 2.875,
454
- y: 24.969,
455
- w: 489.75,
456
- sw: 0.32553125,
457
- oc: undefined,
458
- A: "left",
459
- R: [
460
- {
461
- T: "I%20am%20a%20body%20and%20I%20have%20padding%20a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20",
462
- S: -1,
463
- TS: [0, 13, 0, 0],
464
- },
465
- ],
466
- },
467
- {
468
- x: 2.875,
469
- y: 25.691,
470
- w: 26.4,
471
- sw: 0.32553125,
472
- oc: undefined,
473
- A: "left",
474
- R: [
475
- {
476
- T: "(%20)%20%3D%20%3F",
477
- S: -1,
478
- TS: [0, 13, 0, 0],
479
- },
480
- ],
481
- },
482
- {
483
- x: 2.875,
484
- y: 26.414,
485
- w: 489.75,
486
- sw: 0.32553125,
487
- oc: undefined,
488
- A: "left",
489
- R: [
490
- {
491
- T: "I%20am%20a%20body%20and%20I%20have%20padding%20a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20",
492
- S: -1,
493
- TS: [0, 13, 0, 0],
494
- },
495
- ],
496
- },
497
- {
498
- x: 2.875,
499
- y: 27.136,
500
- w: 26.4,
501
- sw: 0.32553125,
502
- oc: undefined,
503
- A: "left",
504
- R: [
505
- {
506
- T: "(%20)%20%3D%20%3F",
507
- S: -1,
508
- TS: [0, 13, 0, 0],
509
- },
510
- ],
511
- },
512
- {
513
- x: 2.875,
514
- y: 27.859,
515
- w: 489.75,
516
- sw: 0.32553125,
517
- oc: undefined,
518
- A: "left",
519
- R: [
520
- {
521
- T: "I%20am%20a%20body%20and%20I%20have%20padding%20a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20",
522
- S: -1,
523
- TS: [0, 13, 0, 0],
524
- },
525
- ],
526
- },
527
- {
528
- x: 2.875,
529
- y: 28.581,
530
- w: 26.4,
531
- sw: 0.32553125,
532
- oc: undefined,
533
- A: "left",
534
- R: [
535
- {
536
- T: "(%20)%20%3D%20%3F",
537
- S: -1,
538
- TS: [0, 13, 0, 0],
539
- },
540
- ],
541
- },
542
- {
543
- x: 2.875,
544
- y: 29.304,
545
- w: 489.75,
546
- sw: 0.32553125,
547
- oc: undefined,
548
- A: "left",
549
- R: [
550
- {
551
- T: "I%20am%20a%20body%20and%20I%20have%20padding%20a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20",
552
- S: -1,
553
- TS: [0, 13, 0, 0],
554
- },
555
- ],
556
- },
557
- {
558
- x: 2.875,
559
- y: 30.026,
560
- w: 26.4,
561
- sw: 0.32553125,
562
- oc: undefined,
563
- A: "left",
564
- R: [
565
- {
566
- T: "(%20)%20%3D%20%3F",
567
- S: -1,
568
- TS: [0, 13, 0, 0],
569
- },
570
- ],
571
- },
572
- {
573
- x: 2.875,
574
- y: 30.749,
575
- w: 489.75,
576
- sw: 0.32553125,
577
- oc: undefined,
578
- A: "left",
579
- R: [
580
- {
581
- T: "I%20am%20a%20body%20and%20I%20have%20padding%20a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20",
582
- S: -1,
583
- TS: [0, 13, 0, 0],
584
- },
585
- ],
586
- },
587
- {
588
- x: 2.875,
589
- y: 31.470999999999997,
590
- w: 26.4,
591
- sw: 0.32553125,
592
- oc: undefined,
593
- A: "left",
594
- R: [
595
- {
596
- T: "(%20)%20%3D%20%3F",
597
- S: -1,
598
- TS: [0, 13, 0, 0],
599
- },
600
- ],
601
- },
602
- {
603
- x: 2.875,
604
- y: 32.194,
605
- w: 489.75,
606
- sw: 0.32553125,
607
- oc: undefined,
608
- A: "left",
609
- R: [
610
- {
611
- T: "I%20am%20a%20body%20and%20I%20have%20padding%20a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20",
612
- S: -1,
613
- TS: [0, 13, 0, 0],
614
- },
615
- ],
616
- },
617
- {
618
- x: 2.875,
619
- y: 32.916,
620
- w: 26.4,
621
- sw: 0.32553125,
622
- oc: undefined,
623
- A: "left",
624
- R: [
625
- {
626
- T: "(%20)%20%3D%20%3F",
627
- S: -1,
628
- TS: [0, 13, 0, 0],
629
- },
630
- ],
631
- },
632
- {
633
- x: 2.875,
634
- y: 33.639,
635
- w: 489.75,
636
- sw: 0.32553125,
637
- oc: undefined,
638
- A: "left",
639
- R: [
640
- {
641
- T: "I%20am%20a%20body%20and%20I%20have%20padding%20a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20",
642
- S: -1,
643
- TS: [0, 13, 0, 0],
644
- },
645
- ],
646
- },
647
- {
648
- x: 2.875,
649
- y: 34.361,
650
- w: 26.4,
651
- sw: 0.32553125,
652
- oc: undefined,
653
- A: "left",
654
- R: [
655
- {
656
- T: "(%20)%20%3D%20%3F",
657
- S: -1,
658
- TS: [0, 13, 0, 0],
659
- },
660
- ],
661
- },
662
- {
663
- x: 2.875,
664
- y: 35.084,
665
- w: 489.75,
666
- sw: 0.32553125,
667
- oc: undefined,
668
- A: "left",
669
- R: [
670
- {
671
- T: "I%20am%20a%20body%20and%20I%20have%20padding%20a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20",
672
- S: -1,
673
- TS: [0, 13, 0, 0],
674
- },
675
- ],
676
- },
677
- {
678
- x: 2.875,
679
- y: 35.806,
680
- w: 26.4,
681
- sw: 0.32553125,
682
- oc: undefined,
683
- A: "left",
684
- R: [
685
- {
686
- T: "(%20)%20%3D%20%3F",
687
- S: -1,
688
- TS: [0, 13, 0, 0],
689
- },
690
- ],
691
- },
692
- {
693
- x: 2.875,
694
- y: 36.529,
695
- w: 489.75,
696
- sw: 0.32553125,
697
- oc: undefined,
698
- A: "left",
699
- R: [
700
- {
701
- T: "I%20am%20a%20body%20and%20I%20have%20padding%20a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20",
702
- S: -1,
703
- TS: [0, 13, 0, 0],
704
- },
705
- ],
706
- },
707
- {
708
- x: 2.875,
709
- y: 37.251,
710
- w: 26.4,
711
- sw: 0.32553125,
712
- oc: undefined,
713
- A: "left",
714
- R: [
715
- {
716
- T: "(%20)%20%3D%20%3F",
717
- S: -1,
718
- TS: [0, 13, 0, 0],
719
- },
720
- ],
721
- },
722
- {
723
- x: 2.875,
724
- y: 37.974,
725
- w: 489.75,
726
- sw: 0.32553125,
727
- oc: undefined,
728
- A: "left",
729
- R: [
730
- {
731
- T: "I%20am%20a%20body%20and%20I%20have%20padding%20a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20",
732
- S: -1,
733
- TS: [0, 13, 0, 0],
734
- },
735
- ],
736
- },
737
- {
738
- x: 2.875,
739
- y: 38.696,
740
- w: 26.4,
741
- sw: 0.32553125,
742
- oc: undefined,
743
- A: "left",
744
- R: [
745
- {
746
- T: "(%20)%20%3D%20%3F",
747
- S: -1,
748
- TS: [0, 13, 0, 0],
749
- },
750
- ],
751
- },
752
- {
753
- x: 2.875,
754
- y: 39.419,
755
- w: 489.75,
756
- sw: 0.32553125,
757
- oc: undefined,
758
- A: "left",
759
- R: [
760
- {
761
- T: "I%20am%20a%20body%20and%20I%20have%20padding%20a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20",
762
- S: -1,
763
- TS: [0, 13, 0, 0],
764
- },
765
- ],
766
- },
767
- {
768
- x: 2.875,
769
- y: 40.141,
770
- w: 26.4,
771
- sw: 0.32553125,
772
- oc: undefined,
773
- A: "left",
774
- R: [
775
- {
776
- T: "(%20)%20%3D%20%3F",
777
- S: -1,
778
- TS: [0, 13, 0, 0],
779
- },
780
- ],
781
- },
782
- ],
783
- },
784
- {
785
- Height: 52.625,
786
- Width: 37.188,
787
- HLines: [],
788
- VLines: [],
789
- Fills: [],
790
- Fields: [],
791
- Boxsets: [],
792
- Texts: [
793
- {
794
- x: 2.875,
795
- y: 2.824,
796
- w: 126.18,
797
- sw: 0.32553125,
798
- oc: undefined,
799
- A: "left",
800
- R: [
801
- {
802
- T: "I%20am%20a%20header%20with%20padding.%20",
803
- S: -1,
804
- TS: [0, 13, 0, 0],
805
- },
806
- ],
807
- },
808
- {
809
- x: 10.724,
810
- y: 2.824,
811
- w: 359.1,
812
- sw: 0.32553125,
813
- oc: undefined,
814
- A: "left",
815
- R: [
816
- {
817
- T: "a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20(%20)%20",
818
- S: -1,
819
- TS: [0, 13, 0, 0],
820
- },
821
- ],
822
- },
823
- {
824
- x: 2.875,
825
- y: 3.5460000000000003,
826
- w: 14.18,
827
- sw: 0.32553125,
828
- oc: undefined,
829
- A: "left",
830
- R: [
831
- {
832
- T: "%3D%20%3F",
833
- S: -1,
834
- TS: [0, 13, 0, 0],
835
- },
836
- ],
837
- },
838
- {
839
- x: 2.875,
840
- y: 48.476,
841
- w: 120.62,
842
- sw: 0.32553125,
843
- oc: undefined,
844
- A: "left",
845
- R: [
846
- {
847
- T: "I%20am%20a%20footer%20with%20padding.%20",
848
- S: -1,
849
- TS: [0, 13, 0, 0],
850
- },
851
- ],
852
- },
853
- {
854
- x: 10.357,
855
- y: 48.476,
856
- w: 373.28,
857
- sw: 0.32553125,
858
- oc: undefined,
859
- A: "left",
860
- R: [
861
- {
862
- T: "a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20(%20)%20%3D%20%3F",
863
- S: -1,
864
- TS: [0, 13, 0, 0],
865
- },
866
- ],
867
- },
868
- {
869
- x: 2.875,
870
- y: 10.519,
871
- w: 489.75,
872
- sw: 0.32553125,
873
- oc: undefined,
874
- A: "left",
875
- R: [
876
- {
877
- T: "I%20am%20a%20body%20and%20I%20have%20padding%20a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20",
878
- S: -1,
879
- TS: [0, 13, 0, 0],
880
- },
881
- ],
882
- },
883
- {
884
- x: 2.875,
885
- y: 11.241,
886
- w: 26.4,
887
- sw: 0.32553125,
888
- oc: undefined,
889
- A: "left",
890
- R: [
891
- {
892
- T: "(%20)%20%3D%20%3F",
893
- S: -1,
894
- TS: [0, 13, 0, 0],
895
- },
896
- ],
897
- },
898
- {
899
- x: 2.875,
900
- y: 11.964,
901
- w: 489.75,
902
- sw: 0.32553125,
903
- oc: undefined,
904
- A: "left",
905
- R: [
906
- {
907
- T: "I%20am%20a%20body%20and%20I%20have%20padding%20a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20",
908
- S: -1,
909
- TS: [0, 13, 0, 0],
910
- },
911
- ],
912
- },
913
- {
914
- x: 2.875,
915
- y: 12.686,
916
- w: 26.4,
917
- sw: 0.32553125,
918
- oc: undefined,
919
- A: "left",
920
- R: [
921
- {
922
- T: "(%20)%20%3D%20%3F",
923
- S: -1,
924
- TS: [0, 13, 0, 0],
925
- },
926
- ],
927
- },
928
- {
929
- x: 2.875,
930
- y: 13.409,
931
- w: 489.75,
932
- sw: 0.32553125,
933
- oc: undefined,
934
- A: "left",
935
- R: [
936
- {
937
- T: "I%20am%20a%20body%20and%20I%20have%20padding%20a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20",
938
- S: -1,
939
- TS: [0, 13, 0, 0],
940
- },
941
- ],
942
- },
943
- {
944
- x: 2.875,
945
- y: 14.131,
946
- w: 26.4,
947
- sw: 0.32553125,
948
- oc: undefined,
949
- A: "left",
950
- R: [
951
- {
952
- T: "(%20)%20%3D%20%3F",
953
- S: -1,
954
- TS: [0, 13, 0, 0],
955
- },
956
- ],
957
- },
958
- {
959
- x: 2.875,
960
- y: 14.854,
961
- w: 489.75,
962
- sw: 0.32553125,
963
- oc: undefined,
964
- A: "left",
965
- R: [
966
- {
967
- T: "I%20am%20a%20body%20and%20I%20have%20padding%20a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20",
968
- S: -1,
969
- TS: [0, 13, 0, 0],
970
- },
971
- ],
972
- },
973
- {
974
- x: 2.875,
975
- y: 15.576,
976
- w: 26.4,
977
- sw: 0.32553125,
978
- oc: undefined,
979
- A: "left",
980
- R: [
981
- {
982
- T: "(%20)%20%3D%20%3F",
983
- S: -1,
984
- TS: [0, 13, 0, 0],
985
- },
986
- ],
987
- },
988
- ],
989
- },
990
- ],
991
- },
992
- };
1
+ import React from "react";
2
+ import { ExportTestDef } from "../export-test-def";
3
+ import * as AD from "../../../../index";
4
+ import { Paragraph, AbstractDoc, Section, TextRun, render } from "../../../../abstract-document-jsx";
5
+ import * as PageStyle from "../../../../abstract-document/styles/page-style";
6
+
7
+ const fillerString = "a b c d e f g h i j k l m n o p q r s t u v x y z å ä ö 1 2 3 4 5 6 7 8 9 0 ! # ¤ % & / ( ) = ?";
8
+
9
+ const header = [
10
+ render(
11
+ <Paragraph>
12
+ <TextRun text="I am a header with padding. " />
13
+ <TextRun text={fillerString} />
14
+ </Paragraph>
15
+ ),
16
+ ];
17
+
18
+ const footer = [
19
+ render(
20
+ <Paragraph>
21
+ <TextRun text="I am a footer with padding. " />
22
+ <TextRun text={fillerString} />
23
+ </Paragraph>
24
+ ),
25
+ ];
26
+
27
+ const margins = { left: 50, bottom: 50, right: 50, top: 50 };
28
+ const pageStyle = {
29
+ headerMargins: margins,
30
+ footerMargins: margins,
31
+ contentMargins: margins,
32
+ //paperSize: "A4",
33
+ //orientation: "Portrait",
34
+ noTopBottomMargin: false,
35
+ };
36
+
37
+ const elementList = [];
38
+ //eslint-disable-next-line
39
+ for (let i = 0; i < 25; i++) {
40
+ elementList.push(
41
+ <Paragraph key={i}>
42
+ <TextRun text={"I am a body and I have padding " + fillerString} />
43
+ </Paragraph>
44
+ );
45
+ }
46
+
47
+ const page = AD.AbstractDoc.MasterPage.create({ header: header, footer: footer, style: PageStyle.create(pageStyle) });
48
+
49
+ export const test: ExportTestDef = {
50
+ name: "Margins header body footer",
51
+ abstractDocJsx: (
52
+ <AbstractDoc>
53
+ <Section page={page}>{elementList}</Section>
54
+ </AbstractDoc>
55
+ ),
56
+ expectedPdfJson: {
57
+ Transcoder: "pdf2json@2.0.1 [https://github.com/modesty/pdf2json]",
58
+ Meta: {
59
+ CreationDate: "*",
60
+ Creator: "PDFKit",
61
+ IsAcroFormPresent: false,
62
+ IsXFAPresent: false,
63
+ Metadata: {},
64
+ PDFFormatVersion: "1.3",
65
+ Producer: "PDFKit",
66
+ },
67
+ Pages: [
68
+ {
69
+ Height: 52.625,
70
+ Width: 37.188,
71
+ HLines: [],
72
+ VLines: [],
73
+ Fills: [],
74
+ Fields: [],
75
+ Boxsets: [],
76
+ Texts: [
77
+ {
78
+ x: 2.875,
79
+ y: 2.824,
80
+ w: 126.18,
81
+ sw: 0.32553125,
82
+ oc: undefined,
83
+ A: "left",
84
+ R: [
85
+ {
86
+ T: "I%20am%20a%20header%20with%20padding.%20",
87
+ S: -1,
88
+ TS: [0, 13, 0, 0],
89
+ },
90
+ ],
91
+ },
92
+ {
93
+ x: 10.724,
94
+ y: 2.824,
95
+ w: 359.1,
96
+ sw: 0.32553125,
97
+ oc: undefined,
98
+ A: "left",
99
+ R: [
100
+ {
101
+ T: "a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20(%20)%20",
102
+ S: -1,
103
+ TS: [0, 13, 0, 0],
104
+ },
105
+ ],
106
+ },
107
+ {
108
+ x: 2.875,
109
+ y: 3.5460000000000003,
110
+ w: 14.18,
111
+ sw: 0.32553125,
112
+ oc: undefined,
113
+ A: "left",
114
+ R: [
115
+ {
116
+ T: "%3D%20%3F",
117
+ S: -1,
118
+ TS: [0, 13, 0, 0],
119
+ },
120
+ ],
121
+ },
122
+ {
123
+ x: 2.875,
124
+ y: 48.476,
125
+ w: 120.62,
126
+ sw: 0.32553125,
127
+ oc: undefined,
128
+ A: "left",
129
+ R: [
130
+ {
131
+ T: "I%20am%20a%20footer%20with%20padding.%20",
132
+ S: -1,
133
+ TS: [0, 13, 0, 0],
134
+ },
135
+ ],
136
+ },
137
+ {
138
+ x: 10.357,
139
+ y: 48.476,
140
+ w: 373.28,
141
+ sw: 0.32553125,
142
+ oc: undefined,
143
+ A: "left",
144
+ R: [
145
+ {
146
+ T: "a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20(%20)%20%3D%20%3F",
147
+ S: -1,
148
+ TS: [0, 13, 0, 0],
149
+ },
150
+ ],
151
+ },
152
+ {
153
+ x: 2.875,
154
+ y: 10.519,
155
+ w: 489.75,
156
+ sw: 0.32553125,
157
+ oc: undefined,
158
+ A: "left",
159
+ R: [
160
+ {
161
+ T: "I%20am%20a%20body%20and%20I%20have%20padding%20a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20",
162
+ S: -1,
163
+ TS: [0, 13, 0, 0],
164
+ },
165
+ ],
166
+ },
167
+ {
168
+ x: 2.875,
169
+ y: 11.241,
170
+ w: 26.4,
171
+ sw: 0.32553125,
172
+ oc: undefined,
173
+ A: "left",
174
+ R: [
175
+ {
176
+ T: "(%20)%20%3D%20%3F",
177
+ S: -1,
178
+ TS: [0, 13, 0, 0],
179
+ },
180
+ ],
181
+ },
182
+ {
183
+ x: 2.875,
184
+ y: 11.964,
185
+ w: 489.75,
186
+ sw: 0.32553125,
187
+ oc: undefined,
188
+ A: "left",
189
+ R: [
190
+ {
191
+ T: "I%20am%20a%20body%20and%20I%20have%20padding%20a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20",
192
+ S: -1,
193
+ TS: [0, 13, 0, 0],
194
+ },
195
+ ],
196
+ },
197
+ {
198
+ x: 2.875,
199
+ y: 12.686,
200
+ w: 26.4,
201
+ sw: 0.32553125,
202
+ oc: undefined,
203
+ A: "left",
204
+ R: [
205
+ {
206
+ T: "(%20)%20%3D%20%3F",
207
+ S: -1,
208
+ TS: [0, 13, 0, 0],
209
+ },
210
+ ],
211
+ },
212
+ {
213
+ x: 2.875,
214
+ y: 13.409,
215
+ w: 489.75,
216
+ sw: 0.32553125,
217
+ oc: undefined,
218
+ A: "left",
219
+ R: [
220
+ {
221
+ T: "I%20am%20a%20body%20and%20I%20have%20padding%20a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20",
222
+ S: -1,
223
+ TS: [0, 13, 0, 0],
224
+ },
225
+ ],
226
+ },
227
+ {
228
+ x: 2.875,
229
+ y: 14.131,
230
+ w: 26.4,
231
+ sw: 0.32553125,
232
+ oc: undefined,
233
+ A: "left",
234
+ R: [
235
+ {
236
+ T: "(%20)%20%3D%20%3F",
237
+ S: -1,
238
+ TS: [0, 13, 0, 0],
239
+ },
240
+ ],
241
+ },
242
+ {
243
+ x: 2.875,
244
+ y: 14.854,
245
+ w: 489.75,
246
+ sw: 0.32553125,
247
+ oc: undefined,
248
+ A: "left",
249
+ R: [
250
+ {
251
+ T: "I%20am%20a%20body%20and%20I%20have%20padding%20a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20",
252
+ S: -1,
253
+ TS: [0, 13, 0, 0],
254
+ },
255
+ ],
256
+ },
257
+ {
258
+ x: 2.875,
259
+ y: 15.576,
260
+ w: 26.4,
261
+ sw: 0.32553125,
262
+ oc: undefined,
263
+ A: "left",
264
+ R: [
265
+ {
266
+ T: "(%20)%20%3D%20%3F",
267
+ S: -1,
268
+ TS: [0, 13, 0, 0],
269
+ },
270
+ ],
271
+ },
272
+ {
273
+ x: 2.875,
274
+ y: 16.299,
275
+ w: 489.75,
276
+ sw: 0.32553125,
277
+ oc: undefined,
278
+ A: "left",
279
+ R: [
280
+ {
281
+ T: "I%20am%20a%20body%20and%20I%20have%20padding%20a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20",
282
+ S: -1,
283
+ TS: [0, 13, 0, 0],
284
+ },
285
+ ],
286
+ },
287
+ {
288
+ x: 2.875,
289
+ y: 17.021,
290
+ w: 26.4,
291
+ sw: 0.32553125,
292
+ oc: undefined,
293
+ A: "left",
294
+ R: [
295
+ {
296
+ T: "(%20)%20%3D%20%3F",
297
+ S: -1,
298
+ TS: [0, 13, 0, 0],
299
+ },
300
+ ],
301
+ },
302
+ {
303
+ x: 2.875,
304
+ y: 17.744,
305
+ w: 489.75,
306
+ sw: 0.32553125,
307
+ oc: undefined,
308
+ A: "left",
309
+ R: [
310
+ {
311
+ T: "I%20am%20a%20body%20and%20I%20have%20padding%20a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20",
312
+ S: -1,
313
+ TS: [0, 13, 0, 0],
314
+ },
315
+ ],
316
+ },
317
+ {
318
+ x: 2.875,
319
+ y: 18.466,
320
+ w: 26.4,
321
+ sw: 0.32553125,
322
+ oc: undefined,
323
+ A: "left",
324
+ R: [
325
+ {
326
+ T: "(%20)%20%3D%20%3F",
327
+ S: -1,
328
+ TS: [0, 13, 0, 0],
329
+ },
330
+ ],
331
+ },
332
+ {
333
+ x: 2.875,
334
+ y: 19.189,
335
+ w: 489.75,
336
+ sw: 0.32553125,
337
+ oc: undefined,
338
+ A: "left",
339
+ R: [
340
+ {
341
+ T: "I%20am%20a%20body%20and%20I%20have%20padding%20a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20",
342
+ S: -1,
343
+ TS: [0, 13, 0, 0],
344
+ },
345
+ ],
346
+ },
347
+ {
348
+ x: 2.875,
349
+ y: 19.911,
350
+ w: 26.4,
351
+ sw: 0.32553125,
352
+ oc: undefined,
353
+ A: "left",
354
+ R: [
355
+ {
356
+ T: "(%20)%20%3D%20%3F",
357
+ S: -1,
358
+ TS: [0, 13, 0, 0],
359
+ },
360
+ ],
361
+ },
362
+ {
363
+ x: 2.875,
364
+ y: 20.634,
365
+ w: 489.75,
366
+ sw: 0.32553125,
367
+ oc: undefined,
368
+ A: "left",
369
+ R: [
370
+ {
371
+ T: "I%20am%20a%20body%20and%20I%20have%20padding%20a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20",
372
+ S: -1,
373
+ TS: [0, 13, 0, 0],
374
+ },
375
+ ],
376
+ },
377
+ {
378
+ x: 2.875,
379
+ y: 21.356,
380
+ w: 26.4,
381
+ sw: 0.32553125,
382
+ oc: undefined,
383
+ A: "left",
384
+ R: [
385
+ {
386
+ T: "(%20)%20%3D%20%3F",
387
+ S: -1,
388
+ TS: [0, 13, 0, 0],
389
+ },
390
+ ],
391
+ },
392
+ {
393
+ x: 2.875,
394
+ y: 22.079,
395
+ w: 489.75,
396
+ sw: 0.32553125,
397
+ oc: undefined,
398
+ A: "left",
399
+ R: [
400
+ {
401
+ T: "I%20am%20a%20body%20and%20I%20have%20padding%20a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20",
402
+ S: -1,
403
+ TS: [0, 13, 0, 0],
404
+ },
405
+ ],
406
+ },
407
+ {
408
+ x: 2.875,
409
+ y: 22.801,
410
+ w: 26.4,
411
+ sw: 0.32553125,
412
+ oc: undefined,
413
+ A: "left",
414
+ R: [
415
+ {
416
+ T: "(%20)%20%3D%20%3F",
417
+ S: -1,
418
+ TS: [0, 13, 0, 0],
419
+ },
420
+ ],
421
+ },
422
+ {
423
+ x: 2.875,
424
+ y: 23.524,
425
+ w: 489.75,
426
+ sw: 0.32553125,
427
+ oc: undefined,
428
+ A: "left",
429
+ R: [
430
+ {
431
+ T: "I%20am%20a%20body%20and%20I%20have%20padding%20a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20",
432
+ S: -1,
433
+ TS: [0, 13, 0, 0],
434
+ },
435
+ ],
436
+ },
437
+ {
438
+ x: 2.875,
439
+ y: 24.246,
440
+ w: 26.4,
441
+ sw: 0.32553125,
442
+ oc: undefined,
443
+ A: "left",
444
+ R: [
445
+ {
446
+ T: "(%20)%20%3D%20%3F",
447
+ S: -1,
448
+ TS: [0, 13, 0, 0],
449
+ },
450
+ ],
451
+ },
452
+ {
453
+ x: 2.875,
454
+ y: 24.969,
455
+ w: 489.75,
456
+ sw: 0.32553125,
457
+ oc: undefined,
458
+ A: "left",
459
+ R: [
460
+ {
461
+ T: "I%20am%20a%20body%20and%20I%20have%20padding%20a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20",
462
+ S: -1,
463
+ TS: [0, 13, 0, 0],
464
+ },
465
+ ],
466
+ },
467
+ {
468
+ x: 2.875,
469
+ y: 25.691,
470
+ w: 26.4,
471
+ sw: 0.32553125,
472
+ oc: undefined,
473
+ A: "left",
474
+ R: [
475
+ {
476
+ T: "(%20)%20%3D%20%3F",
477
+ S: -1,
478
+ TS: [0, 13, 0, 0],
479
+ },
480
+ ],
481
+ },
482
+ {
483
+ x: 2.875,
484
+ y: 26.414,
485
+ w: 489.75,
486
+ sw: 0.32553125,
487
+ oc: undefined,
488
+ A: "left",
489
+ R: [
490
+ {
491
+ T: "I%20am%20a%20body%20and%20I%20have%20padding%20a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20",
492
+ S: -1,
493
+ TS: [0, 13, 0, 0],
494
+ },
495
+ ],
496
+ },
497
+ {
498
+ x: 2.875,
499
+ y: 27.136,
500
+ w: 26.4,
501
+ sw: 0.32553125,
502
+ oc: undefined,
503
+ A: "left",
504
+ R: [
505
+ {
506
+ T: "(%20)%20%3D%20%3F",
507
+ S: -1,
508
+ TS: [0, 13, 0, 0],
509
+ },
510
+ ],
511
+ },
512
+ {
513
+ x: 2.875,
514
+ y: 27.859,
515
+ w: 489.75,
516
+ sw: 0.32553125,
517
+ oc: undefined,
518
+ A: "left",
519
+ R: [
520
+ {
521
+ T: "I%20am%20a%20body%20and%20I%20have%20padding%20a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20",
522
+ S: -1,
523
+ TS: [0, 13, 0, 0],
524
+ },
525
+ ],
526
+ },
527
+ {
528
+ x: 2.875,
529
+ y: 28.581,
530
+ w: 26.4,
531
+ sw: 0.32553125,
532
+ oc: undefined,
533
+ A: "left",
534
+ R: [
535
+ {
536
+ T: "(%20)%20%3D%20%3F",
537
+ S: -1,
538
+ TS: [0, 13, 0, 0],
539
+ },
540
+ ],
541
+ },
542
+ {
543
+ x: 2.875,
544
+ y: 29.304,
545
+ w: 489.75,
546
+ sw: 0.32553125,
547
+ oc: undefined,
548
+ A: "left",
549
+ R: [
550
+ {
551
+ T: "I%20am%20a%20body%20and%20I%20have%20padding%20a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20",
552
+ S: -1,
553
+ TS: [0, 13, 0, 0],
554
+ },
555
+ ],
556
+ },
557
+ {
558
+ x: 2.875,
559
+ y: 30.026,
560
+ w: 26.4,
561
+ sw: 0.32553125,
562
+ oc: undefined,
563
+ A: "left",
564
+ R: [
565
+ {
566
+ T: "(%20)%20%3D%20%3F",
567
+ S: -1,
568
+ TS: [0, 13, 0, 0],
569
+ },
570
+ ],
571
+ },
572
+ {
573
+ x: 2.875,
574
+ y: 30.749,
575
+ w: 489.75,
576
+ sw: 0.32553125,
577
+ oc: undefined,
578
+ A: "left",
579
+ R: [
580
+ {
581
+ T: "I%20am%20a%20body%20and%20I%20have%20padding%20a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20",
582
+ S: -1,
583
+ TS: [0, 13, 0, 0],
584
+ },
585
+ ],
586
+ },
587
+ {
588
+ x: 2.875,
589
+ y: 31.470999999999997,
590
+ w: 26.4,
591
+ sw: 0.32553125,
592
+ oc: undefined,
593
+ A: "left",
594
+ R: [
595
+ {
596
+ T: "(%20)%20%3D%20%3F",
597
+ S: -1,
598
+ TS: [0, 13, 0, 0],
599
+ },
600
+ ],
601
+ },
602
+ {
603
+ x: 2.875,
604
+ y: 32.194,
605
+ w: 489.75,
606
+ sw: 0.32553125,
607
+ oc: undefined,
608
+ A: "left",
609
+ R: [
610
+ {
611
+ T: "I%20am%20a%20body%20and%20I%20have%20padding%20a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20",
612
+ S: -1,
613
+ TS: [0, 13, 0, 0],
614
+ },
615
+ ],
616
+ },
617
+ {
618
+ x: 2.875,
619
+ y: 32.916,
620
+ w: 26.4,
621
+ sw: 0.32553125,
622
+ oc: undefined,
623
+ A: "left",
624
+ R: [
625
+ {
626
+ T: "(%20)%20%3D%20%3F",
627
+ S: -1,
628
+ TS: [0, 13, 0, 0],
629
+ },
630
+ ],
631
+ },
632
+ {
633
+ x: 2.875,
634
+ y: 33.639,
635
+ w: 489.75,
636
+ sw: 0.32553125,
637
+ oc: undefined,
638
+ A: "left",
639
+ R: [
640
+ {
641
+ T: "I%20am%20a%20body%20and%20I%20have%20padding%20a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20",
642
+ S: -1,
643
+ TS: [0, 13, 0, 0],
644
+ },
645
+ ],
646
+ },
647
+ {
648
+ x: 2.875,
649
+ y: 34.361,
650
+ w: 26.4,
651
+ sw: 0.32553125,
652
+ oc: undefined,
653
+ A: "left",
654
+ R: [
655
+ {
656
+ T: "(%20)%20%3D%20%3F",
657
+ S: -1,
658
+ TS: [0, 13, 0, 0],
659
+ },
660
+ ],
661
+ },
662
+ {
663
+ x: 2.875,
664
+ y: 35.084,
665
+ w: 489.75,
666
+ sw: 0.32553125,
667
+ oc: undefined,
668
+ A: "left",
669
+ R: [
670
+ {
671
+ T: "I%20am%20a%20body%20and%20I%20have%20padding%20a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20",
672
+ S: -1,
673
+ TS: [0, 13, 0, 0],
674
+ },
675
+ ],
676
+ },
677
+ {
678
+ x: 2.875,
679
+ y: 35.806,
680
+ w: 26.4,
681
+ sw: 0.32553125,
682
+ oc: undefined,
683
+ A: "left",
684
+ R: [
685
+ {
686
+ T: "(%20)%20%3D%20%3F",
687
+ S: -1,
688
+ TS: [0, 13, 0, 0],
689
+ },
690
+ ],
691
+ },
692
+ {
693
+ x: 2.875,
694
+ y: 36.529,
695
+ w: 489.75,
696
+ sw: 0.32553125,
697
+ oc: undefined,
698
+ A: "left",
699
+ R: [
700
+ {
701
+ T: "I%20am%20a%20body%20and%20I%20have%20padding%20a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20",
702
+ S: -1,
703
+ TS: [0, 13, 0, 0],
704
+ },
705
+ ],
706
+ },
707
+ {
708
+ x: 2.875,
709
+ y: 37.251,
710
+ w: 26.4,
711
+ sw: 0.32553125,
712
+ oc: undefined,
713
+ A: "left",
714
+ R: [
715
+ {
716
+ T: "(%20)%20%3D%20%3F",
717
+ S: -1,
718
+ TS: [0, 13, 0, 0],
719
+ },
720
+ ],
721
+ },
722
+ {
723
+ x: 2.875,
724
+ y: 37.974,
725
+ w: 489.75,
726
+ sw: 0.32553125,
727
+ oc: undefined,
728
+ A: "left",
729
+ R: [
730
+ {
731
+ T: "I%20am%20a%20body%20and%20I%20have%20padding%20a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20",
732
+ S: -1,
733
+ TS: [0, 13, 0, 0],
734
+ },
735
+ ],
736
+ },
737
+ {
738
+ x: 2.875,
739
+ y: 38.696,
740
+ w: 26.4,
741
+ sw: 0.32553125,
742
+ oc: undefined,
743
+ A: "left",
744
+ R: [
745
+ {
746
+ T: "(%20)%20%3D%20%3F",
747
+ S: -1,
748
+ TS: [0, 13, 0, 0],
749
+ },
750
+ ],
751
+ },
752
+ {
753
+ x: 2.875,
754
+ y: 39.419,
755
+ w: 489.75,
756
+ sw: 0.32553125,
757
+ oc: undefined,
758
+ A: "left",
759
+ R: [
760
+ {
761
+ T: "I%20am%20a%20body%20and%20I%20have%20padding%20a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20",
762
+ S: -1,
763
+ TS: [0, 13, 0, 0],
764
+ },
765
+ ],
766
+ },
767
+ {
768
+ x: 2.875,
769
+ y: 40.141,
770
+ w: 26.4,
771
+ sw: 0.32553125,
772
+ oc: undefined,
773
+ A: "left",
774
+ R: [
775
+ {
776
+ T: "(%20)%20%3D%20%3F",
777
+ S: -1,
778
+ TS: [0, 13, 0, 0],
779
+ },
780
+ ],
781
+ },
782
+ ],
783
+ },
784
+ {
785
+ Height: 52.625,
786
+ Width: 37.188,
787
+ HLines: [],
788
+ VLines: [],
789
+ Fills: [],
790
+ Fields: [],
791
+ Boxsets: [],
792
+ Texts: [
793
+ {
794
+ x: 2.875,
795
+ y: 2.824,
796
+ w: 126.18,
797
+ sw: 0.32553125,
798
+ oc: undefined,
799
+ A: "left",
800
+ R: [
801
+ {
802
+ T: "I%20am%20a%20header%20with%20padding.%20",
803
+ S: -1,
804
+ TS: [0, 13, 0, 0],
805
+ },
806
+ ],
807
+ },
808
+ {
809
+ x: 10.724,
810
+ y: 2.824,
811
+ w: 359.1,
812
+ sw: 0.32553125,
813
+ oc: undefined,
814
+ A: "left",
815
+ R: [
816
+ {
817
+ T: "a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20(%20)%20",
818
+ S: -1,
819
+ TS: [0, 13, 0, 0],
820
+ },
821
+ ],
822
+ },
823
+ {
824
+ x: 2.875,
825
+ y: 3.5460000000000003,
826
+ w: 14.18,
827
+ sw: 0.32553125,
828
+ oc: undefined,
829
+ A: "left",
830
+ R: [
831
+ {
832
+ T: "%3D%20%3F",
833
+ S: -1,
834
+ TS: [0, 13, 0, 0],
835
+ },
836
+ ],
837
+ },
838
+ {
839
+ x: 2.875,
840
+ y: 48.476,
841
+ w: 120.62,
842
+ sw: 0.32553125,
843
+ oc: undefined,
844
+ A: "left",
845
+ R: [
846
+ {
847
+ T: "I%20am%20a%20footer%20with%20padding.%20",
848
+ S: -1,
849
+ TS: [0, 13, 0, 0],
850
+ },
851
+ ],
852
+ },
853
+ {
854
+ x: 10.357,
855
+ y: 48.476,
856
+ w: 373.28,
857
+ sw: 0.32553125,
858
+ oc: undefined,
859
+ A: "left",
860
+ R: [
861
+ {
862
+ T: "a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20(%20)%20%3D%20%3F",
863
+ S: -1,
864
+ TS: [0, 13, 0, 0],
865
+ },
866
+ ],
867
+ },
868
+ {
869
+ x: 2.875,
870
+ y: 10.519,
871
+ w: 489.75,
872
+ sw: 0.32553125,
873
+ oc: undefined,
874
+ A: "left",
875
+ R: [
876
+ {
877
+ T: "I%20am%20a%20body%20and%20I%20have%20padding%20a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20",
878
+ S: -1,
879
+ TS: [0, 13, 0, 0],
880
+ },
881
+ ],
882
+ },
883
+ {
884
+ x: 2.875,
885
+ y: 11.241,
886
+ w: 26.4,
887
+ sw: 0.32553125,
888
+ oc: undefined,
889
+ A: "left",
890
+ R: [
891
+ {
892
+ T: "(%20)%20%3D%20%3F",
893
+ S: -1,
894
+ TS: [0, 13, 0, 0],
895
+ },
896
+ ],
897
+ },
898
+ {
899
+ x: 2.875,
900
+ y: 11.964,
901
+ w: 489.75,
902
+ sw: 0.32553125,
903
+ oc: undefined,
904
+ A: "left",
905
+ R: [
906
+ {
907
+ T: "I%20am%20a%20body%20and%20I%20have%20padding%20a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20",
908
+ S: -1,
909
+ TS: [0, 13, 0, 0],
910
+ },
911
+ ],
912
+ },
913
+ {
914
+ x: 2.875,
915
+ y: 12.686,
916
+ w: 26.4,
917
+ sw: 0.32553125,
918
+ oc: undefined,
919
+ A: "left",
920
+ R: [
921
+ {
922
+ T: "(%20)%20%3D%20%3F",
923
+ S: -1,
924
+ TS: [0, 13, 0, 0],
925
+ },
926
+ ],
927
+ },
928
+ {
929
+ x: 2.875,
930
+ y: 13.409,
931
+ w: 489.75,
932
+ sw: 0.32553125,
933
+ oc: undefined,
934
+ A: "left",
935
+ R: [
936
+ {
937
+ T: "I%20am%20a%20body%20and%20I%20have%20padding%20a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20",
938
+ S: -1,
939
+ TS: [0, 13, 0, 0],
940
+ },
941
+ ],
942
+ },
943
+ {
944
+ x: 2.875,
945
+ y: 14.131,
946
+ w: 26.4,
947
+ sw: 0.32553125,
948
+ oc: undefined,
949
+ A: "left",
950
+ R: [
951
+ {
952
+ T: "(%20)%20%3D%20%3F",
953
+ S: -1,
954
+ TS: [0, 13, 0, 0],
955
+ },
956
+ ],
957
+ },
958
+ {
959
+ x: 2.875,
960
+ y: 14.854,
961
+ w: 489.75,
962
+ sw: 0.32553125,
963
+ oc: undefined,
964
+ A: "left",
965
+ R: [
966
+ {
967
+ T: "I%20am%20a%20body%20and%20I%20have%20padding%20a%20b%20c%20d%20e%20f%20g%20h%20i%20j%20k%20l%20m%20n%20o%20p%20q%20r%20s%20t%20u%20v%20x%20y%20z%20%C3%A5%20%C3%A4%20%C3%B6%201%202%203%204%205%206%207%208%209%200%20!%20%23%20%C2%A4%20%25%20%26%20%2F%20",
968
+ S: -1,
969
+ TS: [0, 13, 0, 0],
970
+ },
971
+ ],
972
+ },
973
+ {
974
+ x: 2.875,
975
+ y: 15.576,
976
+ w: 26.4,
977
+ sw: 0.32553125,
978
+ oc: undefined,
979
+ A: "left",
980
+ R: [
981
+ {
982
+ T: "(%20)%20%3D%20%3F",
983
+ S: -1,
984
+ TS: [0, 13, 0, 0],
985
+ },
986
+ ],
987
+ },
988
+ ],
989
+ },
990
+ ],
991
+ },
992
+ };