{"version":3,"file":"grid-list.es5.js","sources":["../../packages/material/esm5/grid-list/grid-list-measure.js","../../packages/material/esm5/grid-list/grid-tile.js","../../packages/material/esm5/grid-list/tile-coordinator.js","../../packages/material/esm5/grid-list/tile-styler.js","../../packages/material/esm5/grid-list/grid-list.js","../../packages/material/esm5/grid-list/grid-list-module.js","../../packages/material/esm5/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';\nvar MatGridTile = (function () {\n /**\n * @param {?} _renderer\n * @param {?} _element\n */\n function MatGridTile(_renderer, _element) {\n this._renderer = _renderer;\n this._element = _element;\n this._rowspan = 1;\n this._colspan = 1;\n }\n Object.defineProperty(MatGridTile.prototype, \"rowspan\", {\n /**\n * Amount of rows that the grid tile takes up.\n * @return {?}\n */\n get: function () { return this._rowspan; },\n /**\n * @param {?} value\n * @return {?}\n */\n set: function (value) { this._rowspan = coerceToNumber(value); },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(MatGridTile.prototype, \"colspan\", {\n /**\n * Amount of columns that the grid tile takes up.\n * @return {?}\n */\n get: function () { return this._colspan; },\n /**\n * @param {?} value\n * @return {?}\n */\n set: function (value) { this._colspan = coerceToNumber(value); },\n enumerable: true,\n configurable: true\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 * @param {?} property\n * @param {?} value\n * @return {?}\n */\n MatGridTile.prototype._setStyle = function (property, value) {\n this._renderer.setStyle(this._element.nativeElement, property, value);\n };\n MatGridTile.decorators = [\n { type: Component, args: [{selector: 'mat-grid-tile',\n exportAs: 'matGridTile',\n host: {\n 'class': 'mat-grid-tile',\n },\n template: \"