96e3a1593a
lazy (for modals, popovers etc) parts
35 lines
513 B
JavaScript
35 lines
513 B
JavaScript
export default {
|
|
name: 'Popover',
|
|
selector: '.popover',
|
|
lazy: true,
|
|
variants: {
|
|
modal: '.modal'
|
|
},
|
|
validInnerComponents: [
|
|
'Text',
|
|
'Link',
|
|
'Icon',
|
|
'Border',
|
|
'Button',
|
|
'ButtonUnstyled',
|
|
'Input',
|
|
'MenuItem',
|
|
'Post'
|
|
],
|
|
defaultRules: [
|
|
{
|
|
directives: {
|
|
background: '--bg',
|
|
shadow: [{
|
|
x: 2,
|
|
y: 2,
|
|
blur: 3,
|
|
spread: 0,
|
|
color: '#000000',
|
|
alpha: 0.5
|
|
}]
|
|
}
|
|
}
|
|
]
|
|
}
|