Directory

← Back

neon-animation

Polymer + Web Animations

Author

Rating

Popularity

<100

Published on NPM Build status Published on webcomponents.org

neon-animation

neon-animation is a suite of elements and behaviors to implement pluggable animated transitions for Polymer Elements using Web Animations. Please note that these elements do not include the web-animations polyfill.

See: Documentation, Demo.

See the guide for detailed usage.

Usage

Installation

Element:

npm install --save @polymer/neon-animation

Polyfill:

npm install --save web-animations-js

In an HTML file

NeonAnimatableBehavior

Elements that can be animated by NeonAnimationRunnerBehavior should implement the NeonAnimatableBehavior behavior, or NeonAnimationRunnerBehavior if they're also responsible for running an animation.

In a Polymer 3 element

import {PolymerElement, html} from '@polymer/polymer';
import {mixinBehaviors} from '@polymer/polymer/lib/legacy/class.js';
import {NeonAnimatableBehavior} from '@polymer/neon-animation/neon-animatable-behavior.js';

class SampleElement extends mixinBehaviors([NeonAnimatableBehavior], PolymerElement) {
  static get template() {
    return html`
      <style>
        :host {
          display: block;
        }
      </style>

      <slot></slot>
    `;
  }
}
customElements.define('sample-element', SampleElement);

NeonAnimationRunnerBehavior

In a Polymer 3 element

import {PolymerElement, html} from '@polymer/polymer';
import {mixinBehaviors} from '@polymer/polymer/lib/legacy/class.js';
import {NeonAnimationRunnerBehavior} from '@polymer/neon-animation/neon-animation-runner-behavior.js';
import '@polymer/neon-animation/animations/scale-down-animation.js';

class SampleElement extends mixinBehaviors([NeonAnimationRunnerBehavior], PolymerElement) {
  static get template() {
    return html`
      <div>this entire element will be animated after one second</div>
    `;
  }

  connectedCallback() {
    super.connectedCallback();

    // must be set here because properties is static and cannot reference "this"
    this.animationConfig = {
      // provided by neon-animation/animations/scale-down-animation.js
      name: 'scale-down-animation',
      node: this,
    };

    setTimeout(() => this.playAnimation(), 1000);
  }
}
customElements.define('sample-element', SampleElement);

<neon-animatable>

A simple element that implements NeonAnimatableBehavior.

In an html file

<html>
  <head>
  </head>
  <body>
    <neon-animatable id="animatable">
      <div>this entire element and its parent will be animated after one second</div>
    </neon-animatable>
    <runner-element></runner-element>
    <script type="module">
      import {PolymerElement} from '@polymer/polymer';
      import {mixinBehaviors} from '@polymer/polymer/lib/legacy/class.js';
      import {NeonAnimationRunnerBehavior} from '@polymer/neon-animation/neon-animation-runner-behavior.js';
      import '@polymer/neon-animation/neon-animatable.js';
      import '@polymer/neon-animation/animations/scale-down-animation.js';

      const animatable = document.getElementById('animatable');

      class SampleElement extends mixinBehaviors([NeonAnimationRunnerBehavior], PolymerElement) {
        connectedCallback() {
          super.connectedCallback();

          this.animationConfig = {
            // provided by neon-animation/animations/scale-down-animation.js
            name: 'scale-down-animation',
            // node is node to animate
            node: animatable,
          }

          setTimeout(() => this.playAnimation(), 1000);
        }
      }
      customElements.define('runner-element', SampleElement);
    </script>
  </body>
</html>

In a Polymer 3 element

import {PolymerElement, html} from '@polymer/polymer';
import {mixinBehaviors} from '@polymer/polymer/lib/legacy/class.js';
import {NeonAnimationRunnerBehavior} from '@polymer/neon-animation/neon-animation-runner-behavior.js';
import '@polymer/neon-animation/neon-animatable.js';
import '@polymer/neon-animation/animations/scale-down-animation.js';

class SampleElement extends mixinBehaviors([NeonAnimationRunnerBehavior], PolymerElement) {
  static get template() {
    return html`
      <div>this div will not be animated</div>
      <neon-animatable id="animatable">
        <div>this div and its parent will be animated after one second</div>
      </neon-animatable>
    `;
  }

  connectedCallback() {
    super.connectedCallback();

    // must be set here because properties is static and cannot reference "this"
    this.animationConfig = {
      // provided by neon-animation/animations/scale-down-animation.js
      name: 'scale-down-animation',
      node: this.$.animatable,
    };

    setTimeout(() => this.playAnimation(), 1000);
  }
}
customElements.define('sample-element', SampleElement);

<neon-animated-pages>

neon-animated-pages manages a set of pages and runs an animation when switching between them.

In an html file

<html>
  <head>
    <script type="module">
      import '@polymer/neon-animation/neon-animated-pages.js';
      import '@polymer/neon-animation/neon-animatable.js';
      import '@polymer/neon-animation/animations/slide-from-right-animation.js';
      import '@polymer/neon-animation/animations/slide-left-animation.js';
    </script>
  </head>
  <body>
    <neon-animated-pages
        id="pages"
        selected="0"
        entry-animation="slide-from-right-animation"
        exit-animation="slide-left-animation">
      <neon-animatable>1</neon-animatable>
      <neon-animatable>2</neon-animatable>
      <neon-animatable>3</neon-animatable>
      <neon-animatable>4</neon-animatable>
      <neon-animatable>5</neon-animatable>
    </neon-animated-pages>
    <button onclick="increase()">+</button>
    <button onclick="decrease()">-</button>
    <script>
      const pages = document.getElementById('pages');
      function increase() { pages.selected = pages.selected + 1 % 5; };
      function decrease() { pages.selected = (pages.selected - 1 + 5) % 5; };
    </script>
  </body>
</html>

In a Polymer 3 element

import {PolymerElement, html} from '@polymer/polymer';
import '@polymer/neon-animation/neon-animated-pages.js';
import '@polymer/neon-animation/neon-animatable.js';
import '@polymer/neon-animation/animations/slide-from-right-animation.js';
import '@polymer/neon-animation/animations/slide-left-animation.js';

class SampleElement extends PolymerElement {
  static get template() {
    return html`
      <neon-animated-pages
          id="pages"
          selected="0"
          entry-animation="slide-from-right-animation"
          exit-animation="slide-left-animation">
        <neon-animatable>1</neon-animatable>
        <neon-animatable>2</neon-animatable>
        <neon-animatable>3</neon-animatable>
        <neon-animatable>4</neon-animatable>
        <neon-animatable>5</neon-animatable>
      </neon-animated-pages>
      <button on-click="increase">+</button>
      <button on-click="decrease">-</button>
    `;
  }

  increase() {
    this.$.pages.selected = this.$.pages.selected + 1 % 5;
  }

  decrease() {
    this.$.pages.selected = (this.$.pages.selected - 1 + 5) % 5;
  }
}
customElements.define('sample-element', SampleElement);

In a Polymer 3 element

import {PolymerElement, html} from '@polymer/polymer';
import {mixinBehaviors} from '@polymer/polymer/lib/legacy/class.js';
import {NeonAnimationRunnerBehavior} from '@polymer/neon-animation/neon-animation-runner-behavior.js';
import '@polymer/neon-animation/animations/neon-animatable.js';
import '@polymer/neon-animation/animations/scale-down-animation.js';

class SampleElement extends mixinBehaviors([NeonAnimationRunnerBehavior], PolymerElement) {
  static get template() {
    return html`
      <div>this div will not be animated</div>
      <neon-animatable id="animatable">
        <div>this div and its parent will be animated after one second</div>
      </neon-animatable>
    `;
  }

  connectedCallback() {
    super.connectedCallback();

    // must be set here because properties is static and cannot reference "this"
    this.animationConfig = {
      // provided by neon-animation/animations/scale-down-animation.js
      name: 'scale-down-animation',
      node: this.$.animatable,
    };

    setTimeout(() => this.playAnimation(), 1000);
  }
}
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/neon-animation
cd neon-animation
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

Compatibility

(Loading compatibility data...)

Was this helpful? Need more help?
Leave a comment or a question below. You can also join the chat on Discord or ask questions on StackOverflow.

Version

Dependencies

  • @polymer/iron-resizable-behavior#^3.0.0-pre.26
  • @polymer/iron-selector#^3.0.0-pre.26
  • @polymer/polymer#^3.0.0
Released
2018-09-14
Maturity
IMPORTED
License
BSD 3-clause "New" or "Revised" License

Compatibility

Framework
Polymer 3.0+
Polymer 2.0+ in 2.2.1
Polymer 1.0+ in 1.2.5
Browser
Browser Independent

neon-animation - Vaadin Add-on Directory

Polymer + Web Animations neon-animation - Vaadin Add-on Directory
[![Published on NPM](https://img.shields.io/npm/v/@polymer/neon-animation.svg)](https://www.npmjs.com/package/@polymer/neon-animation) [![Build status](https://travis-ci.org/PolymerElements/neon-animation.svg?branch=master)](https://travis-ci.org/PolymerElements/neon-animation) [![Published on webcomponents.org](https://img.shields.io/badge/webcomponents.org-published-blue.svg)](https://webcomponents.org/element/@polymer/neon-animation) ## neon-animation `neon-animation` is a suite of elements and behaviors to implement pluggable animated transitions for Polymer Elements using [Web Animations](https://w3c.github.io/web-animations/). Please note that these elements do not include the web-animations polyfill. See: [Documentation](https://www.webcomponents.org/element/@polymer/neon-animation), [Demo](https://www.webcomponents.org/element/@polymer/neon-animation/demo/demo/index.html). _See [the guide](./guide.md) for detailed usage._ ## Usage ### Installation Element: ``` npm install --save @polymer/neon-animation ``` Polyfill: ``` npm install --save web-animations-js ``` ### In an HTML file ### `NeonAnimatableBehavior` Elements that can be animated by `NeonAnimationRunnerBehavior` should implement the `NeonAnimatableBehavior` behavior, or `NeonAnimationRunnerBehavior` if they're also responsible for running an animation. #### In a Polymer 3 element ```js import {PolymerElement, html} from '@polymer/polymer'; import {mixinBehaviors} from '@polymer/polymer/lib/legacy/class.js'; import {NeonAnimatableBehavior} from '@polymer/neon-animation/neon-animatable-behavior.js'; class SampleElement extends mixinBehaviors([NeonAnimatableBehavior], PolymerElement) { static get template() { return html` `; } } customElements.define('sample-element', SampleElement); ``` ### `NeonAnimationRunnerBehavior` #### In a Polymer 3 element ```js import {PolymerElement, html} from '@polymer/polymer'; import {mixinBehaviors} from '@polymer/polymer/lib/legacy/class.js'; import {NeonAnimationRunnerBehavior} from '@polymer/neon-animation/neon-animation-runner-behavior.js'; import '@polymer/neon-animation/animations/scale-down-animation.js'; class SampleElement extends mixinBehaviors([NeonAnimationRunnerBehavior], PolymerElement) { static get template() { return html`
this entire element will be animated after one second
`; } connectedCallback() { super.connectedCallback(); // must be set here because properties is static and cannot reference "this" this.animationConfig = { // provided by neon-animation/animations/scale-down-animation.js name: 'scale-down-animation', node: this, }; setTimeout(() => this.playAnimation(), 1000); } } customElements.define('sample-element', SampleElement); ``` ### `` A simple element that implements NeonAnimatableBehavior. #### In an html file ```html
this entire element and its parent will be animated after one second
``` #### In a Polymer 3 element ```js import {PolymerElement, html} from '@polymer/polymer'; import {mixinBehaviors} from '@polymer/polymer/lib/legacy/class.js'; import {NeonAnimationRunnerBehavior} from '@polymer/neon-animation/neon-animation-runner-behavior.js'; import '@polymer/neon-animation/neon-animatable.js'; import '@polymer/neon-animation/animations/scale-down-animation.js'; class SampleElement extends mixinBehaviors([NeonAnimationRunnerBehavior], PolymerElement) { static get template() { return html`
this div will not be animated
this div and its parent will be animated after one second
`; } connectedCallback() { super.connectedCallback(); // must be set here because properties is static and cannot reference "this" this.animationConfig = { // provided by neon-animation/animations/scale-down-animation.js name: 'scale-down-animation', node: this.$.animatable, }; setTimeout(() => this.playAnimation(), 1000); } } customElements.define('sample-element', SampleElement); ``` ### `` `neon-animated-pages` manages a set of pages and runs an animation when switching between them. #### In an html file ```html 1 2 3 4 5 ``` #### In a Polymer 3 element ```js import {PolymerElement, html} from '@polymer/polymer'; import '@polymer/neon-animation/neon-animated-pages.js'; import '@polymer/neon-animation/neon-animatable.js'; import '@polymer/neon-animation/animations/slide-from-right-animation.js'; import '@polymer/neon-animation/animations/slide-left-animation.js'; class SampleElement extends PolymerElement { static get template() { return html` 1 2 3 4 5 `; } increase() { this.$.pages.selected = this.$.pages.selected + 1 % 5; } decrease() { this.$.pages.selected = (this.$.pages.selected - 1 + 5) % 5; } } customElements.define('sample-element', SampleElement); ``` #### In a Polymer 3 element ```js import {PolymerElement, html} from '@polymer/polymer'; import {mixinBehaviors} from '@polymer/polymer/lib/legacy/class.js'; import {NeonAnimationRunnerBehavior} from '@polymer/neon-animation/neon-animation-runner-behavior.js'; import '@polymer/neon-animation/animations/neon-animatable.js'; import '@polymer/neon-animation/animations/scale-down-animation.js'; class SampleElement extends mixinBehaviors([NeonAnimationRunnerBehavior], PolymerElement) { static get template() { return html`
this div will not be animated
this div and its parent will be animated after one second
`; } connectedCallback() { super.connectedCallback(); // must be set here because properties is static and cannot reference "this" this.animationConfig = { // provided by neon-animation/animations/scale-down-animation.js name: 'scale-down-animation', node: this.$.animatable, }; setTimeout(() => this.playAnimation(), 1000); } } 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 ```sh git clone https://github.com/PolymerElements/neon-animation cd neon-animation npm install npm install -g polymer-cli ``` ### Running the demo locally ```sh polymer serve --npm open http://127.0.0.1:/demo/ ``` ### Running the tests ```sh polymer test --npm ```
License
View on GitHub
View on NPM

neon-animation version 0.9.0
### Dependencies * polymer#Polymer/polymer#v0.9.0-rc.1 * iron-meta#PolymerElements/iron-meta#^0.9.0 * iron-resizable-behavior#PolymerElements/iron-resizable-behavior#^0.9.0 * iron-selector#PolymerElements/iron-selector#^0.9.0 * web-animations-js#web-animations/web-animations-js#^2.0.0

neon-animation version 0.9.1
### Dependencies * polymer#Polymer/polymer#v0.9.0-rc.1 * iron-meta#PolymerElements/iron-meta#^0.9.0 * iron-resizable-behavior#PolymerElements/iron-resizable-behavior#^0.9.0 * iron-selector#PolymerElements/iron-selector#^0.9.0 * web-animations-js#web-animations/web-animations-js#^2.0.0

neon-animation version 0.9.2
### Dependencies * polymer#Polymer/polymer#v0.9.0-rc.1 * iron-meta#PolymerElements/iron-meta#^0.9.0 * iron-resizable-behavior#PolymerElements/iron-resizable-behavior#^0.9.0 * iron-selector#PolymerElements/iron-selector#^0.9.0 * web-animations-js#web-animations/web-animations-js#^2.0.0

neon-animation version 0.9.3
### Dependencies * polymer#Polymer/polymer#^0.9.0 * iron-meta#PolymerElements/iron-meta#^0.9.0 * iron-resizable-behavior#PolymerElements/iron-resizable-behavior#^0.9.0 * iron-selector#PolymerElements/iron-selector#^0.9.0 * paper-styles#PolymerElements/paper-styles#^0.9.0 * web-animations-js#web-animations/web-animations-js#^2.0.0

neon-animation version 0.9.4
### Dependencies * polymer#Polymer/polymer#^0.9.0 * iron-meta#PolymerElements/iron-meta#^0.9.0 * iron-resizable-behavior#PolymerElements/iron-resizable-behavior#^0.9.0 * iron-selector#PolymerElements/iron-selector#^0.9.0 * paper-styles#PolymerElements/paper-styles#^0.9.0 * web-animations-js#web-animations/web-animations-js#^2.0.0

neon-animation version 0.9.5
### Dependencies * polymer#Polymer/polymer#^0.9.0 * iron-meta#PolymerElements/iron-meta#^0.9.0 * iron-resizable-behavior#PolymerElements/iron-resizable-behavior#^0.9.0 * iron-selector#PolymerElements/iron-selector#^0.9.0 * paper-styles#PolymerElements/paper-styles#^0.9.0 * web-animations-js#web-animations/web-animations-js#^2.0.0

neon-animation version 1.0.0
### Dependencies * polymer#Polymer/polymer#^1.0.0 * iron-meta#PolymerElements/iron-meta#^1.0.0 * iron-resizable-behavior#PolymerElements/iron-resizable-behavior#^1.0.0 * iron-selector#PolymerElements/iron-selector#^1.0.0 * paper-styles#PolymerElements/paper-styles#^1.0.0 * web-animations-js#web-animations/web-animations-js#^2.0.0

neon-animation version 1.0.1
### Dependencies * polymer#Polymer/polymer#^1.0.0 * iron-meta#PolymerElements/iron-meta#^1.0.0 * iron-resizable-behavior#PolymerElements/iron-resizable-behavior#^1.0.0 * iron-selector#PolymerElements/iron-selector#^1.0.0 * paper-styles#PolymerElements/paper-styles#^1.0.0 * web-animations-js#web-animations/web-animations-js#^2.0.0

neon-animation version 1.0.2
### Dependencies * polymer#Polymer/polymer#^1.0.0 * iron-meta#PolymerElements/iron-meta#^1.0.0 * iron-resizable-behavior#PolymerElements/iron-resizable-behavior#^1.0.0 * iron-selector#PolymerElements/iron-selector#^1.0.0 * paper-styles#PolymerElements/paper-styles#^1.0.0 * web-animations-js#web-animations/web-animations-js#^2.0.0

neon-animation version 1.0.3
### Dependencies * polymer#Polymer/polymer#^1.0.0 * iron-meta#PolymerElements/iron-meta#^1.0.0 * iron-resizable-behavior#PolymerElements/iron-resizable-behavior#^1.0.0 * iron-selector#PolymerElements/iron-selector#^1.0.0 * paper-styles#PolymerElements/paper-styles#^1.0.0 * web-animations-js#web-animations/web-animations-js#^2.0.0

neon-animation version 1.0.4
### Dependencies * polymer#Polymer/polymer#^1.0.0 * iron-meta#PolymerElements/iron-meta#^1.0.0 * iron-resizable-behavior#PolymerElements/iron-resizable-behavior#^1.0.0 * iron-selector#PolymerElements/iron-selector#^1.0.0 * paper-styles#PolymerElements/paper-styles#^1.0.0 * web-animations-js#web-animations/web-animations-js#^2.0.0

neon-animation version 1.0.5
### Dependencies * polymer#Polymer/polymer#^1.0.0 * iron-meta#PolymerElements/iron-meta#^1.0.0 * iron-resizable-behavior#PolymerElements/iron-resizable-behavior#^1.0.0 * iron-selector#PolymerElements/iron-selector#^1.0.0 * paper-styles#PolymerElements/paper-styles#^1.0.0 * web-animations-js#web-animations/web-animations-js#2.1.0

neon-animation version 1.0.6
### Dependencies * polymer#Polymer/polymer#^1.0.0 * iron-meta#PolymerElements/iron-meta#^1.0.0 * iron-resizable-behavior#PolymerElements/iron-resizable-behavior#^1.0.0 * iron-selector#PolymerElements/iron-selector#^1.0.0 * paper-styles#PolymerElements/paper-styles#^1.0.0 * web-animations-js#web-animations/web-animations-js#2.1.2

neon-animation version 1.0.7
### Dependencies * polymer#Polymer/polymer#^1.0.0 * iron-meta#PolymerElements/iron-meta#^1.0.0 * iron-resizable-behavior#PolymerElements/iron-resizable-behavior#^1.0.0 * iron-selector#PolymerElements/iron-selector#^1.0.0 * paper-styles#PolymerElements/paper-styles#^1.0.0 * web-animations-js#web-animations/web-animations-js#2.1.2

neon-animation version 1.0.8
### Dependencies * polymer#Polymer/polymer#^1.0.0 * iron-meta#PolymerElements/iron-meta#^1.0.0 * iron-resizable-behavior#PolymerElements/iron-resizable-behavior#^1.0.0 * iron-selector#PolymerElements/iron-selector#^1.0.0 * paper-styles#PolymerElements/paper-styles#^1.0.0 * web-animations-js#web-animations/web-animations-js#2.1.2

neon-animation version 1.0.9
### Dependencies * polymer#Polymer/polymer#^1.1.0 * iron-meta#PolymerElements/iron-meta#^1.0.0 * iron-resizable-behavior#PolymerElements/iron-resizable-behavior#^1.0.0 * iron-selector#PolymerElements/iron-selector#^1.0.0 * paper-styles#PolymerElements/paper-styles#^1.0.0 * web-animations-js#web-animations/web-animations-js#2.1.3

neon-animation version 1.1.0
### Dependencies * polymer#Polymer/polymer#^1.1.0 * iron-meta#PolymerElements/iron-meta#^1.0.0 * iron-resizable-behavior#PolymerElements/iron-resizable-behavior#^1.0.0 * iron-selector#PolymerElements/iron-selector#^1.0.0 * web-animations-js#web-animations/web-animations-js#2.1.3

neon-animation version 0.0.1
### Dependencies * @polymer/polymer#^1.2.5-npm-test.2 * @polymer/iron-meta#^0.0.1 * @polymer/iron-resizable-behavior#^0.0.1 * @polymer/iron-selector#^0.0.1 * web-animations-js#2.1.3

neon-animation version 0.0.3
### Dependencies * @polymer/polymer#^1.2.5-npm-test.2 * @polymer/iron-meta#^0.0.3 * @polymer/iron-resizable-behavior#^0.0.3 * @polymer/iron-selector#^0.0.3 * web-animations-js#2.1.3

neon-animation version 1.1.1
### Dependencies * polymer#Polymer/polymer#^1.1.0 * iron-meta#PolymerElements/iron-meta#^1.0.0 * iron-resizable-behavior#PolymerElements/iron-resizable-behavior#^1.0.0 * iron-selector#PolymerElements/iron-selector#^1.0.0 * web-animations-js#web-animations/web-animations-js#2.1.4

neon-animation version 1.2.0
### Dependencies * polymer#Polymer/polymer#^1.1.0 * iron-meta#PolymerElements/iron-meta#^1.0.0 * iron-resizable-behavior#PolymerElements/iron-resizable-behavior#^1.0.0 * iron-selector#PolymerElements/iron-selector#^1.0.0 * web-animations-js#web-animations/web-animations-js#2.1.4

neon-animation version 1.2.1
### Dependencies * polymer#Polymer/polymer#^1.1.0 * iron-meta#PolymerElements/iron-meta#^1.0.0 * iron-resizable-behavior#PolymerElements/iron-resizable-behavior#^1.0.0 * iron-selector#PolymerElements/iron-selector#^1.0.0 * web-animations-js#web-animations/web-animations-js#^2.2.0

neon-animation version 1.2.2
### Dependencies * polymer#Polymer/polymer#^1.1.0 * iron-meta#PolymerElements/iron-meta#^1.0.0 * iron-resizable-behavior#PolymerElements/iron-resizable-behavior#^1.0.0 * iron-selector#PolymerElements/iron-selector#^1.0.0 * web-animations-js#web-animations/web-animations-js#^2.2.0

neon-animation version 1.2.3
### Dependencies * polymer#Polymer/polymer#^1.1.0 * iron-meta#PolymerElements/iron-meta#^1.0.0 * iron-resizable-behavior#PolymerElements/iron-resizable-behavior#^1.0.0 * iron-selector#PolymerElements/iron-selector#^1.0.0 * web-animations-js#web-animations/web-animations-js#^2.2.0

neon-animation version 1.2.4
### Dependencies * polymer#Polymer/polymer#^1.1.0 * iron-meta#PolymerElements/iron-meta#^1.0.0 * iron-resizable-behavior#PolymerElements/iron-resizable-behavior#^1.0.0 * iron-selector#PolymerElements/iron-selector#^1.0.0 * web-animations-js#web-animations/web-animations-js#^2.2.0

neon-animation version 1.2.5
### Dependencies * polymer#Polymer/polymer#^1.1.0 * iron-meta#PolymerElements/iron-meta#^1.0.0 * iron-resizable-behavior#PolymerElements/iron-resizable-behavior#^1.0.0 * iron-selector#PolymerElements/iron-selector#^1.0.0 * web-animations-js#web-animations/web-animations-js#^2.2.0

neon-animation version 2.0.0
### Dependencies * iron-meta#PolymerElements/iron-meta#1 - 2 * iron-resizable-behavior#PolymerElements/iron-resizable-behavior#1 - 2 * iron-selector#PolymerElements/iron-selector#1 - 2 * polymer#Polymer/polymer#1.9 - 2

neon-animation version 2.0.1
### Dependencies * iron-meta#PolymerElements/iron-meta#1 - 2 * iron-resizable-behavior#PolymerElements/iron-resizable-behavior#1 - 2 * iron-selector#PolymerElements/iron-selector#1 - 2 * polymer#Polymer/polymer#1.9 - 2

neon-animation version 2.0.2
### Dependencies * iron-resizable-behavior#PolymerElements/iron-resizable-behavior#1 - 2 * iron-selector#PolymerElements/iron-selector#1 - 2 * polymer#Polymer/polymer#1.9 - 2

neon-animation version 3.0.0-pre.1
### Dependencies * @polymer/iron-resizable-behavior#^3.0.0-pre.1 * @polymer/iron-selector#^3.0.0-pre.1 * @polymer/polymer#^3.0.0-pre.1

neon-animation version 2.1.0
### Dependencies * iron-resizable-behavior#PolymerElements/iron-resizable-behavior#1 - 2 * iron-selector#PolymerElements/iron-selector#1 - 2 * polymer#Polymer/polymer#1.9 - 2

neon-animation version 3.0.0-pre.4
### Dependencies * @polymer/iron-resizable-behavior#^3.0.0-pre.4 * @polymer/iron-selector#^3.0.0-pre.4 * @polymer/polymer#^3.0.0-pre.4

neon-animation version 3.0.0-pre.6
### Dependencies * @polymer/iron-resizable-behavior#^3.0.0-pre.6 * @polymer/iron-selector#^3.0.0-pre.6 * @polymer/polymer#^3.0.0-pre.6

neon-animation version 3.0.0-pre.7
### Dependencies * @polymer/iron-resizable-behavior#^3.0.0-pre.7 * @polymer/iron-selector#^3.0.0-pre.7 * @polymer/polymer#^3.0.0-pre.7

neon-animation version 3.0.0-pre.8
### Dependencies * @polymer/iron-resizable-behavior#^3.0.0-pre.7 * @polymer/iron-selector#^3.0.0-pre.7 * @polymer/polymer#^3.0.0-pre.7

neon-animation version 2.2.0
### Dependencies * iron-resizable-behavior#PolymerElements/iron-resizable-behavior#1 - 2 * iron-selector#PolymerElements/iron-selector#1 - 2 * polymer#Polymer/polymer#1.9 - 2

neon-animation version 3.0.0-pre.10
### Dependencies * @polymer/iron-resizable-behavior#^3.0.0-pre.10 * @polymer/iron-selector#^3.0.0-pre.10 * @polymer/polymer#^3.0.0-pre.10

neon-animation version 2.2.1
### Dependencies * iron-resizable-behavior#PolymerElements/iron-resizable-behavior#1 - 2 * iron-selector#PolymerElements/iron-selector#1 - 2 * polymer#Polymer/polymer#1.9 - 2

neon-animation version 3.0.0-pre.11
### Dependencies * @polymer/iron-resizable-behavior#^3.0.0-pre.10 * @polymer/iron-selector#^3.0.0-pre.10 * @polymer/polymer#^3.0.0-pre.10

neon-animation version 3.0.0-pre.12
### Dependencies * @polymer/iron-resizable-behavior#3.0.0-pre.12 * @polymer/iron-selector#3.0.0-pre.12 * @polymer/polymer#3.0.0-pre.12

neon-animation version 3.0.0-pre.13
### Dependencies * @polymer/iron-resizable-behavior#^3.0.0-pre.13 * @polymer/iron-selector#^3.0.0-pre.13 * @polymer/polymer#^3.0.0-pre.13

neon-animation version 3.0.0-pre.14
### Dependencies * @polymer/iron-resizable-behavior#^3.0.0-pre.14 * @polymer/iron-selector#^3.0.0-pre.14 * @polymer/polymer#^3.0.0-pre.13

neon-animation version 3.0.0-pre.15
### Dependencies * @polymer/iron-resizable-behavior#^3.0.0-pre.15 * @polymer/iron-selector#^3.0.0-pre.15 * @polymer/polymer#^3.0.0-pre.13

neon-animation version 3.0.0-pre.16
### Dependencies * @polymer/iron-resizable-behavior#^3.0.0-pre.16 * @polymer/iron-selector#^3.0.0-pre.16 * @polymer/polymer#^3.0.0-pre.13

neon-animation version 3.0.0-pre.17
### Dependencies * @polymer/iron-resizable-behavior#^3.0.0-pre.17 * @polymer/iron-selector#^3.0.0-pre.17 * @polymer/polymer#^3.0.0-pre.13

neon-animation version 3.0.0-pre.18
### Dependencies * @polymer/iron-resizable-behavior#^3.0.0-pre.18 * @polymer/iron-selector#^3.0.0-pre.18 * @polymer/polymer#^3.0.0

neon-animation version 3.0.0-pre.19
### Dependencies * @polymer/iron-resizable-behavior#^3.0.0-pre.19 * @polymer/iron-selector#^3.0.0-pre.19 * @polymer/polymer#^3.0.0

neon-animation version 3.0.0-pre.20
### Dependencies * @polymer/iron-resizable-behavior#^3.0.0-pre.20 * @polymer/iron-selector#^3.0.0-pre.20 * @polymer/polymer#^3.0.0

neon-animation version 3.0.0-pre.21
### Dependencies * @polymer/iron-resizable-behavior#^3.0.0-pre.21 * @polymer/iron-selector#^3.0.0-pre.21 * @polymer/polymer#^3.0.0

neon-animation version 3.0.0-pre.22
### Dependencies * @polymer/iron-resizable-behavior#^3.0.0-pre.20 * @polymer/iron-selector#^3.0.0-pre.20 * @polymer/polymer#^3.0.0

neon-animation version 3.0.0-pre.23
### Dependencies * @polymer/iron-resizable-behavior#^3.0.0-pre.22 * @polymer/iron-selector#^3.0.0-pre.22 * @polymer/polymer#^3.0.0

neon-animation version 3.0.0-pre.24
### Dependencies * @polymer/iron-resizable-behavior#^3.0.0-pre.22 * @polymer/iron-selector#^3.0.0-pre.22 * @polymer/polymer#^3.0.0

neon-animation version 3.0.0-pre.25
### Dependencies * @polymer/iron-resizable-behavior#^3.0.0-pre.24 * @polymer/iron-selector#^3.0.0-pre.24 * @polymer/polymer#^3.0.0

neon-animation version 3.0.0-pre.26
### Dependencies * @polymer/iron-resizable-behavior#^3.0.0-pre.25 * @polymer/iron-selector#^3.0.0-pre.25 * @polymer/polymer#^3.0.0

neon-animation version 3.0.0
### Dependencies * @polymer/iron-resizable-behavior#^3.0.0-pre.26 * @polymer/iron-selector#^3.0.0-pre.26 * @polymer/polymer#^3.0.0

neon-animation version 3.0.1
### Dependencies * @polymer/iron-resizable-behavior#^3.0.0-pre.26 * @polymer/iron-selector#^3.0.0-pre.26 * @polymer/polymer#^3.0.0

Online