Files
tp-form-value/tp-form-value.js
2025-07-04 22:26:27 +02:00

23 lines
443 B
JavaScript

/**
@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);