refactor(web): унифицировать UI по паттернам ReUI на всех 12 страницах
Docker / build (push) Has been cancelled

Ввести CrudListPage, AnalyticsPage, RowActions и domain edit sheets с FormSheetRhf; убрать устаревшие TableCard/DataTableCard.

Co-authored-by: Cursor <[email protected]>
This commit is contained in:
Denozordec
2026-06-28 13:16:00 +07:00
co-authored by Cursor
parent dc0650b61e
commit 0ea92746e4
31 changed files with 2002 additions and 1430 deletions
+7
View File
@@ -0,0 +1,7 @@
import { z } from 'zod'
export const projectSchema = z.object({
name: z.string().min(1, 'Укажите название проекта').max(120),
})
export type ProjectFormValues = z.infer<typeof projectSchema>
+1
View File
@@ -4,3 +4,4 @@ export * from './contracts/vps.js'
export * from './contracts/payment.js'
export * from './contracts/balance-ledger.js'
export * from './contracts/settings.js'
export * from './contracts/project.js'