2024-02-29 17:49:56 +02:00
|
|
|
export default {
|
|
|
|
|
name: 'ListItem',
|
|
|
|
|
selector: '.list-item',
|
|
|
|
|
states: {
|
|
|
|
|
active: '.-active',
|
2025-03-22 16:04:16 -04:00
|
|
|
hover: ':is(:hover, :focus-visible, :has(:focus-visible)):not(.-non-interactive)'
|
2024-02-29 17:49:56 +02:00
|
|
|
},
|
|
|
|
|
validInnerComponents: [
|
|
|
|
|
'Text',
|
|
|
|
|
'Link',
|
|
|
|
|
'Icon',
|
|
|
|
|
'Border',
|
|
|
|
|
'Button',
|
|
|
|
|
'ButtonUnstyled',
|
|
|
|
|
'RichContent',
|
|
|
|
|
'Input',
|
|
|
|
|
'Avatar'
|
|
|
|
|
],
|
|
|
|
|
defaultRules: [
|
|
|
|
|
{
|
|
|
|
|
directives: {
|
|
|
|
|
background: '--bg',
|
|
|
|
|
opacity: 0
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
state: ['active'],
|
|
|
|
|
directives: {
|
|
|
|
|
background: '--inheritedBackground, 10',
|
|
|
|
|
opacity: 1
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
state: ['hover'],
|
|
|
|
|
directives: {
|
|
|
|
|
background: '--inheritedBackground, 10',
|
|
|
|
|
opacity: 1
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
state: ['hover', 'active'],
|
|
|
|
|
directives: {
|
|
|
|
|
background: '--inheritedBackground, 20',
|
|
|
|
|
opacity: 1
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|