import {html} from "lit"; import {property} from "lit/decorators.js"; import ZincElement from "../../../../../internal/zinc-element"; export default class ZnEditorTool extends ZincElement { @property() uri: string; @property() label: string; @property() key: string; @property() icon: string; @property() handler: string = 'dialog'; @property({type: Boolean, attribute: 'context-menu', reflect: true}) contextMenu = false; @property({type: Number}) order?: number | null; render() { return html`
` } } ZnEditorTool.define('zn-editor-tool');