@storybook/react-native-ui 8.6.0-alpha.1 → 8.6.0
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 +2 -2
- package/package.json +5 -5
- package/src/Layout.tsx +2 -2
package/dist/index.js
CHANGED
|
@@ -5268,9 +5268,9 @@ var Layout = ({
|
|
|
5268
5268
|
const navButtonTextStyle = useStyle(
|
|
5269
5269
|
() => ({
|
|
5270
5270
|
flexShrink: 1,
|
|
5271
|
-
color: theme.
|
|
5271
|
+
color: theme.barTextColor
|
|
5272
5272
|
}),
|
|
5273
|
-
[theme.
|
|
5273
|
+
[theme.barTextColor]
|
|
5274
5274
|
);
|
|
5275
5275
|
const openMobileMenu = (0, import_react28.useCallback)(() => {
|
|
5276
5276
|
mobileMenuDrawerRef.current.setMobileMenuOpen(true);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storybook/react-native-ui",
|
|
3
|
-
"version": "8.6.0
|
|
3
|
+
"version": "8.6.0",
|
|
4
4
|
"description": "ui components for react native storybook",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -58,9 +58,9 @@
|
|
|
58
58
|
"typescript": "^5.3.3"
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|
|
61
|
-
"@storybook/core": "
|
|
62
|
-
"@storybook/react": "
|
|
63
|
-
"@storybook/react-native-theming": "^8.6.0
|
|
61
|
+
"@storybook/core": "8.6.4",
|
|
62
|
+
"@storybook/react": "8.6.4",
|
|
63
|
+
"@storybook/react-native-theming": "^8.6.0",
|
|
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": "23004d69048668038ea30357de2e4e4af99091b6"
|
|
85
85
|
}
|
package/src/Layout.tsx
CHANGED
|
@@ -146,9 +146,9 @@ export const Layout = ({
|
|
|
146
146
|
const navButtonTextStyle = useStyle(
|
|
147
147
|
() => ({
|
|
148
148
|
flexShrink: 1,
|
|
149
|
-
color: theme.
|
|
149
|
+
color: theme.barTextColor,
|
|
150
150
|
}),
|
|
151
|
-
[theme.
|
|
151
|
+
[theme.barTextColor]
|
|
152
152
|
);
|
|
153
153
|
|
|
154
154
|
const openMobileMenu = useCallback(() => {
|