mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-27 14:06:13 +00:00
13 lines
395 B
JavaScript
13 lines
395 B
JavaScript
// Must be the same as `src/baserow/contrib/database/views/models.py`.
|
|
export const DEFAULT_FORM_VIEW_FIELD_COMPONENT_KEY = 'default'
|
|
|
|
// Must be the same as `src/baserow/contrib/database/views/models.py`.
|
|
export const DEFAULT_SORT_TYPE_KEY = 'default'
|
|
|
|
export const GRID_VIEW_SIZE_TO_ROW_HEIGHT_MAPPING = {
|
|
small: 33,
|
|
medium: 55,
|
|
large: 99,
|
|
}
|
|
|
|
export const GRID_VIEW_MIN_FIELD_WIDTH = 78
|