fix(ui): выровнять chrome Frame и убрать Card-оболочки
Docker images / prepare-release (push) Successful in 4s
Docker images / backend-image (push) Failing after 2m36s
Docker images / frontend-image (push) Successful in 2m22s
Docker images / notify-webhook (push) Skipped
Docker images / updater-image (push) Successful in 55s
Docker images / publish-release (push) Skipped

Подключить App Switcher, NavUser, OpsPanel и AlertDialog вместо Card-shell.

Co-authored-by: Cursor <[email protected]>
This commit is contained in:
Denozordec
2026-08-17 15:36:56 +07:00
co-authored by Cursor
parent d2de8d3188
commit 5f29cfaf0f
47 changed files with 1972 additions and 860 deletions
+7 -4
View File
@@ -1,5 +1,5 @@
import type { ReactNode } from "react"
import { Card } from "@/components/ui/card"
import { Frame, FramePanel } from "@/components/reui/frame"
import { DATA_PAGE_CARD_CLASS } from "@/components/data-grids/shared/data-grid-layout"
import { cn } from "@/lib/utils"
@@ -8,11 +8,14 @@ interface DataPageCardProps {
className?: string
}
/** Ops list shell — ReUI Frame, not shadcn Card. Preview: https://reui.io/docs/components/base/frame */
function DataPageCard({ children, className }: DataPageCardProps) {
return (
<Card className={cn(DATA_PAGE_CARD_CLASS, className)}>
{children}
</Card>
<Frame dense className={cn("w-full", className)}>
<FramePanel className={cn(DATA_PAGE_CARD_CLASS, "p-0")}>
{children}
</FramePanel>
</Frame>
)
}