ialdev-core 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (48) hide show
  1. iad/core/__init__.py +9 -0
  2. iad/core/array.py +1961 -0
  3. iad/core/binary.py +377 -0
  4. iad/core/cache.py +903 -0
  5. iad/core/codetools.py +203 -0
  6. iad/core/datatools.py +671 -0
  7. iad/core/docs/locators.ipynb +754 -0
  8. iad/core/dotstyle.py +99 -0
  9. iad/core/env.py +271 -0
  10. iad/core/events.py +650 -0
  11. iad/core/filesproc.py +1046 -0
  12. iad/core/fnctools.py +390 -0
  13. iad/core/label.py +240 -0
  14. iad/core/logs.py +182 -0
  15. iad/core/nptools.py +449 -0
  16. iad/core/one_dark.puml +881 -0
  17. iad/core/param/__init__.py +17 -0
  18. iad/core/param/confargparse.py +55 -0
  19. iad/core/param/paramaze.py +339 -0
  20. iad/core/param/tbox.py +277 -0
  21. iad/core/paths.py +563 -0
  22. iad/core/pdtools.py +2570 -0
  23. iad/core/pydantools/__init__.py +5 -0
  24. iad/core/pydantools/fixed_pydantic_yaml/__init__.py +32 -0
  25. iad/core/pydantools/fixed_pydantic_yaml/compat/__init__.py +0 -0
  26. iad/core/pydantools/fixed_pydantic_yaml/compat/hacks.py +76 -0
  27. iad/core/pydantools/fixed_pydantic_yaml/compat/old_enums.py +37 -0
  28. iad/core/pydantools/fixed_pydantic_yaml/compat/representers.py +92 -0
  29. iad/core/pydantools/fixed_pydantic_yaml/compat/types.py +122 -0
  30. iad/core/pydantools/fixed_pydantic_yaml/compat/yaml_lib.py +104 -0
  31. iad/core/pydantools/fixed_pydantic_yaml/ext/__init__.py +1 -0
  32. iad/core/pydantools/fixed_pydantic_yaml/ext/semver.py +152 -0
  33. iad/core/pydantools/fixed_pydantic_yaml/ext/versioned_model.py +113 -0
  34. iad/core/pydantools/fixed_pydantic_yaml/main.py +30 -0
  35. iad/core/pydantools/fixed_pydantic_yaml/mixin.py +281 -0
  36. iad/core/pydantools/fixed_pydantic_yaml/model.py +20 -0
  37. iad/core/pydantools/fixed_pydantic_yaml/py.typed +1 -0
  38. iad/core/pydantools/fixed_pydantic_yaml/version.py +1 -0
  39. iad/core/pydantools/models.py +560 -0
  40. iad/core/regexp.py +348 -0
  41. iad/core/short.py +308 -0
  42. iad/core/strings.py +635 -0
  43. iad/core/unc_panda.py +270 -0
  44. iad/core/units.py +58 -0
  45. iad/core/wrap.py +420 -0
  46. ialdev_core-0.1.0.dist-info/METADATA +73 -0
  47. ialdev_core-0.1.0.dist-info/RECORD +48 -0
  48. ialdev_core-0.1.0.dist-info/WHEEL +4 -0
iad/core/one_dark.puml ADDED
@@ -0,0 +1,881 @@
1
+ @startuml
2
+
3
+ '
4
+ ' One Dark theme
5
+ '
6
+
7
+ '
8
+ ' Colors
9
+ '
10
+ ' Foreground
11
+ !$color_bg = "#282c34"
12
+ !$color_bg_light = "#424856"
13
+
14
+ ' Background
15
+ !$color_fg = "#abb2bf"
16
+
17
+ !$color_red = "#e06c75"
18
+ !$color_green = "#98c379"
19
+ !$color_yellow = "#e5c07b"
20
+ !$color_blue = "#61afef"
21
+ !$color_purple = "#c678dd"
22
+ !$color_teal = "#56b6c2"
23
+
24
+ skinparam backgroundColor $color_bg
25
+
26
+ skinparam {
27
+ '
28
+ ' Activity
29
+ '
30
+ ActivityBackgroundColor $color_bg_light
31
+ ActivityBarColor $color_fg
32
+ ActivityBorderColor $color_blue
33
+ ' ActivityBorderThickness
34
+ ActivityDiamondBackgroundColor $color_bg_light
35
+ ActivityDiamondBorderColor $color_blue
36
+ ' ActivityDiamondFontColor
37
+ ' ActivityDiamondFontName
38
+ ' ActivityDiamondFontSize
39
+ ' ActivityDiamondFontStyle
40
+ ActivityEndColor $color_red
41
+ ' ActivityFontColor
42
+ ' ActivityFontName
43
+ ' ActivityFontSize
44
+ ' ActivityFontStyle
45
+ ActivityStartColor $color_green
46
+
47
+ '
48
+ ' Actor
49
+ '
50
+ ActorBackgroundColor $color_bg_light
51
+ ActorBorderColor $color_blue
52
+ ' ActorFontColor
53
+ ' ActorFontName
54
+ ' ActorFontSize
55
+ ' ActorFontStyle
56
+ ActorStereotypeFontColor $color_fg
57
+ ' ActorStereotypeFontName
58
+ ' ActorStereotypeFontSize
59
+ ' ActorStereotypeFontStyle
60
+
61
+ '
62
+ ' Agent
63
+ '
64
+ AgentBackgroundColor $color_bg_light
65
+ AgentBorderColor $color_fg
66
+ ' AgentBorderThickness
67
+ ' AgentFontColor
68
+ ' AgentFontName
69
+ ' AgentFontSize
70
+ ' AgentFontStyle
71
+ ' AgentStereotypeFontColor
72
+ ' AgentStereotypeFontName
73
+ ' AgentStereotypeFontSize
74
+ ' AgentStereotypeFontStyle
75
+
76
+ '
77
+ ' Archimate
78
+ '
79
+ ' ArchimateBackgroundColor
80
+ '
81
+ ' ArchimateBorderColor
82
+ '
83
+ ' ArchimateBorderThickness
84
+ ' ArchimateFontColor
85
+ '
86
+ ' ArchimateFontName
87
+ ' ArchimateFontSize
88
+ '
89
+ ' ArchimateFontStyle
90
+ '
91
+ ' ArchimateStereotypeFontColor
92
+ ' ArchimateStereotypeFontName
93
+ '
94
+ ' ArchimateStereotypeFontSize
95
+ ' ArchimateStereotypeFontStyle
96
+
97
+ '
98
+ ' Arrow
99
+ '
100
+ ArrowColor $color_blue
101
+ ' ArrowFontColor
102
+ ' ArrowFontName
103
+ ' ArrowFontSize
104
+ ' ArrowFontStyle
105
+ ' ArrowHeadColor
106
+ ' ArrowLollipopColor
107
+ ' ArrowMessageAlignment
108
+ ' ArrowThickness
109
+
110
+ '
111
+ ' Artifact
112
+ '
113
+ ArtifactBackgroundColor $color_bg_light
114
+ ArtifactBorderColor $color_fg
115
+ ' ArtifactFontColor
116
+ ' ArtifactFontName
117
+ ' ArtifactFontSize
118
+ ' ArtifactFontStyle
119
+ ' ArtifactStereotypeFontColor
120
+ ' ArtifactStereotypeFontName
121
+ ' ArtifactStereotypeFontSize
122
+ ' ArtifactStereotypeFontStyle
123
+
124
+ '
125
+ ' Background color
126
+ '
127
+ BackgroundColor $color_bg
128
+
129
+ '
130
+ ' Biddable (?)
131
+ '
132
+ ' BiddableBackgroundColor
133
+ ' BiddableBorderColor
134
+
135
+ '
136
+ ' Boundary
137
+ '
138
+ BoundaryBackgroundColor $color_bg_light
139
+ BoundaryBorderColor $color_blue
140
+ ' BoundaryFontColor
141
+ ' BoundaryFontName
142
+ ' BoundaryFontSize
143
+ ' BoundaryFontStyle
144
+ BoundaryStereotypeFontColor $color_fg
145
+ ' BoundaryStereotypeFontName
146
+ ' BoundaryStereotypeFontSize
147
+ ' BoundaryStereotypeFontStyle
148
+
149
+ '
150
+ ' Box padding
151
+ '
152
+ ' BoxPadding
153
+
154
+ '
155
+ ' Caption
156
+ '
157
+ CaptionFontColor $color_fg
158
+ ' CaptionFontName
159
+ ' CaptionFontSize
160
+ ' CaptionFontStyle
161
+
162
+ '
163
+ ' Card
164
+ '
165
+ CardBackgroundColor $color_bg_light
166
+ CardBorderColor $color_fg
167
+ ' CardBorderThickness
168
+ ' CardFontColor
169
+ ' CardFontName
170
+ ' CardFontSize
171
+ ' CardFontStyle
172
+ ' CardStereotypeFontColor
173
+ ' CardStereotypeFontName
174
+ ' CardStereotypeFontSize
175
+ ' CardStereotypeFontStyle
176
+
177
+ '
178
+ ' Circled character (in class header)
179
+ '
180
+ CircledCharacterFontColor $color_bg
181
+ ' CircledCharacterFontName
182
+ ' CircledCharacterFontSize
183
+ ' CircledCharacterFontStyle
184
+ ' CircledCharacterRadius
185
+
186
+ '
187
+ ' Class attribute
188
+ '
189
+ ' ClassAttributeFontColor
190
+ ' ClassAttributeFontName
191
+ ' ClassAttributeFontSize
192
+ ' ClassAttributeFontStyle
193
+ ' ClassAttributeIconSize
194
+
195
+ '
196
+ ' Class
197
+ '
198
+ ClassBackgroundColor $color_bg_light
199
+ ClassBorderColor $color_fg
200
+ ' ClassBorderThickness
201
+ ' ClassFontColor
202
+ ' ClassFontName
203
+ ' ClassFontSize
204
+ ' ClassFontStyle
205
+
206
+ '
207
+ ' Class header
208
+ '
209
+ ' ClassHeaderBackgroundColor
210
+
211
+ '
212
+ ' Class stereotype
213
+ '
214
+ ' ClassStereotypeFontColor
215
+ ' ClassStereotypeFontName
216
+ ' ClassStereotypeFontSize
217
+ ' ClassStereotypeFontStyle
218
+
219
+ '
220
+ ' Cloud
221
+ '
222
+ ' CloudBackgroundColor
223
+ CloudBorderColor $color_fg
224
+ ' CloudFontColor
225
+ ' CloudFontName
226
+ ' CloudFontSize
227
+ ' CloudFontStyle
228
+ ' CloudStereotypeFontColor
229
+ ' CloudStereotypeFontName
230
+ ' CloudStereotypeFontSize
231
+ ' CloudStereotypeFontStyle
232
+
233
+ '
234
+ ' Collections
235
+ '
236
+ CollectionsBackgroundColor $color_bg_light
237
+ CollectionsBorderColor $color_blue
238
+
239
+ ' TODO
240
+ ' ColorArrowSeparationSpace
241
+
242
+ '
243
+ ' Component
244
+ '
245
+ ComponentBackgroundColor $color_bg_light
246
+ ComponentBorderColor $color_blue
247
+ ' ComponentBorderThickness
248
+ ' ComponentFontColor
249
+ ' ComponentFontName
250
+ ' ComponentFontSize
251
+ ' ComponentFontStyle
252
+ ' ComponentStereotypeFontColor
253
+ ' ComponentStereotypeFontName
254
+ ' ComponentStereotypeFontSize
255
+ ' ComponentStereotypeFontStyle
256
+
257
+ ' TODO
258
+ ' ComponentStyle
259
+
260
+ '
261
+ ' Condition styles
262
+ '
263
+ ' ConditionEndStyle
264
+ ' ConditionStyle
265
+
266
+ '
267
+ ' Control
268
+ '
269
+ ControlBackgroundColor $color_bg_light
270
+ ControlBorderColor $color_blue
271
+ ControlFontColor $color_fg
272
+ ' ControlFontName
273
+ ' ControlFontSize
274
+ ' ControlFontStyle
275
+ ControlStereotypeFontColor $color_fg
276
+ ' ControlStereotypeFontName
277
+ ' ControlStereotypeFontSize
278
+ ' ControlStereotypeFontStyle
279
+
280
+ '
281
+ ' Database
282
+ '
283
+ ' DatabaseBackgroundColor
284
+ DatabaseBorderColor $color_fg
285
+ ' DatabaseFontColor
286
+ ' DatabaseFontName
287
+ ' DatabaseFontSize
288
+ ' DatabaseFontStyle
289
+ ' DatabaseStereotypeFontColor
290
+ ' DatabaseStereotypeFontName
291
+ ' DatabaseStereotypeFontSize
292
+ ' DatabaseStereotypeFontStyle
293
+
294
+ '
295
+ ' Default font styles
296
+ '
297
+ DefaultFontColor $color_fg
298
+ ' https://github.com/twbs/bootstrap/blob/v4.5.3/scss/_variables.scss#L277
299
+ DefaultFontName -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"
300
+ ' DefaultFontSize
301
+ ' DefaultFontStyle
302
+
303
+ ' TODO: get this to work
304
+ ' https://github.com/twbs/bootstrap/blob/v4.5.3/scss/_variables.scss#L278
305
+ ' DefaultMonospacedFontName SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace
306
+
307
+ ' DefaultTextAlignment
308
+
309
+
310
+ '
311
+ ' Designed (?)
312
+ '
313
+ ' DesignedBackgroundColor
314
+ ' DesignedBorderColor
315
+ ' DesignedDomainBorderThickness
316
+ ' DesignedDomainFontColor
317
+ ' DesignedDomainFontName
318
+ ' DesignedDomainFontSize
319
+ ' DesignedDomainFontStyle
320
+ ' DesignedDomainStereotypeFontColor
321
+ ' DesignedDomainStereotypeFontName
322
+ ' DesignedDomainStereotypeFontSize
323
+ ' DesignedDomainStereotypeFontStyle
324
+
325
+ '
326
+ ' Diagram border
327
+ '
328
+ ' DiagramBorderColor
329
+ ' DiagramBorderThickness
330
+
331
+ '
332
+ ' Domain (?)
333
+ '
334
+ ' DomainBackgroundColor
335
+ ' DomainBorderColor
336
+ ' DomainBorderThickness
337
+ ' DomainFontColor
338
+ ' DomainFontName
339
+ ' DomainFontSize
340
+ ' DomainFontStyle
341
+ ' DomainStereotypeFontColor
342
+ ' DomainStereotypeFontName
343
+ ' DomainStereotypeFontSize
344
+ ' DomainStereotypeFontStyle
345
+
346
+ ' Dpi
347
+
348
+ '
349
+ ' Entity
350
+ '
351
+ EntityBackgroundColor $color_bg_light
352
+ EntityBorderColor $color_blue
353
+ ' EntityFontColor
354
+ ' EntityFontName
355
+ ' EntityFontSize
356
+ ' EntityFontStyle
357
+ ' EntityStereotypeFontColor
358
+
359
+ '
360
+ ' Entity stereotype
361
+ '
362
+ ' EntityStereotypeFontName
363
+ ' EntityStereotypeFontSize
364
+ ' EntityStereotypeFontStyle
365
+ '
366
+ ' EnumBackgroundColor
367
+
368
+ '
369
+ ' File
370
+ '
371
+ FileBackgroundColor $color_bg_light
372
+ FileBorderColor $color_fg
373
+ ' FileFontColor
374
+ ' FileFontName
375
+ ' FileFontSize
376
+ ' FileFontStyle
377
+
378
+ '
379
+ ' File stereotype
380
+ '
381
+ ' FileStereotypeFontColor
382
+ ' FileStereotypeFontName
383
+ ' FileStereotypeFontSize
384
+ ' FileStereotypeFontStyle
385
+
386
+ ' FixCircleLabelOverlapping
387
+
388
+ '
389
+ ' Folder
390
+ '
391
+ ' FolderBackgroundColor
392
+ FolderBorderColor $color_fg
393
+ ' FolderFontColor
394
+ ' FolderFontName
395
+ ' FolderFontSize
396
+ ' FolderFontStyle
397
+
398
+ '
399
+ ' Folder stereotype
400
+ '
401
+ ' FolderStereotypeFontColor
402
+ ' FolderStereotypeFontName
403
+ ' FolderStereotypeFontSize
404
+ ' FolderStereotypeFontStyle
405
+ '
406
+ ' FooterFontColor
407
+ '
408
+ ' FooterFontName
409
+ ' FooterFontSize
410
+ '
411
+ ' FooterFontStyle
412
+
413
+ '
414
+ ' Frame
415
+ '
416
+ ' FrameBackgroundColor
417
+ FrameBorderColor $color_fg
418
+ ' FrameFontColor
419
+ ' FrameFontName
420
+ ' FrameFontSize
421
+ ' FrameFontStyle
422
+ ' FrameStereotypeFontColor
423
+ ' FrameStereotypeFontName
424
+ ' FrameStereotypeFontSize
425
+ ' FrameStereotypeFontStyle
426
+
427
+ ' GenericDisplay
428
+ ' Guillemet
429
+ '
430
+ ' Handwritten
431
+ ' HeaderFontColor
432
+ '
433
+ ' HeaderFontName
434
+ ' HeaderFontSize
435
+ '
436
+ ' HeaderFontStyle
437
+ '
438
+ ' HyperlinkColor
439
+ ' HyperlinkUnderline
440
+ '
441
+ ' IconIEMandatoryColor
442
+ ' IconPackageBackgroundColor
443
+ '
444
+ ' IconPackageColor
445
+ '
446
+ ' IconPrivateBackgroundColor
447
+ ' IconPrivateColor
448
+ '
449
+ ' IconProtectedBackgroundColor
450
+ ' IconProtectedColor
451
+ '
452
+ ' IconPublicBackgroundColor
453
+ '
454
+ ' IconPublicColor
455
+
456
+ '
457
+ ' Interface
458
+ '
459
+ InterfaceBackgroundColor $color_bg_light
460
+ InterfaceBorderColor $color_blue
461
+ ' InterfaceFontColor
462
+ ' InterfaceFontName
463
+ ' InterfaceFontSize
464
+ ' InterfaceFontStyle
465
+ ' InterfaceStereotypeFontColor
466
+ ' InterfaceStereotypeFontName
467
+ ' InterfaceStereotypeFontSize
468
+ ' InterfaceStereotypeFontStyle
469
+
470
+ '
471
+ ' Legend
472
+ '
473
+ LegendBackgroundColor $color_bg_light
474
+ LegendBorderColor $color_fg
475
+ ' LegendBorderThickness
476
+ ' LegendFontColor
477
+ ' LegendFontName
478
+ ' LegendFontSize
479
+ ' LegendFontStyle
480
+
481
+ ' LexicalBackgroundColor
482
+ '
483
+ ' LexicalBorderColor
484
+ '
485
+ ' LifelineStrategy
486
+ ' Linetype
487
+ '
488
+ ' MachineBackgroundColor
489
+ ' MachineBorderColor
490
+ '
491
+ ' MachineBorderThickness
492
+ '
493
+ ' MachineFontColor
494
+ ' MachineFontName
495
+ '
496
+ ' MachineFontSize
497
+ ' MachineFontStyle
498
+ '
499
+ ' MachineStereotypeFontColor
500
+ '
501
+ ' MachineStereotypeFontName
502
+ ' MachineStereotypeFontSize
503
+ '
504
+ ' MachineStereotypeFontStyle
505
+ ' MaxAsciiMessageLength
506
+ '
507
+ ' MaxMessageSize
508
+ '
509
+ ' MinClassWidth
510
+ ' Monochrome
511
+
512
+ '
513
+ ' Node
514
+ '
515
+ ' NodeBackgroundColor
516
+ NodeBorderColor $color_fg
517
+ ' NodeFontColor
518
+ ' NodeFontName
519
+ ' NodeFontSize
520
+ ' NodeFontStyle
521
+ ' NodeStereotypeFontColor
522
+ ' NodeStereotypeFontName
523
+ ' NodeStereotypeFontSize
524
+ ' NodeStereotypeFontStyle
525
+
526
+ ' Nodesep
527
+
528
+ '
529
+ ' Note
530
+ '
531
+ NoteBackgroundColor $color_yellow
532
+ NoteBorderColor $color_bg
533
+ ' NoteBorderThickness
534
+ NoteFontColor $color_bg
535
+ ' NoteFontName
536
+ ' NoteFontSize
537
+ ' NoteFontStyle
538
+ ' NoteShadowing
539
+ ' NoteTextAlignment
540
+
541
+ '
542
+ ' Object
543
+ '
544
+ ' ObjectAttributeFontColor
545
+ ' ObjectAttributeFontName
546
+ ' ObjectAttributeFontSize
547
+ ' ObjectAttributeFontStyle
548
+ ObjectBackgroundColor $color_bg_light
549
+ ObjectBorderColor $color_blue
550
+ ' ObjectBorderThickness
551
+ ' ObjectFontColor
552
+ ' ObjectFontName
553
+ ' ObjectFontSize
554
+ ' ObjectFontStyle
555
+ ' ObjectStereotypeFontColor
556
+ ' ObjectStereotypeFontName
557
+ ' ObjectStereotypeFontSize
558
+ ' ObjectStereotypeFontStyle
559
+
560
+ '
561
+ ' Package
562
+ '
563
+ ' PackageBackgroundColor
564
+ PackageBorderColor $color_fg
565
+ ' PackageBorderThickness
566
+ ' PackageFontColor
567
+ ' PackageFontName
568
+ ' PackageFontSize
569
+ ' PackageFontStyle
570
+ ' PackageStereotypeFontColor
571
+ ' PackageStereotypeFontName
572
+ ' PackageStereotypeFontSize
573
+ ' PackageStereotypeFontStyle
574
+
575
+ ' PackageStyle
576
+ '
577
+ ' PackageTitleAlignment
578
+ '
579
+ ' Padding
580
+ ' PageBorderColor
581
+ '
582
+ ' PageExternalColor
583
+ ' PageMargin
584
+
585
+ '
586
+ ' Participant
587
+ '
588
+ ParticipantBackgroundColor $color_bg_light
589
+ ParticipantBorderColor $color_blue
590
+ ' ParticipantFontColor
591
+ ' ParticipantFontName
592
+ ' ParticipantFontSize
593
+ ' ParticipantFontStyle
594
+ ' ParticipantPadding
595
+ ' ParticipantStereotypeFontColor
596
+ ' ParticipantStereotypeFontName
597
+ ' ParticipantStereotypeFontSize
598
+ ' ParticipantStereotypeFontStyle
599
+
600
+ '
601
+ ' Partition
602
+ '
603
+ PartitionBackgroundColor transparent
604
+ PartitionBorderColor $color_fg
605
+ ' PartitionBorderThickness
606
+ ' PartitionFontColor
607
+ ' PartitionFontName
608
+ ' PartitionFontSize
609
+ ' PartitionFontStyle
610
+
611
+ ' PathHoverColor
612
+
613
+ '
614
+ ' Queue
615
+ '
616
+ QueueBackgroundColor $color_bg_light
617
+ QueueBorderColor $color_blue
618
+ ' QueueBorderThickness
619
+ ' QueueFontColor
620
+ ' QueueFontName
621
+ ' QueueFontSize
622
+ ' QueueFontStyle
623
+ ' QueueStereotypeFontColor
624
+ ' QueueStereotypeFontName
625
+ ' QueueStereotypeFontSize
626
+ ' QueueStereotypeFontStyle
627
+
628
+ ' Ranksep
629
+
630
+ '
631
+ ' Rectangle
632
+ '
633
+ ' RectangleBackgroundColor
634
+ RectangleBorderColor $color_fg
635
+ ' RectangleBorderThickness
636
+ ' RectangleFontColor
637
+ ' RectangleFontName
638
+ ' RectangleFontSize
639
+ ' RectangleFontStyle
640
+ ' RectangleStereotypeFontColor
641
+ ' RectangleStereotypeFontName
642
+ ' RectangleStereotypeFontSize
643
+ ' RectangleStereotypeFontStyle
644
+
645
+ ' RequirementBackgroundColor
646
+ '
647
+ ' RequirementBorderColor
648
+ ' RequirementBorderThickness
649
+ '
650
+ ' RequirementFontColor
651
+ '
652
+ ' RequirementFontName
653
+ ' RequirementFontSize
654
+ '
655
+ ' RequirementFontStyle
656
+ ' RequirementStereotypeFontColor
657
+ '
658
+ ' RequirementStereotypeFontName
659
+ '
660
+ ' RequirementStereotypeFontSize
661
+ ' RequirementStereotypeFontStyle
662
+ '
663
+ ' ResponseMessageBelowArrow
664
+
665
+ ' RoundCorner
666
+
667
+ ' SameClassWidth
668
+ '
669
+ ' SequenceActorBorderThickness
670
+ ' SequenceArrowThickness
671
+
672
+ '
673
+ ' Sequence box
674
+ '
675
+ SequenceBoxBackgroundColor $color_bg_light
676
+ SequenceBoxBorderColor $color_blue
677
+ ' SequenceBoxFontColor
678
+ ' SequenceBoxFontName
679
+ ' SequenceBoxFontSize
680
+ ' SequenceBoxFontStyle
681
+
682
+ '
683
+ ' Sequence delay
684
+ '
685
+ ' SequenceDelayFontColor
686
+ ' SequenceDelayFontName
687
+ ' SequenceDelayFontSize
688
+ ' SequenceDelayFontStyle
689
+
690
+ '
691
+ ' Sequence divider
692
+ '
693
+ SequenceDividerBackgroundColor $color_bg_light
694
+ SequenceDividerBorderColor $color_fg
695
+ ' SequenceDividerBorderThickness
696
+ ' SequenceDividerFontColor
697
+ ' SequenceDividerFontName
698
+ ' SequenceDividerFontSize
699
+ ' SequenceDividerFontStyle
700
+
701
+ '
702
+ ' Sequence group
703
+ '
704
+ SequenceGroupBackgroundColor $color_bg_light
705
+ ' SequenceGroupBodyBackgroundColor
706
+ SequenceGroupBorderColor $color_fg
707
+ ' SequenceGroupBorderThickness
708
+ ' SequenceGroupFontColor
709
+ ' SequenceGroupFontName
710
+ ' SequenceGroupFontSize
711
+ ' SequenceGroupFontStyle
712
+ ' SequenceGroupHeaderFontColor
713
+ ' SequenceGroupHeaderFontName
714
+ ' SequenceGroupHeaderFontSize
715
+ ' SequenceGroupHeaderFontStyle
716
+
717
+ '
718
+ ' Sequence lifeline
719
+ '
720
+ SequenceLifeLineBackgroundColor transparent
721
+ SequenceLifeLineBorderColor $color_blue
722
+ ' SequenceLifeLineBorderThickness
723
+
724
+ '
725
+ ' Sequence message
726
+ '
727
+ ' SequenceMessageAlignment
728
+ ' SequenceMessageTextAlignment
729
+ SequenceNewpageSeparatorColor $color_fg
730
+
731
+ '
732
+ ' Sequence participant
733
+ '
734
+ ' SequenceParticipant
735
+ ' SequenceParticipantBorderThickness
736
+
737
+ '
738
+ ' Sequence reference
739
+ '
740
+ ' SequenceReferenceAlignment
741
+ SequenceReferenceBackgroundColor transparent
742
+ SequenceReferenceBorderColor $color_fg
743
+ ' SequenceReferenceBorderThickness
744
+ ' SequenceReferenceFontColor
745
+ ' SequenceReferenceFontName
746
+ ' SequenceReferenceFontSize
747
+ ' SequenceReferenceFontStyle
748
+ SequenceReferenceHeaderBackgroundColor $color_bg_light
749
+
750
+ '
751
+ ' Sequence stereotype
752
+ '
753
+ ' SequenceStereotypeFontColor
754
+ ' SequenceStereotypeFontName
755
+ ' SequenceStereotypeFontSize
756
+ ' SequenceStereotypeFontStyle
757
+
758
+ '
759
+ ' Shadowing
760
+ '
761
+ Shadowing false
762
+
763
+ '
764
+ ' Stack
765
+ '
766
+ StackBackgroundColor $color_bg_light
767
+ StackBorderColor $color_blue
768
+ ' StackFontColor
769
+ ' StackFontName
770
+ ' StackFontSize
771
+ ' StackFontStyle
772
+ ' StackStereotypeFontColor
773
+ ' StackStereotypeFontName
774
+ ' StackStereotypeFontSize
775
+ ' StackStereotypeFontStyle
776
+
777
+ ' StateAttributeFontColor
778
+ ' StateAttributeFontName
779
+ '
780
+ ' StateAttributeFontSize
781
+ ' StateAttributeFontStyle
782
+
783
+ '
784
+ ' State
785
+ '
786
+ StateBackgroundColor $color_bg_light
787
+ StateBorderColor $color_blue
788
+ StateEndColor $color_red
789
+ ' StateFontColor
790
+ ' StateFontName
791
+ ' StateFontSize
792
+ ' StateFontStyle
793
+ ' StateMessageAlignment
794
+ StateStartColor $color_green
795
+
796
+ '
797
+ ' Stereotype (letters in circles)
798
+ '
799
+ StereotypeABackgroundColor $color_blue
800
+ StereotypeABorderColor $color_blue
801
+ StereotypeCBackgroundColor $color_green
802
+ StereotypeCBorderColor $color_green
803
+ StereotypeEBackgroundColor $color_yellow
804
+ StereotypeEBorderColor $color_yellow
805
+ StereotypeIBackgroundColor $color_purple
806
+ StereotypeIBorderColor $color_purple
807
+ ' StereotypeNBackgroundColor
808
+ ' StereotypeNBorderColor
809
+ ' StereotypePosition
810
+
811
+ '
812
+ ' Storage
813
+ '
814
+ StorageBackgroundColor $color_bg_light
815
+ StorageBorderColor $color_fg
816
+ ' StorageFontColor
817
+ ' StorageFontName
818
+ ' StorageFontSize
819
+ ' StorageFontStyle
820
+ ' StorageStereotypeFontColor
821
+ ' StorageStereotypeFontName
822
+ ' StorageStereotypeFontSize
823
+ ' StorageStereotypeFontStyle
824
+
825
+ ' Style
826
+ ' SvglinkTarget
827
+
828
+ '
829
+ ' Swimlane
830
+ '
831
+ SwimlaneBorderColor $color_fg
832
+ ' SwimlaneBorderThickness
833
+ ' SwimlaneTitleBackgroundColor
834
+ ' SwimlaneTitleFontColor
835
+ ' SwimlaneTitleFontName
836
+ ' SwimlaneTitleFontSize
837
+ ' SwimlaneTitleFontStyle
838
+ ' SwimlaneWidth
839
+ ' SwimlaneWrapTitleWidth
840
+
841
+ ' TabSize
842
+ '
843
+ ' TimingFontColor
844
+ '
845
+ ' TimingFontName
846
+ ' TimingFontSize
847
+ '
848
+ ' TimingFontStyle
849
+ ' TitleBackgroundColor
850
+ '
851
+ ' TitleBorderColor
852
+ '
853
+ ' TitleBorderRoundCorner
854
+ ' TitleBorderThickness
855
+ '
856
+ ' TitleFontColor
857
+ ' TitleFontName
858
+ '
859
+ ' TitleFontSize
860
+ '
861
+ ' TitleFontStyle
862
+
863
+ '
864
+ ' Usecase
865
+ '
866
+ UsecaseBackgroundColor $color_bg_light
867
+ UsecaseBorderColor $color_blue
868
+ ' UsecaseBorderThickness
869
+ ' UsecaseFontColor
870
+ ' UsecaseFontName
871
+ ' UsecaseFontSize
872
+ ' UsecaseFontStyle
873
+ ' UsecaseStereotypeFontColor
874
+ ' UsecaseStereotypeFontName
875
+ ' UsecaseStereotypeFontSize
876
+ ' UsecaseStereotypeFontStyle
877
+
878
+ ' WrapWidth
879
+ }
880
+
881
+ @enduml