/* * 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. */ /** * Defines the size type. * @since 7 */ declare enum SizeType { /** * Select a value based on the device type. * @since 7 */ Auto, /** * Select a value based on the device type. * @since 7 */ XS, /** * Small width type device. * @since 7 */ SM, /** * Medium width type device. * @since 7 */ MD, /** * Large width type device. * @since 7 */ LG, } /** * Defines the options of GridContainer. * @since 7 */ declare interface GridContainerOptions { /** * Sets the total number of columns in the current layout. * @since 7 */ columns?: number | "auto"; /** * Select the device width type. * @since 7 */ sizeType?: SizeType; /** * Grid layout column spacing. * @since 7 */ gutter?: number | string; /** * Spacing on both sides of the grid layout. * @since 7 */ margin?: number | string; } /** * Defines the GridContainer component. * @since 7 */ interface GridContainerInterface { /** * Defines the constructor of GridContainer. * @since 7 */ (value?: GridContainerOptions): GridContainerAttribute; } /** * Defines the grid container attribute from inheritance Column * @since 7 */ declare class GridContainerAttribute extends ColumnAttribute {} /** * Defines GridContainer Component. * @since 7 * @deprecated since 9 * @useinstead grid_col/[GridColColumnOption] and grid_row/[GridRowColumnOption] */ declare const GridContainer: GridContainerInterface /** * Defines GridContainer Component instance. * @since 7 * @deprecated since 9 * @useinstead grid_col/[GridColAttribute] and grid_row/[GridRowAttribute] */ declare const GridContainerInstance: GridContainerAttribute;