1 | /**
|
---|
2 | * @license
|
---|
3 | * Copyright Google LLC All Rights Reserved.
|
---|
4 | *
|
---|
5 | * Use of this source code is governed by an MIT-style license that can be
|
---|
6 | * found in the LICENSE file at https://angular.io/license
|
---|
7 | */
|
---|
8 | import { ElementRef, QueryList, AfterContentInit } from '@angular/core';
|
---|
9 | import { MatLine } from '@angular/material/core';
|
---|
10 | import { NumberInput } from '@angular/cdk/coercion';
|
---|
11 | import { MatGridListBase } from './grid-list-base';
|
---|
12 | import * as ɵngcc0 from '@angular/core';
|
---|
13 | export declare class MatGridTile {
|
---|
14 | private _element;
|
---|
15 | _gridList?: MatGridListBase | undefined;
|
---|
16 | _rowspan: number;
|
---|
17 | _colspan: number;
|
---|
18 | constructor(_element: ElementRef<HTMLElement>, _gridList?: MatGridListBase | undefined);
|
---|
19 | /** Amount of rows that the grid tile takes up. */
|
---|
20 | get rowspan(): number;
|
---|
21 | set rowspan(value: number);
|
---|
22 | /** Amount of columns that the grid tile takes up. */
|
---|
23 | get colspan(): number;
|
---|
24 | set colspan(value: number);
|
---|
25 | /**
|
---|
26 | * Sets the style of the grid-tile element. Needs to be set manually to avoid
|
---|
27 | * "Changed after checked" errors that would occur with HostBinding.
|
---|
28 | */
|
---|
29 | _setStyle(property: string, value: any): void;
|
---|
30 | static ngAcceptInputType_rowspan: NumberInput;
|
---|
31 | static ngAcceptInputType_colspan: NumberInput;
|
---|
32 | static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<MatGridTile, [null, { optional: true; }]>;
|
---|
33 | static ɵcmp: ɵngcc0.ɵɵComponentDeclaration<MatGridTile, "mat-grid-tile", ["matGridTile"], { "rowspan": "rowspan"; "colspan": "colspan"; }, {}, never, ["*"]>;
|
---|
34 | }
|
---|
35 | export declare class MatGridTileText implements AfterContentInit {
|
---|
36 | private _element;
|
---|
37 | _lines: QueryList<MatLine>;
|
---|
38 | constructor(_element: ElementRef<HTMLElement>);
|
---|
39 | ngAfterContentInit(): void;
|
---|
40 | static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<MatGridTileText, never>;
|
---|
41 | static ɵcmp: ɵngcc0.ɵɵComponentDeclaration<MatGridTileText, "mat-grid-tile-header, mat-grid-tile-footer", never, {}, {}, ["_lines"], ["[mat-grid-avatar], [matGridAvatar]", "[mat-line], [matLine]", "*"]>;
|
---|
42 | }
|
---|
43 | /**
|
---|
44 | * Directive whose purpose is to add the mat- CSS styling to this selector.
|
---|
45 | * @docs-private
|
---|
46 | */
|
---|
47 | export declare class MatGridAvatarCssMatStyler {
|
---|
48 | static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<MatGridAvatarCssMatStyler, never>;
|
---|
49 | static ɵdir: ɵngcc0.ɵɵDirectiveDeclaration<MatGridAvatarCssMatStyler, "[mat-grid-avatar], [matGridAvatar]", never, {}, {}, never>;
|
---|
50 | }
|
---|
51 | /**
|
---|
52 | * Directive whose purpose is to add the mat- CSS styling to this selector.
|
---|
53 | * @docs-private
|
---|
54 | */
|
---|
55 | export declare class MatGridTileHeaderCssMatStyler {
|
---|
56 | static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<MatGridTileHeaderCssMatStyler, never>;
|
---|
57 | static ɵdir: ɵngcc0.ɵɵDirectiveDeclaration<MatGridTileHeaderCssMatStyler, "mat-grid-tile-header", never, {}, {}, never>;
|
---|
58 | }
|
---|
59 | /**
|
---|
60 | * Directive whose purpose is to add the mat- CSS styling to this selector.
|
---|
61 | * @docs-private
|
---|
62 | */
|
---|
63 | export declare class MatGridTileFooterCssMatStyler {
|
---|
64 | static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<MatGridTileFooterCssMatStyler, never>;
|
---|
65 | static ɵdir: ɵngcc0.ɵɵDirectiveDeclaration<MatGridTileFooterCssMatStyler, "mat-grid-tile-footer", never, {}, {}, never>;
|
---|
66 | }
|
---|
67 |
|
---|
68 | //# sourceMappingURL=grid-tile.d.ts.map |
---|