From ed5d407ac198a85b6d8e4eaf2e9d77b446d93071 Mon Sep 17 00:00:00 2001 From: RetroCraft Date: Sun, 4 Mar 2018 22:20:40 -0500 Subject: [PATCH] Add id prop to ReactWidgetsCommonProps --- types/react-widgets/lib/CommonProps.d.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/types/react-widgets/lib/CommonProps.d.ts b/types/react-widgets/lib/CommonProps.d.ts index b407b96fe5..85ab05f073 100644 --- a/types/react-widgets/lib/CommonProps.d.ts +++ b/types/react-widgets/lib/CommonProps.d.ts @@ -19,6 +19,10 @@ interface ReactWidgetsCommonProps extends React.Props { * @default false */ isRtl?: boolean; + /** + * Used to label and annotate aria- attributes + */ + id?: string; } export interface AutoFocus {