Skip to content

Function: CheckboxList()

ts
function CheckboxList(props: UiCheckboxListFieldProps): Block;

Defined in: src/renderer/blocks/index.ts:826

Parameters

ParameterType
propsUiCheckboxListFieldProps

Returns

Block

Deprecated

Use CheckboxListField instead — names now match the underlying UiCheckboxListField component.

Example

ts
CheckboxListField({
  name: 'interests',
  label: 'Interests',
  items: [
    {value: 'sports', label: 'Sports'},
    {value: 'music', label: 'Music'},
  ],
});

Matterway Assistant SDK Documentation