@@ -10,8 +10,8 @@ export default (options: Required<ModuleOptions>) => ({
10
10
group : 'p-1 isolate' ,
11
11
empty : 'py-6 text-center text-sm text-[var(--ui-text-muted)]' ,
12
12
label : 'px-2 py-1.5 text-xs font-semibold text-[var(--ui-text-highlighted)]' ,
13
- item : [ 'group relative w-full flex items-center gap-2 px-2 py-1.5 text-sm select-none outline-none before:absolute before:z-[-1] before:inset-px before:rounded-[calc(var(--ui-radius)*1.5)] data-disabled:cursor-not-allowed data-disabled:opacity-75 text-[var(--ui-text)] data-highlighted:text-[var(--ui-text-highlighted)] data-highlighted:before:bg-[var(--ui-bg-elevated)]/50' , options . theme . transitions && 'transition-colors before:transition-colors' ] ,
14
- itemLeadingIcon : [ 'shrink-0 size-5 text-[var(--ui-text-dimmed)] group-data-highlighted:text-[var(--ui-text)]' , options . theme . transitions && 'transition-colors' ] ,
13
+ item : 'group relative w-full flex items-center gap-2 px-2 py-1.5 text-sm select-none outline-none before:absolute before:z-[-1] before:inset-px before:rounded-[calc(var(--ui-radius)*1.5)] data-disabled:cursor-not-allowed data-disabled:opacity-75' ,
14
+ itemLeadingIcon : 'shrink-0 size-5' ,
15
15
itemLeadingAvatar : 'shrink-0' ,
16
16
itemLeadingAvatarSize : '2xs' ,
17
17
itemLeadingChip : 'shrink-0 size-5' ,
@@ -27,6 +27,16 @@ export default (options: Required<ModuleOptions>) => ({
27
27
itemLabelSuffix : 'text-[var(--ui-text-dimmed)] [&>mark]:text-[var(--ui-bg)] [&>mark]:bg-[var(--ui-primary)]'
28
28
} ,
29
29
variants : {
30
+ active : {
31
+ true : {
32
+ item : 'text-[var(--ui-text-highlighted)] before:bg-[var(--ui-bg-elevated)]' ,
33
+ itemLeadingIcon : 'text-[var(--ui-text)]'
34
+ } ,
35
+ false : {
36
+ item : [ 'text-[var(--ui-text)] data-highlighted:text-[var(--ui-text-highlighted)] data-highlighted:before:bg-[var(--ui-bg-elevated)]/50' , options . theme . transitions && 'transition-colors before:transition-colors' ] ,
37
+ itemLeadingIcon : [ 'text-[var(--ui-text-dimmed)] group-data-highlighted:text-[var(--ui-text)]' , options . theme . transitions && 'transition-colors' ]
38
+ }
39
+ } ,
30
40
loading : {
31
41
true : {
32
42
itemLeadingIcon : 'animate-spin'
0 commit comments