fix(core): update

This commit is contained in:
2021-08-20 00:25:14 +02:00
parent e028f37493
commit 4311c0fff6
10 changed files with 17681 additions and 1628 deletions

View File

@@ -1,4 +1,5 @@
import {customElement, LitElement, TemplateResult, property, html} from 'lit-element';
import * as domtools from '@designestate/dees-domtools';
declare global {
interface HTMLElementTagNameMap {
@@ -10,6 +11,9 @@ declare global {
export class DeesInputRadio extends LitElement {
public static demo = () => html`<dees-input-radio></dees-input-radio>`;
// INSTANCE
public changeSubject = new domtools.rxjs.Subject();
@property()
public key: string;
@@ -102,5 +106,6 @@ export class DeesInputRadio extends LitElement {
detail: this.value,
bubbles: true
}));
this.changeSubject.next(this);
}
}