@storybook/react-native-ui 8.3.1-alpha.1 → 8.3.1-alpha.2

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 CHANGED
@@ -4824,7 +4824,7 @@ var Layout = ({
4824
4824
  justifyContent: "space-between"
4825
4825
  },
4826
4826
  children: [
4827
- /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(import_react_native8.Text, { style: { fontSize: 20, fontWeight: "bold" }, children: "Storybook" }),
4827
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(import_react_native8.Text, { style: { fontSize: 20, fontWeight: "bold", color: theme.color.defaultText }, children: "Storybook" }),
4828
4828
  /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(IconButton, { onPress: () => setDesktopSidebarOpen(false), Icon: MenuIcon })
4829
4829
  ]
4830
4830
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storybook/react-native-ui",
3
- "version": "8.3.1-alpha.1",
3
+ "version": "8.3.1-alpha.2",
4
4
  "description": "ui components for react native storybook",
5
5
  "keywords": [
6
6
  "react",
@@ -59,7 +59,7 @@
59
59
  "dependencies": {
60
60
  "@storybook/core": "^8.3.1",
61
61
  "@storybook/react": "^8.3.1",
62
- "@storybook/react-native-theming": "^8.3.1-alpha.1",
62
+ "@storybook/react-native-theming": "^8.3.1-alpha.2",
63
63
  "fuse.js": "^7.0.0",
64
64
  "memoizerific": "^1.11.3",
65
65
  "polished": "^4.3.1",
@@ -80,5 +80,5 @@
80
80
  "publishConfig": {
81
81
  "access": "public"
82
82
  },
83
- "gitHead": "2ec7f402693c8cd4570e09bfd185b7f3731a370d"
83
+ "gitHead": "2db7054f47b2addecdb947cba539544be40379e3"
84
84
  }
package/src/Layout.tsx CHANGED
@@ -72,7 +72,10 @@ export const Layout = ({
72
72
  justifyContent: 'space-between',
73
73
  }}
74
74
  >
75
- <Text style={{ fontSize: 20, fontWeight: 'bold' }}>Storybook</Text>
75
+ <Text style={{ fontSize: 20, fontWeight: 'bold', color: theme.color.defaultText }}>
76
+ Storybook
77
+ </Text>
78
+
76
79
  <IconButton onPress={() => setDesktopSidebarOpen(false)} Icon={MenuIcon} />
77
80
  </View>
78
81