UNPKG

@websolutespa/payload-plugin-bowl

Version:

Bowl PayloadCms plugin of the BOM Repository

15 lines (14 loc) 438 B
import { deepMerge } from '@websolutespa/payload-utils'; import { withCheckbox } from './withCheckbox'; export const withIsDefault = (options = {})=>{ return withCheckbox(deepMerge({ name: 'isDefault' }, options)); }; export const withIsDefaultRequired = (options = {})=>{ return withCheckbox(deepMerge({ name: 'isDefault', required: true }, options)); }; //# sourceMappingURL=withIsDefault.js.map