Socket
Socket
Sign inDemoInstall

@polymer/paper-spinner

Package Overview
Dependencies
5
Maintainers
12
Versions
33
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

@polymer/paper-spinner

A material design spinner


Version published
Maintainers
12
Weekly downloads
3,465
decreased by-44.24%

Weekly downloads

Readme

Source

Published on NPM Build status Published on webcomponents.org

<paper-spinner>

Element providing a multiple color material design circular spinner.

See: Documentation, Demo.

Usage

Installation

npm install --save @polymer/paper-spinner

In an html file

<html>
  <head>
    <script type="module">
      import '@polymer/paper-spinner/paper-spinner.js';
    </script>
  </head>
  <body>
    <paper-spinner active></paper-spinner>
  </body>
</html>

In a Polymer 3 element

import {PolymerElement, html} from '@polymer/polymer';
import '@polymer/paper-spinner/paper-spinner.js';

class SampleElement extends PolymerElement {
  static get template() {
    return html`
      <paper-spinner active></paper-spinner>
    `;
  }
}
customElements.define('sample-element', SampleElement);

Contributing

If you want to send a PR to this element, here are the instructions for running the tests and demo locally:

Installation

git clone https://github.com/PolymerElements/paper-spinner
cd paper-spinner
npm install
npm install -g polymer-cli

Running the demo locally

polymer serve --npm
open http://127.0.0.1:<port>/demo/

Running the tests

polymer test --npm

Keywords

FAQs

Last updated on 27 Feb 2019

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc