From 89d8e74f57cb549015926d49334aeaf45e0ef11f Mon Sep 17 00:00:00 2001 From: platonovvladislav Date: Thu, 7 Aug 2025 15:03:13 +0300 Subject: [PATCH 1/2] Add package for GestureModifier --- arkoala-arkts/arkui/sdk/handwritten/GestureModifier.ets | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arkoala-arkts/arkui/sdk/handwritten/GestureModifier.ets b/arkoala-arkts/arkui/sdk/handwritten/GestureModifier.ets index 4654e9393b..01e485e7be 100644 --- a/arkoala-arkts/arkui/sdk/handwritten/GestureModifier.ets +++ b/arkoala-arkts/arkui/sdk/handwritten/GestureModifier.ets @@ -13,5 +13,7 @@ * limitations under the License. */ +package arkui.component.common; + export interface GestureModifier { } -- Gitee From 1c1897189e8cb42092e55e2772e7b9f308fb97b7 Mon Sep 17 00:00:00 2001 From: platonovvladislav Date: Wed, 13 Aug 2025 10:38:31 +0300 Subject: [PATCH 2/2] Move GestureModifier to common.ets --- .../arkui/sdk/handwritten/GestureModifier.ets | 19 ------------------- .../sdk/handwritten/component/common.ets | 3 +++ arkoala-arkts/arkui/sdk/handwritten/index.ets | 1 - 3 files changed, 3 insertions(+), 20 deletions(-) delete mode 100644 arkoala-arkts/arkui/sdk/handwritten/GestureModifier.ets diff --git a/arkoala-arkts/arkui/sdk/handwritten/GestureModifier.ets b/arkoala-arkts/arkui/sdk/handwritten/GestureModifier.ets deleted file mode 100644 index 01e485e7be..0000000000 --- a/arkoala-arkts/arkui/sdk/handwritten/GestureModifier.ets +++ /dev/null @@ -1,19 +0,0 @@ -/* - * Copyright (c) 2024-2025 Huawei Device Co., Ltd. - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package arkui.component.common; - -export interface GestureModifier { -} diff --git a/arkoala-arkts/arkui/sdk/handwritten/component/common.ets b/arkoala-arkts/arkui/sdk/handwritten/component/common.ets index 20e1cf98cd..0ab26796f9 100644 --- a/arkoala-arkts/arkui/sdk/handwritten/component/common.ets +++ b/arkoala-arkts/arkui/sdk/handwritten/component/common.ets @@ -23,3 +23,6 @@ export declare interface AttributeModifier { applyDisabledAttribute(instance: T): void; applySelectedAttribute(instance: T): void; } + +export interface GestureModifier { +} diff --git a/arkoala-arkts/arkui/sdk/handwritten/index.ets b/arkoala-arkts/arkui/sdk/handwritten/index.ets index 2ead10c03a..2765a61737 100644 --- a/arkoala-arkts/arkui/sdk/handwritten/index.ets +++ b/arkoala-arkts/arkui/sdk/handwritten/index.ets @@ -20,7 +20,6 @@ export * from "./AttributeUpdater" export * from "./TestComponent" export * from "./Router" export * from "./ForeignFunctions" -export * from "./GestureModifier" export * from "./resources" export * from "./component/base" export * from "./component/common" -- Gitee