fix(core): update

This commit is contained in:
2021-04-01 19:09:57 +00:00
parent 71e885f3e4
commit a812a12c10
7 changed files with 1714 additions and 933 deletions

View File

@ -1,4 +1,4 @@
import { LitElement, property, html, customElement, TemplateResult } from 'lit-element';
import { LitElement, property, html, customElement, TemplateResult, queryAsync } from 'lit-element';
import * as plugins from '../wcctools.plugins';
@ -11,6 +11,7 @@ import './wcc-properties';
import { TTheme } from './wcc-properties';
import { TElementType } from './wcc-sidebar';
import { TViewport } from '@designestate/dees-domtools/dist_ts/domtools.breakpoints';
import { WccFrame } from './wcc-frame';
@customElement('wcc-dashboard')
export class WccDashboard extends LitElement {
@ -39,6 +40,9 @@ export class WccDashboard extends LitElement {
@property()
public warning: string = null;
@queryAsync('wcc-frame')
public wccFrame: Promise<WccFrame>;
constructor(
elementsArg?: { [key: string]: LitElement },