import { LitElement, html } from '@lion/core'; import { Required, MinLength } from '@lion/validate'; export class UmbrellaForm extends LitElement { get _lionFormNode() { return this.shadowRoot.querySelector('lion-form'); } render() { return html` Red Hotpink Teal Fire up that loud Another round of shots... Drop down for what? Submit ev.currentTarget.parentElement.parentElement.parentElement.resetGroup()} >Reset `; } } customElements.define('umbrella-form', UmbrellaForm);