class CCPOutputWidgetEditorController extends HTMLElement { #output = null #index = null #type = null #delete_icon = ` ` constructor(){ super() } connectedCallback(controller){ } get index(){ return this.#index } render(output, i){ this.#index = i this.#output = output this.#type = output.schema.enum ? "enum" : "string" this.innerHTML = `
` } } window.customElements.define('d4s-ccp-output-editor', CCPOutputWidgetEditorController);