@eeacms/volto-arcgis-block 0.1.89 → 0.1.90
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
CHANGED
|
@@ -4,6 +4,12 @@ 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.90](https://github.com/eea/volto-arcgis-block/compare/0.1.89...0.1.90) - 26 January 2023
|
|
8
|
+
|
|
9
|
+
#### :hammer_and_wrench: Others
|
|
10
|
+
|
|
11
|
+
- clms.1635 chore: erased comments [ujbolivar - [`7385fbc`](https://github.com/eea/volto-arcgis-block/commit/7385fbccafe2a2ecd0671e9063a568084dabf3ef)]
|
|
12
|
+
- CLMS.1635 fix: Fixed Add to cart message [ujbolivar - [`47ebc6b`](https://github.com/eea/volto-arcgis-block/commit/47ebc6b43c2d523e462ef86531d71b97c202d765)]
|
|
7
13
|
### [0.1.89](https://github.com/eea/volto-arcgis-block/compare/0.1.88...0.1.89) - 19 January 2023
|
|
8
14
|
|
|
9
15
|
### [0.1.88](https://github.com/eea/volto-arcgis-block/compare/0.1.87...0.1.88) - 17 January 2023
|
package/package.json
CHANGED
|
@@ -119,23 +119,15 @@ export const AddCartItem = ({
|
|
|
119
119
|
};
|
|
120
120
|
|
|
121
121
|
const showMessageTimer = (msg, type) => {
|
|
122
|
-
toast[type](
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
autoClose: 4000,
|
|
132
|
-
hideProgressBar: false,
|
|
133
|
-
closeOnClick: true,
|
|
134
|
-
pauseOnHover: false,
|
|
135
|
-
draggable: true,
|
|
136
|
-
progress: undefined,
|
|
137
|
-
},
|
|
138
|
-
);
|
|
122
|
+
toast[type](<Toast autoClose={4000} title={type} content={msg} />, {
|
|
123
|
+
position: 'top-center',
|
|
124
|
+
autoClose: 4000,
|
|
125
|
+
hideProgressBar: false,
|
|
126
|
+
closeOnClick: true,
|
|
127
|
+
pauseOnHover: false,
|
|
128
|
+
draggable: true,
|
|
129
|
+
progress: undefined,
|
|
130
|
+
});
|
|
139
131
|
};
|
|
140
132
|
|
|
141
133
|
const showModal = (e) => {
|