First version

This commit is contained in:
2025-07-04 22:26:27 +02:00
parent 9e1f7e4372
commit 912da5e31f
4 changed files with 85 additions and 22 deletions

22
tp-form-value.js Normal file
View File

@ -0,0 +1,22 @@
/**
@license
Copyright (c) 2024 trading_peter
This program is available under Apache License Version 2.0
*/
import { FormElement } from '@tp/helpers/form-element.js';
import { LitElement, html, css } from 'lit';
class TpElement extends FormElement(LitElement) {
static get styles() {
return [
css`
:host {
display: none;
}
`
];
}
}
window.customElements.define('tp-form-value', TpElement);