mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-02 04:43:46 +01:00
20 lines
493 B
TypeScript
20 lines
493 B
TypeScript
/**
|
|
* Use a custom tag for when multiple=true
|
|
*
|
|
* @returns {string}
|
|
*/
|
|
import {literal, StaticValue} from "lit/static-html.js";
|
|
import {Et2TreeDropdown} from "./Et2TreeDropdown";
|
|
import {Et2CategoryTag} from "../Et2Select/Tag/Et2CategoryTag";
|
|
|
|
export class Et2TreeDropdownCategory extends Et2TreeDropdown
|
|
{
|
|
private keep_import : Et2CategoryTag
|
|
|
|
public get tagTag() : StaticValue
|
|
{
|
|
return literal`et2-category-tag`;
|
|
}
|
|
}
|
|
|
|
customElements.define("et2-tree-cat", Et2TreeDropdownCategory); |