/**-----------------------------------------------------------------------------------------
* 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';
