2024-02-07 13:53:34 +00:00
|
|
|
export default {
|
|
|
|
name: 'Popover',
|
|
|
|
selector: '.popover',
|
2024-02-15 18:20:27 +00:00
|
|
|
lazy: true,
|
2024-02-11 21:11:28 +00:00
|
|
|
variants: {
|
|
|
|
modal: '.modal'
|
|
|
|
},
|
2024-02-07 13:53:34 +00:00
|
|
|
validInnerComponents: [
|
|
|
|
'Text',
|
|
|
|
'Link',
|
|
|
|
'Icon',
|
2024-02-13 00:09:43 +00:00
|
|
|
'Border',
|
2024-02-07 13:53:34 +00:00
|
|
|
'Button',
|
2024-02-12 15:26:08 +00:00
|
|
|
'ButtonUnstyled',
|
2024-02-07 13:53:34 +00:00
|
|
|
'Input',
|
2024-02-12 17:17:17 +00:00
|
|
|
'MenuItem',
|
2024-02-18 18:11:06 +00:00
|
|
|
'Post',
|
|
|
|
'UserCard'
|
2024-02-07 13:53:34 +00:00
|
|
|
],
|
|
|
|
defaultRules: [
|
|
|
|
{
|
|
|
|
directives: {
|
2024-02-11 21:11:28 +00:00
|
|
|
background: '--bg',
|
2024-02-22 13:15:08 +00:00
|
|
|
blur: '10px',
|
2024-02-11 21:11:28 +00:00
|
|
|
shadow: [{
|
|
|
|
x: 2,
|
|
|
|
y: 2,
|
|
|
|
blur: 3,
|
|
|
|
spread: 0,
|
|
|
|
color: '#000000',
|
|
|
|
alpha: 0.5
|
|
|
|
}]
|
2024-02-07 13:53:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|