missing group-focus types
See original GitHub issuemodule.exports = {
...
variants: {
visibility: ["responsive", "hover", "focus", "group-hover", "group-focus"],
}
};
The generated types contain the group-hover types, but not the group-focus ones:
export type TPseudoClasses =
...
| 'group-hover:visible'
| 'group-hover:invisible'
As per the documentation, group-focus works just like group-hover, so should their types 😃
Issue Analytics
- State:
- Created 3 years ago
- Comments:7 (3 by maintainers)
Top Results From Across the Web
Set up a Focus on iPhone - Apple Support
Set up a Focus on iPhone to help you concentrate by reducing distractions. ... Safari: Choose which Tab Group you want to use...
Read more >What is a Focus Group | Step-by-Step Guide & Examples
A focus group is a small group of participants who share their feelings or perceptions on a particular topic with researchers.
Read more >Designing and Conducting Focus Group Interviews
Use "think back" questions. Take people back to an experience and not forward to the future. • Use different types of questions.
Read more >The use of focus group discussion methodology: Insights from ...
Focus group discussion is frequently used as a qualitative approach to gain an in-depth understanding of social issues.
Read more >Types of Legal Focus Groups | Larrick Law Firm | FAQs
There are over 50 types of legal focus groups, with varying pros and cons. As a trial consultant who specializes in focus groups,...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@muhammadsammy really sorry ^^ The fix in dbf7f20 doesn’t seem correct.
Given conf
I get
the
group-focus:visible
utility is missing.Given conf
I get
the
group-hover:visible
utility is missing.It looks like the
group
utility replaces the first generated rule instead of being added.@muhammadsammy actually I still have an issue. When enabling the
group-hover
orgroup-focus
variants, we need to add the.group
class as well, but it is not added to the types.https://tailwindcss.com/docs/pseudo-class-variants#group-hover