| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- /**
- * @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 { Platform } from '@angular/cdk/platform';
- import { ElementRef, InjectionToken } from '@angular/core';
- import { CanColor, CanColorCtor } from '@angular/material/core';
- /** Possible mode for a progress spinner. */
- export declare type ProgressSpinnerMode = 'determinate' | 'indeterminate';
- /** @docs-private */
- declare class MatProgressSpinnerBase {
- _elementRef: ElementRef;
- constructor(_elementRef: ElementRef);
- }
- declare const _MatProgressSpinnerMixinBase: CanColorCtor & typeof MatProgressSpinnerBase;
- /** Default `mat-progress-spinner` options that can be overridden. */
- export interface MatProgressSpinnerDefaultOptions {
- /** Diameter of the spinner. */
- diameter?: number;
- /** Width of the spinner's stroke. */
- strokeWidth?: number;
- /**
- * Whether the animations should be force to be enabled, ignoring if the current environment is
- * using NoopAnimationsModule.
- */
- _forceAnimations?: boolean;
- }
- /** Injection token to be used to override the default options for `mat-progress-spinner`. */
- export declare const MAT_PROGRESS_SPINNER_DEFAULT_OPTIONS: InjectionToken<MatProgressSpinnerDefaultOptions>;
- /** @docs-private */
- export declare function MAT_PROGRESS_SPINNER_DEFAULT_OPTIONS_FACTORY(): MatProgressSpinnerDefaultOptions;
- /**
- * `<mat-progress-spinner>` component.
- */
- export declare class MatProgressSpinner extends _MatProgressSpinnerMixinBase implements CanColor {
- _elementRef: ElementRef<HTMLElement>;
- private _document;
- private _diameter;
- private _value;
- private _strokeWidth;
- private _fallbackAnimation;
- /**
- * Element to which we should add the generated style tags for the indeterminate animation.
- * For most elements this is the document, but for the ones in the Shadow DOM we need to
- * use the shadow root.
- */
- private _styleRoot;
- /**
- * Tracks diameters of existing instances to de-dupe generated styles (default d = 100).
- * We need to keep track of which elements the diameters were attached to, because for
- * elements in the Shadow DOM the style tags are attached to the shadow root, rather
- * than the document head.
- */
- private static _diameters;
- /** Whether the _mat-animation-noopable class should be applied, disabling animations. */
- _noopAnimations: boolean;
- /** The diameter of the progress spinner (will set width and height of svg). */
- diameter: number;
- /** Stroke width of the progress spinner. */
- strokeWidth: number;
- /** Mode of the progress circle */
- mode: ProgressSpinnerMode;
- /** Value of the progress circle. */
- value: number;
- constructor(_elementRef: ElementRef<HTMLElement>, platform: Platform, _document: any, animationMode: string, defaults?: MatProgressSpinnerDefaultOptions);
- /** The radius of the spinner, adjusted for stroke width. */
- readonly _circleRadius: number;
- /** The view box of the spinner's svg element. */
- readonly _viewBox: string;
- /** The stroke circumference of the svg circle. */
- readonly _strokeCircumference: number;
- /** The dash offset of the svg circle. */
- readonly _strokeDashOffset: number | null;
- /** Stroke width of the circle in percent. */
- readonly _circleStrokeWidth: number;
- /** Dynamically generates a style tag containing the correct animation for this diameter. */
- private _attachStyleNode;
- /** Generates animation styles adjusted for the spinner's diameter. */
- private _getAnimationText;
- }
- /**
- * `<mat-spinner>` component.
- *
- * This is a component definition to be used as a convenience reference to create an
- * indeterminate `<mat-progress-spinner>` instance.
- */
- export declare class MatSpinner extends MatProgressSpinner {
- constructor(elementRef: ElementRef<HTMLElement>, platform: Platform, document: any, animationMode: string, defaults?: MatProgressSpinnerDefaultOptions);
- }
- /** Gets the shadow root of an element, if supported and the element is inside the Shadow DOM. */
- export declare function _getShadowRoot(element: HTMLElement, _document: Document): Node | null;
- export {};
|