diff --git a/arkui/ace_engine/native/native_node.h b/arkui/ace_engine/native/native_node.h index db7bf1e3ef0d03f75c9ac5208729ed9db213d2ff..32e62b72b92c37a4a02089dfb5f11ab06f008a74 100644 --- a/arkui/ace_engine/native/native_node.h +++ b/arkui/ace_engine/native/native_node.h @@ -3092,7 +3092,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 15 */ NODE_TEXT_INPUT_KEYBOARD_APPEARANCE = 7035, @@ -3440,7 +3440,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 15 */ 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 20cebacea697135037756586cc2f2a98da557ed2..5e356abc55b099aad0896fc89054fff842070756 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 15 */ typedef enum { /** * Default appearance mode, won't adopt immersive styles. - * @since 16 + * @since 15 */ ARKUI_KEYBOARD_APPEARANCE_NONE_IMMERSIVE = 0, /** * Immersive mode. - * @since 16 + * @since 15 */ ARKUI_KEYBOARD_APPEARANCE_IMMERSIVE = 1, /** * Light immersive style. - * @since 16 + * @since 15 */ ARKUI_KEYBOARD_APPEARANCE_LIGHT_IMMERSIVE = 2, /** * Dark immersive style. - * @since 16 + * @since 15 */ ARKUI_KEYBOARD_APPEARANCE_DARK_IMMERSIVE = 3, } ArkUI_KeyboardAppearance;