diff --git a/dist/ueblueprint.js b/dist/ueblueprint.js index 504615c..e575502 100755 --- a/dist/ueblueprint.js +++ b/dist/ueblueprint.js @@ -451,9 +451,9 @@ class FastSelectionModel { /** * @typedef {import("../Blueprint").default} Blueprint - * @typedef {import("../entity/IEntity").IEntity} IEntity - * @typedef {import("../input/Context").default} Context - * @typedef {import("../template/Template").default} Template + * @typedef {import("../entity/IEntity").default} IEntity + * @typedef {import("../input/IContext").default} IContext + * @typedef {import("../template/ITemplate").default} ITemplate */ class IElement extends HTMLElement { @@ -461,7 +461,7 @@ class IElement extends HTMLElement { /** * * @param {IEntity} entity The entity containing blueprint related data for this graph element - * @param {Template} template The template to render this node + * @param {ITemplate} template The template to render this node */ constructor(entity, template) { super(); @@ -469,9 +469,9 @@ class IElement extends HTMLElement { this.blueprint = null; /** @type {IEntity} */ this.entity = entity; - /** @type {Template} */ + /** @type {ITemplate} */ this.template = template; - /** @type {Context[]} */ + /** @type {IContext[]} */ this.inputObjects = []; } @@ -497,7 +497,7 @@ class IElement extends HTMLElement { /** * @typedef {import("../element/IElement").default} IElement */ -class Template { +class ITemplate { /** * Computes the html content of the target element. @@ -521,7 +521,7 @@ class Template { /** * @typedef {import("../element/SelectorElement").default} SelectorElement */ -class SelectorTemplate extends Template { +class SelectorTemplate extends ITemplate { /** * Applies the style to the element. @@ -603,7 +603,7 @@ class SelectorElement extends IElement { customElements.define(SelectorElement.tagName, SelectorElement); /** @typedef {import("../Blueprint").default} Blueprint */ -class BlueprintTemplate extends Template { +class BlueprintTemplate extends ITemplate { header(element) { return html`