Last change
on this file since 8d391a1 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
1.2 KB
|
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 { Optional } from '@angular/core';
|
---|
| 9 | import { Subject } from 'rxjs';
|
---|
| 10 | /** Stepper data that is required for internationalization. */
|
---|
| 11 | export declare class MatStepperIntl {
|
---|
| 12 | /**
|
---|
| 13 | * Stream that emits whenever the labels here are changed. Use this to notify
|
---|
| 14 | * components if the labels have changed after initialization.
|
---|
| 15 | */
|
---|
| 16 | readonly changes: Subject<void>;
|
---|
| 17 | /** Label that is rendered below optional steps. */
|
---|
| 18 | optionalLabel: string;
|
---|
| 19 | /** Label that is used to indicate step as completed to screen readers. */
|
---|
| 20 | completedLabel: string;
|
---|
| 21 | /** Label that is used to indicate step as editable to screen readers. */
|
---|
| 22 | editableLabel: string;
|
---|
| 23 | }
|
---|
| 24 | /** @docs-private */
|
---|
| 25 | export declare function MAT_STEPPER_INTL_PROVIDER_FACTORY(parentIntl: MatStepperIntl): MatStepperIntl;
|
---|
| 26 | /** @docs-private */
|
---|
| 27 | export declare const MAT_STEPPER_INTL_PROVIDER: {
|
---|
| 28 | provide: typeof MatStepperIntl;
|
---|
| 29 | deps: Optional[][];
|
---|
| 30 | useFactory: typeof MAT_STEPPER_INTL_PROVIDER_FACTORY;
|
---|
| 31 | };
|
---|
Note:
See
TracBrowser
for help on using the repository browser.