2024-02-19 15:11:59 +02:00
|
|
|
export default {
|
|
|
|
|
name: 'ChatMessage',
|
|
|
|
|
selector: '.chat-message',
|
|
|
|
|
variants: {
|
2026-01-06 16:22:52 +02:00
|
|
|
outgoing: '.outgoing',
|
2024-02-19 15:11:59 +02:00
|
|
|
},
|
2026-01-06 16:22:52 +02:00
|
|
|
validInnerComponents: ['Text', 'Icon', 'Border', 'PollGraph'],
|
2024-02-19 15:11:59 +02:00
|
|
|
defaultRules: [
|
|
|
|
|
{
|
|
|
|
|
directives: {
|
|
|
|
|
background: '--bg, 2',
|
2026-01-06 16:22:52 +02:00
|
|
|
backgroundNoCssColor: 'yes',
|
|
|
|
|
},
|
2024-02-19 15:11:59 +02:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
variant: 'outgoing',
|
|
|
|
|
directives: {
|
2026-01-06 16:22:52 +02:00
|
|
|
background: '--bg, 5',
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
],
|
2024-02-19 15:11:59 +02:00
|
|
|
}
|