mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-24 13:58:50 +08:00
23 lines
872 B
TypeScript
23 lines
872 B
TypeScript
import { checkboxPropertyConfig } from './checkbox/cell-renderer.js';
|
|
import { datePropertyConfig } from './date/cell-renderer.js';
|
|
import { imagePropertyConfig } from './image/cell-renderer.js';
|
|
import { multiSelectPropertyConfig } from './multi-select/cell-renderer.js';
|
|
import { numberPropertyConfig } from './number/cell-renderer.js';
|
|
import { progressPropertyConfig } from './progress/cell-renderer.js';
|
|
import { selectPropertyConfig } from './select/cell-renderer.js';
|
|
import { textPropertyConfig } from './text/cell-renderer.js';
|
|
|
|
export * from './converts.js';
|
|
export * from './number/types.js';
|
|
export * from './select/define.js';
|
|
export const propertyPresets = {
|
|
checkboxPropertyConfig,
|
|
datePropertyConfig,
|
|
imagePropertyConfig,
|
|
multiSelectPropertyConfig,
|
|
numberPropertyConfig,
|
|
progressPropertyConfig,
|
|
selectPropertyConfig,
|
|
textPropertyConfig,
|
|
};
|