mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-23 00:13:35 +01:00
0cb09698a1
- Add 'Skip all' button to skip any further failed tasks - Add button to copy the log
20 lines
509 B
TypeScript
20 lines
509 B
TypeScript
/**
|
|
* EGroupware eTemplate2 - Button widget
|
|
*
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
* @package etemplate
|
|
* @subpackage api
|
|
* @link https://www.egroupware.org
|
|
* @author Nathan Gray
|
|
*/
|
|
|
|
|
|
import {Et2Widget} from "../Et2Widget/Et2Widget";
|
|
import {SlCopyButton} from "@shoelace-style/shoelace";
|
|
import {customElement} from "lit/decorators/custom-element.js";
|
|
|
|
@customElement('et2-button-copy')
|
|
export class Et2Button extends Et2Widget(SlCopyButton)
|
|
{
|
|
|
|
} |