Docs
API Reference
Base

Base

The base type shared by all fields.

Params

ParamExampleTypeStatus
labellabel: "Title"String-

Optional params

label

Set the label for the input. Puck will use the key if not provided.

const config = {
  components: {
    Example: {
      fields: {
        items: {
          label: "My Field",
          // ...
        },
      },
      // ...
    },
  },
};