Element

NodeDescriptionInputsOutputs
buttonCreates an HTML button element.label Text, channel Text, variant Text, disabled Booleanhtml Text
checkboxCreates an HTML checkbox with label.label Text, checked Boolean, channel Texthtml Text
colorCreates an HTML color picker.label Text, value Text, channel Texthtml Text
containerWraps content in a flexbox container for layout control.content Text, direction Text, gap Number, align Text, justify Text, wrap Booleanhtml Text
formAssembles HTML element fragments into a complete interactive form document. Use ‘Test Form’ from the context menu to launch a live preview window.content Text, css Text, title Text, width Number, height Number, theme Texthtml Text
imageCreates an HTML image element. Accepts data URIs from drawing/html, svg/render, or any image-producing node.src Image, alt Text, width Number, height Numberhtml Text
labelCreates an HTML label or heading.text Text, style Texthtml Text
progressCreates an HTML progress bar.label Text, value Number, max Numberhtml Text
radioCreates an HTML radio button group.name Text, options Text, value Text, channel Texthtml Text
selectCreates an HTML select dropdown.label Text, options Text, value Text, channel Texthtml Text
sliderCreates an HTML range slider.label Text, min Number, max Number, step Number, value Number, channel Texthtml Text
tabsCreates a tabbed container with switchable panels.labels Text, tab_1 Text, tab_2 Text, tab_3 Text, tab_4 Text, channel Texthtml Text
text_inputCreates an HTML text input with label.label Text, placeholder Text, value Text, channel Texthtml Text
textareaCreates an HTML textarea with label.label Text, placeholder Text, value Text, rows Number, channel Texthtml Text

button

Creates an HTML button element.

Inputs:

Output: html (Text) — HTML button fragment

See also: form

checkbox

Creates an HTML checkbox with label.

Inputs:

Output: html (Text) — HTML checkbox fragment

See also: radio, form

color

Creates an HTML color picker.

Inputs:

Output: html (Text) — HTML color picker fragment

See also: form

container

Wraps content in a flexbox container for layout control.

Inputs:

Output: html (Text) — HTML container fragment

See also: form, tabs

form

Assembles HTML element fragments into a complete interactive form document. Use ‘Test Form’ from the context menu to launch a live preview window.

Inputs:

Output: html (Text) — complete HTML form document

See also: button, text_input, container, drawing/html

image

Creates an HTML image element. Accepts data URIs from drawing/html, svg/render, or any image-producing node.

Inputs:

Output: html (Text) — HTML image fragment

See also: form, drawing/html, svg/render

label

Creates an HTML label or heading.

Inputs:

Output: html (Text) — HTML label fragment

See also: form

progress

Creates an HTML progress bar.

Inputs:

Output: html (Text) — HTML progress bar fragment

See also: form

radio

Creates an HTML radio button group.

Inputs:

Output: html (Text) — HTML radio group fragment

See also: select, form

select

Creates an HTML select dropdown.

Inputs:

Output: html (Text) — HTML select fragment

See also: radio, form

slider

Creates an HTML range slider.

Inputs:

Output: html (Text) — HTML slider fragment

See also: text_input, form

tabs

Creates a tabbed container with switchable panels.

Inputs:

Output: html (Text) — HTML tabs fragment

See also: container, form

text_input

Creates an HTML text input with label.

Inputs:

Output: html (Text) — HTML text input fragment

See also: textarea, form

textarea

Creates an HTML textarea with label.

Inputs:

Output: html (Text) — HTML textarea fragment

See also: text_input, form