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.5 KB
|
Line | |
---|
1 | {"version":3,"file":"stepper-intl.d.ts","sources":["stepper-intl.d.ts"],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA","sourcesContent":["/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\nimport { Optional } from '@angular/core';\nimport { Subject } from 'rxjs';\n/** Stepper data that is required for internationalization. */\nexport declare class MatStepperIntl {\n /**\n * Stream that emits whenever the labels here are changed. Use this to notify\n * components if the labels have changed after initialization.\n */\n readonly changes: Subject<void>;\n /** Label that is rendered below optional steps. */\n optionalLabel: string;\n /** Label that is used to indicate step as completed to screen readers. */\n completedLabel: string;\n /** Label that is used to indicate step as editable to screen readers. */\n editableLabel: string;\n}\n/** @docs-private */\nexport declare function MAT_STEPPER_INTL_PROVIDER_FACTORY(parentIntl: MatStepperIntl): MatStepperIntl;\n/** @docs-private */\nexport declare const MAT_STEPPER_INTL_PROVIDER: {\n provide: typeof MatStepperIntl;\n deps: Optional[][];\n useFactory: typeof MAT_STEPPER_INTL_PROVIDER_FACTORY;\n};\n"]} |
---|
Note:
See
TracBrowser
for help on using the repository browser.