Field

Layout primitives for the Omni form system—uppercase labels, glass dividers, and responsive spacing that keeps complex forms aligned.

Environment form

Rollout configuration
Mix vertical and responsive rows to match the PoC form spacing.

The slug used for dashboard navigation and API prefixes.

Used for escalation workflows and audit tagging.

Rollout policy
Environmentstaging

Toggle to notify the incident channel when metrics drift.

Installation

pnpm dlx shadcn@latest add @omni/field

Usage

import { FieldSet, Field, FieldLabel, FieldContent } from "@/components/ui/field"

<FieldSet>
  <Field>
    <FieldLabel htmlFor="name">Name</FieldLabel>
    <FieldContent>
      <Input id="name" placeholder="Service name" />
    </FieldContent>
  </Field>
</FieldSet>