Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support color control #75

Open
odanado opened this issue May 16, 2024 · 1 comment
Open

Support color control #75

odanado opened this issue May 16, 2024 · 1 comment

Comments

@odanado
Copy link

odanado commented May 16, 2024

Storybook's preview.ts is set as follows.

import {
  setCustomElementsManifest,
  type Preview,
} from "@storybook/web-components";

import customElements from "/path/to/custom-elements.json";

setCustomElementsManifest(customElements);

const preview: Preview = {
  parameters: {
    controls: {
      matchers: {
        color: /(background|color)$/i,
        date: /Date$/i,
        text: /label$/i,
      },
    },
  },
};

export default preview;

I define the following MyButton custom element.

@customElement('my-button')
export class MyButton extends LitElement {
  @property({type: String})
  color: string = "blue";
}

In this case, the value of argTypes.color.control is text.

const { argTypes } = getWcStorybookHelpers("my-button");

argTypes.color.control // => 'text'

The expected behavior is that the value of control should be color since mathcers is defined in preview.ts.

@break-stuff
Copy link
Owner

I will see if there is a way to tap into that config when building the stories.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants