From ec0515c5ebbd8f1c7f64aa8d725fc3b438f03b75 Mon Sep 17 00:00:00 2001 From: xieziang Date: Sun, 31 Aug 2025 14:35:50 +0800 Subject: [PATCH] sync api with yellow zone for ChipGroup and SegmentButton Signed-off-by: xieziang Change-Id: Ibef3f5bf0f36011608b848e7540f8314e0becbfc --- api/@ohos.arkui.advanced.ChipGroup.d.ets | 2 +- api/@ohos.arkui.advanced.SegmentButton.d.ets | 8 +++++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/api/@ohos.arkui.advanced.ChipGroup.d.ets b/api/@ohos.arkui.advanced.ChipGroup.d.ets index 1242e40f7a..bc833d450a 100644 --- a/api/@ohos.arkui.advanced.ChipGroup.d.ets +++ b/api/@ohos.arkui.advanced.ChipGroup.d.ets @@ -668,7 +668,7 @@ export declare struct ChipGroup { chipGroupPadding?: ChipGroupPaddingOptions; /** - * Chip group callback. + * Chip group callback. when chip status is changed, this onChange is called. * * @type { ?Callback> } * @syscap SystemCapability.ArkUI.ArkUI.Full diff --git a/api/@ohos.arkui.advanced.SegmentButton.d.ets b/api/@ohos.arkui.advanced.SegmentButton.d.ets index 1112cd8a2c..f3119b485f 100644 --- a/api/@ohos.arkui.advanced.SegmentButton.d.ets +++ b/api/@ohos.arkui.advanced.SegmentButton.d.ets @@ -333,23 +333,25 @@ declare type DimensionNoPercentage = PX | VP | FP | LPX | Resource; /** * Defines the BorderRadiusMode type. - * + * @enum { number } * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since 20 */ declare enum BorderRadiusMode { - /** + /** * Default mode, radius is auto calculated by framework. + * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since 20 */ DEFAULT = 0, - /** + /** * Custom mode, radius can be set by developers. + * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since 20 -- Gitee