com.vaadin.polymer.paper.PaperSpinnerLiteElement Maven / Gradle / Ivy
/*
* This code was generated with Vaadin Web Component GWT API Generator,
* from paper-spinner project by The Polymer Authors
* that is licensed with http://polymer.github.io/LICENSE.txt license.
*/
package com.vaadin.polymer.paper;
import com.vaadin.polymer.elemental.*;
import com.google.gwt.core.client.JavaScriptObject;
import com.google.gwt.core.client.JsArray;
import jsinterop.annotations.JsOverlay;
import jsinterop.annotations.JsProperty;
import jsinterop.annotations.JsType;
/**
* Material design: Progress & activity
* Element providing a single color material design circular spinner.
* <paper-spinner-lite active></paper-spinner-lite>
*
*
*
The default spinner is blue. It can be customized to be a different color.
* 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-lite alt="Loading contacts list" active></paper-spinner-lite>
*
*
*
Styling
* The following custom properties and mixins are available for styling:
*
*
*
* Custom property
* Description
* Default
*
*
*
*
* --paper-spinner-color
* Color of the spinner
* --google-blue-500
*
*
* --paper-spinner-stroke-width
* The width of the spinner stroke
* 3px
*
*
*
*/
@JsType(isNative=true)
public interface PaperSpinnerLiteElement extends HTMLElement {
@JsOverlay public static final String TAG = "paper-spinner-lite";
@JsOverlay public static final String SRC = "paper-spinner/paper-spinner-lite.html";
/**
* Displays the spinner.
*
* JavaScript Info:
* @property active
* @type Boolean
*
*/
@JsProperty boolean getActive();
/**
* Displays the spinner.
*
* JavaScript Info:
* @property active
* @type Boolean
*
*/
@JsProperty void setActive(boolean value);
/**
* Alternative text content for accessibility support.
If alt is present, it will add an aria-label whose content matches alt when active.
If alt is not present, it will default to ‘loading’ as the alt value.
*
* JavaScript Info:
* @property alt
* @type String
*
*/
@JsProperty String getAlt();
/**
* Alternative text content for accessibility support.
If alt is present, it will add an aria-label whose content matches alt when active.
If alt is not present, it will default to ‘loading’ as the alt value.
*
* JavaScript Info:
* @property alt
* @type String
*
*/
@JsProperty void setAlt(String value);
}