alterdialog

Signed-off-by: huangdong57 <huangdong57@huawei.com>
This commit is contained in:
huangdong57 2023-11-16 16:52:55 +08:00
parent f666dbabf9
commit 7660c49a0f
2 changed files with 20 additions and 20 deletions

View File

@ -311,6 +311,16 @@ declare namespace promptAction {
* @since 10
*/
offset?: Offset;
/**
* Whether to display in the sub window.
*
* @type { ?boolean }
* @syscap SystemCapability.ArkUI.ArkUI.Full
* @crossplatform
* @since 11
*/
showInSubWindow?: boolean;
}
/**
@ -390,6 +400,16 @@ declare namespace promptAction {
* @since 10
*/
buttons: [Button, Button?, Button?, Button?, Button?, Button?];
/**
* Whether to display in the sub window.
*
* @type { ?boolean }
* @syscap SystemCapability.ArkUI.ArkUI.Full
* @crossplatform
* @since 11
*/
showInSubWindow?: boolean;
}
/**

View File

@ -188,16 +188,6 @@ export interface ShowDialogOptions {
* @since 3
*/
complete?: (data: string) => void;
/**
* Whether to display in the sub window.
*
* @type { ?boolean }
* @syscap SystemCapability.ArkUI.ArkUI.Full
* @crossplatform
* @since 11
*/
showInSubWindow?: boolean;
}
/**
@ -254,16 +244,6 @@ export interface ShowActionMenuOptions {
* @since 6
*/
complete?: () => void;
/**
* Whether to display in the sub window.
*
* @type { ?boolean }
* @syscap SystemCapability.ArkUI.ArkUI.Full
* @crossplatform
* @since 11
*/
showInSubWindow?: boolean;
}
/**