Release 2.29 (#5325)
* 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
This commit is contained in:
19
src/Export/Package/ColumnWidth.php
Normal file
19
src/Export/Package/ColumnWidth.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?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;
|
||||
}
|
||||
Reference in New Issue
Block a user