(text: string)
| 400 | // ── Property form (Properties tab) ─────────────────────────────────────────── |
| 401 | |
| 402 | function propLabel(text: string): HTMLSpanElement { |
| 403 | const lbl = document.createElement("span"); |
| 404 | lbl.className = "prop-label"; |
| 405 | lbl.textContent = text; |
| 406 | return lbl; |
| 407 | } |
| 408 | |
| 409 | function buildColorControl(row: HTMLElement, prop: string, currentVal: string) { |
| 410 | const picker = document.createElement("input"); |
no outgoing calls
no test coverage detected