mirror of
https://github.com/saltbo/zpan.git
synced 2026-08-30 17:50:07 +08:00
acdfc02e41
Introduce shared PageHeader + GlobalSearchBar and a canvas background token so every authenticated page follows the same shape: top bar (search + bell) → compressed PageHeader (breadcrumb + actions) → Card-wrapped content. Files/Shares/Trash/Teams/Settings refactored to use shadcn Card instead of hand-written border/bg divs. Files table column widths fixed (Name flex via meta.flex, Size 96, Modified 160) and Trash first column aligned to match. Trash English title renamed to "Trash". Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
11 lines
200 B
TypeScript
11 lines
200 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
import '@tanstack/react-table'
|
|
|
|
declare module '@tanstack/react-table' {
|
|
interface ColumnMeta<TData, TValue> {
|
|
className?: string
|
|
flex?: boolean
|
|
}
|
|
}
|