mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 22:21:27 +08:00
remove storyStore.getSelection
This commit is contained in:
parent
64293093bb
commit
00a394ef0e
@ -17,7 +17,6 @@ jest.mock('global', () => ({
|
||||
// @ts-expect-error (Converted from ts-ignore)
|
||||
window: global,
|
||||
__STORYBOOK_STORY_STORE__: {
|
||||
getSelection: jest.fn(() => ({ id: 1 })),
|
||||
fromId: jest.fn(() => ({})),
|
||||
},
|
||||
}));
|
||||
|
@ -72,17 +72,6 @@ export class PreviewWeb<TFramework extends AnyFramework> extends Preview<TFramew
|
||||
|
||||
this.view = new WebView();
|
||||
this.urlStore = new UrlStore();
|
||||
|
||||
// Add deprecated APIs for back-compat
|
||||
// @ts-expect-error (Converted from ts-ignore)
|
||||
this.storyStore.getSelection = deprecate(
|
||||
() => this.urlStore.selection,
|
||||
dedent`
|
||||
\`__STORYBOOK_STORY_STORE__.getSelection()\` is deprecated and will be removed in 7.0.
|
||||
|
||||
To get the current selection, use the \`useStoryContext()\` hook from \`@storybook/addons\`.
|
||||
`
|
||||
);
|
||||
}
|
||||
|
||||
setupListeners() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user