From bd4f338e2499fd044c182313cabffae461cde712 Mon Sep 17 00:00:00 2001 From: Andre van Tonder Date: Thu, 29 Feb 2024 09:24:52 +1000 Subject: [PATCH] Add `disabled` to `SelectButtonContext` type --- components/lib/selectbutton/SelectButton.d.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/components/lib/selectbutton/SelectButton.d.ts b/components/lib/selectbutton/SelectButton.d.ts index dbb281c719..2767de4663 100755 --- a/components/lib/selectbutton/SelectButton.d.ts +++ b/components/lib/selectbutton/SelectButton.d.ts @@ -118,6 +118,11 @@ export interface SelectButtonContext { * @defaultValue false */ focused: boolean; + /** + * Current disabled state of the item as a boolean. + * @defaultValue false + */ + disabled: boolean; /** * Available option. */