Pin names refactoring

This commit is contained in:
barsdeveloper
2023-01-03 23:04:35 +01:00
parent fd8a30ccdf
commit e72e04ae0a
11 changed files with 31 additions and 33 deletions

View File

@@ -1,10 +1,10 @@
import { html } from "lit"
import INumericInputPinTemplate from "./INumericInputPinTemplate"
import INumericPinTemplate from "./INumericPinTemplate"
/** @typedef {import("../../entity/IntegerEntity").default} IntegerEntity */
/** @extends INumericInputPinTemplate<IntegerEntity> */
export default class IntPinTemplate extends INumericInputPinTemplate {
/** @extends INumericPinTemplate<IntegerEntity> */
export default class IntPinTemplate extends INumericPinTemplate {
setDefaultValue(values = [], rawValues = values) {
const integer = this.element.getDefaultValue(true)