From 48015674cae5405cec84aea664e62a63ea04885a Mon Sep 17 00:00:00 2001 From: wanglili12 Date: Mon, 1 Sep 2025 22:04:22 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8F=8C=E5=BC=95=E5=8F=B7=E5=91=8A=E8=AD=A6?= =?UTF-8?q?=E5=A4=84=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: wanglili12 --- api/arkui/component/enums.static.d.ets | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/api/arkui/component/enums.static.d.ets b/api/arkui/component/enums.static.d.ets index f698097972..79b89de066 100644 --- a/api/arkui/component/enums.static.d.ets +++ b/api/arkui/component/enums.static.d.ets @@ -1,4 +1,4 @@ -"use static" +'use static' /* * Copyright (c) 2025 Huawei Device Co., Ltd. * Licensed under the Apache License, Version 2.0 (the "License"); @@ -21,8 +21,8 @@ */ import curves from '../../@ohos.curves'; -import { memo, ComponentBuilder } from "./../stateManagement/runtime"; -import { AttributeModifier, CommonMethod } from "./common"; +import { memo, ComponentBuilder } from './../stateManagement/runtime'; +import { AttributeModifier, CommonMethod } from './common'; /** * common enum of the checkbox shape @@ -1110,63 +1110,63 @@ declare enum LocalizedAlignment { * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 20 */ - TOP_START = "top_start", + TOP_START = 'top_start', /** * The top is centered horizontally. * * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 20 */ - TOP = "top", + TOP = 'top', /** * Top tail end. * * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 20 */ - TOP_END = "top_end", + TOP_END = 'top_end', /** * The starting end is centered longitudinally. * * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 20 */ - START = "start", + START = 'start', /** * Center horizontal and vertical. * * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 20 */ - CENTER = "center", + CENTER = 'center', /** * The tail end is centered longitudinally. * * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 20 */ - END = "end", + END = 'end', /** * Bottom starting end. * * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 20 */ - BOTTOM_START = "bottom_start", + BOTTOM_START = 'bottom_start', /** * The bottom is centered horizontally. * * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 20 */ - BOTTOM = "bottom", + BOTTOM = 'bottom', /** * Bottom end. * * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 20 */ - BOTTOM_END = "bottom_end" + BOTTOM_END = 'bottom_end' } /** -- Gitee