@jupytergis/base 0.15.0 → 0.16.0-alpha.1
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 -48
- package/lib/commands/operationCommands.js +2 -2
- package/lib/constants.js +9 -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/{formbuilder/objectform/layer/heatmapLayerForm.d.ts → features/layers/forms/layer/geoTiffLayerForm.d.ts} +1 -1
- package/lib/{formbuilder/objectform/layer/webGlLayerForm.js → features/layers/forms/layer/geoTiffLayerForm.js} +5 -5
- package/lib/{formbuilder/objectform → features/layers/forms}/layer/hillshadeLayerForm.js +4 -4
- package/lib/{formbuilder/objectform → features/layers/forms}/layer/index.d.ts +1 -2
- package/lib/{formbuilder/objectform → features/layers/forms}/layer/index.js +1 -2
- 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 +316 -0
- 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 +520 -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 +4 -3
- 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/StopContainer.js +1 -1
- 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 +14 -2
- 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 +487 -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 +24 -0
- package/lib/features/layers/symbology/styleBuilder.js +158 -0
- package/lib/{dialogs → features/layers}/symbology/symbologyDialog.d.ts +1 -1
- package/lib/{dialogs → features/layers}/symbology/symbologyDialog.js +11 -13
- 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 +11 -0
- package/lib/features/story/components/ListStoryStageOverlay.js +150 -0
- package/lib/features/story/components/ListStoryTitleBar.d.ts +7 -0
- package/lib/features/story/components/ListStoryTitleBar.js +20 -0
- package/lib/features/story/components/ListStoryTitleBarDesktop.d.ts +2 -0
- package/lib/features/story/components/ListStoryTitleBarDesktop.js +55 -0
- package/lib/features/story/components/ListStoryTitleBarMobile.d.ts +2 -0
- package/lib/features/story/components/ListStoryTitleBarMobile.js +41 -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/features/story/components/SpectaMobileListModeContent.d.ts +13 -0
- package/lib/features/story/components/SpectaMobileListModeContent.js +36 -0
- package/lib/features/story/components/SpectaMobileSingleModeContent.d.ts +14 -0
- package/lib/{panelview/story-maps/components/SpectaMobileView.js → features/story/components/SpectaMobileSingleModeContent.js} +4 -6
- package/lib/{panelview/story-maps → features/story}/components/SpectaMobileView.d.ts +5 -3
- package/lib/features/story/components/SpectaMobileView.js +12 -0
- 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 +19 -0
- package/lib/features/story/context/ListStoryScrollTrackContext.js +186 -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 +21 -60
- 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 +43 -0
- package/lib/features/story/types/types.js +1 -0
- package/lib/features/story/utils/computeListStoryScrollState.d.ts +14 -0
- package/lib/features/story/utils/computeListStoryScrollState.js +79 -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/components/MainViewMapSurface.d.ts +15 -0
- package/lib/mainview/components/MainViewMapSurface.js +13 -0
- package/lib/mainview/components/MainViewOverlayLayer.d.ts +9 -0
- package/lib/mainview/components/MainViewOverlayLayer.js +11 -0
- package/lib/mainview/components/MainViewSidePanels.d.ts +17 -0
- package/lib/mainview/components/MainViewSidePanels.js +10 -0
- package/lib/mainview/components/MainViewSpectaPanel.d.ts +17 -0
- package/lib/mainview/components/MainViewSpectaPanel.js +8 -0
- package/lib/mainview/components/MainViewStoryStage.d.ts +13 -0
- package/lib/mainview/components/MainViewStoryStage.js +17 -0
- package/lib/mainview/components/PositionedFloater.d.ts +10 -0
- package/lib/mainview/components/PositionedFloater.js +7 -0
- package/lib/mainview/geoJsonFeaturePatch.d.ts +9 -0
- package/lib/mainview/geoJsonFeaturePatch.js +43 -0
- package/lib/mainview/mainView.d.ts +93 -14
- package/lib/mainview/mainView.js +1216 -686
- 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 -7
- 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 -2
- 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 +124 -2
- 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 +29 -1
- 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 +330 -9
- package/style/storySpectaArticleOverlay.css +129 -0
- package/style/symbologyDialog.css +522 -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/Heatmap.d.ts +0 -4
- package/lib/dialogs/symbology/vector_layer/types/Heatmap.js +0 -89
- 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/heatmapLayerForm.js +0 -96
- 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/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/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
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,300 @@
|
|
|
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-mainview-stage {
|
|
212
|
+
--jgis-story-title-bar-height: 2.5rem;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.jgis-story-title-bar {
|
|
216
|
+
height: var(--jgis-story-title-bar-height);
|
|
217
|
+
position: relative;
|
|
218
|
+
z-index: 50;
|
|
219
|
+
display: flex;
|
|
220
|
+
justify-content: space-around;
|
|
221
|
+
align-items: center;
|
|
222
|
+
gap: 0.25rem;
|
|
223
|
+
padding: 0 0.75rem;
|
|
224
|
+
box-sizing: border-box;
|
|
225
|
+
background-color: color-mix(in srgb, var(--jp-layout-color1), transparent 8%);
|
|
226
|
+
pointer-events: auto;
|
|
227
|
+
min-width: 0;
|
|
228
|
+
overflow: hidden;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
.jgis-story-title-bar-scroll-btn,
|
|
232
|
+
.jgis-story-title-bar-menu-btn {
|
|
233
|
+
flex-shrink: 0;
|
|
234
|
+
min-width: 2rem;
|
|
235
|
+
padding-left: 0.5rem;
|
|
236
|
+
padding-right: 0.5rem;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
.jgis-story-title-bar--mobile {
|
|
240
|
+
justify-content: flex-start;
|
|
241
|
+
padding: 0.5rem 0;
|
|
242
|
+
overflow: visible;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.jgis-story-title-bar--mobile .jgis-story-title-bar-menu-btn {
|
|
246
|
+
position: relative;
|
|
247
|
+
z-index: 1;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
.jgis-story-title-bar-active-segment {
|
|
251
|
+
position: absolute;
|
|
252
|
+
left: 50%;
|
|
253
|
+
transform: translate(-50%, 0);
|
|
254
|
+
max-width: calc(100% - 4rem);
|
|
255
|
+
overflow: hidden;
|
|
256
|
+
text-overflow: ellipsis;
|
|
257
|
+
white-space: nowrap;
|
|
258
|
+
text-align: center;
|
|
259
|
+
pointer-events: none;
|
|
260
|
+
opacity: 1;
|
|
261
|
+
font-weight: bold;
|
|
262
|
+
margin-top: 3px;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
.jgis-story-title-bar-active-segment[data-slide-direction] {
|
|
266
|
+
animation: jgis-story-title-bar-active-segment-enter 0.5s ease-out both;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
.jgis-story-title-bar-active-segment[data-slide-direction='next'] {
|
|
270
|
+
--jgis-story-title-bar-slide-offset: 0.35rem;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
.jgis-story-title-bar-active-segment[data-slide-direction='prev'] {
|
|
274
|
+
--jgis-story-title-bar-slide-offset: -0.35rem;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
@keyframes jgis-story-title-bar-active-segment-enter {
|
|
278
|
+
from {
|
|
279
|
+
opacity: 0;
|
|
280
|
+
transform: translate(-50%, var(--jgis-story-title-bar-slide-offset));
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
to {
|
|
284
|
+
opacity: 1;
|
|
285
|
+
transform: translate(-50%, 0);
|
|
286
|
+
}
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
.jgis-story-title-bar-segments {
|
|
290
|
+
display: flex;
|
|
291
|
+
flex-wrap: nowrap;
|
|
292
|
+
gap: 1.5rem;
|
|
293
|
+
margin-top: 3px;
|
|
294
|
+
min-width: 0;
|
|
295
|
+
-webkit-overflow-scrolling: touch;
|
|
296
|
+
overscroll-behavior-x: contain;
|
|
297
|
+
touch-action: pan-x;
|
|
298
|
+
scrollbar-width: none;
|
|
299
|
+
overflow-x: auto;
|
|
300
|
+
overflow-y: hidden;
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
.jgis-story-title-bar-label {
|
|
304
|
+
position: relative;
|
|
305
|
+
opacity: 0.7;
|
|
306
|
+
padding: 0.25rem 0;
|
|
307
|
+
cursor: pointer;
|
|
308
|
+
text-decoration: none;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
.jgis-story-title-bar-active-segment::after,
|
|
312
|
+
.jgis-story-title-bar-label::after {
|
|
313
|
+
content: '';
|
|
314
|
+
position: absolute;
|
|
315
|
+
bottom: -2px;
|
|
316
|
+
left: 0;
|
|
317
|
+
width: 0;
|
|
318
|
+
height: 3px;
|
|
319
|
+
transition:
|
|
320
|
+
background-color 300ms ease-in,
|
|
321
|
+
width 300ms ease-in,
|
|
322
|
+
opacity 300ms ease-in;
|
|
323
|
+
background-color: transparent;
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
.jgis-story-title-bar-active-segment[data-state='active']::after,
|
|
327
|
+
.jgis-story-title-bar-label[data-state='active']::after {
|
|
328
|
+
width: 100%;
|
|
329
|
+
background-color: var(--jp-inverse-layout-color2);
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
.jgis-story-title-bar-label[data-state='active'] {
|
|
333
|
+
opacity: 1;
|
|
334
|
+
font-weight: bold;
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
.jgis-story-title-bar-segment {
|
|
338
|
+
flex-shrink: 0;
|
|
339
|
+
white-space: nowrap;
|
|
340
|
+
border: none;
|
|
341
|
+
background: transparent;
|
|
342
|
+
font: inherit;
|
|
343
|
+
color: inherit;
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
.jgis-popover-content.jgis-story-title-bar-segment-menu {
|
|
347
|
+
display: flex;
|
|
348
|
+
flex-direction: column;
|
|
349
|
+
gap: 0.25rem;
|
|
350
|
+
min-width: 12rem;
|
|
351
|
+
max-height: 16rem;
|
|
352
|
+
overflow-y: auto;
|
|
353
|
+
padding: 0.5rem;
|
|
354
|
+
width: calc(var(--radix-popper-available-width) - 1rem);
|
|
355
|
+
margin: 0 0.5rem;
|
|
356
|
+
box-sizing: border-box;
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
.jgis-story-title-bar-segment-menu-item {
|
|
360
|
+
width: 100%;
|
|
361
|
+
border: none;
|
|
362
|
+
background: transparent;
|
|
363
|
+
font: inherit;
|
|
364
|
+
color: inherit;
|
|
365
|
+
cursor: pointer;
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
.jgis-story-stage-overlay {
|
|
369
|
+
position: absolute;
|
|
370
|
+
inset: 0;
|
|
371
|
+
top: var(--jgis-story-title-bar-height);
|
|
372
|
+
z-index: 5;
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
.jgis-story-stage-overlay--sized {
|
|
376
|
+
bottom: auto;
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
.jgis-story-stage-overlay--transitioning {
|
|
380
|
+
overflow: hidden;
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
.jgis-story-segment-transition-stack {
|
|
384
|
+
position: absolute;
|
|
385
|
+
left: 0;
|
|
386
|
+
right: 0;
|
|
387
|
+
top: 0;
|
|
388
|
+
display: flex;
|
|
389
|
+
flex-direction: column;
|
|
390
|
+
transform: translateY(
|
|
391
|
+
calc(
|
|
392
|
+
var(--jgis-segment-transition-progress, 0) * -1 *
|
|
393
|
+
var(--jgis-transition-translate, var(--jgis-handoff-gap-height, 100%))
|
|
394
|
+
)
|
|
395
|
+
);
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
.jgis-story-segment-transition-gap {
|
|
399
|
+
flex-shrink: 0;
|
|
400
|
+
height: var(--jgis-handoff-gap-height, 100%);
|
|
401
|
+
width: 100%;
|
|
402
|
+
pointer-events: none;
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
.jgis-story-segment-transition-stack .jgis-story-segment-overlay-pane {
|
|
406
|
+
position: relative;
|
|
407
|
+
flex-shrink: 0;
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
.jgis-story-stage-overlay-content {
|
|
411
|
+
max-width: 60rem;
|
|
412
|
+
background-color: var(--jgis-specta-bg-color, var(--jp-layout-color0));
|
|
413
|
+
margin: 0 auto;
|
|
414
|
+
padding: 1rem;
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
.jgis-story-segment-overlay-pane {
|
|
418
|
+
position: absolute;
|
|
419
|
+
left: 0;
|
|
420
|
+
right: 0;
|
|
421
|
+
overflow: hidden;
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
.jgis-story-markdown-scroll-pane {
|
|
425
|
+
top: 0;
|
|
426
|
+
height: auto;
|
|
427
|
+
box-sizing: border-box;
|
|
428
|
+
background-color: var(--jgis-specta-bg-color, var(--jp-layout-color0));
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
.jgis-story-segment-transition-stack .jgis-story-map-scroll-pane {
|
|
432
|
+
height: var(--jgis-handoff-gap-height, 100%);
|
|
433
|
+
min-height: var(--jgis-handoff-gap-height, 100%);
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
.jgis-story-map-scroll-pane {
|
|
437
|
+
top: 0;
|
|
438
|
+
height: 100%;
|
|
439
|
+
max-height: 100%;
|
|
440
|
+
display: flex;
|
|
441
|
+
flex-direction: column;
|
|
442
|
+
justify-content: space-evenly;
|
|
443
|
+
box-sizing: border-box;
|
|
444
|
+
background-color: transparent;
|
|
445
|
+
align-items: flex-end;
|
|
446
|
+
padding-right: 1rem;
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
.jgis-story-map-overlay-content {
|
|
450
|
+
width: 25%;
|
|
451
|
+
max-height: 100%;
|
|
452
|
+
overflow: auto;
|
|
453
|
+
padding: 0.75rem;
|
|
454
|
+
box-sizing: border-box;
|
|
455
|
+
border-radius: 8px;
|
|
456
|
+
background-color: var(--jgis-specta-bg-color, var(--jp-layout-color0));
|
|
457
|
+
box-shadow:
|
|
458
|
+
0 1px 2px rgba(0, 0, 0, 0.06),
|
|
459
|
+
0 4px 12px rgba(0, 0, 0, 0.1),
|
|
460
|
+
0 12px 28px rgba(0, 0, 0, 0.08);
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
.jgis-story-segment-overlay-pane.jgis-story-markdown-scroll-pane:not(
|
|
464
|
+
.jgis-story-markdown-scroll-pane--measure
|
|
465
|
+
)
|
|
466
|
+
.jgis-story-stage-overlay-content {
|
|
467
|
+
box-sizing: border-box;
|
|
468
|
+
}
|
|
469
|
+
|
|
470
|
+
.jgis-story-markdown-measure-host {
|
|
471
|
+
position: absolute;
|
|
472
|
+
top: 0;
|
|
473
|
+
left: 0;
|
|
474
|
+
right: 0;
|
|
475
|
+
visibility: hidden;
|
|
476
|
+
pointer-events: none;
|
|
477
|
+
z-index: -1;
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
.jgis-story-markdown-scroll-pane--measure {
|
|
481
|
+
position: relative;
|
|
482
|
+
height: auto;
|
|
483
|
+
}
|
|
484
|
+
|
|
485
|
+
.jgis-story-virtual-track {
|
|
486
|
+
box-sizing: border-box;
|
|
487
|
+
width: 100%;
|
|
488
|
+
flex-shrink: 0;
|
|
489
|
+
pointer-events: none;
|
|
490
|
+
}
|
|
491
|
+
|
|
205
492
|
.jGIS-property-panel
|
|
206
493
|
.jp-FormGroup-content
|
|
207
494
|
fieldset
|
|
@@ -221,6 +508,40 @@
|
|
|
221
508
|
right: 0.125rem;
|
|
222
509
|
}
|
|
223
510
|
|
|
511
|
+
/* Full-viewport touch scroll driver; segment UI is on ListStoryStageOverlay. */
|
|
512
|
+
.jgis-story-mobile-list-scroll {
|
|
513
|
+
position: fixed;
|
|
514
|
+
inset: 0;
|
|
515
|
+
top: var(--jgis-story-title-bar-height);
|
|
516
|
+
width: 100%;
|
|
517
|
+
overflow-y: auto;
|
|
518
|
+
-webkit-overflow-scrolling: touch;
|
|
519
|
+
overscroll-behavior: contain;
|
|
520
|
+
touch-action: pan-y;
|
|
521
|
+
background: transparent;
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
/* Mobile list only (scroll driver mounted); desktop list keeps 25% map cards. */
|
|
525
|
+
.jgis-mainview-stage:has(.jgis-story-mobile-list-scroll)
|
|
526
|
+
.jgis-story-map-scroll-pane {
|
|
527
|
+
padding-left: 1rem;
|
|
528
|
+
}
|
|
529
|
+
|
|
530
|
+
.jgis-mainview-stage:has(.jgis-story-mobile-list-scroll)
|
|
531
|
+
.jgis-story-map-overlay-content {
|
|
532
|
+
width: fit-content;
|
|
533
|
+
background-color: color-mix(
|
|
534
|
+
in srgb,
|
|
535
|
+
var(--jgis-specta-bg-color, var(--jp-layout-color0)) 90%,
|
|
536
|
+
transparent
|
|
537
|
+
);
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
.jgis-mainview-stage:has(.jgis-story-mobile-list-scroll)
|
|
541
|
+
.jgis-story-viewer-image-section {
|
|
542
|
+
opacity: 0.9;
|
|
543
|
+
}
|
|
544
|
+
|
|
224
545
|
/* Hierarchy: .form-group > .jp-FormGroup-content > .jp-objectFieldWrapper > #jgis-source-properties-field */
|
|
225
546
|
.form-group:has(
|
|
226
547
|
.jp-FormGroup-content .jp-objectFieldWrapper #jgis-source-properties-field
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
/* Specta article typography for list story stage overlay markdown (subset of specta/style/article.css). */
|
|
2
|
+
|
|
3
|
+
.jgis-story-stage-overlay-content .specta-article-host-widget {
|
|
4
|
+
--jp-content-font-family: 'Source Serif 4', Georgia, serif;
|
|
5
|
+
--jp-code-font-family:
|
|
6
|
+
'Source Code Pro', Menlo, Monaco, 'Courier New', Courier, monospace;
|
|
7
|
+
--jp-code-font-size: 14px;
|
|
8
|
+
font-family: var(--jp-content-font-family);
|
|
9
|
+
font-size: 1rem;
|
|
10
|
+
line-height: 1.6;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.jgis-story-stage-overlay-content .specta-article-host-widget h1 {
|
|
14
|
+
font-family: 'Work Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
|
15
|
+
letter-spacing: -0.014em;
|
|
16
|
+
line-height: 38px;
|
|
17
|
+
margin-bottom: 24px;
|
|
18
|
+
margin-top: 1.5em !important;
|
|
19
|
+
font-size: 32px;
|
|
20
|
+
font-weight: 700;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.jgis-story-stage-overlay-content .specta-article-host-widget h2 {
|
|
24
|
+
font-family: 'Work Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
|
25
|
+
margin-top: 1em !important;
|
|
26
|
+
font-size: 1.6em;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.jgis-story-stage-overlay-content .specta-article-host-widget h3 {
|
|
30
|
+
margin-top: 1em !important;
|
|
31
|
+
font-size: 1.3em;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.jgis-story-stage-overlay-content .specta-article-host-widget h4 {
|
|
35
|
+
margin-top: 1em;
|
|
36
|
+
font-size: 1.2em;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.jgis-story-stage-overlay-content .specta-article-host-widget h5 {
|
|
40
|
+
margin-top: 1em;
|
|
41
|
+
font-size: 1.1em;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.jgis-story-stage-overlay-content .specta-article-host-widget h6 {
|
|
45
|
+
margin-top: 1em;
|
|
46
|
+
font-size: 1em;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.jgis-story-stage-overlay-content .specta-article-host-widget p {
|
|
50
|
+
font-size: 1rem;
|
|
51
|
+
line-height: 1.6;
|
|
52
|
+
margin-bottom: 1.2em;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.jgis-story-stage-overlay-content .specta-article-host-widget a {
|
|
56
|
+
color: #007bff;
|
|
57
|
+
text-decoration: none;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.jgis-story-stage-overlay-content .specta-article-host-widget a:hover {
|
|
61
|
+
text-decoration: underline;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.jgis-story-stage-overlay-content .specta-article-host-widget pre {
|
|
65
|
+
background-color: var(--jp-cell-editor-background) !important;
|
|
66
|
+
padding: 32px !important;
|
|
67
|
+
border-radius: 4px !important;
|
|
68
|
+
border: 1px solid var(--jp-cell-editor-border-color) !important;
|
|
69
|
+
overflow-x: auto;
|
|
70
|
+
margin-top: 56px !important;
|
|
71
|
+
font-size: 0.85em !important;
|
|
72
|
+
line-height: 1.4 !important;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.jgis-story-stage-overlay-content .specta-article-host-widget pre code {
|
|
76
|
+
color: #222;
|
|
77
|
+
background-color: transparent !important;
|
|
78
|
+
padding: 0;
|
|
79
|
+
font-size: 14px !important;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.jgis-story-stage-overlay-content .specta-article-host-widget code {
|
|
83
|
+
background-color: #e9ecef;
|
|
84
|
+
padding: 0.2em 0.4em;
|
|
85
|
+
border-radius: 4px;
|
|
86
|
+
font-size: 14px !important;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.jgis-story-stage-overlay-content .specta-article-host-widget img {
|
|
90
|
+
max-width: 100%;
|
|
91
|
+
height: auto;
|
|
92
|
+
display: block;
|
|
93
|
+
margin: 1.5em auto;
|
|
94
|
+
border-radius: 4px;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.jgis-story-stage-overlay-content .specta-article-host-widget blockquote {
|
|
98
|
+
border-left: 3px solid transparent;
|
|
99
|
+
padding-left: 16px;
|
|
100
|
+
margin: 1.2em 0;
|
|
101
|
+
font-style: italic;
|
|
102
|
+
color: var(--jp-ui-font-color2);
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.jgis-story-stage-overlay-content .specta-article-host-widget ul,
|
|
106
|
+
.jgis-story-stage-overlay-content .specta-article-host-widget ol {
|
|
107
|
+
margin-bottom: 1.2em;
|
|
108
|
+
padding-left: 1.5em;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.jgis-story-stage-overlay-content .specta-article-host-widget li {
|
|
112
|
+
margin-bottom: 0.4em;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.jgis-story-stage-overlay-content
|
|
116
|
+
.specta-article-host-widget
|
|
117
|
+
.jp-MarkdownOutput {
|
|
118
|
+
padding-left: 0 !important;
|
|
119
|
+
padding-right: 0 !important;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.jgis-story-overlay-markdown-plain {
|
|
123
|
+
margin: 0;
|
|
124
|
+
white-space: pre-wrap;
|
|
125
|
+
word-break: break-word;
|
|
126
|
+
font-family: var(--jp-content-font-family, var(--jp-ui-font-family1));
|
|
127
|
+
font-size: 1rem;
|
|
128
|
+
line-height: 1.6;
|
|
129
|
+
}
|