forked from extern/egroupware
582793d52b
To many things are not working :(
- addressbook, infolog, even timesheet index lacks at least r/o textbox and problably other widgets
- smallPART (with many extra widgets) is completly unusable
- *box widget seems not to skip empty boxes
--> we need more testing and progress, before we can merge that
This reverts commit 9cee681b94
.
21 lines
577 B
TypeScript
21 lines
577 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
|
|
*/
|
|
|
|
/* Commented out while we work on rollup
|
|
import {LitElement,html} from "https://cdn.skypack.dev/lit-element";
|
|
import {SlButton} from "https://cdn.jsdelivr.net/npm/@shoelace-style/shoelace@2.0.0-beta.44/dist/shoelace.js";
|
|
|
|
export class Et2Button extends SlButton
|
|
{
|
|
size='small';
|
|
}
|
|
customElements.define("et2-button",Et2Button);
|
|
|
|
*/ |