@aurelia-mdc-web/layout-grid
Version:
Wrapper for Material Components Web Layout Grid
22 lines (21 loc) • 805 B
TypeScript
/**
* @selector mdc-layout-grid-cell
*/
export declare class MdcLayoutGridCell {
/** Optional, specifies the order of the cell */
order: string;
/** Optional, specifies the alignment of cell */
position: 'top' | 'middle' | 'bottom';
/** Optional, specifies the number of columns the cell spans */
span: string;
/** Optional, specifies the number of columns the cell spans on a desktop */
desktopSpan: string;
/** Optional, specifies the number of columns the cell spans on a tablet */
tabletSpan: string;
/** Optional, specifies the number of columns the cell spans on a phone */
phoneSpan: string;
newRow: string;
/** Optional, specifies the number of columns the cell spans for all screen sizes */
spans: string;
spansChanged(): void;
}