UNPKG

@nouance/payload-better-fields-plugin

Version:

A Payload plugin that aims to provide improved fields for the admin panel

14 lines (13 loc) 402 B
import type { Field, TextField } from 'payload'; export type Config = { expanded?: boolean; showPreview?: boolean; type: 'hex' | 'hexA' | 'hsl' | 'hslA' | 'rgb' | 'rgbA'; }; type ColourPicker = ( /** * Overrides for the underlying Text field from Payload */ overrides: Omit<TextField, 'type'>, config?: Config) => Field[]; export declare const ColourPickerField: ColourPicker; export {};