2024-01-18 12:35:25 +00:00
|
|
|
export default {
|
2024-01-22 22:43:46 +00:00
|
|
|
name: 'Underlay',
|
2024-02-07 13:53:34 +00:00
|
|
|
selector: 'body', // Should be '#content' but for now this is better for testing until I have proper popovers and such...
|
2024-01-31 15:39:51 +00:00
|
|
|
outOfTreeSelector: '.underlay',
|
2024-01-18 12:35:25 +00:00
|
|
|
validInnerComponents: [
|
|
|
|
'Panel'
|
2024-01-31 23:27:30 +00:00
|
|
|
],
|
|
|
|
defaultRules: [
|
|
|
|
{
|
|
|
|
component: 'Underlay',
|
|
|
|
// variant: 'normal',
|
|
|
|
// state: 'normal'
|
|
|
|
directives: {
|
|
|
|
background: '#000000',
|
|
|
|
opacity: 0.2
|
|
|
|
}
|
|
|
|
}
|
2024-01-18 12:35:25 +00:00
|
|
|
]
|
|
|
|
}
|