tonai / storybook-addon-themes

MIT License
83 stars 30 forks source link

Disable parameter does not work in Story #58

Open aberonni opened 3 years ago

aberonni commented 3 years ago

I've tried disabling the themes plugin for a specific story and I can't get it to work.

For example this doesn't work

export default {
  title: 'DesignTokens/Colors',
  parameters: {
    themes: {
      disable: true
    },
  }
}

But this does

export default {
  title: 'DesignTokens/Colors',
  parameters: {
    themes: {
      list: [{ name: 'Something that only appears in this story', class: '', color: '#FFFFFF' }],
    },
  }
}