Michael Shilman
Michael Shilman
### Describe the bug  Currently we hide all the useful information for autoblockers in the file `migration-storybook.log`. We should show the users what they need to do in the...
Reporting from https://github.com/storybookjs/storybook/pull/24165 Currently TS enums analysis is lossy: ```tsx enum ButtonType { Button = 'button', Reset = 'reset', Submit = 'submit', } type ButtonTestProps = { type?: ButtonType; };...
The following input: ``` import React, { forwardRef } from 'react'; interface ButtonProps { variant?: 'small' | 'large'; disabled?: boolean; children: React.ReactNode; } export const Button = forwardRef(function Button( {...
**Is your feature request related to a problem? Please describe.** When overriding a story name it must be a string literal. Not a variable and not a template literal. https://discord.com/channels/486522875931656193/1054051640946208768/1055259413415481394...
📦 Published PR as canary version: 0.1.4--canary.80.ba37fd5.0 :sparkles: Test out this PR locally via: ```bash npm install @storybook/[email protected] # or yarn add @storybook/[email protected] ```
Storybook 5.3 will include official MDX support and we should incorporate more of that into the design system. Specifically: - [ ] Introduction - add a kitchen sink example story?...
Measure is causing an extra render, which is messing up CSF3's `setup` (=> `play`) function. ### How to reproduce In the Storybook monorepo: ``` cd examples/react-ts yarn storybook open http://localhost:9011/?path=/story/demo-accountform--standard...
We get a lot of issues relating to inline SVGs. Anybody want to write a preset for it? See e.g. https://github.com/storybookjs/storybook/issues/6758#issuecomment-495863544
Updated #335 with the new vanity url. Thanks @jamiebuilds!! 🙏 --- In order to make the review process faster, please take a few minutes to go through this checklist: ##...
Closes #26215 ## What I did ## Checklist for Contributors ### Testing #### The changes in this PR are covered in the following automated tests: - [ ] stories -...