2024-01-18 12:35:25 +00:00
|
|
|
export default {
|
|
|
|
name: 'Panel',
|
2024-01-22 22:43:46 +00:00
|
|
|
selector: '.panel',
|
2024-01-18 12:35:25 +00:00
|
|
|
validInnerComponents: [
|
|
|
|
'Text',
|
2024-01-31 15:39:51 +00:00
|
|
|
'Link',
|
2024-01-18 12:35:25 +00:00
|
|
|
'Icon',
|
2024-02-18 22:22:31 +00:00
|
|
|
'Border',
|
2024-01-23 17:18:55 +00:00
|
|
|
'Button',
|
2024-02-12 15:26:08 +00:00
|
|
|
'ButtonUnstyled',
|
2024-02-07 13:53:34 +00:00
|
|
|
'Input',
|
2024-02-11 21:11:28 +00:00
|
|
|
'PanelHeader',
|
2024-02-12 17:17:17 +00:00
|
|
|
'MenuItem',
|
|
|
|
'Post',
|
2024-02-15 18:20:27 +00:00
|
|
|
'Notification',
|
2024-02-18 18:11:06 +00:00
|
|
|
'Alert',
|
2024-02-19 13:11:59 +00:00
|
|
|
'UserCard',
|
2024-02-21 12:15:25 +00:00
|
|
|
'Chat',
|
2024-02-21 22:02:24 +00:00
|
|
|
'Attachment',
|
2024-02-29 15:49:56 +00:00
|
|
|
'Tab',
|
|
|
|
'ListItem'
|
2024-01-31 23:27:30 +00:00
|
|
|
],
|
2024-07-17 14:19:57 +00:00
|
|
|
validInnerComponentsLite: [
|
|
|
|
'Text',
|
|
|
|
'Link',
|
|
|
|
'Icon',
|
|
|
|
'Border',
|
|
|
|
'Button',
|
|
|
|
'Input',
|
|
|
|
'PanelHeader',
|
|
|
|
'Alert'
|
|
|
|
],
|
2024-01-31 23:27:30 +00:00
|
|
|
defaultRules: [
|
|
|
|
{
|
|
|
|
directives: {
|
2024-03-04 16:24:29 +00:00
|
|
|
backgroundNoCssColor: 'yes',
|
2024-02-11 21:11:28 +00:00
|
|
|
background: '--bg',
|
2024-02-13 00:09:43 +00:00
|
|
|
roundness: 3,
|
2024-02-22 13:15:08 +00:00
|
|
|
blur: '5px',
|
2024-02-11 21:11:28 +00:00
|
|
|
shadow: [{
|
|
|
|
x: 1,
|
|
|
|
y: 1,
|
|
|
|
blur: 4,
|
|
|
|
spread: 0,
|
|
|
|
color: '#000000',
|
|
|
|
alpha: 0.6
|
|
|
|
}]
|
2024-01-31 23:27:30 +00:00
|
|
|
}
|
|
|
|
}
|
2024-01-18 12:35:25 +00:00
|
|
|
]
|
|
|
|
}
|