observable-framework-input-form
Installation
SKILL.md
Input: Form
Observable Framework documentation: Input: Form Source: https://observablehq.com/framework/input-form
API · Source · The form input combines a number of inputs into a single compound input. It’s intended for a more compact display of closely-related inputs, say for a color’s red, green, and blue channels.
const rgb = view(Inputs.form([
Inputs.range([0, 255], {step: 1, label: "r"}),
Inputs.range([0, 255], {step: 1, label: "g"}),
Inputs.range([0, 255], {step: 1, label: "b"})
]));
rgb