First version
This commit is contained in:
22
tp-form-value.js
Normal file
22
tp-form-value.js
Normal 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);
|
Reference in New Issue
Block a user