Skip to content

Commit

Permalink
interactions debugger is now default
Browse files Browse the repository at this point in the history
  • Loading branch information
yannbf committed Mar 31, 2023
1 parent 9682f7c commit 37d9737
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions MIGRATION.md
Expand Up @@ -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)
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 37d9737

Please sign in to comment.