@innovixx/payload-color-picker-field
Version:
The Payload Color Picker that enables an easy color selection field for your Payload projects.
22 lines (21 loc) • 622 B
JavaScript
export const colorPickerField = (options) => {
const { colors, ...rest } = options || {};
return {
...rest,
name: rest?.name || 'colorPicker',
type: 'text',
admin: {
...rest?.admin,
components: {
...rest?.admin?.components,
Field: {
clientProps: {
colors
},
path: '@innovixx/payload-color-picker-field/components#ColorPickerFieldComponent',
},
},
},
label: rest?.label || 'Color Picker',
};
};