/* * Copyright (c) 2021 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 the method of switching the cursor position. * @since 8 */ declare class SearchController { /** * constructor. * @since 8 */ constructor(); /** * Called when the position of the insertion cursor is set. * @since 8 */ caretPosition(value: number): void; } /** * The construct function of search * @since 8 */ interface SearchInterface { (options?: { value?: string; placeholder?: string; icon?: string; controller?: SearchController }): SearchAttribute; } /** * The attribute function of search * @since 8 */ declare class SearchAttribute extends CommonMethod { /** * Set the search button text * @since 8 */ searchButton(value: string): SearchAttribute; /** * Set the place hold text color * @since 8 */ placeholderColor(value: ResourceColor): SearchAttribute; /** * Set the font used for place holder text * @since 8 */ placeholderFont(value?: Font): SearchAttribute; /** * Set the font used for input text * @since 8 */ textFont(value?: Font): SearchAttribute; /** * Call the function when clicked the search button * @since 8 */ onSubmit(callback: (value: string) => void): SearchAttribute; /** * Call the function when editing the input text * @since 8 */ onChange(callback: (value: string) => void): SearchAttribute; /** * Called when using the Clipboard menu * @since 8 */ onCopy(callback: (value: string) => void): SearchAttribute; /** * Called when using the Clipboard menu * @since 8 */ onCut(callback: (value: string) => void): SearchAttribute; /** * Called when using the Clipboard menu * @since 8 */ onPaste(callback: (value: string) => void): SearchAttribute; /** * Called when the copy option is set. * @since 9 */ copyOption(value: CopyOptions): SearchAttribute; /** * Called when the text align is set. * @since 9 */ textAlign(value: TextAlign): SearchAttribute; } /** * Defines Search Component. * @since 8 */ declare const Search: SearchInterface; /** * Defines Search Component instance. * @since 8 */ declare const SearchInstance: SearchAttribute;