(func: (obj: Object) => void)
| 2255 | } |
| 2256 | addColorInput(label: string, formName: string, {initColor = "", required = false} = {}) { |
| 2257 | const colorInput = this.options.addColorInput(label, (_) => {}, { |
| 2258 | initColor, |
| 2259 | }); |
| 2260 | this.names.set(formName, colorInput); |
| 2261 | if (required) { |
| 2262 | this.required.add(colorInput); |
no outgoing calls
no test coverage detected