UNPKG

@nouance/payload-better-fields-plugin

Version:

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

34 lines (33 loc) 923 B
import { deepMerge } from 'payload'; export const AlertBoxField = ({ config, overrides })=>{ const alertBoxField = deepMerge({ name: 'AlertBox', type: 'ui', admin: { components: { Field: { clientProps: { ...config, icon: { enable: true, ...config.icon } }, path: '@nouance/payload-better-fields-plugin/AlertBox/client#AlertBoxComponent' } }, custom: { ...config, icon: { enable: true, ...config.icon } } } }, overrides); const fields = [ alertBoxField ]; return fields; }; //# sourceMappingURL=index.js.map