UNPKG

design-comuni-plone-theme

Version:
40 lines (34 loc) 794 B
import { templatesOptions, addDefaultOptions, } from 'design-comuni-plone-theme/config/Blocks/ListingOptions'; import { addLighthouseField } from 'design-comuni-plone-theme/config/Blocks/ListingOptions/utils'; export const addCardWithSlideUpTextTemplateOptions = ( schema, formData, intl, position = 1, ) => { let pos = position; pos = addLighthouseField(schema, intl, pos); pos = addDefaultOptions(schema, formData, intl, pos); pos = templatesOptions( schema, formData, intl, [ 'show_section', 'show_type', 'hide_dates', 'show_description', 'wrap_title', ], { show_section: { default: false }, hide_dates: { default: false }, wrap_title: { default: false }, }, pos, ); return pos; };