-
-
Notifications
You must be signed in to change notification settings - Fork 296
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
Better TS enum support #877
Labels
Comments
Open
3 tasks
I believe this is not the case anymore...? When i test enums in our project, i got this output: "variant": {
"tsType": {
"name": "union",
"raw": "\"standard\" | \"primary\"",
"elements": [
{
"name": "literal",
"value": "\"standard\""
},
{
"name": "literal",
"value": "\"primary\""
}
]
},
"required": false,
"description": "The variant of the button.",
"defaultValue": {
"value": "\"standard\"",
"computed": false
}
} the typescript type looks like this: export type ButtonProps = {
/** The variant of the button. */
variant?: "standard" | "primary";
}; |
@shilman maybe this is actually a storybook integration problem instead. It seems that the enum is available. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Reporting from storybookjs/storybook#24165
Currently TS enums analysis is lossy:
Produces:
Compare this to a union:
Which produces:
It would be fantastic if
react-docgen
could produce something similar for enums!The text was updated successfully, but these errors were encountered: