/* * Copyright (c) 2022-2023 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. */ /** * Defines the option in number unit of grid-container child component. * @form * @since 9 */ declare interface GridColColumnOption { /** * Grid Col Column Option xs * @form * @since 9 */ xs?: number, /** * Grid Col Column Option sm * @form * @since 9 */ sm?: number, /** * Grid Col Column Option md * @form * @since 9 */ md?: number, /** * Grid Col Column Option lg * @form * @since 9 */ lg?: number, /** * Grid Col Column Option xl * @form * @since 9 */ xl?: number, /** * Grid Col Column Option xxl * @form * @since 9 */ xxl?: number, } /** * Defines the options of grid-container child component. * @form * @since 9 */ declare interface GridColOptions { /** * Sets the span of current gird-container item. * @form * @since 9 */ span?: number | GridColColumnOption; /** * Sets the offset of current gird-container item. * @form * @since 9 */ offset?: number | GridColColumnOption; /** * Sets the order of current gird-container item. * @form * @since 9 */ order?: number | GridColColumnOption; } /** * Defines the the new version of grid-container child component. * @form * @since 9 */ interface GridColInterface { /** * Defines the constructor of GridContainer. * @form * @since 9 */ (option?: GridColOptions): GridColAttribute; } declare class GridColAttribute extends CommonMethod { /** * Sets the span of current gird-container item. * @form * @since 9 */ span(value: number | GridColColumnOption): GridColAttribute; /** * Sets the offset of current gird-container item. * @form * @since 9 */ gridColOffset(value: number | GridColColumnOption): GridColAttribute; /** * Sets the order of current gird-container item. * @form * @since 9 */ order(value: number | GridColColumnOption): GridColAttribute; } /** * Defines GridCol Component. * @form * @since 9 */ declare const GridCol: GridColInterface /** * Defines GridCol Component instance. * @form * @since 9 */ declare const GridColInstance: GridColAttribute;