webdash-readme-preview
Version:
Preview your README.md straight from the dashboard
54 lines (50 loc) • 2.1 kB
TypeScript
/**
* DO NOT EDIT
*
* This file was automatically generated by
* https://github.com/Polymer/gen-typescript-declarations
*
* To modify these typings, edit the source file(s):
* paper-spinner.html
*/
/// <reference path="../polymer/types/polymer.d.ts" />
/// <reference path="../paper-styles/color.d.ts" />
/// <reference path="paper-spinner-behavior.d.ts" />
/// <reference path="paper-spinner-styles.d.ts" />
/**
* Material design: [Progress & activity](https://www.google.com/design/spec/components/progress-activity.html)
*
* Element providing a multiple color material design circular spinner.
*
* <paper-spinner active></paper-spinner>
*
* The default spinner cycles between four layers of colors; by default they are
* blue, red, yellow and green. It can be customized to cycle between four different
* colors. Use <paper-spinner-lite> for single color spinners.
*
* ### Accessibility
*
* Alt attribute should be set to provide adequate context for accessibility. If not provided,
* it defaults to 'loading'.
* Empty alt can be provided to mark the element as decorative if alternative content is provided
* in another form (e.g. a text block following the spinner).
*
* <paper-spinner alt="Loading contacts list" active></paper-spinner>
*
* ### Styling
*
* The following custom properties and mixins are available for styling:
*
* Custom property | Description | Default
* ----------------|-------------|----------
* `--paper-spinner-layer-1-color` | Color of the first spinner rotation | `--google-blue-500`
* `--paper-spinner-layer-2-color` | Color of the second spinner rotation | `--google-red-500`
* `--paper-spinner-layer-3-color` | Color of the third spinner rotation | `--google-yellow-500`
* `--paper-spinner-layer-4-color` | Color of the fourth spinner rotation | `--google-green-500`
* `--paper-spinner-stroke-width` | The width of the spinner stroke | 3px
*/
interface PaperSpinnerElement extends Polymer.Element, Polymer.PaperSpinnerBehavior {
}
interface HTMLElementTagNameMap {
"paper-spinner": PaperSpinnerElement;
}