Files
firecms/website/docs/api/interfaces/formcontext.md
2021-06-06 13:36:47 +02:00

995 B

id, title, sidebar_label, sidebar_position, custom_edit_url
id title sidebar_label sidebar_position custom_edit_url
formcontext Interface: FormContext<S, Key> FormContext 0 null

Type parameters

Name Type
S S: EntitySchema<Key>
Key Key: string = Extract<keyof S["properties"], string>

Properties

entityId

Optional entityId: string

Entity, it can be null if it's a new entity

Defined in

models/fields.tsx:128


entitySchema

entitySchema: S

Schema of the entity being modified

Defined in

models/fields.tsx:118


values

values: EntityValues<S, Key>

Current values of the entity

Defined in

models/fields.tsx:123