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.
- package/LICENSE +28 -0
- package/README.md +68 -0
- package/actions/display.js +7 -0
- package/actions/editing.js +7 -0
- package/actions/layerinfo.js +7 -0
- package/actions/layers.js +8 -0
- package/actions/localConfig.js +7 -0
- package/actions/locale.js +10 -0
- package/actions/locate.js +8 -0
- package/actions/logging.js +7 -0
- package/actions/map.js +15 -0
- package/actions/measurement.js +8 -0
- package/actions/processNotifications.js +7 -0
- package/actions/redlining.js +7 -0
- package/actions/redliningPick.js +7 -0
- package/actions/serviceinfo.js +7 -0
- package/actions/task.js +9 -0
- package/actions/theme.js +24 -0
- package/actions/windows.js +10 -0
- package/components/AppMenu.js +8 -0
- package/components/AttributeForm.js +34 -0
- package/components/AutoEditForm.js +8 -0
- package/components/CoordinateDisplayer.js +7 -0
- package/components/EditComboField.js +10 -0
- package/components/EditUploadField.js +8 -0
- package/components/FullscreenSwitcher.js +8 -0
- package/components/Icon.js +7 -0
- package/components/IdentifyViewer.js +16 -0
- package/components/ImportLayer.js +25 -0
- package/components/LayerInfoWindow.js +7 -0
- package/components/LinkFeatureForm.js +10 -0
- package/components/MapSelection.js +13 -0
- package/components/NumericInputWindow.js +7 -0
- package/components/PickFeature.js +7 -0
- package/components/PluginsContainer.js +8 -0
- package/components/PrintSelection.js +54 -0
- package/components/QtDesignerForm.js +30 -0
- package/components/ResizeableWindow.js +12 -0
- package/components/SearchBox.js +26 -0
- package/components/ServiceInfoWindow.js +7 -0
- package/components/SideBar.js +9 -0
- package/components/StandardApp.js +35 -0
- package/components/Swipeable.js +1 -0
- package/components/TaskBar.js +7 -0
- package/components/ThemeLayersListWindow.js +9 -0
- package/components/ThemeList.js +12 -0
- package/components/Toolbar.js +7 -0
- package/components/WindowManager.js +7 -0
- package/components/map/OlLayer.js +12 -0
- package/components/map/OlLocate.css +56 -0
- package/components/map/OlLocate.js +17 -0
- package/components/map/OlMap.js +11 -0
- package/components/map/layers/BingLayer.js +8 -0
- package/components/map/layers/GoogleLayer.js +27 -0
- package/components/map/layers/GraticuleLayer.js +8 -0
- package/components/map/layers/ImageLayer.js +8 -0
- package/components/map/layers/MVTLayer.js +7 -0
- package/components/map/layers/OSMLayer.js +8 -0
- package/components/map/layers/OverlayLayer.js +10 -0
- package/components/map/layers/VectorLayer.js +14 -0
- package/components/map/layers/WFSLayer.js +11 -0
- package/components/map/layers/WMSLayer.js +11 -0
- package/components/map/layers/WMTSLayer.js +9 -0
- package/components/map/layers/XYZLayer.js +7 -0
- package/components/map/layers/index.js +8 -0
- package/components/map3d/BottomBar3D.js +7 -0
- package/components/map3d/Compare3D.js +12 -0
- package/components/map3d/Draw3D.js +10 -0
- package/components/map3d/ExportObjects3D.js +17 -0
- package/components/map3d/HeightProfile3D.js +8 -0
- package/components/map3d/HideObjects3D.js +12 -0
- package/components/map3d/Identify3D.js +13 -0
- package/components/map3d/LayerTree3D.js +8 -0
- package/components/map3d/Map3D.js +29 -0
- package/components/map3d/Map3DLight.js +10 -0
- package/components/map3d/MapControls3D.js +20 -0
- package/components/map3d/MapExport3D.js +11 -0
- package/components/map3d/Measure3D.js +23 -0
- package/components/map3d/OverviewMap3D.js +9 -0
- package/components/map3d/SearchField3D.js +16 -0
- package/components/map3d/TopBar3D.js +7 -0
- package/components/map3d/View3DSwitcher.js +7 -0
- package/components/map3d/drawtool/CreateTool3D.js +9 -0
- package/components/map3d/drawtool/EditTool3D.js +9 -0
- package/components/map3d/drawtool/NumericInput3D.js +7 -0
- package/components/map3d/img/viewcone.svg +124 -0
- package/components/map3d/layers/VectorLayer3D.js +7 -0
- package/components/map3d/layers/WFSLayer3D.js +8 -0
- package/components/map3d/layers/WMSLayer3D.js +7 -0
- package/components/map3d/layers/WMTSLayer3D.js +9 -0
- package/components/map3d/layers/index.js +8 -0
- package/components/map3d/models/arrow.glb +0 -0
- package/components/map3d/models/pin.glb +0 -0
- package/components/map3d/slices/map3d.js +1 -0
- package/components/map3d/style/BottomBar3D.css +67 -0
- package/components/map3d/style/Compare3D.css +57 -0
- package/components/map3d/style/Draw3D.css +7 -0
- package/components/map3d/style/HideObjects3D.css +29 -0
- package/components/map3d/style/LayerTree3D.css +126 -0
- package/components/map3d/style/Map3D.css +42 -0
- package/components/map3d/style/Map3DLight.css +72 -0
- package/components/map3d/style/MapControls3D.css +56 -0
- package/components/map3d/style/MapExport3D.css +25 -0
- package/components/map3d/style/OverviewMap3D.css +37 -0
- package/components/map3d/style/SearchField3D.css +7 -0
- package/components/map3d/style/View3DSwitcher.css +27 -0
- package/components/map3d/utils/Tiles3DStyle.js +1 -0
- package/components/share/ShareLink.js +7 -0
- package/components/share/ShareQRCode.js +8 -0
- package/components/share/ShareSocials.js +9 -0
- package/components/share/style/ShareLink.css +13 -0
- package/components/share/style/ShareSocials.css +9 -0
- package/components/style/App.css +229 -0
- package/components/style/AppMenu.css +162 -0
- package/components/style/AttributeForm.css +57 -0
- package/components/style/AutoEditForm.css +64 -0
- package/components/style/DefaultColorScheme.css +60 -0
- package/components/style/EditUploadField.css +103 -0
- package/components/style/FullscreenSwitcher.css +25 -0
- package/components/style/Icon.css +26 -0
- package/components/style/IdentifyViewer.css +249 -0
- package/components/style/ImportLayer.css +28 -0
- package/components/style/LayerInfoWindow.css +46 -0
- package/components/style/LinkFeatureForm.css +48 -0
- package/components/style/NumericInputWindow.css +11 -0
- package/components/style/PickFeature.css +25 -0
- package/components/style/PluginsContainer.css +4 -0
- package/components/style/QtDesignerForm.css +225 -0
- package/components/style/ResizeableWindow.css +178 -0
- package/components/style/SearchBox.css +159 -0
- package/components/style/ServiceInfoWindow.css +34 -0
- package/components/style/SideBar.css +100 -0
- package/components/style/TaskBar.css +35 -0
- package/components/style/ThemeLayersListWindow.css +47 -0
- package/components/style/ThemeList.css +200 -0
- package/components/style/Toolbar.css +20 -0
- package/components/style/WindowManager.css +50 -0
- package/components/timeline/FixedTimeline.js +10 -0
- package/components/timeline/InfiniteTimeline.js +13 -0
- package/components/timeline/TimelineFeaturesSlider.js +10 -0
- package/components/timeline/style/FixedTimeline.css +76 -0
- package/components/timeline/style/InfiniteTimeline.css +94 -0
- package/components/timeline/style/TimelineFeaturesSlider.css +131 -0
- package/components/widgets/AccordeonWidget.js +7 -0
- package/components/widgets/ButtonBar.js +7 -0
- package/components/widgets/ColorButton.js +8 -0
- package/components/widgets/ComboBox.js +7 -0
- package/components/widgets/CopyButton.js +7 -0
- package/components/widgets/DateTimeInput.js +8 -0
- package/components/widgets/EditableSelect.js +8 -0
- package/components/widgets/FileSelector.js +9 -0
- package/components/widgets/Input.js +7 -0
- package/components/widgets/InputContainer.js +7 -0
- package/components/widgets/LayerCatalogWidget.js +3 -0
- package/components/widgets/MenuButton.js +1 -0
- package/components/widgets/ModalDialog.js +7 -0
- package/components/widgets/NavBar.js +7 -0
- package/components/widgets/NumberInput.js +9 -0
- package/components/widgets/PopupMenu.js +1 -0
- package/components/widgets/Primitives.js +7 -0
- package/components/widgets/ReCaptchaWidget.js +1 -0
- package/components/widgets/SearchWidget.js +7 -0
- package/components/widgets/Spinner.js +6 -0
- package/components/widgets/SuggestionInput.js +7 -0
- package/components/widgets/TextInput.js +7 -0
- package/components/widgets/ToggleSwitch.js +7 -0
- package/components/widgets/VectorLayerPicker.js +8 -0
- package/components/widgets/style/AccordeonWidget.css +22 -0
- package/components/widgets/style/ButtonBar.css +88 -0
- package/components/widgets/style/ColorButton.css +88 -0
- package/components/widgets/style/ComboBox.css +83 -0
- package/components/widgets/style/CopyButton.css +21 -0
- package/components/widgets/style/EditableSelect.css +47 -0
- package/components/widgets/style/FileSelector.css +14 -0
- package/components/widgets/style/InputContainer.css +34 -0
- package/components/widgets/style/LayerCatalogWidget.css +59 -0
- package/components/widgets/style/MenuButton.css +122 -0
- package/components/widgets/style/ModalDialog.css +50 -0
- package/components/widgets/style/NavBar.css +12 -0
- package/components/widgets/style/NumberInput.css +76 -0
- package/components/widgets/style/SearchWidget.css +43 -0
- package/components/widgets/style/Spinner.css +32 -0
- package/components/widgets/style/SuggestionInput.css +8 -0
- package/components/widgets/style/TextInput.css +94 -0
- package/components/widgets/style/ToggleSwitch.css +61 -0
- package/components/widgets/style/VectorLayerPicker.css +3 -0
- package/icons/2d.svg +70 -0
- package/icons/3d.svg +70 -0
- package/icons/3d2d.svg +92 -0
- package/icons/after.svg +76 -0
- package/icons/arrow-down.svg +60 -0
- package/icons/arrow-up.svg +60 -0
- package/icons/before.svg +76 -0
- package/icons/bglayer.svg +71 -0
- package/icons/bookmark.svg +170 -0
- package/icons/box.svg +63 -0
- package/icons/buffer.svg +67 -0
- package/icons/camera.svg +118 -0
- package/icons/catalog.svg +62 -0
- package/icons/checked.svg +80 -0
- package/icons/chevron-down.svg +60 -0
- package/icons/chevron-left.svg +59 -0
- package/icons/chevron-right.svg +60 -0
- package/icons/chevron-up.svg +60 -0
- package/icons/circle.svg +70 -0
- package/icons/clear.svg +62 -0
- package/icons/clock.svg +71 -0
- package/icons/cog.svg +60 -0
- package/icons/collapse.svg +73 -0
- package/icons/compare.svg +72 -0
- package/icons/cone.svg +58 -0
- package/icons/confirm.svg +62 -0
- package/icons/copy.svg +60 -0
- package/icons/cuboid.svg +58 -0
- package/icons/cyclomedia.svg +47 -0
- package/icons/cylinder.svg +58 -0
- package/icons/dataimport.svg +116 -0
- package/icons/detach.svg +79 -0
- package/icons/dock.svg +82 -0
- package/icons/dock_bottom.svg +82 -0
- package/icons/dock_left.svg +84 -0
- package/icons/dock_right.svg +84 -0
- package/icons/dock_top.svg +84 -0
- package/icons/draw.svg +78 -0
- package/icons/editdraw.svg +84 -0
- package/icons/edited.svg +78 -0
- package/icons/editing.svg +118 -0
- package/icons/ellipse.svg +72 -0
- package/icons/embed.svg +88 -0
- package/icons/expand.svg +73 -0
- package/icons/export.svg +126 -0
- package/icons/eye.svg +127 -0
- package/icons/featureform.svg +115 -0
- package/icons/fill.svg +62 -0
- package/icons/filter.svg +69 -0
- package/icons/folder-open.svg +60 -0
- package/icons/freehand.svg +82 -0
- package/icons/group.svg +76 -0
- package/icons/home.svg +60 -0
- package/icons/identify_radius.svg +71 -0
- package/icons/identify_region.svg +71 -0
- package/icons/import.svg +62 -0
- package/icons/info-sign.svg +60 -0
- package/icons/info.svg +80 -0
- package/icons/layers.svg +71 -0
- package/icons/light.svg +77 -0
- package/icons/line.svg +61 -0
- package/icons/line_buffer.svg +65 -0
- package/icons/link.svg +75 -0
- package/icons/list-alt.svg +111 -0
- package/icons/lock.svg +54 -0
- package/icons/login.svg +56 -0
- package/icons/logout.svg +56 -0
- package/icons/map3d.svg +51 -0
- package/icons/maximize.svg +84 -0
- package/icons/measure.svg +82 -0
- package/icons/measure_line.svg +87 -0
- package/icons/measure_polygon.svg +88 -0
- package/icons/menu-hamburger.svg +60 -0
- package/icons/minimize.svg +76 -0
- package/icons/minus-sign.svg +60 -0
- package/icons/minus.svg +61 -0
- package/icons/nav-end.svg +74 -0
- package/icons/nav-left.svg +74 -0
- package/icons/nav-right.svg +74 -0
- package/icons/nav-start.svg +73 -0
- package/icons/new.svg +84 -0
- package/icons/nodetool.svg +68 -0
- package/icons/numericinput.svg +86 -0
- package/icons/ok.svg +60 -0
- package/icons/open.svg +79 -0
- package/icons/open_link.svg +74 -0
- package/icons/paint.svg +75 -0
- package/icons/pen.svg +41 -0
- package/icons/person.svg +44 -0
- package/icons/pick.svg +67 -0
- package/icons/pick_point.svg +74 -0
- package/icons/pick_region.svg +71 -0
- package/icons/plus.svg +60 -0
- package/icons/point.svg +67 -0
- package/icons/point_buffer.svg +74 -0
- package/icons/polygon.svg +61 -0
- package/icons/print.svg +60 -0
- package/icons/pyramid.svg +58 -0
- package/icons/radio_checked.svg +78 -0
- package/icons/radio_tristate.svg +75 -0
- package/icons/radio_unchecked.svg +72 -0
- package/icons/rasterexport.svg +124 -0
- package/icons/rect.svg +63 -0
- package/icons/refresh.svg +44 -0
- package/icons/remove.svg +60 -0
- package/icons/report.svg +84 -0
- package/icons/routing-bicycle.svg +40 -0
- package/icons/routing-bus.svg +40 -0
- package/icons/routing-cablecar.svg +40 -0
- package/icons/routing-car.svg +40 -0
- package/icons/routing-ship.svg +40 -0
- package/icons/routing-train.svg +40 -0
- package/icons/routing-tram.svg +40 -0
- package/icons/routing-truck.svg +40 -0
- package/icons/routing-walking.svg +40 -0
- package/icons/routing.svg +68 -0
- package/icons/save.svg +190 -0
- package/icons/scale.svg +62 -0
- package/icons/screenshot.svg +60 -0
- package/icons/search.svg +60 -0
- package/icons/selectbox.svg +79 -0
- package/icons/share.svg +64 -0
- package/icons/snap_edge.svg +79 -0
- package/icons/snap_vertex.svg +79 -0
- package/icons/sphere.svg +58 -0
- package/icons/square.svg +68 -0
- package/icons/sync.svg +72 -0
- package/icons/text.svg +68 -0
- package/icons/themes.svg +81 -0
- package/icons/tilt-down.svg +67 -0
- package/icons/tilt-left.svg +48 -0
- package/icons/tilt-right.svg +48 -0
- package/icons/tilt-up.svg +67 -0
- package/icons/today.svg +45 -0
- package/icons/tools.svg +77 -0
- package/icons/transformtool.svg +74 -0
- package/icons/transparency.svg +132 -0
- package/icons/trash.svg +60 -0
- package/icons/tree_minus.svg +81 -0
- package/icons/tree_plus.svg +81 -0
- package/icons/triangle-down.svg +59 -0
- package/icons/triangle-left.svg +60 -0
- package/icons/triangle-right.svg +60 -0
- package/icons/triangle-up.svg +59 -0
- package/icons/tristate.svg +79 -0
- package/icons/unchecked.svg +74 -0
- package/icons/undock.svg +82 -0
- package/icons/undock_bottom.svg +82 -0
- package/icons/undock_left.svg +82 -0
- package/icons/undock_right.svg +84 -0
- package/icons/undock_top.svg +84 -0
- package/icons/unmaximize.svg +84 -0
- package/icons/unminimize.svg +76 -0
- package/icons/up-down-arrow.svg +66 -0
- package/icons/warning.svg +72 -0
- package/icons/wedge.svg +58 -0
- package/icons/zoom.svg +60 -0
- package/icons/zoomin.svg +71 -0
- package/icons/zoomout.svg +80 -0
- package/libs/openlayers.js +11 -0
- package/package.json +135 -0
- package/plugins/API.js +114 -0
- package/plugins/AttributeTable.js +25 -0
- package/plugins/Authentication.js +13 -0
- package/plugins/BackgroundSwitcher.js +10 -0
- package/plugins/Bookmark.js +13 -0
- package/plugins/BottomBar.js +10 -0
- package/plugins/CookiePopup.js +9 -0
- package/plugins/Cyclomedia.js +11 -0
- package/plugins/Editing.js +21 -0
- package/plugins/FeatureForm.js +21 -0
- package/plugins/FeatureSearch.js +11 -0
- package/plugins/GeometryDigitizer.js +43 -0
- package/plugins/HeightProfile.js +26 -0
- package/plugins/Help.js +11 -0
- package/plugins/HomeButton.js +9 -0
- package/plugins/Identify.js +18 -0
- package/plugins/LayerCatalog.js +45 -0
- package/plugins/LayerTree.js +15 -0
- package/plugins/LocateButton.js +10 -0
- package/plugins/Map.js +22 -0
- package/plugins/MapCompare.js +11 -0
- package/plugins/MapCopyright.js +11 -0
- package/plugins/MapExport.js +23 -0
- package/plugins/MapFilter.js +20 -0
- package/plugins/MapInfoTooltip.js +32 -0
- package/plugins/MapLegend.js +14 -0
- package/plugins/MapTip.js +15 -0
- package/plugins/Measure.js +10 -0
- package/plugins/NewsPopup.js +12 -0
- package/plugins/Panoramax.js +10 -0
- package/plugins/Portal.js +10 -0
- package/plugins/Print.js +22 -0
- package/plugins/ProcessNotifications.js +11 -0
- package/plugins/Redlining.js +12 -0
- package/plugins/Reports.js +15 -0
- package/plugins/Routing.js +23 -0
- package/plugins/ScratchDrawing.js +15 -0
- package/plugins/Settings.js +12 -0
- package/plugins/Share.js +11 -0
- package/plugins/StartupMarker.js +12 -0
- package/plugins/TaskButton.js +9 -0
- package/plugins/ThemeSwitcher.js +10 -0
- package/plugins/TimeManager.js +21 -0
- package/plugins/TopBar.js +13 -0
- package/plugins/ValueTool.js +11 -0
- package/plugins/View3D.js +34 -0
- package/plugins/ZoomButtons.js +11 -0
- package/plugins/map/EditingSupport.js +13 -0
- package/plugins/map/LocateSupport.js +14 -0
- package/plugins/map/MeasurementSupport.js +15 -0
- package/plugins/map/OverviewSupport.js +14 -0
- package/plugins/map/RedliningPickSupport.js +12 -0
- package/plugins/map/RedliningSupport.js +28 -0
- package/plugins/map/ScaleBarSupport.js +10 -0
- package/plugins/map/SnapInteraction.js +1 -0
- package/plugins/map/SnapSupport.js +7 -0
- package/plugins/map/SnappingSupport.js +23 -0
- package/plugins/map/style/OverviewSupport.css +42 -0
- package/plugins/map/style/ScaleBarSupport.css +18 -0
- package/plugins/map/style/SnappingSupport.css +33 -0
- package/plugins/redlining/RedliningBufferSupport.js +8 -0
- package/plugins/style/AttributeTable.css +220 -0
- package/plugins/style/Authentication.css +16 -0
- package/plugins/style/BackgroundSwitcher.css +99 -0
- package/plugins/style/Bookmark.css +62 -0
- package/plugins/style/BottomBar.css +53 -0
- package/plugins/style/Buttons.css +68 -0
- package/plugins/style/CookiePopup.css +24 -0
- package/plugins/style/Cyclomedia.css +66 -0
- package/plugins/style/Editing.css +40 -0
- package/plugins/style/FeatureForm.css +21 -0
- package/plugins/style/FeatureSearch.css +71 -0
- package/plugins/style/GeometryDigitizer.css +28 -0
- package/plugins/style/HeightProfile.css +26 -0
- package/plugins/style/Identify.css +4 -0
- package/plugins/style/LayerCatalog.css +8 -0
- package/plugins/style/LayerTree.css +316 -0
- package/plugins/style/Map.css +43 -0
- package/plugins/style/MapCompare.css +27 -0
- package/plugins/style/MapCopyright.css +17 -0
- package/plugins/style/MapExport.css +55 -0
- package/plugins/style/MapFilter.css +101 -0
- package/plugins/style/MapInfoTooltip.css +78 -0
- package/plugins/style/MapLegend.css +36 -0
- package/plugins/style/MapTip.css +22 -0
- package/plugins/style/Measure.css +23 -0
- package/plugins/style/NewsPopup.css +87 -0
- package/plugins/style/Panoramax.css +15 -0
- package/plugins/style/Portal.css +115 -0
- package/plugins/style/Print.css +116 -0
- package/plugins/style/ProcessNotifications.css +55 -0
- package/plugins/style/Redlining.css +101 -0
- package/plugins/style/Reports.css +11 -0
- package/plugins/style/Routing.css +243 -0
- package/plugins/style/ScratchDrawing.css +8 -0
- package/plugins/style/Settings.css +11 -0
- package/plugins/style/Share.css +59 -0
- package/plugins/style/ThemeSwitcher.css +7 -0
- package/plugins/style/TimeManager.css +91 -0
- package/plugins/style/TopBar.css +50 -0
- package/plugins/style/ValueTool.css +60 -0
- package/reducers/display.js +7 -0
- package/reducers/editing.js +8 -0
- package/reducers/index.js +7 -0
- package/reducers/layerinfo.js +7 -0
- package/reducers/layers.js +14 -0
- package/reducers/localConfig.js +8 -0
- package/reducers/locale.js +8 -0
- package/reducers/locate.js +8 -0
- package/reducers/map.js +11 -0
- package/reducers/measurement.js +8 -0
- package/reducers/processNotifications.js +7 -0
- package/reducers/redlining.js +7 -0
- package/reducers/redliningPick.js +7 -0
- package/reducers/serviceinfo.js +7 -0
- package/reducers/task.js +7 -0
- package/reducers/theme.js +7 -0
- package/reducers/windows.js +7 -0
- package/scripts/dist.sh +16 -0
- package/scripts/gen-plugin-docs.js +9 -0
- package/scripts/makeIconkit.js +7 -0
- package/scripts/package-commands.bat +8 -0
- package/scripts/package-commands.sh +22 -0
- package/scripts/themesConfig.js +48 -0
- package/scripts/themesConfig.py +659 -0
- package/scripts/translateui.sh +51 -0
- package/scripts/updateTranslations.js +17 -0
- package/scripts/wmts_config_generator.py +169 -0
- package/selectors/searchproviders.js +12 -0
- package/static/translations/bg-BG.json +709 -0
- package/static/translations/ca-ES.json +709 -0
- package/static/translations/cs-CZ.json +709 -0
- package/static/translations/de-CH.json +709 -0
- package/static/translations/de-DE.json +709 -0
- package/static/translations/en-US.json +709 -0
- package/static/translations/es-ES.json +709 -0
- package/static/translations/fi-FI.json +709 -0
- package/static/translations/fr-FR.json +709 -0
- package/static/translations/hu-HU.json +709 -0
- package/static/translations/it-IT.json +709 -0
- package/static/translations/ja-JP.json +709 -0
- package/static/translations/nl-NL.json +709 -0
- package/static/translations/no-NO.json +709 -0
- package/static/translations/pl-PL.json +709 -0
- package/static/translations/pt-BR.json +709 -0
- package/static/translations/pt-PT.json +709 -0
- package/static/translations/ro-RO.json +709 -0
- package/static/translations/ru-RU.json +709 -0
- package/static/translations/sv-SE.json +709 -0
- package/static/translations/tr-TR.json +709 -0
- package/static/translations/tsconfig.json +606 -0
- package/stores/StandardStore.js +8 -0
- package/utils/ConfigUtils.js +9 -0
- package/utils/CoordinatesUtils.js +29 -0
- package/utils/DxfUtils.js +10 -0
- package/utils/EditingInterface.js +67 -0
- package/utils/EditingUtils.js +11 -0
- package/utils/FeatureStyles.js +10 -0
- package/utils/IdentifyUtils.js +12 -0
- package/utils/ImageEditor.js +15 -0
- package/utils/LayerUtils.js +57 -0
- package/utils/LocaleUtils.js +9 -0
- package/utils/MapUtils.js +66 -0
- package/utils/MeasureUtils.js +9 -0
- package/utils/MiscUtils.js +15 -0
- package/utils/PermaLinkUtils.js +11 -0
- package/utils/ResourceRegistry.js +7 -0
- package/utils/RoutingInterface.js +12 -0
- package/utils/SearchProviders.js +19 -0
- package/utils/ServiceLayerUtils.js +20 -0
- package/utils/Signal.js +2 -0
- package/utils/ThemeUtils.js +12 -0
- package/utils/VectorLayerUtils.js +20 -0
- package/utils/expr_grammar/README.md +3 -0
- package/utils/expr_grammar/grammar.js +3 -0
- package/utils/expr_grammar/grammar.ne +118 -0
- package/utils/expr_grammar/test.js +13 -0
- package/utils/img/README.markers +1 -0
- package/utils/img/arrowhead.svg +4 -0
- package/utils/img/marker-icon.png +0 -0
- package/utils/img/measurehead.svg +4 -0
package/icons/draw.svg
ADDED
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
4
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
5
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
6
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
9
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
10
|
+
viewBox="0 0 24 24"
|
|
11
|
+
version="1.1"
|
|
12
|
+
id="svg6"
|
|
13
|
+
sodipodi:docname="draw.svg"
|
|
14
|
+
width="24"
|
|
15
|
+
height="24"
|
|
16
|
+
inkscape:version="0.92.3 (2405546, 2018-03-11)">
|
|
17
|
+
<metadata
|
|
18
|
+
id="metadata10">
|
|
19
|
+
<rdf:RDF>
|
|
20
|
+
<cc:Work
|
|
21
|
+
rdf:about="">
|
|
22
|
+
<dc:format>image/svg+xml</dc:format>
|
|
23
|
+
<dc:type
|
|
24
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
25
|
+
<dc:title></dc:title>
|
|
26
|
+
</cc:Work>
|
|
27
|
+
</rdf:RDF>
|
|
28
|
+
</metadata>
|
|
29
|
+
<sodipodi:namedview
|
|
30
|
+
pagecolor="#8b8b8b"
|
|
31
|
+
bordercolor="#666666"
|
|
32
|
+
borderopacity="1"
|
|
33
|
+
objecttolerance="10"
|
|
34
|
+
gridtolerance="10"
|
|
35
|
+
guidetolerance="10"
|
|
36
|
+
inkscape:pageopacity="0"
|
|
37
|
+
inkscape:pageshadow="2"
|
|
38
|
+
inkscape:window-width="1280"
|
|
39
|
+
inkscape:window-height="995"
|
|
40
|
+
id="namedview8"
|
|
41
|
+
showgrid="true"
|
|
42
|
+
inkscape:zoom="32"
|
|
43
|
+
inkscape:cx="9.6579836"
|
|
44
|
+
inkscape:cy="11.702673"
|
|
45
|
+
inkscape:window-x="1600"
|
|
46
|
+
inkscape:window-y="0"
|
|
47
|
+
inkscape:window-maximized="1"
|
|
48
|
+
inkscape:current-layer="svg6"
|
|
49
|
+
inkscape:snap-bbox="false">
|
|
50
|
+
<inkscape:grid
|
|
51
|
+
type="xygrid"
|
|
52
|
+
id="grid4474"
|
|
53
|
+
originx="0"
|
|
54
|
+
originy="0" />
|
|
55
|
+
</sodipodi:namedview>
|
|
56
|
+
<defs
|
|
57
|
+
id="defs3051">
|
|
58
|
+
<style
|
|
59
|
+
type="text/css"
|
|
60
|
+
id="current-color-scheme">
|
|
61
|
+
.ColorScheme-Text {
|
|
62
|
+
color:#4d4d4d;
|
|
63
|
+
}
|
|
64
|
+
</style>
|
|
65
|
+
</defs>
|
|
66
|
+
<path
|
|
67
|
+
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
68
|
+
d="M 2.0000001,22 2,16 16,2 22,8 8,22 v -2 l 9,-9 -4,-4 -9,9 v 3 l 1,1 h 3 v 2 z"
|
|
69
|
+
id="path814"
|
|
70
|
+
inkscape:connector-curvature="0"
|
|
71
|
+
sodipodi:nodetypes="cccccccccccccc" />
|
|
72
|
+
<path
|
|
73
|
+
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
74
|
+
d="m 7,13 v 3 h 3 v 2 L 9,19 V 17 H 6 v -3 z"
|
|
75
|
+
id="path816"
|
|
76
|
+
inkscape:connector-curvature="0"
|
|
77
|
+
sodipodi:nodetypes="ccccccccc" />
|
|
78
|
+
</svg>
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
4
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
5
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
6
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
9
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
10
|
+
viewBox="0 0 24 24"
|
|
11
|
+
version="1.1"
|
|
12
|
+
id="svg6"
|
|
13
|
+
sodipodi:docname="editdraw.svg"
|
|
14
|
+
width="24"
|
|
15
|
+
height="24"
|
|
16
|
+
inkscape:version="0.92.3 (2405546, 2018-03-11)">
|
|
17
|
+
<metadata
|
|
18
|
+
id="metadata10">
|
|
19
|
+
<rdf:RDF>
|
|
20
|
+
<cc:Work
|
|
21
|
+
rdf:about="">
|
|
22
|
+
<dc:format>image/svg+xml</dc:format>
|
|
23
|
+
<dc:type
|
|
24
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
25
|
+
<dc:title></dc:title>
|
|
26
|
+
</cc:Work>
|
|
27
|
+
</rdf:RDF>
|
|
28
|
+
</metadata>
|
|
29
|
+
<sodipodi:namedview
|
|
30
|
+
pagecolor="#8b8b8b"
|
|
31
|
+
bordercolor="#666666"
|
|
32
|
+
borderopacity="1"
|
|
33
|
+
objecttolerance="10"
|
|
34
|
+
gridtolerance="10"
|
|
35
|
+
guidetolerance="10"
|
|
36
|
+
inkscape:pageopacity="0"
|
|
37
|
+
inkscape:pageshadow="2"
|
|
38
|
+
inkscape:window-width="1280"
|
|
39
|
+
inkscape:window-height="995"
|
|
40
|
+
id="namedview8"
|
|
41
|
+
showgrid="true"
|
|
42
|
+
inkscape:zoom="32"
|
|
43
|
+
inkscape:cx="13.407984"
|
|
44
|
+
inkscape:cy="7.9526732"
|
|
45
|
+
inkscape:window-x="1600"
|
|
46
|
+
inkscape:window-y="0"
|
|
47
|
+
inkscape:window-maximized="1"
|
|
48
|
+
inkscape:current-layer="svg6"
|
|
49
|
+
inkscape:snap-bbox="false">
|
|
50
|
+
<inkscape:grid
|
|
51
|
+
type="xygrid"
|
|
52
|
+
id="grid4474"
|
|
53
|
+
originx="0"
|
|
54
|
+
originy="0" />
|
|
55
|
+
</sodipodi:namedview>
|
|
56
|
+
<defs
|
|
57
|
+
id="defs3051">
|
|
58
|
+
<style
|
|
59
|
+
type="text/css"
|
|
60
|
+
id="current-color-scheme">
|
|
61
|
+
.ColorScheme-Text {
|
|
62
|
+
color:#4d4d4d;
|
|
63
|
+
}
|
|
64
|
+
</style>
|
|
65
|
+
</defs>
|
|
66
|
+
<path
|
|
67
|
+
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
68
|
+
d="M 2.0000001,22 2,16 16,2 22,8 8,22 v -2 l 9,-9 -4,-4 -9,9 v 3 l 1,1 h 3 v 2 z"
|
|
69
|
+
id="path814"
|
|
70
|
+
inkscape:connector-curvature="0"
|
|
71
|
+
sodipodi:nodetypes="cccccccccccccc" />
|
|
72
|
+
<path
|
|
73
|
+
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
74
|
+
d="m 7,13 v 3 h 3 v 2 L 9,19 V 17 H 6 v -3 z"
|
|
75
|
+
id="path816"
|
|
76
|
+
inkscape:connector-curvature="0"
|
|
77
|
+
sodipodi:nodetypes="ccccccccc" />
|
|
78
|
+
<path
|
|
79
|
+
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
|
80
|
+
d="m 15,18 h 3 v -3 h 2 v 3 h 3 v 2 h -3 v 3 h -2 v -3 h -3 z"
|
|
81
|
+
id="path818"
|
|
82
|
+
inkscape:connector-curvature="0"
|
|
83
|
+
sodipodi:nodetypes="ccccccccccccc" />
|
|
84
|
+
</svg>
|
package/icons/edited.svg
ADDED
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
4
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
5
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
6
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
9
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
10
|
+
viewBox="0 0 24 24"
|
|
11
|
+
version="1.1"
|
|
12
|
+
id="svg6"
|
|
13
|
+
sodipodi:docname="draw.svg"
|
|
14
|
+
width="24"
|
|
15
|
+
height="24"
|
|
16
|
+
inkscape:version="0.92.3 (2405546, 2018-03-11)">
|
|
17
|
+
<metadata
|
|
18
|
+
id="metadata10">
|
|
19
|
+
<rdf:RDF>
|
|
20
|
+
<cc:Work
|
|
21
|
+
rdf:about="">
|
|
22
|
+
<dc:format>image/svg+xml</dc:format>
|
|
23
|
+
<dc:type
|
|
24
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
25
|
+
<dc:title></dc:title>
|
|
26
|
+
</cc:Work>
|
|
27
|
+
</rdf:RDF>
|
|
28
|
+
</metadata>
|
|
29
|
+
<sodipodi:namedview
|
|
30
|
+
pagecolor="#8b8b8b"
|
|
31
|
+
bordercolor="#666666"
|
|
32
|
+
borderopacity="1"
|
|
33
|
+
objecttolerance="10"
|
|
34
|
+
gridtolerance="10"
|
|
35
|
+
guidetolerance="10"
|
|
36
|
+
inkscape:pageopacity="0"
|
|
37
|
+
inkscape:pageshadow="2"
|
|
38
|
+
inkscape:window-width="1280"
|
|
39
|
+
inkscape:window-height="995"
|
|
40
|
+
id="namedview8"
|
|
41
|
+
showgrid="true"
|
|
42
|
+
inkscape:zoom="32"
|
|
43
|
+
inkscape:cx="9.6579836"
|
|
44
|
+
inkscape:cy="11.702673"
|
|
45
|
+
inkscape:window-x="1600"
|
|
46
|
+
inkscape:window-y="0"
|
|
47
|
+
inkscape:window-maximized="1"
|
|
48
|
+
inkscape:current-layer="svg6"
|
|
49
|
+
inkscape:snap-bbox="false">
|
|
50
|
+
<inkscape:grid
|
|
51
|
+
type="xygrid"
|
|
52
|
+
id="grid4474"
|
|
53
|
+
originx="0"
|
|
54
|
+
originy="0" />
|
|
55
|
+
</sodipodi:namedview>
|
|
56
|
+
<defs
|
|
57
|
+
id="defs3051">
|
|
58
|
+
<style
|
|
59
|
+
type="text/css"
|
|
60
|
+
id="current-color-scheme">
|
|
61
|
+
.ColorScheme-Text {
|
|
62
|
+
color:#4d4d4d;
|
|
63
|
+
}
|
|
64
|
+
</style>
|
|
65
|
+
</defs>
|
|
66
|
+
<path
|
|
67
|
+
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
68
|
+
d="M 2.0000001,22 2,16 16,2 22,8 8,22 v -2 l 9,-9 -4,-4 -9,9 v 3 l 1,1 h 3 v 2 z"
|
|
69
|
+
id="path814"
|
|
70
|
+
inkscape:connector-curvature="0"
|
|
71
|
+
sodipodi:nodetypes="cccccccccccccc" />
|
|
72
|
+
<path
|
|
73
|
+
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
74
|
+
d="m 7,13 v 3 h 3 v 2 L 9,19 V 17 H 6 v -3 z"
|
|
75
|
+
id="path816"
|
|
76
|
+
inkscape:connector-curvature="0"
|
|
77
|
+
sodipodi:nodetypes="ccccccccc" />
|
|
78
|
+
</svg>
|
|
@@ -0,0 +1,118 @@
|
|
|
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="svg820"
|
|
17
|
+
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
|
18
|
+
sodipodi:docname="editing.svg">
|
|
19
|
+
<defs
|
|
20
|
+
id="defs814" />
|
|
21
|
+
<sodipodi:namedview
|
|
22
|
+
id="base"
|
|
23
|
+
pagecolor="#8b8b8b"
|
|
24
|
+
bordercolor="#666666"
|
|
25
|
+
borderopacity="1.0"
|
|
26
|
+
inkscape:pageopacity="0"
|
|
27
|
+
inkscape:pageshadow="2"
|
|
28
|
+
inkscape:zoom="63.356768"
|
|
29
|
+
inkscape:cx="14.043003"
|
|
30
|
+
inkscape:cy="3.9951377"
|
|
31
|
+
inkscape:document-units="px"
|
|
32
|
+
inkscape:current-layer="layer1"
|
|
33
|
+
showgrid="true"
|
|
34
|
+
units="px"
|
|
35
|
+
inkscape:window-width="1280"
|
|
36
|
+
inkscape:window-height="995"
|
|
37
|
+
inkscape:window-x="1600"
|
|
38
|
+
inkscape:window-y="0"
|
|
39
|
+
inkscape:window-maximized="1"
|
|
40
|
+
showguides="false">
|
|
41
|
+
<inkscape:grid
|
|
42
|
+
type="xygrid"
|
|
43
|
+
id="grid1376"
|
|
44
|
+
originx="0"
|
|
45
|
+
originy="0"
|
|
46
|
+
spacingx="0.5"
|
|
47
|
+
spacingy="0.5" />
|
|
48
|
+
</sodipodi:namedview>
|
|
49
|
+
<metadata
|
|
50
|
+
id="metadata817">
|
|
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 />
|
|
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.64999)">
|
|
66
|
+
<path
|
|
67
|
+
style="fill:#000000;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none;fill-opacity:1"
|
|
68
|
+
d="m 5,297.64999 h 2 v 2 H 5 Z"
|
|
69
|
+
id="path823"
|
|
70
|
+
inkscape:connector-curvature="0" />
|
|
71
|
+
<path
|
|
72
|
+
style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none;fill-opacity:1"
|
|
73
|
+
d="M 12,312.64999 H 1 v -21 h 22 v 12 h -2 v -8 H 3 v 15 h 9 z"
|
|
74
|
+
id="path821"
|
|
75
|
+
inkscape:connector-curvature="0" />
|
|
76
|
+
<path
|
|
77
|
+
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
78
|
+
d="m 8,297.64999 h 10 v 2 H 8 Z"
|
|
79
|
+
id="path823-3"
|
|
80
|
+
inkscape:connector-curvature="0"
|
|
81
|
+
sodipodi:nodetypes="ccccc" />
|
|
82
|
+
<path
|
|
83
|
+
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
84
|
+
d="m 5,301.64999 h 2 v 2 H 5 Z"
|
|
85
|
+
id="path823-6"
|
|
86
|
+
inkscape:connector-curvature="0" />
|
|
87
|
+
<path
|
|
88
|
+
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
89
|
+
d="m 8,301.64999 h 10 v 2 H 8 Z"
|
|
90
|
+
id="path823-3-7"
|
|
91
|
+
inkscape:connector-curvature="0"
|
|
92
|
+
sodipodi:nodetypes="ccccc" />
|
|
93
|
+
<path
|
|
94
|
+
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
95
|
+
d="m 5,305.64999 h 2 v 2 H 5 Z"
|
|
96
|
+
id="path823-6-5"
|
|
97
|
+
inkscape:connector-curvature="0"
|
|
98
|
+
sodipodi:nodetypes="ccccc" />
|
|
99
|
+
<path
|
|
100
|
+
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
101
|
+
d="m 8,305.64999 h 8 l -2,2 H 8 Z"
|
|
102
|
+
id="path823-3-7-3"
|
|
103
|
+
inkscape:connector-curvature="0"
|
|
104
|
+
sodipodi:nodetypes="ccccc" />
|
|
105
|
+
<path
|
|
106
|
+
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
|
107
|
+
d="m 16,312.64999 h -1 l -1,-1 h -1 v 2 h 3 l 7,-7 -3,-3 -7,7 v 1 h 1 v -1 l 5,-5 2,2 z"
|
|
108
|
+
id="path983"
|
|
109
|
+
inkscape:connector-curvature="0"
|
|
110
|
+
sodipodi:nodetypes="ccccccccccccccc" />
|
|
111
|
+
<path
|
|
112
|
+
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
|
113
|
+
d="m 15.5,309.14999 v 1.5 H 17 v 1 l 0.5,-0.5 v -1 H 16 v -1.5 z"
|
|
114
|
+
id="path1372"
|
|
115
|
+
inkscape:connector-curvature="0"
|
|
116
|
+
sodipodi:nodetypes="ccccccccc" />
|
|
117
|
+
</g>
|
|
118
|
+
</svg>
|
|
@@ -0,0 +1,72 @@
|
|
|
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.2.2 (b0a8486541, 2022-12-01)"
|
|
9
|
+
sodipodi:docname="ellipse.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="24.906574"
|
|
28
|
+
inkscape:cy="13.100416"
|
|
29
|
+
inkscape:document-units="px"
|
|
30
|
+
inkscape:current-layer="layer1"
|
|
31
|
+
showgrid="true"
|
|
32
|
+
inkscape:window-width="1920"
|
|
33
|
+
inkscape:window-height="1043"
|
|
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:showpageshadow="2"
|
|
45
|
+
inkscape:pagecheckerboard="0"
|
|
46
|
+
inkscape:deskcolor="#d1d1d1">
|
|
47
|
+
<inkscape:grid
|
|
48
|
+
type="xygrid"
|
|
49
|
+
id="grid4231" />
|
|
50
|
+
</sodipodi:namedview>
|
|
51
|
+
<metadata
|
|
52
|
+
id="metadata5">
|
|
53
|
+
<rdf:RDF>
|
|
54
|
+
<cc:Work
|
|
55
|
+
rdf:about="">
|
|
56
|
+
<dc:format>image/svg+xml</dc:format>
|
|
57
|
+
<dc:type
|
|
58
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
59
|
+
</cc:Work>
|
|
60
|
+
</rdf:RDF>
|
|
61
|
+
</metadata>
|
|
62
|
+
<g
|
|
63
|
+
inkscape:label="Layer 1"
|
|
64
|
+
inkscape:groupmode="layer"
|
|
65
|
+
id="layer1"
|
|
66
|
+
transform="translate(0,-290.65)">
|
|
67
|
+
<path
|
|
68
|
+
style="color:#000000;fill:#000000;-inkscape-stroke:none"
|
|
69
|
+
d="m 12,294.65039 c -2.9505748,0 -5.6391232,0.82668 -7.6445313,2.23047 C 2.3500607,298.28465 1,300.33137 1,302.65039 c 0,2.31902 1.3500607,4.36575 3.3554687,5.76953 2.0054081,1.40379 4.6939565,2.23047 7.6445313,2.23047 2.950575,0 5.639123,-0.82668 7.644531,-2.23047 C 21.649939,307.01614 23,304.96941 23,302.65039 23,300.33137 21.649939,298.28465 19.644531,296.88086 17.639123,295.47707 14.950575,294.65039 12,294.65039 Z m 0,2 c 2.572267,0 4.88417,0.73943 6.498047,1.86914 C 20.111923,299.64924 21,301.10342 21,302.65039 c 0,1.54697 -0.888077,3.00115 -2.501953,4.13086 -1.613877,1.12971 -3.92578,1.86914 -6.498047,1.86914 -2.5722671,0 -4.8841704,-0.73943 -6.4980469,-1.86914 C 3.8880767,305.65154 3,304.19736 3,302.65039 3,301.10342 3.8880767,299.64924 5.5019531,298.51953 7.1158296,297.38982 9.4277329,296.65039 12,296.65039 Z"
|
|
70
|
+
id="path438" />
|
|
71
|
+
</g>
|
|
72
|
+
</svg>
|
package/icons/embed.svg
ADDED
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
sodipodi:docname="embed.svg"
|
|
4
|
+
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
|
|
5
|
+
id="svg8"
|
|
6
|
+
version="1.1"
|
|
7
|
+
viewBox="0 0 24 24"
|
|
8
|
+
height="24"
|
|
9
|
+
width="24"
|
|
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
|
+
inkscape:document-rotation="0"
|
|
21
|
+
units="px"
|
|
22
|
+
inkscape:snap-bbox-midpoints="true"
|
|
23
|
+
inkscape:snap-bbox-edge-midpoints="true"
|
|
24
|
+
inkscape:bbox-nodes="true"
|
|
25
|
+
inkscape:bbox-paths="true"
|
|
26
|
+
inkscape:snap-bbox="true"
|
|
27
|
+
inkscape:window-maximized="1"
|
|
28
|
+
inkscape:window-y="0"
|
|
29
|
+
inkscape:window-x="0"
|
|
30
|
+
inkscape:window-height="842"
|
|
31
|
+
inkscape:window-width="1600"
|
|
32
|
+
showgrid="true"
|
|
33
|
+
inkscape:current-layer="layer1"
|
|
34
|
+
inkscape:document-units="px"
|
|
35
|
+
inkscape:cy="14.088984"
|
|
36
|
+
inkscape:cx="3.0548931"
|
|
37
|
+
inkscape:zoom="10.966014"
|
|
38
|
+
inkscape:pageshadow="2"
|
|
39
|
+
inkscape:pageopacity="0.0"
|
|
40
|
+
borderopacity="1.0"
|
|
41
|
+
bordercolor="#666666"
|
|
42
|
+
pagecolor="#ffffff"
|
|
43
|
+
id="base"
|
|
44
|
+
inkscape:pagecheckerboard="0"
|
|
45
|
+
inkscape:showpageshadow="2"
|
|
46
|
+
inkscape:deskcolor="#d1d1d1">
|
|
47
|
+
<inkscape:grid
|
|
48
|
+
originy="0"
|
|
49
|
+
originx="0"
|
|
50
|
+
id="grid4231"
|
|
51
|
+
type="xygrid"
|
|
52
|
+
spacingy="1"
|
|
53
|
+
spacingx="1"
|
|
54
|
+
units="px"
|
|
55
|
+
visible="true" />
|
|
56
|
+
</sodipodi:namedview>
|
|
57
|
+
<metadata
|
|
58
|
+
id="metadata5">
|
|
59
|
+
<rdf:RDF>
|
|
60
|
+
<cc:Work
|
|
61
|
+
rdf:about="">
|
|
62
|
+
<dc:format>image/svg+xml</dc:format>
|
|
63
|
+
<dc:type
|
|
64
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
65
|
+
</cc:Work>
|
|
66
|
+
</rdf:RDF>
|
|
67
|
+
</metadata>
|
|
68
|
+
<g
|
|
69
|
+
transform="translate(0,-290.65)"
|
|
70
|
+
id="layer1"
|
|
71
|
+
inkscape:groupmode="layer"
|
|
72
|
+
inkscape:label="Layer 1">
|
|
73
|
+
<path
|
|
74
|
+
sodipodi:nodetypes="ccccccccccc"
|
|
75
|
+
inkscape:connector-curvature="0"
|
|
76
|
+
id="path834"
|
|
77
|
+
d="m 14,295.65 v -4 H 1 v 22 h 22 v -13 h -2 v 11 H 3 v -16 z"
|
|
78
|
+
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
|
79
|
+
<path
|
|
80
|
+
sodipodi:nodetypes="cccccccccc"
|
|
81
|
+
inkscape:transform-center-y="-35.529968"
|
|
82
|
+
inkscape:transform-center-x="39.266862"
|
|
83
|
+
inkscape:connector-curvature="0"
|
|
84
|
+
id="path836"
|
|
85
|
+
d="m 23,295.02524 -8,8 h 4 v 2 h -8 v -8 h 2 v 4 l 8,-8 z"
|
|
86
|
+
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.98708px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
|
87
|
+
</g>
|
|
88
|
+
</svg>
|
package/icons/expand.svg
ADDED
|
@@ -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="expand.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="-1.3824647"
|
|
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 3.5000151,293.841 v 16.99997 l 16.9999699,-8.49998 z"
|
|
69
|
+
id="path1364"
|
|
70
|
+
inkscape:connector-curvature="0"
|
|
71
|
+
sodipodi:nodetypes="cccc" />
|
|
72
|
+
</g>
|
|
73
|
+
</svg>
|