From 84eca91d5235ebdf0188693907bdc9ca77a03690 Mon Sep 17 00:00:00 2001 From: FreemanBao Date: Wed, 22 Jan 2025 14:07:01 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=BE=93=E5=85=A5=E6=A1=86?= =?UTF-8?q?=E9=94=AE=E7=9B=98=E6=A0=B7=E5=BC=8FCAPI=E6=8E=A5=E5=8F=A3?= =?UTF-8?q?=E8=B5=B7=E5=A7=8B=E7=89=88=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: FreemanBao --- arkui/ace_engine/native/native_node.h | 4 ++-- arkui/ace_engine/native/native_type.h | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/arkui/ace_engine/native/native_node.h b/arkui/ace_engine/native/native_node.h index 47d472b70..24731c5b0 100644 --- a/arkui/ace_engine/native/native_node.h +++ b/arkui/ace_engine/native/native_node.h @@ -3059,7 +3059,7 @@ typedef enum { * Format of the return value {@link ArkUI_AttributeItem}:\n * .value[0].i32:keyboard style,the parameter type is {@link ArkUI_KeyboardAppearanceType}。\n * - * @since 16 + * @since 14 */ NODE_TEXT_INPUT_KEYBOARD_APPEARANCE = 7035, @@ -3407,7 +3407,7 @@ typedef enum { * Format of the return value {@link ArkUI_AttributeItem}:\n * .value[0].i32:keyboard style,the parameter type is {@link ArkUI_KeyboardAppearanceType}。\n * - * @since 16 + * @since 14 */ NODE_TEXT_AREA_KEYBOARD_APPEARANCE = 8026, diff --git a/arkui/ace_engine/native/native_type.h b/arkui/ace_engine/native/native_type.h index b95363f87..fd82fba69 100644 --- a/arkui/ace_engine/native/native_type.h +++ b/arkui/ace_engine/native/native_type.h @@ -2019,27 +2019,27 @@ typedef enum { /** * @brief Defines the keyboard style of input box * - * @since 16 + * @since 14 */ typedef enum { /** * Default appearance mode, won't adopt immersive styles. - * @since 16 + * @since 14 */ ARKUI_KEYBOARD_APPEARANCE_NONE_IMMERSIVE = 0, /** * Immersive mode. - * @since 16 + * @since 14 */ ARKUI_KEYBOARD_APPEARANCE_IMMERSIVE = 1, /** * Light immersive style. - * @since 16 + * @since 14 */ ARKUI_KEYBOARD_APPEARANCE_LIGHT_IMMERSIVE = 2, /** * Dark immersive style. - * @since 16 + * @since 14 */ ARKUI_KEYBOARD_APPEARANCE_DARK_IMMERSIVE = 3, } ArkUI_KeyboardAppearance; -- Gitee