@redus/georedus-ui 0.4.0 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +18 -0
- package/dist/GeoReDUS/useMapStyle.d.ts +1 -0
- package/dist/ViewControl/ViewControl.d.ts +1 -2
- package/dist/main.js +563 -353
- package/dist/viewSpecs/presets/cem_censo_2010_2022/index.d.ts +1 -0
- package/dist/viewSpecs/util/{BASE_MAP_LAYERS.d.ts → VEGETATION_AND_WATER_OVERLAY_LAYERS.d.ts} +1 -1
- package/dist/viewSpecs/util/colorSchemes.d.ts +1 -0
- package/dist/viewSpecs/util/index.d.ts +1 -0
- package/dist/viewSpecs/util/influenceArea.d.ts +111 -0
- package/package.json +3 -3
- package/dist/viewSpecs/presets/cem_saude_2024/numerical_choropleth.d.ts +0 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @orioro/template-react
|
|
2
2
|
|
|
3
|
+
## 0.6.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- enable 2022_variaveis_abr_25
|
|
8
|
+
|
|
9
|
+
## 0.5.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- implement proof-of-concept of hover interaction on legend
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Updated dependencies
|
|
18
|
+
- @orioro/react-maplibre-util@0.4.0
|
|
19
|
+
- @orioro/react-chart-util@0.2.0
|
|
20
|
+
|
|
3
21
|
## 0.4.0
|
|
4
22
|
|
|
5
23
|
### Minor Changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function useMapStyle(input: string | object, modifier?: (styleBase: Record<string, any>) => Record<string, any>): any;
|