element.ts 391 B

12345678910111213141516171819202122
  1. export const ELEMENT_TYPE_ZH: { [key: string]: string } = {
  2. text: '文本',
  3. image: '图片',
  4. shape: '形状',
  5. line: '线条',
  6. chart: '图表',
  7. table: '表格',
  8. video: '视频',
  9. audio: '音频',
  10. latex: '公式',
  11. }
  12. export const MIN_SIZE: { [key: string]: number } = {
  13. text: 20,
  14. image: 20,
  15. shape: 20,
  16. chart: 200,
  17. table: 20,
  18. video: 250,
  19. audio: 20,
  20. latex: 20,
  21. }