@janiscommerce/ui-web 0.34.0 → 0.35.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 CHANGED
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.35.0] - 2025-04-24
11
+
12
+ ### Added
13
+
14
+ - function to update marker in Map component
15
+
10
16
  ## [0.34.0] - 2025-04-15
11
17
 
12
18
  ### Added
package/dist/index.esm.js CHANGED
@@ -16013,6 +16013,9 @@ var Marker = function Marker(_ref) {
16013
16013
  var delayedInfoWindowHover = debounce(function () {
16014
16014
  if (!mouseOverInfoWindow) closeInfoWindow();
16015
16015
  }, 100);
16016
+ useEffect(function () {
16017
+ setMarker(markerData);
16018
+ }, [markerData]);
16016
16019
 
16017
16020
  var updateMarker = function updateMarker() {
16018
16021
  var newData = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};