From 56faa4d49f9aef778417211e0410c065098a4f7d Mon Sep 17 00:00:00 2001 From: yeyinglong_admin Date: Tue, 1 Jul 2025 14:19:27 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8E=A5=E5=8F=A3=E5=8F=96=E6=95=B4=E8=8C=83?= =?UTF-8?q?=E5=9B=B4=E5=92=8C=E9=BB=98=E8=AE=A4=E5=80=BC=E8=A1=A5=E5=85=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: yeyinglong_admin --- api/@internal/component/ets/grid.d.ts | 1 + api/@internal/component/ets/list.d.ts | 1 + api/@internal/component/ets/refresh.d.ts | 3 ++- 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/api/@internal/component/ets/grid.d.ts b/api/@internal/component/ets/grid.d.ts index 4ff5042993..084ccb1306 100644 --- a/api/@internal/component/ets/grid.d.ts +++ b/api/@internal/component/ets/grid.d.ts @@ -1227,6 +1227,7 @@ declare class GridAttribute extends ScrollableCommonMethod { * Sets the focus wrap mode of the grid. * * @param { Optional } mode - the focus wrap mode of the grid. + *
Default value: **FocusWrapMode.DEFAULT**. * @returns { GridAttribute } the attribute of the grid. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform diff --git a/api/@internal/component/ets/list.d.ts b/api/@internal/component/ets/list.d.ts index 2cd73a15da..9b1222e6ec 100644 --- a/api/@internal/component/ets/list.d.ts +++ b/api/@internal/component/ets/list.d.ts @@ -2096,6 +2096,7 @@ declare class ListAttribute extends ScrollableCommonMethod { * Sets the focus wrap mode of the List component. * * @param { Optional } mode - the focus wrap mode of the List component. + *
Default value: **FocusWrapMode.DEFAULT**. * @returns { ListAttribute } the attribute of the list. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform diff --git a/api/@internal/component/ets/refresh.d.ts b/api/@internal/component/ets/refresh.d.ts index 11e2b9e59a..9ded23e662 100644 --- a/api/@internal/component/ets/refresh.d.ts +++ b/api/@internal/component/ets/refresh.d.ts @@ -491,7 +491,8 @@ declare class RefreshAttribute extends CommonMethod { /** * The max pull down distance for Refresh. * - * @param { Optional } distance - The max pull down distance for Refresh, default value is { undefined }. + * @param { Optional } distance - The max pull down distance for Refresh, + * value range is [0, +∞), default value is { undefined }. * @returns { RefreshAttribute } The attribute of the Refresh. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform -- Gitee