@hisptz/dhis2-analytics 1.0.5 → 1.0.7
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/build/cjs/components/ChartAnalytics/ChartAnalytics.stories.js +253 -0
- package/build/cjs/components/ChartAnalytics/ChartAnalytics.test.js +51 -0
- package/build/cjs/components/ChartAnalytics/components/DownloadMenu/components/Menu.js +48 -0
- package/build/cjs/components/ChartAnalytics/components/DownloadMenu/constants/menu.js +34 -0
- package/build/cjs/components/ChartAnalytics/components/DownloadMenu/index.js +67 -0
- package/build/cjs/components/ChartAnalytics/components/DownloadMenu/interfaces/menu.js +1 -0
- package/{src → build/cjs}/components/ChartAnalytics/data/column-data.json +0 -0
- package/{src → build/cjs}/components/ChartAnalytics/data/complex-multi-series-data.json +0 -0
- package/{src → build/cjs}/components/ChartAnalytics/data/multi-series-data.json +0 -0
- package/{src → build/cjs}/components/ChartAnalytics/data/pie-data.json +0 -0
- package/{src → build/cjs}/components/ChartAnalytics/data/stacked-chart-data.json +0 -0
- package/build/cjs/components/ChartAnalytics/hooks/useChart.js +38 -0
- package/build/cjs/components/ChartAnalytics/index.js +69 -0
- package/build/cjs/components/ChartAnalytics/models/column.js +53 -0
- package/build/cjs/components/ChartAnalytics/models/index.js +102 -0
- package/build/cjs/components/ChartAnalytics/models/line.js +35 -0
- package/build/cjs/components/ChartAnalytics/models/multi-series.js +111 -0
- package/build/cjs/components/ChartAnalytics/models/pie.js +53 -0
- package/build/cjs/components/ChartAnalytics/services/export.js +50 -0
- package/{src → build/cjs}/components/ChartAnalytics/styles/custom-highchart.css +0 -0
- package/build/cjs/components/ChartAnalytics/types/props.js +1 -0
- package/build/cjs/components/ChartAnalytics/utils/chart.js +133 -0
- package/build/cjs/components/CircularProgressDashboard/CircularProgressIndicator.stories.js +45 -0
- package/build/cjs/components/CircularProgressDashboard/CircularProgressIndicator.test.js +13 -0
- package/build/cjs/components/CircularProgressDashboard/index.js +49 -0
- package/build/cjs/components/CircularProgressDashboard/types/props.js +1 -0
- package/build/cjs/components/Map/Map.stories.js +352 -0
- package/build/cjs/components/Map/components/EarthEngineLayerConfiguration/EarthEngineLayerConfigModal.stories.js +32 -0
- package/build/cjs/components/Map/components/EarthEngineLayerConfiguration/EarthEngineLayerConfiguration.stories.js +40 -0
- package/build/cjs/components/Map/components/EarthEngineLayerConfiguration/index.js +458 -0
- package/build/cjs/components/Map/components/MapArea/index.js +101 -0
- package/build/cjs/components/Map/components/MapArea/interfaces/index.js +1 -0
- package/build/cjs/components/Map/components/MapControls/components/CustomControl/index.js +32 -0
- package/build/cjs/components/Map/components/MapControls/components/DownloadControl/index.js +25 -0
- package/build/cjs/components/Map/components/MapControls/components/FullscreenControl/index.js +13 -0
- package/build/cjs/components/Map/components/MapControls/index.js +42 -0
- package/build/cjs/components/Map/components/MapLayer/components/BoundaryLayer/hooks/useBoundaryData.js +13 -0
- package/build/cjs/components/Map/components/MapLayer/components/BoundaryLayer/index.js +51 -0
- package/build/cjs/components/Map/components/MapLayer/components/GoogleEngineLayer/components/EarthEngineLegend.js +106 -0
- package/build/cjs/components/Map/components/MapLayer/components/GoogleEngineLayer/constants/index.js +379 -0
- package/build/cjs/components/Map/components/MapLayer/components/GoogleEngineLayer/hooks/index.js +36 -0
- package/build/cjs/components/Map/components/MapLayer/components/GoogleEngineLayer/index.js +200 -0
- package/build/cjs/components/Map/components/MapLayer/components/GoogleEngineLayer/interfaces/index.js +1 -0
- package/build/cjs/components/Map/components/MapLayer/components/GoogleEngineLayer/services/api.js +14 -0
- package/build/cjs/components/Map/components/MapLayer/components/GoogleEngineLayer/services/engine.js +412 -0
- package/build/cjs/components/Map/components/MapLayer/components/GoogleEngineLayer/utils/index.js +124 -0
- package/{src → build/cjs}/components/Map/components/MapLayer/components/LegendArea/LegendArea.module.css +0 -0
- package/build/cjs/components/Map/components/MapLayer/components/LegendArea/components/LegendCardHeader/index.js +26 -0
- package/build/cjs/components/Map/components/MapLayer/components/LegendArea/index.js +181 -0
- package/build/cjs/components/Map/components/MapLayer/components/PointLayer/components/PointLegend/index.js +86 -0
- package/build/cjs/components/Map/components/MapLayer/components/PointLayer/hooks/index.js +14 -0
- package/build/cjs/components/Map/components/MapLayer/components/PointLayer/index.js +46 -0
- package/build/cjs/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/components/BubbleLegend/components/Bubble.js +57 -0
- package/build/cjs/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/components/BubbleLegend/components/Bubbles.js +145 -0
- package/build/cjs/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/components/BubbleLegend/index.js +43 -0
- package/build/cjs/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/index.js +56 -0
- package/build/cjs/components/Map/components/MapLayer/components/ThematicLayer/components/Choropleth/components/ChoroplethLegend.js +61 -0
- package/build/cjs/components/Map/components/MapLayer/components/ThematicLayer/components/Choropleth/index.js +43 -0
- package/build/cjs/components/Map/components/MapLayer/components/ThematicLayer/components/CustomTooltip/index.js +35 -0
- package/build/cjs/components/Map/components/MapLayer/components/ThematicLayer/hooks/config.js +15 -0
- package/build/cjs/components/Map/components/MapLayer/components/ThematicLayer/index.js +57 -0
- package/{src → build/cjs}/components/Map/components/MapLayer/components/ThematicLayer/styles/legends.css +0 -0
- package/build/cjs/components/Map/components/MapLayer/index.js +40 -0
- package/build/cjs/components/Map/components/MapLayer/interfaces/index.js +8 -0
- package/build/cjs/components/Map/components/MapProvider/components/MapLayerProvider/hooks/index.js +389 -0
- package/build/cjs/components/Map/components/MapProvider/components/MapLayerProvider/index.js +116 -0
- package/build/cjs/components/Map/components/MapProvider/hooks/index.js +19 -0
- package/build/cjs/components/Map/components/MapProvider/index.js +121 -0
- package/build/cjs/components/Map/components/MapUpdater/index.js +24 -0
- package/build/cjs/components/Map/components/ThematicLayerConfiguration/ThematicLayerConfigModal.stories.js +32 -0
- package/build/cjs/components/Map/components/ThematicLayerConfiguration/ThematicLayerConfiguration.stories.js +40 -0
- package/build/cjs/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/components/ColorScale/index.js +40 -0
- package/build/cjs/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/constants/colors.js +428 -0
- package/build/cjs/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/index.js +63 -0
- package/{src → build/cjs}/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/styles/ColorScale.module.css +0 -0
- package/{src → build/cjs}/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/styles/ColorScaleSelect.module.css +0 -0
- package/build/cjs/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/utils/colors.js +72 -0
- package/build/cjs/components/Map/components/ThematicLayerConfiguration/components/CustomLegend/index.js +71 -0
- package/build/cjs/components/Map/components/ThematicLayerConfiguration/components/IndicatorSelectorModal/index.js +47 -0
- package/build/cjs/components/Map/components/ThematicLayerConfiguration/components/LegendSetSelector/index.js +79 -0
- package/build/cjs/components/Map/components/ThematicLayerConfiguration/index.js +265 -0
- package/build/cjs/components/Map/constants/colors.js +428 -0
- package/build/cjs/components/Map/constants/legendSet.js +22 -0
- package/build/cjs/components/Map/hooks/map.js +52 -0
- package/build/cjs/components/Map/index.js +108 -0
- package/build/cjs/components/Map/interfaces/index.js +1 -0
- package/build/cjs/components/Map/state/index.js +23 -0
- package/build/cjs/components/Map/utils/colors.js +78 -0
- package/build/cjs/components/Map/utils/helpers.js +25 -0
- package/build/cjs/components/Map/utils/map.js +161 -0
- package/build/cjs/components/SingleValueContainer/SingleValueContainer.stories.js +127 -0
- package/build/cjs/components/SingleValueContainer/SingleValueContainer.test.js +23 -0
- package/build/cjs/components/SingleValueContainer/components/SingleValueItem/SingleValueItem.js +54 -0
- package/build/cjs/components/SingleValueContainer/components/SingleValueItem/SingleValuePercentage.js +24 -0
- package/build/cjs/components/SingleValueContainer/index.js +43 -0
- package/{src → build/cjs}/components/SingleValueContainer/styles/SingleValueContainer.module.css +0 -0
- package/build/cjs/components/SingleValueContainer/types/props.js +1 -0
- package/{src → build/cjs}/data/map.json +0 -0
- package/build/cjs/dataProviders/map.js +31 -0
- package/build/cjs/index.js +49 -0
- package/build/cjs/locales/en/translations.json +128 -0
- package/build/cjs/locales/index.js +22 -0
- package/build/es/components/ChartAnalytics/ChartAnalytics.stories.js +235 -0
- package/build/es/components/ChartAnalytics/ChartAnalytics.test.js +46 -0
- package/build/es/components/ChartAnalytics/components/DownloadMenu/components/Menu.js +41 -0
- package/build/es/components/ChartAnalytics/components/DownloadMenu/constants/menu.js +26 -0
- package/build/es/components/ChartAnalytics/components/DownloadMenu/index.js +58 -0
- package/build/es/components/ChartAnalytics/components/DownloadMenu/interfaces/menu.js +1 -0
- package/build/es/components/ChartAnalytics/data/column-data.json +210 -0
- package/build/es/components/ChartAnalytics/data/complex-multi-series-data.json +124 -0
- package/build/es/components/ChartAnalytics/data/multi-series-data.json +536 -0
- package/build/es/components/ChartAnalytics/data/pie-data.json +115 -0
- package/build/es/components/ChartAnalytics/data/stacked-chart-data.json +415 -0
- package/build/es/components/ChartAnalytics/hooks/useChart.js +32 -0
- package/build/es/components/ChartAnalytics/index.js +40 -0
- package/build/es/components/ChartAnalytics/models/column.js +45 -0
- package/build/es/components/ChartAnalytics/models/index.js +95 -0
- package/build/es/components/ChartAnalytics/models/line.js +28 -0
- package/build/es/components/ChartAnalytics/models/multi-series.js +104 -0
- package/build/es/components/ChartAnalytics/models/pie.js +46 -0
- package/build/es/components/ChartAnalytics/services/export.js +36 -0
- package/build/es/components/ChartAnalytics/styles/custom-highchart.css +48 -0
- package/build/es/components/ChartAnalytics/types/props.js +1 -0
- package/build/es/components/ChartAnalytics/utils/chart.js +122 -0
- package/{src/components/CircularProgressDashboard/CircularProgressIndicator.stories.tsx → build/es/components/CircularProgressDashboard/CircularProgressIndicator.stories.js} +9 -16
- package/build/es/components/CircularProgressDashboard/CircularProgressIndicator.test.js +10 -0
- package/build/es/components/CircularProgressDashboard/index.js +41 -0
- package/build/es/components/CircularProgressDashboard/types/props.js +1 -0
- package/build/es/components/Map/Map.stories.js +334 -0
- package/build/es/components/Map/components/EarthEngineLayerConfiguration/EarthEngineLayerConfigModal.stories.js +23 -0
- package/build/es/components/Map/components/EarthEngineLayerConfiguration/EarthEngineLayerConfiguration.stories.js +31 -0
- package/build/es/components/Map/components/EarthEngineLayerConfiguration/index.js +448 -0
- package/build/es/components/Map/components/MapArea/index.js +91 -0
- package/build/es/components/Map/components/MapArea/interfaces/index.js +1 -0
- package/build/es/components/Map/components/MapControls/components/CustomControl/index.js +25 -0
- package/build/es/components/Map/components/MapControls/components/DownloadControl/index.js +18 -0
- package/build/es/components/Map/components/MapControls/components/FullscreenControl/index.js +6 -0
- package/build/es/components/Map/components/MapControls/index.js +35 -0
- package/build/es/components/Map/components/MapLayer/components/BoundaryLayer/hooks/useBoundaryData.js +7 -0
- package/build/es/components/Map/components/MapLayer/components/BoundaryLayer/index.js +41 -0
- package/build/es/components/Map/components/MapLayer/components/GoogleEngineLayer/components/EarthEngineLegend.js +95 -0
- package/build/es/components/Map/components/MapLayer/components/GoogleEngineLayer/constants/index.js +369 -0
- package/build/es/components/Map/components/MapLayer/components/GoogleEngineLayer/hooks/index.js +29 -0
- package/build/es/components/Map/components/MapLayer/components/GoogleEngineLayer/index.js +191 -0
- package/build/es/components/Map/components/MapLayer/components/GoogleEngineLayer/interfaces/index.js +1 -0
- package/build/es/components/Map/components/MapLayer/components/GoogleEngineLayer/services/api.js +14 -0
- package/build/es/components/Map/components/MapLayer/components/GoogleEngineLayer/services/engine.js +403 -0
- package/build/es/components/Map/components/MapLayer/components/GoogleEngineLayer/utils/index.js +111 -0
- package/build/es/components/Map/components/MapLayer/components/LegendArea/LegendArea.module.css +12 -0
- package/build/es/components/Map/components/MapLayer/components/LegendArea/components/LegendCardHeader/index.js +19 -0
- package/build/es/components/Map/components/MapLayer/components/LegendArea/index.js +172 -0
- package/build/es/components/Map/components/MapLayer/components/PointLayer/components/PointLegend/index.js +76 -0
- package/build/es/components/Map/components/MapLayer/components/PointLayer/hooks/index.js +8 -0
- package/build/es/components/Map/components/MapLayer/components/PointLayer/index.js +39 -0
- package/build/es/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/components/BubbleLegend/components/Bubble.js +49 -0
- package/{src/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/components/BubbleLegend/components/Bubbles.tsx → build/es/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/components/BubbleLegend/components/Bubbles.js} +57 -74
- package/build/es/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/components/BubbleLegend/index.js +33 -0
- package/build/es/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/index.js +47 -0
- package/build/es/components/Map/components/MapLayer/components/ThematicLayer/components/Choropleth/components/ChoroplethLegend.js +50 -0
- package/build/es/components/Map/components/MapLayer/components/ThematicLayer/components/Choropleth/index.js +36 -0
- package/build/es/components/Map/components/MapLayer/components/ThematicLayer/components/CustomTooltip/index.js +28 -0
- package/build/es/components/Map/components/MapLayer/components/ThematicLayer/hooks/config.js +9 -0
- package/build/es/components/Map/components/MapLayer/components/ThematicLayer/index.js +50 -0
- package/build/es/components/Map/components/MapLayer/components/ThematicLayer/styles/legends.css +62 -0
- package/build/es/components/Map/components/MapLayer/index.js +33 -0
- package/build/es/components/Map/components/MapLayer/interfaces/index.js +1 -0
- package/build/es/components/Map/components/MapProvider/components/MapLayerProvider/hooks/index.js +381 -0
- package/build/es/components/Map/components/MapProvider/components/MapLayerProvider/index.js +107 -0
- package/{src/components/Map/components/MapProvider/hooks/index.ts → build/es/components/Map/components/MapProvider/hooks/index.js} +3 -6
- package/build/es/components/Map/components/MapProvider/index.js +112 -0
- package/build/es/components/Map/components/MapUpdater/index.js +17 -0
- package/build/es/components/Map/components/ThematicLayerConfiguration/ThematicLayerConfigModal.stories.js +23 -0
- package/build/es/components/Map/components/ThematicLayerConfiguration/ThematicLayerConfiguration.stories.js +31 -0
- package/build/es/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/components/ColorScale/index.js +33 -0
- package/{src/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/constants/colors.ts → build/es/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/constants/colors.js} +46 -59
- package/build/es/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/index.js +53 -0
- package/build/es/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/styles/ColorScale.module.css +15 -0
- package/build/es/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/styles/ColorScaleSelect.module.css +12 -0
- package/build/es/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/utils/colors.js +56 -0
- package/build/es/components/Map/components/ThematicLayerConfiguration/components/CustomLegend/index.js +64 -0
- package/build/es/components/Map/components/ThematicLayerConfiguration/components/IndicatorSelectorModal/index.js +38 -0
- package/build/es/components/Map/components/ThematicLayerConfiguration/components/LegendSetSelector/index.js +70 -0
- package/build/es/components/Map/components/ThematicLayerConfiguration/index.js +254 -0
- package/{src/components/Map/constants/colors.ts → build/es/components/Map/constants/colors.js} +46 -59
- package/build/es/components/Map/constants/legendSet.js +15 -0
- package/build/es/components/Map/hooks/map.js +44 -0
- package/build/es/components/Map/index.js +51 -0
- package/build/es/components/Map/interfaces/index.js +1 -0
- package/build/es/components/Map/state/index.js +14 -0
- package/build/es/components/Map/utils/colors.js +61 -0
- package/build/es/components/Map/utils/helpers.js +14 -0
- package/build/es/components/Map/utils/map.js +147 -0
- package/build/es/components/SingleValueContainer/SingleValueContainer.stories.js +115 -0
- package/build/es/components/SingleValueContainer/SingleValueContainer.test.js +20 -0
- package/build/es/components/SingleValueContainer/components/SingleValueItem/SingleValueItem.js +47 -0
- package/build/es/components/SingleValueContainer/components/SingleValueItem/SingleValuePercentage.js +17 -0
- package/build/es/components/SingleValueContainer/index.js +29 -0
- package/build/es/components/SingleValueContainer/styles/SingleValueContainer.module.css +39 -0
- package/build/es/components/SingleValueContainer/types/props.js +1 -0
- package/build/es/data/map.json +5984 -0
- package/build/es/dataProviders/map.js +24 -0
- package/build/es/index.js +5 -0
- package/build/es/locales/en/translations.json +128 -0
- package/build/es/locales/index.js +13 -0
- package/build/types/components/ChartAnalytics/components/DownloadMenu/components/Menu.d.ts +8 -0
- package/build/types/components/ChartAnalytics/components/DownloadMenu/constants/menu.d.ts +7 -0
- package/build/types/components/ChartAnalytics/components/DownloadMenu/index.d.ts +9 -0
- package/{src/components/ChartAnalytics/components/DownloadMenu/interfaces/menu.ts → build/types/components/ChartAnalytics/components/DownloadMenu/interfaces/menu.d.ts} +0 -0
- package/build/types/components/ChartAnalytics/hooks/useChart.d.ts +11 -0
- package/build/types/components/ChartAnalytics/index.d.ts +9 -0
- package/build/types/components/ChartAnalytics/models/column.d.ts +12 -0
- package/build/types/components/ChartAnalytics/models/index.d.ts +17 -0
- package/build/types/components/ChartAnalytics/models/line.d.ts +8 -0
- package/build/types/components/ChartAnalytics/models/multi-series.d.ts +9 -0
- package/build/types/components/ChartAnalytics/models/pie.d.ts +8 -0
- package/build/types/components/ChartAnalytics/services/export.d.ts +8 -0
- package/build/types/components/ChartAnalytics/types/props.d.ts +43 -0
- package/build/types/components/ChartAnalytics/utils/chart.d.ts +15 -0
- package/build/types/components/CircularProgressDashboard/index.d.ts +3 -0
- package/build/types/components/CircularProgressDashboard/types/props.d.ts +17 -0
- package/build/types/components/Map/components/EarthEngineLayerConfiguration/index.d.ts +17 -0
- package/build/types/components/Map/components/MapArea/index.d.ts +5 -0
- package/build/types/components/Map/components/MapArea/interfaces/index.d.ts +30 -0
- package/build/types/components/Map/components/MapControls/components/CustomControl/index.d.ts +7 -0
- package/build/types/components/Map/components/MapControls/components/DownloadControl/index.d.ts +8 -0
- package/build/types/components/Map/components/MapControls/components/FullscreenControl/index.d.ts +5 -0
- package/build/types/components/Map/components/MapControls/index.d.ts +6 -0
- package/build/types/components/Map/components/MapLayer/components/BoundaryLayer/hooks/useBoundaryData.d.ts +1 -0
- package/build/types/components/Map/components/MapLayer/components/BoundaryLayer/index.d.ts +15 -0
- package/build/types/components/Map/components/MapLayer/components/GoogleEngineLayer/components/EarthEngineLegend.d.ts +17 -0
- package/build/types/components/Map/components/MapLayer/components/GoogleEngineLayer/constants/index.d.ts +4 -0
- package/build/types/components/Map/components/MapLayer/components/GoogleEngineLayer/hooks/index.d.ts +9 -0
- package/build/types/components/Map/components/MapLayer/components/GoogleEngineLayer/index.d.ts +4 -0
- package/build/types/components/Map/components/MapLayer/components/GoogleEngineLayer/interfaces/index.d.ts +58 -0
- package/build/types/components/Map/components/MapLayer/components/GoogleEngineLayer/services/api.d.ts +1 -0
- package/build/types/components/Map/components/MapLayer/components/GoogleEngineLayer/services/engine.d.ts +55 -0
- package/build/types/components/Map/components/MapLayer/components/GoogleEngineLayer/utils/index.d.ts +20 -0
- package/build/types/components/Map/components/MapLayer/components/LegendArea/components/LegendCardHeader/index.d.ts +6 -0
- package/build/types/components/Map/components/MapLayer/components/LegendArea/index.d.ts +9 -0
- package/build/types/components/Map/components/MapLayer/components/PointLayer/components/PointLegend/index.d.ts +3 -0
- package/build/types/components/Map/components/MapLayer/components/PointLayer/hooks/index.d.ts +2 -0
- package/build/types/components/Map/components/MapLayer/components/PointLayer/index.d.ts +2 -0
- package/build/types/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/components/BubbleLegend/components/Bubble.d.ts +13 -0
- package/build/types/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/components/BubbleLegend/components/Bubbles.d.ts +10 -0
- package/build/types/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/components/BubbleLegend/index.d.ts +16 -0
- package/build/types/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/index.d.ts +12 -0
- package/build/types/components/Map/components/MapLayer/components/ThematicLayer/components/Choropleth/components/ChoroplethLegend.d.ts +21 -0
- package/build/types/components/Map/components/MapLayer/components/ThematicLayer/components/Choropleth/index.d.ts +12 -0
- package/build/types/components/Map/components/MapLayer/components/ThematicLayer/components/CustomTooltip/index.d.ts +5 -0
- package/build/types/components/Map/components/MapLayer/components/ThematicLayer/hooks/config.d.ts +2 -0
- package/build/types/components/Map/components/MapLayer/components/ThematicLayer/index.d.ts +5 -0
- package/build/types/components/Map/components/MapLayer/index.d.ts +6 -0
- package/build/types/components/Map/components/MapLayer/interfaces/index.d.ts +123 -0
- package/build/types/components/Map/components/MapProvider/components/MapLayerProvider/hooks/index.d.ts +9 -0
- package/build/types/components/Map/components/MapProvider/components/MapLayerProvider/index.d.ts +6 -0
- package/build/types/components/Map/components/MapProvider/hooks/index.d.ts +15 -0
- package/build/types/components/Map/components/MapProvider/index.d.ts +3 -0
- package/build/types/components/Map/components/MapUpdater/index.d.ts +5 -0
- package/build/types/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/components/ColorScale/index.d.ts +8 -0
- package/build/types/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/constants/colors.d.ts +419 -0
- package/build/types/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/index.d.ts +9 -0
- package/build/types/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/utils/colors.d.ts +11 -0
- package/build/types/components/Map/components/ThematicLayerConfiguration/components/CustomLegend/index.d.ts +2 -0
- package/build/types/components/Map/components/ThematicLayerConfiguration/components/IndicatorSelectorModal/index.d.ts +8 -0
- package/build/types/components/Map/components/ThematicLayerConfiguration/components/LegendSetSelector/index.d.ts +9 -0
- package/build/types/components/Map/components/ThematicLayerConfiguration/index.d.ts +18 -0
- package/build/types/components/Map/constants/colors.d.ts +419 -0
- package/build/types/components/Map/constants/legendSet.d.ts +7 -0
- package/build/types/components/Map/hooks/map.d.ts +9 -0
- package/build/types/components/Map/index.d.ts +8 -0
- package/build/types/components/Map/interfaces/index.d.ts +65 -0
- package/build/types/components/Map/state/index.d.ts +20 -0
- package/build/types/components/Map/utils/colors.d.ts +12 -0
- package/build/types/components/Map/utils/helpers.d.ts +6 -0
- package/build/types/components/Map/utils/map.d.ts +40 -0
- package/build/types/components/SingleValueContainer/components/SingleValueItem/SingleValueItem.d.ts +8 -0
- package/build/types/components/SingleValueContainer/components/SingleValueItem/SingleValuePercentage.d.ts +2 -0
- package/build/types/components/SingleValueContainer/index.d.ts +5 -0
- package/build/types/components/SingleValueContainer/types/props.d.ts +15 -0
- package/build/types/dataProviders/map.d.ts +4 -0
- package/{src/index.ts → build/types/index.d.ts} +0 -0
- package/package.json +26 -5
- package/d2.config.js +0 -8
- package/i18n/en.pot +0 -409
- package/src/components/ChartAnalytics/ChartAnalytics.stories.tsx +0 -250
- package/src/components/ChartAnalytics/ChartAnalytics.test.tsx +0 -51
- package/src/components/ChartAnalytics/components/DownloadMenu/components/Menu.tsx +0 -48
- package/src/components/ChartAnalytics/components/DownloadMenu/constants/menu.ts +0 -38
- package/src/components/ChartAnalytics/components/DownloadMenu/index.tsx +0 -67
- package/src/components/ChartAnalytics/hooks/useChart.ts +0 -35
- package/src/components/ChartAnalytics/index.tsx +0 -23
- package/src/components/ChartAnalytics/models/column.ts +0 -50
- package/src/components/ChartAnalytics/models/index.ts +0 -78
- package/src/components/ChartAnalytics/models/line.ts +0 -31
- package/src/components/ChartAnalytics/models/multi-series.ts +0 -115
- package/src/components/ChartAnalytics/models/pie.ts +0 -54
- package/src/components/ChartAnalytics/services/export.ts +0 -38
- package/src/components/ChartAnalytics/types/props.tsx +0 -48
- package/src/components/ChartAnalytics/utils/chart.ts +0 -123
- package/src/components/CircularProgressDashboard/CircularProgressIndicator.test.tsx +0 -9
- package/src/components/CircularProgressDashboard/index.tsx +0 -35
- package/src/components/CircularProgressDashboard/types/props.tsx +0 -17
- package/src/components/Map/Map.stories.tsx +0 -339
- package/src/components/Map/components/EarthEngineLayerConfiguration/EarthEngineLayerConfigModal.stories.tsx +0 -28
- package/src/components/Map/components/EarthEngineLayerConfiguration/EarthEngineLayerConfiguration.stories.tsx +0 -34
- package/src/components/Map/components/EarthEngineLayerConfiguration/index.tsx +0 -412
- package/src/components/Map/components/MapArea/index.tsx +0 -83
- package/src/components/Map/components/MapArea/interfaces/index.ts +0 -39
- package/src/components/Map/components/MapControls/components/CustomControl/index.tsx +0 -24
- package/src/components/Map/components/MapControls/components/DownloadControl/index.tsx +0 -10
- package/src/components/Map/components/MapControls/components/FullscreenControl/index.tsx +0 -7
- package/src/components/Map/components/MapControls/index.tsx +0 -24
- package/src/components/Map/components/MapLayer/components/BoundaryLayer/hooks/useBoundaryData.ts +0 -7
- package/src/components/Map/components/MapLayer/components/BoundaryLayer/index.tsx +0 -55
- package/src/components/Map/components/MapLayer/components/GoogleEngineLayer/components/EarthEngineLegend.tsx +0 -76
- package/src/components/Map/components/MapLayer/components/GoogleEngineLayer/constants/index.ts +0 -430
- package/src/components/Map/components/MapLayer/components/GoogleEngineLayer/hooks/index.ts +0 -34
- package/src/components/Map/components/MapLayer/components/GoogleEngineLayer/index.tsx +0 -185
- package/src/components/Map/components/MapLayer/components/GoogleEngineLayer/interfaces/index.ts +0 -56
- package/src/components/Map/components/MapLayer/components/GoogleEngineLayer/services/api.js +0 -34233
- package/src/components/Map/components/MapLayer/components/GoogleEngineLayer/services/engine.ts +0 -431
- package/src/components/Map/components/MapLayer/components/GoogleEngineLayer/utils/index.ts +0 -105
- package/src/components/Map/components/MapLayer/components/LegendArea/components/LegendCardHeader/index.tsx +0 -17
- package/src/components/Map/components/MapLayer/components/LegendArea/index.tsx +0 -168
- package/src/components/Map/components/MapLayer/components/PointLayer/components/PointLegend/index.tsx +0 -44
- package/src/components/Map/components/MapLayer/components/PointLayer/hooks/index.ts +0 -8
- package/src/components/Map/components/MapLayer/components/PointLayer/index.tsx +0 -36
- package/src/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/components/BubbleLegend/components/Bubble.tsx +0 -48
- package/src/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/components/BubbleLegend/index.tsx +0 -39
- package/src/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/index.tsx +0 -57
- package/src/components/Map/components/MapLayer/components/ThematicLayer/components/Choropleth/components/ChoroplethLegend.tsx +0 -43
- package/src/components/Map/components/MapLayer/components/ThematicLayer/components/Choropleth/index.tsx +0 -38
- package/src/components/Map/components/MapLayer/components/ThematicLayer/components/CustomTooltip/index.tsx +0 -26
- package/src/components/Map/components/MapLayer/components/ThematicLayer/hooks/config.ts +0 -10
- package/src/components/Map/components/MapLayer/components/ThematicLayer/index.tsx +0 -46
- package/src/components/Map/components/MapLayer/index.tsx +0 -32
- package/src/components/Map/components/MapLayer/interfaces/index.ts +0 -139
- package/src/components/Map/components/MapProvider/components/MapLayerProvider/hooks/index.tsx +0 -359
- package/src/components/Map/components/MapProvider/components/MapLayerProvider/index.tsx +0 -105
- package/src/components/Map/components/MapProvider/index.tsx +0 -93
- package/src/components/Map/components/MapUpdater/index.tsx +0 -8
- package/src/components/Map/components/ThematicLayerConfiguration/ThematicLayerConfigModal.stories.tsx +0 -28
- package/src/components/Map/components/ThematicLayerConfiguration/ThematicLayerConfiguration.stories.tsx +0 -34
- package/src/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/components/ColorScale/index.tsx +0 -24
- package/src/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/index.tsx +0 -50
- package/src/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/utils/colors.ts +0 -91
- package/src/components/Map/components/ThematicLayerConfiguration/components/CustomLegend/index.tsx +0 -45
- package/src/components/Map/components/ThematicLayerConfiguration/components/IndicatorSelectorModal/index.tsx +0 -47
- package/src/components/Map/components/ThematicLayerConfiguration/components/LegendSetSelector/index.tsx +0 -57
- package/src/components/Map/components/ThematicLayerConfiguration/index.tsx +0 -248
- package/src/components/Map/constants/legendSet.ts +0 -19
- package/src/components/Map/hooks/map.ts +0 -47
- package/src/components/Map/index.tsx +0 -65
- package/src/components/Map/interfaces/index.ts +0 -57
- package/src/components/Map/state/index.tsx +0 -31
- package/src/components/Map/utils/colors.ts +0 -95
- package/src/components/Map/utils/helpers.ts +0 -15
- package/src/components/Map/utils/map.ts +0 -150
- package/src/components/SingleValueContainer/SingleValueContainer.stories.tsx +0 -146
- package/src/components/SingleValueContainer/SingleValueContainer.test.tsx +0 -24
- package/src/components/SingleValueContainer/components/SingleValueItem/SingleValueItem.tsx +0 -46
- package/src/components/SingleValueContainer/components/SingleValueItem/SingleValuePercentage.tsx +0 -12
- package/src/components/SingleValueContainer/index.tsx +0 -30
- package/src/components/SingleValueContainer/types/props.tsx +0 -16
- package/src/dataProviders/map.tsx +0 -24
- package/src/index.test.ts +0 -7
- package/tsconfig.json +0 -45
|
@@ -0,0 +1,536 @@
|
|
|
1
|
+
{
|
|
2
|
+
"headers": [
|
|
3
|
+
{
|
|
4
|
+
"name": "ou",
|
|
5
|
+
"column": "Organisation unit",
|
|
6
|
+
"valueType": "TEXT",
|
|
7
|
+
"type": "java.lang.String",
|
|
8
|
+
"hidden": false,
|
|
9
|
+
"meta": true
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"name": "pe",
|
|
13
|
+
"column": "Period",
|
|
14
|
+
"valueType": "TEXT",
|
|
15
|
+
"type": "java.lang.String",
|
|
16
|
+
"hidden": false,
|
|
17
|
+
"meta": true
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"name": "value",
|
|
21
|
+
"column": "Value",
|
|
22
|
+
"valueType": "NUMBER",
|
|
23
|
+
"type": "java.lang.Double",
|
|
24
|
+
"hidden": false,
|
|
25
|
+
"meta": false
|
|
26
|
+
}
|
|
27
|
+
],
|
|
28
|
+
"metaData": {
|
|
29
|
+
"items": {
|
|
30
|
+
"202107": {
|
|
31
|
+
"uid": "202107",
|
|
32
|
+
"code": "202107",
|
|
33
|
+
"name": "July 2021",
|
|
34
|
+
"dimensionItemType": "PERIOD",
|
|
35
|
+
"valueType": "NUMBER",
|
|
36
|
+
"totalAggregationType": "SUM",
|
|
37
|
+
"startDate": "2021-07-01T00:00:00.000",
|
|
38
|
+
"endDate": "2021-07-31T00:00:00.000"
|
|
39
|
+
},
|
|
40
|
+
"202108": {
|
|
41
|
+
"uid": "202108",
|
|
42
|
+
"code": "202108",
|
|
43
|
+
"name": "August 2021",
|
|
44
|
+
"dimensionItemType": "PERIOD",
|
|
45
|
+
"valueType": "NUMBER",
|
|
46
|
+
"totalAggregationType": "SUM",
|
|
47
|
+
"startDate": "2021-08-01T00:00:00.000",
|
|
48
|
+
"endDate": "2021-08-31T00:00:00.000"
|
|
49
|
+
},
|
|
50
|
+
"202109": {
|
|
51
|
+
"uid": "202109",
|
|
52
|
+
"code": "202109",
|
|
53
|
+
"name": "September 2021",
|
|
54
|
+
"dimensionItemType": "PERIOD",
|
|
55
|
+
"valueType": "NUMBER",
|
|
56
|
+
"totalAggregationType": "SUM",
|
|
57
|
+
"startDate": "2021-09-01T00:00:00.000",
|
|
58
|
+
"endDate": "2021-09-30T00:00:00.000"
|
|
59
|
+
},
|
|
60
|
+
"202110": {
|
|
61
|
+
"uid": "202110",
|
|
62
|
+
"code": "202110",
|
|
63
|
+
"name": "October 2021",
|
|
64
|
+
"dimensionItemType": "PERIOD",
|
|
65
|
+
"valueType": "NUMBER",
|
|
66
|
+
"totalAggregationType": "SUM",
|
|
67
|
+
"startDate": "2021-10-01T00:00:00.000",
|
|
68
|
+
"endDate": "2021-10-31T00:00:00.000"
|
|
69
|
+
},
|
|
70
|
+
"202111": {
|
|
71
|
+
"uid": "202111",
|
|
72
|
+
"code": "202111",
|
|
73
|
+
"name": "November 2021",
|
|
74
|
+
"dimensionItemType": "PERIOD",
|
|
75
|
+
"valueType": "NUMBER",
|
|
76
|
+
"totalAggregationType": "SUM",
|
|
77
|
+
"startDate": "2021-11-01T00:00:00.000",
|
|
78
|
+
"endDate": "2021-11-30T00:00:00.000"
|
|
79
|
+
},
|
|
80
|
+
"202112": {
|
|
81
|
+
"uid": "202112",
|
|
82
|
+
"code": "202112",
|
|
83
|
+
"name": "December 2021",
|
|
84
|
+
"dimensionItemType": "PERIOD",
|
|
85
|
+
"valueType": "NUMBER",
|
|
86
|
+
"totalAggregationType": "SUM",
|
|
87
|
+
"startDate": "2021-12-01T00:00:00.000",
|
|
88
|
+
"endDate": "2021-12-31T00:00:00.000"
|
|
89
|
+
},
|
|
90
|
+
"202201": {
|
|
91
|
+
"uid": "202201",
|
|
92
|
+
"code": "202201",
|
|
93
|
+
"name": "January 2022",
|
|
94
|
+
"dimensionItemType": "PERIOD",
|
|
95
|
+
"valueType": "NUMBER",
|
|
96
|
+
"totalAggregationType": "SUM",
|
|
97
|
+
"startDate": "2022-01-01T00:00:00.000",
|
|
98
|
+
"endDate": "2022-01-31T00:00:00.000"
|
|
99
|
+
},
|
|
100
|
+
"202202": {
|
|
101
|
+
"uid": "202202",
|
|
102
|
+
"code": "202202",
|
|
103
|
+
"name": "February 2022",
|
|
104
|
+
"dimensionItemType": "PERIOD",
|
|
105
|
+
"valueType": "NUMBER",
|
|
106
|
+
"totalAggregationType": "SUM",
|
|
107
|
+
"startDate": "2022-02-01T00:00:00.000",
|
|
108
|
+
"endDate": "2022-02-28T00:00:00.000"
|
|
109
|
+
},
|
|
110
|
+
"202203": {
|
|
111
|
+
"uid": "202203",
|
|
112
|
+
"code": "202203",
|
|
113
|
+
"name": "March 2022",
|
|
114
|
+
"dimensionItemType": "PERIOD",
|
|
115
|
+
"valueType": "NUMBER",
|
|
116
|
+
"totalAggregationType": "SUM",
|
|
117
|
+
"startDate": "2022-03-01T00:00:00.000",
|
|
118
|
+
"endDate": "2022-03-31T00:00:00.000"
|
|
119
|
+
},
|
|
120
|
+
"202204": {
|
|
121
|
+
"uid": "202204",
|
|
122
|
+
"code": "202204",
|
|
123
|
+
"name": "April 2022",
|
|
124
|
+
"dimensionItemType": "PERIOD",
|
|
125
|
+
"valueType": "NUMBER",
|
|
126
|
+
"totalAggregationType": "SUM",
|
|
127
|
+
"startDate": "2022-04-01T00:00:00.000",
|
|
128
|
+
"endDate": "2022-04-30T00:00:00.000"
|
|
129
|
+
},
|
|
130
|
+
"202205": {
|
|
131
|
+
"uid": "202205",
|
|
132
|
+
"code": "202205",
|
|
133
|
+
"name": "May 2022",
|
|
134
|
+
"dimensionItemType": "PERIOD",
|
|
135
|
+
"valueType": "NUMBER",
|
|
136
|
+
"totalAggregationType": "SUM",
|
|
137
|
+
"startDate": "2022-05-01T00:00:00.000",
|
|
138
|
+
"endDate": "2022-05-31T00:00:00.000"
|
|
139
|
+
},
|
|
140
|
+
"202206": {
|
|
141
|
+
"uid": "202206",
|
|
142
|
+
"code": "202206",
|
|
143
|
+
"name": "June 2022",
|
|
144
|
+
"dimensionItemType": "PERIOD",
|
|
145
|
+
"valueType": "NUMBER",
|
|
146
|
+
"totalAggregationType": "SUM",
|
|
147
|
+
"startDate": "2022-06-01T00:00:00.000",
|
|
148
|
+
"endDate": "2022-06-30T00:00:00.000"
|
|
149
|
+
},
|
|
150
|
+
"sB79w2hiLp8": {
|
|
151
|
+
"uid": "sB79w2hiLp8",
|
|
152
|
+
"name": "ANC 3 Coverage",
|
|
153
|
+
"description": "Total 3rd ANC visits (Fixed and outreach) by expected number of pregnant women.",
|
|
154
|
+
"legendSet": "fqs276KXCXi",
|
|
155
|
+
"dimensionItemType": "INDICATOR",
|
|
156
|
+
"valueType": "NUMBER",
|
|
157
|
+
"totalAggregationType": "AVERAGE",
|
|
158
|
+
"indicatorType": {
|
|
159
|
+
"name": "Per cent",
|
|
160
|
+
"displayName": "Per cent",
|
|
161
|
+
"factor": 100,
|
|
162
|
+
"number": false
|
|
163
|
+
}
|
|
164
|
+
},
|
|
165
|
+
"TEQlaapDQoK": {
|
|
166
|
+
"uid": "TEQlaapDQoK",
|
|
167
|
+
"code": "OU_254945",
|
|
168
|
+
"name": "Port Loko",
|
|
169
|
+
"dimensionItemType": "ORGANISATION_UNIT",
|
|
170
|
+
"valueType": "NUMBER",
|
|
171
|
+
"totalAggregationType": "SUM"
|
|
172
|
+
},
|
|
173
|
+
"Vth0fbpFcsO": {
|
|
174
|
+
"uid": "Vth0fbpFcsO",
|
|
175
|
+
"code": "OU_233310",
|
|
176
|
+
"name": "Kono",
|
|
177
|
+
"dimensionItemType": "ORGANISATION_UNIT",
|
|
178
|
+
"valueType": "NUMBER",
|
|
179
|
+
"totalAggregationType": "SUM"
|
|
180
|
+
},
|
|
181
|
+
"ou": {
|
|
182
|
+
"uid": "ou",
|
|
183
|
+
"name": "Organisation unit",
|
|
184
|
+
"dimensionType": "ORGANISATION_UNIT"
|
|
185
|
+
},
|
|
186
|
+
"bL4ooGhyHRQ": {
|
|
187
|
+
"uid": "bL4ooGhyHRQ",
|
|
188
|
+
"code": "OU_260377",
|
|
189
|
+
"name": "Pujehun",
|
|
190
|
+
"dimensionItemType": "ORGANISATION_UNIT",
|
|
191
|
+
"valueType": "NUMBER",
|
|
192
|
+
"totalAggregationType": "SUM"
|
|
193
|
+
},
|
|
194
|
+
"wjP19dkFeIk": {
|
|
195
|
+
"uid": "wjP19dkFeIk",
|
|
196
|
+
"name": "District"
|
|
197
|
+
},
|
|
198
|
+
"LAST_12_MONTHS": {
|
|
199
|
+
"name": "Last 12 months"
|
|
200
|
+
},
|
|
201
|
+
"dx": {
|
|
202
|
+
"uid": "dx",
|
|
203
|
+
"name": "Data",
|
|
204
|
+
"dimensionType": "DATA_X"
|
|
205
|
+
},
|
|
206
|
+
"pe": {
|
|
207
|
+
"uid": "pe",
|
|
208
|
+
"name": "Period",
|
|
209
|
+
"dimensionType": "PERIOD"
|
|
210
|
+
},
|
|
211
|
+
"qhqAxPSTUXp": {
|
|
212
|
+
"uid": "qhqAxPSTUXp",
|
|
213
|
+
"code": "OU_226213",
|
|
214
|
+
"name": "Koinadugu",
|
|
215
|
+
"dimensionItemType": "ORGANISATION_UNIT",
|
|
216
|
+
"valueType": "NUMBER",
|
|
217
|
+
"totalAggregationType": "SUM"
|
|
218
|
+
},
|
|
219
|
+
"jmIPBj66vD6": {
|
|
220
|
+
"uid": "jmIPBj66vD6",
|
|
221
|
+
"code": "OU_246990",
|
|
222
|
+
"name": "Moyamba",
|
|
223
|
+
"dimensionItemType": "ORGANISATION_UNIT",
|
|
224
|
+
"valueType": "NUMBER",
|
|
225
|
+
"totalAggregationType": "SUM"
|
|
226
|
+
}
|
|
227
|
+
},
|
|
228
|
+
"dimensions": {
|
|
229
|
+
"dx": [
|
|
230
|
+
"sB79w2hiLp8"
|
|
231
|
+
],
|
|
232
|
+
"pe": [
|
|
233
|
+
"202107",
|
|
234
|
+
"202108",
|
|
235
|
+
"202109",
|
|
236
|
+
"202110",
|
|
237
|
+
"202111",
|
|
238
|
+
"202112",
|
|
239
|
+
"202201",
|
|
240
|
+
"202202",
|
|
241
|
+
"202203",
|
|
242
|
+
"202204",
|
|
243
|
+
"202205",
|
|
244
|
+
"202206"
|
|
245
|
+
],
|
|
246
|
+
"ou": [
|
|
247
|
+
"qhqAxPSTUXp",
|
|
248
|
+
"Vth0fbpFcsO",
|
|
249
|
+
"jmIPBj66vD6",
|
|
250
|
+
"TEQlaapDQoK",
|
|
251
|
+
"bL4ooGhyHRQ"
|
|
252
|
+
],
|
|
253
|
+
"co": []
|
|
254
|
+
}
|
|
255
|
+
},
|
|
256
|
+
"rows": [
|
|
257
|
+
[
|
|
258
|
+
"qhqAxPSTUXp",
|
|
259
|
+
"202107",
|
|
260
|
+
"40.2"
|
|
261
|
+
],
|
|
262
|
+
[
|
|
263
|
+
"qhqAxPSTUXp",
|
|
264
|
+
"202108",
|
|
265
|
+
"49.3"
|
|
266
|
+
],
|
|
267
|
+
[
|
|
268
|
+
"qhqAxPSTUXp",
|
|
269
|
+
"202109",
|
|
270
|
+
"66.0"
|
|
271
|
+
],
|
|
272
|
+
[
|
|
273
|
+
"qhqAxPSTUXp",
|
|
274
|
+
"202111",
|
|
275
|
+
"62.8"
|
|
276
|
+
],
|
|
277
|
+
[
|
|
278
|
+
"qhqAxPSTUXp",
|
|
279
|
+
"202201",
|
|
280
|
+
"39.6"
|
|
281
|
+
],
|
|
282
|
+
[
|
|
283
|
+
"qhqAxPSTUXp",
|
|
284
|
+
"202202",
|
|
285
|
+
"42.8"
|
|
286
|
+
],
|
|
287
|
+
[
|
|
288
|
+
"qhqAxPSTUXp",
|
|
289
|
+
"202203",
|
|
290
|
+
"41.5"
|
|
291
|
+
],
|
|
292
|
+
[
|
|
293
|
+
"qhqAxPSTUXp",
|
|
294
|
+
"202204",
|
|
295
|
+
"45.0"
|
|
296
|
+
],
|
|
297
|
+
[
|
|
298
|
+
"qhqAxPSTUXp",
|
|
299
|
+
"202205",
|
|
300
|
+
"45.1"
|
|
301
|
+
],
|
|
302
|
+
[
|
|
303
|
+
"qhqAxPSTUXp",
|
|
304
|
+
"202206",
|
|
305
|
+
"44.6"
|
|
306
|
+
],
|
|
307
|
+
[
|
|
308
|
+
"Vth0fbpFcsO",
|
|
309
|
+
"202107",
|
|
310
|
+
"46.6"
|
|
311
|
+
],
|
|
312
|
+
[
|
|
313
|
+
"Vth0fbpFcsO",
|
|
314
|
+
"202108",
|
|
315
|
+
"35.3"
|
|
316
|
+
],
|
|
317
|
+
[
|
|
318
|
+
"Vth0fbpFcsO",
|
|
319
|
+
"202109",
|
|
320
|
+
"50.0"
|
|
321
|
+
],
|
|
322
|
+
[
|
|
323
|
+
"Vth0fbpFcsO",
|
|
324
|
+
"202112",
|
|
325
|
+
"47.3"
|
|
326
|
+
],
|
|
327
|
+
[
|
|
328
|
+
"Vth0fbpFcsO",
|
|
329
|
+
"202201",
|
|
330
|
+
"19.0"
|
|
331
|
+
],
|
|
332
|
+
[
|
|
333
|
+
"Vth0fbpFcsO",
|
|
334
|
+
"202202",
|
|
335
|
+
"61.9"
|
|
336
|
+
],
|
|
337
|
+
[
|
|
338
|
+
"Vth0fbpFcsO",
|
|
339
|
+
"202203",
|
|
340
|
+
"56.6"
|
|
341
|
+
],
|
|
342
|
+
[
|
|
343
|
+
"Vth0fbpFcsO",
|
|
344
|
+
"202204",
|
|
345
|
+
"49.5"
|
|
346
|
+
],
|
|
347
|
+
[
|
|
348
|
+
"Vth0fbpFcsO",
|
|
349
|
+
"202205",
|
|
350
|
+
"39.8"
|
|
351
|
+
],
|
|
352
|
+
[
|
|
353
|
+
"Vth0fbpFcsO",
|
|
354
|
+
"202206",
|
|
355
|
+
"48.4"
|
|
356
|
+
],
|
|
357
|
+
[
|
|
358
|
+
"jmIPBj66vD6",
|
|
359
|
+
"202107",
|
|
360
|
+
"97.6"
|
|
361
|
+
],
|
|
362
|
+
[
|
|
363
|
+
"jmIPBj66vD6",
|
|
364
|
+
"202108",
|
|
365
|
+
"90.2"
|
|
366
|
+
],
|
|
367
|
+
[
|
|
368
|
+
"jmIPBj66vD6",
|
|
369
|
+
"202109",
|
|
370
|
+
"100.8"
|
|
371
|
+
],
|
|
372
|
+
[
|
|
373
|
+
"jmIPBj66vD6",
|
|
374
|
+
"202110",
|
|
375
|
+
"87.3"
|
|
376
|
+
],
|
|
377
|
+
[
|
|
378
|
+
"jmIPBj66vD6",
|
|
379
|
+
"202111",
|
|
380
|
+
"92.4"
|
|
381
|
+
],
|
|
382
|
+
[
|
|
383
|
+
"jmIPBj66vD6",
|
|
384
|
+
"202112",
|
|
385
|
+
"72.2"
|
|
386
|
+
],
|
|
387
|
+
[
|
|
388
|
+
"jmIPBj66vD6",
|
|
389
|
+
"202201",
|
|
390
|
+
"92.8"
|
|
391
|
+
],
|
|
392
|
+
[
|
|
393
|
+
"jmIPBj66vD6",
|
|
394
|
+
"202202",
|
|
395
|
+
"100.8"
|
|
396
|
+
],
|
|
397
|
+
[
|
|
398
|
+
"jmIPBj66vD6",
|
|
399
|
+
"202203",
|
|
400
|
+
"94.1"
|
|
401
|
+
],
|
|
402
|
+
[
|
|
403
|
+
"jmIPBj66vD6",
|
|
404
|
+
"202204",
|
|
405
|
+
"104.8"
|
|
406
|
+
],
|
|
407
|
+
[
|
|
408
|
+
"jmIPBj66vD6",
|
|
409
|
+
"202205",
|
|
410
|
+
"102.0"
|
|
411
|
+
],
|
|
412
|
+
[
|
|
413
|
+
"jmIPBj66vD6",
|
|
414
|
+
"202206",
|
|
415
|
+
"97.6"
|
|
416
|
+
],
|
|
417
|
+
[
|
|
418
|
+
"TEQlaapDQoK",
|
|
419
|
+
"202107",
|
|
420
|
+
"54.3"
|
|
421
|
+
],
|
|
422
|
+
[
|
|
423
|
+
"TEQlaapDQoK",
|
|
424
|
+
"202108",
|
|
425
|
+
"57.3"
|
|
426
|
+
],
|
|
427
|
+
[
|
|
428
|
+
"TEQlaapDQoK",
|
|
429
|
+
"202109",
|
|
430
|
+
"59.7"
|
|
431
|
+
],
|
|
432
|
+
[
|
|
433
|
+
"TEQlaapDQoK",
|
|
434
|
+
"202110",
|
|
435
|
+
"52.6"
|
|
436
|
+
],
|
|
437
|
+
[
|
|
438
|
+
"TEQlaapDQoK",
|
|
439
|
+
"202111",
|
|
440
|
+
"57.8"
|
|
441
|
+
],
|
|
442
|
+
[
|
|
443
|
+
"TEQlaapDQoK",
|
|
444
|
+
"202201",
|
|
445
|
+
"41.3"
|
|
446
|
+
],
|
|
447
|
+
[
|
|
448
|
+
"TEQlaapDQoK",
|
|
449
|
+
"202202",
|
|
450
|
+
"46.4"
|
|
451
|
+
],
|
|
452
|
+
[
|
|
453
|
+
"TEQlaapDQoK",
|
|
454
|
+
"202203",
|
|
455
|
+
"39.9"
|
|
456
|
+
],
|
|
457
|
+
[
|
|
458
|
+
"TEQlaapDQoK",
|
|
459
|
+
"202204",
|
|
460
|
+
"51.4"
|
|
461
|
+
],
|
|
462
|
+
[
|
|
463
|
+
"TEQlaapDQoK",
|
|
464
|
+
"202205",
|
|
465
|
+
"62.9"
|
|
466
|
+
],
|
|
467
|
+
[
|
|
468
|
+
"TEQlaapDQoK",
|
|
469
|
+
"202206",
|
|
470
|
+
"62.4"
|
|
471
|
+
],
|
|
472
|
+
[
|
|
473
|
+
"bL4ooGhyHRQ",
|
|
474
|
+
"202107",
|
|
475
|
+
"76.3"
|
|
476
|
+
],
|
|
477
|
+
[
|
|
478
|
+
"bL4ooGhyHRQ",
|
|
479
|
+
"202108",
|
|
480
|
+
"81.0"
|
|
481
|
+
],
|
|
482
|
+
[
|
|
483
|
+
"bL4ooGhyHRQ",
|
|
484
|
+
"202109",
|
|
485
|
+
"89.0"
|
|
486
|
+
],
|
|
487
|
+
[
|
|
488
|
+
"bL4ooGhyHRQ",
|
|
489
|
+
"202110",
|
|
490
|
+
"0.6"
|
|
491
|
+
],
|
|
492
|
+
[
|
|
493
|
+
"bL4ooGhyHRQ",
|
|
494
|
+
"202111",
|
|
495
|
+
"1.2"
|
|
496
|
+
],
|
|
497
|
+
[
|
|
498
|
+
"bL4ooGhyHRQ",
|
|
499
|
+
"202112",
|
|
500
|
+
"0.4"
|
|
501
|
+
],
|
|
502
|
+
[
|
|
503
|
+
"bL4ooGhyHRQ",
|
|
504
|
+
"202201",
|
|
505
|
+
"71.9"
|
|
506
|
+
],
|
|
507
|
+
[
|
|
508
|
+
"bL4ooGhyHRQ",
|
|
509
|
+
"202202",
|
|
510
|
+
"74.7"
|
|
511
|
+
],
|
|
512
|
+
[
|
|
513
|
+
"bL4ooGhyHRQ",
|
|
514
|
+
"202203",
|
|
515
|
+
"59.8"
|
|
516
|
+
],
|
|
517
|
+
[
|
|
518
|
+
"bL4ooGhyHRQ",
|
|
519
|
+
"202204",
|
|
520
|
+
"81.9"
|
|
521
|
+
],
|
|
522
|
+
[
|
|
523
|
+
"bL4ooGhyHRQ",
|
|
524
|
+
"202205",
|
|
525
|
+
"73.8"
|
|
526
|
+
],
|
|
527
|
+
[
|
|
528
|
+
"bL4ooGhyHRQ",
|
|
529
|
+
"202206",
|
|
530
|
+
"89.0"
|
|
531
|
+
]
|
|
532
|
+
],
|
|
533
|
+
"height": 55,
|
|
534
|
+
"width": 3,
|
|
535
|
+
"headerWidth": 3
|
|
536
|
+
}
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
{
|
|
2
|
+
"headers": [
|
|
3
|
+
{
|
|
4
|
+
"name": "dx",
|
|
5
|
+
"column": "Data",
|
|
6
|
+
"valueType": "TEXT",
|
|
7
|
+
"type": "java.lang.String",
|
|
8
|
+
"hidden": false,
|
|
9
|
+
"meta": true
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"name": "value",
|
|
13
|
+
"column": "Value",
|
|
14
|
+
"valueType": "NUMBER",
|
|
15
|
+
"type": "java.lang.Double",
|
|
16
|
+
"hidden": false,
|
|
17
|
+
"meta": false
|
|
18
|
+
}
|
|
19
|
+
],
|
|
20
|
+
"metaData": {
|
|
21
|
+
"items": {
|
|
22
|
+
"2022": {
|
|
23
|
+
"name": "2022"
|
|
24
|
+
},
|
|
25
|
+
"psbwp3CQEhs": {
|
|
26
|
+
"name": "Fixed, >1y"
|
|
27
|
+
},
|
|
28
|
+
"ou": {
|
|
29
|
+
"name": "Organisation unit"
|
|
30
|
+
},
|
|
31
|
+
"Prlt0C1RF0s": {
|
|
32
|
+
"name": "Fixed, <1y"
|
|
33
|
+
},
|
|
34
|
+
"hEFKSsPV5et": {
|
|
35
|
+
"name": "Outreach, >1y"
|
|
36
|
+
},
|
|
37
|
+
"THIS_YEAR": {
|
|
38
|
+
"name": "This year"
|
|
39
|
+
},
|
|
40
|
+
"V6L425pT3A0": {
|
|
41
|
+
"name": "Outreach, <1y"
|
|
42
|
+
},
|
|
43
|
+
"fClA2Erf6IO": {
|
|
44
|
+
"name": "Penta1 doses given"
|
|
45
|
+
},
|
|
46
|
+
"I78gJm4KBo7": {
|
|
47
|
+
"name": "Penta2 doses given"
|
|
48
|
+
},
|
|
49
|
+
"ImspTQPwCqd": {
|
|
50
|
+
"name": "Sierra Leone"
|
|
51
|
+
},
|
|
52
|
+
"YtbsuPPo010": {
|
|
53
|
+
"name": "Measles doses given"
|
|
54
|
+
},
|
|
55
|
+
"dx": {
|
|
56
|
+
"name": "Data"
|
|
57
|
+
},
|
|
58
|
+
"pe": {
|
|
59
|
+
"name": "Period"
|
|
60
|
+
},
|
|
61
|
+
"s46m5MS0hxu": {
|
|
62
|
+
"name": "BCG doses given"
|
|
63
|
+
},
|
|
64
|
+
"l6byfWFUGaP": {
|
|
65
|
+
"name": "Yellow Fever doses given"
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
"dimensions": {
|
|
69
|
+
"dx": [
|
|
70
|
+
"YtbsuPPo010",
|
|
71
|
+
"s46m5MS0hxu",
|
|
72
|
+
"l6byfWFUGaP",
|
|
73
|
+
"fClA2Erf6IO",
|
|
74
|
+
"I78gJm4KBo7"
|
|
75
|
+
],
|
|
76
|
+
"pe": [
|
|
77
|
+
"2022"
|
|
78
|
+
],
|
|
79
|
+
"ou": [
|
|
80
|
+
"ImspTQPwCqd"
|
|
81
|
+
],
|
|
82
|
+
"co": [
|
|
83
|
+
"hEFKSsPV5et",
|
|
84
|
+
"V6L425pT3A0",
|
|
85
|
+
"psbwp3CQEhs",
|
|
86
|
+
"Prlt0C1RF0s"
|
|
87
|
+
]
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
"rows": [
|
|
91
|
+
[
|
|
92
|
+
"l6byfWFUGaP",
|
|
93
|
+
"205836.0"
|
|
94
|
+
],
|
|
95
|
+
[
|
|
96
|
+
"YtbsuPPo010",
|
|
97
|
+
"206937.0"
|
|
98
|
+
],
|
|
99
|
+
[
|
|
100
|
+
"fClA2Erf6IO",
|
|
101
|
+
"228667.0"
|
|
102
|
+
],
|
|
103
|
+
[
|
|
104
|
+
"s46m5MS0hxu",
|
|
105
|
+
"236918.0"
|
|
106
|
+
],
|
|
107
|
+
[
|
|
108
|
+
"I78gJm4KBo7",
|
|
109
|
+
"205997.0"
|
|
110
|
+
]
|
|
111
|
+
],
|
|
112
|
+
"height": 5,
|
|
113
|
+
"width": 2,
|
|
114
|
+
"headerWidth": 2
|
|
115
|
+
}
|