* bump composer packages * fixes #5329 quotes for ANSI_MODE * improve year selection * improve year selection via dropdown * added range selector in month-picker * fix week number if week starts with sunday * fix first day of month in URL * predefined options for week chooser * z-index issue with sticky table header * replace duplicated translations * add logout button to allow user switch without having to re-login in "remember me" login * new flag to detect if invoice entry is a fixed rate * improve export column lengths
20 lines
339 B
PHP
20 lines
339 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Kimai time-tracking app.
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace App\Export\Package;
|
|
|
|
enum ColumnWidth
|
|
{
|
|
case EXTRA_SMALL;
|
|
case SMALL;
|
|
case DEFAULT;
|
|
case MEDIUM;
|
|
case LARGE;
|
|
}
|