qwc2 2025.3.31

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 (528) hide show
  1. package/LICENSE +28 -0
  2. package/README.md +68 -0
  3. package/actions/display.js +7 -0
  4. package/actions/editing.js +7 -0
  5. package/actions/layerinfo.js +7 -0
  6. package/actions/layers.js +8 -0
  7. package/actions/localConfig.js +7 -0
  8. package/actions/locale.js +10 -0
  9. package/actions/locate.js +8 -0
  10. package/actions/logging.js +7 -0
  11. package/actions/map.js +15 -0
  12. package/actions/measurement.js +8 -0
  13. package/actions/processNotifications.js +7 -0
  14. package/actions/redlining.js +7 -0
  15. package/actions/redliningPick.js +7 -0
  16. package/actions/serviceinfo.js +7 -0
  17. package/actions/task.js +9 -0
  18. package/actions/theme.js +24 -0
  19. package/actions/windows.js +10 -0
  20. package/components/AppMenu.js +8 -0
  21. package/components/AttributeForm.js +34 -0
  22. package/components/AutoEditForm.js +8 -0
  23. package/components/CoordinateDisplayer.js +7 -0
  24. package/components/EditComboField.js +10 -0
  25. package/components/EditUploadField.js +8 -0
  26. package/components/FullscreenSwitcher.js +8 -0
  27. package/components/Icon.js +7 -0
  28. package/components/IdentifyViewer.js +16 -0
  29. package/components/ImportLayer.js +25 -0
  30. package/components/LayerInfoWindow.js +7 -0
  31. package/components/LinkFeatureForm.js +10 -0
  32. package/components/MapSelection.js +13 -0
  33. package/components/NumericInputWindow.js +7 -0
  34. package/components/PickFeature.js +7 -0
  35. package/components/PluginsContainer.js +8 -0
  36. package/components/PrintSelection.js +54 -0
  37. package/components/QtDesignerForm.js +30 -0
  38. package/components/ResizeableWindow.js +12 -0
  39. package/components/SearchBox.js +26 -0
  40. package/components/ServiceInfoWindow.js +7 -0
  41. package/components/SideBar.js +9 -0
  42. package/components/StandardApp.js +35 -0
  43. package/components/Swipeable.js +1 -0
  44. package/components/TaskBar.js +7 -0
  45. package/components/ThemeLayersListWindow.js +9 -0
  46. package/components/ThemeList.js +12 -0
  47. package/components/Toolbar.js +7 -0
  48. package/components/WindowManager.js +7 -0
  49. package/components/map/OlLayer.js +12 -0
  50. package/components/map/OlLocate.css +56 -0
  51. package/components/map/OlLocate.js +17 -0
  52. package/components/map/OlMap.js +11 -0
  53. package/components/map/layers/BingLayer.js +8 -0
  54. package/components/map/layers/GoogleLayer.js +27 -0
  55. package/components/map/layers/GraticuleLayer.js +8 -0
  56. package/components/map/layers/ImageLayer.js +8 -0
  57. package/components/map/layers/MVTLayer.js +7 -0
  58. package/components/map/layers/OSMLayer.js +8 -0
  59. package/components/map/layers/OverlayLayer.js +10 -0
  60. package/components/map/layers/VectorLayer.js +14 -0
  61. package/components/map/layers/WFSLayer.js +11 -0
  62. package/components/map/layers/WMSLayer.js +11 -0
  63. package/components/map/layers/WMTSLayer.js +9 -0
  64. package/components/map/layers/XYZLayer.js +7 -0
  65. package/components/map/layers/index.js +8 -0
  66. package/components/map3d/BottomBar3D.js +7 -0
  67. package/components/map3d/Compare3D.js +12 -0
  68. package/components/map3d/Draw3D.js +10 -0
  69. package/components/map3d/ExportObjects3D.js +17 -0
  70. package/components/map3d/HeightProfile3D.js +8 -0
  71. package/components/map3d/HideObjects3D.js +12 -0
  72. package/components/map3d/Identify3D.js +13 -0
  73. package/components/map3d/LayerTree3D.js +8 -0
  74. package/components/map3d/Map3D.js +29 -0
  75. package/components/map3d/Map3DLight.js +10 -0
  76. package/components/map3d/MapControls3D.js +20 -0
  77. package/components/map3d/MapExport3D.js +11 -0
  78. package/components/map3d/Measure3D.js +23 -0
  79. package/components/map3d/OverviewMap3D.js +9 -0
  80. package/components/map3d/SearchField3D.js +16 -0
  81. package/components/map3d/TopBar3D.js +7 -0
  82. package/components/map3d/View3DSwitcher.js +7 -0
  83. package/components/map3d/drawtool/CreateTool3D.js +9 -0
  84. package/components/map3d/drawtool/EditTool3D.js +9 -0
  85. package/components/map3d/drawtool/NumericInput3D.js +7 -0
  86. package/components/map3d/img/viewcone.svg +124 -0
  87. package/components/map3d/layers/VectorLayer3D.js +7 -0
  88. package/components/map3d/layers/WFSLayer3D.js +8 -0
  89. package/components/map3d/layers/WMSLayer3D.js +7 -0
  90. package/components/map3d/layers/WMTSLayer3D.js +9 -0
  91. package/components/map3d/layers/index.js +8 -0
  92. package/components/map3d/models/arrow.glb +0 -0
  93. package/components/map3d/models/pin.glb +0 -0
  94. package/components/map3d/slices/map3d.js +1 -0
  95. package/components/map3d/style/BottomBar3D.css +67 -0
  96. package/components/map3d/style/Compare3D.css +57 -0
  97. package/components/map3d/style/Draw3D.css +7 -0
  98. package/components/map3d/style/HideObjects3D.css +29 -0
  99. package/components/map3d/style/LayerTree3D.css +126 -0
  100. package/components/map3d/style/Map3D.css +42 -0
  101. package/components/map3d/style/Map3DLight.css +72 -0
  102. package/components/map3d/style/MapControls3D.css +56 -0
  103. package/components/map3d/style/MapExport3D.css +25 -0
  104. package/components/map3d/style/OverviewMap3D.css +37 -0
  105. package/components/map3d/style/SearchField3D.css +7 -0
  106. package/components/map3d/style/View3DSwitcher.css +27 -0
  107. package/components/map3d/utils/Tiles3DStyle.js +1 -0
  108. package/components/share/ShareLink.js +7 -0
  109. package/components/share/ShareQRCode.js +8 -0
  110. package/components/share/ShareSocials.js +9 -0
  111. package/components/share/style/ShareLink.css +13 -0
  112. package/components/share/style/ShareSocials.css +9 -0
  113. package/components/style/App.css +229 -0
  114. package/components/style/AppMenu.css +162 -0
  115. package/components/style/AttributeForm.css +57 -0
  116. package/components/style/AutoEditForm.css +64 -0
  117. package/components/style/DefaultColorScheme.css +60 -0
  118. package/components/style/EditUploadField.css +103 -0
  119. package/components/style/FullscreenSwitcher.css +25 -0
  120. package/components/style/Icon.css +26 -0
  121. package/components/style/IdentifyViewer.css +249 -0
  122. package/components/style/ImportLayer.css +28 -0
  123. package/components/style/LayerInfoWindow.css +46 -0
  124. package/components/style/LinkFeatureForm.css +48 -0
  125. package/components/style/NumericInputWindow.css +11 -0
  126. package/components/style/PickFeature.css +25 -0
  127. package/components/style/PluginsContainer.css +4 -0
  128. package/components/style/QtDesignerForm.css +225 -0
  129. package/components/style/ResizeableWindow.css +178 -0
  130. package/components/style/SearchBox.css +159 -0
  131. package/components/style/ServiceInfoWindow.css +34 -0
  132. package/components/style/SideBar.css +100 -0
  133. package/components/style/TaskBar.css +35 -0
  134. package/components/style/ThemeLayersListWindow.css +47 -0
  135. package/components/style/ThemeList.css +200 -0
  136. package/components/style/Toolbar.css +20 -0
  137. package/components/style/WindowManager.css +50 -0
  138. package/components/timeline/FixedTimeline.js +10 -0
  139. package/components/timeline/InfiniteTimeline.js +13 -0
  140. package/components/timeline/TimelineFeaturesSlider.js +10 -0
  141. package/components/timeline/style/FixedTimeline.css +76 -0
  142. package/components/timeline/style/InfiniteTimeline.css +94 -0
  143. package/components/timeline/style/TimelineFeaturesSlider.css +131 -0
  144. package/components/widgets/AccordeonWidget.js +7 -0
  145. package/components/widgets/ButtonBar.js +7 -0
  146. package/components/widgets/ColorButton.js +8 -0
  147. package/components/widgets/ComboBox.js +7 -0
  148. package/components/widgets/CopyButton.js +7 -0
  149. package/components/widgets/DateTimeInput.js +8 -0
  150. package/components/widgets/EditableSelect.js +8 -0
  151. package/components/widgets/FileSelector.js +9 -0
  152. package/components/widgets/Input.js +7 -0
  153. package/components/widgets/InputContainer.js +7 -0
  154. package/components/widgets/LayerCatalogWidget.js +3 -0
  155. package/components/widgets/MenuButton.js +1 -0
  156. package/components/widgets/ModalDialog.js +7 -0
  157. package/components/widgets/NavBar.js +7 -0
  158. package/components/widgets/NumberInput.js +9 -0
  159. package/components/widgets/PopupMenu.js +1 -0
  160. package/components/widgets/Primitives.js +7 -0
  161. package/components/widgets/ReCaptchaWidget.js +1 -0
  162. package/components/widgets/SearchWidget.js +7 -0
  163. package/components/widgets/Spinner.js +6 -0
  164. package/components/widgets/SuggestionInput.js +7 -0
  165. package/components/widgets/TextInput.js +7 -0
  166. package/components/widgets/ToggleSwitch.js +7 -0
  167. package/components/widgets/VectorLayerPicker.js +8 -0
  168. package/components/widgets/style/AccordeonWidget.css +22 -0
  169. package/components/widgets/style/ButtonBar.css +88 -0
  170. package/components/widgets/style/ColorButton.css +88 -0
  171. package/components/widgets/style/ComboBox.css +83 -0
  172. package/components/widgets/style/CopyButton.css +21 -0
  173. package/components/widgets/style/EditableSelect.css +47 -0
  174. package/components/widgets/style/FileSelector.css +14 -0
  175. package/components/widgets/style/InputContainer.css +34 -0
  176. package/components/widgets/style/LayerCatalogWidget.css +59 -0
  177. package/components/widgets/style/MenuButton.css +122 -0
  178. package/components/widgets/style/ModalDialog.css +50 -0
  179. package/components/widgets/style/NavBar.css +12 -0
  180. package/components/widgets/style/NumberInput.css +76 -0
  181. package/components/widgets/style/SearchWidget.css +43 -0
  182. package/components/widgets/style/Spinner.css +32 -0
  183. package/components/widgets/style/SuggestionInput.css +8 -0
  184. package/components/widgets/style/TextInput.css +94 -0
  185. package/components/widgets/style/ToggleSwitch.css +61 -0
  186. package/components/widgets/style/VectorLayerPicker.css +3 -0
  187. package/icons/2d.svg +70 -0
  188. package/icons/3d.svg +70 -0
  189. package/icons/3d2d.svg +92 -0
  190. package/icons/after.svg +76 -0
  191. package/icons/arrow-down.svg +60 -0
  192. package/icons/arrow-up.svg +60 -0
  193. package/icons/before.svg +76 -0
  194. package/icons/bglayer.svg +71 -0
  195. package/icons/bookmark.svg +170 -0
  196. package/icons/box.svg +63 -0
  197. package/icons/buffer.svg +67 -0
  198. package/icons/camera.svg +118 -0
  199. package/icons/catalog.svg +62 -0
  200. package/icons/checked.svg +80 -0
  201. package/icons/chevron-down.svg +60 -0
  202. package/icons/chevron-left.svg +59 -0
  203. package/icons/chevron-right.svg +60 -0
  204. package/icons/chevron-up.svg +60 -0
  205. package/icons/circle.svg +70 -0
  206. package/icons/clear.svg +62 -0
  207. package/icons/clock.svg +71 -0
  208. package/icons/cog.svg +60 -0
  209. package/icons/collapse.svg +73 -0
  210. package/icons/compare.svg +72 -0
  211. package/icons/cone.svg +58 -0
  212. package/icons/confirm.svg +62 -0
  213. package/icons/copy.svg +60 -0
  214. package/icons/cuboid.svg +58 -0
  215. package/icons/cyclomedia.svg +47 -0
  216. package/icons/cylinder.svg +58 -0
  217. package/icons/dataimport.svg +116 -0
  218. package/icons/detach.svg +79 -0
  219. package/icons/dock.svg +82 -0
  220. package/icons/dock_bottom.svg +82 -0
  221. package/icons/dock_left.svg +84 -0
  222. package/icons/dock_right.svg +84 -0
  223. package/icons/dock_top.svg +84 -0
  224. package/icons/draw.svg +78 -0
  225. package/icons/editdraw.svg +84 -0
  226. package/icons/edited.svg +78 -0
  227. package/icons/editing.svg +118 -0
  228. package/icons/ellipse.svg +72 -0
  229. package/icons/embed.svg +88 -0
  230. package/icons/expand.svg +73 -0
  231. package/icons/export.svg +126 -0
  232. package/icons/eye.svg +127 -0
  233. package/icons/featureform.svg +115 -0
  234. package/icons/fill.svg +62 -0
  235. package/icons/filter.svg +69 -0
  236. package/icons/folder-open.svg +60 -0
  237. package/icons/freehand.svg +82 -0
  238. package/icons/group.svg +76 -0
  239. package/icons/home.svg +60 -0
  240. package/icons/identify_radius.svg +71 -0
  241. package/icons/identify_region.svg +71 -0
  242. package/icons/import.svg +62 -0
  243. package/icons/info-sign.svg +60 -0
  244. package/icons/info.svg +80 -0
  245. package/icons/layers.svg +71 -0
  246. package/icons/light.svg +77 -0
  247. package/icons/line.svg +61 -0
  248. package/icons/line_buffer.svg +65 -0
  249. package/icons/link.svg +75 -0
  250. package/icons/list-alt.svg +111 -0
  251. package/icons/lock.svg +54 -0
  252. package/icons/login.svg +56 -0
  253. package/icons/logout.svg +56 -0
  254. package/icons/map3d.svg +51 -0
  255. package/icons/maximize.svg +84 -0
  256. package/icons/measure.svg +82 -0
  257. package/icons/measure_line.svg +87 -0
  258. package/icons/measure_polygon.svg +88 -0
  259. package/icons/menu-hamburger.svg +60 -0
  260. package/icons/minimize.svg +76 -0
  261. package/icons/minus-sign.svg +60 -0
  262. package/icons/minus.svg +61 -0
  263. package/icons/nav-end.svg +74 -0
  264. package/icons/nav-left.svg +74 -0
  265. package/icons/nav-right.svg +74 -0
  266. package/icons/nav-start.svg +73 -0
  267. package/icons/new.svg +84 -0
  268. package/icons/nodetool.svg +68 -0
  269. package/icons/numericinput.svg +86 -0
  270. package/icons/ok.svg +60 -0
  271. package/icons/open.svg +79 -0
  272. package/icons/open_link.svg +74 -0
  273. package/icons/paint.svg +75 -0
  274. package/icons/pen.svg +41 -0
  275. package/icons/person.svg +44 -0
  276. package/icons/pick.svg +67 -0
  277. package/icons/pick_point.svg +74 -0
  278. package/icons/pick_region.svg +71 -0
  279. package/icons/plus.svg +60 -0
  280. package/icons/point.svg +67 -0
  281. package/icons/point_buffer.svg +74 -0
  282. package/icons/polygon.svg +61 -0
  283. package/icons/print.svg +60 -0
  284. package/icons/pyramid.svg +58 -0
  285. package/icons/radio_checked.svg +78 -0
  286. package/icons/radio_tristate.svg +75 -0
  287. package/icons/radio_unchecked.svg +72 -0
  288. package/icons/rasterexport.svg +124 -0
  289. package/icons/rect.svg +63 -0
  290. package/icons/refresh.svg +44 -0
  291. package/icons/remove.svg +60 -0
  292. package/icons/report.svg +84 -0
  293. package/icons/routing-bicycle.svg +40 -0
  294. package/icons/routing-bus.svg +40 -0
  295. package/icons/routing-cablecar.svg +40 -0
  296. package/icons/routing-car.svg +40 -0
  297. package/icons/routing-ship.svg +40 -0
  298. package/icons/routing-train.svg +40 -0
  299. package/icons/routing-tram.svg +40 -0
  300. package/icons/routing-truck.svg +40 -0
  301. package/icons/routing-walking.svg +40 -0
  302. package/icons/routing.svg +68 -0
  303. package/icons/save.svg +190 -0
  304. package/icons/scale.svg +62 -0
  305. package/icons/screenshot.svg +60 -0
  306. package/icons/search.svg +60 -0
  307. package/icons/selectbox.svg +79 -0
  308. package/icons/share.svg +64 -0
  309. package/icons/snap_edge.svg +79 -0
  310. package/icons/snap_vertex.svg +79 -0
  311. package/icons/sphere.svg +58 -0
  312. package/icons/square.svg +68 -0
  313. package/icons/sync.svg +72 -0
  314. package/icons/text.svg +68 -0
  315. package/icons/themes.svg +81 -0
  316. package/icons/tilt-down.svg +67 -0
  317. package/icons/tilt-left.svg +48 -0
  318. package/icons/tilt-right.svg +48 -0
  319. package/icons/tilt-up.svg +67 -0
  320. package/icons/today.svg +45 -0
  321. package/icons/tools.svg +77 -0
  322. package/icons/transformtool.svg +74 -0
  323. package/icons/transparency.svg +132 -0
  324. package/icons/trash.svg +60 -0
  325. package/icons/tree_minus.svg +81 -0
  326. package/icons/tree_plus.svg +81 -0
  327. package/icons/triangle-down.svg +59 -0
  328. package/icons/triangle-left.svg +60 -0
  329. package/icons/triangle-right.svg +60 -0
  330. package/icons/triangle-up.svg +59 -0
  331. package/icons/tristate.svg +79 -0
  332. package/icons/unchecked.svg +74 -0
  333. package/icons/undock.svg +82 -0
  334. package/icons/undock_bottom.svg +82 -0
  335. package/icons/undock_left.svg +82 -0
  336. package/icons/undock_right.svg +84 -0
  337. package/icons/undock_top.svg +84 -0
  338. package/icons/unmaximize.svg +84 -0
  339. package/icons/unminimize.svg +76 -0
  340. package/icons/up-down-arrow.svg +66 -0
  341. package/icons/warning.svg +72 -0
  342. package/icons/wedge.svg +58 -0
  343. package/icons/zoom.svg +60 -0
  344. package/icons/zoomin.svg +71 -0
  345. package/icons/zoomout.svg +80 -0
  346. package/libs/openlayers.js +11 -0
  347. package/package.json +135 -0
  348. package/plugins/API.js +114 -0
  349. package/plugins/AttributeTable.js +25 -0
  350. package/plugins/Authentication.js +13 -0
  351. package/plugins/BackgroundSwitcher.js +10 -0
  352. package/plugins/Bookmark.js +13 -0
  353. package/plugins/BottomBar.js +10 -0
  354. package/plugins/CookiePopup.js +9 -0
  355. package/plugins/Cyclomedia.js +11 -0
  356. package/plugins/Editing.js +21 -0
  357. package/plugins/FeatureForm.js +21 -0
  358. package/plugins/FeatureSearch.js +11 -0
  359. package/plugins/GeometryDigitizer.js +43 -0
  360. package/plugins/HeightProfile.js +26 -0
  361. package/plugins/Help.js +11 -0
  362. package/plugins/HomeButton.js +9 -0
  363. package/plugins/Identify.js +18 -0
  364. package/plugins/LayerCatalog.js +45 -0
  365. package/plugins/LayerTree.js +15 -0
  366. package/plugins/LocateButton.js +10 -0
  367. package/plugins/Map.js +22 -0
  368. package/plugins/MapCompare.js +11 -0
  369. package/plugins/MapCopyright.js +11 -0
  370. package/plugins/MapExport.js +23 -0
  371. package/plugins/MapFilter.js +20 -0
  372. package/plugins/MapInfoTooltip.js +32 -0
  373. package/plugins/MapLegend.js +14 -0
  374. package/plugins/MapTip.js +15 -0
  375. package/plugins/Measure.js +10 -0
  376. package/plugins/NewsPopup.js +12 -0
  377. package/plugins/Panoramax.js +10 -0
  378. package/plugins/Portal.js +10 -0
  379. package/plugins/Print.js +22 -0
  380. package/plugins/ProcessNotifications.js +11 -0
  381. package/plugins/Redlining.js +12 -0
  382. package/plugins/Reports.js +15 -0
  383. package/plugins/Routing.js +23 -0
  384. package/plugins/ScratchDrawing.js +15 -0
  385. package/plugins/Settings.js +12 -0
  386. package/plugins/Share.js +11 -0
  387. package/plugins/StartupMarker.js +12 -0
  388. package/plugins/TaskButton.js +9 -0
  389. package/plugins/ThemeSwitcher.js +10 -0
  390. package/plugins/TimeManager.js +21 -0
  391. package/plugins/TopBar.js +13 -0
  392. package/plugins/ValueTool.js +11 -0
  393. package/plugins/View3D.js +34 -0
  394. package/plugins/ZoomButtons.js +11 -0
  395. package/plugins/map/EditingSupport.js +13 -0
  396. package/plugins/map/LocateSupport.js +14 -0
  397. package/plugins/map/MeasurementSupport.js +15 -0
  398. package/plugins/map/OverviewSupport.js +14 -0
  399. package/plugins/map/RedliningPickSupport.js +12 -0
  400. package/plugins/map/RedliningSupport.js +28 -0
  401. package/plugins/map/ScaleBarSupport.js +10 -0
  402. package/plugins/map/SnapInteraction.js +1 -0
  403. package/plugins/map/SnapSupport.js +7 -0
  404. package/plugins/map/SnappingSupport.js +23 -0
  405. package/plugins/map/style/OverviewSupport.css +42 -0
  406. package/plugins/map/style/ScaleBarSupport.css +18 -0
  407. package/plugins/map/style/SnappingSupport.css +33 -0
  408. package/plugins/redlining/RedliningBufferSupport.js +8 -0
  409. package/plugins/style/AttributeTable.css +220 -0
  410. package/plugins/style/Authentication.css +16 -0
  411. package/plugins/style/BackgroundSwitcher.css +99 -0
  412. package/plugins/style/Bookmark.css +62 -0
  413. package/plugins/style/BottomBar.css +53 -0
  414. package/plugins/style/Buttons.css +68 -0
  415. package/plugins/style/CookiePopup.css +24 -0
  416. package/plugins/style/Cyclomedia.css +66 -0
  417. package/plugins/style/Editing.css +40 -0
  418. package/plugins/style/FeatureForm.css +21 -0
  419. package/plugins/style/FeatureSearch.css +71 -0
  420. package/plugins/style/GeometryDigitizer.css +28 -0
  421. package/plugins/style/HeightProfile.css +26 -0
  422. package/plugins/style/Identify.css +4 -0
  423. package/plugins/style/LayerCatalog.css +8 -0
  424. package/plugins/style/LayerTree.css +316 -0
  425. package/plugins/style/Map.css +43 -0
  426. package/plugins/style/MapCompare.css +27 -0
  427. package/plugins/style/MapCopyright.css +17 -0
  428. package/plugins/style/MapExport.css +55 -0
  429. package/plugins/style/MapFilter.css +101 -0
  430. package/plugins/style/MapInfoTooltip.css +78 -0
  431. package/plugins/style/MapLegend.css +36 -0
  432. package/plugins/style/MapTip.css +22 -0
  433. package/plugins/style/Measure.css +23 -0
  434. package/plugins/style/NewsPopup.css +87 -0
  435. package/plugins/style/Panoramax.css +15 -0
  436. package/plugins/style/Portal.css +115 -0
  437. package/plugins/style/Print.css +116 -0
  438. package/plugins/style/ProcessNotifications.css +55 -0
  439. package/plugins/style/Redlining.css +101 -0
  440. package/plugins/style/Reports.css +11 -0
  441. package/plugins/style/Routing.css +243 -0
  442. package/plugins/style/ScratchDrawing.css +8 -0
  443. package/plugins/style/Settings.css +11 -0
  444. package/plugins/style/Share.css +59 -0
  445. package/plugins/style/ThemeSwitcher.css +7 -0
  446. package/plugins/style/TimeManager.css +91 -0
  447. package/plugins/style/TopBar.css +50 -0
  448. package/plugins/style/ValueTool.css +60 -0
  449. package/reducers/display.js +7 -0
  450. package/reducers/editing.js +8 -0
  451. package/reducers/index.js +7 -0
  452. package/reducers/layerinfo.js +7 -0
  453. package/reducers/layers.js +14 -0
  454. package/reducers/localConfig.js +8 -0
  455. package/reducers/locale.js +8 -0
  456. package/reducers/locate.js +8 -0
  457. package/reducers/map.js +11 -0
  458. package/reducers/measurement.js +8 -0
  459. package/reducers/processNotifications.js +7 -0
  460. package/reducers/redlining.js +7 -0
  461. package/reducers/redliningPick.js +7 -0
  462. package/reducers/serviceinfo.js +7 -0
  463. package/reducers/task.js +7 -0
  464. package/reducers/theme.js +7 -0
  465. package/reducers/windows.js +7 -0
  466. package/scripts/dist.sh +16 -0
  467. package/scripts/gen-plugin-docs.js +9 -0
  468. package/scripts/makeIconkit.js +7 -0
  469. package/scripts/package-commands.bat +8 -0
  470. package/scripts/package-commands.sh +22 -0
  471. package/scripts/themesConfig.js +48 -0
  472. package/scripts/themesConfig.py +659 -0
  473. package/scripts/translateui.sh +51 -0
  474. package/scripts/updateTranslations.js +17 -0
  475. package/scripts/wmts_config_generator.py +169 -0
  476. package/selectors/searchproviders.js +12 -0
  477. package/static/translations/bg-BG.json +709 -0
  478. package/static/translations/ca-ES.json +709 -0
  479. package/static/translations/cs-CZ.json +709 -0
  480. package/static/translations/de-CH.json +709 -0
  481. package/static/translations/de-DE.json +709 -0
  482. package/static/translations/en-US.json +709 -0
  483. package/static/translations/es-ES.json +709 -0
  484. package/static/translations/fi-FI.json +709 -0
  485. package/static/translations/fr-FR.json +709 -0
  486. package/static/translations/hu-HU.json +709 -0
  487. package/static/translations/it-IT.json +709 -0
  488. package/static/translations/ja-JP.json +709 -0
  489. package/static/translations/nl-NL.json +709 -0
  490. package/static/translations/no-NO.json +709 -0
  491. package/static/translations/pl-PL.json +709 -0
  492. package/static/translations/pt-BR.json +709 -0
  493. package/static/translations/pt-PT.json +709 -0
  494. package/static/translations/ro-RO.json +709 -0
  495. package/static/translations/ru-RU.json +709 -0
  496. package/static/translations/sv-SE.json +709 -0
  497. package/static/translations/tr-TR.json +709 -0
  498. package/static/translations/tsconfig.json +606 -0
  499. package/stores/StandardStore.js +8 -0
  500. package/utils/ConfigUtils.js +9 -0
  501. package/utils/CoordinatesUtils.js +29 -0
  502. package/utils/DxfUtils.js +10 -0
  503. package/utils/EditingInterface.js +67 -0
  504. package/utils/EditingUtils.js +11 -0
  505. package/utils/FeatureStyles.js +10 -0
  506. package/utils/IdentifyUtils.js +12 -0
  507. package/utils/ImageEditor.js +15 -0
  508. package/utils/LayerUtils.js +57 -0
  509. package/utils/LocaleUtils.js +9 -0
  510. package/utils/MapUtils.js +66 -0
  511. package/utils/MeasureUtils.js +9 -0
  512. package/utils/MiscUtils.js +15 -0
  513. package/utils/PermaLinkUtils.js +11 -0
  514. package/utils/ResourceRegistry.js +7 -0
  515. package/utils/RoutingInterface.js +12 -0
  516. package/utils/SearchProviders.js +19 -0
  517. package/utils/ServiceLayerUtils.js +20 -0
  518. package/utils/Signal.js +2 -0
  519. package/utils/ThemeUtils.js +12 -0
  520. package/utils/VectorLayerUtils.js +20 -0
  521. package/utils/expr_grammar/README.md +3 -0
  522. package/utils/expr_grammar/grammar.js +3 -0
  523. package/utils/expr_grammar/grammar.ne +118 -0
  524. package/utils/expr_grammar/test.js +13 -0
  525. package/utils/img/README.markers +1 -0
  526. package/utils/img/arrowhead.svg +4 -0
  527. package/utils/img/marker-icon.png +0 -0
  528. package/utils/img/measurehead.svg +4 -0
@@ -0,0 +1,126 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ width="24"
4
+ height="24"
5
+ version="1.1"
6
+ id="svg4507"
7
+ sodipodi:docname="export.svg"
8
+ viewBox="0 0 24 24"
9
+ inkscape:version="1.4 (e7c3feb100, 2024-10-09)"
10
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
11
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
12
+ xmlns="http://www.w3.org/2000/svg"
13
+ xmlns:svg="http://www.w3.org/2000/svg"
14
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
15
+ xmlns:cc="http://creativecommons.org/ns#"
16
+ xmlns:dc="http://purl.org/dc/elements/1.1/">
17
+ <metadata
18
+ id="metadata4511">
19
+ <rdf:RDF>
20
+ <cc:Work
21
+ rdf:about="">
22
+ <dc:format>image/svg+xml</dc:format>
23
+ <dc:type
24
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
25
+ </cc:Work>
26
+ </rdf:RDF>
27
+ </metadata>
28
+ <sodipodi:namedview
29
+ pagecolor="#555550"
30
+ bordercolor="#666666"
31
+ borderopacity="1"
32
+ objecttolerance="10"
33
+ gridtolerance="10"
34
+ guidetolerance="10"
35
+ inkscape:pageopacity="0"
36
+ inkscape:pageshadow="2"
37
+ inkscape:window-width="1600"
38
+ inkscape:window-height="842"
39
+ id="namedview4509"
40
+ showgrid="true"
41
+ inkscape:snap-text-baseline="true"
42
+ inkscape:zoom="11.987097"
43
+ inkscape:cx="7.8834768"
44
+ inkscape:cy="13.139128"
45
+ inkscape:window-x="0"
46
+ inkscape:window-y="0"
47
+ inkscape:window-maximized="1"
48
+ inkscape:current-layer="svg4507"
49
+ inkscape:pagecheckerboard="false"
50
+ inkscape:showpageshadow="2"
51
+ inkscape:deskcolor="#d1d1d1">
52
+ <inkscape:grid
53
+ type="xygrid"
54
+ id="grid5066"
55
+ originx="0"
56
+ originy="0"
57
+ spacingy="1"
58
+ spacingx="1"
59
+ units="px" />
60
+ </sodipodi:namedview>
61
+ <defs
62
+ id="defs4483">
63
+ <linearGradient
64
+ id="a"
65
+ y1="2.7190001"
66
+ y2="61"
67
+ x1="7.7290001"
68
+ x2="8.2709999"
69
+ gradientUnits="userSpaceOnUse"
70
+ gradientTransform="matrix(0.5,0,0,-0.48276,384.57,547.25)">
71
+ <stop
72
+ stop-color="#bdc3c7"
73
+ id="stop4468" />
74
+ <stop
75
+ offset="1"
76
+ stop-color="#dadfe1"
77
+ id="stop4470" />
78
+ </linearGradient>
79
+ <linearGradient
80
+ id="b"
81
+ y1="518.03998"
82
+ y2="524.79999"
83
+ x2="0"
84
+ gradientUnits="userSpaceOnUse">
85
+ <stop
86
+ stop-color="#566472"
87
+ id="stop4473" />
88
+ <stop
89
+ offset="1"
90
+ stop-color="#5e6b78"
91
+ id="stop4475" />
92
+ </linearGradient>
93
+ <linearGradient
94
+ id="c"
95
+ y1="524.79999"
96
+ x1="404.57001"
97
+ y2="531.79999"
98
+ x2="411.57001"
99
+ gradientUnits="userSpaceOnUse">
100
+ <stop
101
+ stop-color="#383e51"
102
+ id="stop4478" />
103
+ <stop
104
+ offset="1"
105
+ stop-color="#655c6f"
106
+ stop-opacity="0"
107
+ id="stop4480" />
108
+ </linearGradient>
109
+ </defs>
110
+ <path
111
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.50002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
112
+ d="M 5.2499676,10.50001 H 9.750031 v 6.000084 h 4.500064 L 7.4999994,23.25019 0.749904,16.500094 h 4.5000636 z"
113
+ id="path5074"
114
+ inkscape:connector-curvature="0"
115
+ sodipodi:nodetypes="cccccccc" />
116
+ <path
117
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
118
+ d="m 12.5,22.5 v -2 h 7 v -13 h -4 v -4 h -9 v 5 h -2 v -7 h 11 l 6,6 v 15 z"
119
+ id="path830"
120
+ inkscape:connector-curvature="0"
121
+ sodipodi:nodetypes="cccccccccccccc" />
122
+ <g
123
+ aria-label="DXF"
124
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.5px;line-height:25px;font-family:Monospace;-inkscape-font-specification:Monospace;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
125
+ id="text838" />
126
+ </svg>
package/icons/eye.svg ADDED
@@ -0,0 +1,127 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+
4
+ <svg
5
+ version="1.1"
6
+ id="Capa_1"
7
+ x="0px"
8
+ y="0px"
9
+ width="24"
10
+ height="24"
11
+ viewBox="0 0 24 24"
12
+ xml:space="preserve"
13
+ sodipodi:docname="eye.svg"
14
+ inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
15
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
16
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
17
+ xmlns="http://www.w3.org/2000/svg"
18
+ xmlns:svg="http://www.w3.org/2000/svg"
19
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
20
+ xmlns:cc="http://creativecommons.org/ns#"
21
+ xmlns:dc="http://purl.org/dc/elements/1.1/"><metadata
22
+ id="metadata47"><rdf:RDF><cc:Work
23
+ rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
24
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
25
+ id="defs45" /><sodipodi:namedview
26
+ pagecolor="#ffffff"
27
+ bordercolor="#666666"
28
+ borderopacity="1"
29
+ objecttolerance="10"
30
+ gridtolerance="10"
31
+ guidetolerance="10"
32
+ inkscape:pageopacity="0"
33
+ inkscape:pageshadow="2"
34
+ inkscape:window-width="1920"
35
+ inkscape:window-height="1051"
36
+ id="namedview43"
37
+ showgrid="false"
38
+ inkscape:zoom="30.603581"
39
+ inkscape:cx="12.743607"
40
+ inkscape:cy="9.3943253"
41
+ inkscape:window-x="1600"
42
+ inkscape:window-y="0"
43
+ inkscape:window-maximized="1"
44
+ inkscape:current-layer="g8"
45
+ inkscape:showpageshadow="2"
46
+ inkscape:pagecheckerboard="0"
47
+ inkscape:deskcolor="#d1d1d1" />
48
+ <g
49
+ id="g10"
50
+ transform="matrix(0.04424334,0,0,0.04424334,1.1456098,0.91230727)">
51
+ <g
52
+ id="g8">
53
+ <path
54
+ d="m 264.45888,248.625 a 19.125,19.125 0 0 1 -19.125,19.125 19.125,19.125 0 0 1 -19.125,-19.125 19.125,19.125 0 0 1 19.125,-19.125 19.125,19.125 0 0 1 19.125,19.125 z"
55
+ id="circle2" />
56
+ <path
57
+ d="m 245.33388,172.125 c -42.075,0 -76.5,34.425 -76.5,76.5 0,42.075 34.425,76.5 76.5,76.5 42.075,0 76.5,-34.425 76.5,-76.5 0,-42.075 -34.425,-76.5 -76.5,-76.5 z m 0,133.875 c -32.513,0 -57.375,-24.862 -57.375,-57.375 0,-32.513 24.862,-57.375 57.375,-57.375 32.513,0 57.375,24.862 57.375,57.375 0,32.513 -24.862,57.375 -57.375,57.375 z"
58
+ id="path4"
59
+ inkscape:connector-curvature="0" />
60
+ <path
61
+ d="m 245.32507,92.142517 c -172.125,0 -271.218452,156.482483 -271.218452,156.482483 0,0 99.093452,156.46857 271.218452,156.46857 172.125,0 271.23607,-156.46857 271.23607,-156.46857 0,0 -99.11107,-156.482483 -271.23607,-156.482483 z m 0,271.232483 c -153,0 -225.675,-114.75 -225.675,-114.75 0,0 72.675,-114.75 225.675,-114.75 153,0 225.675,114.75 225.675,114.75 0,0 -72.675,114.75 -225.675,114.75 z"
62
+ id="path6"
63
+ inkscape:connector-curvature="0"
64
+ sodipodi:nodetypes="scscsscscs" />
65
+ </g>
66
+ </g>
67
+ <g
68
+ id="g12"
69
+ transform="translate(0,-473.25)">
70
+ </g>
71
+ <g
72
+ id="g14"
73
+ transform="translate(0,-473.25)">
74
+ </g>
75
+ <g
76
+ id="g16"
77
+ transform="translate(0,-473.25)">
78
+ </g>
79
+ <g
80
+ id="g18"
81
+ transform="translate(0,-473.25)">
82
+ </g>
83
+ <g
84
+ id="g20"
85
+ transform="translate(0,-473.25)">
86
+ </g>
87
+ <g
88
+ id="g22"
89
+ transform="translate(0,-473.25)">
90
+ </g>
91
+ <g
92
+ id="g24"
93
+ transform="translate(0,-473.25)">
94
+ </g>
95
+ <g
96
+ id="g26"
97
+ transform="translate(0,-473.25)">
98
+ </g>
99
+ <g
100
+ id="g28"
101
+ transform="translate(0,-473.25)">
102
+ </g>
103
+ <g
104
+ id="g30"
105
+ transform="translate(0,-473.25)">
106
+ </g>
107
+ <g
108
+ id="g32"
109
+ transform="translate(0,-473.25)">
110
+ </g>
111
+ <g
112
+ id="g34"
113
+ transform="translate(0,-473.25)">
114
+ </g>
115
+ <g
116
+ id="g36"
117
+ transform="translate(0,-473.25)">
118
+ </g>
119
+ <g
120
+ id="g38"
121
+ transform="translate(0,-473.25)">
122
+ </g>
123
+ <g
124
+ id="g40"
125
+ transform="translate(0,-473.25)">
126
+ </g>
127
+ </svg>
@@ -0,0 +1,115 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ width="24"
6
+ height="24"
7
+ viewBox="0 0 24 24"
8
+ version="1.1"
9
+ id="svg820"
10
+ inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
11
+ sodipodi:docname="featureform.svg"
12
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
14
+ xmlns="http://www.w3.org/2000/svg"
15
+ xmlns:svg="http://www.w3.org/2000/svg"
16
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
17
+ xmlns:cc="http://creativecommons.org/ns#"
18
+ xmlns:dc="http://purl.org/dc/elements/1.1/">
19
+ <defs
20
+ id="defs814" />
21
+ <sodipodi:namedview
22
+ id="base"
23
+ pagecolor="#8b8b8b"
24
+ bordercolor="#666666"
25
+ borderopacity="1.0"
26
+ inkscape:pageopacity="0"
27
+ inkscape:pageshadow="2"
28
+ inkscape:zoom="15.839192"
29
+ inkscape:cx="5.682108"
30
+ inkscape:cy="16.004604"
31
+ inkscape:document-units="px"
32
+ inkscape:current-layer="layer1"
33
+ showgrid="true"
34
+ units="px"
35
+ inkscape:window-width="1920"
36
+ inkscape:window-height="1171"
37
+ inkscape:window-x="1600"
38
+ inkscape:window-y="0"
39
+ inkscape:window-maximized="1"
40
+ showguides="false"
41
+ inkscape:showpageshadow="2"
42
+ inkscape:pagecheckerboard="0"
43
+ inkscape:deskcolor="#8b8b8b">
44
+ <inkscape:grid
45
+ type="xygrid"
46
+ id="grid1376"
47
+ originx="0"
48
+ originy="0"
49
+ spacingx="0.5"
50
+ spacingy="0.5" />
51
+ </sodipodi:namedview>
52
+ <metadata
53
+ id="metadata817">
54
+ <rdf:RDF>
55
+ <cc:Work
56
+ rdf:about="">
57
+ <dc:format>image/svg+xml</dc:format>
58
+ <dc:type
59
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
60
+ </cc:Work>
61
+ </rdf:RDF>
62
+ </metadata>
63
+ <g
64
+ inkscape:label="Layer 1"
65
+ inkscape:groupmode="layer"
66
+ id="layer1"
67
+ transform="translate(0,-290.64999)">
68
+ <path
69
+ style="fill:#000000;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none;fill-opacity:1"
70
+ d="m 5,297.64999 h 2 v 2 H 5 Z"
71
+ id="path823"
72
+ inkscape:connector-curvature="0" />
73
+ <path
74
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
75
+ d="M 12.5,312.64999 H 1 v -21 h 22 v 12 h -2 v -8 H 3 v 15 h 9.5 z"
76
+ id="path821"
77
+ inkscape:connector-curvature="0"
78
+ sodipodi:nodetypes="ccccccccccc" />
79
+ <path
80
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
81
+ d="m 8,297.64999 h 10 v 2 H 8 Z"
82
+ id="path823-3"
83
+ inkscape:connector-curvature="0"
84
+ sodipodi:nodetypes="ccccc" />
85
+ <path
86
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
87
+ d="m 5,301.64999 h 2 v 2 H 5 Z"
88
+ id="path823-6"
89
+ inkscape:connector-curvature="0" />
90
+ <path
91
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
92
+ d="m 8,301.64999 h 6.5 v 2 H 8 Z"
93
+ id="path823-3-7"
94
+ inkscape:connector-curvature="0"
95
+ sodipodi:nodetypes="ccccc" />
96
+ <path
97
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
98
+ d="m 5,305.64999 h 2 v 2 H 5 Z"
99
+ id="path823-6-5"
100
+ inkscape:connector-curvature="0"
101
+ sodipodi:nodetypes="ccccc" />
102
+ <path
103
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
104
+ d="m 8,305.64999 h 6 v 2 H 8 Z"
105
+ id="path823-3-7-3"
106
+ inkscape:connector-curvature="0"
107
+ sodipodi:nodetypes="ccccc" />
108
+ <path
109
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
110
+ d="m 21.158106,313.10194 0.812172,-0.46992 -1.875666,-3.25525 2.905501,-0.59573 L 16,304.14994 l 0.502574,8.38994 1.967658,-2.22339 1.875684,3.25528 z"
111
+ id="path4513"
112
+ inkscape:connector-curvature="0"
113
+ sodipodi:nodetypes="ccccccccc" />
114
+ </g>
115
+ </svg>
package/icons/fill.svg ADDED
@@ -0,0 +1,62 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Svg Vector Icons : http://www.onlinewebfonts.com/icon -->
3
+
4
+ <svg
5
+ version="1.1"
6
+ x="0px"
7
+ y="0px"
8
+ viewBox="0 0 24 24"
9
+ enable-background="new 0 0 1000 1000"
10
+ xml:space="preserve"
11
+ id="svg647"
12
+ sodipodi:docname="fill.svg"
13
+ width="24"
14
+ height="24"
15
+ inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
16
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
17
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
18
+ xmlns="http://www.w3.org/2000/svg"
19
+ xmlns:svg="http://www.w3.org/2000/svg"><defs
20
+ id="defs651" /><sodipodi:namedview
21
+ id="namedview649"
22
+ pagecolor="#ffffff"
23
+ bordercolor="#666666"
24
+ borderopacity="1.0"
25
+ inkscape:showpageshadow="2"
26
+ inkscape:pageopacity="0.0"
27
+ inkscape:pagecheckerboard="0"
28
+ inkscape:deskcolor="#d1d1d1"
29
+ showgrid="false"
30
+ inkscape:zoom="4.0955625"
31
+ inkscape:cx="35.648339"
32
+ inkscape:cy="50.908758"
33
+ inkscape:window-width="1920"
34
+ inkscape:window-height="1163"
35
+ inkscape:window-x="1600"
36
+ inkscape:window-y="0"
37
+ inkscape:window-maximized="1"
38
+ inkscape:current-layer="g613" />
39
+ <metadata
40
+ id="metadata609"> Svg Vector Icons : http://www.onlinewebfonts.com/icon </metadata>
41
+ <g
42
+ id="g645"><g
43
+ id="g613"><path
44
+ d="M 16.714318,8.564235 11.429907,3.228192 10.666653,2.438 8.8617816,4.211443 c -3.084444,-0.439993 -5.302369,0.693663 -6.088072,2.089968 -0.954068,1.694873 0.0202,3.542396 0.05163,3.600763 0.814886,1.627527 1.986705,2.604043 3.481784,2.907099 0.32775,0.0651 0.657746,0.09429 0.987741,0.09429 1.553446,0 3.1091374,-0.65999 4.2899364,-1.33345 0.31877,0.219997 0.707132,0.352444 1.122432,0.352444 1.093249,0 1.982215,-0.89121 1.982215,-1.98895 0,-1.095493 -0.888966,-1.986705 -1.982215,-1.986705 -1.093249,0 -1.982215,0.891212 -1.982215,1.986705 0,0.109998 0.01571,0.215507 0.03143,0.321016 -1.1897784,0.675704 -2.7589394,1.311001 -4.1485104,1.032637 -1.016923,-0.206527 -1.802625,-0.884476 -2.410984,-2.101193 -0.0067,-0.01122 -0.606114,-1.178553 -0.07633,-2.119151 0.446728,-0.794683 1.611813,-1.306512 3.389746,-1.49957 l -0.276118,0.278363 -2.554656,2.56139 c 0.02694,0.06286 0.04714,0.10102 0.04714,0.103265 0.244691,0.491625 0.523053,0.89121 0.830599,1.209981 L 10.181756,5.0847 c 0.219997,-0.219997 0.51183,-0.341219 0.821621,-0.341219 0.309791,0 0.603869,0.121222 0.82162,0.341219 l 5.609916,5.627875 c 0.453463,0.453463 0.453463,1.192023 0,1.645486 l -7.295809,7.311523 c -0.4377484,0.437749 -1.2032484,0.437749 -1.6409964,0 l -5.609916,-5.627875 c -0.219996,-0.217751 -0.338975,-0.509584 -0.338975,-0.821621 0,-0.30979 0.118979,-0.603868 0.338975,-0.823865 l 0.606113,-0.608358 c -0.343458,-0.354693 -0.651005,-0.781218 -0.924878,-1.268353 l -0.776723,0.778968 c -0.509584,0.514074 -0.792437,1.196513 -0.792437,1.921603 0,0.725092 0.282853,1.407531 0.792437,1.91936 l 5.609917,5.627875 c 0.511828,0.511829 1.189778,0.794682 1.914869,0.794682 0.7228464,0 1.4030404,-0.282853 1.9148694,-0.794682 l 7.289075,-7.313768 1.528753,-1.519773 -0.42428,-0.42877 c 0.803662,-0.437748 1.160595,3.225871 1.160595,3.225871 0,0 1.122433,8.745992 2.119153,0 0.951821,-8.368855 -5.618896,-6.355212 -6.191337,-6.166643 z"
45
+ id="path611"
46
+ style="stroke-width:0.0224487" /></g><g
47
+ id="g615" /><g
48
+ id="g617" /><g
49
+ id="g619" /><g
50
+ id="g621" /><g
51
+ id="g623" /><g
52
+ id="g625" /><g
53
+ id="g627" /><g
54
+ id="g629" /><g
55
+ id="g631" /><g
56
+ id="g633" /><g
57
+ id="g635" /><g
58
+ id="g637" /><g
59
+ id="g639" /><g
60
+ id="g641" /><g
61
+ id="g643" /></g>
62
+ </svg>
@@ -0,0 +1,69 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
4
+ xmlns:cc="http://creativecommons.org/ns#"
5
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
+ xmlns:svg="http://www.w3.org/2000/svg"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
9
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
10
+ viewBox="0 0 24 24"
11
+ version="1.1"
12
+ id="svg6"
13
+ sodipodi:docname="filter.svg"
14
+ width="24"
15
+ height="24"
16
+ inkscape:version="0.92.3 (2405546, 2018-03-11)">
17
+ <metadata
18
+ id="metadata10">
19
+ <rdf:RDF>
20
+ <cc:Work
21
+ rdf:about="">
22
+ <dc:format>image/svg+xml</dc:format>
23
+ <dc:type
24
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
25
+ <dc:title />
26
+ </cc:Work>
27
+ </rdf:RDF>
28
+ </metadata>
29
+ <sodipodi:namedview
30
+ pagecolor="#ffffff"
31
+ bordercolor="#666666"
32
+ borderopacity="1"
33
+ objecttolerance="10"
34
+ gridtolerance="10"
35
+ guidetolerance="10"
36
+ inkscape:pageopacity="0"
37
+ inkscape:pageshadow="2"
38
+ inkscape:window-width="1600"
39
+ inkscape:window-height="837"
40
+ id="namedview8"
41
+ showgrid="true"
42
+ inkscape:zoom="29.5"
43
+ inkscape:cx="4.2034628"
44
+ inkscape:cy="11.532039"
45
+ inkscape:window-x="0"
46
+ inkscape:window-y="0"
47
+ inkscape:window-maximized="1"
48
+ inkscape:current-layer="svg6">
49
+ <inkscape:grid
50
+ type="xygrid"
51
+ id="grid817" />
52
+ </sodipodi:namedview>
53
+ <defs
54
+ id="defs3051">
55
+ <style
56
+ type="text/css"
57
+ id="current-color-scheme">
58
+ .ColorScheme-Text {
59
+ color:#4d4d4d;
60
+ }
61
+ </style>
62
+ </defs>
63
+ <path
64
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
65
+ d="m 4.5,3.5 h 15 v 3 l -6,6 v 8 h -3 v -8 l -6,-6 z"
66
+ id="path819"
67
+ inkscape:connector-curvature="0"
68
+ sodipodi:nodetypes="ccccccccc" />
69
+ </svg>
@@ -0,0 +1,60 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Generated by IcoMoon.io -->
3
+
4
+ <svg
5
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
6
+ xmlns:cc="http://creativecommons.org/ns#"
7
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
+ xmlns:svg="http://www.w3.org/2000/svg"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ version="1.1"
13
+ width="24"
14
+ height="24"
15
+ viewBox="0 0 24 24"
16
+ id="svg6"
17
+ sodipodi:docname="uniE118.svg"
18
+ inkscape:version="0.92.3 (2405546, 2018-03-11)">
19
+ <metadata
20
+ id="metadata12">
21
+ <rdf:RDF>
22
+ <cc:Work
23
+ rdf:about="">
24
+ <dc:format>image/svg+xml</dc:format>
25
+ <dc:type
26
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
27
+ <dc:title>uniE118</dc:title>
28
+ </cc:Work>
29
+ </rdf:RDF>
30
+ </metadata>
31
+ <defs
32
+ id="defs10" />
33
+ <sodipodi:namedview
34
+ pagecolor="#ffffff"
35
+ bordercolor="#666666"
36
+ borderopacity="1"
37
+ objecttolerance="10"
38
+ gridtolerance="10"
39
+ guidetolerance="10"
40
+ inkscape:pageopacity="0"
41
+ inkscape:pageshadow="2"
42
+ inkscape:window-width="1280"
43
+ inkscape:window-height="995"
44
+ id="namedview8"
45
+ showgrid="false"
46
+ inkscape:zoom="2.6074563"
47
+ inkscape:cx="-1.4161169"
48
+ inkscape:cy="24.003562"
49
+ inkscape:window-x="1600"
50
+ inkscape:window-y="0"
51
+ inkscape:window-maximized="1"
52
+ inkscape:current-layer="svg6" />
53
+ <title
54
+ id="title2">uniE118</title>
55
+ <path
56
+ d="M 3.2218005,8.0100997 0.03,14.394299 V 4.8182992 h 3.1918005 q 0,-0.6541605 0.4710195,-1.12518 Q 4.1638395,3.2220997 4.818,3.2220997 h 4.788 q 0.67032,0 1.132961,0.4710195 0.46264,0.4710195 0.46264,1.12518 h 7.9798 V 8.0100997 H 3.221202 Z M 23.97,9.6057012 19.182,20.7779 H 0.03 L 4.818,9.6057012 Z"
57
+ id="path4"
58
+ inkscape:connector-curvature="0"
59
+ style="stroke-width:0.59850001" />
60
+ </svg>
@@ -0,0 +1,82 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
4
+ xmlns:cc="http://creativecommons.org/ns#"
5
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
+ xmlns:svg="http://www.w3.org/2000/svg"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
9
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
10
+ inkscape:version="1.1-dev (bc69992, 2020-04-15)"
11
+ height="24"
12
+ width="24"
13
+ sodipodi:docname="freehand.svg"
14
+ id="svg6"
15
+ version="1.1"
16
+ viewBox="0 0 24 24">
17
+ <metadata
18
+ id="metadata10">
19
+ <rdf:RDF>
20
+ <cc:Work
21
+ rdf:about="">
22
+ <dc:format>image/svg+xml</dc:format>
23
+ <dc:type
24
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
25
+ <dc:title></dc:title>
26
+ </cc:Work>
27
+ </rdf:RDF>
28
+ </metadata>
29
+ <sodipodi:namedview
30
+ inkscape:snap-bbox="false"
31
+ inkscape:current-layer="svg6"
32
+ inkscape:window-maximized="0"
33
+ inkscape:window-y="23"
34
+ inkscape:window-x="65"
35
+ inkscape:cy="11.267148"
36
+ inkscape:cx="11.277911"
37
+ inkscape:zoom="29.974231"
38
+ showgrid="true"
39
+ id="namedview8"
40
+ inkscape:window-height="977"
41
+ inkscape:window-width="1673"
42
+ inkscape:pageshadow="2"
43
+ inkscape:pageopacity="0"
44
+ guidetolerance="10"
45
+ gridtolerance="10"
46
+ objecttolerance="10"
47
+ borderopacity="1"
48
+ bordercolor="#666666"
49
+ pagecolor="#8b8b8b">
50
+ <inkscape:grid
51
+ originy="0"
52
+ originx="0"
53
+ id="grid4474"
54
+ type="xygrid" />
55
+ </sodipodi:namedview>
56
+ <defs
57
+ id="defs3051">
58
+ <style
59
+ id="current-color-scheme"
60
+ type="text/css">
61
+ .ColorScheme-Text {
62
+ color:#4d4d4d;
63
+ }
64
+ </style>
65
+ </defs>
66
+ <path
67
+ id="path817"
68
+ d="m 0.48657559,8.7946181 c 0,0 6.76218361,2.5141709 3.36709081,5.5729199 -3.39509508,3.058748 3.3670888,5.572918 3.3670888,5.572918"
69
+ style="fill:none;stroke:#000000;stroke-width:1.39858;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
70
+ <path
71
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
72
+ d="M 7.2207552,19.940456 V 14.979547 L 18.796211,3.4040918 23.75712,8.365001 12.181664,19.940456 V 18.28682 L 19.623029,10.845455 16.315756,7.5381827 8.8743912,14.979547 v 2.480454 l 0.826819,0.826819 h 2.4804538 v 1.653636 z"
73
+ id="path814-4"
74
+ inkscape:connector-curvature="0"
75
+ sodipodi:nodetypes="cccccccccccccc" />
76
+ <path
77
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
78
+ d="m 11.354846,12.499092 v 2.480455 h 2.480455 v 1.653636 l -0.826819,0.826818 V 15.806365 H 10.528028 V 13.32591 Z"
79
+ id="path816-0"
80
+ inkscape:connector-curvature="0"
81
+ sodipodi:nodetypes="ccccccccc" />
82
+ </svg>