1
0
mirror of https://github.com/mattermost/focalboard.git synced 2025-01-26 18:48:15 +02:00
focalboard/webapp/src/constants.ts

24 lines
952 B
TypeScript
Raw Normal View History

2020-10-20 12:50:53 -07:00
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
2020-10-08 09:21:27 -07:00
class Constants {
2020-11-02 15:47:45 -08:00
static readonly menuColors = [
2020-10-20 13:26:06 -07:00
{id: 'propColorDefault', name: 'Default', type: 'color'},
2020-10-20 12:50:53 -07:00
{id: 'propColorGray', name: 'Gray', type: 'color'},
{id: 'propColorBrown', name: 'Brown', type: 'color'},
2020-10-20 13:26:06 -07:00
{id: 'propColorOrange', name: 'Orange', type: 'color'},
2020-10-20 12:50:53 -07:00
{id: 'propColorYellow', name: 'Yellow', type: 'color'},
{id: 'propColorGreen', name: 'Green', type: 'color'},
{id: 'propColorBlue', name: 'Blue', type: 'color'},
{id: 'propColorPurple', name: 'Purple', type: 'color'},
2020-10-20 13:26:06 -07:00
{id: 'propColorPink', name: 'Pink', type: 'color'},
2020-10-20 12:50:53 -07:00
{id: 'propColorRed', name: 'Red', type: 'color'},
]
2020-11-02 15:47:45 -08:00
static readonly minColumnWidth = 100
static readonly defaultTitleColumnWidth = 280
static readonly titleColumnId = '__title'
2020-10-08 09:21:27 -07:00
}
2020-10-20 12:50:53 -07:00
export {Constants}