From 0484bf3ace176df1aa0867ed60da831460c5b4c7 Mon Sep 17 00:00:00 2001 From: gxjhl Date: Fri, 8 Aug 2025 16:49:38 +0800 Subject: [PATCH] support waterflow footerConent in arkts1.2 Signed-off-by: gxjhl Change-Id: I8c097941ecdf42ca4700b0c923442df0d9e9a2fc --- api/arkui/component/waterFlow.static.d.ets | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/api/arkui/component/waterFlow.static.d.ets b/api/arkui/component/waterFlow.static.d.ets index e18f776b44..b540472976 100644 --- a/api/arkui/component/waterFlow.static.d.ets +++ b/api/arkui/component/waterFlow.static.d.ets @@ -24,7 +24,7 @@ import { Length, Dimension, Margin, ConstraintSizeOptions, Resource } from './un import { Scroller, OnScrollFrameBeginCallback } from "./scroll"; import { ScrollState } from "./list"; import { FlexDirection } from './enums'; -import { ComponentContent } from '../../arkui/ComponentContent'; +import { ComponentContentBase } from '../../arkui/ComponentContent'; import { memo, ComponentBuilder } from "./../stateManagement/runtime"; import { AttributeModifier, CommonMethod } from "./common"; /** @@ -244,11 +244,11 @@ export declare interface WaterFlowOptions { /** * Footer of the WaterFlow component. * - * @type { ?ComponentContent } + * @type { ?ComponentContentBase } * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 20 */ - footerContent?: ComponentContent; + footerContent?: ComponentContentBase; /** * Controller of the scrollable component, bound to the scrollable component. * -- Gitee