1/* 2 * Copyright (c) 2023 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16const __relative_container__ = requireInternal('arkui.relativeContainer'); 17 18class RelativeContainer extends JSContainerBase { 19 static create(value) { 20 __relative_container__.create(value); 21 } 22 23 static onTouch(value) { 24 __Common__.onTouch(value); 25 } 26 27 static onKeyEvent(value) { 28 __Common__.onKeyEvent(value); 29 } 30 31 static onDeleteEvent(value) { 32 __Common__.onDeleteEvent(value); 33 } 34 35 static onClick(value) { 36 __Common__.onClick(value); 37 } 38 39 static onHover(value) { 40 __Common__.onHover(value); 41 } 42 43 static onAppear(value) { 44 __Common__.onAppear(value); 45 } 46 47 static onDisAppear(value) { 48 __Common__.onDisAppear(value); 49 } 50 51 static remoteMessage(value) { 52 __Common__.remoteMessage(value); 53 } 54} 55 56export default RelativeContainer;