2020-02-07 10:52:45 +01:00
|
|
|
/**
|
|
|
|
* EGroupware eTemplate2 - JS Checkbox object
|
|
|
|
*
|
|
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
|
|
* @package etemplate
|
|
|
|
* @subpackage api
|
2021-06-07 17:33:53 +02:00
|
|
|
* @link https://www.egroupware.org
|
2020-02-07 10:52:45 +01:00
|
|
|
* @author Nathan Gray
|
|
|
|
* @copyright Nathan Gray 2011
|
|
|
|
*/
|
|
|
|
|
2022-08-07 10:10:33 +02:00
|
|
|
import {Et2Checkbox} from "./Et2Checkbox/Et2Checkbox";
|
2020-02-07 10:52:45 +01:00
|
|
|
|
|
|
|
/**
|
2022-08-07 10:10:33 +02:00
|
|
|
* @deprecated use Et2Checkbox
|
2020-02-07 10:52:45 +01:00
|
|
|
*/
|
2022-08-07 10:10:33 +02:00
|
|
|
export class et2_checkbox extends Et2Checkbox {}
|