Skip to main content

@slack/types / MultiChannelsSelect

Interface: MultiChannelsSelect

Defined in: block-kit/block-elements.ts:498

Description​

This multi-select menu will populate its options with a list of public channels visible to the current user in the active workspace.

See​

Extends​

Properties​

action_id?​

optional action_id?: string;

Defined in: block-kit/extensions.ts:15

@description: An identifier for this action. You can use this when you receive an interaction payload to identify the source of the action. Should be unique among all other action_ids in the containing block. Maximum length for this field is 255 characters.

Inherited from​

Actionable.action_id


confirm?​

optional confirm?: ConfirmationDialog;

Defined in: block-kit/extensions.ts:25

Description​

A Confirm object that defines an optional confirmation dialog after the element is interacted with.

Inherited from​

Confirmable.confirm


focus_on_load?​

optional focus_on_load?: boolean;

Defined in: block-kit/extensions.ts:42

Description​

Indicates whether the element will be set to auto focus within the `view` object. Only one element can be set to true. Defaults to false.

Inherited from​

Focusable.focus_on_load


initial_channels?​

optional initial_channels?: string[];

Defined in: block-kit/block-elements.ts:507

Description​

An array of one or more IDs of any valid public channel to be pre-selected when the menu loads.


max_selected_items?​

optional max_selected_items?: number;

Defined in: block-kit/extensions.ts:49

Description​

Specifies the maximum number of items that can be selected. Minimum number is 1.

Inherited from​

MaxItemsSelectable.max_selected_items


placeholder?​

optional placeholder?: PlainTextElement;

Defined in: block-kit/extensions.ts:57

Description​

A PlainTextElement object that defines the placeholder text shown on the element. Maximum length for the text field in this object is 150 characters.

Inherited from​

Placeholdable.placeholder


type​

type: "multi_channels_select";

Defined in: block-kit/block-elements.ts:502

Description​

The type of element. In this case type is always multi_channels_select.

Overrides​

Actionable.type