We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Consider refactoring the static class name tests from #21960 (see also #21847).
Possible updates:
expectedClassnames
slot: classname
export type SlotClassNames<Component, Slots> = { [SlotName in keyof Slots]-?: SlotName extends 'root' ? `fui-${string & Component}` : `fui-${string & Component}__${string & SlotName}`; };
but requires the Template Literal Types feature from Typescript 4.1. react-components currently must support TS3.9.
react-components
Depends on
The text was updated successfully, but these errors were encountered:
Because this issue has not had activity for over 150 days, we're automatically closing it for house-keeping purposes.
Still require assistance? Please, create a new issue with up-to date details.
Sorry, something went wrong.
spmonahan
No branches or pull requests
Consider refactoring the static class name tests from #21960 (see also #21847).
Possible updates:
expectedClassnames
only require the slot names, not the mappedslot: classname
object. This is less code and slightly cleaner.but requires the Template Literal Types feature from Typescript 4.1.
react-components
currently must support TS3.9.Depends on
The text was updated successfully, but these errors were encountered: