fix(ui): заменить таблицы на карточки данных и улучшить функциональность поиска
Docker images / prepare-release (push) Successful in 6s
Docker images / backend-image (push) Successful in 1m37s
Docker images / frontend-image (push) Successful in 1m50s
Docker images / updater-image (push) Successful in 44s
Docker images / notify-webhook (push) Has been skipped
Docker images / publish-release (push) Successful in 7s

This commit is contained in:
Denozordec
2026-06-30 22:22:51 +07:00
parent a1a9124f3d
commit d3a2d38b37
63 changed files with 8509 additions and 3652 deletions
+18
View File
@@ -0,0 +1,18 @@
import type { ReactNode } from "react"
import { Card } from "@/components/ui/card"
import { cn } from "@/lib/utils"
interface DataPageCardProps {
children: ReactNode
className?: string
}
function DataPageCard({ children, className }: DataPageCardProps) {
return (
<Card className={cn("overflow-hidden py-0 gap-0", className)}>
{children}
</Card>
)
}
export { DataPageCard, type DataPageCardProps }