@storybook/addon-ondevice-notes 6.5.0-rc.0 → 6.5.0-rc.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/README.md CHANGED
@@ -36,4 +36,4 @@ export default {
36
36
  };
37
37
  ```
38
38
 
39
- See the [example app](../../examples/native) for more examples.
39
+ See the [example app](../../examples/expo-example) for more examples.
@@ -3,7 +3,7 @@
3
3
  */
4
4
  import React from 'react';
5
5
  import { ImageStyle, TextStyle, ViewStyle } from 'react-native';
6
- export declare type Props = {
6
+ export type Props = {
7
7
  children?: string;
8
8
  errorHandler?: (errors: any[], children: string) => void;
9
9
  styles?: {
@@ -12,7 +12,7 @@ export declare type Props = {
12
12
  image?: ImageStyle;
13
13
  };
14
14
  };
15
- export declare type DefaultProps = Props & {
15
+ export type DefaultProps = Props & {
16
16
  styles: Object;
17
17
  };
18
18
  declare const _default: React.MemoExoticComponent<({ children, errorHandler, styles }: Props) => JSX.Element>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storybook/addon-ondevice-notes",
3
- "version": "6.5.0-rc.0",
3
+ "version": "6.5.0-rc.2",
4
4
  "description": "Write notes for your react-native Storybook stories.",
5
5
  "keywords": [
6
6
  "addon",
@@ -38,9 +38,6 @@
38
38
  "prop-types": "^15.7.2",
39
39
  "simple-markdown": "^0.7.3"
40
40
  },
41
- "devDependencies": {
42
- "@types/react-native": "^0.70.4"
43
- },
44
41
  "peerDependencies": {
45
42
  "react": "*",
46
43
  "react-native": "*"
@@ -48,5 +45,5 @@
48
45
  "publishConfig": {
49
46
  "access": "public"
50
47
  },
51
- "gitHead": "9ce9d2794c2b7f1f3c177efb8563862255389f07"
48
+ "gitHead": "f94bf2102a2e59b583d23a89f22e29afe67ef8e4"
52
49
  }