diff --git a/api/@internal/component/ets/grid.d.ts b/api/@internal/component/ets/grid.d.ts index e58a4765bcee9799274ca04d52c879227b7de0d0..2137978e98f3f3db83b54684857fdbe8443e0e4b 100644 --- a/api/@internal/component/ets/grid.d.ts +++ b/api/@internal/component/ets/grid.d.ts @@ -186,6 +186,18 @@ declare class GridAttribute extends CommonMethod { onItemDrop( event: (event: ItemDragInfo, itemIndex: number, insertIndex: number, isSuccess: boolean) => void, ): GridAttribute; + + /** + * Lets you to specify the number of columns in the current grid layout for specific device width types. + * @since 9 + */ + columnsSizeTypes(value: { + xs?: string; + sm?: string; + md?: string; + lg?: string; + xl?: string; + }): GridAttribute; } declare const Grid: GridInterface;