@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,18 @@
1
+ <!-- eslint-disable max-len -->
2
+
3
+ <template>
4
+ <svg id="icon_24_3D_distance" xmlns="http://www.w3.org/2000/svg" width="24" height="24.104" viewBox="0 0 24 24.104">
5
+ <rect id="size" width="24" height="24" fill="none" />
6
+ <path id="Path_680" data-name="Path 680" d="M-8.552-3.336v.8q.208,0,.436.012a1.323,1.323,0,0,1,.42.088.711.711,0,0,1,.316.244.814.814,0,0,1,.124.488.82.82,0,0,1-.264.644.937.937,0,0,1-.648.236A.965.965,0,0,1-8.6-.912a.875.875,0,0,1-.3-.236A1.052,1.052,0,0,1-9.08-1.5a1.616,1.616,0,0,1-.072-.428h-1.08a2.244,2.244,0,0,0,.14.864,1.755,1.755,0,0,0,.42.636,1.8,1.8,0,0,0,.66.4A2.586,2.586,0,0,0-8.152.1a2.563,2.563,0,0,0,.784-.12A2.032,2.032,0,0,0-6.7-.368a1.712,1.712,0,0,0,.46-.576,1.73,1.73,0,0,0,.172-.784,1.314,1.314,0,0,0-.264-.824A1.219,1.219,0,0,0-7.064-3v-.016a.983.983,0,0,0,.588-.424,1.325,1.325,0,0,0,.2-.72,1.293,1.293,0,0,0-.168-.664,1.624,1.624,0,0,0-.436-.488,1.913,1.913,0,0,0-.6-.3,2.345,2.345,0,0,0-.672-.1,2.1,2.1,0,0,0-.784.14,1.736,1.736,0,0,0-.6.4,1.8,1.8,0,0,0-.392.612,2.38,2.38,0,0,0-.156.788h1.08A1.1,1.1,0,0,1-8.8-4.492a.774.774,0,0,1,.652-.284.859.859,0,0,1,.552.192.666.666,0,0,1,.24.552.594.594,0,0,1-.116.384.745.745,0,0,1-.3.22,1.234,1.234,0,0,1-.388.092A2.4,2.4,0,0,1-8.552-3.336Zm4.432,2.28v-3.6h.9a2.028,2.028,0,0,1,.78.132,1.224,1.224,0,0,1,.508.38,1.556,1.556,0,0,1,.276.6,3.33,3.33,0,0,1,.084.78,2.34,2.34,0,0,1-.12.8,1.467,1.467,0,0,1-.32.532,1.162,1.162,0,0,1-.456.292A1.613,1.613,0,0,1-3-1.056ZM-5.376-5.712V0h2.464a2.734,2.734,0,0,0,1.14-.22,2.268,2.268,0,0,0,.808-.6A2.535,2.535,0,0,0-.48-1.736,3.957,3.957,0,0,0-.32-2.888a3.56,3.56,0,0,0-.2-1.24,2.438,2.438,0,0,0-.544-.88,2.231,2.231,0,0,0-.824-.528,2.941,2.941,0,0,0-1.028-.176Z" transform="translate(24 24)" fill="currentColor" />
7
+ <path
8
+ id="Union_53"
9
+ data-name="Union 53"
10
+ d="M10956.373,13156.8h-11.986a1.387,1.387,0,0,1-1.387-1.39v-3.467a1.386,1.386,0,0,1,1.387-1.387h19.1a1.387,1.387,0,0,1,1.388,1.387v3.467a1.387,1.387,0,0,1-1.388,1.39Zm-11.986-4.51v2.773a.349.349,0,0,0,.347.347h18.411a.346.346,0,0,0,.347-.347v-2.773a.346.346,0,0,0-.347-.347h-2.255a.347.347,0,0,0-.347.347v.693a.52.52,0,0,1-1.04,0v-.693a.347.347,0,0,0-.347-.347h-.693a.35.35,0,0,0-.351.347v.693a.52.52,0,0,1-1.04,0v-.693a.346.346,0,0,0-.347-.347h-.71a.347.347,0,0,0-.347.347v.693a.52.52,0,0,1-1.04,0v-.693a.347.347,0,0,0-.347-.347h-.693a.347.347,0,0,0-.347.347v.693a.52.52,0,0,1-1.04,0v-.693a.347.347,0,0,0-.347-.347h-.7a.347.347,0,0,0-.347.347v.693a.52.52,0,0,1-1.04,0v-.693a.347.347,0,0,0-.347-.347h-.7a.343.343,0,0,0-.343.347v.693a.522.522,0,0,1-1.044,0v-.693a.347.347,0,0,0-.347-.347h-2.255A.349.349,0,0,0,10944.387,13152.286Zm.7,1.387a.694.694,0,1,1,.693.693A.693.693,0,0,1,10945.083,13153.673Zm17.382-5.376v-.35a.347.347,0,0,0-.347-.347h-16.342a.347.347,0,0,0-.347.347v.35a.522.522,0,0,1-.891.366l-1.388-1.387a.525.525,0,0,1,0-.736l1.388-1.387a.52.52,0,0,1,.891.367v.347a.347.347,0,0,0,.347.347h16.342a.347.347,0,0,0,.347-.347v-.347a.52.52,0,0,1,.888-.367l1.388,1.387a.519.519,0,0,1,0,.736l-1.388,1.387a.52.52,0,0,1-.888-.366Z"
11
+ transform="translate(-10942 -13140.795)"
12
+ fill="currentColor"
13
+ stroke="rgba(0,0,0,0)"
14
+ stroke-miterlimit="10"
15
+ stroke-width="1"
16
+ />
17
+ </svg>
18
+ </template>
@@ -0,0 +1,18 @@
1
+ <!-- eslint-disable max-len -->
2
+
3
+ <template>
4
+ <svg id="icon_24_3D_height" xmlns="http://www.w3.org/2000/svg" width="24" height="24.104" viewBox="0 0 24 24.104">
5
+ <rect id="size" width="24" height="24" fill="none" />
6
+ <path id="Path_678" data-name="Path 678" d="M-8.552-3.336v.8q.208,0,.436.012a1.323,1.323,0,0,1,.42.088.711.711,0,0,1,.316.244.814.814,0,0,1,.124.488.82.82,0,0,1-.264.644.937.937,0,0,1-.648.236A.965.965,0,0,1-8.6-.912a.875.875,0,0,1-.3-.236A1.052,1.052,0,0,1-9.08-1.5a1.616,1.616,0,0,1-.072-.428h-1.08a2.244,2.244,0,0,0,.14.864,1.755,1.755,0,0,0,.42.636,1.8,1.8,0,0,0,.66.4A2.586,2.586,0,0,0-8.152.1a2.563,2.563,0,0,0,.784-.12A2.032,2.032,0,0,0-6.7-.368a1.712,1.712,0,0,0,.46-.576,1.73,1.73,0,0,0,.172-.784,1.314,1.314,0,0,0-.264-.824A1.219,1.219,0,0,0-7.064-3v-.016a.983.983,0,0,0,.588-.424,1.325,1.325,0,0,0,.2-.72,1.293,1.293,0,0,0-.168-.664,1.624,1.624,0,0,0-.436-.488,1.913,1.913,0,0,0-.6-.3,2.345,2.345,0,0,0-.672-.1,2.1,2.1,0,0,0-.784.14,1.736,1.736,0,0,0-.6.4,1.8,1.8,0,0,0-.392.612,2.38,2.38,0,0,0-.156.788h1.08A1.1,1.1,0,0,1-8.8-4.492a.774.774,0,0,1,.652-.284.859.859,0,0,1,.552.192.666.666,0,0,1,.24.552.594.594,0,0,1-.116.384.745.745,0,0,1-.3.22,1.234,1.234,0,0,1-.388.092A2.4,2.4,0,0,1-8.552-3.336Zm4.432,2.28v-3.6h.9a2.028,2.028,0,0,1,.78.132,1.224,1.224,0,0,1,.508.38,1.556,1.556,0,0,1,.276.6,3.33,3.33,0,0,1,.084.78,2.34,2.34,0,0,1-.12.8,1.467,1.467,0,0,1-.32.532,1.162,1.162,0,0,1-.456.292A1.613,1.613,0,0,1-3-1.056ZM-5.376-5.712V0h2.464a2.734,2.734,0,0,0,1.14-.22,2.268,2.268,0,0,0,.808-.6A2.535,2.535,0,0,0-.48-1.736,3.957,3.957,0,0,0-.32-2.888a3.56,3.56,0,0,0-.2-1.24,2.438,2.438,0,0,0-.544-.88,2.231,2.231,0,0,0-.824-.528,2.941,2.941,0,0,0-1.028-.176Z" transform="translate(24 24)" fill="currentColor" />
7
+ <path
8
+ id="Union_54"
9
+ data-name="Union 54"
10
+ d="M10944.387,13167.025a1.387,1.387,0,0,1-1.388-1.388v-19.106a1.387,1.387,0,0,1,1.388-1.388h3.47a1.388,1.388,0,0,1,1.389,1.388v19.106a1.388,1.388,0,0,1-1.389,1.388Zm0-20.147v18.41a.349.349,0,0,0,.348.35h2.775a.349.349,0,0,0,.347-.35v-2.254a.348.348,0,0,0-.347-.348h-.694a.52.52,0,0,1,0-1.04h.694a.346.346,0,0,0,.347-.344v-.7a.347.347,0,0,0-.347-.348h-.694a.521.521,0,0,1,0-1.041h.694a.347.347,0,0,0,.347-.347v-.707a.35.35,0,0,0-.347-.351h-.694a.519.519,0,0,1,0-1.037h.694a.349.349,0,0,0,.347-.347v-.694a.347.347,0,0,0-.347-.347h-.694a.521.521,0,0,1,0-1.041h.694a.347.347,0,0,0,.347-.348v-.7a.347.347,0,0,0-.347-.348h-.694a.52.52,0,0,1,0-1.04h.694a.347.347,0,0,0,.347-.344v-.7a.344.344,0,0,0-.347-.344h-.694a.522.522,0,0,1,0-1.045h.694a.346.346,0,0,0,.347-.343v-2.258a.349.349,0,0,0-.347-.347h-2.775A.349.349,0,0,0,10944.387,13146.878Zm8.338,19.863-1.389-1.388a.521.521,0,0,1,.367-.889h.347a.347.347,0,0,0,.348-.347v-16.345a.347.347,0,0,0-.348-.344h-.347a.51.51,0,0,1-.367-.155.518.518,0,0,1,0-.733l1.389-1.388a.518.518,0,0,1,.736,0l1.385,1.388a.506.506,0,0,1,.152.367.52.52,0,0,1-.52.521h-.347a.347.347,0,0,0-.347.344v16.345a.347.347,0,0,0,.347.347h.347a.521.521,0,0,1,.367.889l-1.385,1.388a.523.523,0,0,1-.369.151A.513.513,0,0,1,10952.725,13166.741Zm-7.3-18.822a.694.694,0,1,1,.694.694A.694.694,0,0,1,10945.428,13147.919Z"
11
+ transform="translate(-10942 -13144.023)"
12
+ fill="currentColor"
13
+ stroke="rgba(0,0,0,0)"
14
+ stroke-miterlimit="10"
15
+ stroke-width="1"
16
+ />
17
+ </svg>
18
+ </template>
@@ -0,0 +1,8 @@
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
+ <path id="Path_11" data-name="Path 11" d="M15.333,14.667H9.142a.167.167,0,0,1-.167-.157,8.333,8.333,0,0,0-7.491-7.8.167.167,0,0,1-.151-.166V.667A.667.667,0,0,0,0,.667V15.333A.667.667,0,0,0,.667,16H15.333a.667.667,0,1,0,0-1.333ZM5.157,9.644a.165.165,0,0,1,.059.12.167.167,0,0,1-.049.125L3.862,11.2a.667.667,0,0,0,.943.943l1.267-1.267a.166.166,0,0,1,.235,0,.174.174,0,0,1,.018.021,6.948,6.948,0,0,1,1.316,3.6.166.166,0,0,1-.154.178H2.679a.167.167,0,0,1-.118-.285l.577-.577a.667.667,0,0,0-.943-.943l-.577.577a.167.167,0,0,1-.285-.117v-5.1a.169.169,0,0,1,.056-.125.171.171,0,0,1,.133-.041A6.958,6.958,0,0,1,5.157,9.644ZM8.138,8.8,9.471,7.471a.667.667,0,0,0-.943-.943L7.2,7.862a.667.667,0,0,0,.943.943Zm3.333-3.333L12.8,4.138a.667.667,0,1,0-.926-.959l-.017.017L10.529,4.529a.667.667,0,0,0,.943.943ZM14.8,2.138l1-1A.667.667,0,0,0,14.862.2l-1,1a.667.667,0,0,0,.943.943Z" fill="currentColor" />
6
+ </svg>
7
+ </template>
8
+
@@ -0,0 +1,34 @@
1
+ <!-- eslint-disable max-len -->
2
+
3
+ <template>
4
+ <svg xmlns="http://www.w3.org/2000/svg" width="21" height="24" viewBox="0 0 21 24">
5
+ <g id="Outline_Icons" transform="translate(0.5 0.5)">
6
+ <g id="Group_847" data-name="Group 847">
7
+ <path
8
+ id="Path_438"
9
+ data-name="Path 438"
10
+ d="M16.487,2.875a6.375,6.375,0,0,1-4.979-2.4h-.017a6.374,6.374,0,0,1-4.978,2.4A8.711,8.711,0,0,1,1.5,1V15.812s1.45,5.271,10,7.667c8.55-2.4,10-7.667,10-7.667V1A8.713,8.713,0,0,1,16.487,2.875Z"
11
+ transform="translate(-1.5 -0.479)"
12
+ fill="none"
13
+ stroke="currentColor"
14
+ stroke-linecap="round"
15
+ stroke-linejoin="round"
16
+ stroke-miterlimit="10"
17
+ stroke-width="1"
18
+ />
19
+ <path
20
+ id="Path_439"
21
+ data-name="Path 439"
22
+ d="M16.5,9.5h-3v-3h-4v3h-3v4h3v3h4v-3h3Z"
23
+ transform="translate(-1.5 -0.479)"
24
+ fill="none"
25
+ stroke="currentColor"
26
+ stroke-linecap="round"
27
+ stroke-linejoin="round"
28
+ stroke-miterlimit="10"
29
+ stroke-width="1"
30
+ />
31
+ </g>
32
+ </g>
33
+ </svg>
34
+ </template>
@@ -0,0 +1,10 @@
1
+ <!-- eslint-disable max-len -->
2
+
3
+ <template>
4
+ <svg xmlns="http://www.w3.org/2000/svg" width="14.456" height="14.02" viewBox="0 0 14.456 14.02">
5
+ <path id="Path_716" data-name="Path 716" d="M.114-2.886V-4.02h3.18v1.134l-1.3,1.65v.1h1.3V0H.114V-1.08l1.332-1.7v-.1Z" transform="translate(-0.114 14.02)" fill="currentColor" />
6
+ <path id="Path_715" data-name="Path 715" d="M1.368-4.02l.366,1.1L2.2-4.02H3.57L2.7-2.106,3.516,0H2.088L1.734-1.068,1.368,0H-.048L.81-1.926-.048-4.02Z" transform="translate(10.886 14.02)" fill="currentColor" />
7
+ <path id="Path_717" data-name="Path 717" d="M2.46,0H1.068V-1.26L-.078-4.02H1.4l.378,1.182.39-1.182h1.47L2.46-1.26Z" transform="translate(5.186 4.02)" fill="currentColor" />
8
+ <path id="Path_718" data-name="Path 718" d="M328.277,1221.584l-2.777-1.852V1216a.5.5,0,0,0-1,0v3.692l-2.66,1.9a.5.5,0,0,0,.291.907.5.5,0,0,0,.29-.093l2.553-1.824,2.749,1.833a.5.5,0,0,0,.693-.139A.5.5,0,0,0,328.277,1221.584Z" transform="translate(-318.1 -1210.48)" fill="currentColor" />
9
+ </svg>
10
+ </template>
@@ -0,0 +1,15 @@
1
+ <!-- eslint-disable max-len -->
2
+
3
+ <template>
4
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24.009" viewBox="0 0 24 24.009">
5
+ <g id="icon_24_boundingbox" transform="translate(0 0.001)">
6
+ <g id="Group_270" data-name="Group 270" transform="translate(8438 22444)">
7
+ <g id="streamline-icon-vectors-anchor-square-1-alternate_24x24" data-name="streamline-icon-vectors-anchor-square-1-alternate@24x24" transform="translate(-8438 -22444)">
8
+ <path id="Path_23" data-name="Path 23" d="M20.25,7.5h1.5a.25.25,0,0,1,.25.25v14a.25.25,0,0,1-.25.25h-1.5a.25.25,0,0,1-.25-.25v-14A.25.25,0,0,1,20.25,7.5ZM2.25,2h14a.25.25,0,0,1,.25.25v1.5a.25.25,0,0,1-.25.25h-14A.25.25,0,0,1,2,3.75V2.25A.25.25,0,0,1,2.25,2Zm0,0h1.5A.25.25,0,0,1,4,2.25v14a.25.25,0,0,1-.25.25H2.25A.25.25,0,0,1,2,16.25v-14A.25.25,0,0,1,2.25,2Zm5.5,18h14a.25.25,0,0,1,.25.25v1.5a.25.25,0,0,1-.25.25h-14a.25.25,0,0,1-.25-.25v-1.5A.25.25,0,0,1,7.75,20ZM21,0a3,3,0,1,1-3,3A3,3,0,0,1,21,0ZM3,18a3,3,0,1,1-3,3A3,3,0,0,1,3,18Z" fill="currentColor" />
9
+ </g>
10
+ <path id="Path_3" data-name="Path 3" d="M45.718,31.78A.75.75,0,0,0,47,31.25v-.5a.5.5,0,0,1,.5-.5h7.555a.5.5,0,0,1,.5.5v.5a.75.75,0,0,0,1.28.53l2-2a.75.75,0,0,0,0-1.061h0l-2-2a.75.75,0,0,0-1.28.531v.5a.5.5,0,0,1-.5.5H47.5a.5.5,0,0,1-.5-.5v-.5a.75.75,0,0,0-1.28-.531l-2,2a.75.75,0,0,0,0,1.061h0Z" transform="translate(-8483.164 -22416.676) rotate(-45)" fill="currentColor" />
11
+ </g>
12
+ <rect id="size" width="24" height="24" transform="translate(0 0.008)" fill="none" />
13
+ </g>
14
+ </svg>
15
+ </template>
@@ -0,0 +1,16 @@
1
+ <!-- eslint-disable max-len -->
2
+
3
+ <template>
4
+ <svg id="icon-checkbox-check" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
5
+ <rect
6
+ id="bg"
7
+ width="12"
8
+ height="12"
9
+ rx="1"
10
+ transform="translate(2 2)"
11
+ fill="rgba(34,34,34,0.8)"
12
+ />
13
+ <path id="hook" d="M13.525,6.363a.776.776,0,0,0-1.1.171h0L8.68,11.741,6.3,9.789a.778.778,0,0,0-1.108.15.825.825,0,0,0,.121,1.114l3.021,2.478a.784.784,0,0,0,1.12-.141l.009-.012L13.695,7.5a.824.824,0,0,0-.17-1.132Z" transform="translate(-1.364 -1.831)" fill="#fff" />
14
+ <rect id="size" width="16" height="16" fill="none" />
15
+ </svg>
16
+ </template>
@@ -0,0 +1,23 @@
1
+ <template>
2
+ <svg id="icon-checkbox-uncheck" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
3
+ <g
4
+ id="Rectangle_749"
5
+ data-name="Rectangle 749"
6
+ transform="translate(2 2)"
7
+ fill="none"
8
+ stroke="#cecece"
9
+ stroke-width="1"
10
+ >
11
+ <rect width="12" height="12" rx="2" stroke="none" />
12
+ <rect
13
+ x="0.5"
14
+ y="0.5"
15
+ width="11"
16
+ height="11"
17
+ rx="1.5"
18
+ fill="none"
19
+ />
20
+ </g>
21
+ <rect id="size" width="16" height="16" fill="none" />
22
+ </svg>
23
+ </template>
@@ -0,0 +1,24 @@
1
+ <template>
2
+ <svg id="icon-checkbox-half" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
3
+ <rect
4
+ id="Rectangle_123"
5
+ data-name="Rectangle 123"
6
+ width="12"
7
+ height="12"
8
+ rx="1"
9
+ transform="translate(2 2)"
10
+ fill="rgba(34,34,34,0.8)"
11
+ />
12
+ <line
13
+ id="Line_84"
14
+ data-name="Line 84"
15
+ x2="4"
16
+ transform="translate(6 8)"
17
+ fill="none"
18
+ stroke="#fff"
19
+ stroke-linecap="round"
20
+ stroke-width="2"
21
+ />
22
+ <rect id="size" width="16" height="16" fill="none" />
23
+ </svg>
24
+ </template>
@@ -0,0 +1,10 @@
1
+ <!-- eslint-disable max-len -->
2
+
3
+ <template>
4
+ <svg id="icon_24_circle" xmlns="http://www.w3.org/2000/svg" width="24" height="24.008" viewBox="0 0 24 24.008">
5
+ <g id="streamline-icon-vectors-anchor-circle_24x24" data-name="streamline-icon-vectors-anchor-circle@24x24">
6
+ <path id="Path_24" data-name="Path 24" d="M12,0A3,3,0,1,1,9,3,3,3,0,0,1,12,0Zm0,18a3,3,0,1,1-3,3A3,3,0,0,1,12,18Zm9-9a3,3,0,1,1-3,3A3,3,0,0,1,21,9ZM3,9a3,3,0,1,1-3,3A3,3,0,0,1,3,9Zm13.207,9.806a.251.251,0,0,0-.085.338l.752,1.3a.254.254,0,0,0,.155.117.249.249,0,0,0,.192-.029,10.045,10.045,0,0,0,3.309-3.309.249.249,0,0,0,.029-.192.254.254,0,0,0-.117-.155l-1.3-.752a.251.251,0,0,0-.338.085A8.054,8.054,0,0,1,16.207,18.806Zm2.6-11.013a.251.251,0,0,0,.338.085l1.3-.752a.254.254,0,0,0,.117-.155.249.249,0,0,0-.029-.192,10.048,10.048,0,0,0-3.31-3.309.249.249,0,0,0-.192-.029.254.254,0,0,0-.155.117l-.752,1.3a.251.251,0,0,0,.085.338A8.048,8.048,0,0,1,18.805,7.793ZM3.47,6.779a.249.249,0,0,0-.029.192.254.254,0,0,0,.117.155l1.3.752A.251.251,0,0,0,5.2,7.793a8.034,8.034,0,0,1,2.6-2.6.251.251,0,0,0,.085-.338l-.752-1.3a.254.254,0,0,0-.155-.117.249.249,0,0,0-.192.029A10.047,10.047,0,0,0,3.47,6.779ZM5.2,16.207a.251.251,0,0,0-.338-.085l-1.3.752a.254.254,0,0,0-.117.155.249.249,0,0,0,.029.192A10.043,10.043,0,0,0,6.779,20.53a.249.249,0,0,0,.192.029.254.254,0,0,0,.155-.117l.752-1.3a.251.251,0,0,0-.085-.338A8.042,8.042,0,0,1,5.2,16.207Z" fill="currentColor" />
7
+ </g>
8
+ <rect id="size" width="24" height="24" transform="translate(0 0.008)" fill="none" />
9
+ </svg>
10
+ </template>
@@ -0,0 +1,17 @@
1
+ <!-- eslint-disable max-len -->
2
+
3
+ <template>
4
+ <svg id="icon-colors" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
5
+ <g id="color-swatch">
6
+ <path
7
+ id="color-swatch-2"
8
+ data-name="color-swatch"
9
+ d="M4,2A2,2,0,0,0,2,4V15a3,3,0,0,0,6,0V4A2,2,0,0,0,6,2ZM5,16a1,1,0,1,0-1-1A1,1,0,0,0,5,16Zm5-1.757,4.9-4.9a2,2,0,0,0,0-2.828L13.485,5.1a2,2,0,0,0-2.828,0L10,5.757ZM16,18H9.071l6-6H16a2,2,0,0,1,2,2v2A2,2,0,0,1,16,18Z"
10
+ transform="translate(-2 -2)"
11
+ fill="currentColor"
12
+ fill-rule="evenodd"
13
+ />
14
+ </g>
15
+ <rect id="size" width="16" height="16" fill="none" />
16
+ </svg>
17
+ </template>
@@ -0,0 +1,19 @@
1
+ <!-- eslint-disable max-len -->
2
+
3
+ <template>
4
+ <svg xmlns="http://www.w3.org/2000/svg" width="24.999" height="24" viewBox="0 0 24.999 24">
5
+ <g id="icon_24_comment" transform="translate(0.5)">
6
+ <path
7
+ id="Union_51"
8
+ data-name="Union 51"
9
+ d="M6.381.477V4.287H3.523l-.03,0H3.487A1.39,1.39,0,0,0,2.1,5.665V7.959a4.11,4.11,0,0,1,.9-.1,4.207,4.207,0,0,1,1.1.146V6.287H8.381v-2.9L12.06,5.93l.513.357H22V18H4.1V15.988a4.176,4.176,0,0,1-1.1.146,4.13,4.13,0,0,1-.9-.1v2.536A1.429,1.429,0,0,0,3.523,20H22.571A1.432,1.432,0,0,0,24,18.571V5.714a1.43,1.43,0,0,0-1.428-1.427H13.2L7.129.086a.475.475,0,0,0-.748.391ZM0,12A3,3,0,1,0,3,9,3,3,0,0,0,0,12Z"
10
+ transform="translate(23.999 22.997) rotate(180)"
11
+ fill="currentColor"
12
+ stroke="rgba(0,0,0,0)"
13
+ stroke-miterlimit="10"
14
+ stroke-width="1"
15
+ />
16
+ <rect id="size" width="24" height="24" fill="none" />
17
+ </g>
18
+ </svg>
19
+ </template>
@@ -0,0 +1,8 @@
1
+ <!-- eslint-disable max-len -->
2
+
3
+ <template>
4
+ <svg id="icon-oblique-panels" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
5
+ <rect id="size" width="16" height="16" transform="translate(0 0)" fill="none" />
6
+ <path id="Path_217" data-name="Path 217" d="M8,0a8,8,0,1,0,8,8A8,8,0,0,0,8,0Zm2.219,9.772a.333.333,0,0,1-.447.447L8.149,9.408a.333.333,0,0,0-.3,0l-1.623.811a.333.333,0,0,1-.447-.447l.811-1.623a.333.333,0,0,0,0-.3L5.781,6.228a.333.333,0,0,1,.447-.447l1.623.811a.333.333,0,0,0,.3,0l1.623-.811a.333.333,0,0,1,.447.447L9.408,7.851a.333.333,0,0,0,0,.3ZM8,.667a.333.333,0,0,1,.325.261l.791,3.557a.333.333,0,0,1-.176.371l-.791.4a.333.333,0,0,1-.3,0l-.791-.4a.333.333,0,0,1-.176-.371L7.675.928A.333.333,0,0,1,8,.667ZM.928,8.325a.333.333,0,0,1,0-.651l3.557-.791a.333.333,0,0,1,.371.176l.4.791a.333.333,0,0,1,0,.3l-.4.791a.333.333,0,0,1-.371.176ZM8,15.333a.333.333,0,0,1-.325-.261l-.791-3.557a.333.333,0,0,1,.176-.371l.791-.4a.333.333,0,0,1,.3,0l.791.4a.333.333,0,0,1,.176.371l-.791,3.557A.333.333,0,0,1,8,15.333Zm7.072-7.659a.333.333,0,0,1,0,.651l-3.557.791a.333.333,0,0,1-.371-.176l-.4-.791a.333.333,0,0,1,0-.3l.4-.791a.333.333,0,0,1,.371-.176Z" transform="translate(0 0)" fill="currentColor" />
7
+ </svg>
8
+ </template>
@@ -0,0 +1,7 @@
1
+ <!-- eslint-disable max-len -->
2
+
3
+ <template>
4
+ <svg xmlns="http://www.w3.org/2000/svg" width="23.999" height="24" viewBox="0 0 23.999 24">
5
+ <path id="Path_484" data-name="Path 484" d="M303.413,424.075l4.146,4.125-2.773,2.759-4.146-4.125Zm4.021,8.91,2.162-2.151a.43.43,0,0,0,0-.608l-1.425-1.418-2.773,2.76,1.424,1.417A.434.434,0,0,0,307.434,432.986Zm-7.283-6.89,2.522-2.51-2.789-.784a.419.419,0,0,0-.525.519Zm2.438-3.671.969.248,4.165,4.142v-12.23a.5.5,0,0,0-.21-.4l-6.79-4.824V421.9Zm-3.5,3.971v0l-.791-2.774a1.5,1.5,0,0,1,1.422-1.923V409.355l-6,4.263v17.141l5.5-3.908Zm-13.1-17.229a.5.5,0,0,0-.27.443v15.918a.5.5,0,0,0,.209.4l6.791,4.826V413.618l-6.21-4.413A.5.5,0,0,0,285.993,409.167Z" transform="translate(-285.723 -409.112)" fill="currentColor" />
6
+ </svg>
7
+ </template>
@@ -0,0 +1,11 @@
1
+ <!-- eslint-disable max-len -->
2
+
3
+ <template>
4
+ <svg id="icon_24_3dobject" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
5
+ <rect id="size" width="24" height="24" transform="translate(0 0)" fill="none" />
6
+ <g id="Group_1448" data-name="Group 1448" transform="translate(1)">
7
+ <path id="Path_534" data-name="Path 534" d="M21.781,19.285c0-.011,0-.022,0-.034a1.569,1.569,0,0,0-.245-.844L15.676,2.354C15.465.74,13.1,0,10.892,0S6.319.74,6.108,2.354L4.994,5.4l1.878.686.593-1.623a7.811,7.811,0,0,0,3.427.708,7.814,7.814,0,0,0,3.427-.708l4.5,12.328a32.929,32.929,0,0,0-7.93-.924,32.929,32.929,0,0,0-7.93.924l.905-2.475-1.879-.686L.245,18.407A1.569,1.569,0,0,0,0,19.251c0,3.286,9.777,3.381,10.892,3.381s10.733-.095,10.885-3.306l0-.041M10.892,3.174A5.092,5.092,0,0,1,8.2,2.587,5.089,5.089,0,0,1,10.892,2a5.089,5.089,0,0,1,2.689.587,5.092,5.092,0,0,1-2.689.587m0,17.458c-4.915,0-7.909-.831-8.736-1.381.827-.55,3.822-1.381,8.736-1.381s7.909.831,8.736,1.381c-.827.55-3.821,1.381-8.736,1.381" fill="currentColor" />
8
+ <path id="Path_535" data-name="Path 535" d="M4.215,12.911a3,3,0,1,0-3-3,3,3,0,0,0,3,3" fill="currentColor" />
9
+ </g>
10
+ </svg>
11
+ </template>
@@ -0,0 +1,14 @@
1
+ <!-- eslint-disable max-len -->
2
+
3
+ <template>
4
+ <svg
5
+ id="streamline-icon-real-estate-dimensions-house_24x24"
6
+ data-name="streamline-icon-real-estate-dimensions-house@24x24"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ width="23.998"
9
+ height="23.999"
10
+ viewBox="0 0 23.998 23.999"
11
+ >
12
+ <path id="Path_3" data-name="Path 3" d="M4.251,8h.5a.75.75,0,0,0,.53-1.28l-2-2a.75.75,0,0,0-1.061,0h0l-2,2A.751.751,0,0,0,.751,8h.5a.5.5,0,0,1,.5.5V20a.5.5,0,0,1-.5.5h-.5A.751.751,0,0,0,.22,21.78l2,2a.75.75,0,0,0,1.061,0h0l2-2a.75.75,0,0,0-.53-1.28h-.5a.5.5,0,0,1-.5-.5V8.5A.5.5,0,0,1,4.251,8ZM6.72,5.281A.75.75,0,0,0,8,4.751v-.5a.5.5,0,0,1,.5-.5H20a.5.5,0,0,1,.5.5v.5a.75.75,0,0,0,1.28.53l2-2a.75.75,0,0,0,0-1.061h0l-2-2A.75.75,0,0,0,20.5.751v.5a.5.5,0,0,1-.5.5H8.5a.5.5,0,0,1-.5-.5v-.5A.75.75,0,0,0,6.72.22l-2,2a.75.75,0,0,0,0,1.061h0ZM15.729,8.3a1.035,1.035,0,0,0-1.459,0L6.275,16.8A1,1,0,0,0,7,18.486H8.5a.5.5,0,0,1,.5.5v4a1,1,0,0,0,1,1H20a1,1,0,0,0,1-1v-4a.5.5,0,0,1,.5-.5H23a1,1,0,0,0,.727-1.687S17.079,9.744,15.729,8.3Zm.77,7.685a.5.5,0,0,1-.5.5H14a.5.5,0,0,1-.5-.5v-2a.5.5,0,0,1,.5-.5h2a.5.5,0,0,1,.5.5Z" transform="translate(-0.002 -0.001)" fill="currentColor" />
13
+ </svg>
14
+ </template>
@@ -0,0 +1,111 @@
1
+ <template>
2
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
3
+ <g id="Group_921" data-name="Group 921" transform="translate(-832 -536)">
4
+ <rect
5
+ id="Rectangle_774"
6
+ data-name="Rectangle 774"
7
+ width="5"
8
+ height="3"
9
+ rx="1"
10
+ transform="translate(832 536)"
11
+ fill="currentColor"
12
+ />
13
+ <rect
14
+ id="Rectangle_775"
15
+ data-name="Rectangle 775"
16
+ width="5"
17
+ height="3"
18
+ rx="1"
19
+ transform="translate(832 547)"
20
+ fill="currentColor"
21
+ />
22
+ <rect
23
+ id="Rectangle_776"
24
+ data-name="Rectangle 776"
25
+ width="5"
26
+ height="3"
27
+ rx="1"
28
+ transform="translate(832 557)"
29
+ fill="currentColor"
30
+ />
31
+ <rect
32
+ id="Rectangle_777"
33
+ data-name="Rectangle 777"
34
+ width="4"
35
+ height="2"
36
+ rx="1"
37
+ transform="translate(833 553)"
38
+ fill="currentColor"
39
+ />
40
+ <rect
41
+ id="Rectangle_778"
42
+ data-name="Rectangle 778"
43
+ width="4"
44
+ height="2"
45
+ rx="1"
46
+ transform="translate(833 542)"
47
+ fill="currentColor"
48
+ />
49
+ <circle
50
+ id="Ellipse_112"
51
+ data-name="Ellipse 112"
52
+ cx="2"
53
+ cy="2"
54
+ r="2"
55
+ transform="translate(840 543)"
56
+ fill="currentColor"
57
+ />
58
+ <circle
59
+ id="Ellipse_117"
60
+ data-name="Ellipse 117"
61
+ cx="2"
62
+ cy="2"
63
+ r="2"
64
+ transform="translate(852 536)"
65
+ fill="currentColor"
66
+ />
67
+ <circle
68
+ id="Ellipse_118"
69
+ data-name="Ellipse 118"
70
+ cx="2"
71
+ cy="2"
72
+ r="2"
73
+ transform="translate(852 556)"
74
+ fill="currentColor"
75
+ />
76
+ <circle
77
+ id="Ellipse_116"
78
+ data-name="Ellipse 116"
79
+ cx="2"
80
+ cy="2"
81
+ r="2"
82
+ transform="translate(840 556)"
83
+ fill="currentColor"
84
+ />
85
+ <rect
86
+ id="Rectangle_783"
87
+ data-name="Rectangle 783"
88
+ width="2"
89
+ height="7"
90
+ transform="translate(841 548)"
91
+ fill="currentColor"
92
+ />
93
+ <rect
94
+ id="Rectangle_785"
95
+ data-name="Rectangle 785"
96
+ width="2"
97
+ height="7"
98
+ transform="translate(850.257 538.67) rotate(60)"
99
+ fill="currentColor"
100
+ />
101
+ <rect
102
+ id="Rectangle_784"
103
+ data-name="Rectangle 784"
104
+ width="2"
105
+ height="13"
106
+ transform="translate(853 542)"
107
+ fill="currentColor"
108
+ />
109
+ </g>
110
+ </svg>
111
+ </template>
@@ -0,0 +1,7 @@
1
+ <!-- eslint-disable max-len -->
2
+
3
+ <template>
4
+ <svg xmlns="http://www.w3.org/2000/svg" width="24.002" height="24.002" viewBox="0 0 24.002 24.002">
5
+ <path id="Union_18" data-name="Union 18" d="M10434,14715a3,3,0,1,1,3,3A3,3,0,0,1,10434,14715Zm-18,0a3,3,0,1,1,3,3A3,3,0,0,1,10416,14715Zm7.749,1a.25.25,0,0,1-.251-.247v-1.5a.25.25,0,0,1,.251-.247h8.5a.248.248,0,0,1,.251.247v1.5a.248.248,0,0,1-.251.247Zm12.5-5.5a.248.248,0,0,1-.248-.247v-8.5a.248.248,0,0,1,.248-.248h1.5a.249.249,0,0,1,.251.248v8.5a.248.248,0,0,1-.251.247Zm-18,0a.25.25,0,0,1-.251-.247v-8.5a.251.251,0,0,1,.251-.248h1.5a.248.248,0,0,1,.251.248v8.5a.248.248,0,0,1-.251.247Zm8.053-4.846V14700a.257.257,0,0,0-.259-.259h-1.828a1.043,1.043,0,0,1-.735-1.78l3.649-3.653a1.048,1.048,0,0,1,1.478,0l3.653,3.649a1.045,1.045,0,0,1-.739,1.784h-1.828a.259.259,0,0,0-.259.259v5.655a1.566,1.566,0,0,1-3.132,0Zm7.7-8.654a3,3,0,1,1,3,3A3,3,0,0,1,10434,14697Zm-18,0a3,3,0,1,1,3,3A3,3,0,0,1,10416,14697Z" transform="translate(-10416 -14693.999)" 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="22.236" height="21.75" viewBox="0 0 22.236 21.75">
5
+ <path id="Union_49" data-name="Union 49" d="M10945.5,13194a4.753,4.753,0,0,0-2.46-4.159.247.247,0,0,0-.266.017c-.026.017-.056.036-.082.057a.248.248,0,0,0-.07.344,2.25,2.25,0,1,1-3.748,0,.248.248,0,0,0-.066-.344c-.029-.021-.056-.04-.083-.057a.245.245,0,0,0-.265-.017,4.747,4.747,0,0,0-2.46,4.159.75.75,0,1,1-1.5,0,6.249,6.249,0,0,1,2.474-4.978.244.244,0,0,0,.1-.248.251.251,0,0,0-.183-.192,2.6,2.6,0,0,0-.636-.082h-3.5a1.5,1.5,0,0,1,0-3h.5a.248.248,0,0,0,.249-.248v-.752a.75.75,0,0,1,1.5,0v.752a.248.248,0,0,0,.251.248h1a2.548,2.548,0,0,0,1.9-.844,3.527,3.527,0,0,1,5.2,0,2.551,2.551,0,0,0,1.9.844h1a.248.248,0,0,0,.251-.248l.022-5.56h-1.029a.49.49,0,0,1-.354-.149.5.5,0,0,1,0-.705l1.748-1.748a.5.5,0,0,1,.706,0l1.748,1.751a.5.5,0,0,1-.354.852h-.968l-.022,5.56a.248.248,0,0,0,.249.248h.5a1.5,1.5,0,0,1,0,3h-3.5a2.592,2.592,0,0,0-.636.082.247.247,0,0,0-.136.09.252.252,0,0,0,.047.351A6.244,6.244,0,0,1,10947,13194a.75.75,0,1,1-1.5,0Zm-5.5-2.5a.75.75,0,1,0,.752-.749A.751.751,0,0,0,10940,13191.5Zm10.249-4.5h0Zm-18.5-4.249a.75.75,0,1,1,0-1.5h5a.75.75,0,0,1,0,1.5Zm10.116-2.748a2.175,2.175,0,0,1-.615-1.606,2.29,2.29,0,0,1,2.129-2.281.124.124,0,0,0,.112-.1,3.836,3.836,0,0,1,7.04-1.146.129.129,0,0,0,.093.06,2.842,2.842,0,0,1,1.723.791,2.893,2.893,0,0,1-1.7,4.961.446.446,0,0,1-.062,0,.5.5,0,0,1-.07-.993,1.911,1.911,0,0,0,1.719-1.891,1.882,1.882,0,0,0-.579-1.361,1.851,1.851,0,0,0-1.378-.523.486.486,0,0,1-.47-.284,2.838,2.838,0,0,0-5.4,1.043.248.248,0,0,1-.01.069.5.5,0,0,1-.59.388,1.3,1.3,0,0,0-1.082.261,1.281,1.281,0,0,0-.474,1,1.182,1.182,0,0,0,.317.894,1.635,1.635,0,0,0,1.086.4.5.5,0,0,1,.014,1A2.779,2.779,0,0,1,10941.867,13180Z" transform="translate(-10930.999 -13173.001)" fill="currentColor" />
6
+ </svg>
7
+ </template>
@@ -0,0 +1,8 @@
1
+ <!-- eslint-disable max-len -->
2
+
3
+ <template>
4
+ <svg id="icon_24_export" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
5
+ <path id="Path_592" data-name="Path 592" d="M24,10.411a5.82,5.82,0,0,0-1.772-4.166A5.708,5.708,0,0,0,18.778,4.66a.249.249,0,0,1-.191-.12,7.683,7.683,0,0,0-14.1,2.294.25.25,0,0,1-.227.2A4.589,4.589,0,0,0,0,11.607a4.322,4.322,0,0,0,1.236,3.209A5.517,5.517,0,0,0,4.84,16.2a1,1,0,1,0-.03-2,3.29,3.29,0,0,1-2.172-.8A2.374,2.374,0,0,1,2,11.607,2.589,2.589,0,0,1,5.12,9.072,1,1,0,0,0,6.3,8.294a.974.974,0,0,0,.019-.141A5.685,5.685,0,0,1,17.138,6.065a.962.962,0,0,0,.941.57,3.7,3.7,0,0,1,2.758,1.051A3.751,3.751,0,0,1,22,10.411,3.834,3.834,0,0,1,18.559,14.2a1,1,0,0,0,.132,1.992.95.95,0,0,0,.131-.009A5.805,5.805,0,0,0,24,10.411ZM12.7,8.988a1,1,0,0,0-1.414,0l-3.5,3.5A1,1,0,0,0,8.5,14.2h1.75a.248.248,0,0,1,.25.248V21.7a1.5,1.5,0,0,0,3,0V14.448a.248.248,0,0,1,.248-.25H15.5a1,1,0,0,0,.707-1.707Z" transform="translate(0.004 0.193)" fill="currentColor" />
6
+ <rect id="size" width="24" height="24" 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="14" height="14" viewBox="0 0 14 14">
5
+ <g id="external-link" transform="translate(-3 -3)">
6
+ <path id="Path_423" data-name="Path 423" d="M11,3a1,1,0,0,0,0,2h2.586L7.293,11.293a1,1,0,0,0,1.414,1.414L15,6.414V9a1,1,0,0,0,2,0V4a1,1,0,0,0-1-1Z" fill="currentColor" />
7
+ <path id="Path_424" data-name="Path 424" d="M5,5A2,2,0,0,0,3,7v8a2,2,0,0,0,2,2h8a2,2,0,0,0,2-2V12a1,1,0,0,0-2,0v3H5V7H8A1,1,0,0,0,8,5Z" fill="currentColor" />
8
+ </g>
9
+ </svg>
10
+ </template>
@@ -0,0 +1,7 @@
1
+ <!-- eslint-disable max-len -->
2
+
3
+ <template>
4
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="10" viewBox="0 0 16 10">
5
+ <path id="visibility" d="M7.7-39.531a2.19,2.19,0,0,1,1.532-.594,2.19,2.19,0,0,1,1.532.594,1.848,1.848,0,0,1,.647,1.406,1.848,1.848,0,0,1-.647,1.406,2.19,2.19,0,0,1-1.532.594A2.19,2.19,0,0,1,7.7-36.719a1.848,1.848,0,0,1-.647-1.406A1.848,1.848,0,0,1,7.7-39.531ZM6.643-35.75a3.764,3.764,0,0,0,2.587.969,3.669,3.669,0,0,0,2.57-.984,3.093,3.093,0,0,0,1.072-2.359A3.093,3.093,0,0,0,11.8-40.484a3.669,3.669,0,0,0-2.57-.984,3.669,3.669,0,0,0-2.57.984,3.093,3.093,0,0,0-1.072,2.359A3.163,3.163,0,0,0,6.643-35.75Zm-2.281-6A8.933,8.933,0,0,1,9.23-43.125,8.933,8.933,0,0,1,14.1-41.75a7.839,7.839,0,0,1,3.132,3.625A7.839,7.839,0,0,1,14.1-34.5,8.933,8.933,0,0,1,9.23-33.125,8.933,8.933,0,0,1,4.362-34.5,7.839,7.839,0,0,1,1.23-38.125,7.839,7.839,0,0,1,4.362-41.75Z" transform="translate(-1.23 43.125)" 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="10.711" height="9.137" viewBox="0 0 10.711 9.137">
5
+ <path id="Path_91" data-name="Path 91" d="M18.344,12.774l-4.211,3.445a1,1,0,0,1-1.633-.774V14.9a.25.25,0,0,0-.389-.208L9.555,16.4A1,1,0,0,1,8,15.564V8.433A1,1,0,0,1,9.555,7.6l2.556,1.7a.25.25,0,0,0,.347-.069A.245.245,0,0,0,12.5,9.1V8.554a1,1,0,0,1,1.633-.774l4.211,3.445a1,1,0,0,1,.141,1.407.94.94,0,0,1-.141.141Z" transform="translate(-8 -7.432)" fill="currentColor" />
6
+ </svg>
7
+ </template>
@@ -0,0 +1,8 @@
1
+ <!-- eslint-disable max-len -->
2
+
3
+ <template>
4
+ <svg id="icon-filter" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
5
+ <path id="filter-list" d="M5.75-28.77V-31.23h8v2.461Zm-2-7.73h12v2.52h-12Zm4.656,13v-2.52h2.687v2.52Z" transform="translate(-1.75 38.5)" 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
+
3
+ <template>
4
+ <svg
5
+ id="streamline-icon-ecology-globe-nature_24x24"
6
+ data-name="streamline-icon-ecology-globe-nature@24x24"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ width="24.002"
9
+ height="24.004"
10
+ viewBox="0 0 24.002 24.004"
11
+ >
12
+ <path id="Path_18" data-name="Path 18" d="M23.723,11.8A1,1,0,0,0,23,11.492H20.747a.5.5,0,0,1-.5-.5v-1a.5.5,0,0,1,.5-.5h1.5a.5.5,0,0,0,.5-.5.492.492,0,0,0-.042-.2L21.556,6.166A.482.482,0,0,1,22,5.492a.5.5,0,0,0,.427-.761l-2.75-4.5A.521.521,0,0,0,18.951.1a.5.5,0,0,0-.128.128l-2.75,4.5a.5.5,0,0,0,.427.761.481.481,0,0,1,.481.481.49.49,0,0,1-.04.193L15.789,8.792a.5.5,0,0,0,.258.658.509.509,0,0,0,.2.042h1.5a.5.5,0,0,1,.5.5v1a.5.5,0,0,1-.5.5H16.7a1,1,0,0,1-.74-.327L9.736,4.319A1.032,1.032,0,0,0,8.277,4.3l-.02.02L2.034,11.165a1,1,0,0,1-.74.327H1a1,1,0,0,0-1,1c0,.015,0,.031,0,.046a12.012,12.012,0,0,0,24,0A1,1,0,0,0,23.723,11.8ZM3.151,15.992a.5.5,0,0,1-.465-.317A9.855,9.855,0,0,1,2.209,14.1a.5.5,0,0,1,.39-.59.478.478,0,0,1,.1-.01H5.052a.5.5,0,0,1,.5.465q.051.75.154,1.464a.5.5,0,0,1-.424.566A.485.485,0,0,1,5.206,16Zm3.941,4.519a.25.25,0,0,1-.3.03A10.012,10.012,0,0,1,4.3,18.4a.25.25,0,0,1,.192-.41H5.9a.5.5,0,0,1,.476.345,13.392,13.392,0,0,0,.77,1.878A.25.25,0,0,1,7.092,20.511ZM11,21.258a.251.251,0,0,1-.4.2,7.169,7.169,0,0,1-2.1-3.125.25.25,0,0,1,.144-.324.243.243,0,0,1,.089-.017H10.5a.5.5,0,0,1,.5.5Zm0-5.766a.5.5,0,0,1-.5.5H8.248a.5.5,0,0,1-.493-.415c-.085-.493-.15-1.009-.193-1.544a.5.5,0,0,1,.457-.539l.043,0H10.5a.5.5,0,0,1,.5.5Zm4.5,2.841a7.169,7.169,0,0,1-2.1,3.125.253.253,0,0,1-.263.024A.248.248,0,0,1,13,21.258V18.492a.5.5,0,0,1,.5-.5h1.766a.25.25,0,0,1,.233.341Zm.939-4.3c-.043.535-.108,1.051-.193,1.544a.5.5,0,0,1-.493.415H13.5a.5.5,0,0,1-.5-.5v-1.5a.5.5,0,0,1,.5-.5h2.44a.5.5,0,0,1,.5.5c0,.014,0,.028,0,.043ZM19.7,18.4a10,10,0,0,1-2.487,2.139.25.25,0,0,1-.353-.326,13.392,13.392,0,0,0,.77-1.878.5.5,0,0,1,.476-.345h1.4a.25.25,0,0,1,.25.25.254.254,0,0,1-.058.16Zm2.1-4.306a9.87,9.87,0,0,1-.477,1.579.5.5,0,0,1-.465.317H18.791a.5.5,0,0,1-.5-.495.485.485,0,0,1,0-.076q.1-.714.154-1.464a.5.5,0,0,1,.5-.465H21.3a.5.5,0,0,1,.5.5.475.475,0,0,1-.01.1Z" transform="translate(0.001 -0.009)" fill="currentColor" />
13
+ </svg>
14
+ </template>
@@ -0,0 +1,118 @@
1
+ <template>
2
+ <svg xmlns="http://www.w3.org/2000/svg" width="23.51" height="23.542" viewBox="0 0 23.51 23.542">
3
+ <g id="Group_845" data-name="Group 845" transform="translate(0.639 0.64)">
4
+ <path
5
+ id="Path_432"
6
+ data-name="Path 432"
7
+ d="M19.854,7.661a7.958,7.958,0,0,0,3.505-.422"
8
+ transform="translate(-1.127 -1.238)"
9
+ fill="none"
10
+ stroke="currentColor"
11
+ stroke-linecap="round"
12
+ stroke-miterlimit="10"
13
+ stroke-width="1"
14
+ />
15
+ <path
16
+ id="Path_433"
17
+ data-name="Path 433"
18
+ d="M7.11,23.5a7.947,7.947,0,0,0-.171-5.832A8.111,8.111,0,0,1,8.707,8.829a8.2,8.2,0,0,1,6.673-2.34"
19
+ transform="translate(-1.127 -1.238)"
20
+ fill="none"
21
+ stroke="currentColor"
22
+ stroke-linecap="round"
23
+ stroke-miterlimit="10"
24
+ stroke-width="1"
25
+ />
26
+ <path
27
+ id="Path_434"
28
+ data-name="Path 434"
29
+ d="M9.38,18.266a8.2,8.2,0,0,0,6.4-2.365,8.113,8.113,0,0,0,1.768-8.84,7.944,7.944,0,0,1-.174-5.823"
30
+ transform="translate(-1.127 -1.238)"
31
+ fill="none"
32
+ stroke="currentColor"
33
+ stroke-linecap="round"
34
+ stroke-miterlimit="10"
35
+ stroke-width="1"
36
+ />
37
+ <path
38
+ id="Path_435"
39
+ data-name="Path 435"
40
+ d="M1.127,17.489a7.967,7.967,0,0,1,3.728-.4"
41
+ transform="translate(-1.127 -1.238)"
42
+ fill="none"
43
+ stroke="currentColor"
44
+ stroke-linecap="round"
45
+ stroke-miterlimit="10"
46
+ stroke-width="1"
47
+ />
48
+ <line
49
+ id="Line_129"
50
+ data-name="Line 129"
51
+ x2="4.95"
52
+ y2="4.95"
53
+ transform="translate(11.822 5.469)"
54
+ fill="none"
55
+ stroke="currentColor"
56
+ stroke-linecap="round"
57
+ stroke-miterlimit="10"
58
+ stroke-width="1"
59
+ />
60
+ <line
61
+ id="Line_130"
62
+ data-name="Line 130"
63
+ x2="5.239"
64
+ y2="5.24"
65
+ transform="translate(15.921 1.082)"
66
+ fill="none"
67
+ stroke="currentColor"
68
+ stroke-miterlimit="10"
69
+ stroke-width="1"
70
+ />
71
+ <line
72
+ id="Line_131"
73
+ data-name="Line 131"
74
+ x2="5.26"
75
+ y2="5.261"
76
+ transform="translate(1.061 15.92)"
77
+ fill="none"
78
+ stroke="currentColor"
79
+ stroke-miterlimit="10"
80
+ stroke-width="1"
81
+ />
82
+ <line
83
+ id="Line_132"
84
+ data-name="Line 132"
85
+ x2="6.739"
86
+ y2="6.738"
87
+ transform="translate(8.807 6.697)"
88
+ fill="none"
89
+ stroke="currentColor"
90
+ stroke-linecap="round"
91
+ stroke-miterlimit="10"
92
+ stroke-width="1"
93
+ />
94
+ <line
95
+ id="Line_133"
96
+ data-name="Line 133"
97
+ x2="5.239"
98
+ y2="5.239"
99
+ transform="translate(5.314 11.689)"
100
+ fill="none"
101
+ stroke="currentColor"
102
+ stroke-miterlimit="10"
103
+ stroke-width="1"
104
+ />
105
+ <line
106
+ id="Line_134"
107
+ data-name="Line 134"
108
+ x2="6.74"
109
+ y2="6.739"
110
+ transform="translate(6.685 8.818)"
111
+ fill="none"
112
+ stroke="currentColor"
113
+ stroke-miterlimit="10"
114
+ stroke-width="1"
115
+ />
116
+ </g>
117
+ </svg>
118
+ </template>
@@ -0,0 +1,7 @@
1
+ <!-- eslint-disable max-len -->
2
+
3
+ <template>
4
+ <svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 14 14">
5
+ <path id="help" d="M11.656-45.967a2.151,2.151,0,0,0,.657-1.577,2.689,2.689,0,0,0-.822-1.972,2.689,2.689,0,0,0-1.972-.822,2.689,2.689,0,0,0-1.972.822,2.689,2.689,0,0,0-.822,1.972h1.38a1.354,1.354,0,0,1,.427-.986,1.354,1.354,0,0,1,.986-.427,1.354,1.354,0,0,1,.986.427,1.354,1.354,0,0,1,.427.986,1.354,1.354,0,0,1-.427.986l-.854.887A2.837,2.837,0,0,0,8.829-43.7v.362h1.38a2.837,2.837,0,0,1,.822-1.972ZM10.21-40.545v-1.38H8.829v1.38ZM4.557-50.371a6.769,6.769,0,0,1,4.962-2.07,6.742,6.742,0,0,1,4.946,2.054,6.742,6.742,0,0,1,2.054,4.946A6.742,6.742,0,0,1,14.466-40.5,6.742,6.742,0,0,1,9.52-38.441,6.742,6.742,0,0,1,4.574-40.5,6.742,6.742,0,0,1,2.52-45.441a6.715,6.715,0,0,1,2.038-4.93Z" transform="translate(-2.52 52.441)" fill="currentColor" />
6
+ </svg>
7
+ </template>
@@ -0,0 +1,8 @@
1
+ <!-- eslint-disable max-len -->
2
+
3
+ <template>
4
+ <svg xmlns="http://www.w3.org/2000/svg" width="11.875" height="15" viewBox="0 0 11.875 15">
5
+ <path id="Path_52" data-name="Path 52" d="M8.438,0A5.945,5.945,0,0,0,2.5,5.938c0,4.09,4.086,7.8,5.338,8.846a.937.937,0,0,0,1.2,0c1.25-1.041,5.339-4.756,5.339-8.846A5.944,5.944,0,0,0,8.438,0ZM12.7,5.7a.313.313,0,0,1-.2.551h-.625a.313.313,0,0,0-.313.313V9.375a.313.313,0,0,1-.313.313H9.688a.313.313,0,0,1-.313-.313V7.969a.938.938,0,0,0-1.875,0V9.375a.313.313,0,0,1-.313.313H5.625a.313.313,0,0,1-.313-.313V6.563A.313.313,0,0,0,5,6.25H4.375a.313.313,0,0,1-.2-.551L8.236,2.261a.313.313,0,0,1,.4,0Z" transform="translate(-2.5)" fill="currentColor" />
6
+ </svg>
7
+ </template>
8
+