Last change
on this file was 6fe77af, checked in by Ema <ema_spirova@…>, 3 years ago |
add location feature
|
-
Property mode
set to
100644
|
File size:
1.2 KB
|
Line | |
---|
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 { TemplateRef } from '@angular/core';
|
---|
9 | import { StepState } from '@angular/cdk/stepper';
|
---|
10 | /** Template context available to an attached `matStepperIcon`. */
|
---|
11 | import * as ɵngcc0 from '@angular/core';
|
---|
12 | export interface MatStepperIconContext {
|
---|
13 | /** Index of the step. */
|
---|
14 | index: number;
|
---|
15 | /** Whether the step is currently active. */
|
---|
16 | active: boolean;
|
---|
17 | /** Whether the step is optional. */
|
---|
18 | optional: boolean;
|
---|
19 | }
|
---|
20 | /**
|
---|
21 | * Template to be used to override the icons inside the step header.
|
---|
22 | */
|
---|
23 | export declare class MatStepperIcon {
|
---|
24 | templateRef: TemplateRef<MatStepperIconContext>;
|
---|
25 | /** Name of the icon to be overridden. */
|
---|
26 | name: StepState;
|
---|
27 | constructor(templateRef: TemplateRef<MatStepperIconContext>);
|
---|
28 | static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<MatStepperIcon, never>;
|
---|
29 | static ɵdir: ɵngcc0.ɵɵDirectiveDeclaration<MatStepperIcon, "ng-template[matStepperIcon]", never, { "name": "matStepperIcon"; }, {}, never>;
|
---|
30 | }
|
---|
31 |
|
---|
32 | //# sourceMappingURL=stepper-icon.d.ts.map |
---|
Note:
See
TracBrowser
for help on using the repository browser.