@storybook/addon-ondevice-notes 9.0.0-beta.1 → 9.0.0-beta.11

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.
@@ -9,5 +9,5 @@ export declare class ErrorBoundary extends React.Component<{
9
9
  hasError: boolean;
10
10
  };
11
11
  componentDidCatch(error: any, errorInfo: any): void;
12
- render(): string | number | boolean | Iterable<React.ReactNode> | import("react/jsx-runtime").JSX.Element;
12
+ render(): string | number | bigint | boolean | Iterable<React.ReactNode> | Promise<string | number | bigint | boolean | React.ReactPortal | React.ReactElement<unknown, string | React.JSXElementConstructor<any>> | Iterable<React.ReactNode>> | import("react/jsx-runtime").JSX.Element;
13
13
  }
@@ -2,8 +2,8 @@ import { API } from 'storybook/internal/manager-api';
2
2
  import { ComponentType, ReactElement } from 'react';
3
3
  import type { Args, StoryContextForLoaders } from 'storybook/internal/csf';
4
4
  import type { Renderer } from 'storybook/internal/types';
5
- export declare const PARAM_KEY = "notes";
6
5
  import type { Channel } from 'storybook/internal/channels';
6
+ export declare const PARAM_KEY = "notes";
7
7
  export interface Selection {
8
8
  storyId: string;
9
9
  viewMode: 'story';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storybook/addon-ondevice-notes",
3
- "version": "9.0.0-beta.1",
3
+ "version": "9.0.0-beta.11",
4
4
  "description": "Write notes for your react-native Storybook stories.",
5
5
  "keywords": [
6
6
  "addon",
@@ -29,19 +29,19 @@
29
29
  "dev": "tsc --watch"
30
30
  },
31
31
  "dependencies": {
32
- "@storybook/react-native-theming": "^9.0.0-beta.1",
32
+ "@storybook/react-native-theming": "^9.0.0-beta.11",
33
33
  "react-native-markdown-display": "^7.0.2"
34
34
  },
35
35
  "devDependencies": {
36
- "typescript": "^5.3.3"
36
+ "typescript": "~5.8.3"
37
37
  },
38
38
  "peerDependencies": {
39
39
  "react": "*",
40
40
  "react-native": "*",
41
- "storybook": "9.0.0-beta.4"
41
+ "storybook": "9.0.0-beta.10"
42
42
  },
43
43
  "publishConfig": {
44
44
  "access": "public"
45
45
  },
46
- "gitHead": "41dd93e39512d4df2258fd68055b54fc361962f3"
46
+ "gitHead": "531ed8a758adc98bb436d0ccb32efcb369572ffe"
47
47
  }