@haxtheweb/haxcms-nodejs
Version:
HAXcms single and multisite nodejs server, api, and administration
25 lines • 1.69 kB
JavaScript
/**
@license
Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
This code may only be used under the BSD style license found at
http://polymer.github.io/LICENSE.txt The complete set of authors may be found at
http://polymer.github.io/AUTHORS.txt The complete set of contributors may be
found at http://polymer.github.io/CONTRIBUTORS.txt Code distributed by Google as
part of the polymer project is also subject to an additional IP rights grant
found at http://polymer.github.io/PATENTS.txt
*/
import"../../../polymer/polymer-legacy.js";import"../../../paper-styles/shadow.js";import"../../animations/scale-up-animation.js";import"../../animations/fade-out-animation.js";import{Polymer as i}from"../../../polymer/lib/legacy/polymer-fn.js";import{html as n}from"../../../polymer/lib/utils/html-tag.js";import{NeonAnimationRunnerBehavior as o}from"../../neon-animation-runner-behavior.js";i({_template:n`
<style>
:host {
display: none;
padding: 16px;
background: white;
color: black;
margin: 0 auto;
z-index: 100;
position: absolute;
--shadow-elevation-2dp;
}
</style>
<slot></slot>
`,is:"my-dialog",behaviors:[o],properties:{opened:{type:Boolean},animationConfig:{type:Object,value:function(){return{entry:[{name:"scale-up-animation",node:this}],exit:[{name:"fade-out-animation",node:this}]}}}},listeners:{"neon-animation-finish":"_onAnimationFinish"},_onAnimationFinish:function(){this.opened||(this.style.display="")},show:function(){this.opened=!0,this.style.display="inline-block",this.playAnimation("entry")},hide:function(){this.opened=!1,this.playAnimation("exit")}});