/* * Copyright (c) 2021-2022 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. */ /** * Provides methods for control pattern lock component. * @since 9 */ declare class PatternLockController { /** * constructor. */ constructor(); /** * Reset pattern lock. */ reset(); } /** * Provides an interface for generating PatternLock. * @since 9 */ interface PatternLockInterface { (controller?: PatternLockController): PatternLockAttribute; } /** * @since 9 */ declare class PatternLockAttribute extends CommonMethod { /** * The square side length of pattern lock component. * @since 9 */ sideLength(value: Length): PatternLockAttribute; /** * Circle radius. * @since 9 */ circleRadius(value: Length): PatternLockAttribute; /** * The background color. * @since 9 */ backgroundColor(value: ResourceColor): PatternLockAttribute; /** * Regular color. * @since 9 */ regularColor(value: ResourceColor): PatternLockAttribute; /** * The color when cell is selected. * @since 9 */ selectedColor(value: ResourceColor): PatternLockAttribute; /** * The color when cell is active state. * @since 9 */ activeColor(value: ResourceColor): PatternLockAttribute; /** * The path line color. * @since 9 */ pathColor(value: ResourceColor): PatternLockAttribute; /** * The path line stroke width. * @since 9 */ pathStrokeWidth(value: number | string): PatternLockAttribute; /** * Called when the pattern input completed. * @since 9 */ onPatternComplete(callback: (input: Array) => void): PatternLockAttribute; /** * Called when judging whether the input state can be reset by touch pattern lock. * @since 9 */ autoReset(value: boolean): PatternLockAttribute; } /** * Defines PatternLock Component. * @since 9 */ declare const PatternLock: PatternLockInterface; /** * Defines PatternLock Component instance. * @since 9 */ declare const PatternLockInstance: PatternLockAttribute;