Skip to content

Commit

Permalink
Add @OverRide, remove @attribute/@group/@hero/@homepage (#259)
Browse files Browse the repository at this point in the history
  • Loading branch information
aomarks authored Jun 19, 2019
1 parent d5e1d01 commit 91c34ee
Show file tree
Hide file tree
Showing 21 changed files with 21 additions and 1 deletion.
1 change: 1 addition & 0 deletions animations/cascaded-animation.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ Configuration:
*/
Polymer({
is: 'cascaded-animation',
/** @override */
_template: null,

behaviors: [NeonAnimationBehavior],
Expand Down
1 change: 1 addition & 0 deletions animations/fade-in-animation.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ Configuration:
Polymer({

is: 'fade-in-animation',
/** @override */
_template: null,

behaviors: [NeonAnimationBehavior],
Expand Down
1 change: 1 addition & 0 deletions animations/fade-out-animation.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ Configuration:
Polymer({

is: 'fade-out-animation',
/** @override */
_template: null,

behaviors: [NeonAnimationBehavior],
Expand Down
1 change: 1 addition & 0 deletions animations/hero-animation.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ Configuration:
Polymer({

is: 'hero-animation',
/** @override */
_template: null,

behaviors: [NeonSharedElementAnimationBehavior],
Expand Down
1 change: 1 addition & 0 deletions animations/opaque-animation.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ animation for elements that animate from display:none.
Polymer({

is: 'opaque-animation',
/** @override */
_template: null,

behaviors: [NeonAnimationBehavior],
Expand Down
1 change: 1 addition & 0 deletions animations/reverse-ripple-animation.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ Configuration:
*/
Polymer({
is: 'reverse-ripple-animation',
/** @override */
_template: null,

behaviors: [NeonSharedElementAnimationBehavior],
Expand Down
1 change: 1 addition & 0 deletions animations/ripple-animation.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ Configuration:
Polymer({

is: 'ripple-animation',
/** @override */
_template: null,

behaviors: [NeonSharedElementAnimationBehavior],
Expand Down
1 change: 1 addition & 0 deletions animations/scale-down-animation.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ Configuration:
Polymer({

is: 'scale-down-animation',
/** @override */
_template: null,

behaviors: [NeonAnimationBehavior],
Expand Down
1 change: 1 addition & 0 deletions animations/scale-up-animation.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ Configuration:
Polymer({

is: 'scale-up-animation',
/** @override */
_template: null,

behaviors: [NeonAnimationBehavior],
Expand Down
1 change: 1 addition & 0 deletions animations/slide-down-animation.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ Configuration:
Polymer({

is: 'slide-down-animation',
/** @override */
_template: null,

behaviors: [NeonAnimationBehavior],
Expand Down
1 change: 1 addition & 0 deletions animations/slide-from-bottom-animation.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ Configuration:
*/
Polymer({
is: 'slide-from-bottom-animation',
/** @override */
_template: null,

behaviors: [NeonAnimationBehavior],
Expand Down
1 change: 1 addition & 0 deletions animations/slide-from-left-animation.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ Configuration:
Polymer({

is: 'slide-from-left-animation',
/** @override */
_template: null,

behaviors: [NeonAnimationBehavior],
Expand Down
1 change: 1 addition & 0 deletions animations/slide-from-right-animation.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ Configuration:
Polymer({

is: 'slide-from-right-animation',
/** @override */
_template: null,

behaviors: [NeonAnimationBehavior],
Expand Down
1 change: 1 addition & 0 deletions animations/slide-from-top-animation.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ Configuration:
*/
Polymer({
is: 'slide-from-top-animation',
/** @override */
_template: null,

behaviors: [NeonAnimationBehavior],
Expand Down
1 change: 1 addition & 0 deletions animations/slide-left-animation.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ Configuration:
*/
Polymer({
is: 'slide-left-animation',
/** @override */
_template: null,

behaviors: [NeonAnimationBehavior],
Expand Down
1 change: 1 addition & 0 deletions animations/slide-right-animation.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ Configuration:
Polymer({

is: 'slide-right-animation',
/** @override */
_template: null,

behaviors: [NeonAnimationBehavior],
Expand Down
1 change: 1 addition & 0 deletions animations/slide-up-animation.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ Configuration:
*/
Polymer({
is: 'slide-up-animation',
/** @override */
_template: null,

behaviors: [NeonAnimationBehavior],
Expand Down
1 change: 1 addition & 0 deletions animations/transform-animation.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ Configuration:
*/
Polymer({
is: 'transform-animation',
/** @override */
_template: null,

behaviors: [NeonAnimationBehavior],
Expand Down
1 change: 1 addition & 0 deletions neon-animatable.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ import {NeonAnimatableBehavior} from './neon-animatable-behavior.js';
```
*/
Polymer({
/** @override */
_template: html`
<style>
:host {
Expand Down
2 changes: 1 addition & 1 deletion neon-animated-pages.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ switching between them. Its children pages should implement
`NeonAnimatableBehavior` and define `entry` and `exit` animations to be
run when switching to or switching out of the page.
@group Neon Elements
@element neon-animated-pages
*/
Polymer({
/** @override */
_template: html`
<style>
:host {
Expand Down
1 change: 1 addition & 0 deletions neon-animation-behavior.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ export const NeonAnimationBehavior = {
// configure: function(config) {
// },

/** @override */
created: function() {
if (!document.body.animate) {
console.warn(
Expand Down

0 comments on commit 91c34ee

Please sign in to comment.