/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { GridColSize } from "./grid-col-size"; /** * Specifies the Grid data layout display mode. */ export type DataLayoutMode = 'columns' | 'stacked'; export interface DataLayoutModeSettings { /** * Specifies the Grid data layout display mode. */ mode?: DataLayoutMode; /** * Configures the stacked columns layout and widths. The possible options are: * * `number` - Sets the number of columns with default widths. * * `Array` - The array size determines the number of columns. The values represent the column widths. */ stackedCols?: number | Array; }