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.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and this project mostly adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8+ ## [ 2.3.0] - 2019-11-29
9+
10+ ### Added
11+ - Added a ` group-focus-within ` variant
12+
813## [ 2.2.0] - 2019-09-02
914
1015### Removed
@@ -28,7 +33,8 @@ No change since 2.0.0-beta.1
2833
2934Initial release
3035
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
3238[ 2.2.0 ] : https://github.com/benface/tailwindcss-interaction-variants/compare/v2.1.0...v2.2.0
3339[ 2.1.0 ] : https://github.com/benface/tailwindcss-interaction-variants/compare/v2.0.0...v2.1.0
3440[ 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) {
1515} ;
1616
1717module . exports = function ( ) {
18- return ( { addVariant, e } ) => {
18+ return ( { addVariant } ) => {
1919 addVariant ( 'group-focus' , groupPseudoClassVariant ( 'focus' ) ) ;
20+ addVariant ( 'group-focus-within' , groupPseudoClassVariant ( 'focus-within' ) ) ;
2021 addVariant ( 'group-active' , groupPseudoClassVariant ( 'active' ) ) ;
2122
2223 addVariant ( 'hocus' , ( { modifySelectors, separator } ) => {
You can’t perform that action at this time.
0 commit comments