thinreports 0.8.2 → 0.9.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (170) hide show
  1. checksums.yaml +4 -4
  2. data/.github/CONTRIBUTING.md +2 -0
  3. data/.travis.yml +3 -3
  4. data/CHANGELOG.md +98 -1
  5. data/README.md +0 -9
  6. data/Rakefile +1 -2
  7. data/examples/character_spacing/character_spacing.tlf +293 -1
  8. data/examples/dynamic_image/dynamic_image.tlf +661 -1
  9. data/examples/dynamic_style/dynamic_style.rb +4 -4
  10. data/examples/dynamic_style/dynamic_style.tlf +1835 -1
  11. data/examples/dynamic_style/dynamic_style_in_list.tlf +344 -1
  12. data/examples/eudc/eudc.tlf +180 -1
  13. data/examples/hidden_shapes/hidden_shapes.tlf +449 -1
  14. data/examples/list_events/list_events.rb +1 -28
  15. data/examples/list_events/list_events.tlf +361 -0
  16. data/examples/list_manual_generation/list_manual_generation.tlf +132 -1
  17. data/examples/list_page_number/list_page_number.tlf +254 -1
  18. data/examples/page_number/page_number.tlf +215 -1
  19. data/examples/palleted_png/palleted_png.rb +2 -0
  20. data/examples/palleted_png/palleted_png.tlf +47 -1
  21. data/examples/password_setting/password_setting.tlf +45 -1
  22. data/examples/report_callbacks/report_callbacks.rb +1 -18
  23. data/examples/report_callbacks/report_callbacks.tlf +147 -1
  24. data/examples/single_line_tblock/single_line_tblock.tlf +170 -1
  25. data/examples/tblock_overflow/tblock_overflow.tlf +538 -1
  26. data/examples/tblock_styles/font_size.tlf +383 -1
  27. data/examples/tblock_styles/tblock_styles.tlf +889 -1
  28. data/examples/text_align/text_align.tlf +241 -1
  29. data/examples/typeB_page_size/B4_ISO.tlf +45 -1
  30. data/examples/typeB_page_size/B4_JIS.tlf +45 -1
  31. data/examples/word_wrap/word_wrap.tlf +297 -1
  32. data/lib/thinreports.rb +0 -1
  33. data/lib/thinreports/config.rb +3 -0
  34. data/lib/thinreports/core/errors.rb +0 -3
  35. data/lib/thinreports/core/format/base.rb +4 -4
  36. data/lib/thinreports/core/shape.rb +1 -9
  37. data/lib/thinreports/core/shape/basic.rb +3 -3
  38. data/lib/thinreports/core/shape/basic/block_format.rb +1 -1
  39. data/lib/thinreports/core/shape/basic/format.rb +2 -14
  40. data/lib/thinreports/core/shape/basic/internal.rb +2 -2
  41. data/lib/thinreports/core/shape/image_block.rb +3 -3
  42. data/lib/thinreports/core/shape/image_block/format.rb +0 -2
  43. data/lib/thinreports/core/shape/image_block/internal.rb +1 -1
  44. data/lib/thinreports/core/shape/list.rb +3 -7
  45. data/lib/thinreports/core/shape/list/format.rb +37 -24
  46. data/lib/thinreports/core/shape/list/manager.rb +1 -36
  47. data/lib/thinreports/core/shape/list/page.rb +0 -15
  48. data/lib/thinreports/core/shape/list/page_state.rb +1 -1
  49. data/lib/thinreports/core/shape/list/section_format.rb +14 -12
  50. data/lib/thinreports/core/shape/list/section_internal.rb +4 -7
  51. data/lib/thinreports/core/shape/manager/format.rb +0 -2
  52. data/lib/thinreports/core/shape/manager/internal.rb +1 -1
  53. data/lib/thinreports/core/shape/page_number.rb +1 -1
  54. data/lib/thinreports/core/shape/page_number/format.rb +9 -6
  55. data/lib/thinreports/core/shape/page_number/interface.rb +1 -1
  56. data/lib/thinreports/core/shape/page_number/internal.rb +2 -6
  57. data/lib/thinreports/core/shape/style/base.rb +11 -13
  58. data/lib/thinreports/core/shape/style/basic.rb +4 -4
  59. data/lib/thinreports/core/shape/style/graphic.rb +4 -10
  60. data/lib/thinreports/core/shape/style/text.rb +36 -69
  61. data/lib/thinreports/core/shape/text.rb +3 -3
  62. data/lib/thinreports/core/shape/text/format.rb +3 -13
  63. data/lib/thinreports/core/shape/text/internal.rb +2 -2
  64. data/lib/thinreports/core/shape/text_block.rb +3 -3
  65. data/lib/thinreports/core/shape/text_block/format.rb +9 -6
  66. data/lib/thinreports/core/shape/text_block/interface.rb +7 -7
  67. data/lib/thinreports/core/shape/text_block/internal.rb +1 -1
  68. data/lib/thinreports/generator/pdf.rb +0 -1
  69. data/lib/thinreports/generator/pdf/document.rb +2 -2
  70. data/lib/thinreports/generator/pdf/document/draw_shape.rb +25 -51
  71. data/lib/thinreports/generator/pdf/document/draw_template_items.rb +66 -0
  72. data/lib/thinreports/generator/pdf/document/font.rb +3 -8
  73. data/lib/thinreports/generator/pdf/document/graphics/attributes.rb +97 -77
  74. data/lib/thinreports/generator/pdf/document/graphics/basic.rb +18 -13
  75. data/lib/thinreports/generator/pdf/document/graphics/image.rb +17 -12
  76. data/lib/thinreports/generator/pdf/document/page.rb +1 -1
  77. data/lib/thinreports/generator/pdf/drawer/list.rb +5 -1
  78. data/lib/thinreports/generator/pdf/drawer/list_section.rb +1 -4
  79. data/lib/thinreports/generator/pdf/drawer/page.rb +9 -9
  80. data/lib/thinreports/layout.rb +3 -3
  81. data/lib/thinreports/layout/base.rb +0 -16
  82. data/lib/thinreports/layout/format.rb +38 -57
  83. data/lib/thinreports/layout/legacy_schema.rb +354 -0
  84. data/lib/thinreports/layout/version.rb +1 -1
  85. data/lib/thinreports/report.rb +0 -1
  86. data/lib/thinreports/report/base.rb +3 -17
  87. data/lib/thinreports/report/internal.rb +13 -55
  88. data/lib/thinreports/report/page.rb +1 -1
  89. data/lib/thinreports/version.rb +1 -1
  90. data/test/data/legacy_layout/all-items.tlf +1 -0
  91. data/test/schema_helper.rb +121 -0
  92. data/test/test_helper.rb +13 -50
  93. data/test/unit/core/format/test_base.rb +35 -31
  94. data/test/unit/core/shape/base/test_internal.rb +1 -1
  95. data/test/unit/core/shape/basic/test_block_format.rb +23 -0
  96. data/test/unit/core/shape/basic/{test_basic_interface.rb → test_block_interface.rb} +1 -1
  97. data/test/unit/core/shape/basic/{test_basic_internal.rb → test_block_internal.rb} +4 -7
  98. data/test/unit/core/shape/basic/test_format.rb +25 -47
  99. data/test/unit/core/shape/basic/test_interface.rb +5 -5
  100. data/test/unit/core/shape/basic/test_internal.rb +6 -11
  101. data/test/unit/core/shape/image_block/test_interface.rb +5 -5
  102. data/test/unit/core/shape/image_block/test_internal.rb +2 -2
  103. data/test/unit/core/shape/list/test_format.rb +86 -44
  104. data/test/unit/core/shape/list/test_manager.rb +10 -65
  105. data/test/unit/core/shape/list/test_page.rb +10 -61
  106. data/test/unit/core/shape/list/test_page_state.rb +1 -1
  107. data/test/unit/core/shape/list/test_section_format.rb +19 -28
  108. data/test/unit/core/shape/list/test_section_interface.rb +14 -6
  109. data/test/unit/core/shape/list/test_section_internal.rb +17 -23
  110. data/test/unit/core/shape/manager/test_format.rb +1 -1
  111. data/test/unit/core/shape/manager/test_internal.rb +59 -98
  112. data/test/unit/core/shape/manager/test_target.rb +21 -30
  113. data/test/unit/core/shape/page_number/test_format.rb +34 -52
  114. data/test/unit/core/shape/page_number/test_interface.rb +1 -1
  115. data/test/unit/core/shape/page_number/test_internal.rb +2 -2
  116. data/test/unit/core/shape/styles/test_base.rb +16 -41
  117. data/test/unit/core/shape/styles/test_basic.rb +7 -7
  118. data/test/unit/core/shape/styles/test_graphic.rb +27 -32
  119. data/test/unit/core/shape/styles/test_text.rb +68 -311
  120. data/test/unit/core/shape/text/test_format.rb +30 -59
  121. data/test/unit/core/shape/text/test_internal.rb +5 -5
  122. data/test/unit/core/shape/text_block/formatter/test_datetime.rb +13 -13
  123. data/test/unit/core/shape/text_block/test_format.rb +145 -146
  124. data/test/unit/core/shape/text_block/test_interface.rb +9 -9
  125. data/test/unit/core/shape/text_block/test_internal.rb +9 -9
  126. data/test/unit/core/test_shape.rb +19 -31
  127. data/test/unit/generator/pdf/document/graphics/test_attributes.rb +112 -122
  128. data/test/unit/generator/pdf/document/graphics/test_basic.rb +45 -0
  129. data/test/unit/generator/pdf/document/graphics/test_image.rb +5 -5
  130. data/test/unit/generator/pdf/document/test_font.rb +4 -10
  131. data/test/unit/generator/pdf/document/test_page.rb +13 -11
  132. data/test/unit/generator/pdf/document/test_parse_color.rb +5 -5
  133. data/test/unit/generator/test_base.rb +5 -5
  134. data/test/unit/generator/test_configuration.rb +4 -8
  135. data/test/unit/generator/test_pdf.rb +3 -2
  136. data/test/unit/layout/test_base.rb +16 -22
  137. data/test/unit/layout/test_format.rb +66 -86
  138. data/test/unit/layout/test_legacy_schema.rb +587 -0
  139. data/test/unit/layout/test_version.rb +20 -20
  140. data/test/unit/report/test_base.rb +32 -45
  141. data/test/unit/report/test_internal.rb +43 -99
  142. data/test/unit/test_config.rb +4 -2
  143. data/test/unit/test_layout.rb +1 -1
  144. metadata +20 -48
  145. data/examples/list_events/list_events_0_7_7.tlf +0 -1
  146. data/examples/list_events/list_events_0_8.tlf +0 -1
  147. data/lib/thinreports/core/events.rb +0 -69
  148. data/lib/thinreports/core/format/builder.rb +0 -62
  149. data/lib/thinreports/core/shape/list/configuration.rb +0 -54
  150. data/lib/thinreports/core/shape/list/events.rb +0 -47
  151. data/lib/thinreports/core/shape/list/store.rb +0 -33
  152. data/lib/thinreports/generator/pdf/configuration.rb +0 -33
  153. data/lib/thinreports/generator/pdf/document/parse_svg.rb +0 -104
  154. data/lib/thinreports/layout/configuration.rb +0 -29
  155. data/test/data/layout_block.tlf +0 -1
  156. data/test/data/layout_list.tlf +0 -1
  157. data/test/data/layout_list_noheader.tlf +0 -1
  158. data/test/data/layout_text1.tlf +0 -1
  159. data/test/data/layout_text2.tlf +0 -1
  160. data/test/unit/core/format/test_builder.rb +0 -109
  161. data/test/unit/core/shape/basic/test_basic_format.rb +0 -30
  162. data/test/unit/core/shape/image_block/test_format.rb +0 -58
  163. data/test/unit/core/shape/list/test_configuration.rb +0 -69
  164. data/test/unit/core/shape/list/test_events.rb +0 -36
  165. data/test/unit/core/shape/list/test_store.rb +0 -41
  166. data/test/unit/core/test_events.rb +0 -93
  167. data/test/unit/generator/pdf/document/test_draw_shape.rb +0 -44
  168. data/test/unit/generator/pdf/test_configuration.rb +0 -31
  169. data/test/unit/layout/test_configuration.rb +0 -21
  170. data/test/unit/report/test_events.rb +0 -22
@@ -1 +1,241 @@
1
- {"version":"0.7.7.1","finger-print":-2038493425,"config":{"title":"Case: Text Align","option":{},"page":{"paper-type":"A4","orientation":"portrait","margin-top":"20","margin-bottom":"20","margin-left":"20","margin-right":"20"}},"svg":"<svg width=\"595.2\" height=\"841.8\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"none\" viewBox=\"0 0 595.2 841.8\"><g class=\"canvas\"><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"36\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"end\" text-decoration=\"none\" x-width=\"555.2\" x-height=\"72\" x-left=\"20\" x-top=\"19\" id=\"goog_2086231716\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"555.2\" height=\"72\" x=\"20\" y=\"19\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"575.2\" y=\"50\">Align Right</text><text class=\"s-text-l1\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"575.2\" y=\"86\">Helvetica</text></g><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"297.6\" x2=\"297.6\" y1=\"20\" y2=\"821.8\" id=\"goog_2086231717\"/><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"36\" text-anchor=\"end\" text-decoration=\"none\" x-width=\"555.2\" x-height=\"72\" x-left=\"20\" x-top=\"105\" id=\"goog_2086231718\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"555.2\" height=\"72\" x=\"20\" y=\"105\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"575.2\" y=\"137\">\u53f3\u5bc4\u305b</text><text class=\"s-text-l1\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"575.2\" y=\"173\">IPA\u660e\u671d</text></g><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"297.6\" y1=\"20\" y2=\"821.8\" x1=\"297.6\" id=\"goog_2086231719\"/><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"575.2\" y1=\"20\" y2=\"821.8\" x1=\"575.2\" id=\"goog_2086231720\"/><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Helvetica\" font-size=\"36\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"555.2\" x-height=\"72\" x-left=\"20\" x-top=\"241\" id=\"goog_2086231721\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"555.2\" height=\"72\" x=\"20\" y=\"241\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"297.6\" y=\"266.8\">Align Center</text><text class=\"s-text-l1\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"297.6\" y=\"301.8\">Helvetica</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"36\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"555.2\" x-height=\"72\" x-left=\"20\" x-top=\"330\" id=\"goog_2086231722\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"555.2\" height=\"72\" x=\"20\" y=\"330\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"297.6\" y=\"362\">\u4e2d\u592e\u5bc4\u305b</text><text class=\"s-text-l1\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"297.6\" y=\"398\">IPA\u660e\u671d</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Helvetica\" font-size=\"36\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"555.2\" x-height=\"72\" x-left=\"20\" x-top=\"490\" id=\"goog_2086231723\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"555.2\" height=\"72\" x=\"20\" y=\"490\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"521\">Align Left</text><text class=\"s-text-l1\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"557\">Helvetica</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"36\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"555.2\" x-height=\"72\" x-left=\"20\" x-top=\"580\" id=\"goog_2086231724\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"555.2\" height=\"72\" x=\"20\" y=\"580\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"612\">\u5de6\u5bc4\u305b</text><text class=\"s-text-l1\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"648\">IPA\u660e\u671d</text></g><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"20\" y1=\"20\" y2=\"821.8\" x1=\"20\" id=\"goog_2086231725\"/></g></svg>","state":{"layout-guide":[]}}
1
+ {
2
+ "version": "0.9.0",
3
+ "items": [
4
+ {
5
+ "id": "",
6
+ "type": "text",
7
+ "display": true,
8
+ "description": "",
9
+ "x": 20,
10
+ "y": 19,
11
+ "width": 555.2,
12
+ "height": 84.3,
13
+ "style": {
14
+ "font-family": [
15
+ "Helvetica"
16
+ ],
17
+ "font-size": 36,
18
+ "color": "#000000",
19
+ "text-align": "right",
20
+ "vertical-align": "top",
21
+ "line-height": "",
22
+ "line-height-ratio": "",
23
+ "letter-spacing": "",
24
+ "font-style": []
25
+ },
26
+ "texts": [
27
+ "Align Right",
28
+ "Helvetica"
29
+ ]
30
+ },
31
+ {
32
+ "id": "",
33
+ "type": "line",
34
+ "display": true,
35
+ "description": "",
36
+ "style": {
37
+ "border-color": "#000000",
38
+ "border-width": 1,
39
+ "border-style": "solid"
40
+ },
41
+ "x1": 297.6,
42
+ "y1": 20,
43
+ "x2": 297.6,
44
+ "y2": 821.8
45
+ },
46
+ {
47
+ "id": "",
48
+ "type": "text",
49
+ "display": true,
50
+ "description": "",
51
+ "x": 20,
52
+ "y": 105,
53
+ "width": 555.2,
54
+ "height": 72,
55
+ "style": {
56
+ "font-family": [
57
+ "IPAMincho"
58
+ ],
59
+ "font-size": 36,
60
+ "color": "#000000",
61
+ "text-align": "right",
62
+ "vertical-align": "top",
63
+ "line-height": "",
64
+ "line-height-ratio": "",
65
+ "letter-spacing": "",
66
+ "font-style": []
67
+ },
68
+ "texts": [
69
+ "右寄せ",
70
+ "IPA明朝"
71
+ ]
72
+ },
73
+ {
74
+ "id": "",
75
+ "type": "line",
76
+ "display": true,
77
+ "description": "",
78
+ "style": {
79
+ "border-color": "#000000",
80
+ "border-width": 1,
81
+ "border-style": "solid"
82
+ },
83
+ "x1": 297.6,
84
+ "y1": 20,
85
+ "x2": 297.6,
86
+ "y2": 821.8
87
+ },
88
+ {
89
+ "id": "",
90
+ "type": "line",
91
+ "display": true,
92
+ "description": "",
93
+ "style": {
94
+ "border-color": "#000000",
95
+ "border-width": 1,
96
+ "border-style": "solid"
97
+ },
98
+ "x1": 575.2,
99
+ "y1": 20,
100
+ "x2": 575.2,
101
+ "y2": 821.8
102
+ },
103
+ {
104
+ "id": "",
105
+ "type": "text",
106
+ "display": true,
107
+ "description": "",
108
+ "x": 20,
109
+ "y": 241,
110
+ "width": 555.2,
111
+ "height": 84.3,
112
+ "style": {
113
+ "font-family": [
114
+ "Helvetica"
115
+ ],
116
+ "font-size": 36,
117
+ "color": "#000000",
118
+ "text-align": "center",
119
+ "vertical-align": "top",
120
+ "line-height": "",
121
+ "line-height-ratio": "",
122
+ "letter-spacing": "",
123
+ "font-style": []
124
+ },
125
+ "texts": [
126
+ "Align Center",
127
+ "Helvetica"
128
+ ]
129
+ },
130
+ {
131
+ "id": "",
132
+ "type": "text",
133
+ "display": true,
134
+ "description": "",
135
+ "x": 20,
136
+ "y": 330,
137
+ "width": 555.2,
138
+ "height": 72,
139
+ "style": {
140
+ "font-family": [
141
+ "IPAMincho"
142
+ ],
143
+ "font-size": 36,
144
+ "color": "#000000",
145
+ "text-align": "center",
146
+ "vertical-align": "top",
147
+ "line-height": "",
148
+ "line-height-ratio": "",
149
+ "letter-spacing": "",
150
+ "font-style": []
151
+ },
152
+ "texts": [
153
+ "中央寄せ",
154
+ "IPA明朝"
155
+ ]
156
+ },
157
+ {
158
+ "id": "",
159
+ "type": "text",
160
+ "display": true,
161
+ "description": "",
162
+ "x": 20,
163
+ "y": 490,
164
+ "width": 555.2,
165
+ "height": 84.3,
166
+ "style": {
167
+ "font-family": [
168
+ "Helvetica"
169
+ ],
170
+ "font-size": 36,
171
+ "color": "#000000",
172
+ "text-align": "left",
173
+ "vertical-align": "top",
174
+ "line-height": "",
175
+ "line-height-ratio": "",
176
+ "letter-spacing": "",
177
+ "font-style": []
178
+ },
179
+ "texts": [
180
+ "Align Left",
181
+ "Helvetica"
182
+ ]
183
+ },
184
+ {
185
+ "id": "",
186
+ "type": "text",
187
+ "display": true,
188
+ "description": "",
189
+ "x": 20,
190
+ "y": 580,
191
+ "width": 555.2,
192
+ "height": 72,
193
+ "style": {
194
+ "font-family": [
195
+ "IPAMincho"
196
+ ],
197
+ "font-size": 36,
198
+ "color": "#000000",
199
+ "text-align": "left",
200
+ "vertical-align": "top",
201
+ "line-height": "",
202
+ "line-height-ratio": "",
203
+ "letter-spacing": "",
204
+ "font-style": []
205
+ },
206
+ "texts": [
207
+ "左寄せ",
208
+ "IPA明朝"
209
+ ]
210
+ },
211
+ {
212
+ "id": "",
213
+ "type": "line",
214
+ "display": true,
215
+ "description": "",
216
+ "style": {
217
+ "border-color": "#000000",
218
+ "border-width": 1,
219
+ "border-style": "solid"
220
+ },
221
+ "x1": 20,
222
+ "y1": 20,
223
+ "x2": 20,
224
+ "y2": 821.8
225
+ }
226
+ ],
227
+ "state": {
228
+ "layout-guides": []
229
+ },
230
+ "title": "Case: Text Align",
231
+ "report": {
232
+ "paper-type": "A4",
233
+ "orientation": "portrait",
234
+ "margin": [
235
+ 20,
236
+ 20,
237
+ 20,
238
+ 20
239
+ ]
240
+ }
241
+ }
@@ -1 +1,45 @@
1
- {"version":"0.7.7.1","finger-print":2074477109,"config":{"title":"B4 ISO","option":{},"page":{"paper-type":"B4_ISO","orientation":"portrait","margin-top":"20","margin-bottom":"20","margin-left":"20","margin-right":"20"}},"svg":"<svg width=\"708.6\" height=\"1000.6\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"none\" viewBox=\"0 0 708.6 1000.6\"><g class=\"canvas\"><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" id=\"goog_465465614\" font-size=\"26\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"200\" x-height=\"100\" x-left=\"254.3\" x-top=\"21\" x-valign=\"center\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"200\" height=\"100\" x=\"254.3\" y=\"21\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"354.3\" y=\"77.4\">B4 ISO</text></g></g></svg>","state":{"layout-guide":[]}}
1
+ {
2
+ "version": "0.9.0",
3
+ "items": [
4
+ {
5
+ "id": "",
6
+ "type": "text",
7
+ "display": true,
8
+ "description": "",
9
+ "x": 255,
10
+ "y": 20,
11
+ "width": 200,
12
+ "height": 100,
13
+ "style": {
14
+ "font-family": [
15
+ "Helvetica"
16
+ ],
17
+ "font-size": 26,
18
+ "color": "#000000",
19
+ "text-align": "center",
20
+ "vertical-align": "middle",
21
+ "line-height": "",
22
+ "line-height-ratio": "",
23
+ "letter-spacing": "",
24
+ "font-style": []
25
+ },
26
+ "texts": [
27
+ "B4 ISO"
28
+ ]
29
+ }
30
+ ],
31
+ "state": {
32
+ "layout-guides": []
33
+ },
34
+ "title": "B4 ISO",
35
+ "report": {
36
+ "paper-type": "B4_ISO",
37
+ "orientation": "portrait",
38
+ "margin": [
39
+ 20,
40
+ 20,
41
+ 20,
42
+ 20
43
+ ]
44
+ }
45
+ }
@@ -1 +1,45 @@
1
- {"version":"0.7.7.1","finger-print":-268654700,"config":{"title":"B4 JIS","option":{},"page":{"paper-type":"B4","orientation":"portrait","margin-top":"20","margin-bottom":"20","margin-left":"20","margin-right":"20"}},"svg":"<svg width=\"728.5\" height=\"1031.8\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"none\" viewBox=\"0 0 728.5 1031.8\"><g class=\"canvas\"><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" id=\"goog_465465613\" font-size=\"28\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"200\" x-height=\"100\" x-left=\"264.3\" x-top=\"21\" x-valign=\"center\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"200\" height=\"100\" x=\"264.3\" y=\"21\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"364.3\" y=\"77.9\">B4 JIS</text></g></g></svg>","state":{"layout-guide":[]}}
1
+ {
2
+ "version": "0.9.0",
3
+ "items": [
4
+ {
5
+ "id": "",
6
+ "type": "text",
7
+ "display": true,
8
+ "description": "",
9
+ "x": 260,
10
+ "y": 20,
11
+ "width": 200,
12
+ "height": 100,
13
+ "style": {
14
+ "font-family": [
15
+ "Helvetica"
16
+ ],
17
+ "font-size": 28,
18
+ "color": "#000000",
19
+ "text-align": "center",
20
+ "vertical-align": "middle",
21
+ "line-height": "",
22
+ "line-height-ratio": "",
23
+ "letter-spacing": "",
24
+ "font-style": []
25
+ },
26
+ "texts": [
27
+ "B4 JIS"
28
+ ]
29
+ }
30
+ ],
31
+ "state": {
32
+ "layout-guides": []
33
+ },
34
+ "title": "B4 JIS",
35
+ "report": {
36
+ "paper-type": "B4",
37
+ "orientation": "portrait",
38
+ "margin": [
39
+ 20,
40
+ 20,
41
+ 20,
42
+ 20
43
+ ]
44
+ }
45
+ }
@@ -1 +1,297 @@
1
- {"version":"0.7.7.1","finger-print":1936329983,"config":{"title":"","option":{},"page":{"paper-type":"A4","orientation":"portrait","margin-top":"20","margin-bottom":"20","margin-left":"20","margin-right":"20"}},"svg":"<svg width=\"595.2\" height=\"841.8\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"none\" viewBox=\"0 0 595.2 841.8\"><g class=\"canvas\"><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"single_none\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":33.1,\"y\":101,\"width\":210.1,\"height\":17},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"expand\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":33.1,\"y\":113.9,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"id\":\"goog_478710130\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"18\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"start\",\"text-decoration\":\"none\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" id=\"goog_478710130\" x-id=\"single_none\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"18\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"210.1\" x-height=\"17\" x-left=\"33.1\" x-top=\"101\" x-overflow=\"expand\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"210.1\" height=\"17\" x=\"33.1\" y=\"101\"/><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"35.1\" y=\"112\">single_none</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"multiple_none\",\"display\":\"true\",\"desc\":null,\"multiple\":\"true\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":290.2,\"y\":101.9,\"width\":259.1,\"height\":105.1},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":290.2,\"y\":101.8,\"width\":259.1,\"height\":105.1,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"id\":\"goog_478710131\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"18\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"start\",\"text-decoration\":\"none\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"true\" id=\"goog_478710131\" x-id=\"multiple_none\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"18\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"259.1\" x-height=\"105.1\" x-left=\"290.2\" x-top=\"101.9\" x-word-wrap=\"none\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"259.1\" height=\"105.1\" x=\"290.2\" y=\"101.9\"/><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"292.2\" y=\"112.9\">multiple_none</text></g>LAYOUT--><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" id=\"goog_1119358811\" width=\"259.1\" height=\"105.1\" x=\"290.2\" y=\"101.9\"/><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"multiple_break_word\",\"display\":\"true\",\"desc\":null,\"multiple\":\"true\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":290.2,\"y\":232.9,\"width\":259.1,\"height\":105.1},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"truncate\",\"word-wrap\":\"break-word\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":290.2,\"y\":232.8,\"width\":259.1,\"height\":105.1,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"id\":\"goog_1119358812\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"18\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"true\" id=\"goog_1119358812\" x-id=\"multiple_break_word\" x-width=\"259.1\" x-height=\"105.1\" x-left=\"290.2\" x-top=\"232.9\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"18\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" x-overflow=\"truncate\" x-word-wrap=\"break-word\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"259.1\" height=\"105.1\" x=\"290.2\" y=\"232.9\"/><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"292.2\" y=\"243.9\">multiple_break_word</text></g>LAYOUT--><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" id=\"goog_1119358813\" width=\"259.1\" height=\"105.1\" x=\"290.2\" y=\"232.9\"/><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" id=\"goog_1119358814\" x1=\"252\" x2=\"252\" y1=\"100\" y2=\"379.1\"/><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"single_break_word\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":35,\"y\":235,\"width\":210.1,\"height\":17},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"expand\",\"word-wrap\":\"break-word\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":35,\"y\":247.9,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"id\":\"goog_1119358815\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"18\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" id=\"goog_1119358815\" x-id=\"single_break_word\" x-width=\"210.1\" x-height=\"17\" x-left=\"35\" x-top=\"235\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"18\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" x-overflow=\"expand\" x-word-wrap=\"break-word\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"210.1\" height=\"17\" x=\"35\" y=\"235\"/><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"37\" y=\"246\">single_break_word</text></g>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" id=\"goog_1119358816\" font-size=\"18\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"58\" x-height=\"17\" x-left=\"32.1\" x-top=\"36\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"58\" height=\"17\" x=\"32.1\" y=\"36\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"32.1\" y=\"48.9\">Locale:</text></g><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"locale\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":100,\"y\":36,\"width\":145.1,\"height\":17},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":100,\"y\":48.9,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"id\":\"goog_1119358817\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"18\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"start\",\"text-decoration\":\"none\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" id=\"goog_1119358817\" x-id=\"locale\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"18\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"145.1\" x-height=\"17\" x-left=\"100\" x-top=\"36\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"145.1\" height=\"17\" x=\"100\" y=\"36\"/><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"102\" y=\"47\">locale</text></g>LAYOUT--><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" id=\"goog_1119358818\" width=\"210.1\" height=\"17\" x=\"33.1\" y=\"101\"/><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" id=\"goog_1119358820\" width=\"210.1\" height=\"17\" x=\"34.1\" y=\"235\"/></g></svg>","state":{"layout-guide":[{"type":"x","position":59.5},{"type":"y","position":61}]}}
1
+ {
2
+ "version": "0.9.0",
3
+ "items": [
4
+ {
5
+ "id": "single_none",
6
+ "type": "text-block",
7
+ "display": true,
8
+ "description": "",
9
+ "x": 33.1,
10
+ "y": 101,
11
+ "width": 210.1,
12
+ "height": 17,
13
+ "style": {
14
+ "font-family": [
15
+ "Helvetica"
16
+ ],
17
+ "font-size": 18,
18
+ "color": "#000000",
19
+ "text-align": "left",
20
+ "vertical-align": "top",
21
+ "line-height": "",
22
+ "line-height-ratio": "",
23
+ "letter-spacing": "",
24
+ "font-style": [],
25
+ "overflow": "expand",
26
+ "word-wrap": "break-word"
27
+ },
28
+ "reference-id": "",
29
+ "value": "",
30
+ "multiple-line": false,
31
+ "format": {
32
+ "base": "",
33
+ "type": ""
34
+ }
35
+ },
36
+ {
37
+ "id": "multiple_none",
38
+ "type": "text-block",
39
+ "display": true,
40
+ "description": "",
41
+ "x": 290.2,
42
+ "y": 101.9,
43
+ "width": 259.1,
44
+ "height": 105.1,
45
+ "style": {
46
+ "font-family": [
47
+ "Helvetica"
48
+ ],
49
+ "font-size": 18,
50
+ "color": "#000000",
51
+ "text-align": "left",
52
+ "vertical-align": "top",
53
+ "line-height": "",
54
+ "line-height-ratio": "",
55
+ "letter-spacing": "",
56
+ "font-style": [],
57
+ "overflow": "truncate",
58
+ "word-wrap": "none"
59
+ },
60
+ "reference-id": "",
61
+ "value": "",
62
+ "multiple-line": true,
63
+ "format": {
64
+ "base": "",
65
+ "type": ""
66
+ }
67
+ },
68
+ {
69
+ "id": "",
70
+ "type": "rect",
71
+ "display": true,
72
+ "description": "",
73
+ "x": 290.2,
74
+ "y": 101.9,
75
+ "width": 259.1,
76
+ "height": 105.1,
77
+ "style": {
78
+ "border-color": "#000000",
79
+ "border-width": 1,
80
+ "border-style": "solid",
81
+ "fill-color": "none"
82
+ },
83
+ "border-radius": 0
84
+ },
85
+ {
86
+ "id": "multiple_break_word",
87
+ "type": "text-block",
88
+ "display": true,
89
+ "description": "",
90
+ "x": 290.2,
91
+ "y": 232.9,
92
+ "width": 259.1,
93
+ "height": 105.1,
94
+ "style": {
95
+ "font-family": [
96
+ "Helvetica"
97
+ ],
98
+ "font-size": 18,
99
+ "color": "#000000",
100
+ "text-align": "left",
101
+ "vertical-align": "top",
102
+ "line-height": "",
103
+ "line-height-ratio": "",
104
+ "letter-spacing": "",
105
+ "font-style": [],
106
+ "overflow": "truncate",
107
+ "word-wrap": "break-word"
108
+ },
109
+ "reference-id": "",
110
+ "value": "",
111
+ "multiple-line": true,
112
+ "format": {
113
+ "base": "",
114
+ "type": ""
115
+ }
116
+ },
117
+ {
118
+ "id": "",
119
+ "type": "rect",
120
+ "display": true,
121
+ "description": "",
122
+ "x": 290.2,
123
+ "y": 232.9,
124
+ "width": 259.1,
125
+ "height": 105.1,
126
+ "style": {
127
+ "border-color": "#000000",
128
+ "border-width": 1,
129
+ "border-style": "solid",
130
+ "fill-color": "none"
131
+ },
132
+ "border-radius": 0
133
+ },
134
+ {
135
+ "id": "",
136
+ "type": "line",
137
+ "display": true,
138
+ "description": "",
139
+ "style": {
140
+ "border-color": "#000000",
141
+ "border-width": 1,
142
+ "border-style": "solid"
143
+ },
144
+ "x1": 252,
145
+ "y1": 100,
146
+ "x2": 252,
147
+ "y2": 379.1
148
+ },
149
+ {
150
+ "id": "single_break_word",
151
+ "type": "text-block",
152
+ "display": true,
153
+ "description": "",
154
+ "x": 35,
155
+ "y": 235,
156
+ "width": 210.1,
157
+ "height": 17,
158
+ "style": {
159
+ "font-family": [
160
+ "Helvetica"
161
+ ],
162
+ "font-size": 18,
163
+ "color": "#000000",
164
+ "text-align": "left",
165
+ "vertical-align": "top",
166
+ "line-height": "",
167
+ "line-height-ratio": "",
168
+ "letter-spacing": "",
169
+ "font-style": [],
170
+ "overflow": "expand",
171
+ "word-wrap": "break-word"
172
+ },
173
+ "reference-id": "",
174
+ "value": "",
175
+ "multiple-line": false,
176
+ "format": {
177
+ "base": "",
178
+ "type": ""
179
+ }
180
+ },
181
+ {
182
+ "id": "",
183
+ "type": "text",
184
+ "display": true,
185
+ "description": "",
186
+ "x": 32.1,
187
+ "y": 33,
188
+ "width": 58,
189
+ "height": 20.5,
190
+ "style": {
191
+ "font-family": [
192
+ "Helvetica"
193
+ ],
194
+ "font-size": 18,
195
+ "color": "#000000",
196
+ "text-align": "left",
197
+ "vertical-align": "top",
198
+ "line-height": "",
199
+ "line-height-ratio": "",
200
+ "letter-spacing": "",
201
+ "font-style": []
202
+ },
203
+ "texts": [
204
+ "Locale:"
205
+ ]
206
+ },
207
+ {
208
+ "id": "locale",
209
+ "type": "text-block",
210
+ "display": true,
211
+ "description": "",
212
+ "x": 100,
213
+ "y": 36,
214
+ "width": 145.1,
215
+ "height": 17,
216
+ "style": {
217
+ "font-family": [
218
+ "Helvetica"
219
+ ],
220
+ "font-size": 18,
221
+ "color": "#000000",
222
+ "text-align": "left",
223
+ "vertical-align": "top",
224
+ "line-height": "",
225
+ "line-height-ratio": "",
226
+ "letter-spacing": "",
227
+ "font-style": [],
228
+ "overflow": "truncate",
229
+ "word-wrap": "break-word"
230
+ },
231
+ "reference-id": "",
232
+ "value": "",
233
+ "multiple-line": false,
234
+ "format": {
235
+ "base": "",
236
+ "type": ""
237
+ }
238
+ },
239
+ {
240
+ "id": "",
241
+ "type": "rect",
242
+ "display": true,
243
+ "description": "",
244
+ "x": 33.1,
245
+ "y": 101,
246
+ "width": 210.1,
247
+ "height": 17,
248
+ "style": {
249
+ "border-color": "#000000",
250
+ "border-width": 1,
251
+ "border-style": "solid",
252
+ "fill-color": "none"
253
+ },
254
+ "border-radius": 0
255
+ },
256
+ {
257
+ "id": "",
258
+ "type": "rect",
259
+ "display": true,
260
+ "description": "",
261
+ "x": 34.1,
262
+ "y": 235,
263
+ "width": 210.1,
264
+ "height": 17,
265
+ "style": {
266
+ "border-color": "#000000",
267
+ "border-width": 1,
268
+ "border-style": "solid",
269
+ "fill-color": "none"
270
+ },
271
+ "border-radius": 0
272
+ }
273
+ ],
274
+ "state": {
275
+ "layout-guides": [
276
+ {
277
+ "type": "x",
278
+ "position": 59.5
279
+ },
280
+ {
281
+ "type": "y",
282
+ "position": 61
283
+ }
284
+ ]
285
+ },
286
+ "title": "",
287
+ "report": {
288
+ "paper-type": "A4",
289
+ "orientation": "portrait",
290
+ "margin": [
291
+ 20,
292
+ 20,
293
+ 20,
294
+ 20
295
+ ]
296
+ }
297
+ }