Matthieu L.
Matthieu L.
Same here !
Happens on multi value slider, due to missing parens following allowSameValue PR. We are sending a PR with @Lacourvincent to fix this and another bug on slider mouse dragging
I wish we didn't need a separate package to make this work. `@storybook/nextjs` framework should expose decorators to include in the tests. In the last beta version `7.6.0-beta.2`, importing decorators...
The problem is that decorators in dist/preview are not exposed. I found a workaround, with jest module mapper. In `jest.config.js` : ```js moduleNameMapper: { ... '@storybook/nextjs/dist/preview': '/node_modules/@storybook/nextjs/dist/preview', }, ``` In...
I can't to make this work with Storybook 8.1+. What I understand is that importing the nextjs decorators manually from @storybook/nextjs is no longer necessary when importing composeStories from @storybook/nextjs,...