@metadev/daga 1.0.0

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 (96) hide show
  1. package/Changelog.md +9 -0
  2. package/LICENSE.md +13 -0
  3. package/README.md +30 -0
  4. package/assets/config/generic-diagram.json +94 -0
  5. package/assets/icon/action/drop-down-arrow.svg +8 -0
  6. package/assets/icon/action/drop-horizontal-left.svg +14 -0
  7. package/assets/icon/action/drop-horizontal-none.svg +13 -0
  8. package/assets/icon/action/drop-horizontal-right.svg +14 -0
  9. package/assets/icon/action/drop-vertical-down.svg +14 -0
  10. package/assets/icon/action/drop-vertical-none.svg +13 -0
  11. package/assets/icon/action/drop-vertical-up.svg +14 -0
  12. package/assets/icon/action/filter-clear.png +0 -0
  13. package/assets/icon/buttons/center-hover.svg +10 -0
  14. package/assets/icon/buttons/center.svg +10 -0
  15. package/assets/icon/buttons/ellipsis-hover.svg +7 -0
  16. package/assets/icon/buttons/ellipsis.svg +7 -0
  17. package/assets/icon/buttons/filter-off-hover.svg +5 -0
  18. package/assets/icon/buttons/filter-off.svg +5 -0
  19. package/assets/icon/buttons/filter-on-hover.svg +5 -0
  20. package/assets/icon/buttons/filter-on.svg +5 -0
  21. package/assets/icon/buttons/layout-hover.svg +8 -0
  22. package/assets/icon/buttons/layout.svg +8 -0
  23. package/assets/icon/buttons/redo-hover.svg +5 -0
  24. package/assets/icon/buttons/redo.svg +5 -0
  25. package/assets/icon/buttons/undo-hover.svg +5 -0
  26. package/assets/icon/buttons/undo.svg +5 -0
  27. package/assets/icon/buttons/zoom-in-hover.svg +8 -0
  28. package/assets/icon/buttons/zoom-in.svg +8 -0
  29. package/assets/icon/buttons/zoom-out-hover.svg +7 -0
  30. package/assets/icon/buttons/zoom-out.svg +7 -0
  31. package/assets/icon/connection/arrow.svg +23 -0
  32. package/assets/icon/connection/empty-arrow.svg +19 -0
  33. package/assets/icon/connection/empty-diamond.svg +20 -0
  34. package/assets/icon/connection/filled-arrow.svg +19 -0
  35. package/assets/icon/connection/filled-diamond.svg +20 -0
  36. package/assets/icon/connection/line.svg +9 -0
  37. package/assets/icon/property/add.svg +3 -0
  38. package/assets/icon/property/close.svg +3 -0
  39. package/assets/icon/property/ellipsis.svg +5 -0
  40. package/assets/icon/property/hide.svg +10 -0
  41. package/assets/styles/styles.scss +181 -0
  42. package/fesm2022/metadev-daga.mjs +6480 -0
  43. package/fesm2022/metadev-daga.mjs.map +1 -0
  44. package/index.d.ts +39 -0
  45. package/lib/collapse-button/collapse-button.component.d.ts +17 -0
  46. package/lib/daga.module.d.ts +19 -0
  47. package/lib/diagram/diagram.component.d.ts +18 -0
  48. package/lib/diagram-buttons/diagram-buttons.component.d.ts +29 -0
  49. package/lib/diagram-editor/diagram/converters/daga-exporter.d.ts +6 -0
  50. package/lib/diagram-editor/diagram/converters/daga-importer.d.ts +6 -0
  51. package/lib/diagram-editor/diagram/converters/daga-model.d.ts +59 -0
  52. package/lib/diagram-editor/diagram/converters/diagram-model-exporter.d.ts +7 -0
  53. package/lib/diagram-editor/diagram/converters/diagram-model-importer.d.ts +7 -0
  54. package/lib/diagram-editor/diagram/diagram-action.d.ts +137 -0
  55. package/lib/diagram-editor/diagram/diagram-canvas.d.ts +99 -0
  56. package/lib/diagram-editor/diagram/diagram-config.d.ts +617 -0
  57. package/lib/diagram-editor/diagram/diagram-connection.d.ts +64 -0
  58. package/lib/diagram-editor/diagram/diagram-element.d.ts +21 -0
  59. package/lib/diagram-editor/diagram/diagram-field.d.ts +37 -0
  60. package/lib/diagram-editor/diagram/diagram-model.d.ts +64 -0
  61. package/lib/diagram-editor/diagram/diagram-node.d.ts +68 -0
  62. package/lib/diagram-editor/diagram/diagram-port.d.ts +27 -0
  63. package/lib/diagram-editor/diagram/diagram-property.d.ts +141 -0
  64. package/lib/diagram-editor/diagram/diagram-section.d.ts +36 -0
  65. package/lib/diagram-editor/diagram/layout/adjacency-layout.d.ts +8 -0
  66. package/lib/diagram-editor/diagram/layout/breadth-adjacency-layout.d.ts +8 -0
  67. package/lib/diagram-editor/diagram/layout/breadth-layout.d.ts +9 -0
  68. package/lib/diagram-editor/diagram/layout/diagram-layout.d.ts +10 -0
  69. package/lib/diagram-editor/diagram/layout/force-layout.d.ts +8 -0
  70. package/lib/diagram-editor/diagram/layout/horizontal-layout.d.ts +8 -0
  71. package/lib/diagram-editor/diagram/layout/priority-layout.d.ts +8 -0
  72. package/lib/diagram-editor/diagram/layout/vertical-layout.d.ts +8 -0
  73. package/lib/diagram-editor/diagram-editor.component.d.ts +27 -0
  74. package/lib/errors/diagram-error.d.ts +5 -0
  75. package/lib/errors/diagram-validator.d.ts +8 -0
  76. package/lib/errors/errors.component.d.ts +21 -0
  77. package/lib/interfaces/canvas.d.ts +203 -0
  78. package/lib/interfaces/diagram-buttons.d.ts +33 -0
  79. package/lib/interfaces/diagram-editor.d.ts +20 -0
  80. package/lib/interfaces/palette.d.ts +10 -0
  81. package/lib/interfaces/property-editor.d.ts +19 -0
  82. package/lib/object-editor/object-editor.component.d.ts +25 -0
  83. package/lib/palette/palette.component.d.ts +31 -0
  84. package/lib/property-editor/property-editor.component.d.ts +18 -0
  85. package/lib/services/canvas-provider.service.d.ts +15 -0
  86. package/lib/services/daga-configuration.service.d.ts +12 -0
  87. package/lib/text-list-editor/text-list-editor.component.d.ts +20 -0
  88. package/lib/text-map-editor/text-map-editor.component.d.ts +29 -0
  89. package/lib/util/canvas-util.d.ts +16 -0
  90. package/lib/util/events.d.ts +53 -0
  91. package/lib/util/grid.d.ts +19 -0
  92. package/lib/util/line.d.ts +15 -0
  93. package/lib/util/list-util.d.ts +2 -0
  94. package/lib/util/shape.d.ts +23 -0
  95. package/lib/util/svg-util.d.ts +22 -0
  96. package/package.json +55 -0
package/Changelog.md ADDED
@@ -0,0 +1,9 @@
1
+ # DAGA Changelog
2
+
3
+ List of releases and changes.
4
+
5
+ ![Daga logo](https://metadev.pro/icons/daga-logo-header.svg)
6
+
7
+ ## v. 1.0.0
8
+
9
+ _2024.02.01_ First public version. ⚔️🚀🎉
package/LICENSE.md ADDED
@@ -0,0 +1,13 @@
1
+ # DAGA License
2
+
3
+ ![Daga logo](https://metadev.pro/icons/daga-logo-header.svg)
4
+
5
+ **Metadev** offers a dual license for [**Daga**](https://metadev.pro/products/daga/).
6
+ Feel free to [contact](https://metadev.pro/contact/) for any inquiry about it.
7
+
8
+ 1. Commercial license granted for for-profit organizations.
9
+ 2. Free license for research and educational usages.
10
+
11
+ ---
12
+
13
+ ![Metadev logo](https://metadev.pro/content/metadev-logo-600px.png)
package/README.md ADDED
@@ -0,0 +1,30 @@
1
+ # DAGA
2
+
3
+ ![Daga banner](https://metadev.pro/content/daga/daga-banner.png)
4
+
5
+ Diagramming library for models.
6
+
7
+ - [Daga product page](https://metadev.pro/products/daga/).
8
+ - [Changelog](Changelog.md)
9
+ - Made and commercial suport by [Metadev](https://metadev.pro).
10
+
11
+ ## Diagram Example
12
+
13
+ ![Sample diagram](https://metadev.pro/img/daga-diagram.svg)
14
+
15
+ ## Documentation
16
+
17
+ - Documentation, tutorial and samples on [daga-tutorial](https://github.com/metadevpro/daga-tutorial).
18
+
19
+ ## Requirements
20
+
21
+ - Angular 17
22
+
23
+ ## License
24
+
25
+ (C) 2023-2024 [Metadev S.L.](https://metadev.pro) All rights reserved.
26
+
27
+ [Dual license](LICENSE.md):
28
+
29
+ 1. Comercial licence for for-profit organizations.
30
+ 2. Free license for research & educational usages.
@@ -0,0 +1,94 @@
1
+ {
2
+ "type": "generic-diagram",
3
+ "color": "#FFFFFF",
4
+ "gridSize": 50,
5
+ "snapToGrid": true,
6
+ "guessConnectionType": false,
7
+ "defaultConnection": "diagram-connection",
8
+ "palettes": [
9
+ {
10
+ "name": "",
11
+ "templates": [
12
+ {
13
+ "templateType": "node",
14
+ "type": "diagram-node",
15
+ "label": "Node"
16
+ },
17
+ {
18
+ "templateType": "connection",
19
+ "type": "diagram-connection",
20
+ "label": "",
21
+ "color": "white",
22
+ "icon": "/assets/daga/icon/connection/filled-arrow.svg",
23
+ "width": 150,
24
+ "height": 50
25
+ }
26
+ ]
27
+ }
28
+ ],
29
+ "nodeTypes": [
30
+ {
31
+ "id": "diagram-node",
32
+ "name": "Node",
33
+ "defaultWidth": 150,
34
+ "defaultHeight": 50,
35
+ "label": {
36
+ "fontSize": 20,
37
+ "margin": 10
38
+ },
39
+ "ports": [
40
+ {
41
+ "coords": [75, 0],
42
+ "direction": "top"
43
+ },
44
+ {
45
+ "coords": [0, 25],
46
+ "direction": "left"
47
+ },
48
+ {
49
+ "coords": [75, 50],
50
+ "direction": "bottom"
51
+ },
52
+ {
53
+ "coords": [150, 25],
54
+ "direction": "right"
55
+ }
56
+ ],
57
+ "look": {
58
+ "lookType": "shaped-look",
59
+ "shape": "rectangle",
60
+ "color": "#FFFFFF",
61
+ "borderColor": "#000000",
62
+ "selectedColor": "#FFAAFF",
63
+ "selectedBorderColor": "#AA00AA"
64
+ }
65
+ }
66
+ ],
67
+ "connectionTypes": [
68
+ {
69
+ "id": "diagram-connection",
70
+ "name": "Connection",
71
+ "color": "#000000",
72
+ "selectedColor": "#AA00AA",
73
+ "width": 3,
74
+ "shape": "bezier",
75
+ "defaultEndMarkerLook": {
76
+ "image": "/assets/marker/arrow.svg",
77
+ "selectedImage": "/assets/marker/arrow.svg",
78
+ "markerWidth": 4,
79
+ "markerHeight": 8,
80
+ "markerRefX": 4,
81
+ "markerRefY": 4
82
+ },
83
+ "label": {
84
+ "color": "#FFFFFF",
85
+ "selectedColor": "#FFFFFF",
86
+ "fontSize": 12,
87
+ "padding": 6,
88
+ "margin": 20
89
+ },
90
+ "startTypes": ["diagram-node"],
91
+ "endTypes": ["diagram-node"]
92
+ }
93
+ ]
94
+ }
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
+ <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ width="255px" height="255px" viewBox="0 0 255 255" style="enable-background:new 0 0 255 255;" xml:space="preserve">
5
+ <g id="arrow-drop-down">
6
+ <polygon points="0,63.75 127.5,191.25 255,63.75"/>
7
+ </g>
8
+ </svg>
@@ -0,0 +1,14 @@
1
+ <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="
4
+ M 15 1
5
+ L 9 12
6
+ L 15 23
7
+ "
8
+ fill="none"
9
+ stroke="#C1CDD9"
10
+ stroke-width="2"
11
+ stroke-linecap="round"
12
+ stroke-linejoin="round"
13
+ />
14
+ </svg>
@@ -0,0 +1,13 @@
1
+ <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="
4
+ M 12 1
5
+ L 12 23
6
+ "
7
+ fill="none"
8
+ stroke="#C1CDD9"
9
+ stroke-width="2"
10
+ stroke-linecap="round"
11
+ stroke-linejoin="round"
12
+ />
13
+ </svg>
@@ -0,0 +1,14 @@
1
+ <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="
4
+ M 9 1
5
+ L 15 12
6
+ L 9 23
7
+ "
8
+ fill="none"
9
+ stroke="#C1CDD9"
10
+ stroke-width="2"
11
+ stroke-linecap="round"
12
+ stroke-linejoin="round"
13
+ />
14
+ </svg>
@@ -0,0 +1,14 @@
1
+ <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="
4
+ M 1 9
5
+ L 12 15
6
+ L 23 9
7
+ "
8
+ fill="none"
9
+ stroke="#C1CDD9"
10
+ stroke-width="2"
11
+ stroke-linecap="round"
12
+ stroke-linejoin="round"
13
+ />
14
+ </svg>
@@ -0,0 +1,13 @@
1
+ <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="
4
+ M 1 12
5
+ L 23 12
6
+ "
7
+ fill="none"
8
+ stroke="#C1CDD9"
9
+ stroke-width="2"
10
+ stroke-linecap="round"
11
+ stroke-linejoin="round"
12
+ />
13
+ </svg>
@@ -0,0 +1,14 @@
1
+ <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="
4
+ M 1 15
5
+ L 12 9
6
+ L 23 15
7
+ "
8
+ fill="none"
9
+ stroke="#C1CDD9"
10
+ stroke-width="2"
11
+ stroke-linecap="round"
12
+ stroke-linejoin="round"
13
+ />
14
+ </svg>
@@ -0,0 +1,10 @@
1
+ <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="0.5" y="0.5" width="47" height="47" rx="23.5" fill="#F5F5F5"/>
3
+ <circle cx="24" cy="24" r="7" stroke="#33363F" stroke-width="2"/>
4
+ <circle cx="24" cy="24" r="2" fill="#33363F" stroke="#33363F" stroke-width="2"/>
5
+ <path d="M24 17V13" stroke="#33363F" stroke-width="2" stroke-linecap="round"/>
6
+ <path d="M31 24L35 24" stroke="#33363F" stroke-width="2" stroke-linecap="round"/>
7
+ <path d="M24 35L24 31" stroke="#33363F" stroke-width="2" stroke-linecap="round"/>
8
+ <path d="M13 24H17" stroke="#33363F" stroke-width="2" stroke-linecap="round"/>
9
+ <rect x="0.5" y="0.5" width="47" height="47" rx="23.5" stroke="#E5E5E5"/>
10
+ </svg>
@@ -0,0 +1,10 @@
1
+ <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="0.5" y="0.5" width="47" height="47" rx="23.5" fill="white"/>
3
+ <circle cx="24" cy="24" r="7" stroke="#33363F" stroke-width="2"/>
4
+ <circle cx="24" cy="24" r="2" fill="#33363F" stroke="#33363F" stroke-width="2"/>
5
+ <path d="M24 17V13" stroke="#33363F" stroke-width="2" stroke-linecap="round"/>
6
+ <path d="M31 24L35 24" stroke="#33363F" stroke-width="2" stroke-linecap="round"/>
7
+ <path d="M24 35L24 31" stroke="#33363F" stroke-width="2" stroke-linecap="round"/>
8
+ <path d="M13 24H17" stroke="#33363F" stroke-width="2" stroke-linecap="round"/>
9
+ <rect x="0.5" y="0.5" width="47" height="47" rx="23.5" stroke="#E5E5E5"/>
10
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="0.5" y="0.5" width="47" height="47" rx="23.5" fill="#F5F5F5"/>
3
+ <circle cx="16" cy="24" r="2" fill="#33363F"/>
4
+ <circle cx="24" cy="24" r="2" fill="#33363F"/>
5
+ <circle cx="32" cy="24" r="2" fill="#33363F"/>
6
+ <rect x="0.5" y="0.5" width="47" height="47" rx="23.5" stroke="#E5E5E5"/>
7
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="0.5" y="0.5" width="47" height="47" rx="23.5" fill="white"/>
3
+ <circle cx="16" cy="24" r="2" fill="#33363F"/>
4
+ <circle cx="24" cy="24" r="2" fill="#33363F"/>
5
+ <circle cx="32" cy="24" r="2" fill="#33363F"/>
6
+ <rect x="0.5" y="0.5" width="47" height="47" rx="23.5" stroke="#E5E5E5"/>
7
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="0.5" y="0.5" width="47" height="47" rx="23.5" fill="#F5F5F5"/>
3
+ <path d="M34 16H14L22 25.46V32L26 34V25.46L34 16Z" stroke="#233154" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <rect x="0.5" y="0.5" width="47" height="47" rx="23.5" stroke="#E5E5E5"/>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="0.5" y="0.5" width="47" height="47" rx="23.5" fill="white"/>
3
+ <path d="M34 16H14L22 25.46V32L26 34V25.46L34 16Z" stroke="#233154" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <rect x="0.5" y="0.5" width="47" height="47" rx="23.5" stroke="#E5E5E5"/>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="0.5" y="0.5" width="47" height="47" rx="23.5" fill="#F5F5F5"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M35.153 14.5443C35.5197 14.1313 35.4821 13.4992 35.0691 13.1326C34.6561 12.7659 34.024 12.8035 33.6574 13.2165L32.074 15H14C13.6107 15 13.2568 15.2259 13.0929 15.5791C12.929 15.9323 12.985 16.3484 13.2364 16.6457L21 25.8261V27.4735L17.8325 31.0414C17.4658 31.4544 17.5034 32.0865 17.9164 32.4531C18.3294 32.8198 18.9614 32.7822 19.3281 32.3692L35.153 14.5443ZM22.977 25.2467L30.2984 17H16.1553L22.7636 24.8143C22.8696 24.9396 22.9424 25.0883 22.977 25.2467ZM23 31.3819V30.2386L21.0688 32.3646C21.1576 32.5911 21.3276 32.7818 21.5528 32.8944L25.5528 34.8944C25.8628 35.0494 26.2309 35.0328 26.5257 34.8506C26.8206 34.6684 27 34.3466 27 34V25.8351L25 28.0369V32.3819L23 31.3819Z" fill="#233154"/>
4
+ <rect x="0.5" y="0.5" width="47" height="47" rx="23.5" stroke="#E5E5E5"/>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="0.5" y="0.5" width="47" height="47" rx="23.5" fill="white"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M35.153 14.5443C35.5197 14.1313 35.4821 13.4992 35.0691 13.1326C34.6561 12.7659 34.024 12.8035 33.6574 13.2165L32.074 15H14C13.6107 15 13.2568 15.2259 13.0929 15.5791C12.929 15.9323 12.985 16.3484 13.2364 16.6457L21 25.8261V27.4735L17.8325 31.0414C17.4658 31.4544 17.5034 32.0865 17.9164 32.4531C18.3294 32.8198 18.9614 32.7822 19.3281 32.3692L35.153 14.5443ZM22.977 25.2467L30.2984 17H16.1553L22.7636 24.8143C22.8696 24.9396 22.9424 25.0883 22.977 25.2467ZM23 31.3819V30.2386L21.0688 32.3646C21.1576 32.5911 21.3276 32.7818 21.5528 32.8944L25.5528 34.8944C25.8628 35.0494 26.2309 35.0328 26.5257 34.8506C26.8206 34.6684 27 34.3466 27 34V25.8351L25 28.0369V32.3819L23 31.3819Z" fill="#233154"/>
4
+ <rect x="0.5" y="0.5" width="47" height="47" rx="23.5" stroke="#E5E5E5"/>
5
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="0.5" y="0.5" width="47" height="47" rx="23.5" fill="#F5F5F5"/>
3
+ <rect x="16" y="16" width="6" height="7" rx="1" stroke="#33363F" stroke-width="2" stroke-linejoin="round"/>
4
+ <rect x="16" y="27" width="6" height="5" rx="1" stroke="#33363F" stroke-width="2" stroke-linejoin="round"/>
5
+ <rect x="26" y="16" width="6" height="5" rx="1" stroke="#33363F" stroke-width="2" stroke-linejoin="round"/>
6
+ <rect x="26" y="25" width="6" height="7" rx="1" stroke="#33363F" stroke-width="2" stroke-linejoin="round"/>
7
+ <rect x="0.5" y="0.5" width="47" height="47" rx="23.5" stroke="#E5E5E5"/>
8
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="0.5" y="0.5" width="47" height="47" rx="23.5" fill="white"/>
3
+ <rect x="16" y="16" width="6" height="7" rx="1" stroke="#33363F" stroke-width="2" stroke-linejoin="round"/>
4
+ <rect x="16" y="27" width="6" height="5" rx="1" stroke="#33363F" stroke-width="2" stroke-linejoin="round"/>
5
+ <rect x="26" y="16" width="6" height="5" rx="1" stroke="#33363F" stroke-width="2" stroke-linejoin="round"/>
6
+ <rect x="26" y="25" width="6" height="7" rx="1" stroke="#33363F" stroke-width="2" stroke-linejoin="round"/>
7
+ <rect x="0.5" y="0.5" width="47" height="47" rx="23.5" stroke="#E5E5E5"/>
8
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="0.5" y="0.5" width="47" height="47" rx="23.5" fill="#F5F5F5"/>
3
+ <path transform-origin="24 24" transform="scale(-1 1)" d="M 16 20 L 15.3 20.7 L 14.6 20 L 15.3 19.3 L 16 20 Z M 21 32 C 20.4 32 20 31.5523 20 31 C 20 30.4 20.4 30 21 30 L 21 32 Z M 20.3 25.7 L 15.3 20.7 L 16.7 19.3 L 21.7 24.3 L 20.3 25.7 Z M 15.3 19.3 L 20.3 14.3 L 21.7 15.7 L 16.7 20.7 L 15.3 19.3 Z M 16 19 L 26.5 19 L 26.5 21 L 16 21 L 16 19 Z M26.5 32 L 21 32 L 21 30 L 26.5 30 L 26.5 32 Z M 33 25.5 C 33 29.1 30.1 32 26.5 32 L 26.5 30 C 29 30 31 28 31 25.5 L 33 25.5 Z M 26.5 19 C 30 19 33 22 33 25.5 L 31 25.5 C 31 23 29 21 26.5 21 L 26.5 19 Z" fill="#33363F"/>
4
+ <rect x="0.5" y="0.5" width="47" height="47" rx="23.5" stroke="#E5E5E5"/>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="0.5" y="0.5" width="47" height="47" rx="23.5" fill="white"/>
3
+ <path transform-origin="24 24" transform="scale(-1 1)" d="M 16 20 L 15.3 20.7 L 14.6 20 L 15.3 19.3 L 16 20 Z M 21 32 C 20.4 32 20 31.5523 20 31 C 20 30.4 20.4 30 21 30 L 21 32 Z M 20.3 25.7 L 15.3 20.7 L 16.7 19.3 L 21.7 24.3 L 20.3 25.7 Z M 15.3 19.3 L 20.3 14.3 L 21.7 15.7 L 16.7 20.7 L 15.3 19.3 Z M 16 19 L 26.5 19 L 26.5 21 L 16 21 L 16 19 Z M26.5 32 L 21 32 L 21 30 L 26.5 30 L 26.5 32 Z M 33 25.5 C 33 29.1 30.1 32 26.5 32 L 26.5 30 C 29 30 31 28 31 25.5 L 33 25.5 Z M 26.5 19 C 30 19 33 22 33 25.5 L 31 25.5 C 31 23 29 21 26.5 21 L 26.5 19 Z" fill="#33363F"/>
4
+ <rect x="0.5" y="0.5" width="47" height="47" rx="23.5" stroke="#E5E5E5"/>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="0.5" y="0.5" width="47" height="47" rx="23.5" fill="#F5F5F5"/>
3
+ <path d="M 16 20 L 15.3 20.7 L 14.6 20 L 15.3 19.3 L 16 20 Z M 21 32 C 20.4 32 20 31.5523 20 31 C 20 30.4 20.4 30 21 30 L 21 32 Z M 20.3 25.7 L 15.3 20.7 L 16.7 19.3 L 21.7 24.3 L 20.3 25.7 Z M 15.3 19.3 L 20.3 14.3 L 21.7 15.7 L 16.7 20.7 L 15.3 19.3 Z M 16 19 L 26.5 19 L 26.5 21 L 16 21 L 16 19 Z M26.5 32 L 21 32 L 21 30 L 26.5 30 L 26.5 32 Z M 33 25.5 C 33 29.1 30.1 32 26.5 32 L 26.5 30 C 29 30 31 28 31 25.5 L 33 25.5 Z M 26.5 19 C 30 19 33 22 33 25.5 L 31 25.5 C 31 23 29 21 26.5 21 L 26.5 19 Z" fill="#33363F"/>
4
+ <rect x="0.5" y="0.5" width="47" height="47" rx="23.5" stroke="#E5E5E5"/>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="0.5" y="0.5" width="47" height="47" rx="23.5" fill="white"/>
3
+ <path d="M 16 20 L 15.3 20.7 L 14.6 20 L 15.3 19.3 L 16 20 Z M 21 32 C 20.4 32 20 31.5523 20 31 C 20 30.4 20.4 30 21 30 L 21 32 Z M 20.3 25.7 L 15.3 20.7 L 16.7 19.3 L 21.7 24.3 L 20.3 25.7 Z M 15.3 19.3 L 20.3 14.3 L 21.7 15.7 L 16.7 20.7 L 15.3 19.3 Z M 16 19 L 26.5 19 L 26.5 21 L 16 21 L 16 19 Z M26.5 32 L 21 32 L 21 30 L 26.5 30 L 26.5 32 Z M 33 25.5 C 33 29.1 30.1 32 26.5 32 L 26.5 30 C 29 30 31 28 31 25.5 L 33 25.5 Z M 26.5 19 C 30 19 33 22 33 25.5 L 31 25.5 C 31 23 29 21 26.5 21 L 26.5 19 Z" fill="#33363F"/>
4
+ <rect x="0.5" y="0.5" width="47" height="47" rx="23.5" stroke="#E5E5E5"/>
5
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="0.5" y="0.5" width="47" height="47" rx="23.5" fill="#F5F5F5"/>
3
+ <path d="M23 30C26.866 30 30 26.866 30 23C30 19.134 26.866 16 23 16C19.134 16 16 19.134 16 23C16 26.866 19.134 30 23 30Z" stroke="#233154" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M32.5 32.5L28.875 28.875" stroke="#233154" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M19 23C19 22.4477 19.4477 22 20 22H26C26.5523 22 27 22.4477 27 23C27 23.5523 26.5523 24 26 24H20C19.4477 24 19 23.5523 19 23Z" fill="#233154"/>
6
+ <path d="M22 20C22 19.4477 22.4477 19 23 19C23.5523 19 24 19.4477 24 20V26C24 26.5523 23.5523 27 23 27C22.4477 27 22 26.5523 22 26V20Z" fill="#233154"/>
7
+ <rect x="0.5" y="0.5" width="47" height="47" rx="23.5" stroke="#E5E5E5"/>
8
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="0.5" y="0.5" width="47" height="47" rx="23.5" fill="white"/>
3
+ <path d="M23 30C26.866 30 30 26.866 30 23C30 19.134 26.866 16 23 16C19.134 16 16 19.134 16 23C16 26.866 19.134 30 23 30Z" stroke="#233154" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M32.5 32.5L28.875 28.875" stroke="#233154" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M19 23C19 22.4477 19.4477 22 20 22H26C26.5523 22 27 22.4477 27 23C27 23.5523 26.5523 24 26 24H20C19.4477 24 19 23.5523 19 23Z" fill="#233154"/>
6
+ <path d="M22 20C22 19.4477 22.4477 19 23 19C23.5523 19 24 19.4477 24 20V26C24 26.5523 23.5523 27 23 27C22.4477 27 22 26.5523 22 26V20Z" fill="#233154"/>
7
+ <rect x="0.5" y="0.5" width="47" height="47" rx="23.5" stroke="#E5E5E5"/>
8
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="0.5" y="0.5" width="47" height="47" rx="23.5" fill="#F5F5F5"/>
3
+ <path d="M23 30C26.866 30 30 26.866 30 23C30 19.134 26.866 16 23 16C19.134 16 16 19.134 16 23C16 26.866 19.134 30 23 30Z" stroke="#233154" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M32.5 32.5L28.875 28.875" stroke="#233154" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M19 23C19 22.4477 19.4477 22 20 22H26C26.5523 22 27 22.4477 27 23C27 23.5523 26.5523 24 26 24H20C19.4477 24 19 23.5523 19 23Z" fill="#233154"/>
6
+ <rect x="0.5" y="0.5" width="47" height="47" rx="23.5" stroke="#E5E5E5"/>
7
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="0.5" y="0.5" width="47" height="47" rx="23.5" fill="white"/>
3
+ <path d="M23 30C26.866 30 30 26.866 30 23C30 19.134 26.866 16 23 16C19.134 16 16 19.134 16 23C16 26.866 19.134 30 23 30Z" stroke="#233154" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M32.5 32.5L28.875 28.875" stroke="#233154" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M19 23C19 22.4477 19.4477 22 20 22H26C26.5523 22 27 22.4477 27 23C27 23.5523 26.5523 24 26 24H20C19.4477 24 19 23.5523 19 23Z" fill="#233154"/>
6
+ <rect x="0.5" y="0.5" width="47" height="47" rx="23.5" stroke="#E5E5E5"/>
7
+ </svg>
@@ -0,0 +1,23 @@
1
+ <svg viewBox="0 0 150 50" xmlns="http://www.w3.org/2000/svg">
2
+ <line
3
+ x1="10"
4
+ y1="25"
5
+ x2="140"
6
+ y2="25"
7
+ stroke="black"
8
+ />
9
+ <line
10
+ x1="120"
11
+ y1="5"
12
+ x2="140"
13
+ y2="25"
14
+ stroke="black"
15
+ />
16
+ <line
17
+ x1="120"
18
+ y1="45"
19
+ x2="140"
20
+ y2="25"
21
+ stroke="black"
22
+ />
23
+ </svg>
@@ -0,0 +1,19 @@
1
+ <svg viewBox="0 0 150 50" xmlns="http://www.w3.org/2000/svg">
2
+ <line
3
+ x1="10"
4
+ y1="25"
5
+ x2="120"
6
+ y2="25"
7
+ stroke="black"
8
+ />
9
+ <path
10
+ d="
11
+ M 140, 25
12
+ L 120, 5
13
+ L 120, 45
14
+ z
15
+ "
16
+ stroke="black"
17
+ fill="white"
18
+ />
19
+ </svg>
@@ -0,0 +1,20 @@
1
+ <svg viewBox="0 0 150 50" xmlns="http://www.w3.org/2000/svg">
2
+ <line
3
+ x1="10"
4
+ y1="25"
5
+ x2="100"
6
+ y2="25"
7
+ stroke="black"
8
+ />
9
+ <path
10
+ d="
11
+ M 140, 25
12
+ L 100, 5
13
+ L 60, 25
14
+ L 100, 45
15
+ z
16
+ "
17
+ stroke="black"
18
+ fill="white"
19
+ />
20
+ </svg>
@@ -0,0 +1,19 @@
1
+ <svg viewBox="0 0 150 50" xmlns="http://www.w3.org/2000/svg">
2
+ <line
3
+ x1="10"
4
+ y1="25"
5
+ x2="120"
6
+ y2="25"
7
+ stroke="black"
8
+ />
9
+ <path
10
+ d="
11
+ M 140, 25
12
+ L 120, 5
13
+ L 120, 45
14
+ z
15
+ "
16
+ stroke="none"
17
+ fill="black"
18
+ />
19
+ </svg>
@@ -0,0 +1,20 @@
1
+ <svg viewBox="0 0 150 50" xmlns="http://www.w3.org/2000/svg">
2
+ <line
3
+ x1="10"
4
+ y1="25"
5
+ x2="100"
6
+ y2="25"
7
+ stroke="black"
8
+ />
9
+ <path
10
+ d="
11
+ M 140, 25
12
+ L 100, 5
13
+ L 60, 25
14
+ L 100, 45
15
+ z
16
+ "
17
+ stroke="none"
18
+ fill="black"
19
+ />
20
+ </svg>
@@ -0,0 +1,9 @@
1
+ <svg viewBox="0 0 150 50" xmlns="http://www.w3.org/2000/svg">
2
+ <line
3
+ x1="10"
4
+ y1="25"
5
+ x2="140"
6
+ y2="25"
7
+ stroke="black"
8
+ />
9
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M12.99 11.0101L20.9096 11.0101V12.9899L12.99 12.9899L12.99 20.9095L11.0101 20.9095V12.9899L3.09053 12.9899L3.09053 11.0101L11.0101 11.0101L11.0101 3.09045L12.99 3.09045V11.0101Z" fill="#233154"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M13.4 12L19 17.6L17.6 19L12 13.4L6.40004 19L5.00004 17.6L10.6 12L5 6.4L6.4 5L12 10.6L17.6 5L19 6.4L13.4 12Z" fill="#233154"/>
3
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <circle cx="11.5" cy="6.5" r="1.5" fill="#233154"/>
3
+ <circle cx="11.5" cy="12.5" r="1.5" fill="#233154"/>
4
+ <circle cx="11.5" cy="18.5" r="1.5" fill="#233154"/>
5
+ </svg>
@@ -0,0 +1,10 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_917_2901)">
3
+ <path d="M1.70711 0.292893L23.7071 22.2929C24.0976 22.6834 24.0976 23.3166 23.7071 23.7071C23.3166 24.0976 22.6834 24.0976 22.2929 23.7071L17.8253 19.2408C16.0954 20.3537 14.0825 20.9661 12 21C8.6202 21 5.66131 19.3675 3.14546 16.6839C2.28113 15.762 1.5305 14.7776 0.894336 13.7925C0.509967 13.1974 0.246141 12.7283 0.105573 12.4472C-0.0397387 12.1566 -0.0347894 11.8135 0.118844 11.5272C1.25027 9.41866 2.75947 7.53995 4.56806 5.98304L0.292893 1.70711C-0.097631 1.31658 -0.097631 0.683418 0.292893 0.292893C0.683418 -0.0976311 1.31658 -0.0976311 1.70711 0.292893ZM2.37577 11.6109L2.143 12.003L2.17054 12.0513C2.24971 12.187 2.33598 12.3299 2.42925 12.4791L2.57441 12.7075C3.14919 13.5974 3.82825 14.488 4.60454 15.3161C6.77619 17.6325 9.2548 19 11.9837 19.0001C13.5317 18.9748 15.0407 18.5539 16.3706 17.7861L14.049 15.4646C13.1339 16.0379 12.0103 16.225 10.9354 15.9504C9.51816 15.5885 8.41149 14.4818 8.04955 13.0646C7.77504 11.9897 7.96214 10.8661 8.53544 9.95102L5.98658 7.40175C4.56612 8.6035 3.34715 10.0246 2.37577 11.6109ZM12 2.99995C15.3798 2.99995 18.3387 4.63247 20.8545 7.31605C21.7189 8.23801 22.4695 9.22244 23.1057 10.2075C23.49 10.8026 23.7539 11.2717 23.8944 11.5528C24.0395 11.8429 24.0348 12.1854 23.8819 12.4714C23.2421 13.6684 22.479 14.7953 21.6052 15.8338C21.2496 16.2564 20.6187 16.3107 20.1962 15.9552C19.7736 15.5996 19.7193 14.9687 20.0748 14.5462C20.635 13.8804 21.1445 13.1742 21.5991 12.4336L21.857 11.998L21.8295 11.9487C21.7503 11.813 21.664 11.6701 21.5707 11.5209L21.4256 11.2925C20.8508 10.4025 20.1718 9.51197 19.3955 8.68393C17.2238 6.36749 14.7452 4.99998 11.9977 4.99997C11.3682 4.99852 10.7408 5.07023 10.1279 5.21368C9.59016 5.33955 9.05219 5.00566 8.92632 4.46791C8.80045 3.93016 9.13434 3.39219 9.67209 3.26632C10.4359 3.08754 11.2179 2.99816 12 2.99995ZM9.98736 12.5697C10.1683 13.2783 10.7217 13.8317 11.4303 14.0126C11.8091 14.1094 12.1999 14.0915 12.5578 13.9721L10.0279 11.4422C9.90853 11.8001 9.89063 12.1909 9.98736 12.5697Z" fill="#233154"/>
4
+ </g>
5
+ <defs>
6
+ <clipPath id="clip0_917_2901">
7
+ <rect width="24" height="24" fill="white"/>
8
+ </clipPath>
9
+ </defs>
10
+ </svg>