@storybook/react-native 10.3.0-next.5 → 10.3.0-next.6

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.
Files changed (2) hide show
  1. package/metro-env.d.ts +5 -5
  2. package/package.json +4 -4
package/metro-env.d.ts CHANGED
@@ -57,13 +57,13 @@ declare namespace __MetroModuleApi {
57
57
  }
58
58
  }
59
59
 
60
- declare const module: NodeModule;
61
-
62
60
  declare namespace NodeJS {
63
61
  // eslint-disable-next-line @typescript-eslint/no-empty-object-type -- Intentional declaration merging to extend NodeJS.Require
64
62
  interface Require extends __MetroModuleApi.RequireFunction {}
63
+ interface Module {
64
+ hot?: __MetroModuleApi.Hot;
65
+ }
65
66
  }
66
67
 
67
- interface NodeModule {
68
- hot?: __MetroModuleApi.Hot;
69
- }
68
+ // eslint-disable-next-line no-var -- ambient global declaration must merge with Node's `var module`
69
+ declare var module: NodeJS.Module;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storybook/react-native",
3
- "version": "10.3.0-next.5",
3
+ "version": "10.3.0-next.6",
4
4
  "description": "A better way to develop React Native Components for your app",
5
5
  "keywords": [
6
6
  "react",
@@ -45,9 +45,9 @@
45
45
  "dependencies": {
46
46
  "@storybook/mcp": "^0.4.1",
47
47
  "@storybook/react": "10.3.0-alpha.14",
48
- "@storybook/react-native-theming": "^10.3.0-next.5",
49
- "@storybook/react-native-ui": "^10.3.0-next.5",
50
- "@storybook/react-native-ui-common": "^10.3.0-next.5",
48
+ "@storybook/react-native-theming": "^10.3.0-next.6",
49
+ "@storybook/react-native-ui": "^10.3.0-next.6",
50
+ "@storybook/react-native-ui-common": "^10.3.0-next.6",
51
51
  "@tmcp/adapter-valibot": "^0.1.4",
52
52
  "@tmcp/transport-http": "^0.8.0",
53
53
  "commander": "^14.0.2",