This repository was archived by the owner on Feb 22, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +466
-412
lines changed Expand file tree Collapse file tree 5 files changed +466
-412
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
6
and this project mostly adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
8
+ ## [ 2.3.0] - 2019-11-29
9
+
10
+ ### Added
11
+ - Added a ` group-focus-within ` variant
12
+
8
13
## [ 2.2.0] - 2019-09-02
9
14
10
15
### Removed
@@ -28,7 +33,8 @@ No change since 2.0.0-beta.1
28
33
29
34
Initial release
30
35
31
- [ Unreleased ] : https://github.com/benface/tailwindcss-interaction-variants/compare/v2.2.0...HEAD
36
+ [ Unreleased ] : https://github.com/benface/tailwindcss-interaction-variants/compare/v2.3.0...HEAD
37
+ [ 2.3.0 ] : https://github.com/benface/tailwindcss-interaction-variants/compare/v2.2.0...v2.3.0
32
38
[ 2.2.0 ] : https://github.com/benface/tailwindcss-interaction-variants/compare/v2.1.0...v2.2.0
33
39
[ 2.1.0 ] : https://github.com/benface/tailwindcss-interaction-variants/compare/v2.0.0...v2.1.0
34
40
[ 2.0.0 ] : https://github.com/benface/tailwindcss-interaction-variants/compare/v2.0.0-beta.1...v2.0.0
Original file line number Diff line number Diff line change @@ -15,8 +15,9 @@ const groupPseudoClassVariant = function(pseudoClass) {
15
15
} ;
16
16
17
17
module . exports = function ( ) {
18
- return ( { addVariant, e } ) => {
18
+ return ( { addVariant } ) => {
19
19
addVariant ( 'group-focus' , groupPseudoClassVariant ( 'focus' ) ) ;
20
+ addVariant ( 'group-focus-within' , groupPseudoClassVariant ( 'focus-within' ) ) ;
20
21
addVariant ( 'group-active' , groupPseudoClassVariant ( 'active' ) ) ;
21
22
22
23
addVariant ( 'hocus' , ( { modifySelectors, separator } ) => {
You can’t perform that action at this time.
0 commit comments