From 70999b8af84c40845eeb43e01620d3bcae4fba88 Mon Sep 17 00:00:00 2001 From: luoxi Date: Thu, 4 Sep 2025 15:30:48 +0800 Subject: [PATCH] fix noninterop Signed-off-by: luoxi --- api/@ohos.arkui.advanced.MultiNavigation.static.d.ets | 5 +++++ api/arkui/component/stepperItem.static.d.ets | 9 +++++++++ 2 files changed, 14 insertions(+) diff --git a/api/@ohos.arkui.advanced.MultiNavigation.static.d.ets b/api/@ohos.arkui.advanced.MultiNavigation.static.d.ets index 254cb2d92a..b0ce5e69fc 100644 --- a/api/@ohos.arkui.advanced.MultiNavigation.static.d.ets +++ b/api/@ohos.arkui.advanced.MultiNavigation.static.d.ets @@ -29,6 +29,7 @@ import { State } from '@ohos.arkui.stateManagement'; * @enum { number } * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 20 + * @noninterop */ export declare enum SplitPolicy { /** @@ -63,6 +64,7 @@ export declare enum SplitPolicy { * @param { NavigationMode } mode - current NavigationMode. * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 20 + * @noninterop */ declare type OnNavigationModeChangeCallback = (mode: NavigationMode) => void; @@ -73,6 +75,7 @@ declare type OnNavigationModeChangeCallback = (mode: NavigationMode) => void; * @param { string } name - the name of home NavDestination shown in top. * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 20 + * @noninterop */ declare type OnHomeShowOnTopCallback = (name: string) => void; @@ -82,6 +85,7 @@ declare type OnHomeShowOnTopCallback = (name: string) => void; * @struct { MultiNavigation } * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 20 + * @noninterop */ @Component export declare struct MultiNavigation { @@ -138,6 +142,7 @@ export declare struct MultiNavigation { * @extends NavPathStack * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 20 + * @noninterop */ export declare class MultiNavPathStack extends NavPathStack { /** diff --git a/api/arkui/component/stepperItem.static.d.ets b/api/arkui/component/stepperItem.static.d.ets index 962b43c456..b0d71259a5 100644 --- a/api/arkui/component/stepperItem.static.d.ets +++ b/api/arkui/component/stepperItem.static.d.ets @@ -115,6 +115,15 @@ export declare interface StepperItemAttribute extends CommonMethod { default attributeModifier(modifier: AttributeModifier | AttributeModifier | undefined): this; } +/** + * Defines StepperItem Component + * + * @param { function } [content_] - container + * @returns { StepperItemAttribute } + * @syscap SystemCapability.ArkUI.ArkUI.Full + * @since 20 + * @noninterop + */ @memo @ComponentBuilder export declare function StepperItem( -- Gitee