Specify extension in include paths

This commit is contained in:
barsdeveloper
2023-03-23 16:24:32 +01:00
parent 405accc39c
commit b235d63348
119 changed files with 406 additions and 406 deletions

View File

@@ -1,5 +1,5 @@
import ColorHandlerTemplate from "../template/ColorHandlerTemplate"
import IDraggableControlElement from "./IDraggableControlElement"
import ColorHandlerTemplate from "../template/ColorHandlerTemplate.js"
import IDraggableControlElement from "./IDraggableControlElement.js"
/** @extends {IDraggableControlElement<Object, ColorHandlerTemplate>} */
export default class ColorHandlerElement extends IDraggableControlElement {

View File

@@ -1,5 +1,5 @@
import ColorSliderTemplate from "../template/ColorSliderTemplate"
import IDraggableControlElement from "./IDraggableControlElement"
import ColorSliderTemplate from "../template/ColorSliderTemplate.js"
import IDraggableControlElement from "./IDraggableControlElement.js"
/** @extends {IDraggableControlElement<Object, ColorSliderTemplate>} */
export default class ColorSliderElement extends IDraggableControlElement {

View File

@@ -1,4 +1,4 @@
import IDraggableElement from "./IDraggableElement"
import IDraggableElement from "./IDraggableElement.js"
/**
* @typedef {import("../element/WindowElement").default} WindowElement

View File

@@ -1,6 +1,6 @@
import Configuration from "../Configuration"
import IElement from "./IElement"
import Utility from "../Utility"
import Configuration from "../Configuration.js"
import IElement from "./IElement.js"
import Utility from "../Utility.js"
/**
* @typedef {import("../entity/IEntity").default} IEntity

View File

@@ -1,5 +1,5 @@
import { LitElement } from "lit"
import Configuration from "../Configuration"
import Configuration from "../Configuration.js"
/**
* @typedef {import("../Blueprint").default} Blueprint

View File

@@ -1,4 +1,4 @@
import IElement from "./IElement"
import IElement from "./IElement.js"
/**
* @typedef {import("../entity/IEntity").default} IEntity

View File

@@ -1,6 +1,6 @@
import Configuration from "../Configuration"
import Utility from "../Utility"
import IDraggableElement from "./IDraggableElement"
import Configuration from "../Configuration.js"
import Utility from "../Utility.js"
import IDraggableElement from "./IDraggableElement.js"
/**
* @typedef {import("../element/IDraggableElement").DragEvent} DragEvent

View File

@@ -1,6 +1,6 @@
import InputTemplate from "../template/pin/InputTemplate"
import Utility from "../Utility"
import IElement from "./IElement"
import InputTemplate from "../template/pin/InputTemplate.js"
import Utility from "../Utility.js"
import IElement from "./IElement.js"
export default class InputElement extends IElement {

View File

@@ -1,9 +1,9 @@
import { html, nothing } from "lit"
import Configuration from "../Configuration"
import IFromToPositionedElement from "./IFromToPositionedElement"
import LinkTemplate from "../template/LinkTemplate"
import SVGIcon from "../SVGIcon"
import Utility from "../Utility"
import Configuration from "../Configuration.js"
import IFromToPositionedElement from "./IFromToPositionedElement.js"
import LinkTemplate from "../template/LinkTemplate.js"
import SVGIcon from "../SVGIcon.js"
import Utility from "../Utility.js"
/**
* @typedef {import("../element/IDraggableElement").DragEvent} DragEvent

View File

@@ -1,18 +1,18 @@
import CommentNodeTemplate from "../template/node/CommentNodeTemplate"
import Configuration from "../Configuration"
import EventNodeTemplate from "../template/node/EventNodeTemplate"
import IdentifierEntity from "../entity/IdentifierEntity"
import ISelectableDraggableElement from "./ISelectableDraggableElement"
import KnotNodeTemplate from "../template/node/KnotNodeTemplate"
import NodeTemplate from "../template/node/NodeTemplate"
import ObjectEntity from "../entity/ObjectEntity"
import PinEntity from "../entity/PinEntity"
import PinReferenceEntity from "../entity/PinReferenceEntity"
import SerializerFactory from "../serialization/SerializerFactory"
import Utility from "../Utility"
import VariableAccessNodeTemplate from "../template/node/VariableAccessNodeTemplate"
import VariableConversionNodeTemplate from "../template/node/VariableConversionNodeTemplate"
import VariableOperationNodeTemplate from "../template/node/VariableOperationNodeTemplate"
import CommentNodeTemplate from "../template/node/CommentNodeTemplate.js"
import Configuration from "../Configuration.js"
import EventNodeTemplate from "../template/node/EventNodeTemplate.js"
import IdentifierEntity from "../entity/IdentifierEntity.js"
import ISelectableDraggableElement from "./ISelectableDraggableElement.js"
import KnotNodeTemplate from "../template/node/KnotNodeTemplate.js"
import NodeTemplate from "../template/node/NodeTemplate.js"
import ObjectEntity from "../entity/ObjectEntity.js"
import PinEntity from "../entity/PinEntity.js"
import PinReferenceEntity from "../entity/PinReferenceEntity.js"
import SerializerFactory from "../serialization/SerializerFactory.js"
import Utility from "../Utility.js"
import VariableAccessNodeTemplate from "../template/node/VariableAccessNodeTemplate.js"
import VariableConversionNodeTemplate from "../template/node/VariableConversionNodeTemplate.js"
import VariableOperationNodeTemplate from "../template/node/VariableOperationNodeTemplate.js"
/**
* @typedef {import("./IDraggableElement").DragEvent} DragEvent

View File

@@ -1,24 +1,24 @@
import BoolPinTemplate from "../template/pin/BoolPinTemplate"
import ElementFactory from "./ElementFactory"
import ExecPinTemplate from "../template/pin/ExecPinTemplate"
import GuidEntity from "../entity/GuidEntity"
import IElement from "./IElement"
import Int64PinTemplate from "../template/pin/Int64PinTemplate"
import IntPinTemplate from "../template/pin/IntPinTemplate"
import ISerializer from "../serialization/ISerializer"
import LinearColorEntity from "../entity/LinearColorEntity"
import LinearColorPinTemplate from "../template/pin/LinearColorPinTemplate"
import NamePinTemplate from "../template/pin/NamePinTemplate"
import PinEntity from "../entity/PinEntity"
import PinReferenceEntity from "../entity/PinReferenceEntity"
import PinTemplate from "../template/pin/PinTemplate"
import RealPinTemplate from "../template/pin/RealPinTemplate"
import ReferencePinTemplate from "../template/pin/ReferencePinTemplate"
import RotatorPinTemplate from "../template/pin/RotatorPinTemplate"
import StringPinTemplate from "../template/pin/StringPinTemplate"
import Utility from "../Utility"
import Vector2DPinTemplate from "../template/pin/Vector2DPinTemplate"
import VectorPinTemplate from "../template/pin/VectorPinTemplate"
import BoolPinTemplate from "../template/pin/BoolPinTemplate.js"
import ElementFactory from "./ElementFactory.js"
import ExecPinTemplate from "../template/pin/ExecPinTemplate.js"
import GuidEntity from "../entity/GuidEntity.js"
import IElement from "./IElement.js"
import Int64PinTemplate from "../template/pin/Int64PinTemplate.js"
import IntPinTemplate from "../template/pin/IntPinTemplate.js"
import ISerializer from "../serialization/ISerializer.js"
import LinearColorEntity from "../entity/LinearColorEntity.js"
import LinearColorPinTemplate from "../template/pin/LinearColorPinTemplate.js"
import NamePinTemplate from "../template/pin/NamePinTemplate.js"
import PinEntity from "../entity/PinEntity.js"
import PinReferenceEntity from "../entity/PinReferenceEntity.js"
import PinTemplate from "../template/pin/PinTemplate.js"
import RealPinTemplate from "../template/pin/RealPinTemplate.js"
import ReferencePinTemplate from "../template/pin/ReferencePinTemplate.js"
import RotatorPinTemplate from "../template/pin/RotatorPinTemplate.js"
import StringPinTemplate from "../template/pin/StringPinTemplate.js"
import Utility from "../Utility.js"
import Vector2DPinTemplate from "../template/pin/Vector2DPinTemplate.js"
import VectorPinTemplate from "../template/pin/VectorPinTemplate.js"
/**
* @typedef {import("../entity/IEntity").AnyValue} AnyValue

View File

@@ -1,6 +1,6 @@
import FastSelectionModel from "../selection/FastSelectionModel"
import IFromToPositionedElement from "./IFromToPositionedElement"
import SelectorTemplate from "../template/SelectorTemplate"
import FastSelectionModel from "../selection/FastSelectionModel.js"
import IFromToPositionedElement from "./IFromToPositionedElement.js"
import SelectorTemplate from "../template/SelectorTemplate.js"
/** @typedef {import("../Blueprint").BlueprintConstructor} BlueprintConstructor */

View File

@@ -1,7 +1,7 @@
import ColorPickerWindowTemplate from "../template/window/ColorPickerWindowTemplate"
import Configuration from "../Configuration"
import IDraggableElement from "./IDraggableElement"
import WindowTemplate from "../template/window/WindowTemplate"
import ColorPickerWindowTemplate from "../template/window/ColorPickerWindowTemplate.js"
import Configuration from "../Configuration.js"
import IDraggableElement from "./IDraggableElement.js"
import WindowTemplate from "../template/window/WindowTemplate.js"
/** @typedef {typeof WindowElement} WindowElementConstructor */

View File

@@ -1,12 +1,12 @@
import ColorHandlerElement from "./ColorHandlerElement"
import ColorSliderElement from "./ColorSliderElement"
import ElementFactory from "./ElementFactory"
import InputElement from "./InputElement"
import LinkElement from "./LinkElement"
import NodeElement from "./NodeElement"
import PinElement from "./PinElement"
import SelectorElement from "./SelectorElement"
import WindowElement from "./WindowElement"
import ColorHandlerElement from "./ColorHandlerElement.js"
import ColorSliderElement from "./ColorSliderElement.js"
import ElementFactory from "./ElementFactory.js"
import InputElement from "./InputElement.js"
import LinkElement from "./LinkElement.js"
import NodeElement from "./NodeElement.js"
import PinElement from "./PinElement.js"
import SelectorElement from "./SelectorElement.js"
import WindowElement from "./WindowElement.js"
export default function defineElements() {
customElements.define("ueb-color-handler", ColorHandlerElement)