From 37d9737a89932e89a85b31d06559dcb94ea122fc Mon Sep 17 00:00:00 2001 From: Yann Braga Date: Fri, 31 Mar 2023 11:39:43 +0200 Subject: [PATCH] interactions debugger is now default --- MIGRATION.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/MIGRATION.md b/MIGRATION.md index f3a54ad2cc45..5b4af2fd9ac7 100644 --- a/MIGRATION.md +++ b/MIGRATION.md @@ -29,6 +29,7 @@ - [Removed auto injection of @storybook/addon-actions decorator](#removed-auto-injection-of-storybookaddon-actions-decorator) - [Addon-backgrounds: Removed deprecated grid parameter](#addon-backgrounds-removed-deprecated-grid-parameter) - [Addon-a11y: Removed deprecated withA11y decorator](#addon-a11y-removed-deprecated-witha11y-decorator) + - [Addon-interactions: Interactions debugger is now default](#addon-interactions-interactions-debugger-is-now-default) - [7.0 Vite changes](#70-vite-changes) - [Vite builder uses Vite config automatically](#vite-builder-uses-vite-config-automatically) - [Vite cache moved to node_modules/.cache/.vite-storybook](#vite-cache-moved-to-node_modulescachevite-storybook) @@ -863,6 +864,21 @@ Starting in 7.0 the `grid.cellSize` parameter should now be `backgrounds.grid.ce We removed the deprecated `withA11y` decorator. This was [deprecated in 6.0](#removed-witha11y-decorator) +#### Addon-interactions: Interactions debugger is now default + +The interactions debugger in the panel is now displayed by default. The feature flag is now removed. + +```js +// .storybook/main.js + +const config = { + features: { + interactionsDebugger: true, // This should be removed! + }, +}; +export default config; +``` + ### 7.0 Vite changes #### Vite builder uses Vite config automatically