egroupware_official/api/js/etemplate/et2_widget_date.ts

47 lines
1.1 KiB
TypeScript
Raw Normal View History

2020-01-22 17:56:38 +01:00
/**
* EGroupware eTemplate2 - Stubs for no longer existing legacy date-widget
2020-01-22 17:56:38 +01:00
*
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
* @package etemplate
* @subpackage api
* @link https://www.egroupware.org
2020-01-22 17:56:38 +01:00
* @author Nathan Gray
* @copyright Nathan Gray 2011
*/
import {date} from "./lib/date.js";
2020-01-22 17:56:38 +01:00
import {Et2Date} from "./Et2Date/Et2Date";
import {Et2DateDuration} from "./Et2Date/Et2DateDuration";
import {Et2DateDurationReadonly} from "./Et2Date/Et2DateDurationReadonly";
import {Et2DateReadonly} from "./Et2Date/Et2DateReadonly";
import {Et2DateRange} from "./Et2Date/Et2DateRange";
2020-01-22 17:56:38 +01:00
/**
* @deprecated use Et2Date
2020-01-22 17:56:38 +01:00
*/
export class et2_date extends Et2Date {}
2020-01-22 17:56:38 +01:00
/**
* @deprecated use Et2Date
2020-01-22 17:56:38 +01:00
*/
export class et2_date_duration extends Et2DateDuration {}
2020-01-22 17:56:38 +01:00
/**
* @deprecated use Et2Date
2020-01-22 17:56:38 +01:00
*/
export class et2_date_duration_ro extends Et2DateDurationReadonly {}
2020-01-22 17:56:38 +01:00
/**
* @deprecated use Et2Date
2020-01-22 17:56:38 +01:00
*/
export class et2_date_ro extends Et2DateReadonly {}
2020-01-22 17:56:38 +01:00
/**
* Widget for selecting a date range
*
* @todo port to web-component
2020-01-22 17:56:38 +01:00
*/
export class et2_date_range extends Et2DateRange
2020-01-22 17:56:38 +01:00
{
}