UNPKG

@progress/kendo-angular-layout

Version:

Kendo UI for Angular Layout Package - a collection of components to create professional application layoyts

17 lines (16 loc) 1.2 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ /** * The flow modes controls how auto-placed items are arranged in the TileLayout. * For further reference, check the [grid-auto-flow CSS article](https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-flow). * * The available values are: * * `column` (Default)—Sets the grid-auto-flow CSS property of the TileLayout to column. * * `column-dense`—Sets the grid-auto-flow CSS property of the TileLayout to column dense. * *`row`—Sets the grid-auto-flow CSS property of the TileLayout to row. * *`row-dense`—Sets the grid-auto-flow CSS property of the TileLayout to row dense. * *`none`—Does not apply the grid-auto-flow CSS property. In this case the default behavior of the CSS Grid Layout will be used. */ export type TileLayoutFlowMode = 'none' | 'row' | 'column' | 'row-dense' | 'column-dense';