From f54a07b48136be601a39afa70cd109796223b3f1 Mon Sep 17 00:00:00 2001 From: "ester.zhou" Date: Tue, 1 Aug 2023 15:07:10 +0800 Subject: [PATCH] Update docs (21245) Signed-off-by: ester.zhou --- en/application-dev/quick-start/Readme-EN.md | 7 ++++--- .../quick-start/start-overview.md | 2 +- .../quick-start/start-with-ets-stage.md | 2 +- .../OpenHarmony_4.0.8.1/changelogs-arkui.md | 21 +++++++++++++++++++ 4 files changed, 27 insertions(+), 5 deletions(-) create mode 100644 en/release-notes/changelogs/OpenHarmony_4.0.8.1/changelogs-arkui.md diff --git a/en/application-dev/quick-start/Readme-EN.md b/en/application-dev/quick-start/Readme-EN.md index 7e6d0acac8..1d079b36d7 100644 --- a/en/application-dev/quick-start/Readme-EN.md +++ b/en/application-dev/quick-start/Readme-EN.md @@ -2,7 +2,7 @@ - Getting Started - [Before You Start](start-overview.md) - - [Getting Started with ArkTS in Stage Model](start-with-ets-stage.md) + - [Building the First ArkTS Application in Stage Model](start-with-ets-stage.md) - Development Fundamentals - Application Package Fundamentals - [Application Package Overview](application-package-overview.md) @@ -41,8 +41,8 @@ - [Resource Categories and Access](resource-categories-and-access.md) - Learning ArkTS - [Getting Started with ArkTS](arkts-get-started.md) - - [Introduction to ArkTS](arkts/introduction-to-arkts.md) - - [TypeScript to ArkTS Migration Guide](arkts/typescript-to-arkts-migration-guide.md) + - [Introduction to ArkTS](introduction-to-arkts.md) + - [TypeScript to ArkTS Migration Guide](typescript-to-arkts-migration-guide.md) - UI paradigms - Basic Syntax - [Basic Syntax Overview](arkts-basic-syntax-overview.md) @@ -55,6 +55,7 @@ - [\@Styles Decorator: Definition of Resusable Styles](arkts-style.md) - [\@Extend Decorator: Extension of Built-in Components](arkts-extend.md) - [stateStyles Decorator: Polymorphic Style](arkts-statestyles.md) + - [\@AnimatableExtend Decorator: Definition of Animatable Attributes](arkts-animatable-extend.md) - State Management - [State Management Overview](arkts-state-management-overview.md) - Component State Management diff --git a/en/application-dev/quick-start/start-overview.md b/en/application-dev/quick-start/start-overview.md index 2bc53666dc..df1178706c 100644 --- a/en/application-dev/quick-start/start-overview.md +++ b/en/application-dev/quick-start/start-overview.md @@ -44,4 +44,4 @@ To help you better understand the preceding basic concepts and application devel 2. Install DevEco Studio and configure the development environment. For details, see [Setting Up the Development Environment](https://developer.harmonyos.com/en/docs/documentation/doc-guides-V3/environment_config-0000001052902427-V3). -When you are done, follow the instructions in [Getting Started with ArkTS in Stage Model](start-with-ets-stage.md). +When you are done, you can set out to [build your first ArkTS application in the stage model](start-with-ets-stage.md). diff --git a/en/application-dev/quick-start/start-with-ets-stage.md b/en/application-dev/quick-start/start-with-ets-stage.md index ec3ab196bb..789f4c05e2 100644 --- a/en/application-dev/quick-start/start-with-ets-stage.md +++ b/en/application-dev/quick-start/start-with-ets-stage.md @@ -1,4 +1,4 @@ -# Getting Started with ArkTS in Stage Model +# Building the First ArkTS Application in Stage Model > **NOTE** diff --git a/en/release-notes/changelogs/OpenHarmony_4.0.8.1/changelogs-arkui.md b/en/release-notes/changelogs/OpenHarmony_4.0.8.1/changelogs-arkui.md new file mode 100644 index 0000000000..b155f52a10 --- /dev/null +++ b/en/release-notes/changelogs/OpenHarmony_4.0.8.1/changelogs-arkui.md @@ -0,0 +1,21 @@ +# ArkUI Subsystem Changelog + +## cl.arkui.1 Change of Certain Predicates of uiAppearance from Public APIs to System APIs + +Changed the namespace **uiAppearance** and its internal **DarkMode** enum predicates from public APIs to system APIs. + +**Change Impact** + +None. The namespace **uiAppearance** and its internal **DarkMode** enum are used only by system APIs before and after the change. + +**Key API/Component Changes** + +The system API description is added to the following APIs: + +- declare namespace uiAppearance + +- enum DarkMode + +- ALWAYS_DARK = 0 + +- ALWAYS_LIGHT = 1 -- GitLab