@evergis/react 2.0.104 → 2.0.105

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.
@@ -3224,12 +3224,13 @@ function useEvergisDynamicLayer(_ref) {
3224
3224
  }, api$1),
3225
3225
  destructor: layer => map.indexOf(layer) !== -1 && map.removeLayer(layer),
3226
3226
  update: (layer, _ref2) => {
3227
- let [name, style, condition] = _ref2;
3227
+ let [name, style, condition, dataFilterId] = _ref2;
3228
3228
  layer.name = name;
3229
3229
  layer.style = style;
3230
3230
  layer.condition = condition;
3231
+ layer.dataFilterId = dataFilterId;
3231
3232
  }
3232
- }, [name, style, condition]);
3233
+ }, [name, style, condition, dataFilterId]);
3233
3234
  useLayerOrder(layer, zIndex);
3234
3235
  useLayerVisibility(layer, isDisplayed);
3235
3236
  useLayerOpacity(layer, opacity);