import { html } from "lit" import IntegerEntity from "../entity/IntegerEntity" import INumericInputPinTemplate from "./INumericInputPinTemplate" /** @typedef {import("../entity/IntegerEntity").default} IntEntity */ /** @extends INumericInputPinTemplate */ export default class IntInputPinTemplate extends INumericInputPinTemplate { setDefaultValue(values = [], rawValues = values) { this.element.setDefaultValue(new IntegerEntity(values[0])) } renderInput() { return html`
` } }