@plasmicapp/react-web 0.2.389 → 0.2.390
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.
|
|
3
|
+
"version": "0.2.390",
|
|
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",
|
|
@@ -155,5 +155,5 @@
|
|
|
155
155
|
"react": ">=16.8.0",
|
|
156
156
|
"react-dom": ">=16.8.0"
|
|
157
157
|
},
|
|
158
|
-
"gitHead": "
|
|
158
|
+
"gitHead": "78cf57912c8d3c6ee12e5a6c0d19cd31f4fe8854"
|
|
159
159
|
}
|
package/skinny/dist/index.js
CHANGED
|
@@ -722,7 +722,12 @@ function useHover() {
|
|
|
722
722
|
return [isHovered, hoverProps];
|
|
723
723
|
}
|
|
724
724
|
function usePressed() {
|
|
725
|
-
var _a = usePress({
|
|
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 = {
|