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,71 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ width="24"
4
+ height="24"
5
+ viewBox="0 0 24 24"
6
+ version="1.1"
7
+ id="svg8"
8
+ inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
9
+ sodipodi:docname="clock.svg"
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
+ <defs
18
+ id="defs2" />
19
+ <sodipodi:namedview
20
+ id="base"
21
+ pagecolor="#ffffff"
22
+ bordercolor="#666666"
23
+ borderopacity="1.0"
24
+ inkscape:pageopacity="0.0"
25
+ inkscape:pageshadow="2"
26
+ inkscape:zoom="15.839192"
27
+ inkscape:cx="4.5456864"
28
+ inkscape:cy="13.037281"
29
+ inkscape:document-units="px"
30
+ inkscape:current-layer="layer1"
31
+ showgrid="true"
32
+ inkscape:window-width="1920"
33
+ inkscape:window-height="1171"
34
+ inkscape:window-x="1600"
35
+ inkscape:window-y="0"
36
+ inkscape:window-maximized="1"
37
+ inkscape:snap-bbox="true"
38
+ inkscape:bbox-paths="true"
39
+ inkscape:bbox-nodes="true"
40
+ inkscape:snap-bbox-edge-midpoints="true"
41
+ inkscape:snap-bbox-midpoints="true"
42
+ units="px"
43
+ inkscape:document-rotation="0"
44
+ inkscape:pagecheckerboard="0">
45
+ <inkscape:grid
46
+ type="xygrid"
47
+ id="grid4231" />
48
+ </sodipodi:namedview>
49
+ <metadata
50
+ id="metadata5">
51
+ <rdf:RDF>
52
+ <cc:Work
53
+ rdf:about="">
54
+ <dc:format>image/svg+xml</dc:format>
55
+ <dc:type
56
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
57
+ </cc:Work>
58
+ </rdf:RDF>
59
+ </metadata>
60
+ <g
61
+ inkscape:label="Layer 1"
62
+ inkscape:groupmode="layer"
63
+ id="layer1"
64
+ transform="translate(0,-290.65)">
65
+ <path
66
+ id="path857"
67
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000;stop-opacity:1;opacity:1"
68
+ d="M 12 1 C 5.9367124 1 1 5.93671 1 12 C 1 18.06329 5.9367124 23 12 23 C 18.063288 23 23 18.06329 23 12 C 23 5.93671 18.063288 1 12 1 z M 12 3 C 16.982407 3 21 7.01759 21 12 C 21 16.98241 16.982407 21 12 21 C 7.0175926 21 3 16.98241 3 12 C 3 7.01759 7.0175926 3 12 3 z M 11 4 L 11 13 L 18 13 L 18 11 L 13 11 L 13 4 L 11 4 z "
69
+ transform="translate(0,290.65)" />
70
+ </g>
71
+ </svg>
package/icons/cog.svg ADDED
@@ -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="uniE019.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>uniE019</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="7.375"
47
+ inkscape:cx="16"
48
+ inkscape:cy="16"
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">uniE019</title>
55
+ <path
56
+ d="m 12,1.2956 q 0.616,0 1.3811,0.0931 l 0.7091,2.8371 0.0931,0.0189 q 0.9149,0.2611 1.7549,0.728 l 0.0931,0.0371 2.5011,-1.4931 q 1.1389,0.896 1.9411,1.96 l -1.4931,2.5011 0.056,0.0931 q 0.4669,0.8211 0.728,1.736 l 0.0189,0.112 2.8371,0.7091 q 0.0931,0.8029 0.0931,1.3629 0,0.6349 -0.0931,1.3811 l -2.8371,0.7091 -0.0189,0.112 q -0.28,0.9149 -0.728,1.736 l -0.056,0.0931 1.4931,2.5011 q -0.896,1.1389 -1.9411,1.96 l -2.5011,-1.512 -0.0931,0.056 q -0.8211,0.4669 -1.7549,0.728 l -0.0931,0.0371 -0.7091,2.8189 Q 12.5782,22.7044 12,22.7044 q -0.616,0 -1.3811,-0.0931 L 9.9098,19.7924 9.8167,19.7553 Q 8.9018,19.4942 8.0618,19.0273 l -0.0931,-0.056 -2.5011,1.512 q -1.12,-0.896 -1.9411,-1.96 l 1.4931,-2.5011 -0.056,-0.0931 q -0.4669,-0.84 -0.7091,-1.736 L 4.2174,14.0811 1.3985,13.372 q -0.112,-0.784 -0.112,-1.3811 0,-0.616 0.112,-1.3629 L 4.2174,9.9189 4.2545,9.8069 Q 4.4974,8.9109 4.9636,8.0709 L 5.0196,7.9778 3.5265,5.4767 q 0.8771,-1.1389 1.96,-1.96 L 7.9694,5.0098 8.0625,4.9727 q 0.84,-0.4669 1.7549,-0.728 L 9.9105,4.2258 10.6196,1.3887 q 0.8029,-0.0931 1.3811,-0.0931 z m 0,6.7018 q -1.6611,0 -2.8371,1.176 -1.176,1.176 -1.176,2.828 0,1.652 1.176,2.828 1.176,1.176 2.8371,1.176 1.6611,0 2.8371,-1.176 1.176,-1.176 1.176,-2.828 0,-1.652 -1.176,-2.828 Q 13.6611,7.9974 12,7.9974 Z"
57
+ id="path4"
58
+ inkscape:connector-curvature="0"
59
+ style="stroke-width:0.69999999" />
60
+ </svg>
@@ -0,0 +1,73 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
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
+ width="24"
13
+ height="24"
14
+ viewBox="0 0 24 24"
15
+ version="1.1"
16
+ id="svg8"
17
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
18
+ sodipodi:docname="collapse.svg">
19
+ <defs
20
+ id="defs2" />
21
+ <sodipodi:namedview
22
+ id="base"
23
+ pagecolor="#ffffff"
24
+ bordercolor="#666666"
25
+ borderopacity="1.0"
26
+ inkscape:pageopacity="0.0"
27
+ inkscape:pageshadow="2"
28
+ inkscape:zoom="15.839192"
29
+ inkscape:cx="10.171155"
30
+ inkscape:cy="1.7329004"
31
+ inkscape:document-units="px"
32
+ inkscape:current-layer="layer1"
33
+ showgrid="true"
34
+ inkscape:window-width="1280"
35
+ inkscape:window-height="995"
36
+ inkscape:window-x="1600"
37
+ inkscape:window-y="0"
38
+ inkscape:window-maximized="1"
39
+ inkscape:snap-bbox="true"
40
+ inkscape:bbox-paths="true"
41
+ inkscape:bbox-nodes="true"
42
+ inkscape:snap-bbox-edge-midpoints="true"
43
+ inkscape:snap-bbox-midpoints="true"
44
+ units="px">
45
+ <inkscape:grid
46
+ type="xygrid"
47
+ id="grid4231" />
48
+ </sodipodi:namedview>
49
+ <metadata
50
+ id="metadata5">
51
+ <rdf:RDF>
52
+ <cc:Work
53
+ rdf:about="">
54
+ <dc:format>image/svg+xml</dc:format>
55
+ <dc:type
56
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
57
+ <dc:title></dc:title>
58
+ </cc:Work>
59
+ </rdf:RDF>
60
+ </metadata>
61
+ <g
62
+ inkscape:label="Layer 1"
63
+ inkscape:groupmode="layer"
64
+ id="layer1"
65
+ transform="translate(0,-290.65)">
66
+ <path
67
+ style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.99999744;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
68
+ d="M 20.499985,293.841 H 3.5000151 L 12,310.84097 Z"
69
+ id="path1364"
70
+ inkscape:connector-curvature="0"
71
+ sodipodi:nodetypes="cccc" />
72
+ </g>
73
+ </svg>
@@ -0,0 +1,72 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Generated by IcoMoon.io -->
3
+
4
+ <svg
5
+ version="1.1"
6
+ width="24"
7
+ height="24"
8
+ viewBox="0 0 24 24"
9
+ id="svg6"
10
+ sodipodi:docname="compare.svg"
11
+ inkscape:version="1.4 (e7c3feb100, 2024-10-09)"
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
+ <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>uniE094</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="1600"
43
+ inkscape:window-height="842"
44
+ id="namedview8"
45
+ showgrid="true"
46
+ inkscape:zoom="10.086473"
47
+ inkscape:cx="5.3537048"
48
+ inkscape:cy="12.739835"
49
+ inkscape:window-x="0"
50
+ inkscape:window-y="0"
51
+ inkscape:window-maximized="1"
52
+ inkscape:current-layer="svg6"
53
+ inkscape:showpageshadow="2"
54
+ inkscape:pagecheckerboard="0"
55
+ inkscape:deskcolor="#d1d1d1">
56
+ <inkscape:grid
57
+ type="xygrid"
58
+ id="grid235"
59
+ originx="0"
60
+ originy="0"
61
+ spacingy="1"
62
+ spacingx="1"
63
+ units="px"
64
+ visible="true" />
65
+ </sodipodi:namedview>
66
+ <title
67
+ id="title2">uniE094</title>
68
+ <path
69
+ id="path4"
70
+ style="stroke-width:0.54207"
71
+ d="M 16.671875 1.984375 C 16.554027 1.9810607 16.420934 2.0150574 16.271484 2.0878906 L 9.2988281 7.1855469 C 9.0995621 7.2826539 9 7.4013656 9 7.5429688 C 9 7.6845713 9.0995621 7.8032833 9.2988281 7.9003906 L 16.271484 12.912109 C 16.470283 13.008939 16.64189 13.03722 16.785156 13 C 16.928423 12.96278 17 12.867652 17 12.710938 L 17 9 L 21 9 C 21.261333 9 21.547916 8.9461909 21.728516 8.8378906 C 21.909116 8.7295891 22 8.5961673 22 8.4394531 L 22 6.5605469 C 22 6.4038323 21.90912 6.2723634 21.728516 6.1640625 C 21.547916 6.0557616 21.261333 6 21 6 L 17 6 L 17 2.2910156 C 16.999534 2.1345809 16.92796 2.0374995 16.785156 2 C 16.749457 1.9906253 16.711158 1.9854798 16.671875 1.984375 z M 7.328125 10.984375 C 7.2888423 10.985478 7.2505435 10.990625 7.2148438 11 C 7.0720397 11.037499 7.000466 11.134581 7 11.291016 L 7 15 L 3 15 C 2.738667 15 2.4520844 15.055762 2.2714844 15.164062 C 2.0908804 15.272364 2 15.403832 2 15.560547 L 2 17.439453 C 2 17.596167 2.0908844 17.729589 2.2714844 17.837891 C 2.4520844 17.94619 2.738667 18 3 18 L 7 18 L 7 21.710938 C 7 21.867653 7.0715767 21.96278 7.2148438 22 C 7.3581097 22.03722 7.5297166 22.008939 7.7285156 21.912109 L 14.701172 16.900391 C 14.90044 16.803283 15 16.684571 15 16.542969 C 15 16.401366 14.900438 16.282657 14.701172 16.185547 L 7.7285156 11.087891 C 7.5790661 11.015073 7.4459731 10.981065 7.328125 10.984375 z " />
72
+ </svg>
package/icons/cone.svg ADDED
@@ -0,0 +1,58 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ height="24"
4
+ version="1.1"
5
+ viewBox="0 0 24 24"
6
+ width="24"
7
+ id="svg1"
8
+ sodipodi:docname="cone.svg"
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
+ <defs
15
+ id="defs1" />
16
+ <sodipodi:namedview
17
+ id="namedview1"
18
+ pagecolor="#ffffff"
19
+ bordercolor="#666666"
20
+ borderopacity="1.0"
21
+ inkscape:showpageshadow="2"
22
+ inkscape:pageopacity="0.0"
23
+ inkscape:pagecheckerboard="0"
24
+ inkscape:deskcolor="#d1d1d1"
25
+ inkscape:zoom="21.993724"
26
+ inkscape:cx="11.503282"
27
+ inkscape:cy="10.298392"
28
+ inkscape:window-width="1600"
29
+ inkscape:window-height="842"
30
+ inkscape:window-x="0"
31
+ inkscape:window-y="0"
32
+ inkscape:window-maximized="1"
33
+ inkscape:current-layer="layer1"
34
+ showgrid="true">
35
+ <inkscape:grid
36
+ id="grid1"
37
+ units="px"
38
+ originx="0"
39
+ originy="0"
40
+ spacingx="1"
41
+ spacingy="1"
42
+ empcolor="#0099e5"
43
+ empopacity="0.30196078"
44
+ color="#0099e5"
45
+ opacity="0.14901961"
46
+ empspacing="5"
47
+ enabled="true"
48
+ visible="true" />
49
+ </sodipodi:namedview>
50
+ <g
51
+ id="layer1"
52
+ transform="matrix(1.1764703,0,0,1.1764703,0.23529702,0.23545728)">
53
+ <path
54
+ id="path1-7"
55
+ style="stroke-linecap:round;stroke-linejoin:round"
56
+ d="M 9.9335937 1.079842 A 0.42500001 0.42500001 0 0 0 9.8920898 1.0981038 A 0.42500001 0.42500001 0 0 0 9.8472656 1.1030842 A 0.42500001 0.42500001 0 0 0 9.7924804 1.142928 A 0.42500001 0.42500001 0 0 0 9.7061523 1.206014 A 0.42500001 0.42500001 0 0 0 9.6430663 1.2923421 A 0.42500001 0.42500001 0 0 0 9.6032225 1.3471273 L 4.0832017 15.78717 L 4.0782212 15.798791 A 0.42500001 0.42500001 0 0 0 4.0749009 15.825353 A 0.42500001 0.42500001 0 0 0 4.0499985 15.949865 C 4.0499985 16.621657 4.3878791 17.245417 4.9265612 17.747815 C 5.4652434 18.250213 6.2093581 18.651102 7.1113274 18.931507 C 8.9152662 19.492317 11.084734 19.492317 12.888673 18.931507 C 13.790642 18.651102 14.534757 18.250213 15.073439 17.747815 C 15.612121 17.245417 15.950001 16.621657 15.950001 15.949865 A 0.42500001 0.42500001 0 0 0 15.950001 15.948205 A 0.42500001 0.42500001 0 0 0 15.921779 15.798791 L 15.916798 15.78717 L 10.396777 1.3471273 A 0.42500001 0.42500001 0 0 0 10.393457 1.3421468 A 0.42500001 0.42500001 0 0 0 10.268945 1.1728108 A 0.42500001 0.42500001 0 0 0 10.262305 1.1661702 A 0.42500001 0.42500001 0 0 0 10.152734 1.1030842 A 0.42500001 0.42500001 0 0 0 10.10791 1.0981038 A 0.42500001 0.42500001 0 0 0 10 1.0864827 A 0.42500001 0.42500001 0 0 0 9.9335937 1.079842 z M 10 2.690194 L 15.095021 16.016271 C 15.074514 16.385947 14.885649 16.761689 14.494044 17.126916 C 14.078836 17.514157 13.443801 17.870322 12.636329 18.12135 C 11.021385 18.623405 8.9786151 18.623405 7.3636712 18.12135 C 6.5561994 17.870322 5.9211636 17.514157 5.5059559 17.126916 C 5.1143505 16.761689 4.9254859 16.385947 4.9049792 16.016271 L 10 2.690194 z " />
57
+ </g>
58
+ </svg>
@@ -0,0 +1,62 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Generated by IcoMoon.io -->
3
+
4
+ <svg
5
+ version="1.1"
6
+ width="24"
7
+ height="24"
8
+ viewBox="0 0 24 24"
9
+ id="svg6"
10
+ sodipodi:docname="confirm.svg"
11
+ inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
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
+ <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>uniE082</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="1600"
43
+ inkscape:window-height="837"
44
+ id="namedview8"
45
+ showgrid="false"
46
+ inkscape:zoom="7.375"
47
+ inkscape:cx="16.135593"
48
+ inkscape:cy="16.067797"
49
+ inkscape:window-x="0"
50
+ inkscape:window-y="0"
51
+ inkscape:window-maximized="1"
52
+ inkscape:current-layer="svg6"
53
+ inkscape:showpageshadow="2"
54
+ inkscape:pagecheckerboard="0"
55
+ inkscape:deskcolor="#d1d1d1" />
56
+ <title
57
+ id="title2">uniE082</title>
58
+ <path
59
+ id="path4"
60
+ style="stroke-width:0.7"
61
+ d="M 12 1.2304688 C 10.544001 1.2304688 9.149758 1.5120589 7.8183594 2.078125 C 6.4869607 2.6441911 5.339599 3.410401 4.375 4.375 C 3.410401 5.339599 2.6441911 6.4869607 2.078125 7.8183594 C 1.5120589 9.149758 1.2304688 10.544001 1.2304688 12 C 1.2304688 13.455999 1.5120589 14.850242 2.078125 16.181641 C 2.6441911 17.513039 3.410401 18.660401 4.375 19.625 C 5.339599 20.589599 6.4869607 21.355809 7.8183594 21.921875 C 9.149758 22.487941 10.544001 22.769531 12 22.769531 C 13.455999 22.769531 14.850242 22.487941 16.181641 21.921875 C 17.513039 21.355809 18.660401 20.589599 19.625 19.625 C 20.589599 18.660401 21.355809 17.513039 21.921875 16.181641 C 22.487941 14.850242 22.769531 13.455999 22.769531 12 C 22.769531 10.544001 22.487941 9.149758 21.921875 7.8183594 C 21.355809 6.4869607 20.589599 5.339599 19.625 4.375 C 18.660401 3.410401 17.513039 2.6441911 16.181641 2.078125 C 14.850242 1.5120589 13.455999 1.2304688 12 1.2304688 z M 17.347656 5.3535156 C 17.435341 5.3535156 17.509229 5.3890338 17.570312 5.4589844 L 19.894531 7.7832031 C 19.964482 7.8446151 20 7.9185028 20 8.0058594 C 20 8.0932153 19.964482 8.1719082 19.894531 8.2421875 L 9.609375 18.541016 C 9.5479631 18.610966 9.4708607 18.646484 9.3789062 18.646484 C 9.2869526 18.646484 9.2098496 18.610966 9.1484375 18.541016 L 4.1054688 13.498047 C 4.035518 13.428096 4 13.349403 4 13.261719 C 4 13.174034 4.035518 13.098193 4.1054688 13.037109 L 6.4296875 10.712891 C 6.4910994 10.64294 6.5649872 10.607422 6.6523438 10.607422 C 6.7397001 10.607422 6.8203459 10.64294 6.890625 10.712891 L 9.1367188 12.958984 C 9.1981307 13.020398 9.2768234 13.050781 9.3730469 13.050781 C 9.4692696 13.050781 9.5479629 13.020398 9.609375 12.958984 L 17.109375 5.4589844 C 17.179326 5.3890338 17.259972 5.3535156 17.347656 5.3535156 z " />
62
+ </svg>
package/icons/copy.svg ADDED
@@ -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="uniE205.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>uniE205</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="7.375"
47
+ inkscape:cx="16"
48
+ inkscape:cy="16"
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">uniE205</title>
55
+ <path
56
+ d="m 13.86585,1.73345 h 1.8669 q 0.392,0 0.6629,0.2709 0.2709,0.2709 0.2709,0.6629 v 0.9331 h 0.9331 q 0.392,0 0.6629,0.2709 0.2709,0.2709 0.2709,0.6629 v 1.8669 q 0,0.392 -0.2709,0.6629 -0.2709,0.2709 -0.6629,0.2709 h -5.6 q -0.392,0 -0.6629,-0.2709 -0.2709,-0.2709 -0.2709,-0.6629 v -1.8669 q 0,-0.392 0.2709,-0.6629 0.2709,-0.2709 0.6629,-0.2709 h 0.9331 v -0.9331 q 0,-0.392 0.2709,-0.6629 0.2709,-0.2709 0.6629,-0.2709 z m 6.5338,4.6662 v -2.8 q 0.7651,0 1.316,0.5509 0.5509,0.5509 0.5509,1.316 v 14.9331 q 0,0.7651 -0.5509,1.316 -0.5509,0.5509 -1.316,0.5509 h -11.2 q -0.0189,0 -0.3731,-0.0749 l 4.592,-4.592 -6.0851,-6.0851 v -6.048 q 0,-0.7651 0.5509,-1.316 0.5509,-0.5509 1.316,-0.5509 v 2.8 q 0,1.1571 0.8211,1.9789 0.8211,0.8218 1.9789,0.8211 h 5.6 q 1.1571,0 1.9789,-0.8211 0.8218,-0.8211 0.8211,-1.9789 z m -10.976,11.2 -3.9571,3.9571 v -3.024 h -3.7331 v -1.8669 h 3.7331 v -3.024 z"
57
+ id="path4"
58
+ inkscape:connector-curvature="0"
59
+ style="stroke-width:0.69999999" />
60
+ </svg>
@@ -0,0 +1,58 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ height="24"
4
+ version="1.1"
5
+ viewBox="0 0 24 24"
6
+ width="24"
7
+ id="svg1"
8
+ sodipodi:docname="cuboid.svg"
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
+ <defs
15
+ id="defs1" />
16
+ <sodipodi:namedview
17
+ id="namedview1"
18
+ pagecolor="#ffffff"
19
+ bordercolor="#666666"
20
+ borderopacity="1.0"
21
+ inkscape:showpageshadow="2"
22
+ inkscape:pageopacity="0.0"
23
+ inkscape:pagecheckerboard="0"
24
+ inkscape:deskcolor="#d1d1d1"
25
+ inkscape:zoom="21.993724"
26
+ inkscape:cx="11.503282"
27
+ inkscape:cy="10.298393"
28
+ inkscape:window-width="1600"
29
+ inkscape:window-height="842"
30
+ inkscape:window-x="0"
31
+ inkscape:window-y="0"
32
+ inkscape:window-maximized="1"
33
+ inkscape:current-layer="layer1"
34
+ showgrid="true">
35
+ <inkscape:grid
36
+ id="grid1"
37
+ units="px"
38
+ originx="0"
39
+ originy="0"
40
+ spacingx="1"
41
+ spacingy="1"
42
+ empcolor="#0099e5"
43
+ empopacity="0.30196078"
44
+ color="#0099e5"
45
+ opacity="0.14901961"
46
+ empspacing="5"
47
+ enabled="true"
48
+ visible="true" />
49
+ </sodipodi:namedview>
50
+ <g
51
+ id="layer1"
52
+ transform="matrix(1.1764703,0,0,1.1764703,0.23529702,0.23545728)">
53
+ <path
54
+ id="path2"
55
+ style="stroke-linejoin:round"
56
+ d="m 12.55498,1.0748876 a 0.42504251,0.42504251 0 0 0 -0.20752,0.049805 L 1.2991182,7.0763539 A 0.42504251,0.42504251 0 0 0 1.0749971,7.4498891 v 7.6500019 a 0.42504251,0.42504251 0 0 0 0.2141602,0.368555 l 5.9483413,3.401661 a 0.42504251,0.42504251 0 0 0 0.028223,0.0083 0.42500001,0.42500001 0 0 0 0.1626953,0.0415 0.42504251,0.42504251 0 0 0 0.018262,0.005 0.42500001,0.42500001 0 0 0 0.00332,0 0.42500001,0.42500001 0 0 0 0.180957,-0.04649 0.42504251,0.42504251 0 0 0 0.021582,-0.005 L 18.70088,12.923425 A 0.42504251,0.42504251 0 0 0 18.925001,12.54989 V 4.9015487 a 0.42504251,0.42504251 0 0 0 -0.21416,-0.370215 L 12.7625,1.1313329 a 0.42504251,0.42504251 0 0 0 -0.20752,-0.056445 z m -0.01162,0.911426 5.080079,2.903614 L 7.4566393,10.363464 2.3765599,7.4598501 Z m 5.531642,3.624122 V 12.295886 L 7.8749988,17.787684 v -6.68379 z M 1.9249973,8.1820182 7.0249986,11.097253 v 6.67051 L 1.9249973,14.854188 Z" />
57
+ </g>
58
+ </svg>
@@ -0,0 +1,47 @@
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 6.3499999 6.35"
8
+ version="1.1"
9
+ id="svg5"
10
+ xml:space="preserve"
11
+ inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
12
+ sodipodi:docname="cyclomedia.svg"
13
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
14
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
15
+ xmlns="http://www.w3.org/2000/svg"
16
+ xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
17
+ id="namedview7"
18
+ pagecolor="#ffffff"
19
+ bordercolor="#666666"
20
+ borderopacity="1.0"
21
+ inkscape:showpageshadow="2"
22
+ inkscape:pageopacity="0.0"
23
+ inkscape:pagecheckerboard="0"
24
+ inkscape:deskcolor="#d1d1d1"
25
+ inkscape:document-units="mm"
26
+ showgrid="false"
27
+ inkscape:zoom="32"
28
+ inkscape:cx="13.09375"
29
+ inkscape:cy="11.234375"
30
+ inkscape:window-width="1600"
31
+ inkscape:window-height="841"
32
+ inkscape:window-x="0"
33
+ inkscape:window-y="0"
34
+ inkscape:window-maximized="1"
35
+ inkscape:current-layer="layer1"><inkscape:grid
36
+ type="xygrid"
37
+ id="grid248"
38
+ originx="0"
39
+ originy="0" /></sodipodi:namedview><defs
40
+ id="defs2" /><g
41
+ inkscape:label="Layer 1"
42
+ inkscape:groupmode="layer"
43
+ id="layer1"><path
44
+ id="path454"
45
+ style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583;stop-color:#000000"
46
+ d="M 5.2916667,0.26458333 5.0120972,0.39894206 C 4.8423473,0.47273198 4.5648404,0.58989135 4.3950806,0.65939128 L 4.0860555,0.78548177 V 1.3590902 c 0,0.5175895 0.02365,0.6003875 0.2428792,0.8500773 0.4441996,0.5058895 0.3892594,1.3024374 0.02834,1.9305314 C 3.9963547,4.7677929 3.96875,4.7625 3.96875,4.7625 L 5.2916667,4.2333333 Z M 2.6044922,0.35088298 V 1.0846883 1.8190104 l 0.2671671,-0.076481 c 0.1467899,-0.0422 0.3873913,-0.053955 0.5348511,-0.026355 l 0.2682007,0.050643 V 1.3223999 0.87849935 L 3.13986,0.61443278 Z M 2.2344889,0.37258708 1.6376261,0.64388835 1.0293945,0.90020345 V 4.9330322 c 0,0 0.4373186,-0.1926981 0.8020183,-0.3596679 L 2.2784139,4.3687256 2.0732585,4.1248128 C 1.6360289,3.6049133 1.6330574,2.8724609 2.065507,2.2484416 2.2672768,1.9568319 2.2803601,1.8844408 2.2582601,1.1544515 Z M 3.175,2.1166667 c -0.5845013,0 -1.0583333,0.473832 -1.0583333,1.0583333 0,0.5845013 0.473832,1.0583333 1.0583333,1.0583333 0.5845013,0 1.0583333,-0.473832 1.0583333,-1.0583333 0,-0.5845013 -0.473832,-1.0583333 -1.0583333,-1.0583333 z m -0.069246,0.372587 c 0.3224197,0 0.3140776,0.211569 -0.010852,0.276469 C 2.9079117,2.8031126 2.8135479,2.889267 2.723348,3.1052368 2.5952081,3.4119765 2.5813381,3.425731 2.4949382,3.3393311 2.2764784,3.1208613 2.730384,2.4892537 3.105754,2.4892537 Z M 2.9223022,4.6038534 v 0.6583577 c 0,0.6584493 9.36e-5,0.8232056 0.2470134,0.8232056 0.2469197,0 0.2470033,-0.1731962 0.2470133,-0.8232056 V 4.6038534 Z"
47
+ sodipodi:nodetypes="ccccsczcccccccccccccccccccccccsssssscccscssccc" /></g></svg>
@@ -0,0 +1,58 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ height="24"
4
+ version="1.1"
5
+ viewBox="0 0 24 24"
6
+ width="24"
7
+ id="svg1"
8
+ sodipodi:docname="cylinder.svg"
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
+ <defs
15
+ id="defs1" />
16
+ <sodipodi:namedview
17
+ id="namedview1"
18
+ pagecolor="#ffffff"
19
+ bordercolor="#666666"
20
+ borderopacity="1.0"
21
+ inkscape:showpageshadow="2"
22
+ inkscape:pageopacity="0.0"
23
+ inkscape:pagecheckerboard="0"
24
+ inkscape:deskcolor="#d1d1d1"
25
+ inkscape:zoom="21.993724"
26
+ inkscape:cx="11.503282"
27
+ inkscape:cy="10.298392"
28
+ inkscape:window-width="1600"
29
+ inkscape:window-height="842"
30
+ inkscape:window-x="0"
31
+ inkscape:window-y="0"
32
+ inkscape:window-maximized="1"
33
+ inkscape:current-layer="layer1"
34
+ showgrid="true">
35
+ <inkscape:grid
36
+ id="grid1"
37
+ units="px"
38
+ originx="0"
39
+ originy="0"
40
+ spacingx="1"
41
+ spacingy="1"
42
+ empcolor="#0099e5"
43
+ empopacity="0.30196078"
44
+ color="#0099e5"
45
+ opacity="0.14901961"
46
+ empspacing="5"
47
+ enabled="true"
48
+ visible="true" />
49
+ </sodipodi:namedview>
50
+ <g
51
+ id="layer1"
52
+ transform="matrix(1.1764703,0,0,1.1764703,0.23529702,0.23545728)">
53
+ <path
54
+ id="path1"
55
+ style="stroke-linecap:round;stroke-linejoin:round"
56
+ d="M 10 0.64986147 C 8.4124743 0.64986147 6.9720535 0.99175726 5.8927724 1.5729086 C 4.8134914 2.15406 4.0499985 3.016718 4.0499985 4.0515225 L 4.0499985 15.949865 C 4.0499985 16.621657 4.3878791 17.245417 4.9265612 17.747815 C 5.4652434 18.250213 6.2093581 18.651102 7.1113274 18.931507 C 8.9152662 19.492317 11.084734 19.492317 12.888673 18.931507 C 13.790642 18.651102 14.534757 18.250213 15.073439 17.747815 C 15.612121 17.245417 15.950001 16.621657 15.950001 15.949865 L 15.950001 4.0515225 C 15.950001 3.016718 15.186509 2.15406 14.107228 1.5729086 C 13.027947 0.99175726 11.587526 0.64986147 10 0.64986147 z M 10 1.4998617 C 11.463848 1.4998617 12.785094 1.824392 13.70547 2.3199791 C 14.625846 2.8155662 15.100001 3.4432796 15.100001 4.0515225 C 15.100001 4.6597655 14.625846 5.2841584 13.70547 5.7797455 C 12.785094 6.2753326 11.463848 6.5998629 10 6.5998629 C 8.5361519 6.5998629 7.2149063 6.2753326 6.2945303 5.7797455 C 5.3741542 5.2841584 4.8999987 4.6597655 4.8999987 4.0515225 C 4.8999987 3.4432796 5.3741542 2.8155662 6.2945303 2.3199791 C 7.2149063 1.824392 8.5361519 1.4998617 10 1.4998617 z M 4.8999987 5.8212495 C 5.1803937 6.0873558 5.5164701 6.3241917 5.8927724 6.526816 C 6.9720535 7.1079674 8.4124743 7.4498631 10 7.4498631 C 11.587526 7.4498631 13.027947 7.1079674 14.107228 6.526816 C 14.48353 6.3241917 14.819606 6.0873558 15.100001 5.8212495 L 15.100001 15.949865 C 15.100001 16.340938 14.909251 16.739676 14.494044 17.126916 C 14.078836 17.514157 13.443801 17.870322 12.636329 18.12135 C 11.021385 18.623405 8.9786151 18.623405 7.3636712 18.12135 C 6.5561994 17.870322 5.9211636 17.514157 5.5059559 17.126916 C 5.0907482 16.739676 4.8999987 16.340938 4.8999987 15.949865 L 4.8999987 5.8212495 z " />
57
+ </g>
58
+ </svg>