@storybook/react-native-ui-common 10.0.0-beta.0 → 10.0.0-beta.8
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 +1 -1
- package/package.json +4 -4
- package/src/hooks/useExpanded.ts +1 -1
- package/src/types.ts +1 -1
- package/src/util/StoryHash.ts +1 -1
- package/src/util/tree.ts +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ import { TouchableOpacityProps, PressableProps, ViewStyle, TextStyle, ImageStyle
|
|
|
8
8
|
import { StoryContext, Args } from 'storybook/internal/csf';
|
|
9
9
|
import { ReactRenderer } from '@storybook/react';
|
|
10
10
|
import * as Fuse from 'fuse.js';
|
|
11
|
-
import { State, StoriesHash, API, IndexHash } from 'storybook/
|
|
11
|
+
import { State, StoriesHash, API, IndexHash } from 'storybook/manager-api';
|
|
12
12
|
import { StatusesByStoryIdAndTypeId, StatusValue, API_IndexHash, API_PreparedStoryIndex, StoryIndexV2, StoryIndexV3, API_Provider, DocsOptions } from 'storybook/internal/types';
|
|
13
13
|
|
|
14
14
|
interface ButtonProps extends TouchableOpacityProps {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storybook/react-native-ui-common",
|
|
3
|
-
"version": "10.0.0-beta.
|
|
3
|
+
"version": "10.0.0-beta.8",
|
|
4
4
|
"description": "common ui components for react native storybook",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -57,8 +57,8 @@
|
|
|
57
57
|
"typescript": "~5.9.2"
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
|
-
"@storybook/react": "10.0.0-beta.
|
|
61
|
-
"@storybook/react-native-theming": "^10.0.0-beta.
|
|
60
|
+
"@storybook/react": "10.0.0-beta.8",
|
|
61
|
+
"@storybook/react-native-theming": "^10.0.0-beta.8",
|
|
62
62
|
"es-toolkit": "^1.38.0",
|
|
63
63
|
"fuse.js": "^7.0.0",
|
|
64
64
|
"memoizerific": "^1.11.3",
|
|
@@ -77,5 +77,5 @@
|
|
|
77
77
|
"publishConfig": {
|
|
78
78
|
"access": "public"
|
|
79
79
|
},
|
|
80
|
-
"gitHead": "
|
|
80
|
+
"gitHead": "18834e54853a10911b05fb67d78d5ad3f1f35635"
|
|
81
81
|
}
|
package/src/hooks/useExpanded.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { StoriesHash } from 'storybook/
|
|
1
|
+
import type { StoriesHash } from 'storybook/manager-api';
|
|
2
2
|
import type { Dispatch } from 'react';
|
|
3
3
|
import { useCallback, useEffect, useReducer } from 'react';
|
|
4
4
|
import { getAncestorIds } from '../util/tree';
|
package/src/types.ts
CHANGED
|
@@ -5,7 +5,7 @@ import { Storage } from './StorageProvider';
|
|
|
5
5
|
import * as Fuse from 'fuse.js';
|
|
6
6
|
import { ReactElement, ReactNode } from 'react';
|
|
7
7
|
import { PressableProps } from 'react-native';
|
|
8
|
-
import type { State, StoriesHash } from 'storybook/
|
|
8
|
+
import type { State, StoriesHash } from 'storybook/manager-api';
|
|
9
9
|
import type {
|
|
10
10
|
API_IndexHash,
|
|
11
11
|
StatusesByStoryIdAndTypeId,
|
package/src/util/StoryHash.ts
CHANGED
package/src/util/tree.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import memoize from 'memoizerific';
|
|
2
2
|
import type { SyntheticEvent } from 'react';
|
|
3
|
-
import type { IndexHash } from 'storybook/
|
|
3
|
+
import type { IndexHash } from 'storybook/manager-api';
|
|
4
4
|
|
|
5
5
|
import { DEFAULT_REF_ID } from '../constants';
|
|
6
6
|
import type { Item, RefType, Dataset, SearchItem } from '../types';
|