@storybook/react-native-ui-lite 10.0.0-beta.5 → 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 CHANGED
@@ -3,7 +3,7 @@ import * as react_native from 'react-native';
3
3
  import { View } from 'react-native';
4
4
  import React, { FC, ComponentProps, ReactNode } from 'react';
5
5
  import { Item, ExpandAction, CombinedDataset, Selection, SBUI } from '@storybook/react-native-ui-common';
6
- import { State, StoriesHash } from 'storybook/internal/manager-api';
6
+ import { State, StoriesHash } from 'storybook/manager-api';
7
7
  import { API_LoadedRefData, API_IndexHash } from 'storybook/internal/types';
8
8
  import * as react_jsx_runtime from 'react/jsx-runtime';
9
9
  import { StoryContext, Args } from 'storybook/internal/csf';
package/dist/index.js CHANGED
@@ -1350,14 +1350,14 @@ var import_react_native_ui_common7 = require("@storybook/react-native-ui-common"
1350
1350
  var import_react16 = require("react");
1351
1351
  var import_react_native10 = require("react-native");
1352
1352
  var import_core_events = require("storybook/internal/core-events");
1353
- var import_manager_api2 = require("storybook/internal/manager-api");
1353
+ var import_manager_api2 = require("storybook/manager-api");
1354
1354
 
1355
1355
  // src/MobileAddonsPanel.tsx
1356
1356
  var import_react_native_theming8 = require("@storybook/react-native-theming");
1357
1357
  var import_react_native_ui_common6 = require("@storybook/react-native-ui-common");
1358
1358
  var import_react13 = require("react");
1359
1359
  var import_react_native7 = require("react-native");
1360
- var import_manager_api = require("storybook/internal/manager-api");
1360
+ var import_manager_api = require("storybook/manager-api");
1361
1361
  var import_types = require("storybook/internal/types");
1362
1362
 
1363
1363
  // src/useAnimatedValue.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storybook/react-native-ui-lite",
3
- "version": "10.0.0-beta.5",
3
+ "version": "10.0.0-beta.8",
4
4
  "description": "lightweight ui components for react native storybook",
5
5
  "keywords": [
6
6
  "react",
@@ -58,9 +58,9 @@
58
58
  "typescript": "~5.9.2"
59
59
  },
60
60
  "dependencies": {
61
- "@storybook/react": "10.0.0-beta.5",
62
- "@storybook/react-native-theming": "^10.0.0-beta.5",
63
- "@storybook/react-native-ui-common": "^10.0.0-beta.5",
61
+ "@storybook/react": "10.0.0-beta.8",
62
+ "@storybook/react-native-theming": "^10.0.0-beta.8",
63
+ "@storybook/react-native-ui-common": "^10.0.0-beta.8",
64
64
  "fuse.js": "^7.0.0",
65
65
  "memoizerific": "^1.11.3",
66
66
  "polished": "^4.3.1",
@@ -77,5 +77,5 @@
77
77
  "publishConfig": {
78
78
  "access": "public"
79
79
  },
80
- "gitHead": "d48870582b1ad50839198ebf8be25947cfdc4692"
80
+ "gitHead": "18834e54853a10911b05fb67d78d5ad3f1f35635"
81
81
  }
package/src/Layout.tsx CHANGED
@@ -21,7 +21,7 @@ import {
21
21
  ViewStyle,
22
22
  } from 'react-native';
23
23
  import { SET_CURRENT_STORY } from 'storybook/internal/core-events';
24
- import { addons } from 'storybook/internal/manager-api';
24
+ import { addons } from 'storybook/manager-api';
25
25
  import { type API_IndexHash } from 'storybook/internal/types';
26
26
  import { AddonsTabs, MobileAddonsPanel, MobileAddonsPanelRef } from './MobileAddonsPanel';
27
27
  import { MobileMenuDrawer, MobileMenuDrawerRef } from './MobileMenuDrawer';
@@ -14,7 +14,7 @@ import {
14
14
  View,
15
15
  ViewStyle,
16
16
  } from 'react-native';
17
- import { addons } from 'storybook/internal/manager-api';
17
+ import { addons } from 'storybook/manager-api';
18
18
  import { Addon_TypesEnum } from 'storybook/internal/types';
19
19
  import { CloseIcon } from './icon/iconDataUris';
20
20
  import useAnimatedValue from './useAnimatedValue';
package/src/Refs.tsx CHANGED
@@ -1,6 +1,6 @@
1
1
  import type { FC } from 'react';
2
2
  import React, { useMemo, useCallback, useEffect, useState } from 'react';
3
- import type { State } from 'storybook/internal/manager-api';
3
+ import type { State } from 'storybook/manager-api';
4
4
  import { styled } from '@storybook/react-native-theming';
5
5
  import { Tree } from './Tree';
6
6
  import type { RefType } from '@storybook/react-native-ui-common';
@@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react';
2
2
  import type { RefType } from '@storybook/react-native-ui-common';
3
3
  import { Button, LayoutProvider } from '@storybook/react-native-ui-common';
4
4
  import React from 'react';
5
- import type { IndexHash, State } from 'storybook/internal/manager-api';
5
+ import type { IndexHash, State } from 'storybook/manager-api';
6
6
  import { Sidebar } from './Sidebar';
7
7
  import { DEFAULT_REF_ID } from './constants';
8
8
  import { mockDataset } from './mockdata';
package/src/Sidebar.tsx CHANGED
@@ -3,7 +3,7 @@ import type { CombinedDataset, Selection } from '@storybook/react-native-ui-comm
3
3
  import { useLastViewed } from '@storybook/react-native-ui-common';
4
4
  import React, { useMemo } from 'react';
5
5
  import { View } from 'react-native';
6
- import type { State } from 'storybook/internal/manager-api';
6
+ import type { State } from 'storybook/manager-api';
7
7
  import type { API_LoadedRefData } from 'storybook/internal/types';
8
8
  import { DEFAULT_REF_ID } from './constants';
9
9
  import { Explorer } from './Explorer';
@@ -1,5 +1,5 @@
1
1
  import { useState } from 'react';
2
- import type { ComponentEntry, IndexHash } from 'storybook/internal/manager-api';
2
+ import type { ComponentEntry, IndexHash } from 'storybook/manager-api';
3
3
  import type { StoryObj, Meta } from '@storybook/react';
4
4
  import { Tree } from './Tree';
5
5
  import type { Dataset } from '@storybook/react-native-ui-common';
package/src/Tree.tsx CHANGED
@@ -17,7 +17,7 @@ import type {
17
17
  State,
18
18
  StoriesHash,
19
19
  StoryEntry,
20
- } from 'storybook/internal/manager-api';
20
+ } from 'storybook/manager-api';
21
21
  import { useSelectedNode } from './SelectedNodeProvider';
22
22
  import { ComponentNode, GroupNode, StoryNode } from './TreeNode';
23
23
  import { CollapseAllIcon, CollapseIcon, ExpandAllIcon } from './icon/iconDataUris';