@jupytergis/base 0.15.0 → 0.16.0-alpha.0
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/lib/commands/BaseCommandIDs.d.ts +5 -0
- package/lib/commands/BaseCommandIDs.js +5 -0
- package/lib/commands/index.js +218 -47
- package/lib/commands/operationCommands.js +2 -2
- package/lib/constants.js +5 -1
- package/lib/{panelview/annotationPanel.js → features/annotations/AnnotationsPanel.js} +1 -1
- package/lib/{annotations → features/annotations}/index.d.ts +1 -0
- package/lib/{annotations → features/annotations}/index.js +1 -0
- package/lib/{console → features/console}/consoleview.js +1 -1
- package/lib/{panelview/filter-panel → features/filter}/Filter.js +4 -4
- package/lib/{panelview/filter-panel → features/filter}/FilterRow.d.ts +3 -2
- package/lib/{panelview/filter-panel → features/filter}/FilterRow.js +2 -1
- package/lib/{panelview/identify-panel → features/identify}/IdentifyPanel.d.ts +2 -0
- package/lib/features/identify/IdentifyPanel.js +102 -0
- package/lib/features/identify/components/FeatureCard.d.ts +17 -0
- package/lib/features/identify/components/FeatureCard.js +26 -0
- package/lib/features/identify/components/FeatureCardHeader.d.ts +11 -0
- package/lib/features/identify/components/FeatureCardHeader.js +30 -0
- package/lib/features/identify/components/FeatureFloater.d.ts +7 -0
- package/lib/features/identify/components/FeatureFloater.js +19 -0
- package/lib/features/identify/components/FeaturePropertyList.d.ts +11 -0
- package/lib/features/identify/components/FeaturePropertyList.js +18 -0
- package/lib/features/identify/components/FeatureRow.d.ts +13 -0
- package/lib/features/identify/components/FeatureRow.js +25 -0
- package/lib/features/identify/components/PropertyEditors.d.ts +44 -0
- package/lib/features/identify/components/PropertyEditors.js +56 -0
- package/lib/features/identify/hooks/useIdentifyPropertyEditor.d.ts +11 -0
- package/lib/features/identify/hooks/useIdentifyPropertyEditor.js +132 -0
- package/lib/features/identify/types/editorTypes.d.ts +21 -0
- package/lib/features/identify/utils/getFeatureIdentifier.d.ts +5 -0
- package/lib/features/identify/utils/getFeatureIdentifier.js +14 -0
- package/lib/features/identify/utils/highlightLayer.d.ts +11 -0
- package/lib/features/identify/utils/highlightLayer.js +57 -0
- package/lib/features/identify/utils/highlightStyle.d.ts +7 -0
- package/lib/features/identify/utils/highlightStyle.js +40 -0
- package/lib/{dialogs/layerBrowserDialog.js → features/layer-browser/index.js} +2 -2
- package/lib/features/layers/forms/layer/geoTiffLayerForm.d.ts +3 -0
- package/lib/{formbuilder/objectform/layer/webGlLayerForm.js → features/layers/forms/layer/geoTiffLayerForm.js} +5 -5
- package/lib/{formbuilder/objectform → features/layers/forms}/layer/heatmapLayerForm.js +4 -4
- package/lib/{formbuilder/objectform → features/layers/forms}/layer/hillshadeLayerForm.js +4 -4
- package/lib/{formbuilder/objectform → features/layers/forms}/layer/index.d.ts +1 -1
- package/lib/{formbuilder/objectform → features/layers/forms}/layer/index.js +1 -1
- package/lib/{formbuilder/objectform → features/layers/forms}/layer/layerform.d.ts +1 -1
- package/lib/{formbuilder/objectform → features/layers/forms}/layer/layerform.js +4 -4
- package/lib/features/layers/forms/layer/storySegmentLayerForm.js +150 -0
- package/lib/{formbuilder/objectform → features/layers/forms}/layer/vectorlayerform.js +4 -4
- package/lib/{formbuilder/objectform → features/layers/forms}/source/geojsonsource.js +5 -5
- package/lib/features/layers/forms/source/geopackagesource.d.ts +3 -0
- package/lib/features/layers/forms/source/geopackagesource.js +93 -0
- package/lib/{formbuilder/objectform → features/layers/forms}/source/geotiffsource.js +5 -5
- package/lib/{formbuilder/objectform → features/layers/forms}/source/index.d.ts +1 -0
- package/lib/{formbuilder/objectform → features/layers/forms}/source/index.js +1 -0
- package/lib/{formbuilder/objectform → features/layers/forms}/source/pathbasedsource.js +5 -5
- package/lib/{formbuilder/objectform → features/layers/forms}/source/sourceform.d.ts +1 -1
- package/lib/{formbuilder/objectform → features/layers/forms}/source/sourceform.js +4 -4
- package/lib/{formbuilder/objectform → features/layers/forms}/source/tilesourceform.js +4 -4
- package/lib/{formbuilder/objectform → features/layers/forms}/source/wmsTileSource.d.ts +1 -1
- package/lib/{formbuilder/objectform → features/layers/forms}/source/wmsTileSource.js +6 -6
- package/lib/{dialogs → features/layers}/layerCreationFormDialog.d.ts +1 -1
- package/lib/{dialogs → features/layers}/layerCreationFormDialog.js +1 -1
- package/lib/features/layers/symbology/Grammar.d.ts +11 -0
- package/lib/features/layers/symbology/Grammar.js +235 -0
- package/lib/{dialogs/symbology/vector_layer/types → features/layers/symbology}/Heatmap.d.ts +1 -1
- package/lib/{dialogs/symbology/vector_layer/types → features/layers/symbology}/Heatmap.js +30 -10
- package/lib/{dialogs → features/layers}/symbology/classificationModes.d.ts +6 -6
- package/lib/{dialogs → features/layers}/symbology/classificationModes.js +48 -44
- package/lib/{dialogs → features/layers}/symbology/colorRampUtils.d.ts +1 -0
- package/lib/{dialogs → features/layers}/symbology/colorRampUtils.js +12 -1
- package/lib/features/layers/symbology/components/MappingRow.d.ts +40 -0
- package/lib/features/layers/symbology/components/MappingRow.js +516 -0
- package/lib/features/layers/symbology/components/NumericInput.d.ts +20 -0
- package/lib/features/layers/symbology/components/NumericInput.js +44 -0
- package/lib/features/layers/symbology/components/ScaleEditor.d.ts +33 -0
- package/lib/features/layers/symbology/components/ScaleEditor.js +221 -0
- package/lib/{dialogs → features/layers}/symbology/components/color_ramp/ColorRampControls.d.ts +1 -1
- package/lib/{dialogs → features/layers}/symbology/components/color_ramp/ColorRampControls.js +3 -2
- package/lib/{dialogs → features/layers}/symbology/components/color_ramp/ColorRampSelector.d.ts +2 -1
- package/lib/{dialogs → features/layers}/symbology/components/color_ramp/ColorRampSelector.js +6 -1
- package/lib/{dialogs → features/layers}/symbology/components/color_ramp/ModeSelectRow.d.ts +1 -1
- package/lib/{dialogs → features/layers}/symbology/components/color_ramp/RgbaColorPicker.js +39 -9
- package/lib/{dialogs → features/layers}/symbology/components/color_stops/StopRow.d.ts +1 -1
- package/lib/{dialogs → features/layers}/symbology/components/color_stops/StopRow.js +1 -1
- package/lib/features/layers/symbology/grammarToOLLayer.d.ts +27 -0
- package/lib/features/layers/symbology/grammarToOLLayer.js +145 -0
- package/lib/features/layers/symbology/grammarToOLStyle.d.ts +32 -0
- package/lib/features/layers/symbology/grammarToOLStyle.js +467 -0
- package/lib/{dialogs → features/layers}/symbology/hooks/useGetBandInfo.d.ts +1 -1
- package/lib/{dialogs → features/layers}/symbology/hooks/useGetBandInfo.js +1 -1
- package/lib/{dialogs → features/layers}/symbology/hooks/useGetProperties.js +1 -1
- package/lib/{dialogs → features/layers}/symbology/hooks/useGetSymbology.js +4 -2
- package/lib/features/layers/symbology/styleBuilder.d.ts +21 -0
- package/lib/features/layers/symbology/styleBuilder.js +145 -0
- package/lib/{dialogs → features/layers}/symbology/symbologyDialog.d.ts +1 -1
- package/lib/{dialogs → features/layers}/symbology/symbologyDialog.js +12 -12
- package/lib/{dialogs → features/layers}/symbology/symbologyUtils.d.ts +18 -10
- package/lib/{dialogs → features/layers}/symbology/symbologyUtils.js +0 -84
- package/lib/{panelview/objectproperties.d.ts → features/objectproperties/index.d.ts} +1 -1
- package/lib/{panelview/objectproperties.js → features/objectproperties/index.js} +5 -10
- package/lib/{dialogs → features/processing}/ProcessingFormDialog.d.ts +1 -1
- package/lib/{dialogs → features/processing}/ProcessingFormDialog.js +28 -14
- package/lib/features/processing/forms/MapExtentToggle.d.ts +13 -0
- package/lib/features/processing/forms/MapExtentToggle.js +20 -0
- package/lib/features/processing/forms/clipRasterByExtentForm.d.ts +10 -0
- package/lib/features/processing/forms/clipRasterByExtentForm.js +99 -0
- package/lib/{formbuilder/objectform/process → features/processing/forms}/dissolveProcessForm.js +5 -5
- package/lib/{formbuilder/objectform → features/processing/forms}/processingForm.d.ts +1 -1
- package/lib/{formbuilder/objectform → features/processing/forms}/processingForm.js +6 -6
- package/lib/features/processing/forms/rasterizeForm.d.ts +10 -0
- package/lib/features/processing/forms/rasterizeForm.js +75 -0
- package/lib/features/processing/forms/useMapExtent.d.ts +22 -0
- package/lib/features/processing/forms/useMapExtent.js +57 -0
- package/lib/{processing → features/processing}/index.d.ts +19 -2
- package/lib/features/processing/index.js +1246 -0
- package/lib/{processing → features/processing}/processingCommands.d.ts +1 -1
- package/lib/features/processing/processingCommands.js +168 -0
- package/lib/features/processing/serverProcessing.d.ts +51 -0
- package/lib/features/processing/serverProcessing.js +99 -0
- package/lib/{stacBrowser → features/stac-browser}/components/StacPanel.js +2 -2
- package/lib/{stacBrowser → features/stac-browser}/components/filter-extension/QueryableComboBox.js +5 -5
- package/lib/{stacBrowser → features/stac-browser}/components/filter-extension/QueryableRow.js +1 -1
- package/lib/{stacBrowser → features/stac-browser}/components/filter-extension/StacFilterExtensionPanel.js +2 -2
- package/lib/{stacBrowser → features/stac-browser}/components/filter-extension/StacQueryableFilters.js +1 -1
- package/lib/{stacBrowser → features/stac-browser}/components/geodes/StacFilterSection.js +3 -3
- package/lib/{stacBrowser → features/stac-browser}/components/shared/StacPanelResults.js +3 -3
- package/lib/{stacBrowser → features/stac-browser}/components/shared/StacSpatialExtent.js +1 -1
- package/lib/{stacBrowser → features/stac-browser}/components/shared/StacTemporalExtent.js +1 -1
- package/lib/{stacBrowser → features/stac-browser}/context/StacResultsContext.js +2 -2
- package/lib/{stacBrowser → features/stac-browser}/hooks/useGeodesSearch.js +2 -2
- package/lib/{stacBrowser → features/stac-browser}/hooks/useStacFilterExtension.js +3 -3
- package/lib/{stacBrowser → features/stac-browser}/hooks/useStacSearch.js +1 -1
- package/lib/features/stac-browser/types/types.js +1 -0
- package/lib/{panelview/story-maps → features/story}/SpectaPanel.d.ts +4 -1
- package/lib/{panelview/story-maps → features/story}/SpectaPanel.js +3 -4
- package/lib/{panelview/story-maps → features/story}/StoryEditorPanel.js +1 -1
- package/lib/{panelview/story-maps → features/story}/StoryViewerPanel.d.ts +12 -11
- package/lib/features/story/StoryViewerPanel.js +64 -0
- package/lib/features/story/__tests__/fixtures/listStoryTestItems.d.ts +9 -0
- package/lib/features/story/__tests__/fixtures/listStoryTestItems.js +21 -0
- package/lib/features/story/components/ListStoryMapOverlayPanel.d.ts +10 -0
- package/lib/features/story/components/ListStoryMapOverlayPanel.js +11 -0
- package/lib/features/story/components/ListStoryMarkdownMeasurePane.d.ts +11 -0
- package/lib/features/story/components/ListStoryMarkdownMeasurePane.js +55 -0
- package/lib/features/story/components/ListStoryOverlayMarkdown.d.ts +15 -0
- package/lib/features/story/components/ListStoryOverlayMarkdown.js +93 -0
- package/lib/features/story/components/ListStoryStageOverlay.d.ts +12 -0
- package/lib/features/story/components/ListStoryStageOverlay.js +132 -0
- package/lib/features/story/components/ListStoryVirtualScrollTrack.d.ts +6 -0
- package/lib/features/story/components/ListStoryVirtualScrollTrack.js +7 -0
- package/lib/{panelview/story-maps → features/story}/components/SpectaDesktopView.d.ts +4 -2
- package/lib/features/story/components/SpectaDesktopView.js +67 -0
- package/lib/{panelview/story-maps → features/story}/components/SpectaMobileView.d.ts +2 -4
- package/lib/{panelview/story-maps → features/story}/components/SpectaMobileView.js +3 -3
- package/lib/features/story/components/SpectaSingleModeContent.d.ts +18 -0
- package/lib/features/story/components/SpectaSingleModeContent.js +8 -0
- package/lib/features/story/context/ListStoryScrollTrackContext.d.ts +15 -0
- package/lib/features/story/context/ListStoryScrollTrackContext.js +142 -0
- package/lib/features/story/hooks/useCurrentSegmentIndex.d.ts +3 -0
- package/lib/features/story/hooks/useCurrentSegmentIndex.js +17 -0
- package/lib/features/story/hooks/useListStoryScroll.d.ts +15 -0
- package/lib/features/story/hooks/useListStoryScroll.js +107 -0
- package/lib/features/story/hooks/useQueuedMarkdownHeightMeasure.d.ts +19 -0
- package/lib/features/story/hooks/useQueuedMarkdownHeightMeasure.js +56 -0
- package/lib/features/story/hooks/useStoryImagePreload.d.ts +1 -0
- package/lib/features/story/hooks/useStoryImagePreload.js +24 -0
- package/lib/{panelview/story-maps → features/story}/hooks/useStoryMap.d.ts +2 -7
- package/lib/{panelview/story-maps → features/story}/hooks/useStoryMap.js +20 -44
- package/lib/features/story/hooks/useStoryScrollState.d.ts +21 -0
- package/lib/features/story/hooks/useStoryScrollState.js +39 -0
- package/lib/features/story/hooks/useStorySegmentSync.d.ts +8 -0
- package/lib/features/story/hooks/useStorySegmentSync.js +51 -0
- package/lib/features/story/types/types.d.ts +38 -0
- package/lib/features/story/types/types.js +1 -0
- package/lib/features/story/utils/computeListStoryScrollState.d.ts +12 -0
- package/lib/features/story/utils/computeListStoryScrollState.js +70 -0
- package/lib/features/story/utils/listStoryMeasureQueue.d.ts +11 -0
- package/lib/features/story/utils/listStoryMeasureQueue.js +14 -0
- package/lib/features/story/utils/listStoryScrollTrack.d.ts +17 -0
- package/lib/features/story/utils/listStoryScrollTrack.js +72 -0
- package/lib/features/story/utils/spectaPresentation.d.ts +9 -0
- package/lib/features/story/utils/spectaPresentation.js +37 -0
- package/lib/features/story/utils/storySegmentViewItems.d.ts +5 -0
- package/lib/features/story/utils/storySegmentViewItems.js +30 -0
- package/lib/index.d.ts +11 -9
- package/lib/index.js +11 -9
- package/lib/keybindings.json +5 -0
- package/lib/mainview/OpenEOTileLayer.d.ts +49 -0
- package/lib/mainview/OpenEOTileLayer.js +179 -0
- package/lib/mainview/TemporalSlider.js +11 -9
- package/lib/mainview/geoJsonFeaturePatch.d.ts +9 -0
- package/lib/mainview/geoJsonFeaturePatch.js +43 -0
- package/lib/mainview/mainView.d.ts +90 -7
- package/lib/mainview/mainView.js +1196 -586
- package/lib/mainview/mainviewwidget.d.ts +5 -1
- package/lib/mainview/mainviewwidget.js +4 -2
- package/lib/shared/components/Button.d.ts +1 -1
- package/lib/shared/components/DropdownMenu.d.ts +1 -0
- package/lib/shared/components/DropdownMenu.js +3 -2
- package/lib/shared/components/NativeSelect.d.ts +8 -0
- package/lib/shared/components/NativeSelect.js +29 -0
- package/lib/shared/components/Tabs.d.ts +3 -3
- package/lib/shared/components/Tabs.js +5 -5
- package/lib/{formbuilder → shared/formbuilder}/creationform.js +71 -4
- package/lib/{formbuilder → shared/formbuilder}/editform.js +1 -1
- package/lib/{formbuilder → shared/formbuilder}/formselectors.d.ts +2 -2
- package/lib/{formbuilder → shared/formbuilder}/formselectors.js +10 -4
- package/lib/shared/formbuilder/index.d.ts +4 -0
- package/lib/shared/formbuilder/index.js +4 -0
- package/lib/{formbuilder → shared/formbuilder}/objectform/SchemaForm.d.ts +1 -1
- package/lib/{formbuilder → shared/formbuilder}/objectform/StoryEditorForm.d.ts +1 -1
- package/lib/{formbuilder → shared/formbuilder}/objectform/StoryEditorForm.js +1 -1
- package/lib/{formbuilder → shared/formbuilder}/objectform/components/LayerSelect.js +1 -1
- package/lib/{formbuilder → shared/formbuilder}/objectform/components/SegmentFormSymbology.js +4 -4
- package/lib/{formbuilder → shared/formbuilder}/objectform/components/SourcePropertiesField.js +1 -1
- package/lib/{formbuilder → shared/formbuilder}/objectform/components/StorySegmentReset.js +1 -1
- package/lib/{formbuilder → shared/formbuilder}/objectform/components/WmsTileSourceUrlInput.js +4 -4
- package/lib/{formbuilder → shared/formbuilder}/objectform/fileselectorwidget.js +8 -1
- package/lib/{formbuilder → shared/formbuilder}/objectform/schemaUtils.d.ts +3 -1
- package/lib/{formbuilder → shared/formbuilder}/objectform/schemaUtils.js +11 -0
- package/lib/{formbuilder → shared/formbuilder}/objectform/useSchemaFormState.d.ts +1 -1
- package/lib/{formbuilder → shared/formbuilder}/objectform/useSchemaFormState.js +1 -1
- package/lib/{icons.d.ts → shared/icons.d.ts} +2 -0
- package/lib/{icons.js → shared/icons.js} +28 -18
- package/lib/tools.d.ts +2 -0
- package/lib/tools.js +138 -4
- package/lib/types.d.ts +6 -1
- package/lib/types.js +6 -1
- package/lib/{menus.js → workspace/menus.js} +10 -2
- package/lib/workspace/panels/components/TabbedPanel.d.ts +17 -0
- package/lib/workspace/panels/components/TabbedPanel.js +19 -0
- package/lib/{panelview → workspace/panels}/components/layers.js +63 -18
- package/lib/workspace/panels/components/legendItem.js +680 -0
- package/lib/workspace/panels/hooks/useLayerTree.d.ts +19 -0
- package/lib/workspace/panels/hooks/useLayerTree.js +103 -0
- package/lib/workspace/panels/hooks/useRightPanelOptions.d.ts +27 -0
- package/lib/workspace/panels/hooks/useRightPanelOptions.js +72 -0
- package/lib/workspace/panels/hooks/useUIState.d.ts +2 -0
- package/lib/workspace/panels/hooks/useUIState.js +25 -0
- package/lib/{panelview → workspace/panels}/index.d.ts +1 -1
- package/lib/{panelview → workspace/panels}/index.js +1 -1
- package/lib/{panelview → workspace/panels}/leftpanel.d.ts +1 -1
- package/lib/workspace/panels/leftpanel.js +70 -0
- package/lib/{panelview/rightpanel.d.ts → workspace/panels/mergedpanel.d.ts} +6 -5
- package/lib/workspace/panels/mergedpanel.js +166 -0
- package/lib/workspace/panels/rightpanel.d.ts +25 -0
- package/lib/{panelview → workspace/panels}/rightpanel.js +53 -63
- package/lib/{statusbar → workspace/statusbar}/StatusBar.js +5 -4
- package/lib/{toolbar → workspace/toolbar}/widget.d.ts +2 -0
- package/lib/{toolbar → workspace/toolbar}/widget.js +33 -5
- package/lib/{widget.d.ts → workspace/widget.d.ts} +7 -5
- package/lib/{widget.js → workspace/widget.js} +16 -7
- package/package.json +16 -4
- package/style/base.css +109 -1
- package/style/icons/geopackage.svg +95 -0
- package/style/icons/pencil_solid.svg +7 -0
- package/style/identify.css +95 -0
- package/style/layerBrowser.css +28 -0
- package/style/leftPanel.css +25 -0
- package/style/shared/button.css +12 -0
- package/style/shared/dropdownMenu.css +9 -0
- package/style/shared/nativeSelect.css +75 -0
- package/style/shared/tabs.css +1 -1
- package/style/spectaProgressBar.css +0 -1
- package/style/storyPanel.css +140 -9
- package/style/storySpectaArticleOverlay.css +129 -0
- package/style/symbologyDialog.css +285 -27
- package/lib/dialogs/symbology/tiff_layer/TiffRendering.d.ts +0 -4
- package/lib/dialogs/symbology/tiff_layer/TiffRendering.js +0 -42
- package/lib/dialogs/symbology/tiff_layer/components/BandRow.d.ts +0 -23
- package/lib/dialogs/symbology/tiff_layer/components/BandRow.js +0 -59
- package/lib/dialogs/symbology/tiff_layer/types/MultibandColor.d.ts +0 -4
- package/lib/dialogs/symbology/tiff_layer/types/MultibandColor.js +0 -92
- package/lib/dialogs/symbology/tiff_layer/types/SingleBandPseudoColor.d.ts +0 -5
- package/lib/dialogs/symbology/tiff_layer/types/SingleBandPseudoColor.js +0 -313
- package/lib/dialogs/symbology/vector_layer/VectorRendering.d.ts +0 -4
- package/lib/dialogs/symbology/vector_layer/VectorRendering.js +0 -112
- package/lib/dialogs/symbology/vector_layer/components/ValueSelect.d.ts +0 -8
- package/lib/dialogs/symbology/vector_layer/components/ValueSelect.js +0 -9
- package/lib/dialogs/symbology/vector_layer/types/Canonical.d.ts +0 -4
- package/lib/dialogs/symbology/vector_layer/types/Canonical.js +0 -130
- package/lib/dialogs/symbology/vector_layer/types/Categorized.d.ts +0 -4
- package/lib/dialogs/symbology/vector_layer/types/Categorized.js +0 -243
- package/lib/dialogs/symbology/vector_layer/types/Graduated.d.ts +0 -4
- package/lib/dialogs/symbology/vector_layer/types/Graduated.js +0 -362
- package/lib/dialogs/symbology/vector_layer/types/SimpleSymbol.d.ts +0 -4
- package/lib/dialogs/symbology/vector_layer/types/SimpleSymbol.js +0 -120
- package/lib/formbuilder/index.d.ts +0 -4
- package/lib/formbuilder/index.js +0 -4
- package/lib/formbuilder/objectform/layer/storySegmentLayerForm.js +0 -95
- package/lib/formbuilder/objectform/layer/webGlLayerForm.d.ts +0 -3
- package/lib/formbuilder/objectform/process/index.d.ts +0 -1
- package/lib/formbuilder/objectform/process/index.js +0 -1
- package/lib/panelview/components/legendItem.js +0 -210
- package/lib/panelview/identify-panel/IdentifyPanel.js +0 -102
- package/lib/panelview/leftpanel.js +0 -139
- package/lib/panelview/story-maps/StoryViewerPanel.js +0 -116
- package/lib/panelview/story-maps/components/SpectaDesktopView.js +0 -49
- package/lib/processing/index.js +0 -200
- package/lib/processing/processingCommands.js +0 -67
- /package/lib/{panelview/annotationPanel.d.ts → features/annotations/AnnotationsPanel.d.ts} +0 -0
- /package/lib/{annotations → features/annotations}/components/Annotation.d.ts +0 -0
- /package/lib/{annotations → features/annotations}/components/Annotation.js +0 -0
- /package/lib/{annotations → features/annotations}/components/AnnotationFloater.d.ts +0 -0
- /package/lib/{annotations → features/annotations}/components/AnnotationFloater.js +0 -0
- /package/lib/{annotations → features/annotations}/components/Message.d.ts +0 -0
- /package/lib/{annotations → features/annotations}/components/Message.js +0 -0
- /package/lib/{annotations → features/annotations}/model.d.ts +0 -0
- /package/lib/{annotations → features/annotations}/model.js +0 -0
- /package/lib/{console → features/console}/consoleview.d.ts +0 -0
- /package/lib/{console → features/console}/index.d.ts +0 -0
- /package/lib/{console → features/console}/index.js +0 -0
- /package/lib/{panelview/filter-panel → features/filter}/Filter.d.ts +0 -0
- /package/lib/{stacBrowser/types/types.js → features/identify/types/editorTypes.js} +0 -0
- /package/lib/{dialogs/layerBrowserDialog.d.ts → features/layer-browser/index.d.ts} +0 -0
- /package/lib/{formbuilder/objectform → features/layers/forms}/layer/heatmapLayerForm.d.ts +0 -0
- /package/lib/{formbuilder/objectform → features/layers/forms}/layer/hillshadeLayerForm.d.ts +0 -0
- /package/lib/{formbuilder/objectform → features/layers/forms}/layer/storySegmentLayerForm.d.ts +0 -0
- /package/lib/{formbuilder/objectform → features/layers/forms}/layer/vectorlayerform.d.ts +0 -0
- /package/lib/{formbuilder/objectform → features/layers/forms}/source/geojsonsource.d.ts +0 -0
- /package/lib/{formbuilder/objectform → features/layers/forms}/source/geotiffsource.d.ts +0 -0
- /package/lib/{formbuilder/objectform → features/layers/forms}/source/pathbasedsource.d.ts +0 -0
- /package/lib/{formbuilder/objectform → features/layers/forms}/source/tilesourceform.d.ts +0 -0
- /package/lib/{dialogs → features/layers}/symbology/components/color_ramp/ColorRampSelectorEntry.d.ts +0 -0
- /package/lib/{dialogs → features/layers}/symbology/components/color_ramp/ColorRampSelectorEntry.js +0 -0
- /package/lib/{dialogs → features/layers}/symbology/components/color_ramp/ModeSelectRow.js +0 -0
- /package/lib/{dialogs → features/layers}/symbology/components/color_ramp/RgbaColorPicker.d.ts +0 -0
- /package/lib/{dialogs → features/layers}/symbology/components/color_ramp/cmocean.json +0 -0
- /package/lib/{dialogs → features/layers}/symbology/components/color_stops/StopContainer.d.ts +0 -0
- /package/lib/{dialogs → features/layers}/symbology/components/color_stops/StopContainer.js +0 -0
- /package/lib/{dialogs → features/layers}/symbology/hooks/useEffectiveSymbologyParams.d.ts +0 -0
- /package/lib/{dialogs → features/layers}/symbology/hooks/useEffectiveSymbologyParams.js +0 -0
- /package/lib/{dialogs → features/layers}/symbology/hooks/useGetProperties.d.ts +0 -0
- /package/lib/{dialogs → features/layers}/symbology/hooks/useGetSymbology.d.ts +0 -0
- /package/lib/{dialogs → features/layers}/symbology/hooks/useOkSignal.d.ts +0 -0
- /package/lib/{dialogs → features/layers}/symbology/hooks/useOkSignal.js +0 -0
- /package/lib/{formbuilder/objectform/process → features/processing/forms}/dissolveProcessForm.d.ts +0 -0
- /package/lib/{processing → features/processing}/processingFormToParam.d.ts +0 -0
- /package/lib/{processing → features/processing}/processingFormToParam.js +0 -0
- /package/lib/{stacBrowser → features/stac-browser}/components/StacPanel.d.ts +0 -0
- /package/lib/{stacBrowser → features/stac-browser}/components/filter-extension/QueryableComboBox.d.ts +0 -0
- /package/lib/{stacBrowser → features/stac-browser}/components/filter-extension/QueryableRow.d.ts +0 -0
- /package/lib/{stacBrowser → features/stac-browser}/components/filter-extension/StacFilterExtensionPanel.d.ts +0 -0
- /package/lib/{stacBrowser → features/stac-browser}/components/filter-extension/StacQueryableFilters.d.ts +0 -0
- /package/lib/{stacBrowser → features/stac-browser}/components/geodes/StacFilterSection.d.ts +0 -0
- /package/lib/{stacBrowser → features/stac-browser}/components/geodes/StacGeodesFilterPanel.d.ts +0 -0
- /package/lib/{stacBrowser → features/stac-browser}/components/geodes/StacGeodesFilterPanel.js +0 -0
- /package/lib/{stacBrowser → features/stac-browser}/components/shared/StacPanelResults.d.ts +0 -0
- /package/lib/{stacBrowser → features/stac-browser}/components/shared/StacSpatialExtent.d.ts +0 -0
- /package/lib/{stacBrowser → features/stac-browser}/components/shared/StacTemporalExtent.d.ts +0 -0
- /package/lib/{stacBrowser → features/stac-browser}/constants.d.ts +0 -0
- /package/lib/{stacBrowser → features/stac-browser}/constants.js +0 -0
- /package/lib/{stacBrowser → features/stac-browser}/context/StacResultsContext.d.ts +0 -0
- /package/lib/{stacBrowser → features/stac-browser}/hooks/useGeodesSearch.d.ts +0 -0
- /package/lib/{stacBrowser → features/stac-browser}/hooks/useStacFilterExtension.d.ts +0 -0
- /package/lib/{stacBrowser → features/stac-browser}/hooks/useStacSearch.d.ts +0 -0
- /package/lib/{stacBrowser → features/stac-browser}/index.d.ts +0 -0
- /package/lib/{stacBrowser → features/stac-browser}/index.js +0 -0
- /package/lib/{stacBrowser → features/stac-browser}/types/types.d.ts +0 -0
- /package/lib/{panelview/story-maps → features/story}/StoryEditorPanel.d.ts +0 -0
- /package/lib/{panelview/story-maps → features/story}/components/PreviewModeSwitch.d.ts +0 -0
- /package/lib/{panelview/story-maps → features/story}/components/PreviewModeSwitch.js +0 -0
- /package/lib/{panelview/story-maps → features/story}/components/StoryContentSection.d.ts +0 -0
- /package/lib/{panelview/story-maps → features/story}/components/StoryContentSection.js +0 -0
- /package/lib/{panelview/story-maps → features/story}/components/StoryImageSection.d.ts +0 -0
- /package/lib/{panelview/story-maps → features/story}/components/StoryImageSection.js +0 -0
- /package/lib/{panelview/story-maps → features/story}/components/StoryNavBar.d.ts +0 -0
- /package/lib/{panelview/story-maps → features/story}/components/StoryNavBar.js +0 -0
- /package/lib/{panelview/story-maps → features/story}/components/StorySubtitleSection.d.ts +0 -0
- /package/lib/{panelview/story-maps → features/story}/components/StorySubtitleSection.js +0 -0
- /package/lib/{panelview/story-maps → features/story}/components/StoryTitleSection.d.ts +0 -0
- /package/lib/{panelview/story-maps → features/story}/components/StoryTitleSection.js +0 -0
- /package/lib/{formbuilder → shared/formbuilder}/creationform.d.ts +0 -0
- /package/lib/{formbuilder → shared/formbuilder}/editform.d.ts +0 -0
- /package/lib/{formbuilder → shared/formbuilder}/objectform/SchemaForm.js +0 -0
- /package/lib/{formbuilder → shared/formbuilder}/objectform/components/LayerSelect.d.ts +0 -0
- /package/lib/{formbuilder → shared/formbuilder}/objectform/components/OpacitySlider.d.ts +0 -0
- /package/lib/{formbuilder → shared/formbuilder}/objectform/components/OpacitySlider.js +0 -0
- /package/lib/{formbuilder → shared/formbuilder}/objectform/components/SegmentFormSymbology.d.ts +0 -0
- /package/lib/{formbuilder → shared/formbuilder}/objectform/components/SourcePropertiesField.d.ts +0 -0
- /package/lib/{formbuilder → shared/formbuilder}/objectform/components/StorySegmentReset.d.ts +0 -0
- /package/lib/{formbuilder → shared/formbuilder}/objectform/components/WmsTileSourceUrlInput.d.ts +0 -0
- /package/lib/{formbuilder → shared/formbuilder}/objectform/fileselectorwidget.d.ts +0 -0
- /package/lib/{store.d.ts → shared/store.d.ts} +0 -0
- /package/lib/{store.js → shared/store.js} +0 -0
- /package/lib/{menus.d.ts → workspace/menus.d.ts} +0 -0
- /package/lib/{panelview → workspace/panels}/components/layers.d.ts +0 -0
- /package/lib/{panelview → workspace/panels}/components/legendItem.d.ts +0 -0
- /package/lib/{panelview → workspace/panels}/header.d.ts +0 -0
- /package/lib/{panelview → workspace/panels}/header.js +0 -0
- /package/lib/{statusbar → workspace/statusbar}/SpectaPresentationProgressBar.d.ts +0 -0
- /package/lib/{statusbar → workspace/statusbar}/SpectaPresentationProgressBar.js +0 -0
- /package/lib/{statusbar → workspace/statusbar}/StatusBar.d.ts +0 -0
- /package/lib/{toolbar → workspace/toolbar}/index.d.ts +0 -0
- /package/lib/{toolbar → workspace/toolbar}/index.js +0 -0
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
version="1.1"
|
|
6
|
+
id="svg3277"
|
|
7
|
+
width="400.82117"
|
|
8
|
+
height="256.85327"
|
|
9
|
+
viewBox="0 0 400.82116 256.85326"
|
|
10
|
+
sodipodi:docname="gpkg.svg"
|
|
11
|
+
inkscape:version="1.2.2 (b0a84865, 2022-12-01)"
|
|
12
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
13
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
14
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
15
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
16
|
+
<defs
|
|
17
|
+
id="defs3281" />
|
|
18
|
+
<sodipodi:namedview
|
|
19
|
+
id="namedview3279"
|
|
20
|
+
pagecolor="#ffffff"
|
|
21
|
+
bordercolor="#000000"
|
|
22
|
+
borderopacity="0.25"
|
|
23
|
+
inkscape:showpageshadow="2"
|
|
24
|
+
inkscape:pageopacity="0.0"
|
|
25
|
+
inkscape:pagecheckerboard="0"
|
|
26
|
+
inkscape:deskcolor="#d1d1d1"
|
|
27
|
+
showgrid="false"
|
|
28
|
+
inkscape:zoom="0.72065244"
|
|
29
|
+
inkscape:cx="226.87774"
|
|
30
|
+
inkscape:cy="-25.671182"
|
|
31
|
+
inkscape:window-width="1392"
|
|
32
|
+
inkscape:window-height="819"
|
|
33
|
+
inkscape:window-x="0"
|
|
34
|
+
inkscape:window-y="25"
|
|
35
|
+
inkscape:window-maximized="0"
|
|
36
|
+
inkscape:current-layer="g3283" />
|
|
37
|
+
<g
|
|
38
|
+
inkscape:groupmode="layer"
|
|
39
|
+
inkscape:label="Image"
|
|
40
|
+
id="g3283"
|
|
41
|
+
transform="translate(-492.85044,-305.79343)">
|
|
42
|
+
<path
|
|
43
|
+
style="opacity:0.981538;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
|
|
44
|
+
d="m 619.92828,318.89096 -126.57794,43.6946 72.66453,24.45024 126.0702,-43.86544 z"
|
|
45
|
+
id="path27294"
|
|
46
|
+
sodipodi:nodetypes="ccccc" />
|
|
47
|
+
<path
|
|
48
|
+
style="opacity:0.981538;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
|
|
49
|
+
d="M 764.03284,318.26024 892.96276,361.64273 821.01494,386.8637 692.08506,342.78712 Z"
|
|
50
|
+
id="path25085"
|
|
51
|
+
sodipodi:nodetypes="ccccc" />
|
|
52
|
+
<path
|
|
53
|
+
style="opacity:0.981538;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.998017;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
|
|
54
|
+
d="m 692.08506,343.34388 6e-5,128.998 128.92986,45.0725 V 386.72637 Z"
|
|
55
|
+
id="path8254"
|
|
56
|
+
sodipodi:nodetypes="ccccc" />
|
|
57
|
+
<path
|
|
58
|
+
style="opacity:0.981538;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.995047;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
|
|
59
|
+
d="m 566.01488,386.86228 126.07018,-43.5184 v 129.57429 l -126.07018,43.97675 z"
|
|
60
|
+
id="path8252"
|
|
61
|
+
sodipodi:nodetypes="ccccc" />
|
|
62
|
+
<ellipse
|
|
63
|
+
style="opacity:0.981538;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.854823;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
|
|
64
|
+
id="path27364"
|
|
65
|
+
cx="692.78217"
|
|
66
|
+
cy="393.29343"
|
|
67
|
+
rx="87.072594"
|
|
68
|
+
ry="87.072586" />
|
|
69
|
+
<path
|
|
70
|
+
style="opacity:0.981538;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
|
|
71
|
+
d="m 566.01488,386.86228 v 130.03264 l 128.92988,45.25179 V 430.93886 Z"
|
|
72
|
+
id="path4259"
|
|
73
|
+
sodipodi:nodetypes="ccccc" />
|
|
74
|
+
<path
|
|
75
|
+
style="fill:#000000"
|
|
76
|
+
d="m 609.44473,398.37299 c -4.05198,-34.47328 26.71036,-91.86359 92.38579,-90.68684 0.3461,0.56003 -0.3023,2.52565 -1.441,4.36803 -3.3312,5.39001 -2.9067,5.90672 4.1798,5.08819 3.4375,-0.39705 7.2625,-1.10509 8.5,-1.57343 2.2093,-0.83615 2.25,-0.7157 2.25,6.66904 v 7.52056 l 3.75,-0.64386 c 4.6768,-0.80298 12.6839,-6.02043 13.8642,-9.03395 0.8747,-2.23341 0.9644,-2.20472 7.2067,2.30616 5.1332,3.70942 6.0727,4.79891 5,5.7981 -2.7203,2.53381 -21.8809,7.48292 -28.9703,7.48292 h -6.8506 v -3 c 0,-4.41866 -2.2556,-3.71199 -4.7878,1.5 -1.8968,3.90423 -2.5992,4.5 -5.3053,4.5 -1.9573,0 -4.5301,1.11748 -6.9069,3 -2.712,2.14788 -4.8831,3.00435 -7.6439,3.01532 -2.1209,0.008 -4.5311,0.45153 -5.3561,0.98468 -1.3189,0.85232 -1.3113,0.97123 0.063,0.98469 0.8596,0.008 2.7,1.25281 4.0899,2.76531 2.2691,2.46935 2.4353,3.18374 1.6282,7 l -0.8988,4.25 h -9.8702 -9.8703 l -1.1957,5.75 c -1.0877,5.23056 -0.9859,6.35557 1.1267,12.45347 l 2.3223,6.70346 8.0525,-0.58568 c 4.4288,-0.32213 9.5149,-1.17823 11.3024,-1.90244 3.1056,-1.25824 3.25,-1.55788 3.25,-6.74278 0,-5.27715 0.086,-5.44318 3.125,-6.05103 1.7188,-0.34375 6.7813,-0.63488 11.25,-0.64696 5.8226,-0.0157 9.3164,-0.5628 12.329,-1.9305 3.4971,-1.58764 4.7162,-1.71523 7.25,-0.75881 1.8881,0.71267 3.046,1.85553 3.046,3.00633 0,1.02111 2.2886,5.13439 5.0857,9.1406 4.8117,6.89157 5.0316,7.48014 4.0807,10.92418 -0.9499,3.43999 -0.8758,3.64016 1.3469,3.64016 1.347,0 2.6058,-0.74775 2.9461,-1.75 0.3267,-0.9625 1.2499,-2.61372 2.0515,-3.66938 1.4179,-1.86741 1.5126,-1.8694 3.4969,-0.0736 1.3625,1.23309 2.3721,1.51312 3.0416,0.84365 0.6695,-0.66948 -1.3083,-4.27556 -5.9584,-10.86395 -5.5413,-7.85107 -6.7652,-10.22684 -6.0025,-11.65195 0.795,-1.48555 1.7622,-1.68302 5.6848,-1.16066 5.9092,0.78692 10.4432,4.38846 12.7114,10.09722 1.7399,4.37917 5.4793,7.2287 9.486,7.2287 h 2.07 l -2.0203,-3.96016 c -2.5089,-4.91789 -2.5108,-5.33027 -0.02,-4.53984 1.5354,0.48732 2,0.1797 2,-1.3242 0,-2.08394 4.6227,-3.97312 6.0712,-2.48115 1.2275,1.26439 3.6434,23.84439 2.7962,26.13467 -0.546,1.47588 -2.803,2.66242 -8.0195,4.21597 -9.8362,2.92936 -17.2431,6.30761 -21.878,9.9785 l -3.8642,3.06051 -8.8028,-1.62491 c -11.0898,-2.04705 -12.8646,-3.1545 -13.5779,-8.47266 -0.3063,-2.28355 -0.782,-4.37704 -1.0572,-4.6522 -1.4502,-1.45023 -24.526,-4.32368 -34.7628,-4.32877 -10.3284,-0.005 -11.7932,-0.22467 -13.4086,-2.00966 -1.8037,-1.99311 -1.8227,-1.98874 -3.5269,0.81357 -0.9423,1.54961 -3.9365,4.24407 -6.6537,5.98768 -4.2592,2.73313 -5.1801,3.93072 -6.6792,8.68643 -0.9563,3.03392 -1.44005,3.89197 -2.4377,4.46881 0,0 -40.91412,-14.16786 -41.07389,-14.24754 z m 123.87459,-2.20508 v -3.5 h -5.5834 c -6.577,0 -6.813,1.33159 -0.8389,4.73355 5.4219,3.08752 6.4223,2.89537 6.4223,-1.23355 z m -19.0212,-10.817 c 1.4344,-4.48605 1.1392,-5.0017 -2.3608,-4.12326 -2.2507,0.56489 -2.618,1.19141 -2.618,4.46534 0,2.13549 0.549,4.00958 1.25,4.26659 1.6896,0.61952 2.2973,-0.13162 3.7288,-4.60867 z m 2.0212,-10.28999 c 0,-0.76615 -0.675,-1.39301 -1.5,-1.39301 -0.8254,0 -1.5,0.88541 -1.5,1.96862 0,1.33904 0.4797,1.78453 1.5,1.39301 0.825,-0.31658 1.5,-1.20246 1.5,-1.96862 z m -28.0324,-39.73388 c 4.6055,-6.1 4.7781,-6.65913 2.0554,-6.65913 -2.5828,0 -5.3993,-4.34757 -4.6921,-7.24271 0.3033,-1.24151 -0.025,-3.03218 -0.7295,-3.97927 -1.1813,-1.58806 -1.4988,-1.49458 -4.0824,1.20208 -2.614,2.7284 -2.7144,3.13416 -1.5006,6.06433 0.8629,2.08323 0.9573,3.36166 0.2807,3.79793 -0.5611,0.36171 -1.7512,2.08487 -2.6448,3.82926 -1.2299,2.40107 -1.3246,3.27664 -0.3895,3.6039 0.877,0.30694 0.6828,1.05457 -0.6698,2.57838 l -1.905,2.1461 h 5.1226 c 5.0207,0 5.2028,-0.10623 9.155,-5.34087 z m -13.9455,-8.22613 c 0.6474,-1.96185 0.963,-3.78114 0.7013,-4.04286 -0.2617,-0.26172 -2.1065,0.30178 -4.0996,1.25222 -2.6238,1.25116 -3.6238,2.3669 -3.6238,4.04286 0,1.89167 0.5341,2.31478 2.9224,2.31478 2.4637,0 3.1072,-0.55991 4.0997,-3.567 z"
|
|
77
|
+
id="path27310"
|
|
78
|
+
sodipodi:nodetypes="ccsssscssssscsssscscsscccsscsssssssssssssssssssscssssssscsscsssssccscssssssssssssssssssssssscssssssss" />
|
|
79
|
+
<path
|
|
80
|
+
style="opacity:0.981538;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
|
|
81
|
+
d="M 694.94476,430.8164 821.01494,386.8637 V 517.73109 L 694.94476,562.14671 Z"
|
|
82
|
+
id="path6595"
|
|
83
|
+
sodipodi:nodetypes="ccccc" />
|
|
84
|
+
<path
|
|
85
|
+
style="opacity:0.981538;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
|
|
86
|
+
d="M 566.01486,387.20932 694.94478,430.59181 622.99696,455.81278 494.06708,411.7362 Z"
|
|
87
|
+
id="path26550"
|
|
88
|
+
sodipodi:nodetypes="ccccc" />
|
|
89
|
+
<path
|
|
90
|
+
style="opacity:0.981538;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
|
|
91
|
+
d="M 821.01494,386.8637 694.437,430.5583 767.10153,455.00854 893.17173,411.1431 Z"
|
|
92
|
+
id="path27292"
|
|
93
|
+
sodipodi:nodetypes="ccccc" />
|
|
94
|
+
</g>
|
|
95
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
|
|
2
|
+
<path
|
|
3
|
+
d="M410.3 231l11.3-11.3-33.9-33.9-62.1-62.1L291.7 89.8l-11.3 11.3-22.6 22.6L58.6 322.9c-10.4 10.4-18 23.3-22.2 37.4L1 480.7c-2.5 8.4-.2 17.5 6.1 23.7s15.3 8.5 23.7 6.1l120.3-35.4c14.1-4.2 27-11.8 37.4-22.2L387.7 253.7 410.3 231zM160 399.4l-9.1 22.7c-4 3.1-8.5 5.4-13.3 6.9L59.4 452l23-78.1c1.4-4.9 3.8-9.4 6.9-13.3l22.7-9.1 0 32c0 8.8 7.2 16 16 16l32 0zM362.7 18.7L348.3 33.2 325.7 55.8 314.3 67.1l33.9 33.9 62.1 62.1 33.9 33.9 11.3-11.3 22.6-22.6 14.5-14.5c25-25 25-65.5 0-90.5L453.3 18.7c-25-25-65.5-25-90.5 0zm-47.4 168l-144 144c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6l144-144c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6z"
|
|
4
|
+
fill="#616161"
|
|
5
|
+
class="jp-icon3"
|
|
6
|
+
/>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
.jgis-identify-wrapper {
|
|
2
|
+
display: flex;
|
|
3
|
+
flex-direction: column;
|
|
4
|
+
gap: 1rem;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.jgis-identify-card {
|
|
8
|
+
display: flex;
|
|
9
|
+
flex-direction: column;
|
|
10
|
+
gap: 0.5rem;
|
|
11
|
+
padding: 0 0.5rem;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.jgis-identify-card-header {
|
|
15
|
+
display: flex;
|
|
16
|
+
align-items: center;
|
|
17
|
+
justify-content: space-between;
|
|
18
|
+
font-weight: bold;
|
|
19
|
+
font-size: var(--jp-ui-font-size1);
|
|
20
|
+
cursor: pointer;
|
|
21
|
+
line-height: 1.5rem;
|
|
22
|
+
flex-grow: 1;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.jgis-identify-card-header-actions {
|
|
26
|
+
display: flex;
|
|
27
|
+
align-items: center;
|
|
28
|
+
gap: 0.25rem;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.jgis-identify-content {
|
|
32
|
+
display: flex;
|
|
33
|
+
flex-direction: column;
|
|
34
|
+
padding: 0.5rem 0.5rem 0 0.5rem;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.jgis-identify-row {
|
|
38
|
+
display: flex;
|
|
39
|
+
align-items: center;
|
|
40
|
+
gap: 0.25rem;
|
|
41
|
+
padding: 0.25rem 0.375rem;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.jgis-identify-property-rows > .jgis-identify-row:nth-child(odd) {
|
|
45
|
+
background-color: var(--jp-layout-color1);
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.jgis-identify-property-rows > .jgis-identify-row:nth-child(even) {
|
|
49
|
+
background-color: var(--jp-layout-color0);
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.jgis-identify-property-rows > .jgis-identify-row:first-child {
|
|
53
|
+
border-top-left-radius: var(--jp-border-radius);
|
|
54
|
+
border-top-right-radius: var(--jp-border-radius);
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.jgis-identify-property-rows > .jgis-identify-row:last-child {
|
|
58
|
+
border-bottom-left-radius: var(--jp-border-radius);
|
|
59
|
+
border-bottom-right-radius: var(--jp-border-radius);
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.jgis-identify-row-add {
|
|
63
|
+
justify-content: flex-end;
|
|
64
|
+
padding-right: 0;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.jgis-identify-row-editor {
|
|
68
|
+
align-items: center;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.jgis-identify-col-key {
|
|
72
|
+
flex: 0 0 clamp(7rem, 30%, 12rem);
|
|
73
|
+
min-width: 0;
|
|
74
|
+
max-width: clamp(7rem, 30%, 12rem);
|
|
75
|
+
overflow: hidden;
|
|
76
|
+
text-overflow: ellipsis;
|
|
77
|
+
white-space: nowrap;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.jgis-identify-col-value {
|
|
81
|
+
flex: 1 1 auto;
|
|
82
|
+
min-width: 0;
|
|
83
|
+
max-width: 100%;
|
|
84
|
+
overflow-wrap: anywhere;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.jgis-identify-col-actions {
|
|
88
|
+
display: inline-flex;
|
|
89
|
+
flex: 0 0 auto;
|
|
90
|
+
align-self: center;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.jgis-identify-add-button {
|
|
94
|
+
justify-content: center;
|
|
95
|
+
}
|
package/style/layerBrowser.css
CHANGED
|
@@ -9,6 +9,16 @@
|
|
|
9
9
|
max-height: 100%;
|
|
10
10
|
}
|
|
11
11
|
|
|
12
|
+
@media (max-width: 768px) {
|
|
13
|
+
.jGIS-layerbrowser-FormDialog .jp-Dialog-content {
|
|
14
|
+
width: 100%;
|
|
15
|
+
height: 100%;
|
|
16
|
+
margin: 0;
|
|
17
|
+
border-radius: 0;
|
|
18
|
+
padding: 0;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
12
22
|
.jGIS-layerbrowser-FormDialog form {
|
|
13
23
|
padding: 10px;
|
|
14
24
|
}
|
|
@@ -87,6 +97,24 @@
|
|
|
87
97
|
}
|
|
88
98
|
}
|
|
89
99
|
|
|
100
|
+
@media (max-width: 768px) {
|
|
101
|
+
.jGIS-layer-browser-grid {
|
|
102
|
+
grid-template-columns: repeat(2, minmax(0px, 1fr));
|
|
103
|
+
padding: 0.5rem;
|
|
104
|
+
gap: 0.5rem;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.jGIS-layer-browser-header {
|
|
108
|
+
padding: 0.5rem;
|
|
109
|
+
gap: 8px;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.jGIS-layer-browser-categories {
|
|
113
|
+
padding: 0 0.5rem;
|
|
114
|
+
gap: 1rem;
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
|
|
90
118
|
.jGIS-layer-browser-categories {
|
|
91
119
|
display: flex;
|
|
92
120
|
gap: 2rem;
|
package/style/leftPanel.css
CHANGED
|
@@ -146,6 +146,31 @@ li .lm-Menu-itemLabel {
|
|
|
146
146
|
text-transform: capitalize;
|
|
147
147
|
}
|
|
148
148
|
|
|
149
|
+
/* "More options" (⋮) button — hidden by default, shown on hover or on touch devices */
|
|
150
|
+
.jp-gis-layer-more-btn {
|
|
151
|
+
opacity: 0;
|
|
152
|
+
pointer-events: none;
|
|
153
|
+
flex-shrink: 0;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.jp-gis-layerItem .jp-gis-layer-more-btn,
|
|
157
|
+
.jp-gis-layerGroupHeader .jp-gis-layer-more-btn {
|
|
158
|
+
margin-right: 6px;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.jp-gis-layerItem:hover .jp-gis-layer-more-btn,
|
|
162
|
+
.jp-gis-layerGroupHeader:hover .jp-gis-layer-more-btn {
|
|
163
|
+
opacity: 1;
|
|
164
|
+
pointer-events: auto;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
@media (pointer: coarse) {
|
|
168
|
+
.jp-gis-layer-more-btn {
|
|
169
|
+
opacity: 1;
|
|
170
|
+
pointer-events: auto;
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
|
|
149
174
|
#jp-drag-indicator {
|
|
150
175
|
top: calc(-1 * var(--jp-border-width) + 1px);
|
|
151
176
|
left: calc(-1 * var(--jp-border-width));
|
package/style/shared/button.css
CHANGED
|
@@ -155,3 +155,15 @@
|
|
|
155
155
|
height: 1rem;
|
|
156
156
|
width: 1rem;
|
|
157
157
|
}
|
|
158
|
+
|
|
159
|
+
.jgis-button[data-size='icon-md'] {
|
|
160
|
+
height: 1.5rem;
|
|
161
|
+
width: 1.5rem;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.jgis-button[data-variant='icon'] > svg,
|
|
165
|
+
.jgis-button[data-variant='icon'] > [data-icon] {
|
|
166
|
+
height: 1rem;
|
|
167
|
+
width: 1rem;
|
|
168
|
+
flex-shrink: 0;
|
|
169
|
+
}
|
|
@@ -126,6 +126,15 @@
|
|
|
126
126
|
opacity: 0.5;
|
|
127
127
|
}
|
|
128
128
|
|
|
129
|
+
.jgis-dropdown-menu-item[data-variant='destructive'] {
|
|
130
|
+
color: var(--jp-error-color1);
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.jgis-dropdown-menu-item[data-variant='destructive']:focus {
|
|
134
|
+
background-color: color-mix(in srgb, var(--jp-error-color1) 20%, transparent);
|
|
135
|
+
color: var(--jp-ui-font-color0);
|
|
136
|
+
}
|
|
137
|
+
|
|
129
138
|
.jgis-dropdown-menu-checkbox-item {
|
|
130
139
|
position: relative;
|
|
131
140
|
display: flex;
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
.jgis-native-select {
|
|
2
|
+
position: relative;
|
|
3
|
+
width: fit-content;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.jgis-native-select:has(select:disabled) {
|
|
7
|
+
opacity: 0.5;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
[data-slot='native-select'] {
|
|
11
|
+
box-sizing: border-box;
|
|
12
|
+
height: 2rem;
|
|
13
|
+
width: 100%;
|
|
14
|
+
min-width: 0;
|
|
15
|
+
appearance: none;
|
|
16
|
+
border-radius: var(--jp-border-radius, 0.375rem);
|
|
17
|
+
border: 1px solid var(--jp-border-color1);
|
|
18
|
+
background-color: transparent;
|
|
19
|
+
padding: 0.25rem 2rem 0.25rem 0.625rem;
|
|
20
|
+
font-size: 0.875rem;
|
|
21
|
+
color: var(--jp-ui-font-color1);
|
|
22
|
+
transition:
|
|
23
|
+
color 0.15s ease-in-out,
|
|
24
|
+
border-color 0.15s ease-in-out,
|
|
25
|
+
box-shadow 0.15s ease-in-out;
|
|
26
|
+
outline: none;
|
|
27
|
+
user-select: none;
|
|
28
|
+
cursor: pointer;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
[data-slot='native-select']::selection {
|
|
32
|
+
background-color: var(--jp-brand-color1);
|
|
33
|
+
color: var(--jp-ui-inverse-font-color1);
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
[data-slot='native-select']:focus-visible {
|
|
37
|
+
border-color: var(--jp-brand-color1);
|
|
38
|
+
box-shadow: 0 0 0 3px rgba(var(--jp-brand-color1-rgb), 0.1);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
[data-slot='native-select'][aria-invalid='true'] {
|
|
42
|
+
border-color: var(--jp-error-color1);
|
|
43
|
+
box-shadow: 0 0 0 3px rgba(var(--jp-error-color1-rgb), 0.2);
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
[data-slot='native-select']:disabled {
|
|
47
|
+
pointer-events: none;
|
|
48
|
+
cursor: not-allowed;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
[data-slot='native-select'][data-size='sm'] {
|
|
52
|
+
height: 1.75rem;
|
|
53
|
+
padding-top: 0.125rem;
|
|
54
|
+
padding-bottom: 0.125rem;
|
|
55
|
+
border-radius: min(var(--jp-border-radius, 0.375rem), 10px);
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.jgis-native-select-icon {
|
|
59
|
+
pointer-events: none;
|
|
60
|
+
position: absolute;
|
|
61
|
+
top: 50%;
|
|
62
|
+
right: 0.625rem;
|
|
63
|
+
width: 1rem;
|
|
64
|
+
height: 1rem;
|
|
65
|
+
transform: translateY(-50%);
|
|
66
|
+
color: var(--jp-ui-font-color2);
|
|
67
|
+
user-select: none;
|
|
68
|
+
flex-shrink: 0;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
[data-slot='native-select-option'],
|
|
72
|
+
[data-slot='native-select-optgroup'] {
|
|
73
|
+
background: Canvas;
|
|
74
|
+
color: CanvasText;
|
|
75
|
+
}
|
package/style/shared/tabs.css
CHANGED
package/style/storyPanel.css
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
.jgis-story-viewer-panel {
|
|
2
2
|
padding: 1rem;
|
|
3
|
-
padding-right: 0;
|
|
4
3
|
overflow: auto;
|
|
5
4
|
position: relative;
|
|
6
5
|
}
|
|
@@ -11,6 +10,10 @@
|
|
|
11
10
|
/* animation-duration is set dynamically via inline style from segment.transition.time */
|
|
12
11
|
}
|
|
13
12
|
|
|
13
|
+
.jgis-story-segment-container--no-segment-animation {
|
|
14
|
+
animation: none;
|
|
15
|
+
}
|
|
16
|
+
|
|
14
17
|
@keyframes fadeIn {
|
|
15
18
|
from {
|
|
16
19
|
opacity: 0;
|
|
@@ -128,9 +131,6 @@
|
|
|
128
131
|
margin: 0 auto;
|
|
129
132
|
}
|
|
130
133
|
|
|
131
|
-
.jgis-story-viewer-content {
|
|
132
|
-
}
|
|
133
|
-
|
|
134
134
|
.jgis-story-viewer-content p,
|
|
135
135
|
.jgis-story-viewer-content span,
|
|
136
136
|
.jgis-story-viewer-content li {
|
|
@@ -172,16 +172,16 @@
|
|
|
172
172
|
overflow: auto;
|
|
173
173
|
background: linear-gradient(
|
|
174
174
|
to left,
|
|
175
|
-
var(--jgis-specta-
|
|
175
|
+
var(--jgis-specta-panel-color, var(--jp-layout-color0)) 49%,
|
|
176
176
|
color-mix(
|
|
177
177
|
in srgb,
|
|
178
|
-
var(--jgis-specta-
|
|
178
|
+
var(--jgis-specta-panel-color, var(--jp-layout-color0)) 60%,
|
|
179
179
|
transparent
|
|
180
180
|
)
|
|
181
181
|
65%,
|
|
182
182
|
color-mix(
|
|
183
183
|
in srgb,
|
|
184
|
-
var(--jgis-specta-
|
|
184
|
+
var(--jgis-specta-panel-color, var(--jp-layout-color0)) 50%,
|
|
185
185
|
transparent
|
|
186
186
|
)
|
|
187
187
|
70%,
|
|
@@ -195,13 +195,144 @@
|
|
|
195
195
|
width: 45%;
|
|
196
196
|
align-items: center;
|
|
197
197
|
font-size: var(--jp-ui-font-size3);
|
|
198
|
-
padding-right:
|
|
198
|
+
padding-right: 0.7rem;
|
|
199
199
|
color: var(--jgis-specta-text-color, var(--jp-ui-font-color1));
|
|
200
|
-
background-color: var(--jgis-specta-
|
|
200
|
+
background-color: var(--jgis-specta-panel-color, var(--jp-layout-color0));
|
|
201
201
|
overflow-y: auto;
|
|
202
202
|
max-height: 100%;
|
|
203
203
|
}
|
|
204
204
|
|
|
205
|
+
.jgis-story-viewer-panel-specta-mod.jgis-story-viewer-panel-specta-mod-vertical-scroll {
|
|
206
|
+
align-items: flex-start;
|
|
207
|
+
-webkit-overflow-scrolling: touch;
|
|
208
|
+
overscroll-behavior: contain;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
.jgis-story-stage-overlay {
|
|
212
|
+
position: absolute;
|
|
213
|
+
inset: 0;
|
|
214
|
+
z-index: 5;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.jgis-story-stage-overlay--sized {
|
|
218
|
+
bottom: auto;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.jgis-story-stage-overlay--transitioning {
|
|
222
|
+
overflow: hidden;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
.jgis-story-segment-transition-stack {
|
|
226
|
+
position: absolute;
|
|
227
|
+
left: 0;
|
|
228
|
+
right: 0;
|
|
229
|
+
top: 0;
|
|
230
|
+
display: flex;
|
|
231
|
+
flex-direction: column;
|
|
232
|
+
transform: translateY(
|
|
233
|
+
calc(
|
|
234
|
+
var(--jgis-segment-transition-progress, 0) * -1 *
|
|
235
|
+
var(--jgis-transition-translate, var(--jgis-handoff-gap-height, 100%))
|
|
236
|
+
)
|
|
237
|
+
);
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.jgis-story-segment-transition-gap {
|
|
241
|
+
flex-shrink: 0;
|
|
242
|
+
height: var(--jgis-handoff-gap-height, 100%);
|
|
243
|
+
width: 100%;
|
|
244
|
+
pointer-events: none;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
.jgis-story-segment-transition-stack .jgis-story-segment-overlay-pane {
|
|
248
|
+
position: relative;
|
|
249
|
+
flex-shrink: 0;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.jgis-story-stage-overlay-content {
|
|
253
|
+
max-width: 60rem;
|
|
254
|
+
background-color: var(--jgis-specta-bg-color, var(--jp-layout-color0));
|
|
255
|
+
margin: 0 auto;
|
|
256
|
+
padding: 1rem;
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
.jgis-story-segment-overlay-pane {
|
|
260
|
+
position: absolute;
|
|
261
|
+
left: 0;
|
|
262
|
+
right: 0;
|
|
263
|
+
overflow: hidden;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
.jgis-story-markdown-scroll-pane {
|
|
267
|
+
top: 0;
|
|
268
|
+
height: auto;
|
|
269
|
+
box-sizing: border-box;
|
|
270
|
+
background-color: var(--jgis-specta-bg-color, var(--jp-layout-color0));
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
.jgis-story-segment-transition-stack .jgis-story-map-scroll-pane {
|
|
274
|
+
height: var(--jgis-handoff-gap-height, 100%);
|
|
275
|
+
min-height: var(--jgis-handoff-gap-height, 100%);
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
.jgis-story-map-scroll-pane {
|
|
279
|
+
top: 0;
|
|
280
|
+
height: 100%;
|
|
281
|
+
max-height: 100%;
|
|
282
|
+
display: flex;
|
|
283
|
+
flex-direction: column;
|
|
284
|
+
justify-content: space-evenly;
|
|
285
|
+
box-sizing: border-box;
|
|
286
|
+
background-color: transparent;
|
|
287
|
+
align-items: flex-end;
|
|
288
|
+
padding-right: 1rem;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
.jgis-story-map-overlay-content {
|
|
292
|
+
width: 25%;
|
|
293
|
+
max-width: 30rem;
|
|
294
|
+
max-height: 100%;
|
|
295
|
+
overflow: auto;
|
|
296
|
+
padding: 0.75rem;
|
|
297
|
+
box-sizing: border-box;
|
|
298
|
+
border-radius: 8px;
|
|
299
|
+
background-color: var(--jgis-specta-bg-color, var(--jp-layout-color0));
|
|
300
|
+
box-shadow:
|
|
301
|
+
0 1px 2px rgba(0, 0, 0, 0.06),
|
|
302
|
+
0 4px 12px rgba(0, 0, 0, 0.1),
|
|
303
|
+
0 12px 28px rgba(0, 0, 0, 0.08);
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
.jgis-story-segment-overlay-pane.jgis-story-markdown-scroll-pane:not(
|
|
307
|
+
.jgis-story-markdown-scroll-pane--measure
|
|
308
|
+
)
|
|
309
|
+
.jgis-story-stage-overlay-content {
|
|
310
|
+
box-sizing: border-box;
|
|
311
|
+
overflow: auto;
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
.jgis-story-markdown-measure-host {
|
|
315
|
+
position: absolute;
|
|
316
|
+
top: 0;
|
|
317
|
+
left: 0;
|
|
318
|
+
right: 0;
|
|
319
|
+
visibility: hidden;
|
|
320
|
+
pointer-events: none;
|
|
321
|
+
z-index: -1;
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
.jgis-story-markdown-scroll-pane--measure {
|
|
325
|
+
position: relative;
|
|
326
|
+
height: auto;
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
.jgis-story-virtual-track {
|
|
330
|
+
box-sizing: border-box;
|
|
331
|
+
width: 100%;
|
|
332
|
+
flex-shrink: 0;
|
|
333
|
+
pointer-events: none;
|
|
334
|
+
}
|
|
335
|
+
|
|
205
336
|
.jGIS-property-panel
|
|
206
337
|
.jp-FormGroup-content
|
|
207
338
|
fieldset
|