-
Notifications
You must be signed in to change notification settings - Fork 74
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
type def might be missing 'overlay' for OverflowXProperty #62
Comments
The |
Nice thx - I didn't think of casting it |
To quote MDN:
It doesn't look like the value is deprecated, just nonstandard. Should it be added and this issue reopened? |
What is the status on this issue? |
export type OverflowXProperty = Globals | "auto" | "clip" | "hidden" | "scroll" | "visible";
I think its not the only one that should have the 'overlay' property. With material UI when assigning style using JS for overflowX: "overlay" I would get a type error.
Manually did this fix my issue in csstype/index.d.ts:
export type OverflowXProperty = Globals | "auto" | "clip" | "hidden" | "scroll" | "visible" | "overlay";
The text was updated successfully, but these errors were encountered: