@storybook/react-native-ui 8.5.4-alpha.0 → 8.5.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storybook/react-native-ui",
3
- "version": "8.5.4-alpha.0",
3
+ "version": "8.5.4",
4
4
  "description": "ui components for react native storybook",
5
5
  "keywords": [
6
6
  "react",
@@ -60,7 +60,7 @@
60
60
  "dependencies": {
61
61
  "@storybook/core": "^8.5.1",
62
62
  "@storybook/react": "^8.5.1",
63
- "@storybook/react-native-theming": "^8.5.4-alpha.0",
63
+ "@storybook/react-native-theming": "^8.5.4",
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": "2c48f3c49c1cd24eacc30506d395adac6f817315"
84
+ "gitHead": "bd630c52410fd1d6090e9bb52ecb7ea269e556b8"
85
85
  }
@@ -7,7 +7,6 @@ import { BottomSheetModalProvider } from '@gorhom/bottom-sheet';
7
7
  import { LayoutProvider } from './LayoutProvider';
8
8
 
9
9
  const meta = {
10
- title: 'components/Layout',
11
10
  component: Layout,
12
11
  decorators: [
13
12
  (Story) => (
@@ -35,7 +35,7 @@ const meta = {
35
35
  </ScrollView>
36
36
  ),
37
37
  ],
38
- } as Meta<typeof Tree>;
38
+ } satisfies Meta<typeof Tree>;
39
39
 
40
40
  export default meta;
41
41
 
@@ -49,6 +49,10 @@ export const Full: Story = {
49
49
  isBrowsing: true,
50
50
  isMain: true,
51
51
  refId: DEFAULT_REF_ID,
52
+ data: undefined,
53
+ onSelectStoryId: () => {},
54
+ selectedStoryId: storyId,
55
+ status: undefined,
52
56
  },
53
57
  render: function Render(args) {
54
58
  const [selectedId, setSelectedId] = useState(storyId);
@@ -68,6 +72,10 @@ export const SingleStoryComponents: Story = {
68
72
  isBrowsing: true,
69
73
  isMain: true,
70
74
  refId: DEFAULT_REF_ID,
75
+ data: undefined,
76
+ onSelectStoryId: () => {},
77
+ selectedStoryId: storyId,
78
+ status: undefined,
71
79
  },
72
80
  render: function Render(args) {
73
81
  const [selectedId, setSelectedId] = useState('tooltip-tooltipbuildlist--default');