Space.ts 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. export const Space = {
  2. 'zh-CN': {
  3. title: '弹性间距',
  4. settings: {
  5. 'x-component-props': {
  6. direction: { title: '方向', dataSource: ['垂直', '水平'] },
  7. split: '分割内容',
  8. wrap: '自动换行',
  9. align: {
  10. title: '对齐',
  11. dataSource: ['头部', '尾部', '居中', '基准线']
  12. }
  13. }
  14. }
  15. },
  16. 'en-US': {
  17. title: 'Space',
  18. settings: {
  19. 'x-component-props': {
  20. direction: {
  21. title: 'Direction',
  22. dataSource: ['Vertical', 'Horizontal']
  23. },
  24. split: 'Split',
  25. wrap: 'Word Wrap',
  26. align: {
  27. title: 'Align',
  28. dataSource: ['Start', 'End', 'Center', 'Baseline']
  29. }
  30. }
  31. }
  32. },
  33. 'ko-KR': {
  34. title: '간격',
  35. settings: {
  36. 'x-component-props': {
  37. direction: {
  38. title: '방향',
  39. dataSource: ['수직', '수평']
  40. },
  41. split: '분할',
  42. wrap: '자동 줄 바꿈',
  43. align: {
  44. title: '정렬',
  45. dataSource: ['시작', '끝', '가운데', '기준선']
  46. }
  47. }
  48. }
  49. }
  50. }