Fill frontend rule gaps and broaden v2 tokens

Add the frontend guides the v2 UI kit and compliance-portal need but
that the first rework left uncovered: forms, routing, client state, and
permission-gated UI.

forms.md documents a tiered approach on Base UI Field/Form -- native
constraints, then a validate function, then zod parsed in onSubmit, and
react-hook-form only for large or dynamic forms -- and drops the custom
useFormWithSchema wrapper. routing.md covers @probo/routes, navigation,
typed params, URL-as-state, redirects, auth/protected routes, and the
folded-in no-outlet-context rule. state-management.md gives a decision
order across Relay, URL, local state, context, and zustand.
permissions.md gates UI on the canUpdate/canDelete permission(action:)
fields without re-encoding authorization in the client.

Rename v2-colors.md to v2-tokens.md and add the typography, radius,
shadow, and native-spacing scales alongside color. Extend ui.md with
user feedback, empty-state, and accessibility sections; standardize
toasts on Base UI's Toast (Toast.useToastManager) and retire the legacy
useToast across ui.md, forms.md, error-handling.md, and relay.md. Add an
Intl formatting section to i18n.md and a non-Relay HTTP / file
upload-download section to ts-style.md. Update the AGENTS.md index and
the v2-color-scale cursor rule for the new and renamed guides.

Signed-off-by: Émile Ré <emile@probo.com>
This commit is contained in:
Émile Ré
2026-06-23 19:01:38 +02:00
parent c158eb9be4
commit 393c538de1
15 changed files with 836 additions and 32 deletions

View File

@@ -26,7 +26,7 @@
* shadows.css elevation scale (shadow-1…6)
*
* Spacing intentionally stays on Tailwind's native scale (not tokenized).
* See contrib/claude/v2-colors.md for the full usage guide.
* See contrib/claude/v2-tokens.md for the full usage guide.
*/
@import "./theme/colors.css";
@import "./theme/typography.css";

View File

@@ -44,7 +44,7 @@
* Dark mode: toggle .dark on <html>. Radix dark imports handle the rest.
* P3 wide gamut: included automatically via @radix-ui/colors @supports blocks.
*
* See contrib/claude/v2-colors.md for the full usage guide.
* See contrib/claude/v2-tokens.md for the full usage guide.
*/
/* ---------------------------------------------------------------------------