@vcmap/ui 5.0.0-rc.8 → 5.0.0-rc.9

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 (178) hide show
  1. package/README.md +69 -22
  2. package/build/build.js +0 -3
  3. package/build/buildHelpers.js +0 -1
  4. package/build/commonViteConfig.js +1 -1
  5. package/config/dev.config.json +4 -4
  6. package/dist/assets/{cesium.6b5bb6.js → cesium.4e40f4.js} +0 -0
  7. package/dist/assets/cesium.js +1 -1
  8. package/dist/assets/core.edcf5e.js +4 -0
  9. package/dist/assets/core.js +1 -1
  10. package/dist/assets/{index.0be2842f.js → index.889d0f3a.js} +1 -1
  11. package/dist/assets/{ol.0561aa.js → ol.246fd4.js} +0 -0
  12. package/dist/assets/ol.js +1 -1
  13. package/dist/assets/ui.df4f6d.css +1 -0
  14. package/dist/assets/ui.df4f6d.js +43 -0
  15. package/dist/assets/ui.js +1 -1
  16. package/dist/assets/{vue-composition-api.f926fa.js → vue-composition-api.a520f3.js} +1 -1
  17. package/dist/assets/vue-composition-api.js +2 -2
  18. package/dist/assets/{vue.ddcb6b.js → vue.2cee44.js} +0 -0
  19. package/dist/assets/vue.js +1 -1
  20. package/dist/assets/{vuetify.d21163.css → vuetify.cc817b.css} +0 -0
  21. package/dist/assets/{vuetify.d21163.js → vuetify.cc817b.js} +1 -1
  22. package/dist/assets/vuetify.js +2 -2
  23. package/dist/index.html +1 -1
  24. package/index.js +39 -1
  25. package/package.json +2 -3
  26. package/plugins/@vcmap/pluginExample/index.js +5 -5
  27. package/plugins/@vcmap/pluginExample/pluginExampleComponent.vue +1 -1
  28. package/plugins/@vcmap/project-selector/ContextsListComponent.vue +1 -1
  29. package/plugins/@vcmap/project-selector/index.js +5 -5
  30. package/plugins/@vcmap/project-selector/package.json +1 -2
  31. package/plugins/@vcmap/theme-changer/index.js +6 -6
  32. package/plugins/buttonExamples/ButtonExamples.vue +1 -1
  33. package/plugins/buttonExamples/index.js +5 -4
  34. package/plugins/categoryTest/Categories.vue +1 -1
  35. package/plugins/categoryTest/Category.vue +1 -1
  36. package/plugins/categoryTest/index.js +5 -5
  37. package/plugins/example/index.js +33 -14
  38. package/plugins/test/allIconsComponent.vue +34 -0
  39. package/plugins/test/editor.vue +1 -1
  40. package/plugins/test/index.js +40 -17
  41. package/plugins/test/toolbox-data.js +106 -26
  42. package/plugins/test/windowManagerExample.vue +1 -2
  43. package/src/actions/actionHelper.js +2 -1
  44. package/src/actions/styleSelector.vue +1 -1
  45. package/src/application/Navbar.vue +18 -6
  46. package/src/application/VcsApp.vue +34 -28
  47. package/src/assets/logo-mobile.svg +9 -0
  48. package/src/assets/logo.svg +23 -23
  49. package/src/components/buttons/VcsActionButtonList.vue +99 -0
  50. package/src/components/buttons/VcsButton.vue +201 -0
  51. package/src/components/form-inputs-controls/VcsCheckbox.vue +73 -0
  52. package/src/components/form-inputs-controls/VcsColorPicker.vue +81 -0
  53. package/src/components/form-inputs-controls/VcsFormSection.vue +46 -0
  54. package/src/components/form-inputs-controls/VcsLabel.vue +38 -0
  55. package/src/components/form-inputs-controls/VcsSelect.vue +97 -0
  56. package/src/components/form-inputs-controls/VcsTextArea.vue +130 -0
  57. package/src/components/form-inputs-controls/VcsTextField.vue +129 -0
  58. package/src/components/form-output/VcsFormattedNumber.vue +103 -0
  59. package/src/components/lists/VcsActionList.vue +100 -0
  60. package/src/components/lists/VcsTreeview.vue +109 -0
  61. package/src/components/lists/VcsTreeviewLeaf.vue +105 -0
  62. package/src/components/lists/VcsTreeviewSearchbar.vue +156 -0
  63. package/src/components/notification/VcsBadge.vue +27 -0
  64. package/src/components/notification/VcsTooltip.vue +154 -0
  65. package/src/components/notification/validation.js +19 -0
  66. package/src/contentTree/LayerTree.vue +1 -1
  67. package/src/contentTree/contentTreeCollection.js +6 -2
  68. package/src/icons/+all.js +359 -0
  69. package/src/icons/2DAreaIcon.vue +21 -0
  70. package/src/icons/2DDistanceIcon.vue +18 -0
  71. package/src/icons/3DAreaIcon.vue +21 -0
  72. package/src/icons/3DDistanceIcon.vue +18 -0
  73. package/src/icons/3DHeightIcon.vue +18 -0
  74. package/src/icons/AngleIcon.vue +8 -0
  75. package/src/icons/AssociationsIcon.vue +34 -0
  76. package/src/icons/AxisIcon.vue +10 -0
  77. package/src/icons/BoundingBoxIcon.vue +15 -0
  78. package/src/icons/CheckboxCheckedIcon.vue +16 -0
  79. package/src/icons/CheckboxIcon.vue +23 -0
  80. package/src/icons/CheckboxIndeterminateIcon.vue +24 -0
  81. package/src/icons/CircleIcon.vue +10 -0
  82. package/src/icons/ColorSwatchIcon.vue +17 -0
  83. package/src/icons/CommentIcon.vue +19 -0
  84. package/src/icons/CompassIcon.vue +8 -0
  85. package/src/icons/ComponentsIcon.vue +7 -0
  86. package/src/icons/ConeIcon.vue +11 -0
  87. package/src/icons/DimensionsHouseIcon.vue +14 -0
  88. package/src/icons/ElevationProfileIcon.vue +111 -0
  89. package/src/icons/ExportAreaIcon.vue +7 -0
  90. package/src/icons/ExportFlightIcon.vue +7 -0
  91. package/src/icons/ExportIcon.vue +8 -0
  92. package/src/icons/ExternalLinkIcon.vue +10 -0
  93. package/src/icons/EyeIcon.vue +7 -0
  94. package/src/icons/FastForwardIcon.vue +7 -0
  95. package/src/icons/FilterIcon.vue +8 -0
  96. package/src/icons/GlobeNatureIcon.vue +14 -0
  97. package/src/icons/HealthCareIndustriesIcon.vue +118 -0
  98. package/src/icons/HelpIcon.vue +7 -0
  99. package/src/icons/HomePointIcon.vue +8 -0
  100. package/src/icons/HospitalsIcon.vue +237 -0
  101. package/src/icons/HouseIcon.vue +25 -0
  102. package/src/icons/ImportIcon.vue +8 -0
  103. package/src/icons/InfoIcon.vue +10 -0
  104. package/src/icons/KebabIcon.vue +36 -0
  105. package/src/icons/LabelIcon.vue +7 -0
  106. package/src/icons/LayersIcon.vue +26 -0
  107. package/src/icons/LegendIcon.vue +65 -0
  108. package/src/icons/LineIcon.vue +7 -0
  109. package/src/icons/LinkIcon.vue +7 -0
  110. package/src/icons/MapIcon.vue +8 -0
  111. package/src/icons/MenuIcon.vue +34 -0
  112. package/src/icons/MinusIcon.vue +8 -0
  113. package/src/icons/ObjectAttributeIcon.vue +18 -0
  114. package/src/icons/ObjectSelectIcon.vue +8 -0
  115. package/src/icons/ObliqueViewIcon.vue +13 -0
  116. package/src/icons/PdfIcon.vue +10 -0
  117. package/src/icons/PedestrianIcon.vue +8 -0
  118. package/src/icons/PenIcon.vue +14 -0
  119. package/src/icons/PlayCircleIcon.vue +10 -0
  120. package/src/icons/PlusIcon.vue +9 -0
  121. package/src/icons/PoiIcon.vue +7 -0
  122. package/src/icons/PointSelectIcon.vue +7 -0
  123. package/src/icons/PolygonIcon.vue +38 -0
  124. package/src/icons/PresentationModeIcon.vue +7 -0
  125. package/src/icons/ProgressIcon.vue +24 -0
  126. package/src/icons/QueryIcon.vue +15 -0
  127. package/src/icons/RectangleIcon.vue +9 -0
  128. package/src/icons/ReturnIcon.vue +7 -0
  129. package/src/icons/RewindIcon.vue +6 -0
  130. package/src/icons/SearchIcon.vue +8 -0
  131. package/src/icons/ShadowIcon.vue +9 -0
  132. package/src/icons/ShapesIcon.vue +28 -0
  133. package/src/icons/ShareIcon.vue +22 -0
  134. package/src/icons/SimpleCircleFilledIcon.vue +15 -0
  135. package/src/icons/SimpleCircleHalfFilledIcon.vue +12 -0
  136. package/src/icons/SimpleCircleOutlinedIcon.vue +15 -0
  137. package/src/icons/SkipNextIcon.vue +7 -0
  138. package/src/icons/SkipPreviousIcon.vue +9 -0
  139. package/src/icons/SplitViewIcon.vue +19 -0
  140. package/src/icons/TextStyleIcon.vue +14 -0
  141. package/src/icons/ThreeDimensionsIcon.vue +7 -0
  142. package/src/icons/ToolsIcon.vue +35 -0
  143. package/src/icons/TouchIcon.vue +8 -0
  144. package/src/icons/TrashCanIcon.vue +7 -0
  145. package/src/icons/TriangleIcon.vue +15 -0
  146. package/src/icons/TwoDimensionsIcon.vue +8 -0
  147. package/src/icons/UploadIcon.vue +14 -0
  148. package/src/icons/VideoRecorderIcon.vue +14 -0
  149. package/src/icons/WalkingIcon.vue +7 -0
  150. package/src/icons/WallIcon.vue +14 -0
  151. package/src/manager/buttonManager.js +5 -53
  152. package/src/manager/navbarManager.js +81 -0
  153. package/src/manager/toolbox/ToolboxGroupComponent.vue +128 -0
  154. package/src/manager/toolbox/ToolboxManager.vue +119 -76
  155. package/src/manager/toolbox/toolboxManager.js +204 -0
  156. package/src/manager/window/WindowComponentHeader.vue +1 -1
  157. package/src/manager/window/WindowManager.vue +18 -1
  158. package/src/manager/window/windowManager.js +3 -5
  159. package/src/navigation/mapNavigation.vue +9 -5
  160. package/src/navigation/orientationToolsButton.vue +1 -1
  161. package/src/navigation/tiltSlider.vue +1 -1
  162. package/src/styles/_theming.scss +10 -0
  163. package/src/styles/main.scss +3 -0
  164. package/src/styles/variables.scss +70 -0
  165. package/src/styles/vcsFont.scss +5 -0
  166. package/src/styles/vcsGrid.scss +4 -0
  167. package/src/vcsUiApp.js +4 -3
  168. package/src/vuePlugins/vuetify.js +1 -1
  169. package/dist/assets/core.98f9bb.js +0 -4
  170. package/dist/assets/ui.b7c1e3.css +0 -1
  171. package/dist/assets/ui.b7c1e3.js +0 -39
  172. package/dist/assets/uicomponents.682c5f.css +0 -1
  173. package/dist/assets/uicomponents.682c5f.js +0 -32
  174. package/dist/assets/uicomponents.js +0 -1
  175. package/lib/uicomponents.js +0 -1
  176. package/src/manager/toolbox/ToolboxMultiSelectButton.vue +0 -96
  177. package/src/manager/toolbox/ToolboxSingleSelectButton.vue +0 -98
  178. package/src/manager/toolbox/toolbox-manager.js +0 -203
@@ -0,0 +1,237 @@
1
+ <template>
2
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
3
+ <g id="Group_846" data-name="Group 846" transform="translate(0.5 0.5)">
4
+ <circle
5
+ id="Ellipse_87"
6
+ data-name="Ellipse 87"
7
+ cx="4"
8
+ cy="4"
9
+ r="4"
10
+ transform="translate(3)"
11
+ fill="none"
12
+ stroke="currentColor"
13
+ stroke-linecap="round"
14
+ stroke-linejoin="round"
15
+ stroke-miterlimit="10"
16
+ stroke-width="1"
17
+ />
18
+ <path
19
+ id="Path_436"
20
+ data-name="Path 436"
21
+ d="M14.5,15.5v-4a1,1,0,0,0-1-1H1.5a1,1,0,0,0-1,1v12"
22
+ transform="translate(-0.5 -0.5)"
23
+ fill="none"
24
+ stroke="currentColor"
25
+ stroke-linecap="round"
26
+ stroke-linejoin="round"
27
+ stroke-miterlimit="10"
28
+ stroke-width="1"
29
+ />
30
+ <path
31
+ id="Path_437"
32
+ data-name="Path 437"
33
+ d="M23.5,23.5v-7a1,1,0,0,0-1-1h-12a1,1,0,0,0-1,1v7"
34
+ transform="translate(-0.5 -0.5)"
35
+ fill="none"
36
+ stroke="currentColor"
37
+ stroke-linecap="round"
38
+ stroke-linejoin="round"
39
+ stroke-miterlimit="10"
40
+ stroke-width="1"
41
+ />
42
+ <line
43
+ id="Line_135"
44
+ data-name="Line 135"
45
+ x2="8"
46
+ transform="translate(3 13)"
47
+ fill="none"
48
+ stroke="currentColor"
49
+ stroke-linecap="round"
50
+ stroke-linejoin="round"
51
+ stroke-miterlimit="10"
52
+ stroke-width="1"
53
+ />
54
+ <line
55
+ id="Line_136"
56
+ data-name="Line 136"
57
+ x2="6"
58
+ transform="translate(3 16)"
59
+ fill="none"
60
+ stroke="currentColor"
61
+ stroke-linecap="round"
62
+ stroke-linejoin="round"
63
+ stroke-miterlimit="10"
64
+ stroke-width="1"
65
+ />
66
+ <line
67
+ id="Line_137"
68
+ data-name="Line 137"
69
+ x2="6"
70
+ transform="translate(3 19)"
71
+ fill="none"
72
+ stroke="currentColor"
73
+ stroke-linecap="round"
74
+ stroke-linejoin="round"
75
+ stroke-miterlimit="10"
76
+ stroke-width="1"
77
+ />
78
+ <line
79
+ id="Line_138"
80
+ data-name="Line 138"
81
+ y2="4"
82
+ transform="translate(7 2)"
83
+ fill="none"
84
+ stroke="currentColor"
85
+ stroke-linecap="round"
86
+ stroke-linejoin="round"
87
+ stroke-miterlimit="10"
88
+ stroke-width="1"
89
+ />
90
+ <line
91
+ id="Line_139"
92
+ data-name="Line 139"
93
+ x1="4"
94
+ transform="translate(5 4)"
95
+ fill="none"
96
+ stroke="currentColor"
97
+ stroke-linecap="round"
98
+ stroke-linejoin="round"
99
+ stroke-miterlimit="10"
100
+ stroke-width="1"
101
+ />
102
+ <line
103
+ id="Line_140"
104
+ data-name="Line 140"
105
+ y2="2"
106
+ transform="translate(7 8)"
107
+ fill="none"
108
+ stroke="currentColor"
109
+ stroke-linecap="round"
110
+ stroke-linejoin="round"
111
+ stroke-miterlimit="10"
112
+ stroke-width="1"
113
+ />
114
+ <line
115
+ id="Line_141"
116
+ data-name="Line 141"
117
+ x2="23"
118
+ transform="translate(0 23)"
119
+ fill="none"
120
+ stroke="currentColor"
121
+ stroke-linecap="round"
122
+ stroke-linejoin="round"
123
+ stroke-miterlimit="10"
124
+ stroke-width="1"
125
+ />
126
+ <rect
127
+ id="Rectangle_732"
128
+ data-name="Rectangle 732"
129
+ width="2"
130
+ height="2"
131
+ transform="translate(15 21)"
132
+ fill="none"
133
+ stroke="currentColor"
134
+ stroke-linecap="round"
135
+ stroke-linejoin="round"
136
+ stroke-miterlimit="10"
137
+ stroke-width="1"
138
+ />
139
+ <line
140
+ id="Line_142"
141
+ data-name="Line 142"
142
+ x2="1"
143
+ transform="translate(11 19)"
144
+ fill="none"
145
+ stroke="currentColor"
146
+ stroke-linecap="round"
147
+ stroke-linejoin="round"
148
+ stroke-miterlimit="10"
149
+ stroke-width="1"
150
+ />
151
+ <line
152
+ id="Line_143"
153
+ data-name="Line 143"
154
+ x1="1"
155
+ transform="translate(11 17)"
156
+ fill="none"
157
+ stroke="currentColor"
158
+ stroke-linecap="round"
159
+ stroke-linejoin="round"
160
+ stroke-miterlimit="10"
161
+ stroke-width="1"
162
+ />
163
+ <line
164
+ id="Line_144"
165
+ data-name="Line 144"
166
+ x2="1"
167
+ transform="translate(14 19)"
168
+ fill="none"
169
+ stroke="currentColor"
170
+ stroke-linecap="round"
171
+ stroke-linejoin="round"
172
+ stroke-miterlimit="10"
173
+ stroke-width="1"
174
+ />
175
+ <line
176
+ id="Line_145"
177
+ data-name="Line 145"
178
+ x1="1"
179
+ transform="translate(14 17)"
180
+ fill="none"
181
+ stroke="currentColor"
182
+ stroke-linecap="round"
183
+ stroke-linejoin="round"
184
+ stroke-miterlimit="10"
185
+ stroke-width="1"
186
+ />
187
+ <line
188
+ id="Line_146"
189
+ data-name="Line 146"
190
+ x2="1"
191
+ transform="translate(17 19)"
192
+ fill="none"
193
+ stroke="currentColor"
194
+ stroke-linecap="round"
195
+ stroke-linejoin="round"
196
+ stroke-miterlimit="10"
197
+ stroke-width="1"
198
+ />
199
+ <line
200
+ id="Line_147"
201
+ data-name="Line 147"
202
+ x1="1"
203
+ transform="translate(17 17)"
204
+ fill="none"
205
+ stroke="currentColor"
206
+ stroke-linecap="round"
207
+ stroke-linejoin="round"
208
+ stroke-miterlimit="10"
209
+ stroke-width="1"
210
+ />
211
+ <line
212
+ id="Line_148"
213
+ data-name="Line 148"
214
+ x2="1"
215
+ transform="translate(20 19)"
216
+ fill="none"
217
+ stroke="currentColor"
218
+ stroke-linecap="round"
219
+ stroke-linejoin="round"
220
+ stroke-miterlimit="10"
221
+ stroke-width="1"
222
+ />
223
+ <line
224
+ id="Line_149"
225
+ data-name="Line 149"
226
+ x1="1"
227
+ transform="translate(20 17)"
228
+ fill="none"
229
+ stroke="currentColor"
230
+ stroke-linecap="round"
231
+ stroke-linejoin="round"
232
+ stroke-miterlimit="10"
233
+ stroke-width="1"
234
+ />
235
+ </g>
236
+ </svg>
237
+ </template>
@@ -0,0 +1,25 @@
1
+ <!-- eslint-disable max-len -->
2
+
3
+ <template>
4
+ <svg
5
+ id="icon_24_house"
6
+ xmlns="http://www.w3.org/2000/svg"
7
+ xmlns:xlink="http://www.w3.org/1999/xlink"
8
+ width="24"
9
+ height="24"
10
+ viewBox="0 0 24 24"
11
+ >
12
+ <defs>
13
+ <clipPath id="clip-path">
14
+ <rect id="Rectangle_844" data-name="Rectangle 844" width="6" height="6" fill="currentColor" />
15
+ </clipPath>
16
+ </defs>
17
+ <rect id="size" width="24" height="24" fill="none" />
18
+ <path id="Path_532" data-name="Path 532" d="M21.362,8.505,12.266.474a1.936,1.936,0,0,0-2.542,0L.645,8.5A1.87,1.87,0,0,0,0,9.909V15H2V9.972l9-7.95,9,7.949V20H15V15a2,2,0,0,0-1.833-2H8.9A1.867,1.867,0,0,0,7.08,14.875V20h-1v2H7.255A1.868,1.868,0,0,0,9.08,20.125V15H13v5a.652.652,0,0,0-.011.133A1.886,1.886,0,0,0,14.845,22h5.288A1.893,1.893,0,0,0,22,20.117V9.9a1.872,1.872,0,0,0-.638-1.395" transform="translate(1 1)" fill="currentColor" />
19
+ <g id="Group_1445" data-name="Group 1445" transform="translate(0 17)">
20
+ <g id="Group_1444" data-name="Group 1444" clip-path="url(#clip-path)">
21
+ <path id="Path_533" data-name="Path 533" d="M3,0A3,3,0,1,0,6,3,3,3,0,0,0,3,0" fill="currentColor" />
22
+ </g>
23
+ </g>
24
+ </svg>
25
+ </template>
@@ -0,0 +1,8 @@
1
+ <!-- eslint-disable max-len -->
2
+
3
+ <template>
4
+ <svg id="icon_24_import" xmlns="http://www.w3.org/2000/svg" width="24.003" height="24" viewBox="0 0 24.003 24">
5
+ <path id="Union_20" data-name="Union 20" d="M10552.293,15354.1l-3.5-3.5a1,1,0,0,1,.705-1.707h1.749a.249.249,0,0,0,.251-.25v-7.248a1.5,1.5,0,0,1,3,0v7.252a.248.248,0,0,0,.25.246h1.75a1.018,1.018,0,0,1,.717.3,1,1,0,0,1-.008,1.414l-3.5,3.5a.99.99,0,0,1-1.41,0Zm-10.054-8.084a4.353,4.353,0,0,1-1.237-3.21,4.591,4.591,0,0,1,4.266-4.574.242.242,0,0,0,.224-.2,7.685,7.685,0,0,1,14.1-2.293.251.251,0,0,0,.193.119,5.7,5.7,0,0,1,3.444,1.584,5.8,5.8,0,0,1-3.4,9.938c-.042,0-.089.007-.131.007a1,1,0,0,1-.131-1.992,3.836,3.836,0,0,0,3.438-3.787,3.762,3.762,0,0,0-1.16-2.725,3.718,3.718,0,0,0-2.759-1.053.959.959,0,0,1-.94-.566,5.684,5.684,0,0,0-10.817,2.085,1.26,1.26,0,0,1-.019.143,1,1,0,0,1-1.184.778,2.594,2.594,0,0,0-3.121,2.536,2.409,2.409,0,0,0,.64,1.792,3.309,3.309,0,0,0,2.174.8,1,1,0,0,1,.026,2A5.525,5.525,0,0,1,10542.239,15346.02Z" transform="translate(-10540.999 -15331.008)" fill="currentColor" />
6
+ <rect id="size" width="24" height="24" transform="translate(0.001)" fill="none" />
7
+ </svg>
8
+ </template>
@@ -0,0 +1,10 @@
1
+ <!-- eslint-disable max-len -->
2
+
3
+ <template>
4
+ <svg xmlns="http://www.w3.org/2000/svg" width="13.907" height="13.907" viewBox="0 0 13.907 13.907">
5
+ <g id="info-circle" transform="translate(-2 -2)">
6
+ <path id="Path_440" data-name="Path 440" d="M8.954,2a6.954,6.954,0,1,0,6.954,6.954A6.962,6.962,0,0,0,8.954,2Zm0,12.517a5.563,5.563,0,1,1,5.563-5.563A5.569,5.569,0,0,1,8.954,14.517Z" fill="currentColor" />
7
+ <path id="Path_441" data-name="Path 441" d="M11,10.163h2v4.744H11ZM11,7h2V8.581H11Z" transform="translate(-3.046 -2)" fill="currentColor" />
8
+ </g>
9
+ </svg>
10
+ </template>
@@ -0,0 +1,36 @@
1
+ <!-- eslint-disable max-len -->
2
+
3
+ <template>
4
+ <svg id="icon-kebab" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
5
+ <g id="Group_860" data-name="Group 860" transform="translate(10 0) rotate(90)">
6
+ <circle
7
+ id="Ellipse_40"
8
+ data-name="Ellipse 40"
9
+ cx="2"
10
+ cy="2"
11
+ r="2"
12
+ transform="translate(0 0)"
13
+ fill="currentColor"
14
+ />
15
+ <circle
16
+ id="Ellipse_41"
17
+ data-name="Ellipse 41"
18
+ cx="2"
19
+ cy="2"
20
+ r="2"
21
+ transform="translate(6 0)"
22
+ fill="currentColor"
23
+ />
24
+ <circle
25
+ id="Ellipse_42"
26
+ data-name="Ellipse 42"
27
+ cx="2"
28
+ cy="2"
29
+ r="2"
30
+ transform="translate(12 0)"
31
+ fill="currentColor"
32
+ />
33
+ </g>
34
+ <rect id="size" width="16" height="16" fill="none" />
35
+ </svg>
36
+ </template>
@@ -0,0 +1,7 @@
1
+ <!-- eslint-disable max-len -->
2
+ <template>
3
+ <svg id="icon_24_type_element" xmlns="http://www.w3.org/2000/svg" width="24" height="24.018" viewBox="0 0 24 24.018">
4
+ <rect id="size" width="24" height="24" transform="translate(0 0.018)" fill="none" />
5
+ <path id="Union_50" data-name="Union 50" d="M18335.516,23247.385h.943a.256.256,0,0,0,.258-.258v-18.332a.256.256,0,0,0-.258-.258h-5.637a.256.256,0,0,0-.256.258v1.377a1.283,1.283,0,1,1-2.566,0v-1.949a2.265,2.265,0,0,1,2.252-2.264h15.5a2.266,2.266,0,0,1,2.252,2.264v1.949a1.284,1.284,0,1,1-2.568,0v-1.377a.256.256,0,0,0-.256-.258h-5.637a.256.256,0,0,0-.258.258v18.332a.256.256,0,0,0,.258.258h1.85a1.289,1.289,0,0,1,0,2.578l-5.877.006C18335.514,23249.951,18335.525,23247.4,18335.516,23247.385Zm-7.516-.414a3,3,0,1,1,3,3A3,3,0,0,1,18328,23246.971Zm7.514.414h0Z" transform="translate(-18326 -23225.959)" fill="currentColor" />
6
+ </svg>
7
+ </template>
@@ -0,0 +1,26 @@
1
+ <!-- eslint-disable max-len -->
2
+ <template>
3
+ <svg id="icon_24_layer" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
4
+ <rect id="size" width="24" height="24" fill="none" />
5
+ <g id="Gruppe_1965" data-name="Gruppe 1965" transform="translate(-590.995 -459.826)">
6
+ <path
7
+ id="Pfad_752"
8
+ data-name="Pfad 752"
9
+ d="M612.553,470.932l-9.558,4.776-9.559-4.776a1,1,0,1,0-.894,1.789l10.006,5a1,1,0,0,0,.894,0l10.005-5a1,1,0,1,0-.894-1.789Z"
10
+ fill="currentColor"
11
+ />
12
+ <path
13
+ id="Pfad_753"
14
+ data-name="Pfad 753"
15
+ d="M612.553,474.932l-9.558,4.776-9.559-4.776a1,1,0,1,0-.894,1.789l10.006,5a1,1,0,0,0,.894,0l10.005-5a1,1,0,1,0-.894-1.789Z"
16
+ fill="currentColor"
17
+ />
18
+ <path
19
+ id="Pfad_754"
20
+ data-name="Pfad 754"
21
+ d="M592.542,468.721l10.006,5a1,1,0,0,0,.894,0l10.005-5a1,1,0,0,0,0-1.789l-10.005-5a1,1,0,0,0-.894,0l-10.006,5a1,1,0,0,0,0,1.789Zm10.453-4.777,7.768,3.882-7.768,3.882-7.769-3.882Z"
22
+ fill="currentColor"
23
+ />
24
+ </g>
25
+ </svg>
26
+ </template>
@@ -0,0 +1,65 @@
1
+ <!-- eslint-disable max-len -->
2
+ <template>
3
+ <svg id="icon_24_legend" xmlns="http://www.w3.org/2000/svg" width="24" height="25.523" viewBox="0 0 24 25.523">
4
+ <rect id="size" width="24" height="24" transform="translate(0 1.523)" fill="none" />
5
+ <g id="Group_1711" data-name="Group 1711" transform="translate(-712 -904)">
6
+ <rect
7
+ id="size-2"
8
+ data-name="size"
9
+ width="24"
10
+ height="24"
11
+ transform="translate(712 904.521)"
12
+ fill="none"
13
+ />
14
+ <rect
15
+ id="Rectangle_747"
16
+ data-name="Rectangle 747"
17
+ width="6.677"
18
+ height="6.677"
19
+ rx="2"
20
+ transform="translate(713 921.323)"
21
+ fill="currentColor"
22
+ />
23
+ <path id="Polygon_8" data-name="Polygon 8" d="M3.474,0,6.947,5.955H0Z" transform="translate(713 904)" fill="currentColor" />
24
+ <circle
25
+ id="Ellipse_88"
26
+ data-name="Ellipse 88"
27
+ cx="3.338"
28
+ cy="3.338"
29
+ r="3.338"
30
+ transform="translate(713 912.677)"
31
+ fill="currentColor"
32
+ />
33
+ <line
34
+ id="Line_297"
35
+ data-name="Line 297"
36
+ x2="9"
37
+ transform="translate(724 907.978)"
38
+ fill="none"
39
+ stroke="currentColor"
40
+ stroke-linecap="round"
41
+ stroke-width="3"
42
+ />
43
+ <line
44
+ id="Line_298"
45
+ data-name="Line 298"
46
+ x2="9"
47
+ transform="translate(724 916.016)"
48
+ fill="none"
49
+ stroke="currentColor"
50
+ stroke-linecap="round"
51
+ stroke-width="3"
52
+ />
53
+ <line
54
+ id="Line_299"
55
+ data-name="Line 299"
56
+ x2="9"
57
+ transform="translate(724 924.053)"
58
+ fill="none"
59
+ stroke="currentColor"
60
+ stroke-linecap="round"
61
+ stroke-width="3"
62
+ />
63
+ </g>
64
+ </svg>
65
+ </template>
@@ -0,0 +1,7 @@
1
+ <!-- eslint-disable max-len -->
2
+ <template>
3
+ <svg id="icon_24_line" xmlns="http://www.w3.org/2000/svg" width="24" height="24.008" viewBox="0 0 24 24.008">
4
+ <path id="Union_1" data-name="Union 1" d="M0,21a3,3,0,1,1,3,3A3,3,0,0,1,0,21Zm7.03-2.97L5.969,16.97a.252.252,0,0,1,0-.355L16.616,5.97a.25.25,0,0,1,.355,0L18.03,7.03a.249.249,0,0,1,0,.354L7.384,18.03a.249.249,0,0,1-.354,0ZM18,3a3,3,0,1,1,3,3A3,3,0,0,1,18,3Z" fill="currentColor" />
5
+ <rect id="size" width="24" height="24" transform="translate(0 0.008)" fill="none" />
6
+ </svg>
7
+ </template>
@@ -0,0 +1,7 @@
1
+ <!-- eslint-disable max-len -->
2
+
3
+ <template>
4
+ <svg xmlns="http://www.w3.org/2000/svg" width="15.997" height="16" viewBox="0 0 15.997 16">
5
+ <path id="Path_79" data-name="Path 79" d="M9.587,11.452a.747.747,0,0,0-.406.975h0a.746.746,0,0,1-.162.814L6.908,15.354a1.493,1.493,0,0,1-2.111,0L3.213,13.77a1.493,1.493,0,0,1,0-2.111h0L5.327,9.547a.756.756,0,0,1,.814-.162A.747.747,0,1,0,6.711,8a2.264,2.264,0,0,0-2.44.487L2.158,10.6a2.99,2.99,0,0,0,0,4.223l1.584,1.583a2.985,2.985,0,0,0,4.222,0L10.076,14.3a2.245,2.245,0,0,0,.486-2.441A.747.747,0,0,0,9.587,11.452Zm-3.471,1a.755.755,0,0,0,1.056,0l5.807-5.806a.747.747,0,0,0-1.056-1.056L6.116,11.394A.747.747,0,0,0,6.116,12.45ZM16.41,3.74,14.827,2.157a2.99,2.99,0,0,0-4.223,0L8.492,4.268a2.244,2.244,0,0,0-.486,2.44.747.747,0,1,0,1.38-.57.747.747,0,0,1,.162-.811l2.111-2.111a1.493,1.493,0,0,1,2.111,0h0L15.355,4.8a1.493,1.493,0,0,1,0,2.111h0L13.24,9.019a.758.758,0,0,1-.814.162.747.747,0,0,0-.571,1.38h0a2.259,2.259,0,0,0,2.441-.486l2.111-2.111A2.991,2.991,0,0,0,16.41,3.74Z" transform="translate(-1.285 -1.284)" fill="currentColor" />
6
+ </svg>
7
+ </template>
@@ -0,0 +1,8 @@
1
+ <!-- eslint-disable max-len -->
2
+
3
+ <template>
4
+ <svg id="icon-map-overview" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
5
+ <rect id="size" width="16" height="16" fill="none" />
6
+ <path id="Path_20" data-name="Path 20" d="M15.5,2.074,11.459.224a1.262,1.262,0,0,0-.867-.038L5.255,2.076a.661.661,0,0,1-.374-.013L.772.221A.542.542,0,0,0,.239.249.56.56,0,0,0,0,.73L.013,13.411a.9.9,0,0,0,.5.782L4.6,16.031a1.225,1.225,0,0,0,.488.094,1.153,1.153,0,0,0,.377-.059l5.349-1.886a.638.638,0,0,1,.371.017l4.039,1.849h0a.531.531,0,0,0,.718-.234A.539.539,0,0,0,16,15.538V2.856A.907.907,0,0,0,15.5,2.074ZM1.666,10.489a.166.166,0,0,1,.165-.168.17.17,0,0,1,.058.01l3.043,1.125a.492.492,0,0,0,.333,0l1.679-.583a.168.168,0,0,1,.221.16v2.313a.17.17,0,0,1-.113.16l-1.7.583a1.061,1.061,0,0,1-.626-.018l-2.756-1.1a.538.538,0,0,1-.309-.462Zm6.2-.674a.727.727,0,0,0-.676-.089l-2.026.7a.162.162,0,0,1-.11,0L1.777,9.243a.169.169,0,0,1-.111-.159V7.149a.166.166,0,0,1,.228-.156l2.919,1.18A.489.489,0,0,0,5,8.209a.5.5,0,0,0,.122-.015L7.766,7.52a.506.506,0,0,0,.363-.614.5.5,0,0,0-.607-.367h0L6.5,6.8V6.091a.5.5,0,1,0-1,0v.964l-.467.119-1.2-.486v-1a.5.5,0,1,0-1,0v.6L1.775,5.892a.168.168,0,0,1-.109-.158V3.038A.212.212,0,0,1,1.849,2.8a.206.206,0,0,1,.126.025L4.742,3.958a1.043,1.043,0,0,0,.625.02L9.28,2.652a.164.164,0,0,1,.15.023A.168.168,0,0,1,9.5,2.81V6.091a.5.5,0,1,0,1,0V2.265l.2-.094a.933.933,0,0,1,.615.04l2.716,1.333a.59.59,0,0,1,.3.484V9.376a.169.169,0,0,1-.073.139.163.163,0,0,1-.154.018l-2.672-1.04a1.362,1.362,0,0,0-1.007.04l-.677.327a1.088,1.088,0,0,0-.584.937s-.013,2.312,0,2.874a.169.169,0,0,1-.113.162l-.662.23a.165.165,0,0,1-.211-.1.18.18,0,0,1-.009-.057V10.429a.746.746,0,0,0-.3-.618Zm2.317.064a.17.17,0,0,1,.095-.151l.583-.281a.422.422,0,0,1,.217-.009l3.148,1.19a.169.169,0,0,1,.109.158v2.372a.215.215,0,0,1-.186.238.211.211,0,0,1-.125-.024l-3-1.2-.632.214a.163.163,0,0,1-.151-.024.168.168,0,0,1-.067-.135Z" transform="translate(0.001 -0.127)" fill="currentColor" />
7
+ </svg>
8
+ </template>
@@ -0,0 +1,34 @@
1
+ <template>
2
+ <svg id="icon_24_burger" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
3
+ <rect id="size" width="24" height="24" fill="none" />
4
+ <g id="Group_1047" data-name="Group 1047" transform="translate(866 20294)">
5
+ <rect
6
+ id="Rectangle_206"
7
+ data-name="Rectangle 206"
8
+ width="24"
9
+ height="4"
10
+ rx="2"
11
+ transform="translate(-866 -20292)"
12
+ fill="currentColor"
13
+ />
14
+ <rect
15
+ id="Rectangle_207"
16
+ data-name="Rectangle 207"
17
+ width="24"
18
+ height="4"
19
+ rx="2"
20
+ transform="translate(-866 -20284)"
21
+ fill="currentColor"
22
+ />
23
+ <rect
24
+ id="Rectangle_209"
25
+ data-name="Rectangle 209"
26
+ width="24"
27
+ height="4"
28
+ rx="2"
29
+ transform="translate(-866 -20276)"
30
+ fill="currentColor"
31
+ />
32
+ </g>
33
+ </svg>
34
+ </template>
@@ -0,0 +1,8 @@
1
+ <!-- eslint-disable max-len -->
2
+
3
+ <template>
4
+ <svg id="icon-minus" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
5
+ <path id="Path_444" data-name="Path 444" d="M25,20a1.154,1.154,0,0,1-1.154,1.154H16.154a1.154,1.154,0,1,1,0-2.308h7.692A1.154,1.154,0,0,1,25,20Z" transform="translate(-12 -12)" fill="currentColor" />
6
+ <rect id="size" width="16" height="16" fill="none" />
7
+ </svg>
8
+ </template>
@@ -0,0 +1,18 @@
1
+ <!-- eslint-disable max-len -->
2
+
3
+ <template>
4
+ <svg
5
+ id="Group_507"
6
+ data-name="Group 507"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ width="24"
9
+ height="23.999"
10
+ viewBox="0 0 24 23.999"
11
+ >
12
+ <path id="Path_235" data-name="Path 235" d="M7.323,16.118a.5.5,0,0,0-.647,0l-6.5,5.5A.5.5,0,0,0,.5,22.5h1A.5.5,0,0,1,2,23v4.5a.5.5,0,0,0,.5.5H5a.5.5,0,0,0,.5-.5v-2.25a1.5,1.5,0,0,1,3,0V27.5A.5.5,0,0,0,9,28h2.5a.5.5,0,0,0,.5-.5V23a.5.5,0,0,1,.5-.5h1a.5.5,0,0,0,.324-.882Z" transform="translate(0.001 -4)" fill="currentColor" />
13
+ <path id="Path_236" data-name="Path 236" d="M8,13h5.5a1,1,0,1,0,0-2H8a1,1,0,0,0,0,2Z" transform="translate(-1.75 -2.75)" fill="currentColor" />
14
+ <path id="Path_237" data-name="Path 237" d="M29.208,1.586,27.915.293a1,1,0,0,0-1.415,0L22.147,4.646a.5.5,0,0,0,0,.707l2,2a.5.5,0,0,0,.707,0L29.208,3a1,1,0,0,0,0-1.414Z" transform="translate(-5.501 0)" fill="currentColor" />
15
+ <path id="Path_238" data-name="Path 238" d="M20.521,8.146a.492.492,0,0,0-.469-.133.5.5,0,0,0-.359.329l-1,3a.5.5,0,0,0,.633.632l3-1a.5.5,0,0,0,.2-.828Z" transform="translate(-4.667 -2)" fill="currentColor" />
16
+ <path id="Path_239" data-name="Path 239" d="M2,13H3.5a1,1,0,1,0,0-2H2a1,1,0,0,0,0,2Z" transform="translate(-0.25 -2.75)" fill="currentColor" />
17
+ </svg>
18
+ </template>
@@ -0,0 +1,8 @@
1
+ <!-- eslint-disable max-len -->
2
+
3
+ <template>
4
+ <svg id="main-icon" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
5
+ <rect id="size" width="24" height="24" fill="none" />
6
+ <path id="Mouse_Pointer" data-name="Mouse Pointer" d="M13.846,23.8a.45.45,0,0,1-.409-.245l-2.7-5.728L7.055,20.031a.372.372,0,0,1-.409,0A.438.438,0,0,1,6.4,19.7V1.7a.45.45,0,0,1,.245-.409.36.36,0,0,1,.409.082L20.147,14.467c.082.082.164.327.082.409a.45.45,0,0,1-.409.245H15.565L18.511,21.1a.249.249,0,0,1,0,.327c-.082.082-.082.164-.245.245-3.787,1.881-4.337,2.128-4.419,2.128Z" transform="translate(-1.4 -0.259)" fill="currentColor" />
7
+ </svg>
8
+ </template>
@@ -0,0 +1,13 @@
1
+ <!-- eslint-disable max-len -->
2
+ <template>
3
+ <svg id="icon_24_oblique" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
4
+ <rect id="size" width="24" height="24" fill="none" />
5
+ <path
6
+ id="Pfad_751"
7
+ data-name="Pfad 751"
8
+ d="M650,461H636a1,1,0,0,0-.707.293l-4,4A1,1,0,0,0,631,466v14a1,1,0,0,0,1,1h14a1,1,0,0,0,.707-.293l4-4A1,1,0,0,0,651,476V462A1,1,0,0,0,650,461Zm-1,14h-2v-8.586l2-2Zm-1.414,2-.586.586V477ZM635,475.586l-2,2V467h2ZM634.414,465l.586-.586V465ZM637,467h8v8h-8Zm10.586-4-2,2H637v-2Zm-13.172,16,2-2H645v2Z"
9
+ transform="translate(-629 -459)"
10
+ fill="currentColor"
11
+ />
12
+ </svg>
13
+ </template>
@@ -0,0 +1,10 @@
1
+ <!-- eslint-disable max-len -->
2
+
3
+ <template>
4
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
5
+ <g id="icon-pdf" transform="translate(0 0)">
6
+ <path id="Path_80" data-name="Path 80" d="M5.634,8.215c-.07-.031-.217-.032-.217.109v2.652a.159.159,0,0,0,.218.14,1.583,1.583,0,0,0,0-2.9ZM2.667,8.082H2.251a.168.168,0,0,0-.168.168v.831a.168.168,0,0,0,.168.168h.415a.583.583,0,1,0,0-1.167ZM12,12.667v-6A.667.667,0,0,0,11.333,6H.667A.667.667,0,0,0,0,6.667v6a.667.667,0,0,0,.667.667H11.333A.667.667,0,0,0,12,12.667ZM2.667,10.082H2.251a.168.168,0,0,0-.168.168v1.417a.417.417,0,1,1-.833,0v-4a.417.417,0,0,1,.417-.417h1a1.417,1.417,0,0,1,0,2.833Zm2.333,2a.417.417,0,0,1-.417-.417v-4A.417.417,0,0,1,5,7.249a2.417,2.417,0,0,1,0,4.833Zm5.333-4H9a.25.25,0,0,0-.25.25v.749a.168.168,0,0,0,.168.168h.749a.417.417,0,0,1,0,.833H8.918a.168.168,0,0,0-.168.168v1.417a.417.417,0,1,1-.833,0V8.333A1.084,1.084,0,0,1,9,7.249h1.333a.417.417,0,0,1,0,.833ZM15.8,3.8,12.2.194A.666.666,0,0,0,11.723,0H4A1.333,1.333,0,0,0,2.667,1.333V5.167a.167.167,0,0,0,.167.167h1A.167.167,0,0,0,4,5.167H4v-3.5a.333.333,0,0,1,.333-.333h6.833a.167.167,0,0,1,.167.167V3.333a1.333,1.333,0,0,0,1.333,1.333H14.5a.167.167,0,0,1,.167.167v9.5a.333.333,0,0,1-.333.333H4.167A.167.167,0,0,1,4,14.5v-.333A.165.165,0,0,0,3.836,14h-1a.167.167,0,0,0-.167.167v.5A1.333,1.333,0,0,0,4,16H14.667A1.333,1.333,0,0,0,16,14.667V4.275A.665.665,0,0,0,15.8,3.8Z" fill="currentColor" />
7
+ <rect id="size" width="16" height="16" fill="none" />
8
+ </g>
9
+ </svg>
10
+ </template>
@@ -0,0 +1,8 @@
1
+ <!-- eslint-disable max-len -->
2
+
3
+ <template>
4
+ <svg id="icon-streatview" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
5
+ <path id="Path_7" data-name="Path 7" d="M9.731.784A1.828,1.828,0,0,1,11.6,2.567a1.872,1.872,0,0,1-3.74,0A1.828,1.828,0,0,1,9.731.784ZM11.37,8.2a6.486,6.486,0,0,0,1.809.9l.88.28a1.176,1.176,0,0,0,.355.055,1.066,1.066,0,0,0,.3-2.1l-.827-.262a4.2,4.2,0,0,1-1.17-.585l-.76-.543A4.438,4.438,0,0,0,7.5,5.558,4.494,4.494,0,0,0,4.869,9.531,1.088,1.088,0,0,0,5.9,10.679c.029,0,.058,0,.088,0A1.1,1.1,0,0,0,7.113,9.665a2.409,2.409,0,0,1,1.213-2.1.193.193,0,0,1,.257.06.164.164,0,0,1,.027.093v.968a13.235,13.235,0,0,1-.346,3.008,8.9,8.9,0,0,1-1.655,3.352,1.037,1.037,0,0,0,.176,1.5,1.16,1.16,0,0,0,1.578-.168,12.131,12.131,0,0,0,1.915-3.786.192.192,0,0,1,.324-.058,11.634,11.634,0,0,1,1.807,3.514,1.118,1.118,0,0,0,1.065.732,1.15,1.15,0,0,0,.355-.056,1.06,1.06,0,0,0,.711-1.353v0a12.176,12.176,0,0,0-3.417-5.362.7.7,0,0,1-.266-.538V8.186a.183.183,0,0,1,.187-.178.2.2,0,0,1,.112.036Z" transform="translate(-2.199 -0.783)" fill="currentColor" />
6
+ <rect id="size" width="16" height="16" fill="none" />
7
+ </svg>
8
+ </template>
@@ -0,0 +1,14 @@
1
+ <!-- eslint-disable max-len -->
2
+ <template>
3
+ <svg
4
+ id="streamline-icon-vectors-pen_24x24"
5
+ data-name="streamline-icon-vectors-pen@24x24"
6
+ xmlns="http://www.w3.org/2000/svg"
7
+ width="14.622"
8
+ height="24"
9
+ viewBox="0 0 14.622 24"
10
+ >
11
+ <path id="Path_2" data-name="Path 2" d="M19.171,12.755A2.548,2.548,0,0,0,19,10.148L16.521,6.562a.508.508,0,0,0-.419-.219H8.178a.508.508,0,0,0-.419.219L5.278,10.148a2.55,2.55,0,0,0-.172,2.607L10.78,23.9a1.5,1.5,0,0,0,.14.224.255.255,0,0,0,.459-.153V14.665a.51.51,0,0,0-.255-.442,2.039,2.039,0,1,1,2.039,0,.51.51,0,0,0-.255.442v9.307a.255.255,0,0,0,.459.153,1.5,1.5,0,0,0,.14-.224ZM15.706,5.323a.51.51,0,0,0,.494-.386L17.219.86a.51.51,0,0,0-.494-.633H7.552a.51.51,0,0,0-.51.51A.5.5,0,0,0,7.057.86L8.076,4.937a.51.51,0,0,0,.494.386Z" transform="translate(-4.827 -0.227)" fill="currentColor" />
12
+ </svg>
13
+ </template>
14
+
@@ -0,0 +1,10 @@
1
+ <!-- eslint-disable max-len -->
2
+ <template>
3
+ <svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30">
4
+ <path id="Path_89" data-name="Path 89" d="M22.437,17.192,12.6,22.112h0a1.333,1.333,0,0,1-1.929-1.192V11.077a1.333,1.333,0,0,1,1.928-1.193L22.439,14.8a1.333,1.333,0,0,1,0,2.391Z" transform="translate(-1 -1)" fill="currentColor" />
5
+ <g id="Ellipse_71" data-name="Ellipse 71" fill="none" stroke="currentColor" stroke-width="2">
6
+ <circle cx="15" cy="15" r="15" stroke="none" />
7
+ <circle cx="15" cy="15" r="14" fill="none" />
8
+ </g>
9
+ </svg>
10
+ </template>
@@ -0,0 +1,9 @@
1
+ <!-- eslint-disable max-len -->
2
+
3
+ <template>
4
+ <svg id="icon-plus" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
5
+ <path id="Path_444" data-name="Path 444" d="M25,20a1.154,1.154,0,0,1-1.154,1.154H21.538a.385.385,0,0,0-.385.385v2.308a1.154,1.154,0,0,1-2.308,0V21.538a.385.385,0,0,0-.385-.385H16.154a1.154,1.154,0,1,1,0-2.308h2.308a.385.385,0,0,0,.385-.385V16.154a1.154,1.154,0,1,1,2.308,0v2.308a.385.385,0,0,0,.385.385h2.308A1.154,1.154,0,0,1,25,20Z" transform="translate(-12 -12)" fill="currentColor" />
6
+ <rect id="size" width="16" height="16" fill="none" />
7
+ </svg>
8
+ </template>
9
+
@@ -0,0 +1,7 @@
1
+ <!-- eslint-disable max-len -->
2
+
3
+ <template>
4
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="23.994" viewBox="0 0 16 23.994">
5
+ <path id="Path_306" data-name="Path 306" d="M12,.006A8.008,8.008,0,0,0,4,8c0,4.243,7.273,15.3,7.583,15.771a.5.5,0,0,0,.834,0C12.727,23.307,20,12.247,20,8A8.008,8.008,0,0,0,12,.006Zm0,11.5A3.5,3.5,0,1,1,15.5,8,3.5,3.5,0,0,1,12,11.5Z" transform="translate(-4 -0.006)" fill="currentColor" />
6
+ </svg>
7
+ </template>
@@ -0,0 +1,7 @@
1
+ <!-- eslint-disable max-len -->
2
+
3
+ <template>
4
+ <svg xmlns="http://www.w3.org/2000/svg" width="13.863" height="22.537" viewBox="0 0 13.863 22.537">
5
+ <path id="Outline" d="M13.846,23.8a.45.45,0,0,1-.409-.245l-2.7-5.728L7.055,20.031a.372.372,0,0,1-.409,0A.438.438,0,0,1,6.4,19.7V1.7a.45.45,0,0,1,.245-.409.36.36,0,0,1,.409.082L20.147,14.467c.082.082.164.327.082.409a.45.45,0,0,1-.409.245H15.565L18.511,21.1a.249.249,0,0,1,0,.327c-.082.082-.082.164-.245.245-3.974,1.881-4.337,2.128-4.419,2.128ZM10.982,16.84h.082q.123,0,.245.245l2.7,5.81,3.764-1.718-3.028-6.219a.372.372,0,0,1,0-.409.327.327,0,0,1,.327-.164H19L7.3,2.684V18.968l3.437-2.046A.3.3,0,0,1,10.982,16.84Z" fill="currentColor" transform="translate(-6.4 -1.259)" />
6
+ </svg>
7
+ </template>