@storybook/addon-ondevice-notes 9.0.0-beta.12 → 9.0.0-beta.13
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/register.d.ts +4 -9
- package/package.json +3 -3
package/dist/register.d.ts
CHANGED
|
@@ -1,18 +1,13 @@
|
|
|
1
|
-
import { API } from 'storybook/internal/manager-api';
|
|
2
|
-
import {
|
|
3
|
-
import type {
|
|
4
|
-
import type { Renderer } from 'storybook/internal/types';
|
|
1
|
+
import { type API } from 'storybook/internal/manager-api';
|
|
2
|
+
import type { Args, StoryContext } from '@storybook/csf';
|
|
3
|
+
import type { ReactRenderer } from '@storybook/react';
|
|
5
4
|
import type { Channel } from 'storybook/internal/channels';
|
|
6
5
|
export declare const PARAM_KEY = "notes";
|
|
7
6
|
export interface Selection {
|
|
8
7
|
storyId: string;
|
|
9
8
|
viewMode: 'story';
|
|
10
9
|
}
|
|
11
|
-
export
|
|
12
|
-
component: ComponentType<any>;
|
|
13
|
-
storyResult: ReactElement<unknown>;
|
|
14
|
-
}
|
|
15
|
-
export type StoryFromId = Omit<StoryContextForLoaders<ReactNativeFramework, Args>, 'viewMode'>;
|
|
10
|
+
export type StoryFromId = StoryContext<ReactRenderer, Args>;
|
|
16
11
|
type ApiStore = {
|
|
17
12
|
fromId: (id: any) => StoryFromId;
|
|
18
13
|
getSelection: () => Selection;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storybook/addon-ondevice-notes",
|
|
3
|
-
"version": "9.0.0-beta.
|
|
3
|
+
"version": "9.0.0-beta.13",
|
|
4
4
|
"description": "Write notes for your react-native Storybook stories.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"addon",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"dev": "tsc --watch"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@storybook/react-native-theming": "^9.0.0-beta.
|
|
32
|
+
"@storybook/react-native-theming": "^9.0.0-beta.13",
|
|
33
33
|
"react-native-markdown-display": "^7.0.2"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"publishConfig": {
|
|
44
44
|
"access": "public"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "092ffff0237dd5a9ccbb66d470db29108d2607c1"
|
|
47
47
|
}
|