@storybook/react-native-ui 10.3.0-next.0 → 10.3.0-next.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
@@ -509,7 +509,6 @@ var Tree = import_react5.default.memo(function Tree2({ isMain, refId, data, stat
509
509
  }, [data]);
510
510
  const collapsedItems = (0, import_react5.useMemo)(
511
511
  () => Object.keys(data).filter((id) => !singleStoryComponentIds.includes(id)),
512
- // eslint-disable-next-line react-compiler/react-compiler
513
512
  // eslint-disable-next-line react-hooks/exhaustive-deps
514
513
  [singleStoryComponentIds]
515
514
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storybook/react-native-ui",
3
- "version": "10.3.0-next.0",
3
+ "version": "10.3.0-next.2",
4
4
  "description": "ui components for react native storybook",
5
5
  "keywords": [
6
6
  "react",
@@ -35,9 +35,9 @@
35
35
  "dependencies": {
36
36
  "@gorhom/portal": "^1.0.14",
37
37
  "@nozbe/microfuzz": "^1.0.0",
38
- "@storybook/react": "^10.2.3",
39
- "@storybook/react-native-theming": "^10.3.0-next.0",
40
- "@storybook/react-native-ui-common": "^10.3.0-next.0",
38
+ "@storybook/react": "10.3.0-alpha.9",
39
+ "@storybook/react-native-theming": "^10.3.0-next.2",
40
+ "@storybook/react-native-ui-common": "^10.3.0-next.2",
41
41
  "polished": "^4.3.1"
42
42
  },
43
43
  "peerDependencies": {
@@ -57,6 +57,7 @@
57
57
  "access": "public"
58
58
  },
59
59
  "scripts": {
60
- "dev": "tsup --watch"
60
+ "dev": "tsup --watch",
61
+ "check:types": "tsc --noEmit"
61
62
  }
62
63
  }
package/src/Tree.tsx CHANGED
@@ -256,7 +256,7 @@ export const Tree = React.memo<{
256
256
  // Omit single-story components from the list of nodes.
257
257
  const collapsedItems = useMemo(
258
258
  () => Object.keys(data).filter((id) => !singleStoryComponentIds.includes(id)),
259
- // eslint-disable-next-line react-compiler/react-compiler
259
+
260
260
  // eslint-disable-next-line react-hooks/exhaustive-deps
261
261
  [singleStoryComponentIds]
262
262
  );
@@ -282,7 +282,7 @@ export const Tree = React.memo<{
282
282
  },
283
283
  { ...data }
284
284
  );
285
- // eslint-disable-next-line react-compiler/react-compiler
285
+
286
286
  // eslint-disable-next-line react-hooks/exhaustive-deps
287
287
  }, [data]);
288
288
 
Binary file