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.3 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. */
|
---|
[6fe77af] | 11 | import * as ɵngcc0 from '@angular/core';
|
---|
[6a3a178] | 12 | export declare class MatStepperIntl {
|
---|
| 13 | /**
|
---|
| 14 | * Stream that emits whenever the labels here are changed. Use this to notify
|
---|
| 15 | * components if the labels have changed after initialization.
|
---|
| 16 | */
|
---|
| 17 | readonly changes: Subject<void>;
|
---|
| 18 | /** Label that is rendered below optional steps. */
|
---|
| 19 | optionalLabel: string;
|
---|
| 20 | /** Label that is used to indicate step as completed to screen readers. */
|
---|
| 21 | completedLabel: string;
|
---|
| 22 | /** Label that is used to indicate step as editable to screen readers. */
|
---|
| 23 | editableLabel: string;
|
---|
[6fe77af] | 24 | static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<MatStepperIntl, never>;
|
---|
[6a3a178] | 25 | }
|
---|
| 26 | /** @docs-private */
|
---|
| 27 | export declare function MAT_STEPPER_INTL_PROVIDER_FACTORY(parentIntl: MatStepperIntl): MatStepperIntl;
|
---|
| 28 | /** @docs-private */
|
---|
| 29 | export declare const MAT_STEPPER_INTL_PROVIDER: {
|
---|
| 30 | provide: typeof MatStepperIntl;
|
---|
| 31 | deps: Optional[][];
|
---|
| 32 | useFactory: typeof MAT_STEPPER_INTL_PROVIDER_FACTORY;
|
---|
| 33 | };
|
---|
[6fe77af] | 34 |
|
---|
| 35 | //# sourceMappingURL=stepper-intl.d.ts.map |
---|
Note:
See
TracBrowser
for help on using the repository browser.