diff --git a/js/element/PinElement.js b/js/element/PinElement.js index 4a38347..5e8fecb 100644 --- a/js/element/PinElement.js +++ b/js/element/PinElement.js @@ -1,4 +1,4 @@ -import BoolInputPinTemplate from "../template/pin/BoolPinTemplate" +import BoolPinTemplate from "../template/pin/BoolPinTemplate" import Configuration from "../Configuration" import ElementFactory from "./ElementFactory" import ExecPinTemplate from "../template/pin/ExecPinTemplate" @@ -8,7 +8,7 @@ import Int64PinTemplate from "../template/pin/Int64PinTemplate" import IntPinTemplate from "../template/pin/IntPinTemplate" import ISerializer from "../serialization/ISerializer" import LinearColorEntity from "../entity/LinearColorEntity" -import LinearColorInputPinTemplate from "../template/pin/LinearColorPinTemplate" +import LinearColorPinTemplate from "../template/pin/LinearColorPinTemplate" import NameInputPinTemplate from "../template/pin/NamePinTemplate" import PinEntity from "../entity/PinEntity" import PinTemplate from "../template/pin/PinTemplate" @@ -36,11 +36,11 @@ import VectorPinTemplate from "../template/pin/VectorPinTemplate" export default class PinElement extends IElement { static #inputPinTemplates = { - "/Script/CoreUObject.LinearColor": LinearColorInputPinTemplate, + "/Script/CoreUObject.LinearColor": LinearColorPinTemplate, "/Script/CoreUObject.Rotator": RotatorPinTemplate, "/Script/CoreUObject.Vector": VectorPinTemplate, "/Script/CoreUObject.Vector2D": Vector2DPinTemplate, - "bool": BoolInputPinTemplate, + "bool": BoolPinTemplate, "byte": IntPinTemplate, "int": IntPinTemplate, "int64": Int64PinTemplate, diff --git a/js/template/pin/BoolPinTemplate.js b/js/template/pin/BoolPinTemplate.js index 1b738e6..706aca8 100644 --- a/js/template/pin/BoolPinTemplate.js +++ b/js/template/pin/BoolPinTemplate.js @@ -5,7 +5,7 @@ import PinTemplate from "./PinTemplate" /** @typedef {import("lit").PropertyValues} PropertyValues */ /** @extends PinTemplate */ -export default class BoolInputPinTemplate extends PinTemplate { +export default class BoolPinTemplate extends PinTemplate { /** @type {HTMLInputElement?} */ #input diff --git a/js/template/pin/LinearColorPinTemplate.js b/js/template/pin/LinearColorPinTemplate.js index 5c3e6dc..1f25320 100644 --- a/js/template/pin/LinearColorPinTemplate.js +++ b/js/template/pin/LinearColorPinTemplate.js @@ -11,7 +11,7 @@ import PinTemplate from "./PinTemplate" */ /** @extends PinTemplate */ -export default class LinearColorInputPinTemplate extends PinTemplate { +export default class LinearColorPinTemplate extends PinTemplate { /** @type {WindowElement} */ #window