From a7852f9b8814d46792378cfdfdcc844330f0f777 Mon Sep 17 00:00:00 2001 From: liuyanzhi Date: Mon, 16 Jun 2025 08:37:45 +0800 Subject: [PATCH] fix swiper Signed-off-by: liuyanzhi --- arkui/ace_engine/native/native_node.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/arkui/ace_engine/native/native_node.h b/arkui/ace_engine/native/native_node.h index 0b18b223f..5fca92bb9 100644 --- a/arkui/ace_engine/native/native_node.h +++ b/arkui/ace_engine/native/native_node.h @@ -5873,13 +5873,13 @@ typedef enum { * Format of the {@link ArkUI_AttributeItem} parameter for setting the attribute:\n * .value[0].i32: number of elements to display per page. \n * .value[1]?.i32: whether to turn pages by group. The value 0 means to turn pages by child element, - * and 1 means to turn pages by group. This parameter is supported since API version 16. \n + * and 1 means to turn pages by group. This parameter is supported since API version 19. \n * .string?: this parameter can only be set to 'auto'. When 'auto' is set, the value[] parameters are ignored. - * This parameter is supported since API version 16. \n + * This parameter is supported since API version 19. \n * \n * Format of the return value {@link ArkUI_AttributeItem}:\n * .value[0].i32: number of elements to display per page. \n - * .value[1].i32: whether to turn pages by group. This parameter is supported since API version 16. \n + * .value[1].i32: whether to turn pages by group. This parameter is supported since API version 19. \n * .string: 'auto' or empty string. * */ @@ -5909,14 +5909,14 @@ typedef enum { * The parameter type is {@link ArkUI_SwiperArrow}.\n * The default value is ARKUI_SWIPER_ARROW_HIDE. \n * .?object: arrow style. The parameter type is {@link ArkUI_SwiperArrowStyle}. \n - * This parameter is supported since API version 16. \n + * This parameter is supported since API version 19. \n * \n * Format of the return value {@link ArkUI_AttributeItem}:\n * .value[0].i32: whether to show the arrow when the mouse pointer hovers over the navigation point indicator. * The parameter type is {@link ArkUI_SwiperArrow}.\n * The default value is ARKUI_SWIPER_ARROW_HIDE. \n * .object: arrow style. The parameter type is {@link ArkUI_SwiperArrowStyle}. \n - * This parameter is supported since API version 16. \n + * This parameter is supported since API version 19. \n * */ NODE_SWIPER_SHOW_DISPLAY_ARROW, @@ -5954,11 +5954,11 @@ typedef enum { * .value[1]?.i32: whether the cached items will be displayed. \n * The value 0 indicates that cached items will not be displayed, \n * and 1 indicates that cached nodes will be displayed. The default value is 0. \n - * This parameter is supported from API version 16. \n + * This parameter is supported from API version 19. \n * \n * Format of the return value {@link ArkUI_AttributeItem}:\n * .value[0].i32: number of cached items in the swiper adapter. \n - * .value[1].i32: whether the cached items will be displayed. This parameter is supported from API version 16. \n + * .value[1].i32: whether the cached items will be displayed. This parameter is supported from API version 19. \n */ NODE_SWIPER_CACHED_COUNT, @@ -6001,14 +6001,14 @@ typedef enum { * .object: The parameter type is {@link ArkUI_SwiperIndicator} when the indicator type \n * is ARKUI_SWIPER_INDICATOR_TYPE_DOT. The parameter type is {@link ArkUI_SwiperDigitIndicator} * when the indicator type is ARKUI_SWIPER_INDICATOR_TYPE_DIGIT. \n - * {@link ArkUI_SwiperDigitIndicator} is supported since API version 16. \n + * {@link ArkUI_SwiperDigitIndicator} is supported since API version 19. \n * \n * Format of the return value {@link ArkUI_AttributeItem}:\n * .value[0].i32: navigation indicator type, the parameter type is {@link ArkUI_SwiperIndicatorType}.\n * .object: The parameter type is {@link ArkUI_SwiperIndicator} when the indicator type \n * is ARKUI_SWIPER_INDICATOR_TYPE_DOT. The parameter type is {@link ArkUI_SwiperDigitIndicator} * when the indicator type is ARKUI_SWIPER_INDICATOR_TYPE_DIGIT. \n - * {@link ArkUI_SwiperDigitIndicator} is supported since API version 16. \n + * {@link ArkUI_SwiperDigitIndicator} is supported since API version 19. \n * */ NODE_SWIPER_INDICATOR, -- Gitee