| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- import { _AbstractConstructor } from '@angular/material/core';
- import { AfterViewInit } from '@angular/core';
- import { CanColor } from '@angular/material/core';
- import { ChangeDetectorRef } from '@angular/core';
- import { _Constructor } from '@angular/material/core';
- import { ElementRef } from '@angular/core';
- import { EventEmitter } from '@angular/core';
- import * as i0 from '@angular/core';
- import * as i2 from '@angular/material/core';
- import { InjectionToken } from '@angular/core';
- import { NgZone } from '@angular/core';
- import { NumberInput } from '@angular/cdk/coercion';
- import { OnDestroy } from '@angular/core';
- import { ThemePalette } from '@angular/material/core';
- declare namespace i1 {
- export {
- MAT_PROGRESS_BAR_LOCATION_FACTORY,
- ProgressAnimationEnd,
- MatProgressBarDefaultOptions,
- MAT_PROGRESS_BAR_DEFAULT_OPTIONS,
- MAT_PROGRESS_BAR_LOCATION,
- MatProgressBarLocation,
- ProgressBarMode,
- MatProgressBar
- }
- }
- /** Injection token to be used to override the default options for `mat-progress-bar`. */
- export declare const MAT_PROGRESS_BAR_DEFAULT_OPTIONS: InjectionToken<MatProgressBarDefaultOptions>;
- /**
- * Injection token used to provide the current location to `MatProgressBar`.
- * Used to handle server-side rendering and to stub out during unit tests.
- * @docs-private
- */
- export declare const MAT_PROGRESS_BAR_LOCATION: InjectionToken<MatProgressBarLocation>;
- /** @docs-private */
- export declare function MAT_PROGRESS_BAR_LOCATION_FACTORY(): MatProgressBarLocation;
- export declare class MatProgressBar extends _MatProgressBarBase implements AfterViewInit, OnDestroy, CanColor {
- private _ngZone;
- private _changeDetectorRef;
- _animationMode?: string | undefined;
- constructor(elementRef: ElementRef<HTMLElement>, _ngZone: NgZone, _changeDetectorRef: ChangeDetectorRef, _animationMode?: string | undefined, defaults?: MatProgressBarDefaultOptions);
- /** Flag that indicates whether NoopAnimations mode is set to true. */
- _isNoopAnimation: boolean;
- /** Value of the progress bar. Defaults to zero. Mirrored to aria-valuenow. */
- get value(): number;
- set value(v: NumberInput);
- private _value;
- /** Buffer value of the progress bar. Defaults to zero. */
- get bufferValue(): number;
- set bufferValue(v: NumberInput);
- private _bufferValue;
- /**
- * Event emitted when animation of the primary progress bar completes. This event will not
- * be emitted when animations are disabled, nor will it be emitted for modes with continuous
- * animations (indeterminate and query).
- */
- readonly animationEnd: EventEmitter<ProgressAnimationEnd>;
- /**
- * Mode of the progress bar.
- *
- * Input must be one of these values: determinate, indeterminate, buffer, query, defaults to
- * 'determinate'.
- * Mirrored to mode attribute.
- */
- get mode(): ProgressBarMode;
- set mode(value: ProgressBarMode);
- private _mode;
- ngAfterViewInit(): void;
- ngOnDestroy(): void;
- /** Gets the transform style that should be applied to the primary bar. */
- _getPrimaryBarTransform(): string;
- /** Gets the `flex-basis` value that should be applied to the buffer bar. */
- _getBufferBarFlexBasis(): string;
- /** Returns whether the progress bar is indeterminate. */
- _isIndeterminate(): boolean;
- /** Event handler for `transitionend` events. */
- private _transitionendHandler;
- static ɵfac: i0.ɵɵFactoryDeclaration<MatProgressBar, [null, null, null, { optional: true; }, { optional: true; }]>;
- static ɵcmp: i0.ɵɵComponentDeclaration<MatProgressBar, "mat-progress-bar", ["matProgressBar"], { "color": { "alias": "color"; "required": false; }; "value": { "alias": "value"; "required": false; }; "bufferValue": { "alias": "bufferValue"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; }, { "animationEnd": "animationEnd"; }, never, never, false, never>;
- }
- /** @docs-private */
- declare const _MatProgressBarBase: _Constructor<CanColor> & _AbstractConstructor<CanColor> & {
- new (_elementRef: ElementRef<HTMLElement>): {
- _elementRef: ElementRef<HTMLElement>;
- };
- };
- /** Default `mat-progress-bar` options that can be overridden. */
- export declare interface MatProgressBarDefaultOptions {
- /** Default color of the progress bar. */
- color?: ThemePalette;
- /** Default mode of the progress bar. */
- mode?: ProgressBarMode;
- }
- /**
- * Stubbed out location for `MatProgressBar`.
- * @docs-private
- */
- export declare interface MatProgressBarLocation {
- getPathname: () => string;
- }
- export declare class MatProgressBarModule {
- static ɵfac: i0.ɵɵFactoryDeclaration<MatProgressBarModule, never>;
- static ɵmod: i0.ɵɵNgModuleDeclaration<MatProgressBarModule, [typeof i1.MatProgressBar], never, [typeof i1.MatProgressBar, typeof i2.MatCommonModule]>;
- static ɵinj: i0.ɵɵInjectorDeclaration<MatProgressBarModule>;
- }
- /** Last animation end data. */
- export declare interface ProgressAnimationEnd {
- value: number;
- }
- export declare type ProgressBarMode = 'determinate' | 'indeterminate' | 'buffer' | 'query';
- export { }
|