Multi Select Input

Tag/chip style multi-value selector. Displays selected values as removable chips above a filtered option list. Shadcn multi-select pattern.

Surfaces
webmeet-stageapps-script-web
Degraded on
SurfaceNote
pdfRenders as a static chip list; no interactivity
Fields
FieldType
labelstring. Visible label above the field.optional
namestring. Field identifier.required
placeholderstring. Input placeholder when no chips are selected.optional
optionsarray of {value, label} pairs.required
selectedarray of value strings. Pre-selected values shown as chips.required
Example payload
{
  "type": "multi_select_input",
  "name": "Multi Select Input",
  "options": [
    {
      "label": "Option A",
      "value": "a"
    },
    {
      "label": "Option B",
      "value": "b"
    },
    {
      "label": "Option C",
      "value": "c"
    }
  ],
  "selected": [
    "Option A"
  ]
}
ARD catalog entry
{
  "identifier": "urn:air:a2uicatalog.ai:atom:multi_select_input",
  "displayName": "Multi Select Input",
  "type": "application/vnd.a2ui.atom+json",
  "url": "https://a2uicatalog.ai/atoms/multi_select_input",
  "capabilities": [
    "web",
    "meet-stage",
    "apps-script-web"
  ],
  "description": "Tag/chip style multi-value selector. Displays selected values as removable chips above a filtered option list. Shadcn multi-select pattern.",
  "representativeQueries": [
    "show a chip-style multi-value select input \u2014 shadcn pattern",
    "tag/chip style multi-value selector. displays selected values as removable chips above a filtered op",
    "render a multi select input"
  ]
}
← Full ARD catalog Try it live →
Deploy your own renderer

The renderer is open source. Deploy your own instance in 4 commands — you own the URL, no dependency on the demo endpoint.

git clone https://github.com/a2uicatalog/a2ui
cd apps-script-surface/gas-schema-renderer
clasp push && clasp deploy
Full deploy guide →