@storybook/addon-ondevice-notes 9.0.9 → 9.0.17
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/README.md +1 -1
- package/dist/register.d.ts +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@ yarn add -D @storybook/addon-ondevice-notes
|
|
|
13
13
|
Then, add following content to `.rnstorybook/main.ts`:
|
|
14
14
|
|
|
15
15
|
```ts
|
|
16
|
-
import { StorybookConfig } from '@storybook/react-native';
|
|
16
|
+
import type { StorybookConfig } from '@storybook/react-native';
|
|
17
17
|
|
|
18
18
|
const main: StorybookConfig = {
|
|
19
19
|
addons: ['@storybook/addon-ondevice-notes'],
|
package/dist/register.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type API } from 'storybook/internal/manager-api';
|
|
2
|
-
import type { Args, StoryContext } from '
|
|
2
|
+
import type { Args, StoryContext } from 'storybook/internal/csf';
|
|
3
3
|
import type { ReactRenderer } from '@storybook/react';
|
|
4
4
|
import type { Channel } from 'storybook/internal/channels';
|
|
5
5
|
export declare const PARAM_KEY = "notes";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storybook/addon-ondevice-notes",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.0.17",
|
|
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.
|
|
32
|
+
"@storybook/react-native-theming": "^9.0.17",
|
|
33
33
|
"react-native-markdown-display": "^7.0.2"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
@@ -38,10 +38,10 @@
|
|
|
38
38
|
"peerDependencies": {
|
|
39
39
|
"react": "*",
|
|
40
40
|
"react-native": "*",
|
|
41
|
-
"storybook": "^9.0.
|
|
41
|
+
"storybook": "^9.0.17"
|
|
42
42
|
},
|
|
43
43
|
"publishConfig": {
|
|
44
44
|
"access": "public"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "648db0aedbd45ee3cf566ebff02e18247fcae198"
|
|
47
47
|
}
|