mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-15 01:24:41 +08:00
18 lines
397 B
JavaScript
18 lines
397 B
JavaScript
import html from "./html"
|
|
import PinTemplate from "./PinTemplate"
|
|
|
|
/**
|
|
* @typedef {import("../element/PinElement").default} PinElement
|
|
*/
|
|
export default class StringPinTemplate extends PinTemplate {
|
|
|
|
/**
|
|
* @param {PinElement} pin
|
|
*/
|
|
renderInput(pin) {
|
|
return html`
|
|
<span class="ueb-pin-input" role="textbox" contenteditable="true"></span>
|
|
`
|
|
}
|
|
}
|