element.ts 264 B

1234567891011121314151617
  1. export const ELEMENT_TYPE = {
  2. 'text': '文本',
  3. 'image': '图片',
  4. 'shape': '形状',
  5. 'line': '线条',
  6. 'chart': '图表',
  7. 'table': '表格',
  8. }
  9. export const MIN_SIZE = {
  10. text: 20,
  11. image: 20,
  12. shape: 15,
  13. chart: 200,
  14. table: 20,
  15. formula: 20,
  16. }