@eeacms/volto-arcgis-block 0.1.31 → 0.1.32
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 +10 -0
- package/package.json +1 -1
- package/src/components/MapViewer/MenuWidget.jsx +18 -10
package/CHANGELOG.md
CHANGED
|
@@ -4,8 +4,18 @@ All notable changes to this project will be documented in this file. Dates are d
|
|
|
4
4
|
|
|
5
5
|
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
6
6
|
|
|
7
|
+
#### [0.1.32](https://github.com/eea/volto-arcgis-block/compare/0.1.31...0.1.32)
|
|
8
|
+
|
|
9
|
+
- Metadata [`#101`](https://github.com/eea/volto-arcgis-block/pull/101)
|
|
10
|
+
- linting fix [`a3f1b7d`](https://github.com/eea/volto-arcgis-block/commit/a3f1b7d29e7cfa91b5d48c5e6eaed9e79a707e14)
|
|
11
|
+
- Metadata info button implemented [`06659e0`](https://github.com/eea/volto-arcgis-block/commit/06659e090051659a28c3f8026a606d9e473e9ebd)
|
|
12
|
+
- Metadata Info icon implementation [`4750835`](https://github.com/eea/volto-arcgis-block/commit/475083515975126e0986a65eb2058552b2ba05bd)
|
|
13
|
+
|
|
7
14
|
#### [0.1.31](https://github.com/eea/volto-arcgis-block/compare/0.1.30...0.1.31)
|
|
8
15
|
|
|
16
|
+
> 11 February 2022
|
|
17
|
+
|
|
18
|
+
- Feature Time_Slider_Widget [`#100`](https://github.com/eea/volto-arcgis-block/pull/100)
|
|
9
19
|
- First commit [`#97`](https://github.com/eea/volto-arcgis-block/pull/97)
|
|
10
20
|
- REFACT: Delete comments [`a7a9296`](https://github.com/eea/volto-arcgis-block/commit/a7a929647749280ccf92d97ea17a3d743f1cfa20)
|
|
11
21
|
- FIX: Watch event on Time Extent for props and services. TimeSlider disabled if no time dimension [`2af7f50`](https://github.com/eea/volto-arcgis-block/commit/2af7f50d2ae1d5e033606d690bab0dffaa83b79e)
|
package/package.json
CHANGED
|
@@ -659,16 +659,24 @@ class MenuWidget extends React.Component {
|
|
|
659
659
|
>
|
|
660
660
|
<span>{dataset.DatasetTitle}</span>
|
|
661
661
|
</label>
|
|
662
|
-
|
|
663
|
-
<
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
662
|
+
<div className="map-menu-icons">
|
|
663
|
+
<a href={dataset.DownloadURL} target="_blank" rel="noreferrer">
|
|
664
|
+
<FontAwesomeIcon
|
|
665
|
+
className="map-menu-icon"
|
|
666
|
+
icon={['fa', 'info-circle']}
|
|
667
|
+
/>
|
|
668
|
+
</a>
|
|
669
|
+
{!this.props.download && dataset.Downloadable && (
|
|
670
|
+
<AddCartItem
|
|
671
|
+
cartData={this.compCfg}
|
|
672
|
+
props={this.props}
|
|
673
|
+
mapViewer={this.props.mapViewer}
|
|
674
|
+
download={this.props.download}
|
|
675
|
+
areaData={this.props.area}
|
|
676
|
+
dataset={dataset}
|
|
677
|
+
/>
|
|
678
|
+
)}
|
|
679
|
+
</div>
|
|
672
680
|
</div>
|
|
673
681
|
<div
|
|
674
682
|
className="ccl-form map-menu-layers-container"
|