remove storyStore.getSelection

This commit is contained in:
Norbert de Langen 2022-10-14 17:33:18 +02:00
parent 64293093bb
commit 00a394ef0e
No known key found for this signature in database
GPG Key ID: FD0E78AF9A837762
2 changed files with 0 additions and 12 deletions

View File

@ -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(() => ({})),
},
}));

View File

@ -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() {