21 lines
309 B
JavaScript
21 lines
309 B
JavaScript
|
|
export default {
|
||
|
|
name: 'Notification',
|
||
|
|
selector: '.Notification',
|
||
|
|
validInnerComponents: [
|
||
|
|
'Text',
|
||
|
|
'Link',
|
||
|
|
'Icon',
|
||
|
|
'Border',
|
||
|
|
'Button',
|
||
|
|
'ButtonUnstyled',
|
||
|
|
'RichContent',
|
||
|
|
'Input'
|
||
|
|
],
|
||
|
|
defaultRules: [
|
||
|
|
{
|
||
|
|
directives: {
|
||
|
|
background: '--bg'
|
||
|
|
}
|
||
|
|
}
|
||
|
|
]
|
||
|
|
}
|