2024-02-15 20:20:27 +02:00
|
|
|
export default {
|
|
|
|
|
name: 'Badge',
|
|
|
|
|
selector: '.badge',
|
2026-01-06 16:22:52 +02:00
|
|
|
validInnerComponents: ['Text', 'Icon'],
|
2024-02-15 20:20:27 +02:00
|
|
|
variants: {
|
2026-01-06 16:22:52 +02:00
|
|
|
notification: '.-notification',
|
2024-02-15 20:20:27 +02:00
|
|
|
},
|
|
|
|
|
defaultRules: [
|
2024-02-28 22:28:15 +02:00
|
|
|
{
|
|
|
|
|
component: 'Root',
|
|
|
|
|
directives: {
|
2026-01-06 16:22:52 +02:00
|
|
|
'--badgeNotification': 'color | --cRed',
|
|
|
|
|
},
|
2024-02-28 22:28:15 +02:00
|
|
|
},
|
2024-02-15 20:20:27 +02:00
|
|
|
{
|
|
|
|
|
directives: {
|
2026-01-06 16:22:52 +02:00
|
|
|
background: '--cGreen',
|
|
|
|
|
},
|
2024-02-15 20:20:27 +02:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
variant: 'notification',
|
|
|
|
|
directives: {
|
2026-01-06 16:22:52 +02:00
|
|
|
background: '--cRed',
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
],
|
2024-02-15 20:20:27 +02:00
|
|
|
}
|