drawio_dsl 0.11.2 → 0.11.3
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/config/configuration.json +238 -44
- data/docs/domain_model.drawio +89 -89
- data/docs/domain_model.json +267 -267
- data/docs/printspeak-architecture-controllers-custom.drawio +9 -9
- data/docs/printspeak-architecture-controllers.drawio +47 -47
- data/docs/printspeak-architecture-generator-custom.drawio +16 -10
- data/docs/printspeak-architecture-generator.drawio +268 -0
- data/docs/project-plan/project.drawio +89 -80
- data/docs/project-plan/project_done.svg +1 -1
- data/docs/project-plan/project_in_progress.svg +1 -1
- data/docs/project-plan/project_todo.svg +1 -1
- data/docs/tailwind_domain_model-custom.drawio +104 -0
- data/docs/tailwind_domain_model.json +288 -0
- data/docs/tailwind_domain_model.svg +3 -0
- data/lib/drawio_dsl/dom_builder_shapes.rb +60 -0
- data/lib/drawio_dsl/drawio_shapes.rb +103 -43
- data/lib/drawio_dsl/schema/_.rb +10 -0
- data/lib/drawio_dsl/schema/line.rb +16 -2
- data/lib/drawio_dsl/schema/lines/dash_dot.rb +9 -0
- data/lib/drawio_dsl/schema/lines/dash_dot_dot.rb +9 -0
- data/lib/drawio_dsl/schema/lines/dash_long_dash.rb +9 -0
- data/lib/drawio_dsl/schema/lines/dashed.rb +9 -0
- data/lib/drawio_dsl/schema/lines/dashed24.rb +9 -0
- data/lib/drawio_dsl/schema/lines/dashed32.rb +9 -0
- data/lib/drawio_dsl/schema/lines/dashed44.rb +9 -0
- data/lib/drawio_dsl/schema/lines/dot_dot_dot.rb +9 -0
- data/lib/drawio_dsl/schema/lines/dotted.rb +9 -0
- data/lib/drawio_dsl/schema/lines/long_dash.rb +9 -0
- data/lib/drawio_dsl/schema/shape.rb +5 -0
- data/lib/drawio_dsl/version.rb +1 -1
- data/package-lock.json +2 -2
- data/package.json +1 -1
- metadata +16 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dac4173b04b8e13bb159208fc676f52b71f1f782a9505fdde646253e612047de
|
|
4
|
+
data.tar.gz: 5315bbf02ea59ba74595a5d4ccae35f1309e3fe7419759263ee1819847e3f7e6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 28fa31f4011532a2277a0c73b1512d7b8db85750f952e5707306f21c2dfddde52252fcf10a20044e17432ca3a5dca912ce3445f50fa821db3c7acfd83ada29ea
|
|
7
|
+
data.tar.gz: 5eb58c9ac1facdfdba7a7fc325183a740be024169b07fe7e6c530cd2f1e02b4af972b599b321c6133068dbf15d145455d29d4847cea015b3f4b8a16d38853da3
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [0.11.2](https://github.com/klueless-io/drawio_dsl/compare/v0.11.1...v0.11.2) (2022-03-26)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* refactor the default shape code for dealing with base classes shape, line, text ([058b06a](https://github.com/klueless-io/drawio_dsl/commit/058b06a25f9d6a13c1ccb45957e7def9841be349))
|
|
7
|
+
|
|
1
8
|
## [0.11.1](https://github.com/klueless-io/drawio_dsl/compare/v0.11.0...v0.11.1) (2022-03-25)
|
|
2
9
|
|
|
3
10
|
|
data/config/configuration.json
CHANGED
|
@@ -5,6 +5,46 @@
|
|
|
5
5
|
"key": "solid",
|
|
6
6
|
"category": "line"
|
|
7
7
|
},
|
|
8
|
+
{
|
|
9
|
+
"key": "dashed",
|
|
10
|
+
"category": "line"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"key": "dotted",
|
|
14
|
+
"category": "line"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"key": "dash_dot",
|
|
18
|
+
"category": "line"
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"key": "dash_dot_dot",
|
|
22
|
+
"category": "line"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"key": "dot_dot_dot",
|
|
26
|
+
"category": "line"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"key": "long_dash",
|
|
30
|
+
"category": "line"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"key": "dash_long_dash",
|
|
34
|
+
"category": "line"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"key": "dashed24",
|
|
38
|
+
"category": "line"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"key": "dashed32",
|
|
42
|
+
"category": "line"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"key": "dashed44",
|
|
46
|
+
"category": "line"
|
|
47
|
+
},
|
|
8
48
|
{
|
|
9
49
|
"key": "h1",
|
|
10
50
|
"category": "text"
|
|
@@ -186,7 +226,8 @@
|
|
|
186
226
|
"y": 0,
|
|
187
227
|
"w": 40,
|
|
188
228
|
"h": 50,
|
|
189
|
-
"style_modifiers": "shape=actor"
|
|
229
|
+
"style_modifiers": "shape=actor",
|
|
230
|
+
"strokes": null
|
|
190
231
|
},
|
|
191
232
|
{
|
|
192
233
|
"category": "element",
|
|
@@ -195,7 +236,8 @@
|
|
|
195
236
|
"y": 0,
|
|
196
237
|
"w": 30,
|
|
197
238
|
"h": 50,
|
|
198
|
-
"style_modifiers": "shape=umlActor;verticalLabelPosition=bottom;outlineConnect=1"
|
|
239
|
+
"style_modifiers": "shape=umlActor;verticalLabelPosition=bottom;outlineConnect=1",
|
|
240
|
+
"strokes": null
|
|
199
241
|
},
|
|
200
242
|
{
|
|
201
243
|
"category": "element",
|
|
@@ -204,7 +246,8 @@
|
|
|
204
246
|
"y": 0,
|
|
205
247
|
"w": 160,
|
|
206
248
|
"h": 120,
|
|
207
|
-
"style_modifiers": "shape=callout"
|
|
249
|
+
"style_modifiers": "shape=callout",
|
|
250
|
+
"strokes": null
|
|
208
251
|
},
|
|
209
252
|
{
|
|
210
253
|
"category": "element",
|
|
@@ -213,7 +256,8 @@
|
|
|
213
256
|
"y": 0,
|
|
214
257
|
"w": 160,
|
|
215
258
|
"h": 160,
|
|
216
|
-
"style_modifiers": "shape=mxgraph.basic.oval_callout"
|
|
259
|
+
"style_modifiers": "shape=mxgraph.basic.oval_callout",
|
|
260
|
+
"strokes": null
|
|
217
261
|
},
|
|
218
262
|
{
|
|
219
263
|
"category": "element",
|
|
@@ -222,7 +266,8 @@
|
|
|
222
266
|
"y": 0,
|
|
223
267
|
"w": 160,
|
|
224
268
|
"h": 160,
|
|
225
|
-
"style_modifiers": "shape=mxgraph.basic.cloud_callout"
|
|
269
|
+
"style_modifiers": "shape=mxgraph.basic.cloud_callout",
|
|
270
|
+
"strokes": null
|
|
226
271
|
},
|
|
227
272
|
{
|
|
228
273
|
"category": "element",
|
|
@@ -231,7 +276,8 @@
|
|
|
231
276
|
"y": 0,
|
|
232
277
|
"w": 160,
|
|
233
278
|
"h": 120,
|
|
234
|
-
"style_modifiers": "shape=mxgraph.basic.roundRectCallout;dx=30;dy=15;size=5;boundedLbl=1;"
|
|
279
|
+
"style_modifiers": "shape=mxgraph.basic.roundRectCallout;dx=30;dy=15;size=5;boundedLbl=1;",
|
|
280
|
+
"strokes": null
|
|
235
281
|
},
|
|
236
282
|
{
|
|
237
283
|
"category": "element",
|
|
@@ -240,7 +286,8 @@
|
|
|
240
286
|
"y": 0,
|
|
241
287
|
"w": 160,
|
|
242
288
|
"h": 160,
|
|
243
|
-
"style_modifiers": "ellipse"
|
|
289
|
+
"style_modifiers": "ellipse",
|
|
290
|
+
"strokes": null
|
|
244
291
|
},
|
|
245
292
|
{
|
|
246
293
|
"category": "element",
|
|
@@ -249,7 +296,8 @@
|
|
|
249
296
|
"y": 0,
|
|
250
297
|
"w": 160,
|
|
251
298
|
"h": 160,
|
|
252
|
-
"style_modifiers": "shape=cloud"
|
|
299
|
+
"style_modifiers": "shape=cloud",
|
|
300
|
+
"strokes": null
|
|
253
301
|
},
|
|
254
302
|
{
|
|
255
303
|
"category": "element",
|
|
@@ -258,7 +306,8 @@
|
|
|
258
306
|
"y": 0,
|
|
259
307
|
"w": 160,
|
|
260
308
|
"h": 160,
|
|
261
|
-
"style_modifiers": "swimlane"
|
|
309
|
+
"style_modifiers": "swimlane",
|
|
310
|
+
"strokes": null
|
|
262
311
|
},
|
|
263
312
|
{
|
|
264
313
|
"category": "element",
|
|
@@ -267,7 +316,8 @@
|
|
|
267
316
|
"y": 0,
|
|
268
317
|
"w": 160,
|
|
269
318
|
"h": 160,
|
|
270
|
-
"style_modifiers": "swimlane;horizontal=0"
|
|
319
|
+
"style_modifiers": "swimlane;horizontal=0",
|
|
320
|
+
"strokes": null
|
|
271
321
|
},
|
|
272
322
|
{
|
|
273
323
|
"category": "element",
|
|
@@ -276,7 +326,8 @@
|
|
|
276
326
|
"y": 0,
|
|
277
327
|
"w": 160,
|
|
278
328
|
"h": 160,
|
|
279
|
-
"style_modifiers": "swimlane;startSize=50"
|
|
329
|
+
"style_modifiers": "swimlane;startSize=50",
|
|
330
|
+
"strokes": null
|
|
280
331
|
},
|
|
281
332
|
{
|
|
282
333
|
"category": "element",
|
|
@@ -285,7 +336,8 @@
|
|
|
285
336
|
"y": 0,
|
|
286
337
|
"w": 160,
|
|
287
338
|
"h": 160,
|
|
288
|
-
"style_modifiers": "swimlane;resizable=0"
|
|
339
|
+
"style_modifiers": "swimlane;resizable=0",
|
|
340
|
+
"strokes": null
|
|
289
341
|
},
|
|
290
342
|
{
|
|
291
343
|
"category": "element",
|
|
@@ -294,7 +346,8 @@
|
|
|
294
346
|
"y": 0,
|
|
295
347
|
"w": 50,
|
|
296
348
|
"h": 50,
|
|
297
|
-
"style_modifiers": "verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.basic.x"
|
|
349
|
+
"style_modifiers": "verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.basic.x",
|
|
350
|
+
"strokes": null
|
|
298
351
|
},
|
|
299
352
|
{
|
|
300
353
|
"category": "element",
|
|
@@ -303,7 +356,8 @@
|
|
|
303
356
|
"y": 0,
|
|
304
357
|
"w": 160,
|
|
305
358
|
"h": 100,
|
|
306
|
-
"style_modifiers": "shape=message"
|
|
359
|
+
"style_modifiers": "shape=message",
|
|
360
|
+
"strokes": null
|
|
307
361
|
},
|
|
308
362
|
{
|
|
309
363
|
"category": "element",
|
|
@@ -312,7 +366,8 @@
|
|
|
312
366
|
"y": 0,
|
|
313
367
|
"w": 160,
|
|
314
368
|
"h": 80,
|
|
315
|
-
"style_modifiers": "shape=mxgraph.flowchart.database;strokeWidth=1"
|
|
369
|
+
"style_modifiers": "shape=mxgraph.flowchart.database;strokeWidth=1",
|
|
370
|
+
"strokes": null
|
|
316
371
|
},
|
|
317
372
|
{
|
|
318
373
|
"category": "element",
|
|
@@ -321,7 +376,8 @@
|
|
|
321
376
|
"y": 0,
|
|
322
377
|
"w": 160,
|
|
323
378
|
"h": 40,
|
|
324
|
-
"style_modifiers": "shape=mxgraph.flowchart.database;strokeWidth=1"
|
|
379
|
+
"style_modifiers": "shape=mxgraph.flowchart.database;strokeWidth=1",
|
|
380
|
+
"strokes": null
|
|
325
381
|
},
|
|
326
382
|
{
|
|
327
383
|
"category": "element",
|
|
@@ -330,7 +386,8 @@
|
|
|
330
386
|
"y": 0,
|
|
331
387
|
"w": 100,
|
|
332
388
|
"h": 100,
|
|
333
|
-
"style_modifiers": "rhombus"
|
|
389
|
+
"style_modifiers": "rhombus",
|
|
390
|
+
"strokes": null
|
|
334
391
|
},
|
|
335
392
|
{
|
|
336
393
|
"category": "element",
|
|
@@ -339,7 +396,8 @@
|
|
|
339
396
|
"y": 0,
|
|
340
397
|
"w": 160,
|
|
341
398
|
"h": 160,
|
|
342
|
-
"style_modifiers": "shape=mxgraph.basic.document"
|
|
399
|
+
"style_modifiers": "shape=mxgraph.basic.document",
|
|
400
|
+
"strokes": null
|
|
343
401
|
},
|
|
344
402
|
{
|
|
345
403
|
"category": "element",
|
|
@@ -348,7 +406,8 @@
|
|
|
348
406
|
"y": 0,
|
|
349
407
|
"w": 200,
|
|
350
408
|
"h": 120,
|
|
351
|
-
"style_modifiers": "ellipse"
|
|
409
|
+
"style_modifiers": "ellipse",
|
|
410
|
+
"strokes": null
|
|
352
411
|
},
|
|
353
412
|
{
|
|
354
413
|
"category": "element",
|
|
@@ -357,7 +416,8 @@
|
|
|
357
416
|
"y": 0,
|
|
358
417
|
"w": 210,
|
|
359
418
|
"h": 210,
|
|
360
|
-
"style_modifiers": "fontSize=20;verticalAlign=top"
|
|
419
|
+
"style_modifiers": "fontSize=20;verticalAlign=top",
|
|
420
|
+
"strokes": null
|
|
361
421
|
},
|
|
362
422
|
{
|
|
363
423
|
"category": "element",
|
|
@@ -366,7 +426,8 @@
|
|
|
366
426
|
"y": 0,
|
|
367
427
|
"w": 200,
|
|
368
428
|
"h": 120,
|
|
369
|
-
"style_modifiers": "shape=hexagon"
|
|
429
|
+
"style_modifiers": "shape=hexagon",
|
|
430
|
+
"strokes": null
|
|
370
431
|
},
|
|
371
432
|
{
|
|
372
433
|
"category": "element",
|
|
@@ -375,7 +436,8 @@
|
|
|
375
436
|
"y": 0,
|
|
376
437
|
"w": 160,
|
|
377
438
|
"h": 160,
|
|
378
|
-
"style_modifiers": "align=left;overflow=fill;fontSize=12;fontFamily=Helvetica"
|
|
439
|
+
"style_modifiers": "align=left;overflow=fill;fontSize=12;fontFamily=Helvetica",
|
|
440
|
+
"strokes": null
|
|
379
441
|
},
|
|
380
442
|
{
|
|
381
443
|
"category": "element",
|
|
@@ -384,7 +446,8 @@
|
|
|
384
446
|
"y": 0,
|
|
385
447
|
"w": 160,
|
|
386
448
|
"h": 160,
|
|
387
|
-
"style_modifiers": "align=left;overflow=fill;fontSize=12;fontFamily=Helvetica"
|
|
449
|
+
"style_modifiers": "align=left;overflow=fill;fontSize=12;fontFamily=Helvetica",
|
|
450
|
+
"strokes": null
|
|
388
451
|
},
|
|
389
452
|
{
|
|
390
453
|
"category": "element",
|
|
@@ -393,7 +456,8 @@
|
|
|
393
456
|
"y": 0,
|
|
394
457
|
"w": 160,
|
|
395
458
|
"h": 160,
|
|
396
|
-
"style_modifiers": "shape=note"
|
|
459
|
+
"style_modifiers": "shape=note",
|
|
460
|
+
"strokes": null
|
|
397
461
|
},
|
|
398
462
|
{
|
|
399
463
|
"category": "element",
|
|
@@ -402,7 +466,8 @@
|
|
|
402
466
|
"y": 0,
|
|
403
467
|
"w": 200,
|
|
404
468
|
"h": 120,
|
|
405
|
-
"style_modifiers": "shape=process"
|
|
469
|
+
"style_modifiers": "shape=process",
|
|
470
|
+
"strokes": null
|
|
406
471
|
},
|
|
407
472
|
{
|
|
408
473
|
"category": "element",
|
|
@@ -411,7 +476,8 @@
|
|
|
411
476
|
"y": 0,
|
|
412
477
|
"w": 200,
|
|
413
478
|
"h": 120,
|
|
414
|
-
"style_modifiers": ""
|
|
479
|
+
"style_modifiers": "",
|
|
480
|
+
"strokes": null
|
|
415
481
|
},
|
|
416
482
|
{
|
|
417
483
|
"category": "element",
|
|
@@ -420,7 +486,8 @@
|
|
|
420
486
|
"y": 0,
|
|
421
487
|
"w": 200,
|
|
422
488
|
"h": 120,
|
|
423
|
-
"style_modifiers": "shape=mxgraph.basic.cloud_rect"
|
|
489
|
+
"style_modifiers": "shape=mxgraph.basic.cloud_rect",
|
|
490
|
+
"strokes": null
|
|
424
491
|
},
|
|
425
492
|
{
|
|
426
493
|
"category": "element",
|
|
@@ -429,7 +496,8 @@
|
|
|
429
496
|
"y": 0,
|
|
430
497
|
"w": 160,
|
|
431
498
|
"h": 160,
|
|
432
|
-
"style_modifiers": ""
|
|
499
|
+
"style_modifiers": "",
|
|
500
|
+
"strokes": null
|
|
433
501
|
},
|
|
434
502
|
{
|
|
435
503
|
"category": "element",
|
|
@@ -438,7 +506,8 @@
|
|
|
438
506
|
"y": 0,
|
|
439
507
|
"w": 120,
|
|
440
508
|
"h": 80,
|
|
441
|
-
"style_modifiers": "shape=step;perimeter=stepPerimeter;fixedSize=1"
|
|
509
|
+
"style_modifiers": "shape=step;perimeter=stepPerimeter;fixedSize=1",
|
|
510
|
+
"strokes": null
|
|
442
511
|
},
|
|
443
512
|
{
|
|
444
513
|
"category": "element",
|
|
@@ -447,7 +516,8 @@
|
|
|
447
516
|
"y": 0,
|
|
448
517
|
"w": 50,
|
|
449
518
|
"h": 50,
|
|
450
|
-
"style_modifiers": "verticalLabelPosition=bottom;verticalAlign=top;shape=mxgraph.basic.tick"
|
|
519
|
+
"style_modifiers": "verticalLabelPosition=bottom;verticalAlign=top;shape=mxgraph.basic.tick",
|
|
520
|
+
"strokes": null
|
|
451
521
|
},
|
|
452
522
|
{
|
|
453
523
|
"category": "element",
|
|
@@ -456,7 +526,8 @@
|
|
|
456
526
|
"y": 0,
|
|
457
527
|
"w": 300,
|
|
458
528
|
"h": 60,
|
|
459
|
-
"style_modifiers": ""
|
|
529
|
+
"style_modifiers": "",
|
|
530
|
+
"strokes": null
|
|
460
531
|
},
|
|
461
532
|
{
|
|
462
533
|
"category": "element",
|
|
@@ -465,7 +536,8 @@
|
|
|
465
536
|
"y": 0,
|
|
466
537
|
"w": 100,
|
|
467
538
|
"h": 100,
|
|
468
|
-
"style_modifiers": "verticalLabelPosition=bottom;verticalAlign=top;shape=mxgraph.basic.smiley"
|
|
539
|
+
"style_modifiers": "verticalLabelPosition=bottom;verticalAlign=top;shape=mxgraph.basic.smiley",
|
|
540
|
+
"strokes": null
|
|
469
541
|
},
|
|
470
542
|
{
|
|
471
543
|
"category": "element",
|
|
@@ -474,7 +546,8 @@
|
|
|
474
546
|
"y": 0,
|
|
475
547
|
"w": 100,
|
|
476
548
|
"h": 100,
|
|
477
|
-
"style_modifiers": "triangle"
|
|
549
|
+
"style_modifiers": "triangle",
|
|
550
|
+
"strokes": null
|
|
478
551
|
},
|
|
479
552
|
{
|
|
480
553
|
"category": "element",
|
|
@@ -483,7 +556,8 @@
|
|
|
483
556
|
"y": 0,
|
|
484
557
|
"w": 200,
|
|
485
558
|
"h": 40,
|
|
486
|
-
"style_modifiers": "shape=partialRectangle;collapsible=0;dropTarget=0;pointerEvents=0;top=0;left=0;bottom=1;right=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest"
|
|
559
|
+
"style_modifiers": "shape=partialRectangle;collapsible=0;dropTarget=0;pointerEvents=0;top=0;left=0;bottom=1;right=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest",
|
|
560
|
+
"strokes": null
|
|
487
561
|
},
|
|
488
562
|
{
|
|
489
563
|
"category": "element",
|
|
@@ -492,7 +566,8 @@
|
|
|
492
566
|
"y": 0,
|
|
493
567
|
"w": 50,
|
|
494
568
|
"h": 40,
|
|
495
|
-
"style_modifiers": "shape=partialRectangle;connectable=0;top=0;left=0;bottom=0;right=0;fontStyle=1;overflow=hidden"
|
|
569
|
+
"style_modifiers": "shape=partialRectangle;connectable=0;top=0;left=0;bottom=0;right=0;fontStyle=1;overflow=hidden",
|
|
570
|
+
"strokes": null
|
|
496
571
|
},
|
|
497
572
|
{
|
|
498
573
|
"category": "element",
|
|
@@ -501,7 +576,8 @@
|
|
|
501
576
|
"y": 0,
|
|
502
577
|
"w": 150,
|
|
503
578
|
"h": 40,
|
|
504
|
-
"style_modifiers": "shape=partialRectangle;connectable=0;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden"
|
|
579
|
+
"style_modifiers": "shape=partialRectangle;connectable=0;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden",
|
|
580
|
+
"strokes": null
|
|
505
581
|
}
|
|
506
582
|
],
|
|
507
583
|
"lines": [
|
|
@@ -512,7 +588,118 @@
|
|
|
512
588
|
"y": 0,
|
|
513
589
|
"w": 50,
|
|
514
590
|
"h": 50,
|
|
515
|
-
"style_modifiers": "edgeStyle=none;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0"
|
|
591
|
+
"style_modifiers": "edgeStyle=none;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0",
|
|
592
|
+
"strokes": null
|
|
593
|
+
},
|
|
594
|
+
{
|
|
595
|
+
"category": "line",
|
|
596
|
+
"key": "dashed",
|
|
597
|
+
"x": 0,
|
|
598
|
+
"y": 0,
|
|
599
|
+
"w": 50,
|
|
600
|
+
"h": 50,
|
|
601
|
+
"style_modifiers": "edgeStyle=none;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0",
|
|
602
|
+
"strokes": null,
|
|
603
|
+
"stroke": "dashed"
|
|
604
|
+
},
|
|
605
|
+
{
|
|
606
|
+
"category": "line",
|
|
607
|
+
"key": "dotted",
|
|
608
|
+
"x": 0,
|
|
609
|
+
"y": 0,
|
|
610
|
+
"w": 50,
|
|
611
|
+
"h": 50,
|
|
612
|
+
"style_modifiers": "edgeStyle=none;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0",
|
|
613
|
+
"strokes": null,
|
|
614
|
+
"stroke": "dotted"
|
|
615
|
+
},
|
|
616
|
+
{
|
|
617
|
+
"category": "line",
|
|
618
|
+
"key": "dash_dot",
|
|
619
|
+
"x": 0,
|
|
620
|
+
"y": 0,
|
|
621
|
+
"w": 50,
|
|
622
|
+
"h": 50,
|
|
623
|
+
"style_modifiers": "edgeStyle=none;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0",
|
|
624
|
+
"strokes": null,
|
|
625
|
+
"stroke": "dash_dot"
|
|
626
|
+
},
|
|
627
|
+
{
|
|
628
|
+
"category": "line",
|
|
629
|
+
"key": "dash_dot_dot",
|
|
630
|
+
"x": 0,
|
|
631
|
+
"y": 0,
|
|
632
|
+
"w": 50,
|
|
633
|
+
"h": 50,
|
|
634
|
+
"style_modifiers": "edgeStyle=none;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0",
|
|
635
|
+
"strokes": null,
|
|
636
|
+
"stroke": "dash_dot_dot"
|
|
637
|
+
},
|
|
638
|
+
{
|
|
639
|
+
"category": "line",
|
|
640
|
+
"key": "dot_dot_dot",
|
|
641
|
+
"x": 0,
|
|
642
|
+
"y": 0,
|
|
643
|
+
"w": 50,
|
|
644
|
+
"h": 50,
|
|
645
|
+
"style_modifiers": "edgeStyle=none;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0",
|
|
646
|
+
"strokes": null,
|
|
647
|
+
"stroke": "dot_dot_dot"
|
|
648
|
+
},
|
|
649
|
+
{
|
|
650
|
+
"category": "line",
|
|
651
|
+
"key": "long_dash",
|
|
652
|
+
"x": 0,
|
|
653
|
+
"y": 0,
|
|
654
|
+
"w": 50,
|
|
655
|
+
"h": 50,
|
|
656
|
+
"style_modifiers": "edgeStyle=none;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0",
|
|
657
|
+
"strokes": null,
|
|
658
|
+
"stroke": "long_dash"
|
|
659
|
+
},
|
|
660
|
+
{
|
|
661
|
+
"category": "line",
|
|
662
|
+
"key": "dash_long_dash",
|
|
663
|
+
"x": 0,
|
|
664
|
+
"y": 0,
|
|
665
|
+
"w": 50,
|
|
666
|
+
"h": 50,
|
|
667
|
+
"style_modifiers": "edgeStyle=none;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0",
|
|
668
|
+
"strokes": null,
|
|
669
|
+
"stroke": "dash_long_dash"
|
|
670
|
+
},
|
|
671
|
+
{
|
|
672
|
+
"category": "line",
|
|
673
|
+
"key": "dashed24",
|
|
674
|
+
"x": 0,
|
|
675
|
+
"y": 0,
|
|
676
|
+
"w": 50,
|
|
677
|
+
"h": 50,
|
|
678
|
+
"style_modifiers": "edgeStyle=none;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0",
|
|
679
|
+
"strokes": null,
|
|
680
|
+
"stroke": "dashed24"
|
|
681
|
+
},
|
|
682
|
+
{
|
|
683
|
+
"category": "line",
|
|
684
|
+
"key": "dashed32",
|
|
685
|
+
"x": 0,
|
|
686
|
+
"y": 0,
|
|
687
|
+
"w": 50,
|
|
688
|
+
"h": 50,
|
|
689
|
+
"style_modifiers": "edgeStyle=none;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0",
|
|
690
|
+
"strokes": null,
|
|
691
|
+
"stroke": "dashed32"
|
|
692
|
+
},
|
|
693
|
+
{
|
|
694
|
+
"category": "line",
|
|
695
|
+
"key": "dashed44",
|
|
696
|
+
"x": 0,
|
|
697
|
+
"y": 0,
|
|
698
|
+
"w": 50,
|
|
699
|
+
"h": 50,
|
|
700
|
+
"style_modifiers": "edgeStyle=none;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0",
|
|
701
|
+
"strokes": null,
|
|
702
|
+
"stroke": "dashed44"
|
|
516
703
|
}
|
|
517
704
|
],
|
|
518
705
|
"texts": [
|
|
@@ -523,7 +710,8 @@
|
|
|
523
710
|
"y": 0,
|
|
524
711
|
"w": 100,
|
|
525
712
|
"h": 50,
|
|
526
|
-
"style_modifiers": "text;fontSize=89;fontStyle=1;fillColor=none"
|
|
713
|
+
"style_modifiers": "text;fontSize=89;fontStyle=1;fillColor=none",
|
|
714
|
+
"strokes": null
|
|
527
715
|
},
|
|
528
716
|
{
|
|
529
717
|
"category": "text",
|
|
@@ -532,7 +720,8 @@
|
|
|
532
720
|
"y": 0,
|
|
533
721
|
"w": 100,
|
|
534
722
|
"h": 50,
|
|
535
|
-
"style_modifiers": "text;fontSize=67;fontStyle=1;fillColor=none"
|
|
723
|
+
"style_modifiers": "text;fontSize=67;fontStyle=1;fillColor=none",
|
|
724
|
+
"strokes": null
|
|
536
725
|
},
|
|
537
726
|
{
|
|
538
727
|
"category": "text",
|
|
@@ -541,7 +730,8 @@
|
|
|
541
730
|
"y": 0,
|
|
542
731
|
"w": 100,
|
|
543
732
|
"h": 50,
|
|
544
|
-
"style_modifiers": "text;fontSize=50;fontStyle=1;fillColor=none"
|
|
733
|
+
"style_modifiers": "text;fontSize=50;fontStyle=1;fillColor=none",
|
|
734
|
+
"strokes": null
|
|
545
735
|
},
|
|
546
736
|
{
|
|
547
737
|
"category": "text",
|
|
@@ -550,7 +740,8 @@
|
|
|
550
740
|
"y": 0,
|
|
551
741
|
"w": 100,
|
|
552
742
|
"h": 50,
|
|
553
|
-
"style_modifiers": "text;fontSize=37;fontStyle=1;fillColor=none"
|
|
743
|
+
"style_modifiers": "text;fontSize=37;fontStyle=1;fillColor=none",
|
|
744
|
+
"strokes": null
|
|
554
745
|
},
|
|
555
746
|
{
|
|
556
747
|
"category": "text",
|
|
@@ -559,7 +750,8 @@
|
|
|
559
750
|
"y": 0,
|
|
560
751
|
"w": 100,
|
|
561
752
|
"h": 50,
|
|
562
|
-
"style_modifiers": "text;fontSize=28;fontStyle=1;fillColor=none"
|
|
753
|
+
"style_modifiers": "text;fontSize=28;fontStyle=1;fillColor=none",
|
|
754
|
+
"strokes": null
|
|
563
755
|
},
|
|
564
756
|
{
|
|
565
757
|
"category": "text",
|
|
@@ -568,7 +760,8 @@
|
|
|
568
760
|
"y": 0,
|
|
569
761
|
"w": 100,
|
|
570
762
|
"h": 50,
|
|
571
|
-
"style_modifiers": "text;fontSize=21;fontStyle=1;fillColor=none"
|
|
763
|
+
"style_modifiers": "text;fontSize=21;fontStyle=1;fillColor=none",
|
|
764
|
+
"strokes": null
|
|
572
765
|
},
|
|
573
766
|
{
|
|
574
767
|
"category": "text",
|
|
@@ -577,7 +770,8 @@
|
|
|
577
770
|
"y": 0,
|
|
578
771
|
"w": 100,
|
|
579
772
|
"h": 50,
|
|
580
|
-
"style_modifiers": "text;fontSize=16;fontStyle=1;fillColor=none"
|
|
773
|
+
"style_modifiers": "text;fontSize=16;fontStyle=1;fillColor=none",
|
|
774
|
+
"strokes": null
|
|
581
775
|
}
|
|
582
776
|
]
|
|
583
777
|
},
|