Initial implementation.

This commit is contained in:
2022-06-17 16:13:55 +02:00
parent f16e0cd8b5
commit 8b7facdc64
8 changed files with 1118 additions and 9 deletions

36
tp-text-filter.js Normal file
View File

@ -0,0 +1,36 @@
/**
@license
Copyright (c) 2022 trading_peter
This program is available under Apache License Version 2.0
*/
import { LitElement, html, css } from 'lit';
class TpTextFilter extends LitElement {
static get styles() {
return [
css`
:host {
display: block;
}
`
];
}
render() {
const { } = this;
return html`
<h1>Test</h1>
<p>No</p>
`;
}
static get properties() {
return { };
}
}
window.customElements.define('tp-text-filter', TpTextFilter);