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