@storybook/react-native-ui 8.4.2 → 8.4.3-alpha.1
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/index.js +1 -1
- package/package.json +3 -3
- package/src/MobileAddonsPanel.tsx +1 -1
package/dist/index.js
CHANGED
|
@@ -4531,7 +4531,7 @@ var MobileAddonsPanel = (0, import_react15.forwardRef)(
|
|
|
4531
4531
|
return {
|
|
4532
4532
|
maxHeight: height - animatedPosition.value - insets.bottom
|
|
4533
4533
|
};
|
|
4534
|
-
}, [animatedPosition
|
|
4534
|
+
}, [animatedPosition, height, insets.bottom]);
|
|
4535
4535
|
return /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
|
|
4536
4536
|
import_bottom_sheet2.BottomSheetModal,
|
|
4537
4537
|
{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storybook/react-native-ui",
|
|
3
|
-
"version": "8.4.
|
|
3
|
+
"version": "8.4.3-alpha.1",
|
|
4
4
|
"description": "ui components for react native storybook",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"dependencies": {
|
|
61
61
|
"@storybook/core": "^8.4.2",
|
|
62
62
|
"@storybook/react": "^8.4.2",
|
|
63
|
-
"@storybook/react-native-theming": "^8.4.
|
|
63
|
+
"@storybook/react-native-theming": "^8.4.3-alpha.1",
|
|
64
64
|
"fuse.js": "^7.0.0",
|
|
65
65
|
"memoizerific": "^1.11.3",
|
|
66
66
|
"polished": "^4.3.1",
|
|
@@ -81,5 +81,5 @@
|
|
|
81
81
|
"publishConfig": {
|
|
82
82
|
"access": "public"
|
|
83
83
|
},
|
|
84
|
-
"gitHead": "
|
|
84
|
+
"gitHead": "52feddc7a8059e56fa563c27f69a928bb852f96f"
|
|
85
85
|
}
|
|
@@ -50,7 +50,7 @@ export const MobileAddonsPanel = forwardRef<MobileAddonsPanelRef, { storyId?: st
|
|
|
50
50
|
return {
|
|
51
51
|
maxHeight: height - animatedPosition.value - insets.bottom,
|
|
52
52
|
};
|
|
53
|
-
}, [animatedPosition
|
|
53
|
+
}, [animatedPosition, height, insets.bottom]);
|
|
54
54
|
|
|
55
55
|
return (
|
|
56
56
|
<BottomSheetModal
|