@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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plasmicapp/react-web",
3
- "version": "0.2.389",
3
+ "version": "0.2.391",
4
4
  "description": "plasmic library for rendering in the presentational style",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
@@ -96,9 +96,9 @@
96
96
  },
97
97
  "dependencies": {
98
98
  "@plasmicapp/auth-react": "0.0.22",
99
- "@plasmicapp/data-sources": "0.1.183",
99
+ "@plasmicapp/data-sources": "0.1.184",
100
100
  "@plasmicapp/data-sources-context": "0.1.21",
101
- "@plasmicapp/host": "1.0.219",
101
+ "@plasmicapp/host": "1.0.220",
102
102
  "@plasmicapp/loader-splits": "1.0.64",
103
103
  "@plasmicapp/nextjs-app-router": "1.0.16",
104
104
  "@plasmicapp/prepass": "1.0.19",
@@ -155,5 +155,5 @@
155
155
  "react": ">=16.8.0",
156
156
  "react-dom": ">=16.8.0"
157
157
  },
158
- "gitHead": "32ec99a8c839ba179925352b617b084a01d4988e"
158
+ "gitHead": "a7534140cc94dceca454750a00f783d26152fd33"
159
159
  }
@@ -722,7 +722,12 @@ function useHover() {
722
722
  return [isHovered, hoverProps];
723
723
  }
724
724
  function usePressed() {
725
- var _a = usePress({}), isPressed = _a.isPressed, pressProps = _a.pressProps;
725
+ var _a = usePress({
726
+ onPress: function (e) { return e.continuePropagation(); },
727
+ onPressStart: function (e) { return e.continuePropagation(); },
728
+ onPressEnd: function (e) { return e.continuePropagation(); },
729
+ onPressUp: function (e) { return e.continuePropagation(); },
730
+ }), isPressed = _a.isPressed, pressProps = _a.pressProps;
726
731
  return [isPressed, pressProps];
727
732
  }
728
733
  var TRIGGER_TO_HOOK = {