@@ -5,7 +5,8 @@ import {nonConfigurableClassNames} from '../lib/non-configurable';
5
5
import {
6
6
TAllClassnames , Backgrounds , Layout , Borders , Tables , Effects ,
7
7
Interactivity , TransitionsAndAnimations , Transforms , Accessibility , SVG ,
8
- FlexBox , Grid , Spacing , Sizing , Typography , Filters
8
+ FlexBox , Grid , Spacing , Sizing , Typography , Filters ,
9
+ Grouping
9
10
} from '../types/classes' ;
10
11
import { TConfigTheme , TConfigDarkMode } from '../types/config' ;
11
12
import { tailwindLabsPlugins } from '../lib/tailwindlabs-plugins' ;
@@ -44,6 +45,7 @@ export class ClassnamesGenerator {
44
45
Filters : this . filters ( ) ,
45
46
FlexBox : this . flexBox ( ) ,
46
47
Grid : this . grid ( ) ,
48
+ Grouping : this . grouping ( ) ,
47
49
Spacing : this . spacing ( ) ,
48
50
Interactivity : this . interactivity ( ) ,
49
51
Layout : this . layout ( ) ,
@@ -94,6 +96,13 @@ export class ClassnamesGenerator {
94
96
} ;
95
97
} ;
96
98
99
+ private grouping = ( ) : Grouping => {
100
+ return {
101
+ group : [ 'group' ] ,
102
+ peer : [ 'peer' ] ,
103
+ } ;
104
+ } ;
105
+
97
106
private backgrounds = ( ) : Backgrounds => {
98
107
return {
99
108
...nonConfigurableClassNames . backgrounds ,
0 commit comments