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,50 @@
1
+ div.modal-dialog-container {
2
+ position: fixed;
3
+ left: 0;
4
+ right: 0;
5
+ top: 0;
6
+ bottom: 0;
7
+ padding: 2em;
8
+ background-color: rgba(127, 127, 127, 0.5);
9
+ z-index: 202;
10
+ display: flex;
11
+ justify-content: center;
12
+ }
13
+
14
+ div.modal-dialog {
15
+ height: 100%;
16
+ background-color: var(--container-bg-color);
17
+ box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.75);
18
+ display: inline-flex;
19
+ flex-direction: column;
20
+ }
21
+
22
+ div.modal-dialog-title {
23
+ font-weight: bold;
24
+ color: var(--titlebar-text-color);
25
+ background-color: var(--titlebar-bg-color);
26
+ flex: 0 0 2.5em;
27
+ display: flex;
28
+ align-items: center;
29
+ padding: 0 0.25em;
30
+ display: flex;
31
+ align-items: center;
32
+ }
33
+
34
+ div.modal-dialog-title span:not(.icon) {
35
+ flex: 1 1 auto;
36
+ }
37
+
38
+ div.modal-dialog-title span.icon {
39
+ flex: 0 0 auto;
40
+ margin: 0 0.25em;
41
+ font-size: large;
42
+ }
43
+
44
+ div.modal-dialog-body {
45
+ padding: 0.25em;
46
+ flex: 1 1 auto;
47
+ overflow: hidden;
48
+ text-align: center;
49
+ position: relative;
50
+ }
@@ -0,0 +1,12 @@
1
+ div.navbar {
2
+ display: inline-flex;
3
+ margin-right: 1em;
4
+ }
5
+
6
+ div.navbar > select {
7
+ margin-left: 0.25em;
8
+ }
9
+
10
+ div.navbar > span.navbar-dots {
11
+ padding: 0 0.25em;
12
+ }
@@ -0,0 +1,76 @@
1
+ div.number-input {
2
+ border: 1px solid var(--border-color);
3
+ position: relative;
4
+ display: flex;
5
+ height: 2em;
6
+ background-color: var(--input-bg-color);
7
+ align-items: center;
8
+ }
9
+
10
+ div.number-input > input {
11
+ min-width: 0;
12
+ width: 0;
13
+ flex: 1 1 auto;
14
+ border: 0!important;
15
+ height: calc(2em - 2px)!important;
16
+ background-color: transparent!important;
17
+ text-align: right;
18
+ margin-right: 1.5em;
19
+ }
20
+
21
+ div.number-input-disabled > span.icon {
22
+ color: var(--text-color-disabled);
23
+ cursor: default;
24
+ }
25
+
26
+ div.number-input:not(.number-input-disabled) > span.icon:hover {
27
+ background-color: var(--button-bg-color-hover);
28
+ }
29
+
30
+ /** Normal **/
31
+ div.number-input-normal > input {
32
+ padding-right: 1.5em;
33
+ }
34
+
35
+ div.number-input > span.icon-chevron-up,
36
+ div.number-input > span.icon-chevron-down {
37
+ position: absolute;
38
+ right: 0;
39
+ width: 1.5em;
40
+ height: 1em;
41
+ user-select: none;
42
+ }
43
+
44
+ div.number-input > span.icon-chevron-up {
45
+ top: calc(50% - 1em);
46
+ }
47
+
48
+ div.number-input > span.icon-chevron-down {
49
+ bottom: calc(50% - 1em);
50
+ }
51
+
52
+ /** Mobile **/
53
+ div.number-input-mobile > input {
54
+ padding: 0 2em;
55
+ text-align: center;
56
+ }
57
+
58
+ div.number-input > span.icon-plus,
59
+ div.number-input > span.icon-minus {
60
+ position: absolute;
61
+ top: 1px;
62
+ bottom: 1px;
63
+ width: 2em;
64
+ background-color: var(--button-bg-color);
65
+ border: 1px solid var(--border-color);
66
+ border-radius: 2px;
67
+ user-select: none;
68
+ }
69
+
70
+ div.number-input > span.icon-plus {
71
+ right: 1px;
72
+ }
73
+
74
+ div.number-input > span.icon-minus {
75
+ left: 1px;
76
+ }
@@ -0,0 +1,43 @@
1
+ div.search-widget-container {
2
+ position: relative;
3
+ width: 100%;
4
+ }
5
+
6
+ div.search-widget-container > div.input-container {
7
+ width: 100%;
8
+ }
9
+ div.search-widget-container > div.input-container > div.spinner {
10
+ width: 2em;
11
+ height: 2em;
12
+ }
13
+
14
+ div.search-widget-results {
15
+ position: absolute;
16
+ left: 0;
17
+ right: 0;
18
+ top: 100%;
19
+ border: 1px solid var(--border-color);
20
+ background-color: var(--list-bg-color);
21
+ max-height: 10em;
22
+ overflow-y: auto;
23
+ z-index: 1;
24
+ box-shadow: 0px 2px 4px rgba(136, 136, 136, 0.5);
25
+ }
26
+
27
+ div.search-widget-results-group-title {
28
+ background-color: var(--list-section-bg-color);
29
+ color: var(--list-section-text-color);
30
+ font-weight: bold;;
31
+ }
32
+
33
+ div.search-widget-results-group-item:hover {
34
+ background-color: var(--list-item-bg-color-hover);
35
+ color: var(--list-item-text-color-hover);
36
+ }
37
+
38
+ div.search-widget-results-group div {
39
+ padding: 0.25em;
40
+ white-space: nowrap;
41
+ overflow: hidden;
42
+ text-overflow: ellipsis;
43
+ }
@@ -0,0 +1,32 @@
1
+ .spinner {
2
+ display: inline-block;
3
+ position: relative;
4
+ }
5
+
6
+ .spinner > div {
7
+ -webkit-animation: spinner_anim 1.2s linear infinite;
8
+ -moz-animation: spinner_anim 1.2s linear infinite;
9
+ animation: spinner_anim 1.2s linear infinite;
10
+ border-radius: 5px;
11
+ background-color: var(--text-color);
12
+ position: absolute;
13
+ width: 20%;
14
+ height: 7.8%;
15
+ top: 46.1%;
16
+ left: 40%;
17
+ }
18
+
19
+ @keyframes spinner_anim {
20
+ 0% { opacity: 1; }
21
+ 100% { opacity: 0.15; }
22
+ }
23
+
24
+ @-moz-keyframes spinner_anim {
25
+ 0% { opacity: 1; }
26
+ 100% { opacity: 0.15; }
27
+ }
28
+
29
+ @-webkit-keyframes spinner_anim {
30
+ 0% { opacity: 1; }
31
+ 100% { opacity: 0.15; }
32
+ }
@@ -0,0 +1,8 @@
1
+ span.suggestion-input {
2
+ display: inline-block;
3
+ }
4
+
5
+ span.suggestion-input > input {
6
+ width: 100%;
7
+ height: 100%;
8
+ }
@@ -0,0 +1,94 @@
1
+ div.text-input-wrapper {
2
+ position: relative;
3
+ border: 1px solid var(--border-color);
4
+ background-color: var(--input-bg-color);
5
+ color: var(--text-color);
6
+ min-height: 2em;
7
+ }
8
+
9
+ textarea.text-input-form-el {
10
+ position: absolute;
11
+ z-index: -1;
12
+ pointer-events: none;
13
+ opacity: 0;
14
+ width: 0;
15
+ left: 0;
16
+ bottom: 0;
17
+ height: 0;
18
+ }
19
+
20
+ pre.text-input {
21
+ font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
22
+ font-size: 14px;
23
+ margin: 0;
24
+ padding: 0.25em;
25
+ overflow: auto;
26
+ cursor: text;
27
+ text-align: left;
28
+ height: 100%;
29
+ min-height: calc(2em - 2px);
30
+ white-space: pre-wrap;
31
+ }
32
+
33
+ pre.text-input[contenteditable="true"] a {
34
+ cursor: text;
35
+ text-decoration: none;
36
+ }
37
+
38
+ pre.text-input-disabled {
39
+ background-color: var(--input-bg-color-disabled);
40
+ }
41
+
42
+ pre.text-input-invalid {
43
+ background-color: #FFAAAA;
44
+ }
45
+
46
+ pre.text-input-readonly {
47
+ color: var(--text-color-disabled);
48
+ }
49
+
50
+ div.text-input-placeholder {
51
+ position: absolute;
52
+ left: 0;
53
+ right: 0;
54
+ bottom: 0;
55
+ top: 0;
56
+ z-index: 1;
57
+ padding: 0.25em;
58
+ color: var(--text-color-disabled);
59
+ pointer-events: none;
60
+ border: 1px solid transparent;
61
+ white-space: pre-wrap;
62
+ overflow: hidden;
63
+ }
64
+
65
+ div.text-input-resize-handle {
66
+ position: absolute;
67
+ right: 0;
68
+ bottom: 0;
69
+ width: 0;
70
+ height: 0;
71
+ border-bottom: 10px solid var(--border-color);
72
+ border-left: 10px solid transparent;
73
+ z-index: 1;
74
+ cursor: ns-resize;
75
+ }
76
+
77
+ div.text-input-clear-icon {
78
+ position: absolute;
79
+ right: 0.25em;
80
+ top: 0;
81
+ bottom: 0;
82
+ display: flex;
83
+ justify-content: center;
84
+ }
85
+
86
+ span.text-input-link-tooltip {
87
+ border: 1px solid var(--tooltip-border-color);
88
+ background-color: var(--tooltip-bg-color);
89
+ color: var(--tooltip-text-color);
90
+ font-size: 75%;
91
+ padding: 0.5em;
92
+ border-radius: 0.5em;
93
+ pointer-events: none;
94
+ }
@@ -0,0 +1,61 @@
1
+ div.ToggleSwitch {
2
+ position: relative;
3
+ display: flex;
4
+ width: 100%;
5
+ height: 2em;
6
+ overflow: hidden;
7
+ border: 1px solid var(--border-color);
8
+ align-items: center;
9
+ }
10
+
11
+ div.ToggleSwitch.toggle-switch-active {
12
+ background-color: rgb(127, 255, 127);
13
+ }
14
+
15
+ div.ToggleSwitch.toggle-switch-inactive {
16
+ background-color: rgb(255, 127, 127);
17
+ }
18
+
19
+ div.ToggleSwitch.toggle-switch-read-only {
20
+ background-color: var(--text-color-disabled);
21
+ }
22
+
23
+ div.ToggleSwitch > span.toggle-switch-slider {
24
+ flex: 1 1 50%;
25
+ background-color: var(--input-bg-color);
26
+ border: 1px solid var(--border-color);
27
+ border-radius: 2px;
28
+ text-align: center;
29
+ color: lightgray;
30
+ height: 100%;
31
+ display: flex;
32
+ align-items: center;
33
+ justify-content: center;
34
+ }
35
+
36
+ div.ToggleSwitch > span.toggle-switch-slider > .icon {
37
+ transform: rotate(90deg);
38
+ }
39
+
40
+ div.ToggleSwitch > span.toggle-switch-yes,
41
+ div.ToggleSwitch > span.toggle-switch-no {
42
+ color: var(--input-bg-color);
43
+ flex: 1 1 50%;
44
+ display: flex;
45
+ align-items: center;
46
+ justify-content: center;
47
+ }
48
+
49
+ div.ToggleSwitch.toggle-switch-active > span.toggle-switch-no {
50
+ display: none;
51
+ }
52
+
53
+ div.ToggleSwitch.toggle-switch-inactive > span.toggle-switch-yes {
54
+ display: none;
55
+ }
56
+
57
+ div.ToggleSwitch > input {
58
+ position: absolute;
59
+ opacity: 0;
60
+ width: 1px;
61
+ }
@@ -0,0 +1,3 @@
1
+ div.VectorLayerPicker > select {
2
+ flex: 1 1 auto;
3
+ }
package/icons/2d.svg ADDED
@@ -0,0 +1,70 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ version="1.1"
4
+ width="24"
5
+ height="24"
6
+ viewBox="0 0 24 24"
7
+ id="svg6"
8
+ sodipodi:docname="2d.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
+ 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
+ <path
18
+ id="text2"
19
+ style="-inkscape-font-specification:'Myriad Apple';stroke-width:0.831844"
20
+ d="m 15.345247,5.9138909 c -1.265879,0 -2.407421,0.081324 -3.424857,0.2469537 V 17.926889 c 0.816315,0.106476 1.779877,0.15922 2.891957,0.15922 2.366131,0 4.141062,-0.532317 5.324127,-1.597076 C 21.378693,15.388783 22,13.791832 22,11.697807 22,9.7220876 21.372652,8.2262092 20.118603,7.2087731 19.042014,6.3451355 17.451104,5.9138909 15.345247,5.9138909 Z M 5.7270512,6.2323311 c -1.3723557,0 -2.5501437,0.3845415 -3.5320878,1.1535338 L 2.8513403,9.0365554 C 3.6676553,8.4095309 4.472984,8.0958568 5.2656377,8.0958568 c 1.325033,0 1.9870025,0.6213071 1.9870025,1.8635256 -0.01183,0.7098396 -0.3375868,1.4789226 -0.976442,2.3070666 -0.508718,0.650686 -1.4722795,1.650495 -2.8919578,2.999188 L 1.9999999,16.56052 v 1.402112 h 7.7904145 v -1.899269 h -4.56052 v -0.03574 L 6.224208,15.140536 C 7.3007973,14.194084 8.0924193,13.337635 8.6011374,12.568643 9.2281619,11.622191 9.541836,10.681169 9.541836,9.7465473 9.541836,8.7291112 9.2221209,7.9012433 8.5832657,7.262388 7.8970879,6.5762103 6.9456084,6.2323311 5.7270512,6.2323311 Z m 9.8489028,1.4735988 c 1.289541,0 2.277267,0.3482953 2.963445,1.0463038 0.698008,0.6861779 1.046304,1.6920263 1.046304,3.0170593 0,1.478832 -0.378501,2.602251 -1.135663,3.371243 -0.74533,0.75716 -1.791842,1.12962 -3.140535,1.117791 -0.544211,0 -0.910629,-0.0165 -1.099919,-0.05199 V 7.8115351 c 0.36675,-0.070984 0.822159,-0.1056052 1.366368,-0.1056052 z" />
21
+ <metadata
22
+ id="metadata12">
23
+ <rdf:RDF>
24
+ <cc:Work
25
+ rdf:about="">
26
+ <dc:format>image/svg+xml</dc:format>
27
+ <dc:type
28
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
29
+ <dc:title>uniE251</dc:title>
30
+ </cc:Work>
31
+ </rdf:RDF>
32
+ </metadata>
33
+ <defs
34
+ id="defs10" />
35
+ <sodipodi:namedview
36
+ pagecolor="#ffffff"
37
+ bordercolor="#666666"
38
+ borderopacity="1"
39
+ objecttolerance="10"
40
+ gridtolerance="10"
41
+ guidetolerance="10"
42
+ inkscape:pageopacity="0"
43
+ inkscape:pageshadow="2"
44
+ inkscape:window-width="1600"
45
+ inkscape:window-height="842"
46
+ id="namedview8"
47
+ showgrid="true"
48
+ inkscape:zoom="11.700515"
49
+ inkscape:cx="5.4698447"
50
+ inkscape:cy="6.7945727"
51
+ inkscape:window-x="0"
52
+ inkscape:window-y="0"
53
+ inkscape:window-maximized="1"
54
+ inkscape:current-layer="svg6"
55
+ inkscape:document-rotation="0"
56
+ inkscape:showpageshadow="2"
57
+ inkscape:pagecheckerboard="0"
58
+ inkscape:deskcolor="#d1d1d1">
59
+ <inkscape:grid
60
+ type="xygrid"
61
+ id="grid831"
62
+ originx="0"
63
+ originy="0"
64
+ spacingy="1"
65
+ spacingx="1"
66
+ units="px" />
67
+ </sodipodi:namedview>
68
+ <title
69
+ id="title2">uniE251</title>
70
+ </svg>
package/icons/3d.svg ADDED
@@ -0,0 +1,70 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ version="1.1"
4
+ width="24"
5
+ height="24"
6
+ viewBox="0 0 24 24"
7
+ id="svg6"
8
+ sodipodi:docname="3d.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
+ 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="metadata12">
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>uniE251</dc:title>
26
+ </cc:Work>
27
+ </rdf:RDF>
28
+ </metadata>
29
+ <defs
30
+ id="defs10" />
31
+ <sodipodi:namedview
32
+ pagecolor="#ffffff"
33
+ bordercolor="#666666"
34
+ borderopacity="1"
35
+ objecttolerance="10"
36
+ gridtolerance="10"
37
+ guidetolerance="10"
38
+ inkscape:pageopacity="0"
39
+ inkscape:pageshadow="2"
40
+ inkscape:window-width="1600"
41
+ inkscape:window-height="842"
42
+ id="namedview8"
43
+ showgrid="true"
44
+ inkscape:zoom="11.700515"
45
+ inkscape:cx="5.4698447"
46
+ inkscape:cy="6.7945727"
47
+ inkscape:window-x="0"
48
+ inkscape:window-y="0"
49
+ inkscape:window-maximized="1"
50
+ inkscape:current-layer="svg6"
51
+ inkscape:document-rotation="0"
52
+ inkscape:showpageshadow="2"
53
+ inkscape:pagecheckerboard="0"
54
+ inkscape:deskcolor="#d1d1d1">
55
+ <inkscape:grid
56
+ type="xygrid"
57
+ id="grid831"
58
+ originx="0"
59
+ originy="0"
60
+ spacingy="1"
61
+ spacingx="1"
62
+ units="px" />
63
+ </sodipodi:namedview>
64
+ <title
65
+ id="title2">uniE251</title>
66
+ <path
67
+ id="text2"
68
+ style="-inkscape-font-specification:'Myriad Apple';stroke-width:0.82962"
69
+ d="m 15.36304,5.8945149 c -1.262495,0 -2.400985,0.081107 -3.415701,0.2462934 V 17.875395 c 0.814133,0.106191 1.775118,0.158794 2.884226,0.158794 2.359804,0 4.12999,-0.530894 5.309892,-1.592806 C 21.380355,15.344075 22,13.751393 22,11.662967 22,9.69253 21.37433,8.200651 20.123634,7.1859351 19.049923,6.3246065 17.463266,5.8945149 15.36304,5.8945149 Z M 5.6814392,6.2121037 c -1.3568874,0 -2.4592285,0.2887362 -3.3087581,0.8668882 L 2.8685087,8.7252692 C 3.5882491,8.2651073 4.3536553,8.0349994 5.1677878,8.0349994 c 0.578152,0 1.0279386,0.1353307 1.3465122,0.4067082 0.2831765,0.2477795 0.4245321,0.5726646 0.4245321,0.9738314 0,0.5073579 -0.2421576,0.902921 -0.7259175,1.186098 -0.4129658,0.23598 -0.9033059,0.353236 -1.469659,0.353236 H 3.8050721 v 1.664101 h 0.9738313 c 0.7079412,0 1.2870338,0.153406 1.7353966,0.46018 0.519157,0.342172 0.7777687,0.820463 0.7777688,1.434011 0.011799,0.495559 -0.1640853,0.903172 -0.529855,1.221745 -0.4011668,0.36577 -0.9682096,0.547679 -1.6997489,0.547679 -0.9085247,0 -1.7703283,-0.230108 -2.5844609,-0.69027 l -0.4780037,1.735397 c 0.8023335,0.519156 1.8641208,0.777769 3.1856113,0.777769 1.3804856,0 2.4844469,-0.335315 3.3103784,-1.007859 0.7787355,-0.648946 1.1682736,-1.476221 1.1682736,-2.479138 0,-0.755137 -0.2421576,-1.397262 -0.7259175,-1.928218 C 8.4899832,12.20651 7.9064862,11.893674 7.1867459,11.752086 v -0.03565 C 8.5790305,11.220879 9.2753792,10.330571 9.2753792,9.0444785 9.2753792,8.242145 8.9685686,7.5803251 8.3550195,7.0611681 7.7060733,6.494815 6.8141454,6.2121037 5.6814392,6.2121037 Z m 9.9116908,1.469659 c 1.286093,0 2.271178,0.3473641 2.955522,1.0435065 0.696141,0.6843432 1.043507,1.6875028 1.043507,3.0089928 0,1.474878 -0.377489,2.595294 -1.132627,3.36223 -0.743338,0.755135 -1.787051,1.126599 -3.132139,1.114802 -0.542756,0 -0.908194,-0.01646 -1.096978,-0.05185 V 7.7870856 c 0.365769,-0.070794 0.81996,-0.1053229 1.362715,-0.1053229 z" />
70
+ </svg>
package/icons/3d2d.svg ADDED
@@ -0,0 +1,92 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ version="1.1"
4
+ width="24"
5
+ height="24"
6
+ viewBox="0 0 24 24"
7
+ id="svg6"
8
+ sodipodi:docname="3d2d.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
+ 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="metadata12">
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>uniE251</dc:title>
26
+ </cc:Work>
27
+ </rdf:RDF>
28
+ </metadata>
29
+ <defs
30
+ id="defs10" />
31
+ <sodipodi:namedview
32
+ pagecolor="#ffffff"
33
+ bordercolor="#666666"
34
+ borderopacity="1"
35
+ objecttolerance="10"
36
+ gridtolerance="10"
37
+ guidetolerance="10"
38
+ inkscape:pageopacity="0"
39
+ inkscape:pageshadow="2"
40
+ inkscape:window-width="1600"
41
+ inkscape:window-height="842"
42
+ id="namedview8"
43
+ showgrid="true"
44
+ inkscape:zoom="11.700515"
45
+ inkscape:cx="11.196088"
46
+ inkscape:cy="11.666153"
47
+ inkscape:window-x="0"
48
+ inkscape:window-y="0"
49
+ inkscape:window-maximized="1"
50
+ inkscape:current-layer="svg6"
51
+ inkscape:document-rotation="0"
52
+ inkscape:showpageshadow="2"
53
+ inkscape:pagecheckerboard="0"
54
+ inkscape:deskcolor="#d1d1d1">
55
+ <inkscape:grid
56
+ type="xygrid"
57
+ id="grid831"
58
+ originx="0"
59
+ originy="0"
60
+ spacingy="1"
61
+ spacingx="1"
62
+ units="px" />
63
+ </sodipodi:namedview>
64
+ <title
65
+ id="title2">uniE251</title>
66
+ <g
67
+ id="text2"
68
+ style="font-weight:bold;font-size:13.3333px;font-family:Futura;-inkscape-font-specification:'Futura Bold';text-align:center;letter-spacing:-0.9px;text-anchor:middle"
69
+ aria-label="3D|2D&#10;"
70
+ transform="matrix(0.84945708,0,0,0.84945708,1.4253893,-0.88455471)">
71
+ <path
72
+ style="-inkscape-font-specification:'Myriad Apple'"
73
+ d="m 4.0953184,16.687994 q 0,1.133331 -0.8799978,1.866662 -0.9333309,0.759998 -2.49332699,0.759998 -1.49332956,0 -2.39999391,-0.586665 l 0.3599991,-1.306663 q 0.91999764,0.519998 1.94666171,0.519998 0.82666459,0 1.27999679,-0.413332 0.4133323,-0.359999 0.399999,-0.919998 0,-0.693331 -0.5866652,-1.079997 -0.5066654,-0.346666 -1.30666338,-0.346666 h -0.73333148 v -1.25333 h 0.70666488 q 0.63999838,0 1.10666388,-0.266666 0.5466653,-0.319999 0.5466653,-0.893331 0,-0.453332 -0.3199992,-0.733331 -0.3599991,-0.306666 -1.01333079,-0.306666 -0.91999767,0 -1.73332891,0.519998 L -1.398001,11.008008 q 0.95999754,-0.653331 2.493327,-0.653331 1.2799968,0 2.0133282,0.639998 0.6933316,0.586665 0.6933316,1.49333 0,1.453329 -1.5733293,2.013328 V 14.528 q 0.8133312,0.159999 1.3199966,0.706664 0.5466653,0.599999 0.5466653,1.45333 z"
74
+ id="path13" />
75
+ <path
76
+ style="-inkscape-font-specification:'Myriad Apple'"
77
+ d="m 10.789999,15.402643 q 0,1.888006 -1.1200036,2.880009 -1.0666701,0.960003 -3.2000101,0.960003 -1.0026699,0 -1.7386722,-0.096 v -7.072022 q 0.9173362,-0.149334 2.0586732,-0.149334 1.8986726,0 2.8693424,0.778669 1.1306703,0.917337 1.1306703,2.698675 z m -1.4506713,0.04267 q 0,-1.19467 -0.6293354,-1.813339 -0.6186686,-0.629335 -1.7813389,-0.629335 -0.4906682,0 -0.821336,0.064 v 5.045349 q 0.1706673,0.032 0.6613355,0.032 1.2160038,0.01067 1.8880059,-0.672003 0.6826689,-0.693335 0.6826689,-2.026672 z"
78
+ id="path14" />
79
+ <path
80
+ style="-inkscape-font-specification:'Myriad Apple'"
81
+ d="m 13.127343,23.167988 h -1.488 V 7.1679878 h 1.488 z"
82
+ id="path15" />
83
+ <path
84
+ style="-inkscape-font-specification:'Myriad Apple'"
85
+ d="m 20.000659,19.167988 h -5.853318 v -1.053331 l 1.039997,-0.973331 q 1.599996,-1.519996 2.173328,-2.253327 0.719998,-0.933331 0.733332,-1.733329 0,-1.399997 -1.49333,-1.399997 -0.893331,0 -1.813329,0.706665 l -0.493332,-1.239997 q 1.106664,-0.866664 2.653327,-0.866664 1.37333,0 2.146661,0.773331 0.719998,0.719998 0.719998,1.866662 0,1.053331 -0.706665,2.119995 -0.573332,0.866664 -1.786662,1.933328 l -0.746665,0.666665 v 0.02667 h 3.426658 z"
86
+ id="path16" />
87
+ <path
88
+ style="-inkscape-font-specification:'Myriad Apple'"
89
+ d="m 26.57534,15.402643 q 0,1.888006 -1.120003,2.880009 -1.06667,0.960003 -3.20001,0.960003 -1.00267,0 -1.738673,-0.096 v -7.072022 q 0.917337,-0.149334 2.058674,-0.149334 1.898672,0 2.869342,0.778669 1.13067,0.917337 1.13067,2.698675 z m -1.450671,0.04267 q 0,-1.19467 -0.629335,-1.813339 -0.618669,-0.629335 -1.781339,-0.629335 -0.490669,0 -0.821336,0.064 v 5.045349 q 0.170667,0.032 0.661335,0.032 1.216004,0.01067 1.888006,-0.672003 0.682669,-0.693335 0.682669,-2.026672 z"
90
+ id="path17" />
91
+ </g>
92
+ </svg>