@slack/web-api / PlainTextInput
Defined in: node_modules/@slack/types/dist/block-kit/block-elements.d.ts:454
Allows users to enter freeform text data into a single-line or multi-line field.
- Plain-text input 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 dispatch_action_config: DispatchActionConfig;Defined in: node_modules/@slack/types/dist/block-kit/extensions.d.ts:28
A DispatchActionConfig object that determines when during text input the element returns a `block_actions` payload.
Dispatchable.dispatch_action_config
optional focus_on_load: boolean;Defined in: node_modules/@slack/types/dist/block-kit/extensions.d.ts:36
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.
optional initial_value: string;Defined in: node_modules/@slack/types/dist/block-kit/block-elements.d.ts:462
The initial value in the plain-text input when it is loaded.
optional max_length: number;Defined in: node_modules/@slack/types/dist/block-kit/block-elements.d.ts:477
The maximum length of input that the user can provide. If the user provides more, they will receive an error.
optional min_length: number;Defined in: node_modules/@slack/types/dist/block-kit/block-elements.d.ts:472
The minimum length of input that the user must provide. If the user provides less, they will receive an error. Maximum value is 3000.
optional multiline: boolean;Defined in: node_modules/@slack/types/dist/block-kit/block-elements.d.ts:467
Indicates whether the input will be a single line (false) or a larger textarea (true).
Defaults to false.
optional placeholder: PlainTextElement;Defined in: node_modules/@slack/types/dist/block-kit/extensions.d.ts:49
A PlainTextElement object that defines the placeholder text shown on the element. Maximum
length for the text field in this object is 150 characters.
type: "plain_text_input";Defined in: node_modules/@slack/types/dist/block-kit/block-elements.d.ts:458
The type of element. In this case type is always plain_text_input.