drawio_dsl 0.8.11 → 0.9.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (98) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +7 -0
  3. data/config/configuration.json +8 -8
  4. data/docs/project-plan/project.drawio +80 -74
  5. data/docs/project-plan/project_done.svg +1 -1
  6. data/docs/project-plan/project_in_progress.svg +1 -1
  7. data/docs/samples/grid-direction-horizontal.svg +1 -1
  8. data/docs/samples/grid-direction-vertical.svg +1 -1
  9. data/lib/drawio_dsl/configuration.rb +21 -9
  10. data/lib/drawio_dsl/configuration_shapes.rb +2 -2
  11. data/lib/drawio_dsl/configuration_themes.rb +44 -44
  12. data/lib/drawio_dsl/dom_builder_shapes.rb +3 -3
  13. data/lib/drawio_dsl/drawio_shapes.rb +3 -3
  14. data/lib/drawio_dsl/schema/_.rb +55 -45
  15. data/lib/drawio_dsl/schema/diagram.rb +1 -1
  16. data/lib/drawio_dsl/schema/element.rb +23 -0
  17. data/lib/drawio_dsl/schema/{shapes/face.rb → elements/actor.rb} +2 -2
  18. data/lib/drawio_dsl/schema/{shapes/actor.rb → elements/actor2.rb} +2 -2
  19. data/lib/drawio_dsl/schema/{shapes/circle.rb → elements/callout.rb} +2 -2
  20. data/lib/drawio_dsl/schema/{shapes/callout.rb → elements/callout2.rb} +2 -2
  21. data/lib/drawio_dsl/schema/elements/callout3.rb +9 -0
  22. data/lib/drawio_dsl/schema/elements/callout4.rb +9 -0
  23. data/lib/drawio_dsl/schema/{shapes/cross.rb → elements/circle.rb} +2 -2
  24. data/lib/drawio_dsl/schema/elements/cloud.rb +9 -0
  25. data/lib/drawio_dsl/schema/elements/container.rb +9 -0
  26. data/lib/drawio_dsl/schema/elements/container2.rb +9 -0
  27. data/lib/drawio_dsl/schema/elements/container3.rb +9 -0
  28. data/lib/drawio_dsl/schema/elements/container4.rb +9 -0
  29. data/lib/drawio_dsl/schema/elements/cross.rb +9 -0
  30. data/lib/drawio_dsl/schema/elements/database.rb +9 -0
  31. data/lib/drawio_dsl/schema/{shapes/actor2.rb → elements/db_json.rb} +2 -2
  32. data/lib/drawio_dsl/schema/elements/diamond.rb +9 -0
  33. data/lib/drawio_dsl/schema/elements/document.rb +9 -0
  34. data/lib/drawio_dsl/schema/elements/ellipse.rb +9 -0
  35. data/lib/drawio_dsl/schema/elements/embed_col200.rb +9 -0
  36. data/lib/drawio_dsl/schema/elements/embed_col50.rb +9 -0
  37. data/lib/drawio_dsl/schema/{shapes/callout2.rb → elements/embed_row.rb} +2 -2
  38. data/lib/drawio_dsl/schema/elements/envelop.rb +9 -0
  39. data/lib/drawio_dsl/schema/elements/face.rb +9 -0
  40. data/lib/drawio_dsl/schema/elements/group.rb +9 -0
  41. data/lib/drawio_dsl/schema/elements/hexagon.rb +9 -0
  42. data/lib/drawio_dsl/schema/elements/interface.rb +9 -0
  43. data/lib/drawio_dsl/schema/elements/klass.rb +9 -0
  44. data/lib/drawio_dsl/schema/elements/note.rb +9 -0
  45. data/lib/drawio_dsl/schema/elements/process.rb +9 -0
  46. data/lib/drawio_dsl/schema/elements/rectangle.rb +9 -0
  47. data/lib/drawio_dsl/schema/elements/rectangle2.rb +9 -0
  48. data/lib/drawio_dsl/schema/{shapes/cloud.rb → elements/square.rb} +2 -2
  49. data/lib/drawio_dsl/schema/elements/step.rb +9 -0
  50. data/lib/drawio_dsl/schema/elements/tick.rb +9 -0
  51. data/lib/drawio_dsl/schema/elements/todo.rb +9 -0
  52. data/lib/drawio_dsl/schema/elements/triangle.rb +9 -0
  53. data/lib/drawio_dsl/schema/line.rb +24 -0
  54. data/lib/drawio_dsl/schema/lines/solid.rb +9 -0
  55. data/lib/drawio_dsl/schema/page.rb +8 -6
  56. data/lib/drawio_dsl/schema/{shapes/shape.rb → shape.rb} +14 -22
  57. data/lib/drawio_dsl/schema/text.rb +23 -0
  58. data/lib/drawio_dsl/schema/{shapes → texts}/h1.rb +2 -2
  59. data/lib/drawio_dsl/schema/{shapes → texts}/h2.rb +2 -2
  60. data/lib/drawio_dsl/schema/{shapes → texts}/h3.rb +2 -2
  61. data/lib/drawio_dsl/schema/{shapes → texts}/h4.rb +2 -2
  62. data/lib/drawio_dsl/schema/{shapes → texts}/h5.rb +2 -2
  63. data/lib/drawio_dsl/schema/{shapes → texts}/h6.rb +2 -2
  64. data/lib/drawio_dsl/schema/{shapes → texts}/p.rb +2 -2
  65. data/lib/drawio_dsl/version.rb +1 -1
  66. data/lib/drawio_dsl.rb +7 -9
  67. data/package-lock.json +2 -2
  68. data/package.json +1 -1
  69. metadata +49 -46
  70. data/lib/drawio_dsl/schema/shapes/callout3.rb +0 -9
  71. data/lib/drawio_dsl/schema/shapes/callout4.rb +0 -9
  72. data/lib/drawio_dsl/schema/shapes/container.rb +0 -9
  73. data/lib/drawio_dsl/schema/shapes/container2.rb +0 -9
  74. data/lib/drawio_dsl/schema/shapes/container3.rb +0 -9
  75. data/lib/drawio_dsl/schema/shapes/container4.rb +0 -9
  76. data/lib/drawio_dsl/schema/shapes/database.rb +0 -9
  77. data/lib/drawio_dsl/schema/shapes/db_json.rb +0 -9
  78. data/lib/drawio_dsl/schema/shapes/diamond.rb +0 -9
  79. data/lib/drawio_dsl/schema/shapes/document.rb +0 -9
  80. data/lib/drawio_dsl/schema/shapes/ellipse.rb +0 -9
  81. data/lib/drawio_dsl/schema/shapes/embed_col200.rb +0 -9
  82. data/lib/drawio_dsl/schema/shapes/embed_col50.rb +0 -9
  83. data/lib/drawio_dsl/schema/shapes/embed_row.rb +0 -9
  84. data/lib/drawio_dsl/schema/shapes/envelop.rb +0 -9
  85. data/lib/drawio_dsl/schema/shapes/group.rb +0 -9
  86. data/lib/drawio_dsl/schema/shapes/hexagon.rb +0 -9
  87. data/lib/drawio_dsl/schema/shapes/interface.rb +0 -9
  88. data/lib/drawio_dsl/schema/shapes/klass.rb +0 -9
  89. data/lib/drawio_dsl/schema/shapes/line.rb +0 -9
  90. data/lib/drawio_dsl/schema/shapes/note.rb +0 -9
  91. data/lib/drawio_dsl/schema/shapes/process.rb +0 -9
  92. data/lib/drawio_dsl/schema/shapes/rectangle.rb +0 -9
  93. data/lib/drawio_dsl/schema/shapes/rectangle2.rb +0 -9
  94. data/lib/drawio_dsl/schema/shapes/square.rb +0 -9
  95. data/lib/drawio_dsl/schema/shapes/step.rb +0 -9
  96. data/lib/drawio_dsl/schema/shapes/tick.rb +0 -9
  97. data/lib/drawio_dsl/schema/shapes/todo.rb +0 -9
  98. data/lib/drawio_dsl/schema/shapes/triangle.rb +0 -9
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 208ef0ab954f25dbd4c8cac55bb9b7ca6ea6840056b7ada1488b67081ccf2305
4
- data.tar.gz: e1e8d5246abe5293c1b7cd69d3f6adc1a9baa5fc146acecab86ee799bc4fa64c
3
+ metadata.gz: 1c1ea476bcdeedbff0ddd9a333eaba42dd38eb0551800068d0d63fff70847ad9
4
+ data.tar.gz: '019f50e2d62c8d725931c4c69175c10e5e343bbe0b35ca6da344447aa837771e'
5
5
  SHA512:
6
- metadata.gz: 496d3cd13f1554ca02df94d6f0e301cea53a7fab8db0fc6259569cfe95d7fbd08a11e604f45f4d66bd9f94c017beaad9e99f0106a32d9c5cd32102c8b278ad76
7
- data.tar.gz: ddde1008509fcfe70c18b7bc780d411a04106ca616a7d52e7d60b6e66c84256acf2ef740a115e02756fce13681ccb184c9a18324fbc63f0cc3e93de34fb1f9bc
6
+ metadata.gz: 108f2aafe763bd48d701d2db7962cf681254ebd075fef46dcdabf2c21baa306db3d66b4286d6c4e8fc8c9a9ca0d9b68b077bdc6435c3f90e330f22b9766b6681
7
+ data.tar.gz: de6f4a79058462677df419f1fbaa61515951920c8f0309befff859641f98c371434229dfd75a74b4616482874a9c9bc766c455904c261f5728d043eaea77d072
data/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [0.8.11](https://github.com/klueless-io/drawio_dsl/compare/v0.8.10...v0.8.11) (2022-03-23)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * configuration for lines and texts ([300a51a](https://github.com/klueless-io/drawio_dsl/commit/300a51a357db48ca32c50df128163af1ba24eefb))
7
+
1
8
  ## [0.8.10](https://github.com/klueless-io/drawio_dsl/compare/v0.8.9...v0.8.10) (2022-03-23)
2
9
 
3
10
 
@@ -209,7 +209,7 @@
209
209
  },
210
210
  "shapes": [
211
211
  {
212
- "type": "line",
212
+ "type": "solid",
213
213
  "category": "line",
214
214
  "x": 0,
215
215
  "y": 0,
@@ -224,7 +224,7 @@
224
224
  "y": 0,
225
225
  "w": 100,
226
226
  "h": 50,
227
- "style_modifiers": "text;fontSize=89;fontColor=#ffffff;fontStyle=1;fillColor=none"
227
+ "style_modifiers": "text;fontSize=89;fontStyle=1;fillColor=none"
228
228
  },
229
229
  {
230
230
  "type": "h2",
@@ -233,7 +233,7 @@
233
233
  "y": 0,
234
234
  "w": 100,
235
235
  "h": 50,
236
- "style_modifiers": "text;fontSize=67;fontColor=#ffffff;fontStyle=1;fillColor=none"
236
+ "style_modifiers": "text;fontSize=67;fontStyle=1;fillColor=none"
237
237
  },
238
238
  {
239
239
  "type": "h3",
@@ -242,7 +242,7 @@
242
242
  "y": 0,
243
243
  "w": 100,
244
244
  "h": 50,
245
- "style_modifiers": "text;fontSize=50;fontColor=#ffffff;fontStyle=1;fillColor=none"
245
+ "style_modifiers": "text;fontSize=50;fontStyle=1;fillColor=none"
246
246
  },
247
247
  {
248
248
  "type": "h4",
@@ -251,7 +251,7 @@
251
251
  "y": 0,
252
252
  "w": 100,
253
253
  "h": 50,
254
- "style_modifiers": "text;fontSize=37;fontColor=#ffffff;fontStyle=1;fillColor=none"
254
+ "style_modifiers": "text;fontSize=37;fontStyle=1;fillColor=none"
255
255
  },
256
256
  {
257
257
  "type": "h5",
@@ -260,7 +260,7 @@
260
260
  "y": 0,
261
261
  "w": 100,
262
262
  "h": 50,
263
- "style_modifiers": "text;fontSize=28;fontColor=#ffffff;fontStyle=1;fillColor=none"
263
+ "style_modifiers": "text;fontSize=28;fontStyle=1;fillColor=none"
264
264
  },
265
265
  {
266
266
  "type": "h6",
@@ -269,7 +269,7 @@
269
269
  "y": 0,
270
270
  "w": 100,
271
271
  "h": 50,
272
- "style_modifiers": "text;fontSize=21;fontColor=#ffffff;fontStyle=1;fillColor=none"
272
+ "style_modifiers": "text;fontSize=21;fontStyle=1;fillColor=none"
273
273
  },
274
274
  {
275
275
  "type": "p",
@@ -278,7 +278,7 @@
278
278
  "y": 0,
279
279
  "w": 100,
280
280
  "h": 50,
281
- "style_modifiers": "text;fontSize=16;fontColor=#ffffff;fontStyle=1;fillColor=none"
281
+ "style_modifiers": "text;fontSize=16;fontStyle=1;fillColor=none"
282
282
  },
283
283
  {
284
284
  "type": "actor",
@@ -1,199 +1,205 @@
1
- <mxfile host="XrD">
2
- <diagram id="b57" name="In progress">
1
+ <mxfile host="sZX">
2
+ <diagram id="ZAl" name="In progress">
3
3
  <mxGraphModel dx="0" dy="0" background="#FFFACD" grid="0" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="1169" pageHeight="827" math="0" shadow="0">
4
4
  <root>
5
- <mxCell id="page_root_b57" parent="b57"/>
6
- <mxCell id="node_root_b57" parent="page_root_b57"/>
7
- <mxCell id="b57-3" value="configuration for lines" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#d5e8d4;strokeColor=#82b366;fontColor=#333333" vertex="1" parent="node_root_b57">
5
+ <mxCell id="page_root_ZAl" parent="ZAl"/>
6
+ <mxCell id="node_root_ZAl" parent="page_root_ZAl"/>
7
+ <mxCell id="ZAl-1" value="DrawIO DSL" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fontColor=#aaaaaa;text;fontSize=28;fontStyle=1;fillColor=none" vertex="1" parent="node_root_ZAl">
8
+ <mxGeometry x="300" y="0" width="400" height="80" as="geometry"/>
9
+ </mxCell>
10
+ <mxCell id="ZAl-3" value="add sample for backgrounds with text on top" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#d5e8d4;strokeColor=#82b366;fontColor=#333333" vertex="1" parent="node_root_ZAl">
8
11
  <mxGeometry x="10" y="10" width="300" height="60" as="geometry"/>
9
12
  </mxCell>
10
- <mxCell id="b57-4" value="configuration for text" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#d5e8d4;strokeColor=#82b366;fontColor=#333333" vertex="1" parent="node_root_b57">
13
+ <mxCell id="ZAl-4" value="add :shape, :line and :text to random shape generator, note: you can see the issue in the samples/20-styled-shapes.rb where the text is not rendered" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#d5e8d4;strokeColor=#82b366;fontColor=#333333" vertex="1" parent="node_root_ZAl">
11
14
  <mxGeometry x="330" y="10" width="300" height="60" as="geometry"/>
12
15
  </mxCell>
13
- <mxCell id="b57-5" value="refactor shapes configuration so that it reads from custom file" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#d5e8d4;strokeColor=#82b366;fontColor=#333333" vertex="1" parent="node_root_b57">
16
+ <mxCell id="ZAl-5" value="add new shapes related to line connectors" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#d5e8d4;strokeColor=#82b366;fontColor=#333333" vertex="1" parent="node_root_ZAl">
14
17
  <mxGeometry x="650" y="10" width="300" height="60" as="geometry"/>
15
18
  </mxCell>
16
- <mxCell id="b57-6" value="fix :text" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#d5e8d4;strokeColor=#82b366;fontColor=#333333" vertex="1" parent="node_root_b57">
19
+ <mxCell id="ZAl-6" value="line connector aliases gives a simple way to use predefined line configurations" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#d5e8d4;strokeColor=#82b366;fontColor=#333333" vertex="1" parent="node_root_ZAl">
17
20
  <mxGeometry x="10" y="90" width="300" height="60" as="geometry"/>
18
21
  </mxCell>
19
- <mxCell id="b57-7" value="add :shape, :line and :text to random shape generator, note: you can see the issue in the samples/20-styled-shapes.rb where the text is not rendered" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#d5e8d4;strokeColor=#82b366;fontColor=#333333" vertex="1" parent="node_root_b57">
22
+ <mxCell id="ZAl-7" value="line connectors need to support autolinking using ids" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#d5e8d4;strokeColor=#82b366;fontColor=#333333" vertex="1" parent="node_root_ZAl">
20
23
  <mxGeometry x="330" y="90" width="300" height="60" as="geometry"/>
21
24
  </mxCell>
22
- <mxCell id="b57-8" value="add new shapes related to line connectors" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#d5e8d4;strokeColor=#82b366;fontColor=#333333" vertex="1" parent="node_root_b57">
25
+ <mxCell id="ZAl-8" value="line connectors should not effect the grid positioning systems" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#d5e8d4;strokeColor=#82b366;fontColor=#333333" vertex="1" parent="node_root_ZAl">
23
26
  <mxGeometry x="650" y="90" width="300" height="60" as="geometry"/>
24
27
  </mxCell>
25
- <mxCell id="b57-9" value="line connector aliases gives a simple way to use predefined line configurations" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#d5e8d4;strokeColor=#82b366;fontColor=#333333" vertex="1" parent="node_root_b57">
28
+ <mxCell id="ZAl-9" value="headings do not appear to be working?" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#d5e8d4;strokeColor=#82b366;fontColor=#333333" vertex="1" parent="node_root_ZAl">
26
29
  <mxGeometry x="10" y="170" width="300" height="60" as="geometry"/>
27
30
  </mxCell>
28
- <mxCell id="b57-10" value="line connectors need to support autolinking using ids" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#d5e8d4;strokeColor=#82b366;fontColor=#333333" vertex="1" parent="node_root_b57">
31
+ <mxCell id="ZAl-10" value="improve coverage" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#d5e8d4;strokeColor=#82b366;fontColor=#333333" vertex="1" parent="node_root_ZAl">
29
32
  <mxGeometry x="330" y="170" width="300" height="60" as="geometry"/>
30
33
  </mxCell>
31
- <mxCell id="b57-11" value="line connectors should not effect the grid positioning systems" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#d5e8d4;strokeColor=#82b366;fontColor=#333333" vertex="1" parent="node_root_b57">
34
+ <mxCell id="ZAl-11" value="class html builder to support include/extend modules, class methods" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#d5e8d4;strokeColor=#82b366;fontColor=#333333" vertex="1" parent="node_root_ZAl">
32
35
  <mxGeometry x="650" y="170" width="300" height="60" as="geometry"/>
33
36
  </mxCell>
34
- <mxCell id="b57-12" value="headings do not appear to be working?" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#d5e8d4;strokeColor=#82b366;fontColor=#333333" vertex="1" parent="node_root_b57">
35
- <mxGeometry x="10" y="250" width="300" height="60" as="geometry"/>
36
- </mxCell>
37
- <mxCell id="b57-13" value="improve coverage" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#d5e8d4;strokeColor=#82b366;fontColor=#333333" vertex="1" parent="node_root_b57">
38
- <mxGeometry x="330" y="250" width="300" height="60" as="geometry"/>
39
- </mxCell>
40
- <mxCell id="b57-14" value="class html builder to support include/extend modules, class methods" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#d5e8d4;strokeColor=#82b366;fontColor=#333333" vertex="1" parent="node_root_b57">
41
- <mxGeometry x="650" y="250" width="300" height="60" as="geometry"/>
42
- </mxCell>
43
37
  </root>
44
38
  </mxGraphModel>
45
39
  </diagram>
46
- <diagram id="plU" name="To Do">
40
+ <diagram id="ez0" name="To Do">
47
41
  <mxGraphModel dx="0" dy="0" background="#FFFACD" grid="0" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="1169" pageHeight="827" math="0" shadow="0">
48
42
  <root>
49
- <mxCell id="page_root_plU" parent="plU"/>
50
- <mxCell id="node_root_plU" parent="page_root_plU"/>
51
- <mxCell id="plU-2" value="refactor HTML builder to custom GEM or use existing ruby GEM" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_plU">
43
+ <mxCell id="page_root_ez0" parent="ez0"/>
44
+ <mxCell id="node_root_ez0" parent="page_root_ez0"/>
45
+ <mxCell id="ez0-2" value="refactor HTML builder to custom GEM or use existing ruby GEM" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_ez0">
52
46
  <mxGeometry x="10" y="10" width="300" height="60" as="geometry"/>
53
47
  </mxCell>
54
- <mxCell id="plU-3" value="add page background to theme, use it whenever the theme is set at a diagram/page level" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_plU">
48
+ <mxCell id="ez0-3" value="add page background to theme, use it whenever the theme is set at a diagram/page level" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_ez0">
55
49
  <mxGeometry x="330" y="10" width="300" height="60" as="geometry"/>
56
50
  </mxCell>
57
- <mxCell id="plU-4" value="move DrawioDsl::Formatters::Factory::FORMATTERS to resource file" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_plU">
51
+ <mxCell id="ez0-4" value="move DrawioDsl::Formatters::Factory::FORMATTERS to resource file" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_ez0">
58
52
  <mxGeometry x="650" y="10" width="300" height="60" as="geometry"/>
59
53
  </mxCell>
60
- <mxCell id="plU-5" value="move DrawioDsl::Formatters::StyleBuilder::MAPPINGS to resource file" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_plU">
54
+ <mxCell id="ez0-5" value="move DrawioDsl::Formatters::StyleBuilder::MAPPINGS to resource file" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_ez0">
61
55
  <mxGeometry x="10" y="90" width="300" height="60" as="geometry"/>
62
56
  </mxCell>
63
- <mxCell id="plU-6" value="settings style attributes need to de-duplicate, might be best to utilize the new StyleBuilder class" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_plU">
57
+ <mxCell id="ez0-6" value="settings style attributes need to de-duplicate, might be best to utilize the new StyleBuilder class" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_ez0">
64
58
  <mxGeometry x="330" y="90" width="300" height="60" as="geometry"/>
65
59
  </mxCell>
66
- <mxCell id="plU-7" value="write SVG directly into other projects" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_plU">
60
+ <mxCell id="ez0-7" value="write SVG directly into other projects" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_ez0">
67
61
  <mxGeometry x="650" y="90" width="300" height="60" as="geometry"/>
68
62
  </mxCell>
69
- <mxCell id="plU-8" value="Nodes need to support child nodes" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_plU">
63
+ <mxCell id="ez0-8" value="Nodes need to support child nodes" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_ez0">
70
64
  <mxGeometry x="10" y="170" width="300" height="60" as="geometry"/>
71
65
  </mxCell>
72
- <mxCell id="plU-9" value="Grid layout does not position itself in relation to the last element" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_plU">
66
+ <mxCell id="ez0-9" value="Grid layout does not position itself in relation to the last element" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_ez0">
73
67
  <mxGeometry x="330" y="170" width="300" height="60" as="geometry"/>
74
68
  </mxCell>
75
- <mxCell id="plU-10" value="Dynamic sized shapes that expand to the size of their text" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_plU">
69
+ <mxCell id="ez0-10" value="Dynamic sized shapes that expand to the size of their text" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_ez0">
76
70
  <mxGeometry x="650" y="170" width="300" height="60" as="geometry"/>
77
71
  </mxCell>
78
- <mxCell id="plU-11" value="Control of text padding left, right, top and bottom" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_plU">
72
+ <mxCell id="ez0-11" value="Control of text padding left, right, top and bottom" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_ez0">
79
73
  <mxGeometry x="10" y="250" width="300" height="60" as="geometry"/>
80
74
  </mxCell>
81
- <mxCell id="plU-12" value="Improve the theme control over text-only shapes" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_plU">
75
+ <mxCell id="ez0-12" value="Improve the theme control over text-only shapes" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_ez0">
82
76
  <mxGeometry x="330" y="250" width="300" height="60" as="geometry"/>
83
77
  </mxCell>
84
- <mxCell id="plU-13" value="x,y settings do not work for shapes within a grid layout" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_plU">
78
+ <mxCell id="ez0-13" value="x,y settings do not work for shapes within a grid layout" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_ez0">
85
79
  <mxGeometry x="650" y="250" width="300" height="60" as="geometry"/>
86
80
  </mxCell>
87
- <mxCell id="plU-14" value="page layout so that you drop elements on and they are positioned correctly, e.g centered, left, right, etc, maybe a grid layout with a wrap of 1 and a width of the page is sufficient" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_plU">
81
+ <mxCell id="ez0-14" value="page layout so that you drop elements on and they are positioned correctly, e.g centered, left, right, etc, maybe a grid layout with a wrap of 1 and a width of the page is sufficient" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_ez0">
88
82
  <mxGeometry x="10" y="330" width="300" height="60" as="geometry"/>
89
83
  </mxCell>
90
84
  </root>
91
85
  </mxGraphModel>
92
86
  </diagram>
93
- <diagram id="lil" name="Done">
87
+ <diagram id="VR9" name="Done">
94
88
  <mxGraphModel dx="0" dy="0" background="#FFFACD" grid="0" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="1169" pageHeight="827" math="0" shadow="0">
95
89
  <root>
96
- <mxCell id="page_root_lil" parent="lil"/>
97
- <mxCell id="node_root_lil" parent="page_root_lil"/>
98
- <mxCell id="lil-2" value="configuration for elements" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_lil">
90
+ <mxCell id="page_root_VR9" parent="VR9"/>
91
+ <mxCell id="node_root_VR9" parent="page_root_VR9"/>
92
+ <mxCell id="VR9-2" value="refactor shapes configuration so that it reads from custom file" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
99
93
  <mxGeometry x="10" y="10" width="300" height="60" as="geometry"/>
100
94
  </mxCell>
101
- <mxCell id="lil-3" value="configuration for line strokes" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_lil">
95
+ <mxCell id="VR9-3" value="fix :text" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
102
96
  <mxGeometry x="330" y="10" width="300" height="60" as="geometry"/>
103
97
  </mxCell>
104
- <mxCell id="lil-4" value="configuration for connector compass direction" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_lil">
98
+ <mxCell id="VR9-4" value="configuration for lines" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
105
99
  <mxGeometry x="650" y="10" width="300" height="60" as="geometry"/>
106
100
  </mxCell>
107
- <mxCell id="lil-5" value="configuration for connector design" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_lil">
101
+ <mxCell id="VR9-5" value="configuration for text" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
108
102
  <mxGeometry x="10" y="90" width="300" height="60" as="geometry"/>
109
103
  </mxCell>
110
- <mxCell id="lil-6" value="configuration for connector arrows" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_lil">
104
+ <mxCell id="VR9-6" value="configuration for elements" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
111
105
  <mxGeometry x="330" y="90" width="300" height="60" as="geometry"/>
112
106
  </mxCell>
113
- <mxCell id="lil-7" value="configuration for connector waypoints" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_lil">
107
+ <mxCell id="VR9-7" value="configuration for line strokes" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
114
108
  <mxGeometry x="650" y="90" width="300" height="60" as="geometry"/>
115
109
  </mxCell>
116
- <mxCell id="lil-8" value="export_json will output a diagram in machine readable format" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_lil">
110
+ <mxCell id="VR9-8" value="configuration for connector compass direction" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
117
111
  <mxGeometry x="10" y="170" width="300" height="60" as="geometry"/>
118
112
  </mxCell>
119
- <mxCell id="lil-9" value="class html formatter to support regular html nodes such as p, h1.. ul, li that are found on the builder" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_lil">
113
+ <mxCell id="VR9-9" value="configuration for connector design" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
120
114
  <mxGeometry x="330" y="170" width="300" height="60" as="geometry"/>
121
115
  </mxCell>
122
- <mxCell id="lil-10" value="group box, like a regular box but with a top aligned h1 style title" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_lil">
116
+ <mxCell id="VR9-10" value="configuration for connector arrows" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
123
117
  <mxGeometry x="650" y="170" width="300" height="60" as="geometry"/>
124
118
  </mxCell>
125
- <mxCell id="lil-11" value="build a domain (class) diagram" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_lil">
119
+ <mxCell id="VR9-11" value="configuration for connector waypoints" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
126
120
  <mxGeometry x="10" y="250" width="300" height="60" as="geometry"/>
127
121
  </mxCell>
128
- <mxCell id="lil-12" value="build configuration for line strokes %i[dashed dotted dashdot dashdotdot dotdotdot longdash)" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_lil">
122
+ <mxCell id="VR9-12" value="export_json will output a diagram in machine readable format" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
129
123
  <mxGeometry x="330" y="250" width="300" height="60" as="geometry"/>
130
124
  </mxCell>
131
- <mxCell id="lil-13" value="build configuration for line compass %i[n ne e se s sw w nw]" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_lil">
125
+ <mxCell id="VR9-13" value="class html formatter to support regular html nodes such as p, h1.. ul, li that are found on the builder" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
132
126
  <mxGeometry x="650" y="250" width="300" height="60" as="geometry"/>
133
127
  </mxCell>
134
- <mxCell id="lil-14" value="build configuration for line shape %i[style1 style2 style3 style4]" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_lil">
128
+ <mxCell id="VR9-14" value="group box, like a regular box but with a top aligned h1 style title" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
135
129
  <mxGeometry x="10" y="330" width="300" height="60" as="geometry"/>
136
130
  </mxCell>
137
- <mxCell id="lil-15" value="build configuration for arrows %i[straight triangle diamond circle cross short default none plain skewed_dash concave er_many er_one er_one_optional er_one_mandatory er_many_optional er_many_mandatory]" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_lil">
131
+ <mxCell id="VR9-15" value="build a domain (class) diagram" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
138
132
  <mxGeometry x="330" y="330" width="300" height="60" as="geometry"/>
139
133
  </mxCell>
140
- <mxCell id="lil-16" value="refactor the shape-&gt;text_only (boolean) to category (symbol)" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_lil">
134
+ <mxCell id="VR9-16" value="build configuration for line strokes %i[dashed dotted dashdot dashdotdot dotdotdot longdash)" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
141
135
  <mxGeometry x="650" y="330" width="300" height="60" as="geometry"/>
142
136
  </mxCell>
143
- <mxCell id="lil-17" value="ensure that ids are working as expected" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_lil">
137
+ <mxCell id="VR9-17" value="build configuration for line compass %i[n ne e se s sw w nw]" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
144
138
  <mxGeometry x="10" y="410" width="300" height="60" as="geometry"/>
145
139
  </mxCell>
146
- <mxCell id="lil-18" value="alter the initial parameter of all shapes so that it can be an ID, without named attribute" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_lil">
140
+ <mxCell id="VR9-18" value="build configuration for line shape %i[style1 style2 style3 style4]" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
147
141
  <mxGeometry x="330" y="410" width="300" height="60" as="geometry"/>
148
142
  </mxCell>
149
- <mxCell id="lil-19" value="move project-plan files" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_lil">
143
+ <mxCell id="VR9-19" value="build configuration for arrows %i[straight triangle diamond circle cross short default none plain skewed_dash concave er_many er_one er_one_optional er_one_mandatory er_many_optional er_many_mandatory]" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
150
144
  <mxGeometry x="650" y="410" width="300" height="60" as="geometry"/>
151
145
  </mxCell>
152
- <mxCell id="lil-20" value="alter configure_shape so it sets the default shape key and use that for selecting the default HTML formatter" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_lil">
146
+ <mxCell id="VR9-20" value="refactor the shape-&gt;text_only (boolean) to category (symbol)" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
153
147
  <mxGeometry x="10" y="490" width="300" height="60" as="geometry"/>
154
148
  </mxCell>
155
- <mxCell id="lil-21" value="add todo shape to simplify project plan drawing" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_lil">
149
+ <mxCell id="VR9-21" value="ensure that ids are working as expected" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
156
150
  <mxGeometry x="330" y="490" width="300" height="60" as="geometry"/>
157
151
  </mxCell>
158
- <mxCell id="lil-22" value="introduce .value property to shape and let it use either formatted HTML or plain text title" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_lil">
152
+ <mxCell id="VR9-22" value="alter the initial parameter of all shapes so that it can be an ID, without named attribute" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
159
153
  <mxGeometry x="650" y="490" width="300" height="60" as="geometry"/>
160
154
  </mxCell>
161
- <mxCell id="lil-23" value="formatter DSL that can render HTML directly into the value property" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_lil">
155
+ <mxCell id="VR9-23" value="move project-plan files" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
162
156
  <mxGeometry x="10" y="570" width="300" height="60" as="geometry"/>
163
157
  </mxCell>
164
- <mxCell id="lil-24" value="formatter DSL for class and interface generation" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_lil">
158
+ <mxCell id="VR9-24" value="alter configure_shape so it sets the default shape key and use that for selecting the default HTML formatter" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
165
159
  <mxGeometry x="330" y="570" width="300" height="60" as="geometry"/>
166
160
  </mxCell>
167
- <mxCell id="lil-25" value="generate extension based graphics based on drawio extensions.js" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_lil">
161
+ <mxCell id="VR9-25" value="add todo shape to simplify project plan drawing" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
168
162
  <mxGeometry x="650" y="570" width="300" height="60" as="geometry"/>
169
163
  </mxCell>
170
- <mxCell id="lil-26" value="active? flag on page defaulting to true. set to false to exclude page from diagram." style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_lil">
164
+ <mxCell id="VR9-26" value="introduce .value property to shape and let it use either formatted HTML or plain text title" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
171
165
  <mxGeometry x="10" y="650" width="300" height="60" as="geometry"/>
172
166
  </mxCell>
173
- <mxCell id="lil-27" value="first level child nodes need to hang of node 1" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_lil">
167
+ <mxCell id="VR9-27" value="formatter DSL that can render HTML directly into the value property" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
174
168
  <mxGeometry x="330" y="650" width="300" height="60" as="geometry"/>
175
169
  </mxCell>
176
- <mxCell id="lil-28" value="node has child nodes and add_node will set a nodes parent" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_lil">
170
+ <mxCell id="VR9-28" value="formatter DSL for class and interface generation" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
177
171
  <mxGeometry x="650" y="650" width="300" height="60" as="geometry"/>
178
172
  </mxCell>
179
- <mxCell id="lil-29" value="nodes can belong to a parent node, the top level node responds with truthy to root?" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_lil">
173
+ <mxCell id="VR9-29" value="generate extension based graphics based on drawio extensions.js" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
180
174
  <mxGeometry x="10" y="730" width="300" height="60" as="geometry"/>
181
175
  </mxCell>
182
- <mxCell id="lil-30" value="add sample diagram for the github readme file" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_lil">
176
+ <mxCell id="VR9-30" value="active? flag on page defaulting to true. set to false to exclude page from diagram." style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
183
177
  <mxGeometry x="330" y="730" width="300" height="60" as="geometry"/>
184
178
  </mxCell>
185
- <mxCell id="lil-31" value="write samples into docs folder and display in readme" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_lil">
179
+ <mxCell id="VR9-31" value="first level child nodes need to hang of node 1" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
186
180
  <mxGeometry x="650" y="730" width="300" height="60" as="geometry"/>
187
181
  </mxCell>
188
- <mxCell id="lil-32" value="add export as .PNG, needs to take a page number as the PNG will not support multiple pages" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_lil">
182
+ <mxCell id="VR9-32" value="node has child nodes and add_node will set a nodes parent" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
189
183
  <mxGeometry x="10" y="810" width="300" height="60" as="geometry"/>
190
184
  </mxCell>
191
- <mxCell id="lil-33" value="add export as .SVG, needs to take a page number as the SVG will not support multiple pages" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_lil">
185
+ <mxCell id="VR9-33" value="nodes can belong to a parent node, the top level node responds with truthy to root?" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
192
186
  <mxGeometry x="330" y="810" width="300" height="60" as="geometry"/>
193
187
  </mxCell>
194
- <mxCell id="lil-34" value="add save as .drawio" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_lil">
188
+ <mxCell id="VR9-34" value="add sample diagram for the github readme file" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
195
189
  <mxGeometry x="650" y="810" width="300" height="60" as="geometry"/>
196
190
  </mxCell>
191
+ <mxCell id="VR9-35" value="write samples into docs folder and display in readme" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
192
+ <mxGeometry x="10" y="890" width="300" height="60" as="geometry"/>
193
+ </mxCell>
194
+ <mxCell id="VR9-36" value="add export as .PNG, needs to take a page number as the PNG will not support multiple pages" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
195
+ <mxGeometry x="330" y="890" width="300" height="60" as="geometry"/>
196
+ </mxCell>
197
+ <mxCell id="VR9-37" value="add export as .SVG, needs to take a page number as the SVG will not support multiple pages" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
198
+ <mxGeometry x="650" y="890" width="300" height="60" as="geometry"/>
199
+ </mxCell>
200
+ <mxCell id="VR9-38" value="add save as .drawio" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
201
+ <mxGeometry x="10" y="970" width="300" height="60" as="geometry"/>
202
+ </mxCell>
197
203
  </root>
198
204
  </mxGraphModel>
199
205
  </diagram>