From 9274396ab1c6f6e1d52c3e16d983da207bef5089 Mon Sep 17 00:00:00 2001 From: blobfysh <47480729+blobfysh@users.noreply.github.com> Date: Sat, 1 Jan 2022 19:22:27 -0500 Subject: [PATCH] support disabled select menus --- src/constants.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/constants.ts b/src/constants.ts index 28271e47..4d903bc1 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -638,6 +638,8 @@ export interface ComponentSelectMenu { min_values?: number; /** The maximum number of items to be chosen. */ max_values?: number; + /** Whether this menu will show as disabled. */ + disabled?: boolean; } export interface ComponentSelectOption {