Last change
on this file since 76712b2 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
893 bytes
|
Rev | Line | |
---|
[6a3a178] | 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 | export interface MatStepperIconContext {
|
---|
| 12 | /** Index of the step. */
|
---|
| 13 | index: number;
|
---|
| 14 | /** Whether the step is currently active. */
|
---|
| 15 | active: boolean;
|
---|
| 16 | /** Whether the step is optional. */
|
---|
| 17 | optional: boolean;
|
---|
| 18 | }
|
---|
| 19 | /**
|
---|
| 20 | * Template to be used to override the icons inside the step header.
|
---|
| 21 | */
|
---|
| 22 | export declare class MatStepperIcon {
|
---|
| 23 | templateRef: TemplateRef<MatStepperIconContext>;
|
---|
| 24 | /** Name of the icon to be overridden. */
|
---|
| 25 | name: StepState;
|
---|
| 26 | constructor(templateRef: TemplateRef<MatStepperIconContext>);
|
---|
| 27 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.