teableio/teable

View on GitHub
packages/core/src/models/view/constant.ts

Summary

Maintainability
A
0 mins
Test Coverage
export enum RowHeightLevel {
  Short = 'short',
  Medium = 'medium',
  Tall = 'tall',
  ExtraTall = 'extraTall',
  AutoFit = 'autoFit',
}

export enum ViewType {
  Grid = 'grid',
  Calendar = 'calendar',
  Kanban = 'kanban',
  Form = 'form',
  Gallery = 'gallery',
  Gantt = 'gantt',
  Plugin = 'plugin',
}