@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.
Files changed (724) hide show
  1. package/dist/components/ChartAnalytics/ChartAnalytics.stories.js +254 -0
  2. package/dist/components/ChartAnalytics/ChartAnalytics.stories.js.map +1 -0
  3. package/dist/components/ChartAnalytics/DHIS2Chart.js +36 -0
  4. package/dist/components/ChartAnalytics/DHIS2Chart.js.map +1 -0
  5. package/dist/components/ChartAnalytics/components/DownloadMenu/components/Menu.js +52 -0
  6. package/dist/components/ChartAnalytics/components/DownloadMenu/components/Menu.js.map +1 -0
  7. package/dist/components/ChartAnalytics/components/DownloadMenu/constants/menu.js +42 -0
  8. package/dist/components/ChartAnalytics/components/DownloadMenu/constants/menu.js.map +1 -0
  9. package/dist/components/ChartAnalytics/components/DownloadMenu/index.js +65 -0
  10. package/dist/components/ChartAnalytics/components/DownloadMenu/index.js.map +1 -0
  11. package/dist/components/ChartAnalytics/components/DownloadMenu/interfaces/menu.js +3 -0
  12. package/dist/components/ChartAnalytics/components/DownloadMenu/interfaces/menu.js.map +1 -0
  13. package/dist/components/ChartAnalytics/hooks/useChart.js +43 -0
  14. package/dist/components/ChartAnalytics/hooks/useChart.js.map +1 -0
  15. package/dist/components/ChartAnalytics/index.js +3 -0
  16. package/dist/components/ChartAnalytics/index.js.map +1 -0
  17. package/dist/components/ChartAnalytics/models/bar.js +21 -0
  18. package/dist/components/ChartAnalytics/models/bar.js.map +1 -0
  19. package/{build/es → dist}/components/ChartAnalytics/models/column.js +12 -9
  20. package/dist/components/ChartAnalytics/models/column.js.map +1 -0
  21. package/dist/components/ChartAnalytics/models/index.js +114 -0
  22. package/dist/components/ChartAnalytics/models/index.js.map +1 -0
  23. package/{build/es → dist}/components/ChartAnalytics/models/line.js +10 -7
  24. package/dist/components/ChartAnalytics/models/line.js.map +1 -0
  25. package/dist/components/ChartAnalytics/models/multi-series.js +112 -0
  26. package/dist/components/ChartAnalytics/models/multi-series.js.map +1 -0
  27. package/dist/components/ChartAnalytics/models/pie.js +53 -0
  28. package/dist/components/ChartAnalytics/models/pie.js.map +1 -0
  29. package/dist/components/ChartAnalytics/services/export.js +35 -0
  30. package/dist/components/ChartAnalytics/services/export.js.map +1 -0
  31. package/dist/components/ChartAnalytics/styles/custom-highchart.css +40 -0
  32. package/dist/components/ChartAnalytics/styles/custom-highchart.css.map +1 -0
  33. package/dist/components/ChartAnalytics/types/props.js +3 -0
  34. package/dist/components/ChartAnalytics/types/props.js.map +1 -0
  35. package/dist/components/ChartAnalytics/utils/chart.js +130 -0
  36. package/dist/components/ChartAnalytics/utils/chart.js.map +1 -0
  37. package/dist/components/CircularProgressDashboard/CircularProgressIndicator.js +66 -0
  38. package/dist/components/CircularProgressDashboard/CircularProgressIndicator.js.map +1 -0
  39. package/dist/components/CircularProgressDashboard/CircularProgressIndicator.stories.js +42 -0
  40. package/dist/components/CircularProgressDashboard/CircularProgressIndicator.stories.js.map +1 -0
  41. package/dist/components/CircularProgressDashboard/index.js +4 -0
  42. package/dist/components/CircularProgressDashboard/index.js.map +1 -0
  43. package/dist/components/CircularProgressDashboard/types/props.js +3 -0
  44. package/dist/components/CircularProgressDashboard/types/props.js.map +1 -0
  45. package/dist/components/DHIS2PivotTable/DHIS2PivotTable.js +26 -0
  46. package/dist/components/DHIS2PivotTable/DHIS2PivotTable.js.map +1 -0
  47. package/dist/components/DHIS2PivotTable/DHIS2PivotTable.stories.js +30 -0
  48. package/dist/components/DHIS2PivotTable/DHIS2PivotTable.stories.js.map +1 -0
  49. package/dist/components/DHIS2PivotTable/components/Table/index.js +10 -0
  50. package/dist/components/DHIS2PivotTable/components/Table/index.js.map +1 -0
  51. package/dist/components/DHIS2PivotTable/components/TableBody/TableBody.module.css +11 -0
  52. package/dist/components/DHIS2PivotTable/components/TableBody/TableBody.module.css.map +1 -0
  53. package/dist/components/DHIS2PivotTable/components/TableBody/index.js +106 -0
  54. package/dist/components/DHIS2PivotTable/components/TableBody/index.js.map +1 -0
  55. package/dist/components/DHIS2PivotTable/components/TableHeaders/TableHeaders.module.css +10 -0
  56. package/dist/components/DHIS2PivotTable/components/TableHeaders/TableHeaders.module.css.map +1 -0
  57. package/dist/components/DHIS2PivotTable/components/TableHeaders/index.js +94 -0
  58. package/dist/components/DHIS2PivotTable/components/TableHeaders/index.js.map +1 -0
  59. package/dist/components/DHIS2PivotTable/index.js +4 -0
  60. package/dist/components/DHIS2PivotTable/index.js.map +1 -0
  61. package/dist/components/DHIS2PivotTable/interfaces/index.js +3 -0
  62. package/dist/components/DHIS2PivotTable/interfaces/index.js.map +1 -0
  63. package/dist/components/DHIS2PivotTable/services/engine.js +87 -0
  64. package/dist/components/DHIS2PivotTable/services/engine.js.map +1 -0
  65. package/dist/components/DHIS2PivotTable/state/engine.js +17 -0
  66. package/dist/components/DHIS2PivotTable/state/engine.js.map +1 -0
  67. package/dist/components/Map/DHIS2Map.js +65 -0
  68. package/dist/components/Map/DHIS2Map.js.map +1 -0
  69. package/dist/components/Map/DHIS2Map.stories.js +366 -0
  70. package/dist/components/Map/DHIS2Map.stories.js.map +1 -0
  71. package/dist/components/Map/components/EarthEngineLayerConfiguration/EarthEngineLayerConfigModal.js +41 -0
  72. package/dist/components/Map/components/EarthEngineLayerConfiguration/EarthEngineLayerConfigModal.js.map +1 -0
  73. package/dist/components/Map/components/EarthEngineLayerConfiguration/EarthEngineLayerConfigModal.stories.js +34 -0
  74. package/dist/components/Map/components/EarthEngineLayerConfiguration/EarthEngineLayerConfigModal.stories.js.map +1 -0
  75. package/dist/components/Map/components/EarthEngineLayerConfiguration/EarthEngineLayerConfiguration.js +26 -0
  76. package/dist/components/Map/components/EarthEngineLayerConfiguration/EarthEngineLayerConfiguration.js.map +1 -0
  77. package/dist/components/Map/components/EarthEngineLayerConfiguration/EarthEngineLayerConfiguration.stories.js +21 -0
  78. package/dist/components/Map/components/EarthEngineLayerConfiguration/EarthEngineLayerConfiguration.stories.js.map +1 -0
  79. package/dist/components/Map/components/EarthEngineLayerConfiguration/components/AggregationSelector.js +67 -0
  80. package/dist/components/Map/components/EarthEngineLayerConfiguration/components/AggregationSelector.js.map +1 -0
  81. package/dist/components/Map/components/EarthEngineLayerConfiguration/components/ColorConfig.js +134 -0
  82. package/dist/components/Map/components/EarthEngineLayerConfiguration/components/ColorConfig.js.map +1 -0
  83. package/dist/components/Map/components/EarthEngineLayerConfiguration/components/Name.js +44 -0
  84. package/dist/components/Map/components/EarthEngineLayerConfiguration/components/Name.js.map +1 -0
  85. package/dist/components/Map/components/EarthEngineLayerConfiguration/components/PeriodSelector.js +67 -0
  86. package/dist/components/Map/components/EarthEngineLayerConfiguration/components/PeriodSelector.js.map +1 -0
  87. package/dist/components/Map/components/EarthEngineLayerConfiguration/components/StylesConfig.js +24 -0
  88. package/dist/components/Map/components/EarthEngineLayerConfiguration/components/StylesConfig.js.map +1 -0
  89. package/dist/components/Map/components/EarthEngineLayerConfiguration/components/TypeField.js +67 -0
  90. package/dist/components/Map/components/EarthEngineLayerConfiguration/components/TypeField.js.map +1 -0
  91. package/dist/components/Map/components/EarthEngineLayerConfiguration/hooks/data.js +45 -0
  92. package/dist/components/Map/components/EarthEngineLayerConfiguration/hooks/data.js.map +1 -0
  93. package/dist/components/Map/components/EarthEngineLayerConfiguration/index.js +4 -0
  94. package/dist/components/Map/components/EarthEngineLayerConfiguration/index.js.map +1 -0
  95. package/dist/components/Map/components/MapArea/index.js +100 -0
  96. package/dist/components/Map/components/MapArea/index.js.map +1 -0
  97. package/dist/components/Map/components/MapArea/interfaces/index.js +3 -0
  98. package/dist/components/Map/components/MapArea/interfaces/index.js.map +1 -0
  99. package/dist/components/Map/components/MapControls/components/CustomControl/index.js +16 -0
  100. package/dist/components/Map/components/MapControls/components/CustomControl/index.js.map +1 -0
  101. package/dist/components/Map/components/MapControls/components/DownloadControl/index.js +15 -0
  102. package/dist/components/Map/components/MapControls/components/DownloadControl/index.js.map +1 -0
  103. package/dist/components/Map/components/MapControls/components/FullscreenControl/index.js +13 -0
  104. package/dist/components/Map/components/MapControls/components/FullscreenControl/index.js.map +1 -0
  105. package/dist/components/Map/components/MapControls/index.js +35 -0
  106. package/dist/components/Map/components/MapControls/index.js.map +1 -0
  107. package/dist/components/Map/components/MapLayer/components/BoundaryLayer/hooks/useBoundaryData.js +10 -0
  108. package/dist/components/Map/components/MapLayer/components/BoundaryLayer/hooks/useBoundaryData.js.map +1 -0
  109. package/dist/components/Map/components/MapLayer/components/BoundaryLayer/index.js +52 -0
  110. package/dist/components/Map/components/MapLayer/components/BoundaryLayer/index.js.map +1 -0
  111. package/dist/components/Map/components/MapLayer/components/GoogleEngineLayer/components/EarthEngineLegend.js +100 -0
  112. package/dist/components/Map/components/MapLayer/components/GoogleEngineLayer/components/EarthEngineLegend.js.map +1 -0
  113. package/dist/components/Map/components/MapLayer/components/GoogleEngineLayer/constants/index.js +457 -0
  114. package/dist/components/Map/components/MapLayer/components/GoogleEngineLayer/constants/index.js.map +1 -0
  115. package/dist/components/Map/components/MapLayer/components/GoogleEngineLayer/hooks/index.js +32 -0
  116. package/dist/components/Map/components/MapLayer/components/GoogleEngineLayer/hooks/index.js.map +1 -0
  117. package/dist/components/Map/components/MapLayer/components/GoogleEngineLayer/index.js +197 -0
  118. package/dist/components/Map/components/MapLayer/components/GoogleEngineLayer/index.js.map +1 -0
  119. package/dist/components/Map/components/MapLayer/components/GoogleEngineLayer/interfaces/index.js +3 -0
  120. package/dist/components/Map/components/MapLayer/components/GoogleEngineLayer/interfaces/index.js.map +1 -0
  121. package/dist/components/Map/components/MapLayer/components/GoogleEngineLayer/services/api.js +31466 -0
  122. package/dist/components/Map/components/MapLayer/components/GoogleEngineLayer/services/api.js.map +1 -0
  123. package/{build/es → dist}/components/Map/components/MapLayer/components/GoogleEngineLayer/services/engine.js +106 -146
  124. package/dist/components/Map/components/MapLayer/components/GoogleEngineLayer/services/engine.js.map +1 -0
  125. package/dist/components/Map/components/MapLayer/components/GoogleEngineLayer/utils/index.js +93 -0
  126. package/dist/components/Map/components/MapLayer/components/GoogleEngineLayer/utils/index.js.map +1 -0
  127. package/dist/components/Map/components/MapLayer/components/LegendArea/LegendArea.module.css +10 -0
  128. package/dist/components/Map/components/MapLayer/components/LegendArea/LegendArea.module.css.map +1 -0
  129. package/dist/components/Map/components/MapLayer/components/LegendArea/components/LegendCardHeader/index.js +17 -0
  130. package/dist/components/Map/components/MapLayer/components/LegendArea/components/LegendCardHeader/index.js.map +1 -0
  131. package/dist/components/Map/components/MapLayer/components/LegendArea/index.js +179 -0
  132. package/dist/components/Map/components/MapLayer/components/LegendArea/index.js.map +1 -0
  133. package/dist/components/Map/components/MapLayer/components/PointLayer/components/PointLegend/index.js +92 -0
  134. package/dist/components/Map/components/MapLayer/components/PointLayer/components/PointLegend/index.js.map +1 -0
  135. package/dist/components/Map/components/MapLayer/components/PointLayer/hooks/index.js +11 -0
  136. package/dist/components/Map/components/MapLayer/components/PointLayer/hooks/index.js.map +1 -0
  137. package/dist/components/Map/components/MapLayer/components/PointLayer/index.js +48 -0
  138. package/dist/components/Map/components/MapLayer/components/PointLayer/index.js.map +1 -0
  139. package/dist/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/components/BubbleLegend/components/Bubble.js +64 -0
  140. package/dist/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/components/BubbleLegend/components/Bubble.js.map +1 -0
  141. package/dist/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/components/BubbleLegend/components/Bubbles.js +130 -0
  142. package/dist/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/components/BubbleLegend/components/Bubbles.js.map +1 -0
  143. package/dist/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/components/BubbleLegend/index.js +41 -0
  144. package/dist/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/components/BubbleLegend/index.js.map +1 -0
  145. package/dist/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/index.js +50 -0
  146. package/dist/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/index.js.map +1 -0
  147. package/dist/components/Map/components/MapLayer/components/ThematicLayer/components/Choropleth/components/ChoroplethLegend.js +56 -0
  148. package/dist/components/Map/components/MapLayer/components/ThematicLayer/components/Choropleth/components/ChoroplethLegend.js.map +1 -0
  149. package/dist/components/Map/components/MapLayer/components/ThematicLayer/components/Choropleth/index.js +40 -0
  150. package/dist/components/Map/components/MapLayer/components/ThematicLayer/components/Choropleth/index.js.map +1 -0
  151. package/dist/components/Map/components/MapLayer/components/ThematicLayer/components/CustomTooltip/index.js +40 -0
  152. package/dist/components/Map/components/MapLayer/components/ThematicLayer/components/CustomTooltip/index.js.map +1 -0
  153. package/dist/components/Map/components/MapLayer/components/ThematicLayer/hooks/config.js +12 -0
  154. package/dist/components/Map/components/MapLayer/components/ThematicLayer/hooks/config.js.map +1 -0
  155. package/dist/components/Map/components/MapLayer/components/ThematicLayer/index.js +55 -0
  156. package/dist/components/Map/components/MapLayer/components/ThematicLayer/index.js.map +1 -0
  157. package/dist/components/Map/components/MapLayer/components/ThematicLayer/styles/legends.css +56 -0
  158. package/dist/components/Map/components/MapLayer/components/ThematicLayer/styles/legends.css.map +1 -0
  159. package/dist/components/Map/components/MapLayer/index.js +32 -0
  160. package/dist/components/Map/components/MapLayer/index.js.map +1 -0
  161. package/dist/components/Map/components/MapLayer/interfaces/index.js +10 -0
  162. package/dist/components/Map/components/MapLayer/interfaces/index.js.map +1 -0
  163. package/dist/components/Map/components/MapProvider/components/MapLayerProvider/hooks/index.js +405 -0
  164. package/dist/components/Map/components/MapProvider/components/MapLayerProvider/hooks/index.js.map +1 -0
  165. package/dist/components/Map/components/MapProvider/components/MapLayerProvider/index.js +115 -0
  166. package/dist/components/Map/components/MapProvider/components/MapLayerProvider/index.js.map +1 -0
  167. package/dist/components/Map/components/MapProvider/hooks/index.js +16 -0
  168. package/dist/components/Map/components/MapProvider/hooks/index.js.map +1 -0
  169. package/dist/components/Map/components/MapProvider/index.js +95 -0
  170. package/dist/components/Map/components/MapProvider/index.js.map +1 -0
  171. package/dist/components/Map/components/MapUpdater/index.js +11 -0
  172. package/dist/components/Map/components/MapUpdater/index.js.map +1 -0
  173. package/dist/components/Map/components/ThematicLayerConfiguration/ThematicLayerConfigModal.js +41 -0
  174. package/dist/components/Map/components/ThematicLayerConfiguration/ThematicLayerConfigModal.js.map +1 -0
  175. package/dist/components/Map/components/ThematicLayerConfiguration/ThematicLayerConfigModal.stories.js +24 -0
  176. package/dist/components/Map/components/ThematicLayerConfiguration/ThematicLayerConfigModal.stories.js.map +1 -0
  177. package/dist/components/Map/components/ThematicLayerConfiguration/ThematicLayerConfiguration.js +174 -0
  178. package/dist/components/Map/components/ThematicLayerConfiguration/ThematicLayerConfiguration.js.map +1 -0
  179. package/dist/components/Map/components/ThematicLayerConfiguration/ThematicLayerConfiguration.stories.js +21 -0
  180. package/dist/components/Map/components/ThematicLayerConfiguration/ThematicLayerConfiguration.stories.js.map +1 -0
  181. package/dist/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/components/ColorScale/index.js +36 -0
  182. package/dist/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/components/ColorScale/index.js.map +1 -0
  183. package/{build/es/components/Map → dist/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect}/constants/colors.js +18 -3
  184. package/dist/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/constants/colors.js.map +1 -0
  185. package/dist/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/index.js +71 -0
  186. package/dist/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/index.js.map +1 -0
  187. package/dist/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/styles/ColorScale.module.css +15 -0
  188. package/dist/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/styles/ColorScale.module.css.map +1 -0
  189. package/dist/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/styles/ColorScaleSelect.module.css +12 -0
  190. package/dist/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/styles/ColorScaleSelect.module.css.map +1 -0
  191. package/dist/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/utils/colors.js +82 -0
  192. package/dist/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/utils/colors.js.map +1 -0
  193. package/dist/components/Map/components/ThematicLayerConfiguration/components/CustomLegend/index.js +57 -0
  194. package/dist/components/Map/components/ThematicLayerConfiguration/components/CustomLegend/index.js.map +1 -0
  195. package/dist/components/Map/components/ThematicLayerConfiguration/components/IndicatorSelectorModal/index.js +44 -0
  196. package/dist/components/Map/components/ThematicLayerConfiguration/components/IndicatorSelectorModal/index.js.map +1 -0
  197. package/dist/components/Map/components/ThematicLayerConfiguration/components/LegendSetSelector/index.js +60 -0
  198. package/dist/components/Map/components/ThematicLayerConfiguration/components/LegendSetSelector/index.js.map +1 -0
  199. package/dist/components/Map/components/ThematicLayerConfiguration/components/RadiusField.js +54 -0
  200. package/dist/components/Map/components/ThematicLayerConfiguration/components/RadiusField.js.map +1 -0
  201. package/dist/components/Map/components/ThematicLayerConfiguration/components/TypeField.js +63 -0
  202. package/dist/components/Map/components/ThematicLayerConfiguration/components/TypeField.js.map +1 -0
  203. package/dist/components/Map/components/ThematicLayerConfiguration/index.js +5 -0
  204. package/dist/components/Map/components/ThematicLayerConfiguration/index.js.map +1 -0
  205. package/dist/components/Map/components/ThematicLayerConfiguration/types/index.js +3 -0
  206. package/dist/components/Map/components/ThematicLayerConfiguration/types/index.js.map +1 -0
  207. package/{build/es/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect → dist/components/Map}/constants/colors.js +19 -3
  208. package/dist/components/Map/constants/colors.js.map +1 -0
  209. package/dist/components/Map/constants/legendSet.js +23 -0
  210. package/dist/components/Map/constants/legendSet.js.map +1 -0
  211. package/dist/components/Map/hooks/map.js +44 -0
  212. package/dist/components/Map/hooks/map.js.map +1 -0
  213. package/dist/components/Map/index.js +7 -0
  214. package/dist/components/Map/index.js.map +1 -0
  215. package/dist/components/Map/interfaces/index.js +3 -0
  216. package/dist/components/Map/interfaces/index.js.map +1 -0
  217. package/dist/components/Map/state/index.js +18 -0
  218. package/dist/components/Map/state/index.js.map +1 -0
  219. package/dist/components/Map/utils/colors.js +85 -0
  220. package/dist/components/Map/utils/colors.js.map +1 -0
  221. package/dist/components/Map/utils/helpers.js +18 -0
  222. package/dist/components/Map/utils/helpers.js.map +1 -0
  223. package/dist/components/Map/utils/map.js +138 -0
  224. package/dist/components/Map/utils/map.js.map +1 -0
  225. package/dist/components/SingleValueContainer/SingleValueContainer.stories.js +145 -0
  226. package/dist/components/SingleValueContainer/SingleValueContainer.stories.js.map +1 -0
  227. package/dist/components/SingleValueContainer/SingleValueVisualizer.js +44 -0
  228. package/dist/components/SingleValueContainer/SingleValueVisualizer.js.map +1 -0
  229. package/dist/components/SingleValueContainer/components/SingleValueItem/SingleValueItem.js +49 -0
  230. package/dist/components/SingleValueContainer/components/SingleValueItem/SingleValueItem.js.map +1 -0
  231. package/dist/components/SingleValueContainer/components/SingleValueItem/SingleValuePercentage.js +22 -0
  232. package/dist/components/SingleValueContainer/components/SingleValueItem/SingleValuePercentage.js.map +1 -0
  233. package/dist/components/SingleValueContainer/index.js +5 -0
  234. package/dist/components/SingleValueContainer/index.js.map +1 -0
  235. package/dist/components/SingleValueContainer/styles/SingleValueContainer.module.css +32 -0
  236. package/dist/components/SingleValueContainer/styles/SingleValueContainer.module.css.map +1 -0
  237. package/dist/components/SingleValueContainer/types/props.js +3 -0
  238. package/dist/components/SingleValueContainer/types/props.js.map +1 -0
  239. package/dist/components/Visualization/components/AnalyticsDataProvider/index.js +94 -0
  240. package/dist/components/Visualization/components/AnalyticsDataProvider/index.js.map +1 -0
  241. package/dist/components/Visualization/components/DimensionsProvider/index.js +35 -0
  242. package/dist/components/Visualization/components/DimensionsProvider/index.js.map +1 -0
  243. package/dist/components/Visualization/components/LayoutProvider/index.js +18 -0
  244. package/dist/components/Visualization/components/LayoutProvider/index.js.map +1 -0
  245. package/dist/components/Visualization/components/VisualizationDimensionSelector/index.js +85 -0
  246. package/dist/components/Visualization/components/VisualizationDimensionSelector/index.js.map +1 -0
  247. package/dist/components/Visualization/components/VisualizationProvider/index.js +19 -0
  248. package/dist/components/Visualization/components/VisualizationProvider/index.js.map +1 -0
  249. package/dist/components/Visualization/components/VisualizationSelector/index.js +167 -0
  250. package/dist/components/Visualization/components/VisualizationSelector/index.js.map +1 -0
  251. package/dist/components/Visualization/components/VisualizationTypeProvider/index.js +27 -0
  252. package/dist/components/Visualization/components/VisualizationTypeProvider/index.js.map +1 -0
  253. package/dist/components/Visualization/components/VisualizationTypeSelector/index.js +55 -0
  254. package/dist/components/Visualization/components/VisualizationTypeSelector/index.js.map +1 -0
  255. package/dist/components/Visualization/index.js +113 -0
  256. package/dist/components/Visualization/index.js.map +1 -0
  257. package/dist/index.js +8 -0
  258. package/dist/index.js.map +1 -0
  259. package/dist/types/components/ChartAnalytics/DHIS2Chart.d.ts +26 -0
  260. package/dist/types/components/ChartAnalytics/DHIS2Chart.d.ts.map +1 -0
  261. package/{build → dist}/types/components/ChartAnalytics/components/DownloadMenu/components/Menu.d.ts +3 -3
  262. package/dist/types/components/ChartAnalytics/components/DownloadMenu/components/Menu.d.ts.map +1 -0
  263. package/{build → dist}/types/components/ChartAnalytics/components/DownloadMenu/constants/menu.d.ts +1 -0
  264. package/dist/types/components/ChartAnalytics/components/DownloadMenu/constants/menu.d.ts.map +1 -0
  265. package/{build → dist}/types/components/ChartAnalytics/components/DownloadMenu/index.d.ts +3 -2
  266. package/dist/types/components/ChartAnalytics/components/DownloadMenu/index.d.ts.map +1 -0
  267. package/{build → dist}/types/components/ChartAnalytics/components/DownloadMenu/interfaces/menu.d.ts +1 -0
  268. package/dist/types/components/ChartAnalytics/components/DownloadMenu/interfaces/menu.d.ts.map +1 -0
  269. package/{build → dist}/types/components/ChartAnalytics/hooks/useChart.d.ts +3 -2
  270. package/dist/types/components/ChartAnalytics/hooks/useChart.d.ts.map +1 -0
  271. package/dist/types/components/ChartAnalytics/index.d.ts +2 -0
  272. package/dist/types/components/ChartAnalytics/index.d.ts.map +1 -0
  273. package/{build → dist}/types/components/ChartAnalytics/models/bar.d.ts +2 -1
  274. package/dist/types/components/ChartAnalytics/models/bar.d.ts.map +1 -0
  275. package/{build → dist}/types/components/ChartAnalytics/models/column.d.ts +2 -1
  276. package/dist/types/components/ChartAnalytics/models/column.d.ts.map +1 -0
  277. package/{build → dist}/types/components/ChartAnalytics/models/index.d.ts +2 -1
  278. package/dist/types/components/ChartAnalytics/models/index.d.ts.map +1 -0
  279. package/{build → dist}/types/components/ChartAnalytics/models/line.d.ts +2 -1
  280. package/dist/types/components/ChartAnalytics/models/line.d.ts.map +1 -0
  281. package/{build → dist}/types/components/ChartAnalytics/models/multi-series.d.ts +2 -1
  282. package/dist/types/components/ChartAnalytics/models/multi-series.d.ts.map +1 -0
  283. package/{build → dist}/types/components/ChartAnalytics/models/pie.d.ts +2 -1
  284. package/dist/types/components/ChartAnalytics/models/pie.d.ts.map +1 -0
  285. package/{build → dist}/types/components/ChartAnalytics/services/export.d.ts +1 -0
  286. package/dist/types/components/ChartAnalytics/services/export.d.ts.map +1 -0
  287. package/{build → dist}/types/components/ChartAnalytics/types/props.d.ts +1 -0
  288. package/dist/types/components/ChartAnalytics/types/props.d.ts.map +1 -0
  289. package/{build → dist}/types/components/ChartAnalytics/utils/chart.d.ts +3 -2
  290. package/dist/types/components/ChartAnalytics/utils/chart.d.ts.map +1 -0
  291. package/dist/types/components/CircularProgressDashboard/CircularProgressIndicator.d.ts +6 -0
  292. package/dist/types/components/CircularProgressDashboard/CircularProgressIndicator.d.ts.map +1 -0
  293. package/dist/types/components/CircularProgressDashboard/index.d.ts +3 -0
  294. package/dist/types/components/CircularProgressDashboard/index.d.ts.map +1 -0
  295. package/{build → dist}/types/components/CircularProgressDashboard/types/props.d.ts +1 -0
  296. package/dist/types/components/CircularProgressDashboard/types/props.d.ts.map +1 -0
  297. package/{build/types/components/CustomPivotTable/index.d.ts → dist/types/components/DHIS2PivotTable/DHIS2PivotTable.d.ts} +8 -12
  298. package/dist/types/components/DHIS2PivotTable/DHIS2PivotTable.d.ts.map +1 -0
  299. package/dist/types/components/DHIS2PivotTable/components/Table/index.d.ts +9 -0
  300. package/dist/types/components/DHIS2PivotTable/components/Table/index.d.ts.map +1 -0
  301. package/dist/types/components/DHIS2PivotTable/components/TableBody/index.d.ts +2 -0
  302. package/dist/types/components/DHIS2PivotTable/components/TableBody/index.d.ts.map +1 -0
  303. package/dist/types/components/DHIS2PivotTable/components/TableHeaders/index.d.ts +2 -0
  304. package/dist/types/components/DHIS2PivotTable/components/TableHeaders/index.d.ts.map +1 -0
  305. package/dist/types/components/DHIS2PivotTable/index.d.ts +3 -0
  306. package/dist/types/components/DHIS2PivotTable/index.d.ts.map +1 -0
  307. package/{build/types/components/CustomPivotTable → dist/types/components/DHIS2PivotTable}/interfaces/index.d.ts +1 -0
  308. package/dist/types/components/DHIS2PivotTable/interfaces/index.d.ts.map +1 -0
  309. package/{build/types/components/CustomPivotTable → dist/types/components/DHIS2PivotTable}/services/engine.d.ts +4 -3
  310. package/dist/types/components/DHIS2PivotTable/services/engine.d.ts.map +1 -0
  311. package/dist/types/components/DHIS2PivotTable/state/engine.d.ts +8 -0
  312. package/dist/types/components/DHIS2PivotTable/state/engine.d.ts.map +1 -0
  313. package/dist/types/components/Map/DHIS2Map.d.ts +9 -0
  314. package/dist/types/components/Map/DHIS2Map.d.ts.map +1 -0
  315. package/dist/types/components/Map/components/EarthEngineLayerConfiguration/EarthEngineLayerConfigModal.d.ts +10 -0
  316. package/dist/types/components/Map/components/EarthEngineLayerConfiguration/EarthEngineLayerConfigModal.d.ts.map +1 -0
  317. package/dist/types/components/Map/components/EarthEngineLayerConfiguration/EarthEngineLayerConfiguration.d.ts +9 -0
  318. package/dist/types/components/Map/components/EarthEngineLayerConfiguration/EarthEngineLayerConfiguration.d.ts.map +1 -0
  319. package/dist/types/components/Map/components/EarthEngineLayerConfiguration/components/AggregationSelector.d.ts +2 -0
  320. package/dist/types/components/Map/components/EarthEngineLayerConfiguration/components/AggregationSelector.d.ts.map +1 -0
  321. package/dist/types/components/Map/components/EarthEngineLayerConfiguration/components/ColorConfig.d.ts +2 -0
  322. package/dist/types/components/Map/components/EarthEngineLayerConfiguration/components/ColorConfig.d.ts.map +1 -0
  323. package/dist/types/components/Map/components/EarthEngineLayerConfiguration/components/Name.d.ts +2 -0
  324. package/dist/types/components/Map/components/EarthEngineLayerConfiguration/components/Name.d.ts.map +1 -0
  325. package/dist/types/components/Map/components/EarthEngineLayerConfiguration/components/PeriodSelector.d.ts +2 -0
  326. package/dist/types/components/Map/components/EarthEngineLayerConfiguration/components/PeriodSelector.d.ts.map +1 -0
  327. package/dist/types/components/Map/components/EarthEngineLayerConfiguration/components/StylesConfig.d.ts +2 -0
  328. package/dist/types/components/Map/components/EarthEngineLayerConfiguration/components/StylesConfig.d.ts.map +1 -0
  329. package/dist/types/components/Map/components/EarthEngineLayerConfiguration/components/TypeField.d.ts +4 -0
  330. package/dist/types/components/Map/components/EarthEngineLayerConfiguration/components/TypeField.d.ts.map +1 -0
  331. package/dist/types/components/Map/components/EarthEngineLayerConfiguration/hooks/data.d.ts +8 -0
  332. package/dist/types/components/Map/components/EarthEngineLayerConfiguration/hooks/data.d.ts.map +1 -0
  333. package/dist/types/components/Map/components/EarthEngineLayerConfiguration/index.d.ts +3 -0
  334. package/dist/types/components/Map/components/EarthEngineLayerConfiguration/index.d.ts.map +1 -0
  335. package/{build → dist}/types/components/Map/components/MapArea/index.d.ts +2 -1
  336. package/dist/types/components/Map/components/MapArea/index.d.ts.map +1 -0
  337. package/{build → dist}/types/components/Map/components/MapArea/interfaces/index.d.ts +1 -0
  338. package/dist/types/components/Map/components/MapArea/interfaces/index.d.ts.map +1 -0
  339. package/{build → dist}/types/components/Map/components/MapControls/components/CustomControl/index.d.ts +2 -1
  340. package/dist/types/components/Map/components/MapControls/components/CustomControl/index.d.ts.map +1 -0
  341. package/{build → dist}/types/components/Map/components/MapControls/components/DownloadControl/index.d.ts +2 -2
  342. package/dist/types/components/Map/components/MapControls/components/DownloadControl/index.d.ts.map +1 -0
  343. package/{build → dist}/types/components/Map/components/MapControls/components/FullscreenControl/index.d.ts +1 -0
  344. package/dist/types/components/Map/components/MapControls/components/FullscreenControl/index.d.ts.map +1 -0
  345. package/dist/types/components/Map/components/MapControls/index.d.ts +6 -0
  346. package/dist/types/components/Map/components/MapControls/index.d.ts.map +1 -0
  347. package/dist/types/components/Map/components/MapLayer/components/BoundaryLayer/hooks/useBoundaryData.d.ts +2 -0
  348. package/dist/types/components/Map/components/MapLayer/components/BoundaryLayer/hooks/useBoundaryData.d.ts.map +1 -0
  349. package/{build → dist}/types/components/Map/components/MapLayer/components/BoundaryLayer/index.d.ts +6 -6
  350. package/dist/types/components/Map/components/MapLayer/components/BoundaryLayer/index.d.ts.map +1 -0
  351. package/{build → dist}/types/components/Map/components/MapLayer/components/GoogleEngineLayer/components/EarthEngineLegend.d.ts +4 -3
  352. package/dist/types/components/Map/components/MapLayer/components/GoogleEngineLayer/components/EarthEngineLegend.d.ts.map +1 -0
  353. package/{build → dist}/types/components/Map/components/MapLayer/components/GoogleEngineLayer/constants/index.d.ts +2 -1
  354. package/dist/types/components/Map/components/MapLayer/components/GoogleEngineLayer/constants/index.d.ts.map +1 -0
  355. package/{build → dist}/types/components/Map/components/MapLayer/components/GoogleEngineLayer/hooks/index.d.ts +3 -2
  356. package/dist/types/components/Map/components/MapLayer/components/GoogleEngineLayer/hooks/index.d.ts.map +1 -0
  357. package/dist/types/components/Map/components/MapLayer/components/GoogleEngineLayer/index.d.ts +4 -0
  358. package/dist/types/components/Map/components/MapLayer/components/GoogleEngineLayer/index.d.ts.map +1 -0
  359. package/{build → dist}/types/components/Map/components/MapLayer/components/GoogleEngineLayer/interfaces/index.d.ts +2 -1
  360. package/dist/types/components/Map/components/MapLayer/components/GoogleEngineLayer/interfaces/index.d.ts.map +1 -0
  361. package/{build → dist}/types/components/Map/components/MapLayer/components/GoogleEngineLayer/services/engine.d.ts +3 -2
  362. package/dist/types/components/Map/components/MapLayer/components/GoogleEngineLayer/services/engine.d.ts.map +1 -0
  363. package/{build → dist}/types/components/Map/components/MapLayer/components/GoogleEngineLayer/utils/index.d.ts +3 -2
  364. package/dist/types/components/Map/components/MapLayer/components/GoogleEngineLayer/utils/index.d.ts.map +1 -0
  365. package/{build → dist}/types/components/Map/components/MapLayer/components/LegendArea/components/LegendCardHeader/index.d.ts +3 -3
  366. package/dist/types/components/Map/components/MapLayer/components/LegendArea/components/LegendCardHeader/index.d.ts.map +1 -0
  367. package/{build → dist}/types/components/Map/components/MapLayer/components/LegendArea/index.d.ts +4 -4
  368. package/dist/types/components/Map/components/MapLayer/components/LegendArea/index.d.ts.map +1 -0
  369. package/{build → dist}/types/components/Map/components/MapLayer/components/PointLayer/components/PointLegend/index.d.ts +1 -0
  370. package/dist/types/components/Map/components/MapLayer/components/PointLayer/components/PointLegend/index.d.ts.map +1 -0
  371. package/dist/types/components/Map/components/MapLayer/components/PointLayer/hooks/index.d.ts +3 -0
  372. package/dist/types/components/Map/components/MapLayer/components/PointLayer/hooks/index.d.ts.map +1 -0
  373. package/dist/types/components/Map/components/MapLayer/components/PointLayer/index.d.ts +2 -0
  374. package/dist/types/components/Map/components/MapLayer/components/PointLayer/index.d.ts.map +1 -0
  375. package/{build → dist}/types/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/components/BubbleLegend/components/Bubble.d.ts +2 -2
  376. package/dist/types/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/components/BubbleLegend/components/Bubble.d.ts.map +1 -0
  377. package/{build → dist}/types/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/components/BubbleLegend/components/Bubbles.d.ts +3 -2
  378. package/dist/types/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/components/BubbleLegend/components/Bubbles.d.ts.map +1 -0
  379. package/{build → dist}/types/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/components/BubbleLegend/index.d.ts +2 -1
  380. package/dist/types/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/components/BubbleLegend/index.d.ts.map +1 -0
  381. package/{build → dist}/types/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/index.d.ts +3 -3
  382. package/dist/types/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/index.d.ts.map +1 -0
  383. package/{build → dist}/types/components/Map/components/MapLayer/components/ThematicLayer/components/Choropleth/components/ChoroplethLegend.d.ts +4 -3
  384. package/dist/types/components/Map/components/MapLayer/components/ThematicLayer/components/Choropleth/components/ChoroplethLegend.d.ts.map +1 -0
  385. package/dist/types/components/Map/components/MapLayer/components/ThematicLayer/components/Choropleth/index.d.ts +12 -0
  386. package/dist/types/components/Map/components/MapLayer/components/ThematicLayer/components/Choropleth/index.d.ts.map +1 -0
  387. package/dist/types/components/Map/components/MapLayer/components/ThematicLayer/components/CustomTooltip/index.d.ts +5 -0
  388. package/dist/types/components/Map/components/MapLayer/components/ThematicLayer/components/CustomTooltip/index.d.ts.map +1 -0
  389. package/dist/types/components/Map/components/MapLayer/components/ThematicLayer/hooks/config.d.ts +3 -0
  390. package/dist/types/components/Map/components/MapLayer/components/ThematicLayer/hooks/config.d.ts.map +1 -0
  391. package/dist/types/components/Map/components/MapLayer/components/ThematicLayer/index.d.ts +5 -0
  392. package/dist/types/components/Map/components/MapLayer/components/ThematicLayer/index.d.ts.map +1 -0
  393. package/{build → dist}/types/components/Map/components/MapLayer/index.d.ts +3 -3
  394. package/dist/types/components/Map/components/MapLayer/index.d.ts.map +1 -0
  395. package/{build → dist}/types/components/Map/components/MapLayer/interfaces/index.d.ts +5 -4
  396. package/dist/types/components/Map/components/MapLayer/interfaces/index.d.ts.map +1 -0
  397. package/{build → dist}/types/components/Map/components/MapProvider/components/MapLayerProvider/hooks/index.d.ts +1 -0
  398. package/dist/types/components/Map/components/MapProvider/components/MapLayerProvider/hooks/index.d.ts.map +1 -0
  399. package/dist/types/components/Map/components/MapProvider/components/MapLayerProvider/index.d.ts +7 -0
  400. package/dist/types/components/Map/components/MapProvider/components/MapLayerProvider/index.d.ts.map +1 -0
  401. package/{build → dist}/types/components/Map/components/MapProvider/hooks/index.d.ts +4 -3
  402. package/dist/types/components/Map/components/MapProvider/hooks/index.d.ts.map +1 -0
  403. package/dist/types/components/Map/components/MapProvider/index.d.ts +3 -0
  404. package/dist/types/components/Map/components/MapProvider/index.d.ts.map +1 -0
  405. package/{build → dist}/types/components/Map/components/MapUpdater/index.d.ts +2 -2
  406. package/dist/types/components/Map/components/MapUpdater/index.d.ts.map +1 -0
  407. package/dist/types/components/Map/components/ThematicLayerConfiguration/ThematicLayerConfigModal.d.ts +3 -0
  408. package/dist/types/components/Map/components/ThematicLayerConfiguration/ThematicLayerConfigModal.d.ts.map +1 -0
  409. package/dist/types/components/Map/components/ThematicLayerConfiguration/ThematicLayerConfiguration.d.ts +3 -0
  410. package/dist/types/components/Map/components/ThematicLayerConfiguration/ThematicLayerConfiguration.d.ts.map +1 -0
  411. package/dist/types/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/components/ColorScale/index.d.ts +8 -0
  412. package/dist/types/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/components/ColorScale/index.d.ts.map +1 -0
  413. package/{build → dist}/types/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/constants/colors.d.ts +1 -0
  414. package/dist/types/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/constants/colors.d.ts.map +1 -0
  415. package/{build → dist}/types/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/index.d.ts +2 -2
  416. package/dist/types/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/index.d.ts.map +1 -0
  417. package/{build → dist}/types/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/utils/colors.d.ts +2 -1
  418. package/dist/types/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/utils/colors.d.ts.map +1 -0
  419. package/dist/types/components/Map/components/ThematicLayerConfiguration/components/CustomLegend/index.d.ts +2 -0
  420. package/dist/types/components/Map/components/ThematicLayerConfiguration/components/CustomLegend/index.d.ts.map +1 -0
  421. package/{build → dist}/types/components/Map/components/ThematicLayerConfiguration/components/IndicatorSelectorModal/index.d.ts +2 -2
  422. package/dist/types/components/Map/components/ThematicLayerConfiguration/components/IndicatorSelectorModal/index.d.ts.map +1 -0
  423. package/{build → dist}/types/components/Map/components/ThematicLayerConfiguration/components/LegendSetSelector/index.d.ts +2 -2
  424. package/dist/types/components/Map/components/ThematicLayerConfiguration/components/LegendSetSelector/index.d.ts.map +1 -0
  425. package/dist/types/components/Map/components/ThematicLayerConfiguration/components/RadiusField.d.ts +2 -0
  426. package/dist/types/components/Map/components/ThematicLayerConfiguration/components/RadiusField.d.ts.map +1 -0
  427. package/dist/types/components/Map/components/ThematicLayerConfiguration/components/TypeField.d.ts +2 -0
  428. package/dist/types/components/Map/components/ThematicLayerConfiguration/components/TypeField.d.ts.map +1 -0
  429. package/dist/types/components/Map/components/ThematicLayerConfiguration/index.d.ts +4 -0
  430. package/dist/types/components/Map/components/ThematicLayerConfiguration/index.d.ts.map +1 -0
  431. package/dist/types/components/Map/components/ThematicLayerConfiguration/types/index.d.ts +15 -0
  432. package/dist/types/components/Map/components/ThematicLayerConfiguration/types/index.d.ts.map +1 -0
  433. package/{build → dist}/types/components/Map/constants/colors.d.ts +1 -0
  434. package/dist/types/components/Map/constants/colors.d.ts.map +1 -0
  435. package/{build → dist}/types/components/Map/constants/legendSet.d.ts +1 -0
  436. package/dist/types/components/Map/constants/legendSet.d.ts.map +1 -0
  437. package/{build → dist}/types/components/Map/hooks/map.d.ts +1 -0
  438. package/dist/types/components/Map/hooks/map.d.ts.map +1 -0
  439. package/dist/types/components/Map/index.d.ts +6 -0
  440. package/dist/types/components/Map/index.d.ts.map +1 -0
  441. package/{build → dist}/types/components/Map/interfaces/index.d.ts +3 -2
  442. package/dist/types/components/Map/interfaces/index.d.ts.map +1 -0
  443. package/{build → dist}/types/components/Map/state/index.d.ts +3 -2
  444. package/dist/types/components/Map/state/index.d.ts.map +1 -0
  445. package/{build → dist}/types/components/Map/utils/colors.d.ts +2 -1
  446. package/dist/types/components/Map/utils/colors.d.ts.map +1 -0
  447. package/{build → dist}/types/components/Map/utils/helpers.d.ts +1 -0
  448. package/dist/types/components/Map/utils/helpers.d.ts.map +1 -0
  449. package/{build → dist}/types/components/Map/utils/map.d.ts +1 -0
  450. package/dist/types/components/Map/utils/map.d.ts.map +1 -0
  451. package/dist/types/components/SingleValueContainer/SingleValueVisualizer.d.ts +11 -0
  452. package/dist/types/components/SingleValueContainer/SingleValueVisualizer.d.ts.map +1 -0
  453. package/{build → dist}/types/components/SingleValueContainer/components/SingleValueItem/SingleValueItem.d.ts +2 -1
  454. package/dist/types/components/SingleValueContainer/components/SingleValueItem/SingleValueItem.d.ts.map +1 -0
  455. package/{build → dist}/types/components/SingleValueContainer/components/SingleValueItem/SingleValuePercentage.d.ts +2 -1
  456. package/dist/types/components/SingleValueContainer/components/SingleValueItem/SingleValuePercentage.d.ts.map +1 -0
  457. package/dist/types/components/SingleValueContainer/index.d.ts +4 -0
  458. package/dist/types/components/SingleValueContainer/index.d.ts.map +1 -0
  459. package/{build → dist}/types/components/SingleValueContainer/types/props.d.ts +3 -1
  460. package/dist/types/components/SingleValueContainer/types/props.d.ts.map +1 -0
  461. package/{build → dist}/types/components/Visualization/components/AnalyticsDataProvider/index.d.ts +2 -1
  462. package/dist/types/components/Visualization/components/AnalyticsDataProvider/index.d.ts.map +1 -0
  463. package/{build → dist}/types/components/Visualization/components/DimensionsProvider/index.d.ts +2 -1
  464. package/dist/types/components/Visualization/components/DimensionsProvider/index.d.ts.map +1 -0
  465. package/{build → dist}/types/components/Visualization/components/LayoutProvider/index.d.ts +3 -2
  466. package/dist/types/components/Visualization/components/LayoutProvider/index.d.ts.map +1 -0
  467. package/{build → dist}/types/components/Visualization/components/VisualizationDimensionSelector/index.d.ts +3 -3
  468. package/dist/types/components/Visualization/components/VisualizationDimensionSelector/index.d.ts.map +1 -0
  469. package/{build → dist}/types/components/Visualization/components/VisualizationProvider/index.d.ts +5 -4
  470. package/dist/types/components/Visualization/components/VisualizationProvider/index.d.ts.map +1 -0
  471. package/dist/types/components/Visualization/components/VisualizationSelector/index.d.ts +23 -0
  472. package/dist/types/components/Visualization/components/VisualizationSelector/index.d.ts.map +1 -0
  473. package/{build → dist}/types/components/Visualization/components/VisualizationTypeProvider/index.d.ts +3 -2
  474. package/dist/types/components/Visualization/components/VisualizationTypeProvider/index.d.ts.map +1 -0
  475. package/dist/types/components/Visualization/components/VisualizationTypeSelector/index.d.ts +2 -0
  476. package/dist/types/components/Visualization/components/VisualizationTypeSelector/index.d.ts.map +1 -0
  477. package/{build → dist}/types/components/Visualization/index.d.ts +8 -8
  478. package/dist/types/components/Visualization/index.d.ts.map +1 -0
  479. package/dist/types/index.d.ts +7 -0
  480. package/dist/types/index.d.ts.map +1 -0
  481. package/package.json +59 -63
  482. package/README.md +0 -45
  483. package/build/cjs/components/ChartAnalytics/ChartAnalytics.test.js +0 -51
  484. package/build/cjs/components/ChartAnalytics/components/DownloadMenu/components/Menu.js +0 -48
  485. package/build/cjs/components/ChartAnalytics/components/DownloadMenu/constants/menu.js +0 -34
  486. package/build/cjs/components/ChartAnalytics/components/DownloadMenu/index.js +0 -65
  487. package/build/cjs/components/ChartAnalytics/components/DownloadMenu/interfaces/menu.js +0 -1
  488. package/build/cjs/components/ChartAnalytics/hooks/useChart.js +0 -38
  489. package/build/cjs/components/ChartAnalytics/index.js +0 -86
  490. package/build/cjs/components/ChartAnalytics/models/bar.js +0 -24
  491. package/build/cjs/components/ChartAnalytics/models/column.js +0 -53
  492. package/build/cjs/components/ChartAnalytics/models/index.js +0 -112
  493. package/build/cjs/components/ChartAnalytics/models/line.js +0 -35
  494. package/build/cjs/components/ChartAnalytics/models/multi-series.js +0 -111
  495. package/build/cjs/components/ChartAnalytics/models/pie.js +0 -53
  496. package/build/cjs/components/ChartAnalytics/services/export.js +0 -50
  497. package/build/cjs/components/ChartAnalytics/styles/custom-highchart.css +0 -48
  498. package/build/cjs/components/ChartAnalytics/types/props.js +0 -1
  499. package/build/cjs/components/ChartAnalytics/utils/chart.js +0 -138
  500. package/build/cjs/components/CircularProgressDashboard/CircularProgressIndicator.test.js +0 -13
  501. package/build/cjs/components/CircularProgressDashboard/index.js +0 -64
  502. package/build/cjs/components/CircularProgressDashboard/types/props.js +0 -1
  503. package/build/cjs/components/CustomPivotTable/components/Table/index.js +0 -16
  504. package/build/cjs/components/CustomPivotTable/components/TableBody/TableBody.module.css +0 -12
  505. package/build/cjs/components/CustomPivotTable/components/TableBody/index.js +0 -109
  506. package/build/cjs/components/CustomPivotTable/components/TableHeaders/TableHeaders.module.css +0 -10
  507. package/build/cjs/components/CustomPivotTable/components/TableHeaders/index.js +0 -89
  508. package/build/cjs/components/CustomPivotTable/index.js +0 -30
  509. package/build/cjs/components/CustomPivotTable/interfaces/index.js +0 -1
  510. package/build/cjs/components/CustomPivotTable/services/engine.js +0 -89
  511. package/build/cjs/components/CustomPivotTable/state/engine.js +0 -23
  512. package/build/cjs/components/Map/components/EarthEngineLayerConfiguration/EarthEngineLayerConfigModal.stories.js +0 -32
  513. package/build/cjs/components/Map/components/EarthEngineLayerConfiguration/EarthEngineLayerConfiguration.stories.js +0 -40
  514. package/build/cjs/components/Map/components/EarthEngineLayerConfiguration/index.js +0 -458
  515. package/build/cjs/components/Map/components/MapArea/index.js +0 -101
  516. package/build/cjs/components/Map/components/MapArea/interfaces/index.js +0 -1
  517. package/build/cjs/components/Map/components/MapControls/components/CustomControl/index.js +0 -32
  518. package/build/cjs/components/Map/components/MapControls/components/DownloadControl/index.js +0 -25
  519. package/build/cjs/components/Map/components/MapControls/components/FullscreenControl/index.js +0 -13
  520. package/build/cjs/components/Map/components/MapControls/index.js +0 -42
  521. package/build/cjs/components/Map/components/MapLayer/components/BoundaryLayer/hooks/useBoundaryData.js +0 -13
  522. package/build/cjs/components/Map/components/MapLayer/components/BoundaryLayer/index.js +0 -51
  523. package/build/cjs/components/Map/components/MapLayer/components/GoogleEngineLayer/components/EarthEngineLegend.js +0 -104
  524. package/build/cjs/components/Map/components/MapLayer/components/GoogleEngineLayer/constants/index.js +0 -379
  525. package/build/cjs/components/Map/components/MapLayer/components/GoogleEngineLayer/hooks/index.js +0 -36
  526. package/build/cjs/components/Map/components/MapLayer/components/GoogleEngineLayer/index.js +0 -200
  527. package/build/cjs/components/Map/components/MapLayer/components/GoogleEngineLayer/interfaces/index.js +0 -1
  528. package/build/cjs/components/Map/components/MapLayer/components/GoogleEngineLayer/services/api.js +0 -15
  529. package/build/cjs/components/Map/components/MapLayer/components/GoogleEngineLayer/services/engine.js +0 -403
  530. package/build/cjs/components/Map/components/MapLayer/components/GoogleEngineLayer/utils/index.js +0 -124
  531. package/build/cjs/components/Map/components/MapLayer/components/LegendArea/LegendArea.module.css +0 -12
  532. package/build/cjs/components/Map/components/MapLayer/components/LegendArea/components/LegendCardHeader/index.js +0 -26
  533. package/build/cjs/components/Map/components/MapLayer/components/LegendArea/index.js +0 -180
  534. package/build/cjs/components/Map/components/MapLayer/components/PointLayer/components/PointLegend/index.js +0 -86
  535. package/build/cjs/components/Map/components/MapLayer/components/PointLayer/hooks/index.js +0 -14
  536. package/build/cjs/components/Map/components/MapLayer/components/PointLayer/index.js +0 -46
  537. package/build/cjs/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/components/BubbleLegend/components/Bubble.js +0 -57
  538. package/build/cjs/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/components/BubbleLegend/components/Bubbles.js +0 -145
  539. package/build/cjs/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/components/BubbleLegend/index.js +0 -43
  540. package/build/cjs/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/index.js +0 -56
  541. package/build/cjs/components/Map/components/MapLayer/components/ThematicLayer/components/Choropleth/components/ChoroplethLegend.js +0 -61
  542. package/build/cjs/components/Map/components/MapLayer/components/ThematicLayer/components/Choropleth/index.js +0 -43
  543. package/build/cjs/components/Map/components/MapLayer/components/ThematicLayer/components/CustomTooltip/index.js +0 -35
  544. package/build/cjs/components/Map/components/MapLayer/components/ThematicLayer/hooks/config.js +0 -15
  545. package/build/cjs/components/Map/components/MapLayer/components/ThematicLayer/index.js +0 -57
  546. package/build/cjs/components/Map/components/MapLayer/components/ThematicLayer/styles/legends.css +0 -62
  547. package/build/cjs/components/Map/components/MapLayer/index.js +0 -40
  548. package/build/cjs/components/Map/components/MapLayer/interfaces/index.js +0 -8
  549. package/build/cjs/components/Map/components/MapProvider/components/MapLayerProvider/hooks/index.js +0 -399
  550. package/build/cjs/components/Map/components/MapProvider/components/MapLayerProvider/index.js +0 -116
  551. package/build/cjs/components/Map/components/MapProvider/hooks/index.js +0 -19
  552. package/build/cjs/components/Map/components/MapProvider/index.js +0 -121
  553. package/build/cjs/components/Map/components/MapUpdater/index.js +0 -24
  554. package/build/cjs/components/Map/components/ThematicLayerConfiguration/ThematicLayerConfigModal.stories.js +0 -32
  555. package/build/cjs/components/Map/components/ThematicLayerConfiguration/ThematicLayerConfiguration.stories.js +0 -40
  556. package/build/cjs/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/components/ColorScale/index.js +0 -40
  557. package/build/cjs/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/constants/colors.js +0 -428
  558. package/build/cjs/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/index.js +0 -63
  559. package/build/cjs/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/styles/ColorScale.module.css +0 -15
  560. package/build/cjs/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/styles/ColorScaleSelect.module.css +0 -12
  561. package/build/cjs/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/utils/colors.js +0 -72
  562. package/build/cjs/components/Map/components/ThematicLayerConfiguration/components/CustomLegend/index.js +0 -71
  563. package/build/cjs/components/Map/components/ThematicLayerConfiguration/components/IndicatorSelectorModal/index.js +0 -47
  564. package/build/cjs/components/Map/components/ThematicLayerConfiguration/components/LegendSetSelector/index.js +0 -79
  565. package/build/cjs/components/Map/components/ThematicLayerConfiguration/index.js +0 -265
  566. package/build/cjs/components/Map/constants/colors.js +0 -429
  567. package/build/cjs/components/Map/constants/legendSet.js +0 -22
  568. package/build/cjs/components/Map/hooks/map.js +0 -52
  569. package/build/cjs/components/Map/index.js +0 -108
  570. package/build/cjs/components/Map/interfaces/index.js +0 -1
  571. package/build/cjs/components/Map/state/index.js +0 -23
  572. package/build/cjs/components/Map/utils/colors.js +0 -78
  573. package/build/cjs/components/Map/utils/helpers.js +0 -25
  574. package/build/cjs/components/Map/utils/map.js +0 -161
  575. package/build/cjs/components/SingleValueContainer/SingleValueContainer.test.js +0 -23
  576. package/build/cjs/components/SingleValueContainer/components/SingleValueItem/SingleValueItem.js +0 -54
  577. package/build/cjs/components/SingleValueContainer/components/SingleValueItem/SingleValuePercentage.js +0 -24
  578. package/build/cjs/components/SingleValueContainer/index.js +0 -59
  579. package/build/cjs/components/SingleValueContainer/styles/SingleValueContainer.module.css +0 -39
  580. package/build/cjs/components/SingleValueContainer/types/props.js +0 -1
  581. package/build/cjs/components/Visualization/components/AnalyticsDataProvider/index.js +0 -102
  582. package/build/cjs/components/Visualization/components/DimensionsProvider/index.js +0 -56
  583. package/build/cjs/components/Visualization/components/LayoutProvider/index.js +0 -31
  584. package/build/cjs/components/Visualization/components/VisualizationDimensionSelector/index.js +0 -77
  585. package/build/cjs/components/Visualization/components/VisualizationProvider/index.js +0 -29
  586. package/build/cjs/components/Visualization/components/VisualizationSelector/index.js +0 -180
  587. package/build/cjs/components/Visualization/components/VisualizationTypeProvider/index.js +0 -40
  588. package/build/cjs/components/Visualization/components/VisualizationTypeSelector/index.js +0 -54
  589. package/build/cjs/components/Visualization/index.js +0 -96
  590. package/build/cjs/index.js +0 -71
  591. package/build/cjs/locales/en/translations.json +0 -138
  592. package/build/cjs/locales/index.js +0 -22
  593. package/build/es/components/ChartAnalytics/ChartAnalytics.test.js +0 -46
  594. package/build/es/components/ChartAnalytics/components/DownloadMenu/components/Menu.js +0 -41
  595. package/build/es/components/ChartAnalytics/components/DownloadMenu/constants/menu.js +0 -26
  596. package/build/es/components/ChartAnalytics/components/DownloadMenu/index.js +0 -57
  597. package/build/es/components/ChartAnalytics/components/DownloadMenu/interfaces/menu.js +0 -1
  598. package/build/es/components/ChartAnalytics/hooks/useChart.js +0 -32
  599. package/build/es/components/ChartAnalytics/index.js +0 -40
  600. package/build/es/components/ChartAnalytics/models/bar.js +0 -16
  601. package/build/es/components/ChartAnalytics/models/index.js +0 -105
  602. package/build/es/components/ChartAnalytics/models/multi-series.js +0 -104
  603. package/build/es/components/ChartAnalytics/models/pie.js +0 -46
  604. package/build/es/components/ChartAnalytics/services/export.js +0 -36
  605. package/build/es/components/ChartAnalytics/styles/custom-highchart.css +0 -48
  606. package/build/es/components/ChartAnalytics/types/props.js +0 -1
  607. package/build/es/components/ChartAnalytics/utils/chart.js +0 -127
  608. package/build/es/components/CircularProgressDashboard/CircularProgressIndicator.test.js +0 -10
  609. package/build/es/components/CircularProgressDashboard/index.js +0 -42
  610. package/build/es/components/CircularProgressDashboard/types/props.js +0 -1
  611. package/build/es/components/CustomPivotTable/components/Table/index.js +0 -9
  612. package/build/es/components/CustomPivotTable/components/TableBody/TableBody.module.css +0 -12
  613. package/build/es/components/CustomPivotTable/components/TableBody/index.js +0 -100
  614. package/build/es/components/CustomPivotTable/components/TableHeaders/TableHeaders.module.css +0 -10
  615. package/build/es/components/CustomPivotTable/components/TableHeaders/index.js +0 -82
  616. package/build/es/components/CustomPivotTable/index.js +0 -22
  617. package/build/es/components/CustomPivotTable/interfaces/index.js +0 -1
  618. package/build/es/components/CustomPivotTable/services/engine.js +0 -82
  619. package/build/es/components/CustomPivotTable/state/engine.js +0 -14
  620. package/build/es/components/Map/components/EarthEngineLayerConfiguration/EarthEngineLayerConfigModal.stories.js +0 -23
  621. package/build/es/components/Map/components/EarthEngineLayerConfiguration/EarthEngineLayerConfiguration.stories.js +0 -31
  622. package/build/es/components/Map/components/EarthEngineLayerConfiguration/index.js +0 -448
  623. package/build/es/components/Map/components/MapArea/index.js +0 -91
  624. package/build/es/components/Map/components/MapArea/interfaces/index.js +0 -1
  625. package/build/es/components/Map/components/MapControls/components/CustomControl/index.js +0 -25
  626. package/build/es/components/Map/components/MapControls/components/DownloadControl/index.js +0 -18
  627. package/build/es/components/Map/components/MapControls/components/FullscreenControl/index.js +0 -6
  628. package/build/es/components/Map/components/MapControls/index.js +0 -35
  629. package/build/es/components/Map/components/MapLayer/components/BoundaryLayer/hooks/useBoundaryData.js +0 -7
  630. package/build/es/components/Map/components/MapLayer/components/BoundaryLayer/index.js +0 -41
  631. package/build/es/components/Map/components/MapLayer/components/GoogleEngineLayer/components/EarthEngineLegend.js +0 -93
  632. package/build/es/components/Map/components/MapLayer/components/GoogleEngineLayer/constants/index.js +0 -369
  633. package/build/es/components/Map/components/MapLayer/components/GoogleEngineLayer/hooks/index.js +0 -29
  634. package/build/es/components/Map/components/MapLayer/components/GoogleEngineLayer/index.js +0 -191
  635. package/build/es/components/Map/components/MapLayer/components/GoogleEngineLayer/interfaces/index.js +0 -1
  636. package/build/es/components/Map/components/MapLayer/components/GoogleEngineLayer/services/api.js +0 -15
  637. package/build/es/components/Map/components/MapLayer/components/GoogleEngineLayer/utils/index.js +0 -111
  638. package/build/es/components/Map/components/MapLayer/components/LegendArea/LegendArea.module.css +0 -12
  639. package/build/es/components/Map/components/MapLayer/components/LegendArea/components/LegendCardHeader/index.js +0 -19
  640. package/build/es/components/Map/components/MapLayer/components/LegendArea/index.js +0 -171
  641. package/build/es/components/Map/components/MapLayer/components/PointLayer/components/PointLegend/index.js +0 -76
  642. package/build/es/components/Map/components/MapLayer/components/PointLayer/hooks/index.js +0 -8
  643. package/build/es/components/Map/components/MapLayer/components/PointLayer/index.js +0 -39
  644. package/build/es/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/components/BubbleLegend/components/Bubble.js +0 -49
  645. package/build/es/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/components/BubbleLegend/components/Bubbles.js +0 -133
  646. package/build/es/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/components/BubbleLegend/index.js +0 -33
  647. package/build/es/components/Map/components/MapLayer/components/ThematicLayer/components/Bubble/index.js +0 -47
  648. package/build/es/components/Map/components/MapLayer/components/ThematicLayer/components/Choropleth/components/ChoroplethLegend.js +0 -50
  649. package/build/es/components/Map/components/MapLayer/components/ThematicLayer/components/Choropleth/index.js +0 -36
  650. package/build/es/components/Map/components/MapLayer/components/ThematicLayer/components/CustomTooltip/index.js +0 -28
  651. package/build/es/components/Map/components/MapLayer/components/ThematicLayer/hooks/config.js +0 -9
  652. package/build/es/components/Map/components/MapLayer/components/ThematicLayer/index.js +0 -50
  653. package/build/es/components/Map/components/MapLayer/components/ThematicLayer/styles/legends.css +0 -62
  654. package/build/es/components/Map/components/MapLayer/index.js +0 -33
  655. package/build/es/components/Map/components/MapLayer/interfaces/index.js +0 -1
  656. package/build/es/components/Map/components/MapProvider/components/MapLayerProvider/hooks/index.js +0 -391
  657. package/build/es/components/Map/components/MapProvider/components/MapLayerProvider/index.js +0 -107
  658. package/build/es/components/Map/components/MapProvider/hooks/index.js +0 -11
  659. package/build/es/components/Map/components/MapProvider/index.js +0 -112
  660. package/build/es/components/Map/components/MapUpdater/index.js +0 -17
  661. package/build/es/components/Map/components/ThematicLayerConfiguration/ThematicLayerConfigModal.stories.js +0 -23
  662. package/build/es/components/Map/components/ThematicLayerConfiguration/ThematicLayerConfiguration.stories.js +0 -31
  663. package/build/es/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/components/ColorScale/index.js +0 -33
  664. package/build/es/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/index.js +0 -53
  665. package/build/es/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/styles/ColorScale.module.css +0 -15
  666. package/build/es/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/styles/ColorScaleSelect.module.css +0 -12
  667. package/build/es/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/utils/colors.js +0 -56
  668. package/build/es/components/Map/components/ThematicLayerConfiguration/components/CustomLegend/index.js +0 -64
  669. package/build/es/components/Map/components/ThematicLayerConfiguration/components/IndicatorSelectorModal/index.js +0 -38
  670. package/build/es/components/Map/components/ThematicLayerConfiguration/components/LegendSetSelector/index.js +0 -70
  671. package/build/es/components/Map/components/ThematicLayerConfiguration/index.js +0 -254
  672. package/build/es/components/Map/constants/legendSet.js +0 -15
  673. package/build/es/components/Map/hooks/map.js +0 -44
  674. package/build/es/components/Map/index.js +0 -51
  675. package/build/es/components/Map/interfaces/index.js +0 -1
  676. package/build/es/components/Map/state/index.js +0 -14
  677. package/build/es/components/Map/utils/colors.js +0 -61
  678. package/build/es/components/Map/utils/helpers.js +0 -14
  679. package/build/es/components/Map/utils/map.js +0 -147
  680. package/build/es/components/SingleValueContainer/SingleValueContainer.test.js +0 -20
  681. package/build/es/components/SingleValueContainer/components/SingleValueItem/SingleValueItem.js +0 -47
  682. package/build/es/components/SingleValueContainer/components/SingleValueItem/SingleValuePercentage.js +0 -17
  683. package/build/es/components/SingleValueContainer/index.js +0 -30
  684. package/build/es/components/SingleValueContainer/styles/SingleValueContainer.module.css +0 -39
  685. package/build/es/components/SingleValueContainer/types/props.js +0 -1
  686. package/build/es/components/Visualization/components/AnalyticsDataProvider/index.js +0 -93
  687. package/build/es/components/Visualization/components/DimensionsProvider/index.js +0 -44
  688. package/build/es/components/Visualization/components/LayoutProvider/index.js +0 -20
  689. package/build/es/components/Visualization/components/VisualizationDimensionSelector/index.js +0 -68
  690. package/build/es/components/Visualization/components/VisualizationProvider/index.js +0 -22
  691. package/build/es/components/Visualization/components/VisualizationSelector/index.js +0 -166
  692. package/build/es/components/Visualization/components/VisualizationTypeProvider/index.js +0 -25
  693. package/build/es/components/Visualization/components/VisualizationTypeSelector/index.js +0 -45
  694. package/build/es/components/Visualization/index.js +0 -89
  695. package/build/es/index.js +0 -7
  696. package/build/es/locales/en/translations.json +0 -138
  697. package/build/es/locales/index.js +0 -13
  698. package/build/types/components/ChartAnalytics/index.d.ts +0 -7
  699. package/build/types/components/CircularProgressDashboard/index.d.ts +0 -4
  700. package/build/types/components/CustomPivotTable/components/Table/index.d.ts +0 -12
  701. package/build/types/components/CustomPivotTable/components/TableBody/index.d.ts +0 -2
  702. package/build/types/components/CustomPivotTable/components/TableHeaders/index.d.ts +0 -2
  703. package/build/types/components/CustomPivotTable/state/engine.d.ts +0 -7
  704. package/build/types/components/Map/components/EarthEngineLayerConfiguration/index.d.ts +0 -17
  705. package/build/types/components/Map/components/MapControls/index.d.ts +0 -6
  706. package/build/types/components/Map/components/MapLayer/components/BoundaryLayer/hooks/useBoundaryData.d.ts +0 -1
  707. package/build/types/components/Map/components/MapLayer/components/GoogleEngineLayer/index.d.ts +0 -4
  708. package/build/types/components/Map/components/MapLayer/components/PointLayer/hooks/index.d.ts +0 -2
  709. package/build/types/components/Map/components/MapLayer/components/PointLayer/index.d.ts +0 -2
  710. package/build/types/components/Map/components/MapLayer/components/ThematicLayer/components/Choropleth/index.d.ts +0 -12
  711. package/build/types/components/Map/components/MapLayer/components/ThematicLayer/components/CustomTooltip/index.d.ts +0 -5
  712. package/build/types/components/Map/components/MapLayer/components/ThematicLayer/hooks/config.d.ts +0 -2
  713. package/build/types/components/Map/components/MapLayer/components/ThematicLayer/index.d.ts +0 -5
  714. package/build/types/components/Map/components/MapProvider/components/MapLayerProvider/index.d.ts +0 -6
  715. package/build/types/components/Map/components/MapProvider/index.d.ts +0 -3
  716. package/build/types/components/Map/components/ThematicLayerConfiguration/components/ColorScaleSelect/components/ColorScale/index.d.ts +0 -8
  717. package/build/types/components/Map/components/ThematicLayerConfiguration/components/CustomLegend/index.d.ts +0 -2
  718. package/build/types/components/Map/components/ThematicLayerConfiguration/index.d.ts +0 -18
  719. package/build/types/components/Map/index.d.ts +0 -8
  720. package/build/types/components/SingleValueContainer/index.d.ts +0 -6
  721. package/build/types/components/Visualization/components/VisualizationSelector/index.d.ts +0 -23
  722. package/build/types/components/Visualization/components/VisualizationTypeSelector/index.d.ts +0 -2
  723. package/build/types/index.d.ts +0 -6
  724. /package/{LICENSE → LICENCE} +0 -0
@@ -1,15 +1,15 @@
1
- /// <reference types="react" />
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: any;
6
- fillColor: any;
4
+ color: string;
5
+ fillColor: string;
7
6
  fillOpacity: number;
8
7
  };
9
8
  export declare const highlightStyle: {
10
9
  weight: number;
11
- color: any;
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"}
@@ -0,0 +1,4 @@
1
+ export default function GoogleEngineLayer({ layerId }: {
2
+ layerId: string;
3
+ }): import("react/jsx-runtime.js").JSX.Element | null;
4
+ //# sourceMappingURL=index.d.ts.map
@@ -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
- /// <reference types="react" />
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"}
@@ -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"}
@@ -1,3 +1,4 @@
1
1
  import React from "react";
2
2
  declare const _default: React.ForwardRefExoticComponent<Omit<any, "ref"> & React.RefAttributes<HTMLDivElement>>;
3
3
  export default _default;
4
+ //# sourceMappingURL=index.d.ts.map
@@ -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"}
@@ -0,0 +1,3 @@
1
+ import { CustomPointLayer } from "../../../interfaces/index.js";
2
+ export declare function usePointLayer(): CustomPointLayer;
3
+ //# sourceMappingURL=index.d.ts.map
@@ -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,2 @@
1
+ export declare function PointLayer(): import("react/jsx-runtime.js").JSX.Element;
2
+ //# sourceMappingURL=index.d.ts.map
@@ -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,5 @@
1
+ import { ThematicLayerData } from "../../../../interfaces/index.js";
2
+ export default function CustomTooltip({ data: dataObject, }: {
3
+ data: ThematicLayerData;
4
+ }): import("react/jsx-runtime.js").JSX.Element;
5
+ //# 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/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"}
@@ -0,0 +1,3 @@
1
+ import { CustomThematicLayer } from "../../../interfaces/index.js";
2
+ export default function useThematicLayer(layerId: string): CustomThematicLayer | undefined;
3
+ //# sourceMappingURL=config.d.ts.map
@@ -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,5 @@
1
+ export default function ThematicLayer({ layerId, index, }: {
2
+ layerId: string;
3
+ index: number;
4
+ }): import("react/jsx-runtime.js").JSX.Element | null;
5
+ //# sourceMappingURL=index.d.ts.map
@@ -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
- /// <reference types="react" />
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"}
@@ -7,3 +7,4 @@ export declare function usePointLayer(): {
7
7
  export declare function useGoogleEngineLayers(): {
8
8
  sanitizeLayers: (layers: EarthEngineLayerConfig[]) => Promise<CustomGoogleEngineLayer[]>;
9
9
  };
10
+ //# sourceMappingURL=index.d.ts.map
@@ -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"}
@@ -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
@@ -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("../../..").MapOrgUnit[] | undefined;
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,3 @@
1
+ import { MapProviderProps } from "../../interfaces/index.js";
2
+ export declare function MapProvider({ children, orgUnitSelection, periodSelection, }: MapProviderProps): import("react/jsx-runtime.js").JSX.Element | null;
3
+ //# sourceMappingURL=index.d.ts.map
@@ -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"}
@@ -1,5 +1,5 @@
1
- /// <reference types="react" />
2
1
  import { LatLngTuple } from "leaflet";
3
2
  export default function MapUpdater({ bounds }: {
4
3
  bounds: LatLngTuple[];
5
- }): JSX.Element;
4
+ }): import("react/jsx-runtime.js").JSX.Element;
5
+ //# sourceMappingURL=index.d.ts.map
@@ -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,8 @@
1
+ declare const ColorScale: ({ scale, bins, width, onClick, }: {
2
+ scale: string;
3
+ bins: number;
4
+ width: number;
5
+ onClick: (scale: string) => void;
6
+ }) => import("react/jsx-runtime").JSX.Element;
7
+ export default ColorScale;
8
+ //# sourceMappingURL=index.d.ts.map
@@ -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"}
@@ -417,3 +417,4 @@ export declare const COLOR_PALETTES: {
417
417
  };
418
418
  };
419
419
  export declare const qualitativeColors: string[];
420
+ //# sourceMappingURL=colors.d.ts.map
@@ -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,2 @@
1
+ export declare function CustomLegend(): import("react/jsx-runtime.js").JSX.Element;
2
+ //# sourceMappingURL=index.d.ts.map
@@ -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