{"version":3,"file":"grid-list.js","sources":["../../packages/material/grid-list/grid-list-measure.js","../../packages/material/grid-list/grid-tile.js","../../packages/material/grid-list/tile-coordinator.js","../../packages/material/grid-list/tile-styler.js","../../packages/material/grid-list/grid-list.js","../../packages/material/grid-list/grid-list-module.js","../../packages/material/grid-list/index.js"],"sourcesContent":["/**\n * Converts values into strings. Falsy values become empty strings.\n * \\@docs-private\n * @param {?} value\n * @return {?}\n */\nexport function coerceToString(value) {\n return `${value || ''}`;\n}\n/**\n * Converts a value that might be a string into a number.\n * \\@docs-private\n * @param {?} value\n * @return {?}\n */\nexport function coerceToNumber(value) {\n return typeof value === 'string' ? parseInt(value, 10) : value;\n}\n//# sourceMappingURL=grid-list-measure.js.map","/**\n * @license\n * Copyright Google Inc. 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.io/license\n */\nimport { Component, ViewEncapsulation, Renderer2, ElementRef, Input, ContentChildren, Directive, ChangeDetectionStrategy, } from '@angular/core';\nimport { MatLine, MatLineSetter } from '@angular/material/core';\nimport { coerceToNumber } from './grid-list-measure';\nexport class MatGridTile {\n /**\n * @param {?} _renderer\n * @param {?} _element\n */\n constructor(_renderer, _element) {\n this._renderer = _renderer;\n this._element = _element;\n this._rowspan = 1;\n this._colspan = 1;\n }\n /**\n * Amount of rows that the grid tile takes up.\n * @return {?}\n */\n get rowspan() { return this._rowspan; }\n /**\n * @param {?} value\n * @return {?}\n */\n set rowspan(value) { this._rowspan = coerceToNumber(value); }\n /**\n * Amount of columns that the grid tile takes up.\n * @return {?}\n */\n get colspan() { return this._colspan; }\n /**\n * @param {?} value\n * @return {?}\n */\n set colspan(value) { this._colspan = coerceToNumber(value); }\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 * @param {?} property\n * @param {?} value\n * @return {?}\n */\n _setStyle(property, value) {\n this._renderer.setStyle(this._element.nativeElement, property, value);\n }\n}\nMatGridTile.decorators = [\n { type: Component, args: [{selector: 'mat-grid-tile',\n exportAs: 'matGridTile',\n host: {\n 'class': 'mat-grid-tile',\n },\n template: \"