@open-formulieren/types
    Preparing search index...

    Interface ColumnsComponentSchema

    The columns component schema.

    Columns are used to manage layout on desktop and mobile viewports by grouping nested components inside into columns.

    interface ColumnsComponentSchema {
        clearOnHide?: boolean;
        columns: Column[];
        hidden?: boolean;
        id: string;
        key: string;
        type: "columns";
    }

    Hierarchy

    • Omit<
          LayoutComponentSchema<never>,

              | "label"
              | "placeholder"
              | "multiple"
              | "defaultValue"
              | "conditional"
              | "errors"
              | "description"
              | "tooltip"
              | "hideLabel"
              | "disabled"
              | "validateOn",
      >
      • ColumnsComponentSchema
    Index

    Properties

    clearOnHide?: boolean

    If the value of this field should be cleared when it is conditionally hidden.

    columns: Column[]
    hidden?: boolean

    Determines if the component should be within the form, but not visible. This can be overridden with the conditionals.

    id: string
    key: string

    The data key for this component (how the data is stored in the database, referenced as API key in docs).

    type: "columns"

    The type of component