-
-
Notifications
You must be signed in to change notification settings - Fork 37
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
missing group-focus types #53
Comments
Sorry, I don't know what happened ^^' works fine now, closing 🙇 |
@muhammadsammy actually I still have an issue. When enabling the https://tailwindcss.com/docs/pseudo-class-variants#group-hover
$ cat src/utilities/tailwind.ts|grep group
| 'group-hover:visible'
| 'group-focus:visible'
| 'group-hover:invisible'
| 'group-focus:invisible' |
@muhammadsammy really sorry ^^ The fix in dbf7f20 doesn't seem correct. Given conf visibility: ["responsive", "hover", "focus", "group-focus"], I get $ cat src/utilities/tailwind.ts|grep group
| 'group'
| 'group-focus:invisible' the Given conf visibility: ["responsive", "hover", "focus", "group-hover", "group-focus"], I get cat src/utilities/tailwind.ts|grep group
| 'group'
| 'group-focus:visible'
| 'group-hover:invisible'
| 'group-focus:invisible' the It looks like the |
added a fix in 7381d13, v1.8.2 |
@muhammadsammy thanks for being so fast! LGTM |
Glad to help! |
The generated types contain the group-hover types, but not the group-focus ones:
As per the documentation, group-focus works just like group-hover, so should their types :)
The text was updated successfully, but these errors were encountered: