@storybook/react-native-ui-common 10.2.3 → 10.3.0-canary-20260217005118

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.d.ts CHANGED
@@ -122,6 +122,7 @@ type SBUI = (props: {
122
122
  setStory: (storyId: string) => void;
123
123
  storage: Storage;
124
124
  theme: Theme;
125
+ storyBackgroundColor?: string;
125
126
  children: ReactElement;
126
127
  }) => ReactElement;
127
128
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storybook/react-native-ui-common",
3
- "version": "10.2.3",
3
+ "version": "10.3.0-canary-20260217005118",
4
4
  "description": "common ui components for react native storybook",
5
5
  "keywords": [
6
6
  "react",
@@ -35,7 +35,7 @@
35
35
  "dependencies": {
36
36
  "@nozbe/microfuzz": "^1.0.0",
37
37
  "@storybook/react": "^10.2.3",
38
- "@storybook/react-native-theming": "^10.2.3",
38
+ "@storybook/react-native-theming": "10.3.0-canary-20260217005118",
39
39
  "es-toolkit": "^1.41.0",
40
40
  "memoizerific": "^1.11.3",
41
41
  "ts-dedent": "^2.2.0"
package/src/types.ts CHANGED
@@ -90,5 +90,6 @@ export type SBUI = (props: {
90
90
  setStory: (storyId: string) => void;
91
91
  storage: Storage;
92
92
  theme: Theme;
93
+ storyBackgroundColor?: string;
93
94
  children: ReactElement;
94
95
  }) => ReactElement;