mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-24 17:04:14 +01:00
e323cd1d79
Update shoelace to 2.9.0
52 lines
781 B
TypeScript
52 lines
781 B
TypeScript
import {Et2Widget} from "../../Et2Widget/Et2Widget";
|
|
import {SlTabPanel} from "@shoelace-style/shoelace";
|
|
import shoelace from "../../Styles/shoelace";
|
|
import {css} from "lit";
|
|
|
|
export class Et2TabPanel extends Et2Widget(SlTabPanel)
|
|
{
|
|
static get styles()
|
|
{
|
|
return [
|
|
// @ts-ignore
|
|
...super.styles,
|
|
...shoelace,
|
|
css`
|
|
:host {
|
|
|
|
height: 100%;
|
|
/*
|
|
width: 100%;
|
|
|
|
min-height: fit-content;
|
|
min-width: fit-content;
|
|
*/
|
|
}
|
|
.tab-panel {
|
|
height: 100%;
|
|
}
|
|
::slotted(*) {
|
|
height: 100%;
|
|
}
|
|
`
|
|
];
|
|
}
|
|
|
|
|
|
static get properties()
|
|
{
|
|
return {
|
|
...super.properties,
|
|
|
|
hidden: {type: Boolean, reflect: true}
|
|
}
|
|
}
|
|
|
|
constructor()
|
|
{
|
|
super();
|
|
this.hidden = false;
|
|
}
|
|
}
|
|
|
|
customElements.define("et2-tab-panel", Et2TabPanel); |