@slack/web-api / Overflow
Defined in: node_modules/@slack/types/dist/block-kit/block-elements.d.ts:439
Allows users to press a button to view a list of options. Unlike the select menu, there is no typeahead field, and the button always appears with an ellipsis ('…') rather than customizable text. As such, it is usually used if you want a more compact layout than a select menu, or to supply a list of less visually important actions after a row of buttons. You can also specify simple URL links as overflow menu options, instead of actions.
- Overflow menu element reference.
- This is an interactive component - see our guide to enabling interactivity.
optional action_id: string;Defined in: node_modules/@slack/types/dist/block-kit/extensions.d.ts:12
@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.
optional confirm: ConfirmationDialog;Defined in: node_modules/@slack/types/dist/block-kit/extensions.d.ts:21
A Confirm object that defines an optional confirmation dialog after the element is interacted with.
options: PlainTextOption[];Defined in: node_modules/@slack/types/dist/block-kit/block-elements.d.ts:447
An array of up to 5 PlainTextOption to display in the menu.
type: "overflow";Defined in: node_modules/@slack/types/dist/block-kit/block-elements.d.ts:443
The type of element. In this case type is always number_input.