Michael Shilman

Results 773 comments of Michael Shilman

A component instance doesn't exist without getting instantiated. A story is what instantiates it. Thus ArgsTable can **control** component instances (stories) but can only **display** the props for a component.

disabling a single row `foo` from showing up in the table: ```js export default { title: ..., component: ..., argTypes: { foo: { table: { disable: true } } },...

In MDX the ArgsTable block has an include prop that does what you want. But not for the other use case unfortunately @FilipMessa

@chalovega-cs I think you can filter all of them like this: https://storybook.js.org/docs/react/essentials/controls#filtering-controls

That's pretty tricky and thank you for tracking it down. @jonniebigodes Unfortunately fixing the problem is probably a breaking change, so I think for now our best bet is to...