@hisptz/dhis2-analytics 1.0.66 → 2.0.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/dist/components/ChartAnalytics/ChartAnalytics.stories.js +254 -0
- package/dist/components/ChartAnalytics/ChartAnalytics.stories.js.map +1 -0
- package/dist/components/ChartAnalytics/DHIS2Chart.js +36 -0
- package/dist/components/ChartAnalytics/DHIS2Chart.js.map +1 -0
- package/dist/components/ChartAnalytics/components/DownloadMenu/components/Menu.js +52 -0
- package/dist/components/ChartAnalytics/components/DownloadMenu/components/Menu.js.map +1 -0
- package/dist/components/ChartAnalytics/components/DownloadMenu/constants/menu.js +42 -0
- package/dist/components/ChartAnalytics/components/DownloadMenu/constants/menu.js.map +1 -0
- package/dist/components/ChartAnalytics/components/DownloadMenu/index.js +65 -0
- package/dist/components/ChartAnalytics/components/DownloadMenu/index.js.map +1 -0
- package/dist/components/ChartAnalytics/components/DownloadMenu/interfaces/menu.js +3 -0
- package/dist/components/ChartAnalytics/components/DownloadMenu/interfaces/menu.js.map +1 -0
- package/dist/components/ChartAnalytics/hooks/useChart.js +43 -0
- package/dist/components/ChartAnalytics/hooks/useChart.js.map +1 -0
- package/dist/components/ChartAnalytics/index.js +3 -0
- package/dist/components/ChartAnalytics/index.js.map +1 -0
- package/dist/components/ChartAnalytics/models/bar.js +21 -0
- package/dist/components/ChartAnalytics/models/bar.js.map +1 -0
- package/{build/es → dist}/components/ChartAnalytics/models/column.js +12 -9
- package/dist/components/ChartAnalytics/models/column.js.map +1 -0
- package/dist/components/ChartAnalytics/models/index.js +114 -0
- package/dist/components/ChartAnalytics/models/index.js.map +1 -0
- package/{build/es → dist}/components/ChartAnalytics/models/line.js +10 -7
- package/dist/components/ChartAnalytics/models/line.js.map +1 -0
- package/dist/components/ChartAnalytics/models/multi-series.js +112 -0
- package/dist/components/ChartAnalytics/models/multi-series.js.map +1 -0
- package/dist/components/ChartAnalytics/models/pie.js +53 -0
- package/dist/components/ChartAnalytics/models/pie.js.map +1 -0
- package/dist/components/ChartAnalytics/services/export.js +35 -0
- package/dist/components/ChartAnalytics/services/export.js.map +1 -0
- package/dist/components/ChartAnalytics/styles/custom-highchart.css +40 -0
- package/dist/components/ChartAnalytics/styles/custom-highchart.css.map +1 -0
- package/dist/components/ChartAnalytics/types/props.js +3 -0
- package/dist/components/ChartAnalytics/types/props.js.map +1 -0
- package/dist/components/ChartAnalytics/utils/chart.js +130 -0
- package/dist/components/ChartAnalytics/utils/chart.js.map +1 -0
- package/dist/components/CircularProgressDashboard/CircularProgressIndicator.js +66 -0
- package/dist/components/CircularProgressDashboard/CircularProgressIndicator.js.map +1 -0
- package/dist/components/CircularProgressDashboard/CircularProgressIndicator.stories.js +42 -0
- package/dist/components/CircularProgressDashboard/CircularProgressIndicator.stories.js.map +1 -0
- package/dist/components/CircularProgressDashboard/index.js +4 -0
- package/dist/components/CircularProgressDashboard/index.js.map +1 -0
- package/dist/components/CircularProgressDashboard/types/props.js +3 -0
- package/dist/components/CircularProgressDashboard/types/props.js.map +1 -0
- package/dist/components/DHIS2PivotTable/DHIS2PivotTable.js +26 -0
- package/dist/components/DHIS2PivotTable/DHIS2PivotTable.js.map +1 -0
- package/dist/components/DHIS2PivotTable/DHIS2PivotTable.stories.js +30 -0
- package/dist/components/DHIS2PivotTable/DHIS2PivotTable.stories.js.map +1 -0
- package/dist/components/DHIS2PivotTable/components/Table/index.js +10 -0
- package/dist/components/DHIS2PivotTable/components/Table/index.js.map +1 -0
- package/dist/components/DHIS2PivotTable/components/TableBody/TableBody.module.css +11 -0
- package/dist/components/DHIS2PivotTable/components/TableBody/TableBody.module.css.map +1 -0
- package/dist/components/DHIS2PivotTable/components/TableBody/index.js +106 -0
- package/dist/components/DHIS2PivotTable/components/TableBody/index.js.map +1 -0
- package/dist/components/DHIS2PivotTable/components/TableHeaders/TableHeaders.module.css +10 -0
- package/dist/components/DHIS2PivotTable/components/TableHeaders/TableHeaders.module.css.map +1 -0
- package/dist/components/DHIS2PivotTable/components/TableHeaders/index.js +94 -0
- package/dist/components/DHIS2PivotTable/components/TableHeaders/index.js.map +1 -0
- package/dist/components/DHIS2PivotTable/index.js +4 -0
- package/dist/components/DHIS2PivotTable/index.js.map +1 -0
- package/dist/components/DHIS2PivotTable/interfaces/index.js +3 -0
- package/dist/components/DHIS2PivotTable/interfaces/index.js.map +1 -0
- package/dist/components/DHIS2PivotTable/services/engine.js +87 -0
- package/dist/components/DHIS2PivotTable/services/engine.js.map +1 -0
- package/dist/components/DHIS2PivotTable/state/engine.js +17 -0
- package/dist/components/DHIS2PivotTable/state/engine.js.map +1 -0
- package/dist/components/Map/DHIS2Map.js +65 -0
- package/dist/components/Map/DHIS2Map.js.map +1 -0
- package/dist/components/Map/DHIS2Map.stories.js +366 -0
- package/dist/components/Map/DHIS2Map.stories.js.map +1 -0
- package/dist/components/Map/components/EarthEngineLayerConfiguration/EarthEngineLayerConfigModal.js +41 -0
- package/dist/components/Map/components/EarthEngineLayerConfiguration/EarthEngineLayerConfigModal.js.map +1 -0
- package/dist/components/Map/components/EarthEngineLayerConfiguration/EarthEngineLayerConfigModal.stories.js +34 -0
- package/dist/components/Map/components/EarthEngineLayerConfiguration/EarthEngineLayerConfigModal.stories.js.map +1 -0
- package/dist/components/Map/components/EarthEngineLayerConfiguration/EarthEngineLayerConfiguration.js +26 -0
- package/dist/components/Map/components/EarthEngineLayerConfiguration/EarthEngineLayerConfiguration.js.map +1 -0
- package/dist/components/Map/components/EarthEngineLayerConfiguration/EarthEngineLayerConfiguration.stories.js +21 -0
- package/dist/components/Map/components/EarthEngineLayerConfiguration/EarthEngineLayerConfiguration.stories.js.map +1 -0
- package/dist/components/Map/components/EarthEngineLayerConfiguration/components/AggregationSelector.js +67 -0
- package/dist/components/Map/components/EarthEngineLayerConfiguration/components/AggregationSelector.js.map +1 -0
- package/dist/components/Map/components/EarthEngineLayerConfiguration/components/ColorConfig.js +134 -0
- package/dist/components/Map/components/EarthEngineLayerConfiguration/components/ColorConfig.js.map +1 -0
- package/dist/components/Map/components/EarthEngineLayerConfiguration/components/Name.js +44 -0
- package/dist/components/Map/components/EarthEngineLayerConfiguration/components/Name.js.map +1 -0
- package/dist/components/Map/components/EarthEngineLayerConfiguration/components/PeriodSelector.js +67 -0
- package/dist/components/Map/components/EarthEngineLayerConfiguration/components/PeriodSelector.js.map +1 -0
- package/dist/components/Map/components/EarthEngineLayerConfiguration/components/StylesConfig.js +24 -0
- package/dist/components/Map/components/EarthEngineLayerConfiguration/components/StylesConfig.js.map +1 -0
- package/dist/components/Map/components/EarthEngineLayerConfiguration/components/TypeField.js +67 -0
- package/dist/components/Map/components/EarthEngineLayerConfiguration/components/TypeField.js.map +1 -0
- package/dist/components/Map/components/EarthEngineLayerConfiguration/hooks/data.js +45 -0
- package/dist/components/Map/components/EarthEngineLayerConfiguration/hooks/data.js.map +1 -0
- package/dist/components/Map/components/EarthEngineLayerConfiguration/index.js +4 -0
- package/dist/components/Map/components/EarthEngineLayerConfiguration/index.js.map +1 -0
- package/dist/components/Map/components/MapArea/index.js +100 -0
- package/dist/components/Map/components/MapArea/index.js.map +1 -0
- package/dist/components/Map/components/MapArea/interfaces/index.js +3 -0
- package/dist/components/Map/components/MapArea/interfaces/index.js.map +1 -0
- package/dist/components/Map/components/MapControls/components/CustomControl/index.js +16 -0
- package/dist/components/Map/components/MapControls/components/CustomControl/index.js.map +1 -0
- package/dist/components/Map/components/MapControls/components/DownloadControl/index.js +15 -0
- package/dist/components/Map/components/MapControls/components/DownloadControl/index.js.map +1 -0
- package/dist/components/Map/components/MapControls/components/FullscreenControl/index.js +13 -0
- package/dist/components/Map/components/MapControls/components/FullscreenControl/index.js.map +1 -0
- package/dist/components/Map/components/MapControls/index.js +35 -0
- package/dist/components/Map/components/MapControls/index.js.map +1 -0
- package/dist/components/Map/components/MapLayer/components/BoundaryLayer/hooks/useBoundaryData.js +10 -0
- package/dist/components/Map/components/MapLayer/components/BoundaryLayer/hooks/useBoundaryData.js.map +1 -0
- package/dist/components/Map/components/MapLayer/components/BoundaryLayer/index.js +52 -0
- package/dist/components/Map/components/MapLayer/components/BoundaryLayer/index.js.map +1 -0
- package/dist/components/Map/components/MapLayer/components/GoogleEngineLayer/components/EarthEngineLegend.js +100 -0
- package/dist/components/Map/components/MapLayer/components/GoogleEngineLayer/components/EarthEngineLegend.js.map +1 -0
- package/dist/components/Map/components/MapLayer/components/GoogleEngineLayer/constants/index.js +457 -0
- package/dist/components/Map/components/MapLayer/components/GoogleEngineLayer/constants/index.js.map +1 -0
- package/dist/components/Map/components/MapLayer/components/GoogleEngineLayer/hooks/index.js +32 -0
- package/dist/components/Map/components/MapLayer/components/GoogleEngineLayer/hooks/index.js.map +1 -0
- package/dist/components/Map/components/MapLayer/components/GoogleEngineLayer/index.js +197 -0
- package/dist/components/Map/components/MapLayer/components/GoogleEngineLayer/index.js.map +1 -0
- package/dist/components/Map/components/MapLayer/components/GoogleEngineLayer/interfaces/index.js +3 -0
- package/dist/components/Map/components/MapLayer/components/GoogleEngineLayer/interfaces/index.js.map +1 -0
- package/dist/components/Map/components/MapLayer/components/GoogleEngineLayer/services/api.js +31466 -0
- package/dist/components/Map/components/MapLayer/components/GoogleEngineLayer/services/api.js.map +1 -0
- package/{build/es → dist}/components/Map/components/MapLayer/components/GoogleEngineLayer/services/engine.js +106 -146
- package/dist/components/Map/components/MapLayer/components/GoogleEngineLayer/services/engine.js.map +1 -0
- package/dist/components/Map/components/MapLayer/components/GoogleEngineLayer/utils/index.js +93 -0
- package/dist/components/Map/components/MapLayer/components/GoogleEngineLayer/utils/index.js.map +1 -0
- package/dist/components/Map/components/MapLayer/components/LegendArea/LegendArea.module.css +10 -0
- package/dist/components/Map/components/MapLayer/components/LegendArea/LegendArea.module.css.map +1 -0
- package/dist/components/Map/components/MapLayer/components/LegendArea/components/LegendCardHeader/index.js +17 -0
- package/dist/components/Map/components/MapLayer/components/LegendArea/components/LegendCardHeader/index.js.map +1 -0
- package/dist/components/Map/components/MapLayer/components/LegendArea/index.js +179 -0
- package/dist/components/Map/components/MapLayer/components/LegendArea/index.js.map +1 -0
- package/dist/components/Map/components/MapLayer/components/PointLayer/components/PointLegend/index.js +92 -0
- package/dist/components/Map/components/MapLayer/components/PointLayer/components/PointLegend/index.js.map +1 -0
- package/dist/components/Map/components/MapLayer/components/PointLayer/hooks/index.js +11 -0
- package/dist/components/Map/components/MapLayer/components/PointLayer/hooks/index.js.map +1 -0
- package/dist/components/Map/components/MapLayer/components/PointLayer/index.js +48 -0
- package/dist/components/Map/components/MapLayer/components/PointLayer/index.js.map +1 -0
- package/dist/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/components/BubbleLegend/components/Bubble.js +64 -0
- package/dist/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/components/BubbleLegend/components/Bubble.js.map +1 -0
- package/dist/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/components/BubbleLegend/components/Bubbles.js +130 -0
- package/dist/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/components/BubbleLegend/components/Bubbles.js.map +1 -0
- package/dist/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/components/BubbleLegend/index.js +41 -0
- package/dist/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/components/BubbleLegend/index.js.map +1 -0
- package/dist/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/index.js +50 -0
- package/dist/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/index.js.map +1 -0
- package/dist/components/Map/components/MapLayer/components/ThematicLayer/components/Choropleth/components/ChoroplethLegend.js +56 -0
- package/dist/components/Map/components/MapLayer/components/ThematicLayer/components/Choropleth/components/ChoroplethLegend.js.map +1 -0
- package/dist/components/Map/components/MapLayer/components/ThematicLayer/components/Choropleth/index.js +40 -0
- package/dist/components/Map/components/MapLayer/components/ThematicLayer/components/Choropleth/index.js.map +1 -0
- package/dist/components/Map/components/MapLayer/components/ThematicLayer/components/CustomTooltip/index.js +40 -0
- package/dist/components/Map/components/MapLayer/components/ThematicLayer/components/CustomTooltip/index.js.map +1 -0
- package/dist/components/Map/components/MapLayer/components/ThematicLayer/hooks/config.js +12 -0
- package/dist/components/Map/components/MapLayer/components/ThematicLayer/hooks/config.js.map +1 -0
- package/dist/components/Map/components/MapLayer/components/ThematicLayer/index.js +55 -0
- package/dist/components/Map/components/MapLayer/components/ThematicLayer/index.js.map +1 -0
- package/dist/components/Map/components/MapLayer/components/ThematicLayer/styles/legends.css +56 -0
- package/dist/components/Map/components/MapLayer/components/ThematicLayer/styles/legends.css.map +1 -0
- package/dist/components/Map/components/MapLayer/index.js +32 -0
- package/dist/components/Map/components/MapLayer/index.js.map +1 -0
- package/dist/components/Map/components/MapLayer/interfaces/index.js +10 -0
- package/dist/components/Map/components/MapLayer/interfaces/index.js.map +1 -0
- package/dist/components/Map/components/MapProvider/components/MapLayerProvider/hooks/index.js +405 -0
- package/dist/components/Map/components/MapProvider/components/MapLayerProvider/hooks/index.js.map +1 -0
- package/dist/components/Map/components/MapProvider/components/MapLayerProvider/index.js +115 -0
- package/dist/components/Map/components/MapProvider/components/MapLayerProvider/index.js.map +1 -0
- package/dist/components/Map/components/MapProvider/hooks/index.js +16 -0
- package/dist/components/Map/components/MapProvider/hooks/index.js.map +1 -0
- package/dist/components/Map/components/MapProvider/index.js +95 -0
- package/dist/components/Map/components/MapProvider/index.js.map +1 -0
- package/dist/components/Map/components/MapUpdater/index.js +11 -0
- package/dist/components/Map/components/MapUpdater/index.js.map +1 -0
- package/dist/components/Map/components/ThematicLayerConfiguration/ThematicLayerConfigModal.js +41 -0
- package/dist/components/Map/components/ThematicLayerConfiguration/ThematicLayerConfigModal.js.map +1 -0
- package/dist/components/Map/components/ThematicLayerConfiguration/ThematicLayerConfigModal.stories.js +24 -0
- package/dist/components/Map/components/ThematicLayerConfiguration/ThematicLayerConfigModal.stories.js.map +1 -0
- package/dist/components/Map/components/ThematicLayerConfiguration/ThematicLayerConfiguration.js +174 -0
- package/dist/components/Map/components/ThematicLayerConfiguration/ThematicLayerConfiguration.js.map +1 -0
- package/dist/components/Map/components/ThematicLayerConfiguration/ThematicLayerConfiguration.stories.js +21 -0
- package/dist/components/Map/components/ThematicLayerConfiguration/ThematicLayerConfiguration.stories.js.map +1 -0
- package/dist/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/components/ColorScale/index.js +36 -0
- package/dist/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/components/ColorScale/index.js.map +1 -0
- package/{build/es/components/Map → dist/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect}/constants/colors.js +18 -3
- package/dist/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/constants/colors.js.map +1 -0
- package/dist/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/index.js +71 -0
- package/dist/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/index.js.map +1 -0
- package/dist/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/styles/ColorScale.module.css +15 -0
- package/dist/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/styles/ColorScale.module.css.map +1 -0
- package/dist/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/styles/ColorScaleSelect.module.css +12 -0
- package/dist/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/styles/ColorScaleSelect.module.css.map +1 -0
- package/dist/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/utils/colors.js +82 -0
- package/dist/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/utils/colors.js.map +1 -0
- package/dist/components/Map/components/ThematicLayerConfiguration/components/CustomLegend/index.js +57 -0
- package/dist/components/Map/components/ThematicLayerConfiguration/components/CustomLegend/index.js.map +1 -0
- package/dist/components/Map/components/ThematicLayerConfiguration/components/IndicatorSelectorModal/index.js +44 -0
- package/dist/components/Map/components/ThematicLayerConfiguration/components/IndicatorSelectorModal/index.js.map +1 -0
- package/dist/components/Map/components/ThematicLayerConfiguration/components/LegendSetSelector/index.js +60 -0
- package/dist/components/Map/components/ThematicLayerConfiguration/components/LegendSetSelector/index.js.map +1 -0
- package/dist/components/Map/components/ThematicLayerConfiguration/components/RadiusField.js +54 -0
- package/dist/components/Map/components/ThematicLayerConfiguration/components/RadiusField.js.map +1 -0
- package/dist/components/Map/components/ThematicLayerConfiguration/components/TypeField.js +63 -0
- package/dist/components/Map/components/ThematicLayerConfiguration/components/TypeField.js.map +1 -0
- package/dist/components/Map/components/ThematicLayerConfiguration/index.js +5 -0
- package/dist/components/Map/components/ThematicLayerConfiguration/index.js.map +1 -0
- package/dist/components/Map/components/ThematicLayerConfiguration/types/index.js +3 -0
- package/dist/components/Map/components/ThematicLayerConfiguration/types/index.js.map +1 -0
- package/{build/es/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect → dist/components/Map}/constants/colors.js +19 -3
- package/dist/components/Map/constants/colors.js.map +1 -0
- package/dist/components/Map/constants/legendSet.js +23 -0
- package/dist/components/Map/constants/legendSet.js.map +1 -0
- package/dist/components/Map/hooks/map.js +44 -0
- package/dist/components/Map/hooks/map.js.map +1 -0
- package/dist/components/Map/index.js +7 -0
- package/dist/components/Map/index.js.map +1 -0
- package/dist/components/Map/interfaces/index.js +3 -0
- package/dist/components/Map/interfaces/index.js.map +1 -0
- package/dist/components/Map/state/index.js +18 -0
- package/dist/components/Map/state/index.js.map +1 -0
- package/dist/components/Map/utils/colors.js +85 -0
- package/dist/components/Map/utils/colors.js.map +1 -0
- package/dist/components/Map/utils/helpers.js +18 -0
- package/dist/components/Map/utils/helpers.js.map +1 -0
- package/dist/components/Map/utils/map.js +138 -0
- package/dist/components/Map/utils/map.js.map +1 -0
- package/dist/components/SingleValueContainer/SingleValueContainer.stories.js +145 -0
- package/dist/components/SingleValueContainer/SingleValueContainer.stories.js.map +1 -0
- package/dist/components/SingleValueContainer/SingleValueVisualizer.js +44 -0
- package/dist/components/SingleValueContainer/SingleValueVisualizer.js.map +1 -0
- package/dist/components/SingleValueContainer/components/SingleValueItem/SingleValueItem.js +49 -0
- package/dist/components/SingleValueContainer/components/SingleValueItem/SingleValueItem.js.map +1 -0
- package/dist/components/SingleValueContainer/components/SingleValueItem/SingleValuePercentage.js +22 -0
- package/dist/components/SingleValueContainer/components/SingleValueItem/SingleValuePercentage.js.map +1 -0
- package/dist/components/SingleValueContainer/index.js +5 -0
- package/dist/components/SingleValueContainer/index.js.map +1 -0
- package/dist/components/SingleValueContainer/styles/SingleValueContainer.module.css +32 -0
- package/dist/components/SingleValueContainer/styles/SingleValueContainer.module.css.map +1 -0
- package/dist/components/SingleValueContainer/types/props.js +3 -0
- package/dist/components/SingleValueContainer/types/props.js.map +1 -0
- package/dist/components/Visualization/components/AnalyticsDataProvider/index.js +94 -0
- package/dist/components/Visualization/components/AnalyticsDataProvider/index.js.map +1 -0
- package/dist/components/Visualization/components/DimensionsProvider/index.js +35 -0
- package/dist/components/Visualization/components/DimensionsProvider/index.js.map +1 -0
- package/dist/components/Visualization/components/LayoutProvider/index.js +18 -0
- package/dist/components/Visualization/components/LayoutProvider/index.js.map +1 -0
- package/dist/components/Visualization/components/VisualizationDimensionSelector/index.js +85 -0
- package/dist/components/Visualization/components/VisualizationDimensionSelector/index.js.map +1 -0
- package/dist/components/Visualization/components/VisualizationProvider/index.js +19 -0
- package/dist/components/Visualization/components/VisualizationProvider/index.js.map +1 -0
- package/dist/components/Visualization/components/VisualizationSelector/index.js +167 -0
- package/dist/components/Visualization/components/VisualizationSelector/index.js.map +1 -0
- package/dist/components/Visualization/components/VisualizationTypeProvider/index.js +27 -0
- package/dist/components/Visualization/components/VisualizationTypeProvider/index.js.map +1 -0
- package/dist/components/Visualization/components/VisualizationTypeSelector/index.js +55 -0
- package/dist/components/Visualization/components/VisualizationTypeSelector/index.js.map +1 -0
- package/dist/components/Visualization/index.js +113 -0
- package/dist/components/Visualization/index.js.map +1 -0
- package/dist/index.js +8 -0
- package/dist/index.js.map +1 -0
- package/dist/types/components/ChartAnalytics/DHIS2Chart.d.ts +26 -0
- package/dist/types/components/ChartAnalytics/DHIS2Chart.d.ts.map +1 -0
- package/{build → dist}/types/components/ChartAnalytics/components/DownloadMenu/components/Menu.d.ts +3 -3
- package/dist/types/components/ChartAnalytics/components/DownloadMenu/components/Menu.d.ts.map +1 -0
- package/{build → dist}/types/components/ChartAnalytics/components/DownloadMenu/constants/menu.d.ts +1 -0
- package/dist/types/components/ChartAnalytics/components/DownloadMenu/constants/menu.d.ts.map +1 -0
- package/{build → dist}/types/components/ChartAnalytics/components/DownloadMenu/index.d.ts +3 -2
- package/dist/types/components/ChartAnalytics/components/DownloadMenu/index.d.ts.map +1 -0
- package/{build → dist}/types/components/ChartAnalytics/components/DownloadMenu/interfaces/menu.d.ts +1 -0
- package/dist/types/components/ChartAnalytics/components/DownloadMenu/interfaces/menu.d.ts.map +1 -0
- package/{build → dist}/types/components/ChartAnalytics/hooks/useChart.d.ts +3 -2
- package/dist/types/components/ChartAnalytics/hooks/useChart.d.ts.map +1 -0
- package/dist/types/components/ChartAnalytics/index.d.ts +2 -0
- package/dist/types/components/ChartAnalytics/index.d.ts.map +1 -0
- package/{build → dist}/types/components/ChartAnalytics/models/bar.d.ts +2 -1
- package/dist/types/components/ChartAnalytics/models/bar.d.ts.map +1 -0
- package/{build → dist}/types/components/ChartAnalytics/models/column.d.ts +2 -1
- package/dist/types/components/ChartAnalytics/models/column.d.ts.map +1 -0
- package/{build → dist}/types/components/ChartAnalytics/models/index.d.ts +2 -1
- package/dist/types/components/ChartAnalytics/models/index.d.ts.map +1 -0
- package/{build → dist}/types/components/ChartAnalytics/models/line.d.ts +2 -1
- package/dist/types/components/ChartAnalytics/models/line.d.ts.map +1 -0
- package/{build → dist}/types/components/ChartAnalytics/models/multi-series.d.ts +2 -1
- package/dist/types/components/ChartAnalytics/models/multi-series.d.ts.map +1 -0
- package/{build → dist}/types/components/ChartAnalytics/models/pie.d.ts +2 -1
- package/dist/types/components/ChartAnalytics/models/pie.d.ts.map +1 -0
- package/{build → dist}/types/components/ChartAnalytics/services/export.d.ts +1 -0
- package/dist/types/components/ChartAnalytics/services/export.d.ts.map +1 -0
- package/{build → dist}/types/components/ChartAnalytics/types/props.d.ts +1 -0
- package/dist/types/components/ChartAnalytics/types/props.d.ts.map +1 -0
- package/{build → dist}/types/components/ChartAnalytics/utils/chart.d.ts +3 -2
- package/dist/types/components/ChartAnalytics/utils/chart.d.ts.map +1 -0
- package/dist/types/components/CircularProgressDashboard/CircularProgressIndicator.d.ts +6 -0
- package/dist/types/components/CircularProgressDashboard/CircularProgressIndicator.d.ts.map +1 -0
- package/dist/types/components/CircularProgressDashboard/index.d.ts +3 -0
- package/dist/types/components/CircularProgressDashboard/index.d.ts.map +1 -0
- package/{build → dist}/types/components/CircularProgressDashboard/types/props.d.ts +1 -0
- package/dist/types/components/CircularProgressDashboard/types/props.d.ts.map +1 -0
- package/{build/types/components/CustomPivotTable/index.d.ts → dist/types/components/DHIS2PivotTable/DHIS2PivotTable.d.ts} +8 -12
- package/dist/types/components/DHIS2PivotTable/DHIS2PivotTable.d.ts.map +1 -0
- package/dist/types/components/DHIS2PivotTable/components/Table/index.d.ts +9 -0
- package/dist/types/components/DHIS2PivotTable/components/Table/index.d.ts.map +1 -0
- package/dist/types/components/DHIS2PivotTable/components/TableBody/index.d.ts +2 -0
- package/dist/types/components/DHIS2PivotTable/components/TableBody/index.d.ts.map +1 -0
- package/dist/types/components/DHIS2PivotTable/components/TableHeaders/index.d.ts +2 -0
- package/dist/types/components/DHIS2PivotTable/components/TableHeaders/index.d.ts.map +1 -0
- package/dist/types/components/DHIS2PivotTable/index.d.ts +3 -0
- package/dist/types/components/DHIS2PivotTable/index.d.ts.map +1 -0
- package/{build/types/components/CustomPivotTable → dist/types/components/DHIS2PivotTable}/interfaces/index.d.ts +1 -0
- package/dist/types/components/DHIS2PivotTable/interfaces/index.d.ts.map +1 -0
- package/{build/types/components/CustomPivotTable → dist/types/components/DHIS2PivotTable}/services/engine.d.ts +4 -3
- package/dist/types/components/DHIS2PivotTable/services/engine.d.ts.map +1 -0
- package/dist/types/components/DHIS2PivotTable/state/engine.d.ts +8 -0
- package/dist/types/components/DHIS2PivotTable/state/engine.d.ts.map +1 -0
- package/dist/types/components/Map/DHIS2Map.d.ts +9 -0
- package/dist/types/components/Map/DHIS2Map.d.ts.map +1 -0
- package/dist/types/components/Map/components/EarthEngineLayerConfiguration/EarthEngineLayerConfigModal.d.ts +10 -0
- package/dist/types/components/Map/components/EarthEngineLayerConfiguration/EarthEngineLayerConfigModal.d.ts.map +1 -0
- package/dist/types/components/Map/components/EarthEngineLayerConfiguration/EarthEngineLayerConfiguration.d.ts +9 -0
- package/dist/types/components/Map/components/EarthEngineLayerConfiguration/EarthEngineLayerConfiguration.d.ts.map +1 -0
- package/dist/types/components/Map/components/EarthEngineLayerConfiguration/components/AggregationSelector.d.ts +2 -0
- package/dist/types/components/Map/components/EarthEngineLayerConfiguration/components/AggregationSelector.d.ts.map +1 -0
- package/dist/types/components/Map/components/EarthEngineLayerConfiguration/components/ColorConfig.d.ts +2 -0
- package/dist/types/components/Map/components/EarthEngineLayerConfiguration/components/ColorConfig.d.ts.map +1 -0
- package/dist/types/components/Map/components/EarthEngineLayerConfiguration/components/Name.d.ts +2 -0
- package/dist/types/components/Map/components/EarthEngineLayerConfiguration/components/Name.d.ts.map +1 -0
- package/dist/types/components/Map/components/EarthEngineLayerConfiguration/components/PeriodSelector.d.ts +2 -0
- package/dist/types/components/Map/components/EarthEngineLayerConfiguration/components/PeriodSelector.d.ts.map +1 -0
- package/dist/types/components/Map/components/EarthEngineLayerConfiguration/components/StylesConfig.d.ts +2 -0
- package/dist/types/components/Map/components/EarthEngineLayerConfiguration/components/StylesConfig.d.ts.map +1 -0
- package/dist/types/components/Map/components/EarthEngineLayerConfiguration/components/TypeField.d.ts +4 -0
- package/dist/types/components/Map/components/EarthEngineLayerConfiguration/components/TypeField.d.ts.map +1 -0
- package/dist/types/components/Map/components/EarthEngineLayerConfiguration/hooks/data.d.ts +8 -0
- package/dist/types/components/Map/components/EarthEngineLayerConfiguration/hooks/data.d.ts.map +1 -0
- package/dist/types/components/Map/components/EarthEngineLayerConfiguration/index.d.ts +3 -0
- package/dist/types/components/Map/components/EarthEngineLayerConfiguration/index.d.ts.map +1 -0
- package/{build → dist}/types/components/Map/components/MapArea/index.d.ts +2 -1
- package/dist/types/components/Map/components/MapArea/index.d.ts.map +1 -0
- package/{build → dist}/types/components/Map/components/MapArea/interfaces/index.d.ts +1 -0
- package/dist/types/components/Map/components/MapArea/interfaces/index.d.ts.map +1 -0
- package/{build → dist}/types/components/Map/components/MapControls/components/CustomControl/index.d.ts +2 -1
- package/dist/types/components/Map/components/MapControls/components/CustomControl/index.d.ts.map +1 -0
- package/{build → dist}/types/components/Map/components/MapControls/components/DownloadControl/index.d.ts +2 -2
- package/dist/types/components/Map/components/MapControls/components/DownloadControl/index.d.ts.map +1 -0
- package/{build → dist}/types/components/Map/components/MapControls/components/FullscreenControl/index.d.ts +1 -0
- package/dist/types/components/Map/components/MapControls/components/FullscreenControl/index.d.ts.map +1 -0
- package/dist/types/components/Map/components/MapControls/index.d.ts +6 -0
- package/dist/types/components/Map/components/MapControls/index.d.ts.map +1 -0
- package/dist/types/components/Map/components/MapLayer/components/BoundaryLayer/hooks/useBoundaryData.d.ts +2 -0
- package/dist/types/components/Map/components/MapLayer/components/BoundaryLayer/hooks/useBoundaryData.d.ts.map +1 -0
- package/{build → dist}/types/components/Map/components/MapLayer/components/BoundaryLayer/index.d.ts +6 -6
- package/dist/types/components/Map/components/MapLayer/components/BoundaryLayer/index.d.ts.map +1 -0
- package/{build → dist}/types/components/Map/components/MapLayer/components/GoogleEngineLayer/components/EarthEngineLegend.d.ts +4 -3
- package/dist/types/components/Map/components/MapLayer/components/GoogleEngineLayer/components/EarthEngineLegend.d.ts.map +1 -0
- package/{build → dist}/types/components/Map/components/MapLayer/components/GoogleEngineLayer/constants/index.d.ts +2 -1
- package/dist/types/components/Map/components/MapLayer/components/GoogleEngineLayer/constants/index.d.ts.map +1 -0
- package/{build → dist}/types/components/Map/components/MapLayer/components/GoogleEngineLayer/hooks/index.d.ts +3 -2
- package/dist/types/components/Map/components/MapLayer/components/GoogleEngineLayer/hooks/index.d.ts.map +1 -0
- package/dist/types/components/Map/components/MapLayer/components/GoogleEngineLayer/index.d.ts +4 -0
- package/dist/types/components/Map/components/MapLayer/components/GoogleEngineLayer/index.d.ts.map +1 -0
- package/{build → dist}/types/components/Map/components/MapLayer/components/GoogleEngineLayer/interfaces/index.d.ts +2 -1
- package/dist/types/components/Map/components/MapLayer/components/GoogleEngineLayer/interfaces/index.d.ts.map +1 -0
- package/{build → dist}/types/components/Map/components/MapLayer/components/GoogleEngineLayer/services/engine.d.ts +3 -2
- package/dist/types/components/Map/components/MapLayer/components/GoogleEngineLayer/services/engine.d.ts.map +1 -0
- package/{build → dist}/types/components/Map/components/MapLayer/components/GoogleEngineLayer/utils/index.d.ts +3 -2
- package/dist/types/components/Map/components/MapLayer/components/GoogleEngineLayer/utils/index.d.ts.map +1 -0
- package/{build → dist}/types/components/Map/components/MapLayer/components/LegendArea/components/LegendCardHeader/index.d.ts +3 -3
- package/dist/types/components/Map/components/MapLayer/components/LegendArea/components/LegendCardHeader/index.d.ts.map +1 -0
- package/{build → dist}/types/components/Map/components/MapLayer/components/LegendArea/index.d.ts +4 -4
- package/dist/types/components/Map/components/MapLayer/components/LegendArea/index.d.ts.map +1 -0
- package/{build → dist}/types/components/Map/components/MapLayer/components/PointLayer/components/PointLegend/index.d.ts +1 -0
- package/dist/types/components/Map/components/MapLayer/components/PointLayer/components/PointLegend/index.d.ts.map +1 -0
- package/dist/types/components/Map/components/MapLayer/components/PointLayer/hooks/index.d.ts +3 -0
- package/dist/types/components/Map/components/MapLayer/components/PointLayer/hooks/index.d.ts.map +1 -0
- package/dist/types/components/Map/components/MapLayer/components/PointLayer/index.d.ts +2 -0
- package/dist/types/components/Map/components/MapLayer/components/PointLayer/index.d.ts.map +1 -0
- package/{build → dist}/types/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/components/BubbleLegend/components/Bubble.d.ts +2 -2
- package/dist/types/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/components/BubbleLegend/components/Bubble.d.ts.map +1 -0
- package/{build → dist}/types/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/components/BubbleLegend/components/Bubbles.d.ts +3 -2
- package/dist/types/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/components/BubbleLegend/components/Bubbles.d.ts.map +1 -0
- package/{build → dist}/types/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/components/BubbleLegend/index.d.ts +2 -1
- package/dist/types/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/components/BubbleLegend/index.d.ts.map +1 -0
- package/{build → dist}/types/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/index.d.ts +3 -3
- package/dist/types/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/index.d.ts.map +1 -0
- package/{build → dist}/types/components/Map/components/MapLayer/components/ThematicLayer/components/Choropleth/components/ChoroplethLegend.d.ts +4 -3
- package/dist/types/components/Map/components/MapLayer/components/ThematicLayer/components/Choropleth/components/ChoroplethLegend.d.ts.map +1 -0
- package/dist/types/components/Map/components/MapLayer/components/ThematicLayer/components/Choropleth/index.d.ts +12 -0
- package/dist/types/components/Map/components/MapLayer/components/ThematicLayer/components/Choropleth/index.d.ts.map +1 -0
- package/dist/types/components/Map/components/MapLayer/components/ThematicLayer/components/CustomTooltip/index.d.ts +5 -0
- package/dist/types/components/Map/components/MapLayer/components/ThematicLayer/components/CustomTooltip/index.d.ts.map +1 -0
- package/dist/types/components/Map/components/MapLayer/components/ThematicLayer/hooks/config.d.ts +3 -0
- package/dist/types/components/Map/components/MapLayer/components/ThematicLayer/hooks/config.d.ts.map +1 -0
- package/dist/types/components/Map/components/MapLayer/components/ThematicLayer/index.d.ts +5 -0
- package/dist/types/components/Map/components/MapLayer/components/ThematicLayer/index.d.ts.map +1 -0
- package/{build → dist}/types/components/Map/components/MapLayer/index.d.ts +3 -3
- package/dist/types/components/Map/components/MapLayer/index.d.ts.map +1 -0
- package/{build → dist}/types/components/Map/components/MapLayer/interfaces/index.d.ts +5 -4
- package/dist/types/components/Map/components/MapLayer/interfaces/index.d.ts.map +1 -0
- package/{build → dist}/types/components/Map/components/MapProvider/components/MapLayerProvider/hooks/index.d.ts +1 -0
- package/dist/types/components/Map/components/MapProvider/components/MapLayerProvider/hooks/index.d.ts.map +1 -0
- package/dist/types/components/Map/components/MapProvider/components/MapLayerProvider/index.d.ts +7 -0
- package/dist/types/components/Map/components/MapProvider/components/MapLayerProvider/index.d.ts.map +1 -0
- package/{build → dist}/types/components/Map/components/MapProvider/hooks/index.d.ts +4 -3
- package/dist/types/components/Map/components/MapProvider/hooks/index.d.ts.map +1 -0
- package/dist/types/components/Map/components/MapProvider/index.d.ts +3 -0
- package/dist/types/components/Map/components/MapProvider/index.d.ts.map +1 -0
- package/{build → dist}/types/components/Map/components/MapUpdater/index.d.ts +2 -2
- package/dist/types/components/Map/components/MapUpdater/index.d.ts.map +1 -0
- package/dist/types/components/Map/components/ThematicLayerConfiguration/ThematicLayerConfigModal.d.ts +3 -0
- package/dist/types/components/Map/components/ThematicLayerConfiguration/ThematicLayerConfigModal.d.ts.map +1 -0
- package/dist/types/components/Map/components/ThematicLayerConfiguration/ThematicLayerConfiguration.d.ts +3 -0
- package/dist/types/components/Map/components/ThematicLayerConfiguration/ThematicLayerConfiguration.d.ts.map +1 -0
- package/dist/types/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/components/ColorScale/index.d.ts +8 -0
- package/dist/types/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/components/ColorScale/index.d.ts.map +1 -0
- package/{build → dist}/types/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/constants/colors.d.ts +1 -0
- package/dist/types/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/constants/colors.d.ts.map +1 -0
- package/{build → dist}/types/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/index.d.ts +2 -2
- package/dist/types/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/index.d.ts.map +1 -0
- package/{build → dist}/types/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/utils/colors.d.ts +2 -1
- package/dist/types/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/utils/colors.d.ts.map +1 -0
- package/dist/types/components/Map/components/ThematicLayerConfiguration/components/CustomLegend/index.d.ts +2 -0
- package/dist/types/components/Map/components/ThematicLayerConfiguration/components/CustomLegend/index.d.ts.map +1 -0
- package/{build → dist}/types/components/Map/components/ThematicLayerConfiguration/components/IndicatorSelectorModal/index.d.ts +2 -2
- package/dist/types/components/Map/components/ThematicLayerConfiguration/components/IndicatorSelectorModal/index.d.ts.map +1 -0
- package/{build → dist}/types/components/Map/components/ThematicLayerConfiguration/components/LegendSetSelector/index.d.ts +2 -2
- package/dist/types/components/Map/components/ThematicLayerConfiguration/components/LegendSetSelector/index.d.ts.map +1 -0
- package/dist/types/components/Map/components/ThematicLayerConfiguration/components/RadiusField.d.ts +2 -0
- package/dist/types/components/Map/components/ThematicLayerConfiguration/components/RadiusField.d.ts.map +1 -0
- package/dist/types/components/Map/components/ThematicLayerConfiguration/components/TypeField.d.ts +2 -0
- package/dist/types/components/Map/components/ThematicLayerConfiguration/components/TypeField.d.ts.map +1 -0
- package/dist/types/components/Map/components/ThematicLayerConfiguration/index.d.ts +4 -0
- package/dist/types/components/Map/components/ThematicLayerConfiguration/index.d.ts.map +1 -0
- package/dist/types/components/Map/components/ThematicLayerConfiguration/types/index.d.ts +15 -0
- package/dist/types/components/Map/components/ThematicLayerConfiguration/types/index.d.ts.map +1 -0
- package/{build → dist}/types/components/Map/constants/colors.d.ts +1 -0
- package/dist/types/components/Map/constants/colors.d.ts.map +1 -0
- package/{build → dist}/types/components/Map/constants/legendSet.d.ts +1 -0
- package/dist/types/components/Map/constants/legendSet.d.ts.map +1 -0
- package/{build → dist}/types/components/Map/hooks/map.d.ts +1 -0
- package/dist/types/components/Map/hooks/map.d.ts.map +1 -0
- package/dist/types/components/Map/index.d.ts +6 -0
- package/dist/types/components/Map/index.d.ts.map +1 -0
- package/{build → dist}/types/components/Map/interfaces/index.d.ts +3 -2
- package/dist/types/components/Map/interfaces/index.d.ts.map +1 -0
- package/{build → dist}/types/components/Map/state/index.d.ts +3 -2
- package/dist/types/components/Map/state/index.d.ts.map +1 -0
- package/{build → dist}/types/components/Map/utils/colors.d.ts +2 -1
- package/dist/types/components/Map/utils/colors.d.ts.map +1 -0
- package/{build → dist}/types/components/Map/utils/helpers.d.ts +1 -0
- package/dist/types/components/Map/utils/helpers.d.ts.map +1 -0
- package/{build → dist}/types/components/Map/utils/map.d.ts +1 -0
- package/dist/types/components/Map/utils/map.d.ts.map +1 -0
- package/dist/types/components/SingleValueContainer/SingleValueVisualizer.d.ts +11 -0
- package/dist/types/components/SingleValueContainer/SingleValueVisualizer.d.ts.map +1 -0
- package/{build → dist}/types/components/SingleValueContainer/components/SingleValueItem/SingleValueItem.d.ts +2 -1
- package/dist/types/components/SingleValueContainer/components/SingleValueItem/SingleValueItem.d.ts.map +1 -0
- package/{build → dist}/types/components/SingleValueContainer/components/SingleValueItem/SingleValuePercentage.d.ts +2 -1
- package/dist/types/components/SingleValueContainer/components/SingleValueItem/SingleValuePercentage.d.ts.map +1 -0
- package/dist/types/components/SingleValueContainer/index.d.ts +4 -0
- package/dist/types/components/SingleValueContainer/index.d.ts.map +1 -0
- package/{build → dist}/types/components/SingleValueContainer/types/props.d.ts +3 -1
- package/dist/types/components/SingleValueContainer/types/props.d.ts.map +1 -0
- package/{build → dist}/types/components/Visualization/components/AnalyticsDataProvider/index.d.ts +2 -1
- package/dist/types/components/Visualization/components/AnalyticsDataProvider/index.d.ts.map +1 -0
- package/{build → dist}/types/components/Visualization/components/DimensionsProvider/index.d.ts +2 -1
- package/dist/types/components/Visualization/components/DimensionsProvider/index.d.ts.map +1 -0
- package/{build → dist}/types/components/Visualization/components/LayoutProvider/index.d.ts +3 -2
- package/dist/types/components/Visualization/components/LayoutProvider/index.d.ts.map +1 -0
- package/{build → dist}/types/components/Visualization/components/VisualizationDimensionSelector/index.d.ts +3 -3
- package/dist/types/components/Visualization/components/VisualizationDimensionSelector/index.d.ts.map +1 -0
- package/{build → dist}/types/components/Visualization/components/VisualizationProvider/index.d.ts +5 -4
- package/dist/types/components/Visualization/components/VisualizationProvider/index.d.ts.map +1 -0
- package/dist/types/components/Visualization/components/VisualizationSelector/index.d.ts +23 -0
- package/dist/types/components/Visualization/components/VisualizationSelector/index.d.ts.map +1 -0
- package/{build → dist}/types/components/Visualization/components/VisualizationTypeProvider/index.d.ts +3 -2
- package/dist/types/components/Visualization/components/VisualizationTypeProvider/index.d.ts.map +1 -0
- package/dist/types/components/Visualization/components/VisualizationTypeSelector/index.d.ts +2 -0
- package/dist/types/components/Visualization/components/VisualizationTypeSelector/index.d.ts.map +1 -0
- package/{build → dist}/types/components/Visualization/index.d.ts +8 -8
- package/dist/types/components/Visualization/index.d.ts.map +1 -0
- package/dist/types/index.d.ts +7 -0
- package/dist/types/index.d.ts.map +1 -0
- package/package.json +59 -63
- package/README.md +0 -45
- package/build/cjs/components/ChartAnalytics/ChartAnalytics.test.js +0 -51
- package/build/cjs/components/ChartAnalytics/components/DownloadMenu/components/Menu.js +0 -48
- package/build/cjs/components/ChartAnalytics/components/DownloadMenu/constants/menu.js +0 -34
- package/build/cjs/components/ChartAnalytics/components/DownloadMenu/index.js +0 -65
- package/build/cjs/components/ChartAnalytics/components/DownloadMenu/interfaces/menu.js +0 -1
- package/build/cjs/components/ChartAnalytics/hooks/useChart.js +0 -38
- package/build/cjs/components/ChartAnalytics/index.js +0 -86
- package/build/cjs/components/ChartAnalytics/models/bar.js +0 -24
- package/build/cjs/components/ChartAnalytics/models/column.js +0 -53
- package/build/cjs/components/ChartAnalytics/models/index.js +0 -112
- package/build/cjs/components/ChartAnalytics/models/line.js +0 -35
- package/build/cjs/components/ChartAnalytics/models/multi-series.js +0 -111
- package/build/cjs/components/ChartAnalytics/models/pie.js +0 -53
- package/build/cjs/components/ChartAnalytics/services/export.js +0 -50
- package/build/cjs/components/ChartAnalytics/styles/custom-highchart.css +0 -48
- package/build/cjs/components/ChartAnalytics/types/props.js +0 -1
- package/build/cjs/components/ChartAnalytics/utils/chart.js +0 -138
- package/build/cjs/components/CircularProgressDashboard/CircularProgressIndicator.test.js +0 -13
- package/build/cjs/components/CircularProgressDashboard/index.js +0 -64
- package/build/cjs/components/CircularProgressDashboard/types/props.js +0 -1
- package/build/cjs/components/CustomPivotTable/components/Table/index.js +0 -16
- package/build/cjs/components/CustomPivotTable/components/TableBody/TableBody.module.css +0 -12
- package/build/cjs/components/CustomPivotTable/components/TableBody/index.js +0 -109
- package/build/cjs/components/CustomPivotTable/components/TableHeaders/TableHeaders.module.css +0 -10
- package/build/cjs/components/CustomPivotTable/components/TableHeaders/index.js +0 -89
- package/build/cjs/components/CustomPivotTable/index.js +0 -30
- package/build/cjs/components/CustomPivotTable/interfaces/index.js +0 -1
- package/build/cjs/components/CustomPivotTable/services/engine.js +0 -89
- package/build/cjs/components/CustomPivotTable/state/engine.js +0 -23
- package/build/cjs/components/Map/components/EarthEngineLayerConfiguration/EarthEngineLayerConfigModal.stories.js +0 -32
- package/build/cjs/components/Map/components/EarthEngineLayerConfiguration/EarthEngineLayerConfiguration.stories.js +0 -40
- package/build/cjs/components/Map/components/EarthEngineLayerConfiguration/index.js +0 -458
- package/build/cjs/components/Map/components/MapArea/index.js +0 -101
- package/build/cjs/components/Map/components/MapArea/interfaces/index.js +0 -1
- package/build/cjs/components/Map/components/MapControls/components/CustomControl/index.js +0 -32
- package/build/cjs/components/Map/components/MapControls/components/DownloadControl/index.js +0 -25
- package/build/cjs/components/Map/components/MapControls/components/FullscreenControl/index.js +0 -13
- package/build/cjs/components/Map/components/MapControls/index.js +0 -42
- package/build/cjs/components/Map/components/MapLayer/components/BoundaryLayer/hooks/useBoundaryData.js +0 -13
- package/build/cjs/components/Map/components/MapLayer/components/BoundaryLayer/index.js +0 -51
- package/build/cjs/components/Map/components/MapLayer/components/GoogleEngineLayer/components/EarthEngineLegend.js +0 -104
- package/build/cjs/components/Map/components/MapLayer/components/GoogleEngineLayer/constants/index.js +0 -379
- package/build/cjs/components/Map/components/MapLayer/components/GoogleEngineLayer/hooks/index.js +0 -36
- package/build/cjs/components/Map/components/MapLayer/components/GoogleEngineLayer/index.js +0 -200
- package/build/cjs/components/Map/components/MapLayer/components/GoogleEngineLayer/interfaces/index.js +0 -1
- package/build/cjs/components/Map/components/MapLayer/components/GoogleEngineLayer/services/api.js +0 -15
- package/build/cjs/components/Map/components/MapLayer/components/GoogleEngineLayer/services/engine.js +0 -403
- package/build/cjs/components/Map/components/MapLayer/components/GoogleEngineLayer/utils/index.js +0 -124
- package/build/cjs/components/Map/components/MapLayer/components/LegendArea/LegendArea.module.css +0 -12
- package/build/cjs/components/Map/components/MapLayer/components/LegendArea/components/LegendCardHeader/index.js +0 -26
- package/build/cjs/components/Map/components/MapLayer/components/LegendArea/index.js +0 -180
- package/build/cjs/components/Map/components/MapLayer/components/PointLayer/components/PointLegend/index.js +0 -86
- package/build/cjs/components/Map/components/MapLayer/components/PointLayer/hooks/index.js +0 -14
- package/build/cjs/components/Map/components/MapLayer/components/PointLayer/index.js +0 -46
- package/build/cjs/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/components/BubbleLegend/components/Bubble.js +0 -57
- package/build/cjs/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/components/BubbleLegend/components/Bubbles.js +0 -145
- package/build/cjs/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/components/BubbleLegend/index.js +0 -43
- package/build/cjs/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/index.js +0 -56
- package/build/cjs/components/Map/components/MapLayer/components/ThematicLayer/components/Choropleth/components/ChoroplethLegend.js +0 -61
- package/build/cjs/components/Map/components/MapLayer/components/ThematicLayer/components/Choropleth/index.js +0 -43
- package/build/cjs/components/Map/components/MapLayer/components/ThematicLayer/components/CustomTooltip/index.js +0 -35
- package/build/cjs/components/Map/components/MapLayer/components/ThematicLayer/hooks/config.js +0 -15
- package/build/cjs/components/Map/components/MapLayer/components/ThematicLayer/index.js +0 -57
- package/build/cjs/components/Map/components/MapLayer/components/ThematicLayer/styles/legends.css +0 -62
- package/build/cjs/components/Map/components/MapLayer/index.js +0 -40
- package/build/cjs/components/Map/components/MapLayer/interfaces/index.js +0 -8
- package/build/cjs/components/Map/components/MapProvider/components/MapLayerProvider/hooks/index.js +0 -399
- package/build/cjs/components/Map/components/MapProvider/components/MapLayerProvider/index.js +0 -116
- package/build/cjs/components/Map/components/MapProvider/hooks/index.js +0 -19
- package/build/cjs/components/Map/components/MapProvider/index.js +0 -121
- package/build/cjs/components/Map/components/MapUpdater/index.js +0 -24
- package/build/cjs/components/Map/components/ThematicLayerConfiguration/ThematicLayerConfigModal.stories.js +0 -32
- package/build/cjs/components/Map/components/ThematicLayerConfiguration/ThematicLayerConfiguration.stories.js +0 -40
- package/build/cjs/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/components/ColorScale/index.js +0 -40
- package/build/cjs/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/constants/colors.js +0 -428
- package/build/cjs/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/index.js +0 -63
- package/build/cjs/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/styles/ColorScale.module.css +0 -15
- package/build/cjs/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/styles/ColorScaleSelect.module.css +0 -12
- package/build/cjs/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/utils/colors.js +0 -72
- package/build/cjs/components/Map/components/ThematicLayerConfiguration/components/CustomLegend/index.js +0 -71
- package/build/cjs/components/Map/components/ThematicLayerConfiguration/components/IndicatorSelectorModal/index.js +0 -47
- package/build/cjs/components/Map/components/ThematicLayerConfiguration/components/LegendSetSelector/index.js +0 -79
- package/build/cjs/components/Map/components/ThematicLayerConfiguration/index.js +0 -265
- package/build/cjs/components/Map/constants/colors.js +0 -429
- package/build/cjs/components/Map/constants/legendSet.js +0 -22
- package/build/cjs/components/Map/hooks/map.js +0 -52
- package/build/cjs/components/Map/index.js +0 -108
- package/build/cjs/components/Map/interfaces/index.js +0 -1
- package/build/cjs/components/Map/state/index.js +0 -23
- package/build/cjs/components/Map/utils/colors.js +0 -78
- package/build/cjs/components/Map/utils/helpers.js +0 -25
- package/build/cjs/components/Map/utils/map.js +0 -161
- package/build/cjs/components/SingleValueContainer/SingleValueContainer.test.js +0 -23
- package/build/cjs/components/SingleValueContainer/components/SingleValueItem/SingleValueItem.js +0 -54
- package/build/cjs/components/SingleValueContainer/components/SingleValueItem/SingleValuePercentage.js +0 -24
- package/build/cjs/components/SingleValueContainer/index.js +0 -59
- package/build/cjs/components/SingleValueContainer/styles/SingleValueContainer.module.css +0 -39
- package/build/cjs/components/SingleValueContainer/types/props.js +0 -1
- package/build/cjs/components/Visualization/components/AnalyticsDataProvider/index.js +0 -102
- package/build/cjs/components/Visualization/components/DimensionsProvider/index.js +0 -56
- package/build/cjs/components/Visualization/components/LayoutProvider/index.js +0 -31
- package/build/cjs/components/Visualization/components/VisualizationDimensionSelector/index.js +0 -77
- package/build/cjs/components/Visualization/components/VisualizationProvider/index.js +0 -29
- package/build/cjs/components/Visualization/components/VisualizationSelector/index.js +0 -180
- package/build/cjs/components/Visualization/components/VisualizationTypeProvider/index.js +0 -40
- package/build/cjs/components/Visualization/components/VisualizationTypeSelector/index.js +0 -54
- package/build/cjs/components/Visualization/index.js +0 -96
- package/build/cjs/index.js +0 -71
- package/build/cjs/locales/en/translations.json +0 -138
- package/build/cjs/locales/index.js +0 -22
- package/build/es/components/ChartAnalytics/ChartAnalytics.test.js +0 -46
- package/build/es/components/ChartAnalytics/components/DownloadMenu/components/Menu.js +0 -41
- package/build/es/components/ChartAnalytics/components/DownloadMenu/constants/menu.js +0 -26
- package/build/es/components/ChartAnalytics/components/DownloadMenu/index.js +0 -57
- package/build/es/components/ChartAnalytics/components/DownloadMenu/interfaces/menu.js +0 -1
- package/build/es/components/ChartAnalytics/hooks/useChart.js +0 -32
- package/build/es/components/ChartAnalytics/index.js +0 -40
- package/build/es/components/ChartAnalytics/models/bar.js +0 -16
- package/build/es/components/ChartAnalytics/models/index.js +0 -105
- package/build/es/components/ChartAnalytics/models/multi-series.js +0 -104
- package/build/es/components/ChartAnalytics/models/pie.js +0 -46
- package/build/es/components/ChartAnalytics/services/export.js +0 -36
- package/build/es/components/ChartAnalytics/styles/custom-highchart.css +0 -48
- package/build/es/components/ChartAnalytics/types/props.js +0 -1
- package/build/es/components/ChartAnalytics/utils/chart.js +0 -127
- package/build/es/components/CircularProgressDashboard/CircularProgressIndicator.test.js +0 -10
- package/build/es/components/CircularProgressDashboard/index.js +0 -42
- package/build/es/components/CircularProgressDashboard/types/props.js +0 -1
- package/build/es/components/CustomPivotTable/components/Table/index.js +0 -9
- package/build/es/components/CustomPivotTable/components/TableBody/TableBody.module.css +0 -12
- package/build/es/components/CustomPivotTable/components/TableBody/index.js +0 -100
- package/build/es/components/CustomPivotTable/components/TableHeaders/TableHeaders.module.css +0 -10
- package/build/es/components/CustomPivotTable/components/TableHeaders/index.js +0 -82
- package/build/es/components/CustomPivotTable/index.js +0 -22
- package/build/es/components/CustomPivotTable/interfaces/index.js +0 -1
- package/build/es/components/CustomPivotTable/services/engine.js +0 -82
- package/build/es/components/CustomPivotTable/state/engine.js +0 -14
- package/build/es/components/Map/components/EarthEngineLayerConfiguration/EarthEngineLayerConfigModal.stories.js +0 -23
- package/build/es/components/Map/components/EarthEngineLayerConfiguration/EarthEngineLayerConfiguration.stories.js +0 -31
- package/build/es/components/Map/components/EarthEngineLayerConfiguration/index.js +0 -448
- package/build/es/components/Map/components/MapArea/index.js +0 -91
- package/build/es/components/Map/components/MapArea/interfaces/index.js +0 -1
- package/build/es/components/Map/components/MapControls/components/CustomControl/index.js +0 -25
- package/build/es/components/Map/components/MapControls/components/DownloadControl/index.js +0 -18
- package/build/es/components/Map/components/MapControls/components/FullscreenControl/index.js +0 -6
- package/build/es/components/Map/components/MapControls/index.js +0 -35
- package/build/es/components/Map/components/MapLayer/components/BoundaryLayer/hooks/useBoundaryData.js +0 -7
- package/build/es/components/Map/components/MapLayer/components/BoundaryLayer/index.js +0 -41
- package/build/es/components/Map/components/MapLayer/components/GoogleEngineLayer/components/EarthEngineLegend.js +0 -93
- package/build/es/components/Map/components/MapLayer/components/GoogleEngineLayer/constants/index.js +0 -369
- package/build/es/components/Map/components/MapLayer/components/GoogleEngineLayer/hooks/index.js +0 -29
- package/build/es/components/Map/components/MapLayer/components/GoogleEngineLayer/index.js +0 -191
- package/build/es/components/Map/components/MapLayer/components/GoogleEngineLayer/interfaces/index.js +0 -1
- package/build/es/components/Map/components/MapLayer/components/GoogleEngineLayer/services/api.js +0 -15
- package/build/es/components/Map/components/MapLayer/components/GoogleEngineLayer/utils/index.js +0 -111
- package/build/es/components/Map/components/MapLayer/components/LegendArea/LegendArea.module.css +0 -12
- package/build/es/components/Map/components/MapLayer/components/LegendArea/components/LegendCardHeader/index.js +0 -19
- package/build/es/components/Map/components/MapLayer/components/LegendArea/index.js +0 -171
- package/build/es/components/Map/components/MapLayer/components/PointLayer/components/PointLegend/index.js +0 -76
- package/build/es/components/Map/components/MapLayer/components/PointLayer/hooks/index.js +0 -8
- package/build/es/components/Map/components/MapLayer/components/PointLayer/index.js +0 -39
- package/build/es/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/components/BubbleLegend/components/Bubble.js +0 -49
- package/build/es/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/components/BubbleLegend/components/Bubbles.js +0 -133
- package/build/es/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/components/BubbleLegend/index.js +0 -33
- package/build/es/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/index.js +0 -47
- package/build/es/components/Map/components/MapLayer/components/ThematicLayer/components/Choropleth/components/ChoroplethLegend.js +0 -50
- package/build/es/components/Map/components/MapLayer/components/ThematicLayer/components/Choropleth/index.js +0 -36
- package/build/es/components/Map/components/MapLayer/components/ThematicLayer/components/CustomTooltip/index.js +0 -28
- package/build/es/components/Map/components/MapLayer/components/ThematicLayer/hooks/config.js +0 -9
- package/build/es/components/Map/components/MapLayer/components/ThematicLayer/index.js +0 -50
- package/build/es/components/Map/components/MapLayer/components/ThematicLayer/styles/legends.css +0 -62
- package/build/es/components/Map/components/MapLayer/index.js +0 -33
- package/build/es/components/Map/components/MapLayer/interfaces/index.js +0 -1
- package/build/es/components/Map/components/MapProvider/components/MapLayerProvider/hooks/index.js +0 -391
- package/build/es/components/Map/components/MapProvider/components/MapLayerProvider/index.js +0 -107
- package/build/es/components/Map/components/MapProvider/hooks/index.js +0 -11
- package/build/es/components/Map/components/MapProvider/index.js +0 -112
- package/build/es/components/Map/components/MapUpdater/index.js +0 -17
- package/build/es/components/Map/components/ThematicLayerConfiguration/ThematicLayerConfigModal.stories.js +0 -23
- package/build/es/components/Map/components/ThematicLayerConfiguration/ThematicLayerConfiguration.stories.js +0 -31
- package/build/es/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/components/ColorScale/index.js +0 -33
- package/build/es/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/index.js +0 -53
- package/build/es/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/styles/ColorScale.module.css +0 -15
- package/build/es/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/styles/ColorScaleSelect.module.css +0 -12
- package/build/es/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/utils/colors.js +0 -56
- package/build/es/components/Map/components/ThematicLayerConfiguration/components/CustomLegend/index.js +0 -64
- package/build/es/components/Map/components/ThematicLayerConfiguration/components/IndicatorSelectorModal/index.js +0 -38
- package/build/es/components/Map/components/ThematicLayerConfiguration/components/LegendSetSelector/index.js +0 -70
- package/build/es/components/Map/components/ThematicLayerConfiguration/index.js +0 -254
- package/build/es/components/Map/constants/legendSet.js +0 -15
- package/build/es/components/Map/hooks/map.js +0 -44
- package/build/es/components/Map/index.js +0 -51
- package/build/es/components/Map/interfaces/index.js +0 -1
- package/build/es/components/Map/state/index.js +0 -14
- package/build/es/components/Map/utils/colors.js +0 -61
- package/build/es/components/Map/utils/helpers.js +0 -14
- package/build/es/components/Map/utils/map.js +0 -147
- package/build/es/components/SingleValueContainer/SingleValueContainer.test.js +0 -20
- package/build/es/components/SingleValueContainer/components/SingleValueItem/SingleValueItem.js +0 -47
- package/build/es/components/SingleValueContainer/components/SingleValueItem/SingleValuePercentage.js +0 -17
- package/build/es/components/SingleValueContainer/index.js +0 -30
- package/build/es/components/SingleValueContainer/styles/SingleValueContainer.module.css +0 -39
- package/build/es/components/SingleValueContainer/types/props.js +0 -1
- package/build/es/components/Visualization/components/AnalyticsDataProvider/index.js +0 -93
- package/build/es/components/Visualization/components/DimensionsProvider/index.js +0 -44
- package/build/es/components/Visualization/components/LayoutProvider/index.js +0 -20
- package/build/es/components/Visualization/components/VisualizationDimensionSelector/index.js +0 -68
- package/build/es/components/Visualization/components/VisualizationProvider/index.js +0 -22
- package/build/es/components/Visualization/components/VisualizationSelector/index.js +0 -166
- package/build/es/components/Visualization/components/VisualizationTypeProvider/index.js +0 -25
- package/build/es/components/Visualization/components/VisualizationTypeSelector/index.js +0 -45
- package/build/es/components/Visualization/index.js +0 -89
- package/build/es/index.js +0 -7
- package/build/es/locales/en/translations.json +0 -138
- package/build/es/locales/index.js +0 -13
- package/build/types/components/ChartAnalytics/index.d.ts +0 -7
- package/build/types/components/CircularProgressDashboard/index.d.ts +0 -4
- package/build/types/components/CustomPivotTable/components/Table/index.d.ts +0 -12
- package/build/types/components/CustomPivotTable/components/TableBody/index.d.ts +0 -2
- package/build/types/components/CustomPivotTable/components/TableHeaders/index.d.ts +0 -2
- package/build/types/components/CustomPivotTable/state/engine.d.ts +0 -7
- package/build/types/components/Map/components/EarthEngineLayerConfiguration/index.d.ts +0 -17
- package/build/types/components/Map/components/MapControls/index.d.ts +0 -6
- package/build/types/components/Map/components/MapLayer/components/BoundaryLayer/hooks/useBoundaryData.d.ts +0 -1
- package/build/types/components/Map/components/MapLayer/components/GoogleEngineLayer/index.d.ts +0 -4
- package/build/types/components/Map/components/MapLayer/components/PointLayer/hooks/index.d.ts +0 -2
- package/build/types/components/Map/components/MapLayer/components/PointLayer/index.d.ts +0 -2
- package/build/types/components/Map/components/MapLayer/components/ThematicLayer/components/Choropleth/index.d.ts +0 -12
- package/build/types/components/Map/components/MapLayer/components/ThematicLayer/components/CustomTooltip/index.d.ts +0 -5
- package/build/types/components/Map/components/MapLayer/components/ThematicLayer/hooks/config.d.ts +0 -2
- package/build/types/components/Map/components/MapLayer/components/ThematicLayer/index.d.ts +0 -5
- package/build/types/components/Map/components/MapProvider/components/MapLayerProvider/index.d.ts +0 -6
- package/build/types/components/Map/components/MapProvider/index.d.ts +0 -3
- package/build/types/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/components/ColorScale/index.d.ts +0 -8
- package/build/types/components/Map/components/ThematicLayerConfiguration/components/CustomLegend/index.d.ts +0 -2
- package/build/types/components/Map/components/ThematicLayerConfiguration/index.d.ts +0 -18
- package/build/types/components/Map/index.d.ts +0 -8
- package/build/types/components/SingleValueContainer/index.d.ts +0 -6
- package/build/types/components/Visualization/components/VisualizationSelector/index.d.ts +0 -23
- package/build/types/components/Visualization/components/VisualizationTypeSelector/index.d.ts +0 -2
- package/build/types/index.d.ts +0 -6
- /package/{LICENSE → LICENCE} +0 -0
package/{build → dist}/types/components/Map/components/MapLayer/components/BoundaryLayer/index.d.ts
RENAMED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
|
|
2
|
-
import { CustomBoundaryLayer as BoundaryLayerInterface } from "../../interfaces";
|
|
1
|
+
import { CustomBoundaryLayer as BoundaryLayerInterface } from "../../interfaces/index.js";
|
|
3
2
|
export declare const defaultStyle: {
|
|
4
3
|
weight: number;
|
|
5
|
-
color:
|
|
6
|
-
fillColor:
|
|
4
|
+
color: string;
|
|
5
|
+
fillColor: string;
|
|
7
6
|
fillOpacity: number;
|
|
8
7
|
};
|
|
9
8
|
export declare const highlightStyle: {
|
|
10
9
|
weight: number;
|
|
11
|
-
color:
|
|
10
|
+
color: string;
|
|
12
11
|
dashArray: string;
|
|
13
12
|
fillOpacity: number;
|
|
14
13
|
};
|
|
15
|
-
export default function BoundaryLayer(props: BoundaryLayerInterface): JSX.Element;
|
|
14
|
+
export default function BoundaryLayer(props: BoundaryLayerInterface): import("react/jsx-runtime.js").JSX.Element;
|
|
15
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/Map/components/MapLayer/components/BoundaryLayer/index.tsx"],"names":[],"mappings":"AAYA,OAAO,EAAE,mBAAmB,IAAI,sBAAsB,EAAE,MAAM,2BAA2B,CAAC;AAG1F,eAAO,MAAM,YAAY;;;;;CAKxB,CAAC;AACF,eAAO,MAAM,cAAc;;;;;CAK1B,CAAC;AAEF,MAAM,CAAC,OAAO,UAAU,aAAa,CAAC,KAAK,EAAE,sBAAsB,8CAmClE"}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
import { CustomGoogleEngineLayer } from "../../../interfaces";
|
|
3
|
-
export declare function LegendItem({ legend }: {
|
|
2
|
+
import { CustomGoogleEngineLayer } from "../../../interfaces/index.js";
|
|
3
|
+
export declare function LegendItem({ legend, }: {
|
|
4
4
|
legend: {
|
|
5
5
|
min: number;
|
|
6
6
|
max: number;
|
|
7
7
|
color: string;
|
|
8
8
|
name?: string;
|
|
9
9
|
};
|
|
10
|
-
}): JSX.Element;
|
|
10
|
+
}): import("react/jsx-runtime.js").JSX.Element;
|
|
11
11
|
declare const _default: React.ForwardRefExoticComponent<{
|
|
12
12
|
layer: CustomGoogleEngineLayer;
|
|
13
13
|
collapsible?: boolean | undefined;
|
|
@@ -15,3 +15,4 @@ declare const _default: React.ForwardRefExoticComponent<{
|
|
|
15
15
|
name: string;
|
|
16
16
|
} & React.RefAttributes<HTMLDivElement>>;
|
|
17
17
|
export default _default;
|
|
18
|
+
//# sourceMappingURL=EarthEngineLegend.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"EarthEngineLegend.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/components/Map/components/MapLayer/components/GoogleEngineLayer/components/EarthEngineLegend.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAE1C,OAAO,EAAE,uBAAuB,EAAE,MAAM,8BAA8B,CAAC;AAKvE,wBAAgB,UAAU,CAAC,EAC1B,MAAM,GACN,EAAE;IACF,MAAM,EAAE;QAAE,GAAG,EAAE,MAAM,CAAC;QAAC,GAAG,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAC;QAAC,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;CACnE,8CAcA;;;;;;;AA4FD,wBAA6C"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { EarthEngineOptions } from "../interfaces";
|
|
1
|
+
import { EarthEngineOptions } from "../interfaces/index.js";
|
|
2
2
|
export declare const EARTH_ENGINE_LAYER = "earthEngine";
|
|
3
3
|
export declare const EARTH_ENGINE_LAYERS: EarthEngineOptions[];
|
|
4
4
|
export declare const SUPPORTED_EARTH_ENGINE_LAYERS: string[];
|
|
5
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/components/Map/components/MapLayer/components/GoogleEngineLayer/constants/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,kBAAkB,EAAE,MAAM,wBAAwB,CAAC;AAE5D,eAAO,MAAM,kBAAkB,gBAAgB,CAAC;AAEhD,eAAO,MAAM,mBAAmB,EAAE,kBAAkB,EA4bnD,CAAC;AAEF,eAAO,MAAM,6BAA6B,UAIzC,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { CustomGoogleEngineLayer } from "../../../interfaces";
|
|
2
|
-
import { EarthEngineToken } from "../interfaces";
|
|
1
|
+
import { CustomGoogleEngineLayer } from "../../../interfaces/index.js";
|
|
2
|
+
import { EarthEngineToken } from "../interfaces/index.js";
|
|
3
3
|
export declare function useGoogleEngineToken(): {
|
|
4
4
|
refresh: () => Promise<{
|
|
5
5
|
token: EarthEngineToken;
|
|
@@ -7,3 +7,4 @@ export declare function useGoogleEngineToken(): {
|
|
|
7
7
|
loading: boolean;
|
|
8
8
|
};
|
|
9
9
|
export default function useGoogleEngineLayer(layerId: string): CustomGoogleEngineLayer | undefined;
|
|
10
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/components/Map/components/MapLayer/components/GoogleEngineLayer/hooks/index.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,uBAAuB,EAAE,MAAM,8BAA8B,CAAC;AACvE,OAAO,EAAE,gBAAgB,EAAE,MAAM,wBAAwB,CAAC;AAS1D,wBAAgB,oBAAoB;mBAYI,QAAQ;QAC7C,KAAK,EAAE,gBAAgB,CAAC;KACxB,CAAC;;EAGH;AAED,MAAM,CAAC,OAAO,UAAU,oBAAoB,CAC3C,OAAO,EAAE,MAAM,GACb,uBAAuB,GAAG,SAAS,CAGrC"}
|
package/dist/types/components/Map/components/MapLayer/components/GoogleEngineLayer/index.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/Map/components/MapLayer/components/GoogleEngineLayer/index.tsx"],"names":[],"mappings":"AA8MA,MAAM,CAAC,OAAO,UAAU,iBAAiB,CAAC,EAAE,OAAO,EAAE,EAAE;IAAE,OAAO,EAAE,MAAM,CAAA;CAAE,qDAqCzE"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { MapOrgUnit } from "../../../../../interfaces";
|
|
1
|
+
import { MapOrgUnit } from "../../../../../interfaces/index.js";
|
|
2
2
|
export interface EarthEngineToken {
|
|
3
3
|
access_token: string;
|
|
4
4
|
client_id: string;
|
|
@@ -56,3 +56,4 @@ export interface GoogleEngineComponentProps {
|
|
|
56
56
|
options: EarthEngineOptions;
|
|
57
57
|
orgUnits: MapOrgUnit[];
|
|
58
58
|
}
|
|
59
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/components/Map/components/MapLayer/components/GoogleEngineLayer/interfaces/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,oCAAoC,CAAC;AAEhE,MAAM,WAAW,gBAAgB;IAChC,YAAY,EAAE,MAAM,CAAC;IACrB,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,EAAE,MAAM,CAAC;CACnB;AAED,MAAM,MAAM,YAAY,GAAG,MAAM,OAAO,CAAC;IAAE,KAAK,EAAE,gBAAgB,CAAA;CAAE,CAAC,CAAC;AACtE,MAAM,MAAM,WAAW,GACpB,OAAO,GACP,iBAAiB,GACjB,SAAS,GACT,mBAAmB,CAAC;AAEvB,MAAM,WAAW,kBAAkB;IAClC,KAAK,EAAE,aAAa,CAAC;IACrB,IAAI,EAAE,WAAW,CAAC;IAClB,EAAE,EAAE,MAAM,CAAC;IACX,SAAS,EAAE,MAAM,CAAC;IAClB,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,CAAC;IACpB,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,EAAE,MAAM,CAAC;IAClB,GAAG,EAAE,MAAM,CAAC;IACZ,mBAAmB,CAAC,EAAE,MAAM,EAAE,CAAC;IAC/B,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB,MAAM,CAAC,EAAE;QACR,KAAK,EAAE;YAAE,EAAE,EAAE,MAAM,CAAC;YAAC,IAAI,EAAE,MAAM,CAAC;YAAC,KAAK,EAAE,MAAM,CAAA;SAAE,EAAE,CAAC;KACrD,CAAC;IACF,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,KAAK,CAAC,EAAE;QACP,EAAE,EAAE,MAAM,CAAC;QACX,IAAI,EAAE,GAAG,CAAC;QACV,QAAQ,CAAC,EAAE,OAAO,CAAC;KACnB,EAAE,CAAC;IACJ,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,aAAa,CAAC,EAAE,MAAM,EAAE,CAAC;IACzB,MAAM,CAAC,EAAE;QACR,GAAG,EAAE,MAAM,CAAC;QACZ,GAAG,EAAE,MAAM,CAAC;QACZ,OAAO,EAAE,MAAM,CAAC;KAChB,CAAC;IACF,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,SAAS,EAAE,QAAQ,CAAC;IACpB,YAAY,CAAC,EAAE,MAAM,EAAE,CAAC;IACxB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;CAC9B;AAED,MAAM,WAAW,0BAA0B;IAC1C,OAAO,EAAE,kBAAkB,CAAC;IAC5B,QAAQ,EAAE,UAAU,EAAE,CAAC;CACvB"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { MapOrgUnit } from "../../../../../interfaces";
|
|
2
|
-
import { EarthEngineOptions, EarthEngineToken, RefreshToken } from "../interfaces";
|
|
1
|
+
import { MapOrgUnit } from "../../../../../interfaces/index.js";
|
|
2
|
+
import { EarthEngineOptions, EarthEngineToken, RefreshToken } from "../interfaces/index.js";
|
|
3
3
|
export declare class EarthEngine {
|
|
4
4
|
token?: EarthEngineToken;
|
|
5
5
|
options: EarthEngineOptions;
|
|
@@ -53,3 +53,4 @@ export declare class EarthEngine {
|
|
|
53
53
|
protected getInstance(): void;
|
|
54
54
|
protected getImage(): any;
|
|
55
55
|
}
|
|
56
|
+
//# sourceMappingURL=engine.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"engine.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/components/Map/components/MapLayer/components/GoogleEngineLayer/services/engine.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,oCAAoC,CAAC;AAChE,OAAO,EACN,kBAAkB,EAClB,gBAAgB,EAChB,YAAY,EACZ,MAAM,wBAAwB,CAAC;AA6BhC,qBAAa,WAAW;IACvB,KAAK,CAAC,EAAE,gBAAgB,CAAC;IACzB,OAAO,EAAE,kBAAkB,CAAC;IAC5B,OAAO,CAAC,EAAE,YAAY,CAAC;IACvB,QAAQ,CAAC,EAAE,UAAU,EAAE,CAAC;IACxB,WAAW,UAAS;IACpB,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;IAC3B,QAAQ,EAAE,GAAG,CAAC;IACd,KAAK,CAAC,EAAE,GAAG,CAAC;IACZ,KAAK,EAAE,GAAG,CAAC;IACX,eAAe,EAAE,GAAG,CAAC;gBAET,EAAE,OAAO,EAAE,EAAE;QAAE,OAAO,EAAE,kBAAkB,CAAA;KAAE;WAM3C,QAAQ,CACpB,KAAK,EAAE,gBAAgB,EACvB,OAAO,EAAE,YAAY,GACnB,OAAO,CAAC,IAAI,CAAC;IAuChB,WAAW,CAAC,QAAQ,EAAE,UAAU,EAAE,GAAG,WAAW;IAKhD,SAAS,CAAC,MAAM,EAAE,MAAM;IAIlB,QAAQ,CAAC,OAAO,EAAE,GAAG,EAAE,IAAI,EAAE,MAAM;IAkBnC,SAAS;IAgBT,IAAI;IAMJ,QAAQ;IAaR,+BAA+B;IAgB/B,wBAAwB;;;;IA4CxB,eAAe;IA6CrB,cAAc,CAAC,OAAO,EAAE,UAAU;IAU5B,GAAG,IAAI,OAAO,CAAC,MAAM,CAAC;IAK5B,SAAS,CAAC,WAAW,CAAC,eAAe,EAAE,GAAG;IAO1C,SAAS,CAAC,SAAS,CAAC,KAAK,EAAE,GAAG;IAQ9B,SAAS,CAAC,SAAS,CAAC,eAAe,EAAE,GAAG;IAQxC,SAAS,CAAC,gBAAgB,CAAC,IAAI,EAAE,MAAM;IAIvC,SAAS,CAAC,iBAAiB,CAAC,OAAO,EAAE,GAAG;IAIxC,SAAS,CAAC,gBAAgB,CAAC,OAAO,EAAE,GAAG;IAgBvC,SAAS,CAAC,oBAAoB,IAAI,OAAO;IAYzC,SAAS,CAAC,mBAAmB;;;;;cAUb,SAAS,CAAC,KAAK,EAAE,GAAG,GAAG,OAAO,CAAC,MAAM,CAAC;IActD,SAAS,CAAC,0BAA0B;IAUpC,SAAS,CAAC,2BAA2B;IAYrC,SAAS,CAAC,gBAAgB;IAO1B,SAAS,CAAC,iBAAiB;IAI3B,SAAS,CAAC,kBAAkB;IAO5B,SAAS,CAAC,mBAAmB;IAI7B,SAAS,CAAC,4BAA4B;IAStC,SAAS,CAAC,6BAA6B;IAOvC,SAAS,CAAC,WAAW;IAoBrB,SAAS,CAAC,QAAQ,IAAI,GAAG;CA2BzB"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { EarthEngineOptions } from "../interfaces";
|
|
1
|
+
import { EarthEngineOptions } from "../interfaces/index.js";
|
|
2
2
|
export declare const combineReducers: (ee: any) => (types: string[]) => any;
|
|
3
3
|
export declare const getInfo: (instance: any) => Promise<unknown>;
|
|
4
4
|
export declare const getFeatureCollectionProperties: (data: any) => any;
|
|
@@ -12,9 +12,10 @@ export declare const getClassifiedImage: (eeImage: any, { legend: legends, param
|
|
|
12
12
|
};
|
|
13
13
|
};
|
|
14
14
|
export declare const hasClasses: (type: string) => boolean;
|
|
15
|
-
export declare const getHistogramStatistics: ({ data, scale, aggregationType, legend }: {
|
|
15
|
+
export declare const getHistogramStatistics: ({ data, scale, aggregationType, legend, }: {
|
|
16
16
|
data: any;
|
|
17
17
|
scale: any;
|
|
18
18
|
aggregationType: string;
|
|
19
19
|
legend: any;
|
|
20
20
|
}) => any;
|
|
21
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/components/Map/components/MapLayer/components/GoogleEngineLayer/utils/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,wBAAwB,CAAC;AAE5D,eAAO,MAAM,eAAe,OAAQ,GAAG,aAAa,MAAM,EAAE,QAU1D,CAAC;AAEH,eAAO,MAAM,OAAO,aAAc,GAAG,qBASnC,CAAC;AAEH,eAAO,MAAM,8BAA8B,SAAU,GAAG,QAOtD,CAAC;AAEH,eAAO,MAAM,QAAQ,UAAiB,GAAG,iBAExC,CAAC;AAWF,eAAO,MAAM,kBAAkB,YACrB,GAAG,+BACiB,kBAAkB;;;;;;;CAwB/C,CAAC;AAQF,eAAO,MAAM,UAAU,SAAU,MAAM,YAAoC,CAAC;AAE5E,eAAO,MAAM,sBAAsB;UAM5B,GAAG;WACF,GAAG;qBACO,MAAM;YACf,GAAG;SAkCV,CAAC"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
export default function LegendCardHeader({ title, collapsible, onCollapse }: {
|
|
1
|
+
export default function LegendCardHeader({ title, collapsible, onCollapse, }: {
|
|
3
2
|
title: string;
|
|
4
3
|
onCollapse?: () => void;
|
|
5
4
|
collapsible?: boolean;
|
|
6
|
-
}): JSX.Element;
|
|
5
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../../../src/components/Map/components/MapLayer/components/LegendArea/components/LegendCardHeader/index.tsx"],"names":[],"mappings":"AAGA,MAAM,CAAC,OAAO,UAAU,gBAAgB,CAAC,EACxC,KAAK,EACL,WAAW,EACX,UAAU,GACV,EAAE;IACF,KAAK,EAAE,MAAM,CAAC;IACd,UAAU,CAAC,EAAE,MAAM,IAAI,CAAC;IACxB,WAAW,CAAC,EAAE,OAAO,CAAC;CACtB,2CAaA"}
|
package/{build → dist}/types/components/Map/components/MapLayer/components/LegendArea/index.d.ts
RENAMED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import { ControlPosition } from "leaflet";
|
|
3
|
-
import { MapLegendConfig } from "../../../MapArea/interfaces";
|
|
4
|
-
import { CustomGoogleEngineLayer, CustomPointLayer, CustomThematicLayer } from "../../interfaces";
|
|
2
|
+
import { MapLegendConfig } from "../../../MapArea/interfaces/index.js";
|
|
3
|
+
import { CustomGoogleEngineLayer, CustomPointLayer, CustomThematicLayer } from "../../interfaces/index.js";
|
|
5
4
|
export default function LegendArea({ layers, legends: legendConfig, }: {
|
|
6
5
|
layers: Array<CustomThematicLayer | CustomPointLayer | CustomGoogleEngineLayer>;
|
|
7
6
|
position: ControlPosition;
|
|
8
7
|
legends?: MapLegendConfig;
|
|
9
|
-
}): JSX.Element;
|
|
8
|
+
}): import("react/jsx-runtime.js").JSX.Element;
|
|
9
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/Map/components/MapLayer/components/LegendArea/index.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,MAAM,SAAS,CAAC;AAG1C,OAAO,EAAE,eAAe,EAAE,MAAM,sCAAsC,CAAC;AAEvE,OAAO,EAEN,uBAAuB,EACvB,gBAAgB,EAChB,mBAAmB,EAEnB,MAAM,2BAA2B,CAAC;AAyLnC,MAAM,CAAC,OAAO,UAAU,UAAU,CAAC,EAClC,MAAM,EACN,OAAO,EAAE,YAAY,GACrB,EAAE;IACF,MAAM,EAAE,KAAK,CACZ,mBAAmB,GAAG,gBAAgB,GAAG,uBAAuB,CAChE,CAAC;IACF,QAAQ,EAAE,eAAe,CAAC;IAC1B,OAAO,CAAC,EAAE,eAAe,CAAC;CAC1B,8CAoBA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../../../src/components/Map/components/MapLayer/components/PointLayer/components/PointLegend/index.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAqB,MAAM,OAAO,CAAC;;AA+E1C,wBAAuC"}
|
package/dist/types/components/Map/components/MapLayer/components/PointLayer/hooks/index.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/components/Map/components/MapLayer/components/PointLayer/hooks/index.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,gBAAgB,EAAE,MAAM,8BAA8B,CAAC;AAEhE,wBAAgB,aAAa,qBAG5B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/Map/components/MapLayer/components/PointLayer/index.tsx"],"names":[],"mappings":"AAeA,wBAAgB,UAAU,+CAqCzB"}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
export interface BubbleProps {
|
|
3
2
|
radius: number;
|
|
4
3
|
maxRadius: number;
|
|
@@ -9,5 +8,6 @@ export interface BubbleProps {
|
|
|
9
8
|
pattern?: string;
|
|
10
9
|
gap?: number;
|
|
11
10
|
}
|
|
12
|
-
declare const Bubble: ({ radius, maxRadius, text, textAlign, color, stroke, pattern }: BubbleProps) => JSX.Element;
|
|
11
|
+
declare const Bubble: ({ radius, maxRadius, text, textAlign, color, stroke, pattern, }: BubbleProps) => import("react/jsx-runtime.js").JSX.Element;
|
|
13
12
|
export default Bubble;
|
|
13
|
+
//# sourceMappingURL=Bubble.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Bubble.d.ts","sourceRoot":"","sources":["../../../../../../../../../../../../../src/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/components/BubbleLegend/components/Bubble.tsx"],"names":[],"mappings":"AAGA,MAAM,WAAW,WAAW;IAC3B,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,EAAE,MAAM,CAAC;IAClB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,SAAS,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;IAC7B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,GAAG,CAAC,EAAE,MAAM,CAAC;CACb;AAED,QAAA,MAAM,MAAM,oEAQT,WAAW,+CA8Cb,CAAC;AAEF,eAAe,MAAM,CAAC"}
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
export declare const guideLength = 16;
|
|
3
3
|
export declare const textPadding = 4;
|
|
4
|
-
declare const _default: React.MemoExoticComponent<({ radiusLow, radiusHigh, color, classes }: {
|
|
4
|
+
declare const _default: React.MemoExoticComponent<({ radiusLow, radiusHigh, color, classes, }: {
|
|
5
5
|
radiusLow: number;
|
|
6
6
|
radiusHigh: number;
|
|
7
7
|
color?: string | undefined;
|
|
8
8
|
classes: any[];
|
|
9
|
-
}) => JSX.Element | null>;
|
|
9
|
+
}) => import("react/jsx-runtime.js").JSX.Element | null>;
|
|
10
10
|
export default _default;
|
|
11
|
+
//# sourceMappingURL=Bubbles.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Bubbles.d.ts","sourceRoot":"","sources":["../../../../../../../../../../../../../src/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/components/BubbleLegend/components/Bubbles.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAe,MAAM,OAAO,CAAC;AAcpC,eAAO,MAAM,WAAW,KAAK,CAAC;AAC9B,eAAO,MAAM,WAAW,IAAI,CAAC;;;;;;;AA+J7B,wBAA6B"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Legend } from "@hisptz/dhis2-utils";
|
|
2
2
|
import React from "react";
|
|
3
|
-
import { ThematicLayerData, ThematicLayerDataItem } from "../../../../../../interfaces";
|
|
3
|
+
import { ThematicLayerData, ThematicLayerDataItem } from "../../../../../../interfaces/index.js";
|
|
4
4
|
declare const _default: React.ForwardRefExoticComponent<{
|
|
5
5
|
radius: {
|
|
6
6
|
min: number;
|
|
@@ -14,3 +14,4 @@ declare const _default: React.ForwardRefExoticComponent<{
|
|
|
14
14
|
legends: Legend[];
|
|
15
15
|
} & React.RefAttributes<HTMLDivElement>>;
|
|
16
16
|
export default _default;
|
|
17
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../../../../../src/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/components/BubbleLegend/index.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,qBAAqB,CAAC;AAClD,OAAO,KAAqB,MAAM,OAAO,CAAC;AAC1C,OAAO,EACN,iBAAiB,EACjB,qBAAqB,EACrB,MAAM,uCAAuC,CAAC;;;;;;;;;;;;;AA4C/C,wBAAwC"}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import type { Legend } from "@hisptz/dhis2-utils";
|
|
3
|
-
import { ThematicLayerData } from "../../../../interfaces";
|
|
2
|
+
import { ThematicLayerData } from "../../../../interfaces/index.js";
|
|
4
3
|
export default function Bubble({ data, highestData, legends, radius, }: {
|
|
5
4
|
data: ThematicLayerData;
|
|
6
5
|
highestData: number;
|
|
@@ -9,4 +8,5 @@ export default function Bubble({ data, highestData, legends, radius, }: {
|
|
|
9
8
|
min: number;
|
|
10
9
|
max: number;
|
|
11
10
|
};
|
|
12
|
-
}): JSX.Element;
|
|
11
|
+
}): import("react/jsx-runtime.js").JSX.Element;
|
|
12
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../../../src/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/index.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,qBAAqB,CAAC;AASlD,OAAO,EAAE,iBAAiB,EAAE,MAAM,iCAAiC,CAAC;AAUpE,MAAM,CAAC,OAAO,UAAU,MAAM,CAAC,EAC9B,IAAI,EACJ,WAAW,EACX,OAAO,EACP,MAAM,GACN,EAAE;IACF,IAAI,EAAE,iBAAiB,CAAC;IACxB,WAAW,EAAE,MAAM,CAAC;IACpB,OAAO,EAAE,MAAM,EAAE,CAAC;IAClB,MAAM,CAAC,EAAE;QAAE,GAAG,EAAE,MAAM,CAAC;QAAC,GAAG,EAAE,MAAM,CAAA;KAAE,CAAC;CACtC,8CA+BA"}
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import "../../../styles/legends.css";
|
|
2
2
|
import type { Legend } from "@hisptz/dhis2-utils";
|
|
3
3
|
import React from "react";
|
|
4
|
-
import { ThematicLayerData, ThematicLayerDataItem } from "../../../../../interfaces";
|
|
5
|
-
export declare function LegendItem({ legend, value }: {
|
|
4
|
+
import { ThematicLayerData, ThematicLayerDataItem } from "../../../../../interfaces/index.js";
|
|
5
|
+
export declare function LegendItem({ legend, value, }: {
|
|
6
6
|
legend: {
|
|
7
7
|
startValue: number;
|
|
8
8
|
endValue: number;
|
|
9
9
|
color: string;
|
|
10
10
|
};
|
|
11
11
|
value: number;
|
|
12
|
-
}): JSX.Element;
|
|
12
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
13
13
|
declare const _default: React.ForwardRefExoticComponent<{
|
|
14
14
|
data: ThematicLayerData[];
|
|
15
15
|
dataItem: ThematicLayerDataItem;
|
|
@@ -19,3 +19,4 @@ declare const _default: React.ForwardRefExoticComponent<{
|
|
|
19
19
|
legends: Legend[];
|
|
20
20
|
} & React.RefAttributes<HTMLDivElement>>;
|
|
21
21
|
export default _default;
|
|
22
|
+
//# sourceMappingURL=ChoroplethLegend.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ChoroplethLegend.d.ts","sourceRoot":"","sources":["../../../../../../../../../../../src/components/Map/components/MapLayer/components/ThematicLayer/components/Choropleth/components/ChoroplethLegend.tsx"],"names":[],"mappings":"AAAA,OAAO,6BAA6B,CAAC;AAErC,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,qBAAqB,CAAC;AAClD,OAAO,KAAqB,MAAM,OAAO,CAAC;AAE1C,OAAO,EACN,iBAAiB,EACjB,qBAAqB,EACrB,MAAM,oCAAoC,CAAC;AAG5C,wBAAgB,UAAU,CAAC,EAC1B,MAAM,EACN,KAAK,GACL,EAAE;IACF,MAAM,EAAE;QAAE,UAAU,EAAE,MAAM,CAAC;QAAC,QAAQ,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,CAAC;IAChE,KAAK,EAAE,MAAM,CAAC;CACd,2CAWA;;;;;;;;;AAyCD,wBAA4C"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { Legend } from "@hisptz/dhis2-utils";
|
|
2
|
+
import { MapOrgUnit } from "../../../../../../interfaces/index.js";
|
|
3
|
+
import { ThematicLayerDataItem } from "../../../../interfaces/index.js";
|
|
4
|
+
export default function Choropleth({ data, legends, }: {
|
|
5
|
+
data: {
|
|
6
|
+
orgUnit: MapOrgUnit;
|
|
7
|
+
data?: number;
|
|
8
|
+
dataItem: ThematicLayerDataItem;
|
|
9
|
+
};
|
|
10
|
+
legends: Legend[];
|
|
11
|
+
}): import("react/jsx-runtime.js").JSX.Element;
|
|
12
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../../../src/components/Map/components/MapLayer/components/ThematicLayer/components/Choropleth/index.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,qBAAqB,CAAC;AAGlD,OAAO,EAAE,UAAU,EAAE,MAAM,uCAAuC,CAAC;AAMnE,OAAO,EAAE,qBAAqB,EAAE,MAAM,iCAAiC,CAAC;AAUxE,MAAM,CAAC,OAAO,UAAU,UAAU,CAAC,EAClC,IAAI,EACJ,OAAO,GACP,EAAE;IACF,IAAI,EAAE;QACL,OAAO,EAAE,UAAU,CAAC;QACpB,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,QAAQ,EAAE,qBAAqB,CAAC;KAChC,CAAC;IACF,OAAO,EAAE,MAAM,EAAE,CAAC;CAClB,8CAsBA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../../../src/components/Map/components/MapLayer/components/ThematicLayer/components/CustomTooltip/index.tsx"],"names":[],"mappings":"AAIA,OAAO,EAAE,iBAAiB,EAAE,MAAM,iCAAiC,CAAC;AAEpE,MAAM,CAAC,OAAO,UAAU,aAAa,CAAC,EACrC,IAAI,EAAE,UAAU,GAChB,EAAE;IACF,IAAI,EAAE,iBAAiB,CAAC;CACxB,8CAsBA"}
|
package/dist/types/components/Map/components/MapLayer/components/ThematicLayer/hooks/config.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/components/Map/components/MapLayer/components/ThematicLayer/hooks/config.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,mBAAmB,EAAE,MAAM,8BAA8B,CAAC;AAEnE,MAAM,CAAC,OAAO,UAAU,gBAAgB,CACvC,OAAO,EAAE,MAAM,GACb,mBAAmB,GAAG,SAAS,CAIjC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/Map/components/MapLayer/components/ThematicLayer/index.tsx"],"names":[],"mappings":"AAQA,MAAM,CAAC,OAAO,UAAU,aAAa,CAAC,EACrC,OAAO,EACP,KAAK,GACL,EAAE;IACF,OAAO,EAAE,MAAM,CAAC;IAChB,KAAK,EAAE,MAAM,CAAC;CACd,qDA8CA"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
import { CustomBoundaryLayer, CustomGoogleEngineLayer, CustomPointLayer, CustomThematicLayer } from "./interfaces";
|
|
1
|
+
import { CustomBoundaryLayer, CustomGoogleEngineLayer, CustomPointLayer, CustomThematicLayer } from "./interfaces/index.js";
|
|
3
2
|
export default function MapLayer({ layer, index, }: {
|
|
4
3
|
layer: CustomThematicLayer | CustomBoundaryLayer | CustomPointLayer | CustomGoogleEngineLayer;
|
|
5
4
|
index: number;
|
|
6
|
-
}): JSX.Element | null;
|
|
5
|
+
}): import("react/jsx-runtime.js").JSX.Element | null;
|
|
6
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/components/Map/components/MapLayer/index.tsx"],"names":[],"mappings":"AAKA,OAAO,EACN,mBAAmB,EACnB,uBAAuB,EACvB,gBAAgB,EAChB,mBAAmB,EACnB,MAAM,uBAAuB,CAAC;AAE/B,MAAM,CAAC,OAAO,UAAU,QAAQ,CAAC,EAChC,KAAK,EACL,KAAK,GACL,EAAE;IACF,KAAK,EACF,mBAAmB,GACnB,mBAAmB,GACnB,gBAAgB,GAChB,uBAAuB,CAAC;IAC3B,KAAK,EAAE,MAAM,CAAC;CACd,qDAkBA"}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import type { Legend } from "@hisptz/dhis2-utils";
|
|
2
|
-
import { MapOrgUnit, PointOrgUnit } from "../../../interfaces";
|
|
3
|
-
import { LegendColorScale } from "../../../utils/colors";
|
|
4
|
-
import { EarthEngineOptions } from "../components/GoogleEngineLayer/interfaces";
|
|
5
|
-
import { EarthEngine } from "../components/GoogleEngineLayer/services/engine";
|
|
2
|
+
import { MapOrgUnit, PointOrgUnit } from "../../../interfaces/index.js";
|
|
3
|
+
import { LegendColorScale } from "../../../utils/colors.js";
|
|
4
|
+
import { EarthEngineOptions } from "../components/GoogleEngineLayer/interfaces/index.js";
|
|
5
|
+
import { EarthEngine } from "../components/GoogleEngineLayer/services/engine.js";
|
|
6
6
|
export type BoundaryLayerType = "basemap" | "overlay";
|
|
7
7
|
export type ThematicLayerType = "choropleth" | "bubble";
|
|
8
8
|
export declare const SUPPORTED_EARTH_ENGINE_LAYERS: string[];
|
|
@@ -121,3 +121,4 @@ export interface MapLayerProps {
|
|
|
121
121
|
type: "boundary" | "thematic" | "external" | "point" | "earthEngine";
|
|
122
122
|
layer: MapLayer;
|
|
123
123
|
}
|
|
124
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/Map/components/MapLayer/interfaces/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,qBAAqB,CAAC;AAClD,OAAO,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,8BAA8B,CAAC;AACxE,OAAO,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AAC5D,OAAO,EAAE,kBAAkB,EAAE,MAAM,qDAAqD,CAAC;AACzF,OAAO,EAAE,WAAW,EAAE,MAAM,oDAAoD,CAAC;AAEjF,MAAM,MAAM,iBAAiB,GAAG,SAAS,GAAG,SAAS,CAAC;AACtD,MAAM,MAAM,iBAAiB,GAAG,YAAY,GAAG,QAAQ,CAAC;AAExD,eAAO,MAAM,6BAA6B,UAKzC,CAAC;AAEF,MAAM,MAAM,qBAAqB,GAC9B,YAAY,GACZ,YAAY,GACZ,WAAW,GACX,WAAW,CAAC;AAEf,MAAM,WAAW,mBAAoB,SAAQ,cAAc;IAC1D,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,iBAAiB,CAAC;IACxB,OAAO,EAAE,OAAO,CAAC;CACjB;AAED,MAAM,WAAW,sBAAuB,SAAQ,cAAc;IAC7D,IAAI,EAAE,qBAAqB,CAAC;IAC5B,YAAY,CAAC,EAAE,MAAM,EAAE,CAAC;IACxB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE;QACT,MAAM,EAAE,MAAM,CAAC;KACf,CAAC;IACF,MAAM,CAAC,EAAE;QACR,GAAG,EAAE,MAAM,CAAC;QACZ,GAAG,EAAE,MAAM,CAAC;QACZ,OAAO,CAAC,EAAE,MAAM,CAAC;KACjB,CAAC;CACF;AAED,MAAM,WAAW,uBAAwB,SAAQ,cAAc;IAC9D,IAAI,EAAE,qBAAqB,CAAC;IAC5B,OAAO,EAAE,kBAAkB,CAAC;IAC5B,YAAY,CAAC,EAAE,MAAM,EAAE,CAAC;IACxB,IAAI,EAAE,MAAM,CAAC;IACb,GAAG,EAAE,MAAM,CAAC;IACZ,MAAM,CAAC,EAAE,WAAW,CAAC;CACrB;AAED,MAAM,WAAW,gBAAiB,SAAQ,cAAc;IACvD,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,OAAO,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACxB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE;QACP,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,QAAQ,CAAC,EAAE,MAAM,CAAC;QAClB,aAAa,CAAC,EAAE,KAAK,CAAC;YAAE,IAAI,EAAE,MAAM,CAAC;YAAC,MAAM,EAAE,MAAM,CAAA;SAAE,CAAC,CAAC;KACxD,CAAC;IACF,MAAM,CAAC,EAAE,KAAK,CAAC,YAAY,CAAC,CAAC;CAC7B;AAED,MAAM,MAAM,YAAY,GAAG,aAAa,GAAG,WAAW,GAAG,kBAAkB,CAAC;AAE5E,MAAM,WAAW,qBAAqB;IACrC,EAAE,EAAE,MAAM,CAAC;IACX,WAAW,EAAE,MAAM,CAAC;IACpB,IAAI,EAAE,YAAY,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,YAAY,CAAC,EAAE;QACd,UAAU,EAAE,gBAAgB,CAAC;QAC7B,KAAK,EAAE,MAAM,CAAC;KACd,CAAC;CACF;AAED,MAAM,WAAW,oBAAoB;IACpC,QAAQ,EAAE,SAAS,GAAG,UAAU,GAAG,YAAY,GAAG,aAAa,CAAC;IAChE,OAAO,EAAE,OAAO,CAAC;CACjB;AAED,MAAM,WAAW,iBAAiB;IACjC,OAAO,EAAE,UAAU,CAAC;IACpB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,qBAAqB,CAAC;CAChC;AAED,MAAM,WAAW,oBAAoB;IACpC,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,qBAAsB,SAAQ,cAAc;IAC5D,OAAO,EAAE,OAAO,CAAC;IACjB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,iBAAiB,EAAE,CAAC;IAC1B,QAAQ,EAAE,qBAAqB,CAAC;IAChC,IAAI,EAAE,YAAY,CAAC;IACnB,OAAO,CAAC,EAAE,oBAAoB,CAAC;IAC/B,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;CACnB;AAED,MAAM,WAAW,iBAAkB,SAAQ,cAAc;IACxD,OAAO,EAAE,OAAO,CAAC;IACjB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,iBAAiB,EAAE,CAAC;IAC1B,QAAQ,EAAE,qBAAqB,CAAC;IAChC,IAAI,EAAE,QAAQ,CAAC;IACf,OAAO,CAAC,EAAE,oBAAoB,CAAC;IAC/B,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB,MAAM,CAAC,EAAE;QACR,GAAG,EAAE,MAAM,CAAC;QACZ,GAAG,EAAE,MAAM,CAAC;KACZ,CAAC;CACF;AAED,MAAM,MAAM,mBAAmB,GAAG,iBAAiB,GAAG,qBAAqB,CAAC;AAE5E,MAAM,WAAW,mBAAmB;IACnC,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,CAAC,EAAE,oBAAoB,EAAE,CAAC;IAC9B,OAAO,EAAE,OAAO,CAAC;IACjB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,qBAAqB,CAAC;IAChC,IAAI,EAAE,iBAAiB,CAAC;IACxB,OAAO,CAAC,EAAE,oBAAoB,CAAC;IAC/B,MAAM,CAAC,EAAE;QACR,GAAG,EAAE,MAAM,CAAC;QACZ,GAAG,EAAE,MAAM,CAAC;KACZ,CAAC;CACF;AAED,MAAM,WAAW,cAAc;IAC9B,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,OAAO,CAAC;CACjB;AAED,MAAM,MAAM,QAAQ,GACjB,mBAAmB,GACnB,mBAAmB,GACnB,gBAAgB,GAChB,uBAAuB,CAAC;AAE3B,MAAM,WAAW,aAAa;IAC7B,OAAO,EAAE,OAAO,CAAC;IACjB,IAAI,EAAE,UAAU,GAAG,UAAU,GAAG,UAAU,GAAG,OAAO,GAAG,aAAa,CAAC;IACrE,KAAK,EAAE,QAAQ,CAAC;CAChB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/components/Map/components/MapProvider/components/MapLayerProvider/hooks/index.tsx"],"names":[],"mappings":"AAmBA,OAAO,EACN,uBAAuB,EACvB,gBAAgB,EAEhB,sBAAsB,EAEtB,MAAM,iCAAiC,CAAC;AAiFzC,wBAAgB,iBAAiB,IAAI,GAAG,CAgLvC;AAED,wBAAgB,aAAa;;2BAoDnB,gBAAgB,KACrB,QAAQ,gBAAgB,GAAG,SAAS,CAAC;EA+DzC;AAED,wBAAgB,qBAAqB;6BAwB1B,sBAAsB,EAAE,KAC9B,QAAQ,uBAAuB,EAAE,CAAC;EA0DtC"}
|
package/dist/types/components/Map/components/MapProvider/components/MapLayerProvider/index.d.ts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { MapLayerConfig } from "../../../MapArea/interfaces/index.js";
|
|
3
|
+
export declare function MapLayersProvider({ layers, children, }: {
|
|
4
|
+
layers: MapLayerConfig;
|
|
5
|
+
children: React.ReactNode;
|
|
6
|
+
}): import("react/jsx-runtime.js").JSX.Element;
|
|
7
|
+
//# sourceMappingURL=index.d.ts.map
|
package/dist/types/components/Map/components/MapProvider/components/MapLayerProvider/index.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/Map/components/MapProvider/components/MapLayerProvider/index.tsx"],"names":[],"mappings":"AAIA,OAAO,KAA2C,MAAM,OAAO,CAAC;AAGhE,OAAO,EAAE,cAAc,EAAE,MAAM,sCAAsC,CAAC;AAgBtE,wBAAgB,iBAAiB,CAAC,EACjC,MAAM,EACN,QAAQ,GACR,EAAE;IACF,MAAM,EAAE,cAAc,CAAC;IACvB,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC1B,8CAmIA"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export declare function useMapOrganisationUnit(): {
|
|
2
2
|
orgUnitSelection: import("@hisptz/dhis2-utils").OrgUnitSelection;
|
|
3
|
-
orgUnits?: import("
|
|
3
|
+
orgUnits?: import("../../../index.js").MapOrgUnit[] | undefined;
|
|
4
4
|
};
|
|
5
5
|
export declare function useMapPeriods(): {
|
|
6
6
|
periods?: import("@hisptz/dhis2-utils").BasePeriod[] | undefined;
|
|
@@ -10,6 +10,7 @@ export declare function useMapPeriods(): {
|
|
|
10
10
|
} | undefined;
|
|
11
11
|
} | undefined;
|
|
12
12
|
export declare function useMapLayers(): {
|
|
13
|
-
layers: import("../../MapLayer/interfaces").CustomMapLayer[];
|
|
14
|
-
updateLayer: (id: string, updatedLayer: import("../../MapLayer/interfaces").CustomMapLayer) => void;
|
|
13
|
+
layers: import("../../MapLayer/interfaces/index.js").CustomMapLayer[];
|
|
14
|
+
updateLayer: (id: string, updatedLayer: import("../../MapLayer/interfaces/index.js").CustomMapLayer) => void;
|
|
15
15
|
};
|
|
16
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/Map/components/MapProvider/hooks/index.ts"],"names":[],"mappings":"AAOA,wBAAgB,sBAAsB;;;EAErC;AAED,wBAAgB,aAAa;;;;;;cAE5B;AAED,wBAAgB,YAAY;;;EAE3B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/components/Map/components/MapProvider/index.tsx"],"names":[],"mappings":"AAKA,OAAO,EAAc,gBAAgB,EAAE,MAAM,2BAA2B,CAAC;AA6BzE,wBAAgB,WAAW,CAAC,EAC3B,QAAQ,EACR,gBAAgB,EAChB,eAAe,GACf,EAAE,gBAAgB,qDA6ElB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/components/Map/components/MapUpdater/index.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAEtC,MAAM,CAAC,OAAO,UAAU,UAAU,CAAC,EAAE,MAAM,EAAE,EAAE;IAAE,MAAM,EAAE,WAAW,EAAE,CAAA;CAAE,8CAGvE"}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { ThematicLayerConfigModalProps } from "./types";
|
|
2
|
+
export declare function ThematicLayerConfigModal({ open, exclude, config, onClose, onChange, ...props }: ThematicLayerConfigModalProps): import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
//# sourceMappingURL=ThematicLayerConfigModal.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ThematicLayerConfigModal.d.ts","sourceRoot":"","sources":["../../../../../../src/components/Map/components/ThematicLayerConfiguration/ThematicLayerConfigModal.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,6BAA6B,EAAE,MAAM,SAAS,CAAC;AAexD,wBAAgB,wBAAwB,CAAC,EACxC,IAAI,EACJ,OAAO,EACP,MAAM,EACN,OAAO,EACP,QAAQ,EACR,GAAG,KAAK,EACR,EAAE,6BAA6B,2CA6B/B"}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { ThematicLayerConfigurationProps } from "./types/index.js";
|
|
2
|
+
export declare function ThematicLayerConfiguration({ exclude, form, }: ThematicLayerConfigurationProps): import("react/jsx-runtime.js").JSX.Element;
|
|
3
|
+
//# sourceMappingURL=ThematicLayerConfiguration.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ThematicLayerConfiguration.d.ts","sourceRoot":"","sources":["../../../../../../src/components/Map/components/ThematicLayerConfiguration/ThematicLayerConfiguration.tsx"],"names":[],"mappings":"AASA,OAAO,EAAE,+BAA+B,EAAE,MAAM,kBAAkB,CAAC;AAInE,wBAAgB,0BAA0B,CAAC,EAC1C,OAAO,EACP,IAAI,GACJ,EAAE,+BAA+B,8CAyJjC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../../../src/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/components/ColorScale/index.tsx"],"names":[],"mappings":"AAKA,QAAA,MAAM,UAAU;WAMR,MAAM;UACP,MAAM;WACL,MAAM;qBACI,MAAM,KAAK,IAAI;6CAsBhC,CAAC;AAEF,eAAe,UAAU,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"colors.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/constants/colors.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAia1B,CAAC;AAEF,eAAO,MAAM,iBAAiB,UAa7B,CAAC"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
declare const ColorScaleSelect: ({ colorClass, count, width, onChange, className, }: {
|
|
3
2
|
className?: string | undefined;
|
|
4
3
|
count: number;
|
|
5
4
|
width: number;
|
|
6
5
|
onChange: (palette: string) => void;
|
|
7
6
|
colorClass: string;
|
|
8
|
-
}) => JSX.Element;
|
|
7
|
+
}) => import("react/jsx-runtime.js").JSX.Element;
|
|
9
8
|
export default ColorScaleSelect;
|
|
9
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/index.tsx"],"names":[],"mappings":"AAaA,QAAA,MAAM,gBAAgB;;WAQd,MAAM;WACN,MAAM;wBACO,MAAM,KAAK,IAAI;gBACvB,MAAM;gDAoDlB,CAAC;AAEF,eAAe,gBAAgB,CAAC"}
|
|
@@ -7,5 +7,6 @@ export declare const cssColor: (color: any) => any;
|
|
|
7
7
|
export declare const getUniqueColor: (defaultColors: any) => (index: number) => any;
|
|
8
8
|
export declare const isDarkColor: (color: string) => boolean;
|
|
9
9
|
export declare const getContrastColor: (color: string) => "#fff" | "#000";
|
|
10
|
-
export type LegendColorScale = typeof colorScales[number];
|
|
10
|
+
export type LegendColorScale = (typeof colorScales)[number];
|
|
11
11
|
export declare const colorScales: string[];
|
|
12
|
+
//# sourceMappingURL=colors.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"colors.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/utils/colors.ts"],"names":[],"mappings":"AAOA,eAAO,MAAM,eAAe,UAAW,MAAM,WAAW,MAAM,QAE7D,CAAC;AAGF,eAAO,MAAM,aAAa,YAAa,MAAM,uBAK5C,CAAC;AAEF,eAAO,MAAM,qBAAqB,WAAW,CAAC;AAC9C,eAAO,MAAM,cAAc,IAAI,CAAC;AAChC,eAAO,MAAM,iBAAiB,KAG7B,CAAC;AAGF,eAAO,MAAM,QAAQ,UAAW,GAAG,QAQlC,CAAC;AAGF,eAAO,MAAM,cAAc,kBAAmB,GAAG,aAkBjC,MAAM,QACrB,CAAC;AAGF,eAAO,MAAM,WAAW,UAAW,MAAM,YAAsB,CAAC;AAGhE,eAAO,MAAM,gBAAgB,UAAW,MAAM,oBACT,CAAC;AACtC,MAAM,MAAM,gBAAgB,GAAG,CAAC,OAAO,WAAW,CAAC,CAAC,MAAM,CAAC,CAAC;AAC5D,eAAO,MAAM,WAAW,UAgCvB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/Map/components/ThematicLayerConfiguration/components/CustomLegend/index.tsx"],"names":[],"mappings":"AAUA,wBAAgB,YAAY,+CAqD3B"}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
export default function IndicatorSelectorModal({ onUpdate, onClose, hide, selected, disabled, ...props }: {
|
|
3
2
|
onUpdate: (data: any) => void;
|
|
4
3
|
onClose: () => void;
|
|
5
4
|
hide: boolean;
|
|
6
5
|
selected: any;
|
|
7
6
|
disabled?: string[];
|
|
8
|
-
}): JSX.Element;
|
|
7
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
//# sourceMappingURL=index.d.ts.map
|