@plasmicapp/react-web 0.2.389 → 0.2.391

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.
@@ -1798,7 +1798,12 @@ function useHover() {
1798
1798
  return [isHovered, hoverProps];
1799
1799
  }
1800
1800
  function usePressed() {
1801
- var _a = usePress({}), isPressed = _a.isPressed, pressProps = _a.pressProps;
1801
+ var _a = usePress({
1802
+ onPress: function (e) { return e.continuePropagation(); },
1803
+ onPressStart: function (e) { return e.continuePropagation(); },
1804
+ onPressEnd: function (e) { return e.continuePropagation(); },
1805
+ onPressUp: function (e) { return e.continuePropagation(); },
1806
+ }), isPressed = _a.isPressed, pressProps = _a.pressProps;
1802
1807
  return [isPressed, pressProps];
1803
1808
  }
1804
1809
  var TRIGGER_TO_HOOK = {