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 __patternlock__ = requireInternal('arkui.patternlock'); 17 18class PatternLock extends JSViewAbstract { 19 static create(value) { 20 __patternlock__.create(value); 21 } 22 23 static sideLength(value) { 24 __patternlock__.sideLength(value); 25 } 26 27 static circleRadius(value) { 28 __patternlock__.circleRadius(value); 29 } 30 31 static pathStrokeWidth(value) { 32 __patternlock__.pathStrokeWidth(value); 33 } 34 35 static activeColor(value) { 36 __patternlock__.activeColor(value); 37 } 38 39 static selectedColor(value) { 40 __patternlock__.selectedColor(value); 41 } 42 43 static pathColor(value) { 44 __patternlock__.pathColor(value); 45 } 46 47 static regularColor(value) { 48 __patternlock__.regularColor(value); 49 } 50 51 static autoReset(value) { 52 __patternlock__.autoReset(value); 53 } 54 55 static onPatternComplete(value) { 56 __patternlock__.onPatternComplete(value); 57 } 58} 59 60export default PatternLock; 61 62