fix(core): update
This commit is contained in:
@ -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 },
|
||||
|
Reference in New Issue
Block a user