UNPKG

alinea

Version:

[![npm](https://img.shields.io/npm/v/alinea.svg)](https://npmjs.org/package/alinea) [![install size](https://packagephobia.com/badge?p=alinea)](https://packagephobia.com/result?p=alinea)

26 lines (25 loc) 1.01 kB
import { FieldOptions, Schema, WithoutLabel } from 'alinea/core'; import { Infer } from 'alinea/core/Infer'; import { ListField } from 'alinea/core/field/ListField'; /** Optional settings to configure a list field */ export interface ListOptions<Definitions extends Schema> extends FieldOptions<Array<any>> { /** Allow these types of blocks to be created */ schema: Definitions; /** Width of the field in the dashboard UI (0-1) */ width?: number; /** Add instructional text to a field */ help?: string; /** Field is optional */ optional?: boolean; /** Display a minimal version */ inline?: boolean; /** Hide this list field */ hidden?: boolean; } export interface ListRow { id: string; index: string; type: string; } /** Create a list field configuration */ export declare function list<Definitions extends Schema>(label: string, options: WithoutLabel<ListOptions<Definitions>>): ListField<Infer<Definitions> & ListRow, ListOptions<Definitions>>;