Overview
- Getting Started
- Loading States
- Forms
- Feature Flags
- Portal
- Show
- For
- Text
- Toggle
- Local Storage
Actions
- Button
- Icon Button
Communication
- Admonition
- Accordion
- Avatar
- Notifications
- Progress Indicators
- Tag
- Tooltip
Containment
- Confirm Modal
- Prompt Modal
- CTA Modal
- Modaldeprecated
- Dialog
- Table
Navigation
- Menu
- Tabs
Selection
- Drag & Drop
- Checkbox
- Date Picker
- Radio
- Rating
- Select
- Combobox
- Switch
Inputs
- Field
- Input
- Textarea
- Labeldeprecated
- Fieldset
- Field Messagedeprecated
- File Uploader
Hooks & Helpers
- split-props
- trap-focusdeprecated
- use-root-colors
- use-theme
- use-theme-context
- use-toggledeprecated
Field Message
Field Messages describe the context of a form element
1import { Field, FieldMessage } from '@cerberus/react'
Usage
1import { Field, FieldMessage, Label } from '@cerberus/react'2
3function FieldMessageBasicPreview() {4 return (5 <Field required>6 <Label htmlFor="first_name">First Name</Label>7 <Input aria-describedby="help:first_name" id="first_name" type="text" />8 <FieldMessage id="help:first_name">9 This will only be used in your account information.10 </FieldMessage>11 </Field>12 )13}
Invalid
1import { Field, FieldMessage, Label } from '@cerberus/react'2
3function FieldMessageInvalidPreview() {4 return (5 <Field invalid>6 <Label htmlFor="first_name">First Name</Label>7 <Input8 aria-describedby="help:first_name"9 id="first_name"10 type="text"11 placeholder="Your first name"12 />13 <FieldMessage id="help:first_name">14 A first name is required to create an account.15 </FieldMessage>16 </Field>17 )18}
Customizing
1import { Field, FieldMessage, Label } from '@cerberus/react'2
3function FieldMessageCustomPreview() {4 return (5 <Field required>6 <Label htmlFor="global_search">Killa Bees</Label>7 <Input aria-describedby="help:search" id="global_search" type="text" />8 <FieldMessage9 className={css({10 bgColor: 'black',11 color: 'yellow',12 p: '2',13 })}14 id="help:search"15 >16 Wu-Tang Clan ain't nothing to mess with!17 </FieldMessage>18 </Field>19 )20}
API
export interface FieldProps { disabled?: boolean invalid?: boolean required?: boolean readOnly?: boolean}
define function Field(props: PropsWithChildren<FieldProps>): ReactNode
export interface FieldMessageProps extends HTMLAttributes<HTMLParagraphElement> { id: string}
define function FieldMessage(props: FieldMessageProps): ReactNode
Props
The FieldMessage
component accepts the same props as the small
element except the id
prop is required.
1import { Field, FieldMessage } from '@cerberus/react'
Usage
1import { Field, FieldMessage, Label } from '@cerberus/react'2
3function FieldMessageBasicPreview() {4 return (5 <Field required>6 <Label htmlFor="first_name">First Name</Label>7 <Input aria-describedby="help:first_name" id="first_name" type="text" />8 <FieldMessage id="help:first_name">9 This will only be used in your account information.10 </FieldMessage>11 </Field>12 )13}
Invalid
1import { Field, FieldMessage, Label } from '@cerberus/react'2
3function FieldMessageInvalidPreview() {4 return (5 <Field invalid>6 <Label htmlFor="first_name">First Name</Label>7 <Input8 aria-describedby="help:first_name"9 id="first_name"10 type="text"11 placeholder="Your first name"12 />13 <FieldMessage id="help:first_name">14 A first name is required to create an account.15 </FieldMessage>16 </Field>17 )18}
Customizing
1import { Field, FieldMessage, Label } from '@cerberus/react'2
3function FieldMessageCustomPreview() {4 return (5 <Field required>6 <Label htmlFor="global_search">Killa Bees</Label>7 <Input aria-describedby="help:search" id="global_search" type="text" />8 <FieldMessage9 className={css({10 bgColor: 'black',11 color: 'yellow',12 p: '2',13 })}14 id="help:search"15 >16 Wu-Tang Clan ain't nothing to mess with!17 </FieldMessage>18 </Field>19 )20}
API
export interface FieldProps { disabled?: boolean invalid?: boolean required?: boolean readOnly?: boolean}
define function Field(props: PropsWithChildren<FieldProps>): ReactNode
export interface FieldMessageProps extends HTMLAttributes<HTMLParagraphElement> { id: string}
define function FieldMessage(props: FieldMessageProps): ReactNode
Props
The FieldMessage
component accepts the same props as the small
element except the id
prop is required.
1import { Field, FieldMessage } from '@cerberus/react'
Usage
1import { Field, FieldMessage, Label } from '@cerberus/react'2
3function FieldMessageBasicPreview() {4 return (5 <Field required>6 <Label htmlFor="first_name">First Name</Label>7 <Input aria-describedby="help:first_name" id="first_name" type="text" />8 <FieldMessage id="help:first_name">9 This will only be used in your account information.10 </FieldMessage>11 </Field>12 )13}
Invalid
1import { Field, FieldMessage, Label } from '@cerberus/react'2
3function FieldMessageInvalidPreview() {4 return (5 <Field invalid>6 <Label htmlFor="first_name">First Name</Label>7 <Input8 aria-describedby="help:first_name"9 id="first_name"10 type="text"11 placeholder="Your first name"12 />13 <FieldMessage id="help:first_name">14 A first name is required to create an account.15 </FieldMessage>16 </Field>17 )18}
Customizing
1import { Field, FieldMessage, Label } from '@cerberus/react'2
3function FieldMessageCustomPreview() {4 return (5 <Field required>6 <Label htmlFor="global_search">Killa Bees</Label>7 <Input aria-describedby="help:search" id="global_search" type="text" />8 <FieldMessage9 className={css({10 bgColor: 'black',11 color: 'yellow',12 p: '2',13 })}14 id="help:search"15 >16 Wu-Tang Clan ain't nothing to mess with!17 </FieldMessage>18 </Field>19 )20}
API
export interface FieldProps { disabled?: boolean invalid?: boolean required?: boolean readOnly?: boolean}
define function Field(props: PropsWithChildren<FieldProps>): ReactNode
export interface FieldMessageProps extends HTMLAttributes<HTMLParagraphElement> { id: string}
define function FieldMessage(props: FieldMessageProps): ReactNode
Props
The FieldMessage
component accepts the same props as the small
element except the id
prop is required.
1import { Field, FieldMessage } from '@cerberus/react'
Usage
1import { Field, FieldMessage, Label } from '@cerberus/react'2
3function FieldMessageBasicPreview() {4 return (5 <Field required>6 <Label htmlFor="first_name">First Name</Label>7 <Input aria-describedby="help:first_name" id="first_name" type="text" />8 <FieldMessage id="help:first_name">9 This will only be used in your account information.10 </FieldMessage>11 </Field>12 )13}
Invalid
1import { Field, FieldMessage, Label } from '@cerberus/react'2
3function FieldMessageInvalidPreview() {4 return (5 <Field invalid>6 <Label htmlFor="first_name">First Name</Label>7 <Input8 aria-describedby="help:first_name"9 id="first_name"10 type="text"11 placeholder="Your first name"12 />13 <FieldMessage id="help:first_name">14 A first name is required to create an account.15 </FieldMessage>16 </Field>17 )18}
Customizing
1import { Field, FieldMessage, Label } from '@cerberus/react'2
3function FieldMessageCustomPreview() {4 return (5 <Field required>6 <Label htmlFor="global_search">Killa Bees</Label>7 <Input aria-describedby="help:search" id="global_search" type="text" />8 <FieldMessage9 className={css({10 bgColor: 'black',11 color: 'yellow',12 p: '2',13 })}14 id="help:search"15 >16 Wu-Tang Clan ain't nothing to mess with!17 </FieldMessage>18 </Field>19 )20}
API
export interface FieldProps { disabled?: boolean invalid?: boolean required?: boolean readOnly?: boolean}
define function Field(props: PropsWithChildren<FieldProps>): ReactNode
export interface FieldMessageProps extends HTMLAttributes<HTMLParagraphElement> { id: string}
define function FieldMessage(props: FieldMessageProps): ReactNode
Props
The FieldMessage
component accepts the same props as the small
element except the id
prop is required.