@plasmicapp/react-web 0.2.388 → 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/dist/all.d.ts +875 -1164
- package/dist/index.cjs.js +6 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/react-web.esm.js +6 -1
- package/dist/react-web.esm.js.map +1 -1
- package/package.json +4 -4
- package/skinny/dist/index.js +6 -1
- package/skinny/dist/index.js.map +1 -1
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",
|
|
@@ -96,9 +96,9 @@
|
|
|
96
96
|
},
|
|
97
97
|
"dependencies": {
|
|
98
98
|
"@plasmicapp/auth-react": "0.0.22",
|
|
99
|
-
"@plasmicapp/data-sources": "0.1.
|
|
99
|
+
"@plasmicapp/data-sources": "0.1.183",
|
|
100
100
|
"@plasmicapp/data-sources-context": "0.1.21",
|
|
101
|
-
"@plasmicapp/host": "1.0.
|
|
101
|
+
"@plasmicapp/host": "1.0.219",
|
|
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": "
|
|
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 = {
|