@progress/kendo-angular-layout
Version:
Kendo UI for Angular Layout Package - a collection of components to create professional application layoyts
18 lines (17 loc) • 824 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* Controls how the auto-placement algorithm works, specifying exactly how auto-placed items are flowed 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 possible values are:
* * (Default) `column`
* * `row`
* * `row-dense`
* * `column-dense`
* * `none`
*
*/
export type TileLayoutFlowMode = 'none' | 'row' | 'column' | 'row-dense' | 'column-dense';