Michael Shilman
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 } } },...
For a component: ``` ``` For a story: ``` ... ```
In MDX the ArgsTable block has an include prop that does what you want. But not for the other use case unfortunately @FilipMessa
@rayzoor12 it's an open issue #12693
@chalovega-cs I think you can filter all of them like this: https://storybook.js.org/docs/react/essentials/controls#filtering-controls
@JokerDang unfortunately you can't
No the PR was closed without merging
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...
Related: https://github.com/storybookjs/storybook/issues/7109