refactor(frontend): 优化公共组件和布局组件

- 更新 Logo 相关组件 (AetherLogo, HeaderLogo, RippleLogo 等)
- 优化图表组件 (BarChart, LineChart, ScatterChart)
- 改进公共组件 (AlertDialog, EmptyState, LoadingState)
- 调整布局组件 (AppShell, SidebarNav, PageHeader 等)
- 优化 ActivityHeatmap 统计组件
This commit is contained in:
fawney19
2025-12-12 16:15:16 +08:00
parent 44e7117d4a
commit e9a6233655
21 changed files with 1130 additions and 517 deletions

View File

@@ -7,8 +7,8 @@
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 799.31 752.14"
class="transition-colors duration-500 ease-out"
:class="[
'transition-colors duration-500 ease-out',
logoClass
]"
>
@@ -32,7 +32,7 @@ const props = withDefaults(defineProps<Props>(), {
className: ''
})
const containerClass = props.size + ' ' + props.className
const containerClass = `${props.size } ${ props.className}`
const logoClass = 'w-full h-full'
</script>