@websolutespa/payload-plugin-bowl
Version:
Bowl PayloadCms plugin of the BOM Repository
19 lines (18 loc) • 444 B
JavaScript
import { deepMerge } from '@websolutespa/payload-utils';
import { withSelect } from './withSelect';
export const SeoWeightDefaults = {
name: 'seoWeight',
options: [
'h1',
'h2',
'h3',
'h4',
'h5',
'h6'
]
};
export const withSeoWeight = (options = {})=>{
const field = withSelect(deepMerge(SeoWeightDefaults, options));
return field;
};
//# sourceMappingURL=withSeoWeight.js.map