You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.3 KiB
35 lines
1.3 KiB
/**
|
|
* @license
|
|
* Copyright Google LLC All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.io/license
|
|
*/
|
|
import { Optional } from '@angular/core';
|
|
import { Subject } from 'rxjs';
|
|
/** Stepper data that is required for internationalization. */
|
|
import * as ɵngcc0 from '@angular/core';
|
|
export declare class MatStepperIntl {
|
|
/**
|
|
* Stream that emits whenever the labels here are changed. Use this to notify
|
|
* components if the labels have changed after initialization.
|
|
*/
|
|
readonly changes: Subject<void>;
|
|
/** Label that is rendered below optional steps. */
|
|
optionalLabel: string;
|
|
/** Label that is used to indicate step as completed to screen readers. */
|
|
completedLabel: string;
|
|
/** Label that is used to indicate step as editable to screen readers. */
|
|
editableLabel: string;
|
|
static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<MatStepperIntl, never>;
|
|
}
|
|
/** @docs-private */
|
|
export declare function MAT_STEPPER_INTL_PROVIDER_FACTORY(parentIntl: MatStepperIntl): MatStepperIntl;
|
|
/** @docs-private */
|
|
export declare const MAT_STEPPER_INTL_PROVIDER: {
|
|
provide: typeof MatStepperIntl;
|
|
deps: Optional[][];
|
|
useFactory: typeof MAT_STEPPER_INTL_PROVIDER_FACTORY;
|
|
};
|
|
|
|
//# sourceMappingURL=stepper-intl.d.ts.map
|