import { propertyPresets } from '@blocksuite/data-view/property-presets'; import { linkColumnConfig } from './link/cell-renderer.js'; import { richTextColumnConfig } from './rich-text/cell-renderer.js'; import { titleColumnConfig } from './title/cell-renderer.js'; export * from './converts.js'; const { checkboxPropertyConfig, datePropertyConfig, multiSelectPropertyConfig, numberPropertyConfig, progressPropertyConfig, selectPropertyConfig, } = propertyPresets; export const databaseBlockProperties = { checkboxColumnConfig: checkboxPropertyConfig, dateColumnConfig: datePropertyConfig, multiSelectColumnConfig: multiSelectPropertyConfig, numberColumnConfig: numberPropertyConfig, progressColumnConfig: progressPropertyConfig, selectColumnConfig: selectPropertyConfig, imageColumnConfig: propertyPresets.imagePropertyConfig, linkColumnConfig, richTextColumnConfig, titleColumnConfig, };