Files
zpan/src/vite-env.d.ts
T
saltbo acdfc02e41 feat(ui): unify page layout across Files/Shares/Trash/Teams/Settings
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>
2026-04-20 21:31:31 -04:00

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
}
}