27 lines
424 B
JavaScript
27 lines
424 B
JavaScript
export default {
|
|
name: 'Popover',
|
|
selector: '.popover',
|
|
lazy: true,
|
|
variants: {
|
|
modal: '.modal'
|
|
},
|
|
validInnerComponents: [
|
|
'MenuItem'
|
|
],
|
|
defaultRules: [
|
|
{
|
|
directives: {
|
|
background: '--bg',
|
|
blur: '10px',
|
|
shadow: [{
|
|
x: 2,
|
|
y: 2,
|
|
blur: 3,
|
|
spread: 0,
|
|
color: '#000000',
|
|
alpha: 0.5
|
|
}]
|
|
}
|
|
}
|
|
]
|
|
}
|