From fc958b1f4ff1d10186847611cd68276aa80dcd80 Mon Sep 17 00:00:00 2001 From: zhouzebin Date: Thu, 26 May 2022 21:26:08 +0800 Subject: [PATCH] support tabIndex Signed-off-by: zhouzebin Change-Id: Ia6c3a01101935f7fa7f25aa04ace0cd277e8d6a7 --- api/@internal/component/ets/common.d.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/api/@internal/component/ets/common.d.ts b/api/@internal/component/ets/common.d.ts index 23b05409b7..a978cf1a2b 100644 --- a/api/@internal/component/ets/common.d.ts +++ b/api/@internal/component/ets/common.d.ts @@ -1199,6 +1199,12 @@ declare class CommonMethod { */ focusable(value: boolean): T; + /** + * Set tabIndex. + * @since 9 + */ + tabIndex(index: number): T; + /** * Trigger a event when got focus. * @since 8 -- Gitee