UNPKG

@angular/material

Version:
1 lines 40.7 kB
{"version":3,"file":"grid-list.mjs","sources":["../../../../../darwin_arm64-fastbuild-ST-fdfa778d11ba/bin/src/material/grid-list/grid-list-base.ts","../../../../../darwin_arm64-fastbuild-ST-fdfa778d11ba/bin/src/material/grid-list/grid-tile.ts","../../../../../darwin_arm64-fastbuild-ST-fdfa778d11ba/bin/src/material/grid-list/grid-tile.html","../../../../../darwin_arm64-fastbuild-ST-fdfa778d11ba/bin/src/material/grid-list/grid-tile-text.html","../../../../../darwin_arm64-fastbuild-ST-fdfa778d11ba/bin/src/material/grid-list/tile-styler.ts","../../../../../darwin_arm64-fastbuild-ST-fdfa778d11ba/bin/src/material/grid-list/grid-list.ts","../../../../../darwin_arm64-fastbuild-ST-fdfa778d11ba/bin/src/material/grid-list/grid-list.html","../../../../../darwin_arm64-fastbuild-ST-fdfa778d11ba/bin/src/material/grid-list/grid-list-module.ts"],"sourcesContent":["/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {InjectionToken} from '@angular/core';\n\n/**\n * Injection token used to provide a grid list to a tile and to avoid circular imports.\n * @docs-private\n */\nexport const MAT_GRID_LIST = new InjectionToken<MatGridListBase>('MAT_GRID_LIST');\n\n/**\n * Base interface for a `MatGridList`.\n * @docs-private\n */\nexport interface MatGridListBase {\n cols: number;\n gutterSize: string;\n rowHeight: number | string;\n}\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {\n Component,\n ViewEncapsulation,\n ElementRef,\n Input,\n ContentChildren,\n QueryList,\n AfterContentInit,\n Directive,\n ChangeDetectionStrategy,\n inject,\n} from '@angular/core';\nimport {MatLine, setLines} from '../core';\nimport {coerceNumberProperty, NumberInput} from '@angular/cdk/coercion';\nimport {MAT_GRID_LIST, MatGridListBase} from './grid-list-base';\n\n@Component({\n selector: 'mat-grid-tile',\n exportAs: 'matGridTile',\n host: {\n 'class': 'mat-grid-tile',\n // Ensures that the \"rowspan\" and \"colspan\" input value is reflected in\n // the DOM. This is needed for the grid-tile harness.\n '[attr.rowspan]': 'rowspan',\n '[attr.colspan]': 'colspan',\n },\n templateUrl: 'grid-tile.html',\n styleUrl: 'grid-list.css',\n encapsulation: ViewEncapsulation.None,\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class MatGridTile {\n private _element = inject<ElementRef<HTMLElement>>(ElementRef);\n _gridList? = inject<MatGridListBase>(MAT_GRID_LIST, {optional: true});\n\n _rowspan: number = 1;\n _colspan: number = 1;\n\n constructor(...args: unknown[]);\n constructor() {}\n\n /** Amount of rows that the grid tile takes up. */\n @Input()\n get rowspan(): number {\n return this._rowspan;\n }\n set rowspan(value: NumberInput) {\n this._rowspan = Math.round(coerceNumberProperty(value));\n }\n\n /** Amount of columns that the grid tile takes up. */\n @Input()\n get colspan(): number {\n return this._colspan;\n }\n set colspan(value: NumberInput) {\n this._colspan = Math.round(coerceNumberProperty(value));\n }\n\n /**\n * Sets the style of the grid-tile element. Needs to be set manually to avoid\n * \"Changed after checked\" errors that would occur with HostBinding.\n */\n _setStyle(property: string, value: any): void {\n (this._element.nativeElement.style as any)[property] = value;\n }\n}\n\n@Component({\n selector: 'mat-grid-tile-header, mat-grid-tile-footer',\n templateUrl: 'grid-tile-text.html',\n changeDetection: ChangeDetectionStrategy.OnPush,\n encapsulation: ViewEncapsulation.None,\n})\nexport class MatGridTileText implements AfterContentInit {\n private _element = inject<ElementRef<HTMLElement>>(ElementRef);\n\n @ContentChildren(MatLine, {descendants: true}) _lines: QueryList<MatLine>;\n\n constructor(...args: unknown[]);\n constructor() {}\n\n ngAfterContentInit() {\n setLines(this._lines, this._element);\n }\n}\n\n/**\n * Directive whose purpose is to add the mat- CSS styling to this selector.\n * @docs-private\n */\n@Directive({\n selector: '[mat-grid-avatar], [matGridAvatar]',\n host: {'class': 'mat-grid-avatar'},\n})\nexport class MatGridAvatarCssMatStyler {}\n\n/**\n * Directive whose purpose is to add the mat- CSS styling to this selector.\n * @docs-private\n */\n@Directive({\n selector: 'mat-grid-tile-header',\n host: {'class': 'mat-grid-tile-header'},\n})\nexport class MatGridTileHeaderCssMatStyler {}\n\n/**\n * Directive whose purpose is to add the mat- CSS styling to this selector.\n * @docs-private\n */\n@Directive({\n selector: 'mat-grid-tile-footer',\n host: {'class': 'mat-grid-tile-footer'},\n})\nexport class MatGridTileFooterCssMatStyler {}\n","<div class=\"mat-grid-tile-content\">\n <ng-content></ng-content>\n</div>\n","<ng-content select=\"[mat-grid-avatar], [matGridAvatar]\"></ng-content>\n<div class=\"mat-grid-list-text\"><ng-content select=\"[mat-line], [matLine]\"></ng-content></div>\n<ng-content></ng-content>\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {QueryList} from '@angular/core';\nimport {MatGridTile} from './grid-tile';\nimport {TileCoordinator} from './tile-coordinator';\n\n/**\n * RegExp that can be used to check whether a value will\n * be allowed inside a CSS `calc()` expression.\n */\nconst cssCalcAllowedValue = /^-?\\d+((\\.\\d+)?[A-Za-z%$]?)+$/;\n\n/** Object that can be styled by the `TileStyler`. */\nexport interface TileStyleTarget {\n _setListStyle(style: [string, string | null] | null): void;\n _tiles: QueryList<MatGridTile>;\n}\n\n/**\n * Sets the style properties for an individual tile, given the position calculated by the\n * Tile Coordinator.\n * @docs-private\n */\nexport abstract class TileStyler {\n _gutterSize: string;\n _rows: number = 0;\n _rowspan: number = 0;\n _cols: number;\n _direction: string;\n\n /**\n * Adds grid-list layout info once it is available. Cannot be processed in the constructor\n * because these properties haven't been calculated by that point.\n *\n * @param gutterSize Size of the grid's gutter.\n * @param tracker Instance of the TileCoordinator.\n * @param cols Amount of columns in the grid.\n * @param direction Layout direction of the grid.\n */\n init(gutterSize: string, tracker: TileCoordinator, cols: number, direction: string): void {\n this._gutterSize = normalizeUnits(gutterSize);\n this._rows = tracker.rowCount;\n this._rowspan = tracker.rowspan;\n this._cols = cols;\n this._direction = direction;\n }\n\n /**\n * Computes the amount of space a single 1x1 tile would take up (width or height).\n * Used as a basis for other calculations.\n * @param sizePercent Percent of the total grid-list space that one 1x1 tile would take up.\n * @param gutterFraction Fraction of the gutter size taken up by one 1x1 tile.\n * @return The size of a 1x1 tile as an expression that can be evaluated via CSS calc().\n */\n getBaseTileSize(sizePercent: number, gutterFraction: number): string {\n // Take the base size percent (as would be if evenly dividing the size between cells),\n // and then subtracting the size of one gutter. However, since there are no gutters on the\n // edges, each tile only uses a fraction (gutterShare = numGutters / numCells) of the gutter\n // size. (Imagine having one gutter per tile, and then breaking up the extra gutter on the\n // edge evenly among the cells).\n return `(${sizePercent}% - (${this._gutterSize} * ${gutterFraction}))`;\n }\n\n /**\n * Gets The horizontal or vertical position of a tile, e.g., the 'top' or 'left' property value.\n * @param offset Number of tiles that have already been rendered in the row/column.\n * @param baseSize Base size of a 1x1 tile (as computed in getBaseTileSize).\n * @return Position of the tile as a CSS calc() expression.\n */\n getTilePosition(baseSize: string, offset: number): string {\n // The position comes the size of a 1x1 tile plus gutter for each previous tile in the\n // row/column (offset).\n return offset === 0 ? '0' : calc(`(${baseSize} + ${this._gutterSize}) * ${offset}`);\n }\n\n /**\n * Gets the actual size of a tile, e.g., width or height, taking rowspan or colspan into account.\n * @param baseSize Base size of a 1x1 tile (as computed in getBaseTileSize).\n * @param span The tile's rowspan or colspan.\n * @return Size of the tile as a CSS calc() expression.\n */\n getTileSize(baseSize: string, span: number): string {\n return `(${baseSize} * ${span}) + (${span - 1} * ${this._gutterSize})`;\n }\n\n /**\n * Sets the style properties to be applied to a tile for the given row and column index.\n * @param tile Tile to which to apply the styling.\n * @param rowIndex Index of the tile's row.\n * @param colIndex Index of the tile's column.\n */\n setStyle(tile: MatGridTile, rowIndex: number, colIndex: number): void {\n // Percent of the available horizontal space that one column takes up.\n let percentWidthPerTile = 100 / this._cols;\n\n // Fraction of the vertical gutter size that each column takes up.\n // For example, if there are 5 columns, each column uses 4/5 = 0.8 times the gutter width.\n let gutterWidthFractionPerTile = (this._cols - 1) / this._cols;\n\n this.setColStyles(tile, colIndex, percentWidthPerTile, gutterWidthFractionPerTile);\n this.setRowStyles(tile, rowIndex, percentWidthPerTile, gutterWidthFractionPerTile);\n }\n\n /** Sets the horizontal placement of the tile in the list. */\n setColStyles(tile: MatGridTile, colIndex: number, percentWidth: number, gutterWidth: number) {\n // Base horizontal size of a column.\n let baseTileWidth = this.getBaseTileSize(percentWidth, gutterWidth);\n\n // The width and horizontal position of each tile is always calculated the same way, but the\n // height and vertical position depends on the rowMode.\n let side = this._direction === 'rtl' ? 'right' : 'left';\n tile._setStyle(side, this.getTilePosition(baseTileWidth, colIndex));\n tile._setStyle('width', calc(this.getTileSize(baseTileWidth, tile.colspan)));\n }\n\n /**\n * Calculates the total size taken up by gutters across one axis of a list.\n */\n getGutterSpan(): string {\n return `${this._gutterSize} * (${this._rowspan} - 1)`;\n }\n\n /**\n * Calculates the total size taken up by tiles across one axis of a list.\n * @param tileHeight Height of the tile.\n */\n getTileSpan(tileHeight: string): string {\n return `${this._rowspan} * ${this.getTileSize(tileHeight, 1)}`;\n }\n\n /**\n * Sets the vertical placement of the tile in the list.\n * This method will be implemented by each type of TileStyler.\n * @docs-private\n */\n abstract setRowStyles(\n tile: MatGridTile,\n rowIndex: number,\n percentWidth: number,\n gutterWidth: number,\n ): void;\n\n /**\n * Calculates the computed height and returns the correct style property to set.\n * This method can be implemented by each type of TileStyler.\n * @docs-private\n */\n getComputedHeight(): [string, string] | null {\n return null;\n }\n\n /**\n * Called when the tile styler is swapped out with a different one. To be used for cleanup.\n * @param list Grid list that the styler was attached to.\n * @docs-private\n */\n abstract reset(list: TileStyleTarget): void;\n}\n\n/**\n * This type of styler is instantiated when the user passes in a fixed row height.\n * Example `<mat-grid-list cols=\"3\" rowHeight=\"100px\">`\n * @docs-private\n */\nexport class FixedTileStyler extends TileStyler {\n constructor(public fixedRowHeight: string) {\n super();\n }\n\n override init(gutterSize: string, tracker: TileCoordinator, cols: number, direction: string) {\n super.init(gutterSize, tracker, cols, direction);\n this.fixedRowHeight = normalizeUnits(this.fixedRowHeight);\n\n if (\n !cssCalcAllowedValue.test(this.fixedRowHeight) &&\n (typeof ngDevMode === 'undefined' || ngDevMode)\n ) {\n throw Error(`Invalid value \"${this.fixedRowHeight}\" set as rowHeight.`);\n }\n }\n\n override setRowStyles(tile: MatGridTile, rowIndex: number): void {\n tile._setStyle('top', this.getTilePosition(this.fixedRowHeight, rowIndex));\n tile._setStyle('height', calc(this.getTileSize(this.fixedRowHeight, tile.rowspan)));\n }\n\n override getComputedHeight(): [string, string] {\n return ['height', calc(`${this.getTileSpan(this.fixedRowHeight)} + ${this.getGutterSpan()}`)];\n }\n\n override reset(list: TileStyleTarget) {\n list._setListStyle(['height', null]);\n\n if (list._tiles) {\n list._tiles.forEach(tile => {\n tile._setStyle('top', null);\n tile._setStyle('height', null);\n });\n }\n }\n}\n\n/**\n * This type of styler is instantiated when the user passes in a width:height ratio\n * for the row height. Example `<mat-grid-list cols=\"3\" rowHeight=\"3:1\">`\n * @docs-private\n */\nexport class RatioTileStyler extends TileStyler {\n /** Ratio width:height given by user to determine row height. */\n rowHeightRatio: number;\n baseTileHeight: string;\n\n constructor(value: string) {\n super();\n this._parseRatio(value);\n }\n\n setRowStyles(\n tile: MatGridTile,\n rowIndex: number,\n percentWidth: number,\n gutterWidth: number,\n ): void {\n let percentHeightPerTile = percentWidth / this.rowHeightRatio;\n this.baseTileHeight = this.getBaseTileSize(percentHeightPerTile, gutterWidth);\n\n // Use padding-top and margin-top to maintain the given aspect ratio, as\n // a percentage-based value for these properties is applied versus the *width* of the\n // containing block. See http://www.w3.org/TR/CSS2/box.html#margin-properties\n tile._setStyle('marginTop', this.getTilePosition(this.baseTileHeight, rowIndex));\n tile._setStyle('paddingTop', calc(this.getTileSize(this.baseTileHeight, tile.rowspan)));\n }\n\n override getComputedHeight(): [string, string] {\n return [\n 'paddingBottom',\n calc(`${this.getTileSpan(this.baseTileHeight)} + ${this.getGutterSpan()}`),\n ];\n }\n\n reset(list: TileStyleTarget) {\n list._setListStyle(['paddingBottom', null]);\n\n list._tiles.forEach(tile => {\n tile._setStyle('marginTop', null);\n tile._setStyle('paddingTop', null);\n });\n }\n\n private _parseRatio(value: string): void {\n const ratioParts = value.split(':');\n\n if (ratioParts.length !== 2 && (typeof ngDevMode === 'undefined' || ngDevMode)) {\n throw Error(`mat-grid-list: invalid ratio given for row-height: \"${value}\"`);\n }\n\n this.rowHeightRatio = parseFloat(ratioParts[0]) / parseFloat(ratioParts[1]);\n }\n}\n\n/**\n * This type of styler is instantiated when the user selects a \"fit\" row height mode.\n * In other words, the row height will reflect the total height of the container divided\n * by the number of rows. Example `<mat-grid-list cols=\"3\" rowHeight=\"fit\">`\n *\n * @docs-private\n */\nexport class FitTileStyler extends TileStyler {\n setRowStyles(tile: MatGridTile, rowIndex: number): void {\n // Percent of the available vertical space that one row takes up.\n let percentHeightPerTile = 100 / this._rowspan;\n\n // Fraction of the horizontal gutter size that each column takes up.\n let gutterHeightPerTile = (this._rows - 1) / this._rows;\n\n // Base vertical size of a column.\n let baseTileHeight = this.getBaseTileSize(percentHeightPerTile, gutterHeightPerTile);\n\n tile._setStyle('top', this.getTilePosition(baseTileHeight, rowIndex));\n tile._setStyle('height', calc(this.getTileSize(baseTileHeight, tile.rowspan)));\n }\n\n reset(list: TileStyleTarget) {\n if (list._tiles) {\n list._tiles.forEach(tile => {\n tile._setStyle('top', null);\n tile._setStyle('height', null);\n });\n }\n }\n}\n\n/** Wraps a CSS string in a calc function */\nfunction calc(exp: string): string {\n return `calc(${exp})`;\n}\n\n/** Appends pixels to a CSS string if no units are given. */\nfunction normalizeUnits(value: string): string {\n return value.match(/([A-Za-z%]+)$/) ? value : `${value}px`;\n}\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {\n Component,\n ViewEncapsulation,\n AfterContentChecked,\n OnInit,\n Input,\n ContentChildren,\n QueryList,\n ElementRef,\n ChangeDetectionStrategy,\n inject,\n} from '@angular/core';\nimport {MatGridTile} from './grid-tile';\nimport {TileCoordinator} from './tile-coordinator';\nimport {\n TileStyler,\n FitTileStyler,\n RatioTileStyler,\n FixedTileStyler,\n TileStyleTarget,\n} from './tile-styler';\nimport {Directionality} from '@angular/cdk/bidi';\nimport {coerceNumberProperty, NumberInput} from '@angular/cdk/coercion';\nimport {MAT_GRID_LIST, MatGridListBase} from './grid-list-base';\n\n// TODO(kara): Conditional (responsive) column count / row size.\n// TODO(kara): Re-layout on window resize / media change (debounced).\n// TODO(kara): gridTileHeader and gridTileFooter.\n\nconst MAT_FIT_MODE = 'fit';\n\n@Component({\n selector: 'mat-grid-list',\n exportAs: 'matGridList',\n templateUrl: 'grid-list.html',\n styleUrl: 'grid-list.css',\n host: {\n 'class': 'mat-grid-list',\n // Ensures that the \"cols\" input value is reflected in the DOM. This is\n // needed for the grid-list harness.\n '[attr.cols]': 'cols',\n },\n providers: [\n {\n provide: MAT_GRID_LIST,\n useExisting: MatGridList,\n },\n ],\n changeDetection: ChangeDetectionStrategy.OnPush,\n encapsulation: ViewEncapsulation.None,\n})\nexport class MatGridList implements MatGridListBase, OnInit, AfterContentChecked, TileStyleTarget {\n private _element = inject<ElementRef<HTMLElement>>(ElementRef);\n private _dir = inject(Directionality, {optional: true});\n\n /** Number of columns being rendered. */\n private _cols: number;\n\n /** Used for determining the position of each tile in the grid. */\n private _tileCoordinator: TileCoordinator;\n\n /**\n * Row height value passed in by user. This can be one of three types:\n * - Number value (ex: \"100px\"): sets a fixed row height to that value\n * - Ratio value (ex: \"4:3\"): sets the row height based on width:height ratio\n * - \"Fit\" mode (ex: \"fit\"): sets the row height to total height divided by number of rows\n */\n private _rowHeight: string;\n\n /** The amount of space between tiles. This will be something like '5px' or '2em'. */\n private _gutter: string = '1px';\n\n /** Sets position and size styles for a tile */\n private _tileStyler: TileStyler;\n\n /** Query list of tiles that are being rendered. */\n @ContentChildren(MatGridTile, {descendants: true}) _tiles: QueryList<MatGridTile>;\n\n constructor(...args: unknown[]);\n constructor() {}\n\n /** Amount of columns in the grid list. */\n @Input()\n get cols(): number {\n return this._cols;\n }\n set cols(value: NumberInput) {\n this._cols = Math.max(1, Math.round(coerceNumberProperty(value)));\n }\n\n /** Size of the grid list's gutter in pixels. */\n @Input()\n get gutterSize(): string {\n return this._gutter;\n }\n set gutterSize(value: string) {\n this._gutter = `${value == null ? '' : value}`;\n }\n\n /** Set internal representation of row height from the user-provided value. */\n @Input()\n get rowHeight(): string | number {\n return this._rowHeight;\n }\n set rowHeight(value: string | number) {\n const newValue = `${value == null ? '' : value}`;\n\n if (newValue !== this._rowHeight) {\n this._rowHeight = newValue;\n this._setTileStyler(this._rowHeight);\n }\n }\n\n ngOnInit() {\n this._checkCols();\n this._checkRowHeight();\n }\n\n /**\n * The layout calculation is fairly cheap if nothing changes, so there's little cost\n * to run it frequently.\n */\n ngAfterContentChecked() {\n this._layoutTiles();\n }\n\n /** Throw a friendly error if cols property is missing */\n private _checkCols() {\n if (!this.cols && (typeof ngDevMode === 'undefined' || ngDevMode)) {\n throw Error(\n `mat-grid-list: must pass in number of columns. ` + `Example: <mat-grid-list cols=\"3\">`,\n );\n }\n }\n\n /** Default to equal width:height if rowHeight property is missing */\n private _checkRowHeight(): void {\n if (!this._rowHeight) {\n this._setTileStyler('1:1');\n }\n }\n\n /** Creates correct Tile Styler subtype based on rowHeight passed in by user */\n private _setTileStyler(rowHeight: string): void {\n if (this._tileStyler) {\n this._tileStyler.reset(this);\n }\n\n if (rowHeight === MAT_FIT_MODE) {\n this._tileStyler = new FitTileStyler();\n } else if (rowHeight && rowHeight.indexOf(':') > -1) {\n this._tileStyler = new RatioTileStyler(rowHeight);\n } else {\n this._tileStyler = new FixedTileStyler(rowHeight);\n }\n }\n\n /** Computes and applies the size and position for all children grid tiles. */\n private _layoutTiles(): void {\n if (!this._tileCoordinator) {\n this._tileCoordinator = new TileCoordinator();\n }\n\n const tracker = this._tileCoordinator;\n const tiles = this._tiles.filter(tile => !tile._gridList || tile._gridList === this);\n const direction = this._dir ? this._dir.value : 'ltr';\n\n this._tileCoordinator.update(this.cols, tiles);\n this._tileStyler.init(this.gutterSize, tracker, this.cols, direction);\n\n tiles.forEach((tile, index) => {\n const pos = tracker.positions[index];\n this._tileStyler.setStyle(tile, pos.row, pos.col);\n });\n\n this._setListStyle(this._tileStyler.getComputedHeight());\n }\n\n /** Sets style on the main grid-list element, given the style name and value. */\n _setListStyle(style: [string, string | null] | null): void {\n if (style) {\n (this._element.nativeElement.style as any)[style[0]] = style[1];\n }\n }\n}\n","<div>\n <ng-content></ng-content>\n</div>","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {BidiModule} from '@angular/cdk/bidi';\nimport {NgModule} from '@angular/core';\nimport {MatLineModule} from '../core';\nimport {MatGridList} from './grid-list';\nimport {\n MatGridAvatarCssMatStyler,\n MatGridTile,\n MatGridTileFooterCssMatStyler,\n MatGridTileHeaderCssMatStyler,\n MatGridTileText,\n} from './grid-tile';\n\n// Export required to fix compiler confusion about import module paths\nexport {MatLine} from '../core';\n\n@NgModule({\n imports: [\n MatLineModule,\n MatGridList,\n MatGridTile,\n MatGridTileText,\n MatGridTileHeaderCssMatStyler,\n MatGridTileFooterCssMatStyler,\n MatGridAvatarCssMatStyler,\n ],\n exports: [\n BidiModule,\n MatGridList,\n MatGridTile,\n MatGridTileText,\n MatLineModule,\n MatGridTileHeaderCssMatStyler,\n MatGridTileFooterCssMatStyler,\n MatGridAvatarCssMatStyler,\n ],\n})\nexport class MatGridListModule {}\n"],"names":["MAT_GRID_LIST","InjectionToken","MatGridTile","_element","inject","ElementRef","_gridList","optional","_rowspan","_colspan","constructor","rowspan","value","Math","round","coerceNumberProperty","colspan","_setStyle","property","nativeElement","style","deps","target","i0","ɵɵFactoryTarget","Component","ɵcmp","ɵɵngDeclareComponent","minVersion","version","type","styles","changeDetection","ChangeDetectionStrategy","OnPush","encapsulation","ViewEncapsulation","None","decorators","exportAs","host","template","Input","MatGridTileText","_lines","ngAfterContentInit","setLines","isStandalone","selector","queries","propertyName","predicate","MatLine","descendants","ngImport","args","ContentChildren","MatGridAvatarCssMatStyler","Directive","classAttribute","MatGridTileHeaderCssMatStyler","MatGridTileFooterCssMatStyler","cssCalcAllowedValue","TileStyler","_gutterSize","_rows","_cols","_direction","init","gutterSize","tracker","cols","direction","normalizeUnits","rowCount","getBaseTileSize","sizePercent","gutterFraction","getTilePosition","baseSize","offset","calc","getTileSize","span","setStyle","tile","rowIndex","colIndex","percentWidthPerTile","gutterWidthFractionPerTile","setColStyles","setRowStyles","percentWidth","gutterWidth","baseTileWidth","side","getGutterSpan","getTileSpan","tileHeight","getComputedHeight","FixedTileStyler","fixedRowHeight","test","ngDevMode","Error","reset","list","_setListStyle","_tiles","forEach","RatioTileStyler","rowHeightRatio","baseTileHeight","_parseRatio","percentHeightPerTile","ratioParts","split","length","parseFloat","FitTileStyler","gutterHeightPerTile","exp","match","MAT_FIT_MODE","MatGridList","_dir","Directionality","_tileCoordinator","_rowHeight","_gutter","_tileStyler","max","rowHeight","newValue","_setTileStyler","ngOnInit","_checkCols","_checkRowHeight","ngAfterContentChecked","_layoutTiles","indexOf","TileCoordinator","tiles","filter","update","index","pos","positions","row","col","inputs","properties","providers","provide","useExisting","MatGridListModule","NgModule","ɵmod","ɵɵngDeclareNgModule","MatLineModule","BidiModule","imports","exports"],"mappings":"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"}