Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
783795aa3e | |||
99468efa3f | |||
65f1e6808e | |||
c16d2020ca | |||
1ce3fbc453 |
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tp/tp-tabs",
|
"name": "@tp/tp-tabs",
|
||||||
"version": "1.0.0",
|
"version": "1.3.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "tp-tabs.js",
|
"main": "tp-tabs.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
@ -13,7 +13,7 @@
|
|||||||
"author": "trading_peter",
|
"author": "trading_peter",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"lit": "^2.2.0",
|
"lit": "^2.8.0",
|
||||||
"@tp/helpers": "^1.0.0"
|
"@tp/helpers": "^2.1.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
24
tp-tabs.js
24
tp-tabs.js
@ -5,31 +5,37 @@ This program is available under Apache License Version 2.0
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
import { closest } from '@tp/helpers';
|
import { closest } from '@tp/helpers';
|
||||||
import { LitElement, html, css } from 'lit-element';
|
import { LitElement, html, css } from 'lit';
|
||||||
|
|
||||||
class TpTabs extends LitElement {
|
class TpTabs extends LitElement {
|
||||||
static get properties() {
|
|
||||||
return {
|
|
||||||
orientation: { type: String, reflect: true }
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
static get styles() {
|
static get styles() {
|
||||||
return css`
|
return css`
|
||||||
|
:host {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
:host([orientation="vertical"]) .tabs {
|
:host([orientation="vertical"]) .tabs {
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tabs {
|
.tabs {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
}
|
}
|
||||||
.tab {
|
|
||||||
|
slot::slotted(.tab) {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
padding: 8px;
|
padding: 8px;
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static get properties() {
|
||||||
|
return {
|
||||||
|
orientation: { type: String, reflect: true }
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
constructor() {
|
constructor() {
|
||||||
super();
|
super();
|
||||||
this.orientation = 'horizontal';
|
this.orientation = 'horizontal';
|
||||||
@ -37,7 +43,7 @@ class TpTabs extends LitElement {
|
|||||||
|
|
||||||
render() {
|
render() {
|
||||||
return html`
|
return html`
|
||||||
<div class="tabs" @click="${this.selectTab}">
|
<div class="tabs" part="wrap" @click="${this.selectTab}">
|
||||||
<slot></slot>
|
<slot></slot>
|
||||||
</div>
|
</div>
|
||||||
`;
|
`;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user