@progress/kendo-vue-animation
Advanced tools
Comparing version 0.4.1-dev.202001101532 to 0.4.1-dev.202001131438
@@ -10,3 +10,3 @@ import { VueComponent } from '@progress/kendo-vue-common'; | ||
* When the element reaches its exit state, it is no longer available | ||
* in the DOM ([see example]({% slug exitingchildcomponents_animation %})). | ||
* in the DOM. | ||
*/ | ||
@@ -32,3 +32,3 @@ childFactory?: any; | ||
* Specifies whether the Animation children will stack on top of each other | ||
* without interfering ([see example]({% slug stacked_animation %})). | ||
* without interfering ([see example]({% slug stacked_animation_native %})). | ||
*/ | ||
@@ -38,3 +38,3 @@ stackChildren?: boolean; | ||
* Specifies the `classNames` which will be applied during the | ||
* transition ([see example]({% slug customizing_animation %})). | ||
* transition ([see example]({% slug customizing_animation_native %})). | ||
*/ | ||
@@ -41,0 +41,0 @@ transitionName: string; |
@@ -142,2 +142,4 @@ function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function (_typeof2) { function _typeof(_x) { return _typeof2.apply(this, arguments); } _typeof.toString = function () { return _typeof2.toString(); }; return _typeof; }(function (obj) { return typeof obj; }); } else { _typeof = function (_typeof3) { function _typeof(_x2) { return _typeof3.apply(this, arguments); } _typeof.toString = function () { return _typeof3.toString(); }; return _typeof; }(function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }); } return _typeof(obj); } | ||
appear: this.$props.appear, | ||
enter: this.$props.enter, | ||
exit: this.$props.exit, | ||
transitionName: this.$props.transitionName, | ||
@@ -177,19 +179,17 @@ componentChildClassName: this.$props.componentChildClassName, | ||
type: Boolean, | ||
required: true | ||
default: true | ||
}, | ||
enter: { | ||
type: Boolean, | ||
required: true | ||
default: true | ||
}, | ||
exit: { | ||
type: Boolean, | ||
required: true | ||
default: true | ||
}, | ||
transitionEnterDuration: { | ||
type: Number, | ||
required: true | ||
type: Number | ||
}, | ||
transitionExitDuration: { | ||
type: Number, | ||
required: true | ||
type: Number | ||
} | ||
@@ -196,0 +196,0 @@ } |
@@ -191,5 +191,7 @@ function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function (_typeof2) { function _typeof(_x) { return _typeof2.apply(this, arguments); } _typeof.toString = function () { return _typeof2.toString(); }; return _typeof; }(function (obj) { return typeof obj; }); } else { _typeof = function (_typeof3) { function _typeof(_x2) { return _typeof3.apply(this, arguments); } _typeof.toString = function () { return _typeof3.toString(); }; return _typeof; }(function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }); } return _typeof(obj); } | ||
var childElementStyles = [defaultStyle, animationStyle[this.animationStep]]; | ||
var enterDuration = enter ? transitionEnterDuration : 0; | ||
var exitDuration = exit ? transitionExitDuration : 0; | ||
var duration = { | ||
enter: transitionEnterDuration, | ||
leave: transitionExitDuration | ||
enter: enterDuration, | ||
leave: exitDuration | ||
}; | ||
@@ -234,5 +236,14 @@ var hasChildren = !!this.$slots.default; | ||
className: String, | ||
appear: Boolean, | ||
enter: Boolean, | ||
exit: Boolean, | ||
appear: { | ||
type: Boolean, | ||
default: true | ||
}, | ||
enter: { | ||
type: Boolean, | ||
default: true | ||
}, | ||
exit: { | ||
type: Boolean, | ||
default: true | ||
}, | ||
transitionEnterDuration: Number, | ||
@@ -239,0 +250,0 @@ transitionExitDuration: Number, |
@@ -28,23 +28,23 @@ import { AnimationChild } from './AnimationChild'; | ||
/** | ||
* Called when a component is added to an existing Animation component and the Animation has not started yet ([more information and example]({% slug lifecyclehooks_animation %}#toc-adding-child-elements)). | ||
* Called when a component is added to an existing Animation component and the Animation has not started yet . | ||
*/ | ||
onEnter?: (event: AnimationEventArguments) => void; | ||
/** | ||
* Called when a component is added to an existing Animation component and the Animation is now happening ([more information and example]({% slug lifecyclehooks_animation %}#toc-adding-child-elements)). | ||
* Called when a component is added to an existing Animation component and the Animation is now happening. | ||
*/ | ||
onEntering?: (event: AnimationEventArguments) => void; | ||
/** | ||
* Called when a component is added to an existing Animation component and the Animation is now finished ([more information and example]({% slug lifecyclehooks_animation %}#toc-adding-child-elements)). | ||
* Called when a component is added to an existing Animation component and the Animation is now finished. | ||
*/ | ||
onEntered?: (event: AnimationEventArguments) => void; | ||
/** | ||
* An event that is called after the Animation has reached its exit state ([more information and example]({% slug lifecyclehooks_animation %}#toc-removing-child-elements)). | ||
* An event that is called after the Animation has reached its exit state. | ||
*/ | ||
onExit?: (event: AnimationEventArguments) => void; | ||
/** | ||
* An event that is called after the Animation has reached its exiting state ([more information and example]({% slug lifecyclehooks_animation %}#toc-removing-child-elements)). | ||
* An event that is called after the Animation has reached its exiting state. | ||
*/ | ||
onExiting?: (event: AnimationEventArguments) => void; | ||
/** | ||
* An event that is called after the Animation has reached its exited state ([more information and example]({% slug lifecyclehooks_animation %}#toc-removing-child-elements)). | ||
* An event that is called after the Animation has reached its exited state. | ||
*/ | ||
@@ -57,15 +57,15 @@ onExited?: (event: AnimationEventArguments) => void; | ||
/** | ||
* Specifies whether to animate the entering (showing) element ([see example]({% slug disabledstate_animation %})). Defaults to `true`. | ||
* Specifies whether to animate the entering (showing) element ([see example]({% slug disabledstate_animation_native %})). Defaults to `true`. | ||
*/ | ||
enter?: boolean; | ||
/** | ||
* Specifies whether to animate a leaving (disappearing) element ([see example]({% slug disabledstate_animation %})). Defaults to `true`. | ||
* Specifies whether to animate a leaving (disappearing) element ([see example]({% slug disabledstate_animation_native %})). Defaults to `true`. | ||
*/ | ||
exit?: boolean; | ||
/** | ||
* Specifies the duration of the transition for the entering (`animation in`) Animation ([see example]({% slug duration_animation %})). After the time runs out, the Animation is terminated. Defaults to `300ms`. | ||
* Specifies the duration of the transition for the entering (`animation in`) Animation ([see example]({% slug duration_animation_native %})). After the time runs out, the Animation is terminated. Defaults to `300ms`. | ||
*/ | ||
transitionEnterDuration?: number; | ||
/** | ||
* Specifies the duration of the transition for the exiting (`animation out`) Animation ([see example]({% slug duration_animation %})). After the time runs out, the Animation is terminated. Defaults to `300ms`. | ||
* Specifies the duration of the transition for the exiting (`animation out`) Animation ([see example]({% slug duration_animation_native %})). After the time runs out, the Animation is terminated. Defaults to `300ms`. | ||
*/ | ||
@@ -72,0 +72,0 @@ transitionExitDuration?: number; |
@@ -5,3 +5,3 @@ import { VueComponent } from '@progress/kendo-vue-common'; | ||
/** | ||
* Specifies the direction of the Expand Animation ([see example]({% slug direction_animation %}#toc-expand)). | ||
* Specifies the direction of the Expand Animation ([see example]({% slug direction_animation_native %}#toc-expand)). | ||
* | ||
@@ -14,3 +14,3 @@ * The supported directions are: | ||
/** | ||
* Represent the props of the [KendoReact Expand Animation component]({% slug animationtypes_animation %}#toc-expand). | ||
* Represent the props of the [KendoVue Expand Animation component]({% slug animationtypes_animation_native %}#toc-expand). | ||
* | ||
@@ -17,0 +17,0 @@ * @example |
@@ -5,3 +5,3 @@ import { VueComponent } from '@progress/kendo-vue-common'; | ||
/** | ||
* Represent the props of the [KendoReact Fade Animation component]({% slug animationtypes_animation %}#toc-fade). | ||
* Represent the props of the [KendoVue Fade Animation component]({% slug animationtypes_animation_native %}#toc-fade). | ||
* | ||
@@ -8,0 +8,0 @@ * @example |
@@ -5,3 +5,3 @@ import { VueComponent } from '@progress/kendo-vue-common'; | ||
/** | ||
* Specifies the direction of the Push Animation ([see example]({% slug direction_animation %}#toc-push)). | ||
* Specifies the direction of the Push Animation ([see example]({% slug direction_animation_native %}#toc-push)). | ||
* | ||
@@ -16,3 +16,3 @@ * The supported directions are: | ||
/** | ||
* Represent the props of the [KendoReact Push Animation component]({% slug animationtypes_animation %}#toc-push). | ||
* Represent the props of the [KendoVue Push Animation component]({% slug animationtypes_animation_native %}#toc-push). | ||
* | ||
@@ -51,3 +51,3 @@ * @example | ||
* Specifies whether the child elements will stack on top of each other without | ||
* interfering ([more information and examples]({% slug stacked_animation %})). | ||
* interfering ([more information and examples]({% slug stacked_animation_native %})). | ||
*/ | ||
@@ -54,0 +54,0 @@ stackChildren?: boolean; |
@@ -5,3 +5,3 @@ import { VueComponent } from '@progress/kendo-vue-common'; | ||
/** | ||
* Specifies the direction of the Reveal Animation ([see example]({% slug direction_animation %}#toc-reveal)). | ||
* Specifies the direction of the Reveal Animation ([see example]({% slug direction_animation_native %}#toc-reveal)). | ||
* | ||
@@ -14,3 +14,3 @@ * The supported directions are: | ||
/** | ||
* Represent the props of the [KendoReact Reveal Animation component]({% slug animationtypes_animation %}#toc-rveal). | ||
* Represent the props of the [KendoVue Reveal Animation component]({% slug animationtypes_animation_native %}#toc-rveal). | ||
* | ||
@@ -17,0 +17,0 @@ * @example |
@@ -117,3 +117,3 @@ function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function (_typeof2) { function _typeof(_x) { return _typeof2.apply(this, arguments); } _typeof.toString = function () { return _typeof2.toString(); }; return _typeof; }(function (obj) { return typeof obj; }); } else { _typeof = function (_typeof3) { function _typeof(_x2) { return _typeof3.apply(this, arguments); } _typeof.toString = function () { return _typeof3.toString(); }; return _typeof; }(function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }); } return _typeof(obj); } | ||
// if (!child.props.in) { | ||
// return React.cloneElement(child, { | ||
// return Vue.cloneElement(child, { | ||
// ...child.props, | ||
@@ -120,0 +120,0 @@ // style: { |
@@ -5,3 +5,3 @@ import { VueComponent } from '@progress/kendo-vue-common'; | ||
/** | ||
* Specifies the direction of the Slide Animation ([see example]({% slug direction_animation %}#toc-slide)). | ||
* Specifies the direction of the Slide Animation ([see example]({% slug direction_animation_native %}#toc-slide)). | ||
* | ||
@@ -16,3 +16,3 @@ * The supported directions are: | ||
/** | ||
* Represent the props of the [KendoReact Slide Animation component]({% slug animationtypes_animation %}#toc-slide). | ||
* Represent the props of the [KendoVue Slide Animation component]({% slug animationtypes_animation_native %}#toc-slide). | ||
* | ||
@@ -19,0 +19,0 @@ * @example |
@@ -5,3 +5,3 @@ import { VueComponent } from '@progress/kendo-vue-common'; | ||
/** | ||
* Specifies the direction of the Zoom Animation ([see example]({% slug direction_animation %}#toc-zoom)). | ||
* Specifies the direction of the Zoom Animation ([see example]({% slug direction_animation_native %}#toc-zoom)). | ||
* | ||
@@ -14,3 +14,3 @@ * The supported directions are: | ||
/** | ||
* Represent the props of the [KendoReact Zoom Animation component]({% slug animationtypes_animation %}#toc-zoom). | ||
* Represent the props of the [KendoVue Zoom Animation component]({% slug animationtypes_animation_native %}#toc-zoom). | ||
* | ||
@@ -48,3 +48,3 @@ * @example | ||
/** | ||
* Specifies whether the child elements will stack on top of each other without interfering ([more information and examples]({% slug stacked_animation %})). | ||
* Specifies whether the child elements will stack on top of each other without interfering ([more information and examples]({% slug stacked_animation_native %})). | ||
*/ | ||
@@ -51,0 +51,0 @@ stackChildren?: boolean; |
@@ -10,3 +10,3 @@ import { VueComponent } from '@progress/kendo-vue-common'; | ||
* When the element reaches its exit state, it is no longer available | ||
* in the DOM ([see example]({% slug exitingchildcomponents_animation %})). | ||
* in the DOM. | ||
*/ | ||
@@ -32,3 +32,3 @@ childFactory?: any; | ||
* Specifies whether the Animation children will stack on top of each other | ||
* without interfering ([see example]({% slug stacked_animation %})). | ||
* without interfering ([see example]({% slug stacked_animation_native %})). | ||
*/ | ||
@@ -38,3 +38,3 @@ stackChildren?: boolean; | ||
* Specifies the `classNames` which will be applied during the | ||
* transition ([see example]({% slug customizing_animation %})). | ||
* transition ([see example]({% slug customizing_animation_native %})). | ||
*/ | ||
@@ -41,0 +41,0 @@ transitionName: string; |
@@ -152,2 +152,4 @@ "use strict"; | ||
appear: this.$props.appear, | ||
enter: this.$props.enter, | ||
exit: this.$props.exit, | ||
transitionName: this.$props.transitionName, | ||
@@ -187,19 +189,17 @@ componentChildClassName: this.$props.componentChildClassName, | ||
type: Boolean, | ||
required: true | ||
default: true | ||
}, | ||
enter: { | ||
type: Boolean, | ||
required: true | ||
default: true | ||
}, | ||
exit: { | ||
type: Boolean, | ||
required: true | ||
default: true | ||
}, | ||
transitionEnterDuration: { | ||
type: Number, | ||
required: true | ||
type: Number | ||
}, | ||
transitionExitDuration: { | ||
type: Number, | ||
required: true | ||
type: Number | ||
} | ||
@@ -206,0 +206,0 @@ } |
@@ -200,5 +200,7 @@ "use strict"; | ||
var childElementStyles = [defaultStyle, animationStyle[this.animationStep]]; | ||
var enterDuration = enter ? transitionEnterDuration : 0; | ||
var exitDuration = exit ? transitionExitDuration : 0; | ||
var duration = { | ||
enter: transitionEnterDuration, | ||
leave: transitionExitDuration | ||
enter: enterDuration, | ||
leave: exitDuration | ||
}; | ||
@@ -243,5 +245,14 @@ var hasChildren = !!this.$slots.default; | ||
className: String, | ||
appear: Boolean, | ||
enter: Boolean, | ||
exit: Boolean, | ||
appear: { | ||
type: Boolean, | ||
default: true | ||
}, | ||
enter: { | ||
type: Boolean, | ||
default: true | ||
}, | ||
exit: { | ||
type: Boolean, | ||
default: true | ||
}, | ||
transitionEnterDuration: Number, | ||
@@ -248,0 +259,0 @@ transitionExitDuration: Number, |
@@ -28,23 +28,23 @@ import { AnimationChild } from './AnimationChild'; | ||
/** | ||
* Called when a component is added to an existing Animation component and the Animation has not started yet ([more information and example]({% slug lifecyclehooks_animation %}#toc-adding-child-elements)). | ||
* Called when a component is added to an existing Animation component and the Animation has not started yet . | ||
*/ | ||
onEnter?: (event: AnimationEventArguments) => void; | ||
/** | ||
* Called when a component is added to an existing Animation component and the Animation is now happening ([more information and example]({% slug lifecyclehooks_animation %}#toc-adding-child-elements)). | ||
* Called when a component is added to an existing Animation component and the Animation is now happening. | ||
*/ | ||
onEntering?: (event: AnimationEventArguments) => void; | ||
/** | ||
* Called when a component is added to an existing Animation component and the Animation is now finished ([more information and example]({% slug lifecyclehooks_animation %}#toc-adding-child-elements)). | ||
* Called when a component is added to an existing Animation component and the Animation is now finished. | ||
*/ | ||
onEntered?: (event: AnimationEventArguments) => void; | ||
/** | ||
* An event that is called after the Animation has reached its exit state ([more information and example]({% slug lifecyclehooks_animation %}#toc-removing-child-elements)). | ||
* An event that is called after the Animation has reached its exit state. | ||
*/ | ||
onExit?: (event: AnimationEventArguments) => void; | ||
/** | ||
* An event that is called after the Animation has reached its exiting state ([more information and example]({% slug lifecyclehooks_animation %}#toc-removing-child-elements)). | ||
* An event that is called after the Animation has reached its exiting state. | ||
*/ | ||
onExiting?: (event: AnimationEventArguments) => void; | ||
/** | ||
* An event that is called after the Animation has reached its exited state ([more information and example]({% slug lifecyclehooks_animation %}#toc-removing-child-elements)). | ||
* An event that is called after the Animation has reached its exited state. | ||
*/ | ||
@@ -57,15 +57,15 @@ onExited?: (event: AnimationEventArguments) => void; | ||
/** | ||
* Specifies whether to animate the entering (showing) element ([see example]({% slug disabledstate_animation %})). Defaults to `true`. | ||
* Specifies whether to animate the entering (showing) element ([see example]({% slug disabledstate_animation_native %})). Defaults to `true`. | ||
*/ | ||
enter?: boolean; | ||
/** | ||
* Specifies whether to animate a leaving (disappearing) element ([see example]({% slug disabledstate_animation %})). Defaults to `true`. | ||
* Specifies whether to animate a leaving (disappearing) element ([see example]({% slug disabledstate_animation_native %})). Defaults to `true`. | ||
*/ | ||
exit?: boolean; | ||
/** | ||
* Specifies the duration of the transition for the entering (`animation in`) Animation ([see example]({% slug duration_animation %})). After the time runs out, the Animation is terminated. Defaults to `300ms`. | ||
* Specifies the duration of the transition for the entering (`animation in`) Animation ([see example]({% slug duration_animation_native %})). After the time runs out, the Animation is terminated. Defaults to `300ms`. | ||
*/ | ||
transitionEnterDuration?: number; | ||
/** | ||
* Specifies the duration of the transition for the exiting (`animation out`) Animation ([see example]({% slug duration_animation %})). After the time runs out, the Animation is terminated. Defaults to `300ms`. | ||
* Specifies the duration of the transition for the exiting (`animation out`) Animation ([see example]({% slug duration_animation_native %})). After the time runs out, the Animation is terminated. Defaults to `300ms`. | ||
*/ | ||
@@ -72,0 +72,0 @@ transitionExitDuration?: number; |
@@ -5,3 +5,3 @@ import { VueComponent } from '@progress/kendo-vue-common'; | ||
/** | ||
* Specifies the direction of the Expand Animation ([see example]({% slug direction_animation %}#toc-expand)). | ||
* Specifies the direction of the Expand Animation ([see example]({% slug direction_animation_native %}#toc-expand)). | ||
* | ||
@@ -14,3 +14,3 @@ * The supported directions are: | ||
/** | ||
* Represent the props of the [KendoReact Expand Animation component]({% slug animationtypes_animation %}#toc-expand). | ||
* Represent the props of the [KendoVue Expand Animation component]({% slug animationtypes_animation_native %}#toc-expand). | ||
* | ||
@@ -17,0 +17,0 @@ * @example |
@@ -5,3 +5,3 @@ import { VueComponent } from '@progress/kendo-vue-common'; | ||
/** | ||
* Represent the props of the [KendoReact Fade Animation component]({% slug animationtypes_animation %}#toc-fade). | ||
* Represent the props of the [KendoVue Fade Animation component]({% slug animationtypes_animation_native %}#toc-fade). | ||
* | ||
@@ -8,0 +8,0 @@ * @example |
@@ -5,3 +5,3 @@ import { VueComponent } from '@progress/kendo-vue-common'; | ||
/** | ||
* Specifies the direction of the Push Animation ([see example]({% slug direction_animation %}#toc-push)). | ||
* Specifies the direction of the Push Animation ([see example]({% slug direction_animation_native %}#toc-push)). | ||
* | ||
@@ -16,3 +16,3 @@ * The supported directions are: | ||
/** | ||
* Represent the props of the [KendoReact Push Animation component]({% slug animationtypes_animation %}#toc-push). | ||
* Represent the props of the [KendoVue Push Animation component]({% slug animationtypes_animation_native %}#toc-push). | ||
* | ||
@@ -51,3 +51,3 @@ * @example | ||
* Specifies whether the child elements will stack on top of each other without | ||
* interfering ([more information and examples]({% slug stacked_animation %})). | ||
* interfering ([more information and examples]({% slug stacked_animation_native %})). | ||
*/ | ||
@@ -54,0 +54,0 @@ stackChildren?: boolean; |
@@ -5,3 +5,3 @@ import { VueComponent } from '@progress/kendo-vue-common'; | ||
/** | ||
* Specifies the direction of the Reveal Animation ([see example]({% slug direction_animation %}#toc-reveal)). | ||
* Specifies the direction of the Reveal Animation ([see example]({% slug direction_animation_native %}#toc-reveal)). | ||
* | ||
@@ -14,3 +14,3 @@ * The supported directions are: | ||
/** | ||
* Represent the props of the [KendoReact Reveal Animation component]({% slug animationtypes_animation %}#toc-rveal). | ||
* Represent the props of the [KendoVue Reveal Animation component]({% slug animationtypes_animation_native %}#toc-rveal). | ||
* | ||
@@ -17,0 +17,0 @@ * @example |
@@ -127,3 +127,3 @@ "use strict"; | ||
// if (!child.props.in) { | ||
// return React.cloneElement(child, { | ||
// return Vue.cloneElement(child, { | ||
// ...child.props, | ||
@@ -130,0 +130,0 @@ // style: { |
@@ -5,3 +5,3 @@ import { VueComponent } from '@progress/kendo-vue-common'; | ||
/** | ||
* Specifies the direction of the Slide Animation ([see example]({% slug direction_animation %}#toc-slide)). | ||
* Specifies the direction of the Slide Animation ([see example]({% slug direction_animation_native %}#toc-slide)). | ||
* | ||
@@ -16,3 +16,3 @@ * The supported directions are: | ||
/** | ||
* Represent the props of the [KendoReact Slide Animation component]({% slug animationtypes_animation %}#toc-slide). | ||
* Represent the props of the [KendoVue Slide Animation component]({% slug animationtypes_animation_native %}#toc-slide). | ||
* | ||
@@ -19,0 +19,0 @@ * @example |
@@ -5,3 +5,3 @@ import { VueComponent } from '@progress/kendo-vue-common'; | ||
/** | ||
* Specifies the direction of the Zoom Animation ([see example]({% slug direction_animation %}#toc-zoom)). | ||
* Specifies the direction of the Zoom Animation ([see example]({% slug direction_animation_native %}#toc-zoom)). | ||
* | ||
@@ -14,3 +14,3 @@ * The supported directions are: | ||
/** | ||
* Represent the props of the [KendoReact Zoom Animation component]({% slug animationtypes_animation %}#toc-zoom). | ||
* Represent the props of the [KendoVue Zoom Animation component]({% slug animationtypes_animation_native %}#toc-zoom). | ||
* | ||
@@ -48,3 +48,3 @@ * @example | ||
/** | ||
* Specifies whether the child elements will stack on top of each other without interfering ([more information and examples]({% slug stacked_animation %})). | ||
* Specifies whether the child elements will stack on top of each other without interfering ([more information and examples]({% slug stacked_animation_native %})). | ||
*/ | ||
@@ -51,0 +51,0 @@ stackChildren?: boolean; |
@@ -1,1 +0,1 @@ | ||
System.register("@progress/kendo-vue-animation",["@progress/kendo-vue-common","vue-class-component"],function(c){var o,a;function e(t){return t.__useDefault?t.default:t}return{setters:[function(t){o=e(t)},function(t){a=e(t)}],execute:function(){function r(t){if(i[t])return i[t].exports;var e=i[t]={i:t,l:!1,exports:{}};return n[t].call(e.exports,e,e.exports,r),e.l=!0,e.exports}var n,i;i={},r.m=n=[function(t,e){t.exports=a},function(t,e){t.exports=o},function(t,e,n){"use strict";function i(t){return t&&t.__esModule?t:{default:t}}var r,l="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},o=(r=function(t,e){return(r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])})(t,e)},function(t,e){function n(){this.constructor=t}r(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)});Object.defineProperty(e,"__esModule",{value:!0});var a,p=i(n(0)),s=n(1),u=n(4),c=i(n(3)).default.styles,f=(a=s.VueComponent,o(d,a),d.prototype.onEntering=function(t){this.$emit("entering",t)},d.prototype.onEnter=function(t){this.$emit("enter",t)},d.prototype.onEntered=function(t){this.$emit("entered",t)},d.prototype.onExit=function(t){this.$emit("exit",t)},d.prototype.onExiting=function(t){this.$emit("exiting",t)},d.prototype.onExited=function(t){this.$emit("exited",t)},d.prototype.render=function(t){var e=this.$props,n=(e.id,e.tag,e.className),i=(e.childFactory,e.stackChildren,e.componentChildStyle,e.componentChildClassName,function(t,e){var n={};for(var i in t)Object.prototype.hasOwnProperty.call(t,i)&&e.indexOf(i)<0&&(n[i]=t[i]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var r=0;for(i=Object.getOwnPropertySymbols(t);r<i.length;r++)e.indexOf(i[r])<0&&Object.prototype.propertyIsEnumerable.call(t,i[r])&&(n[i[r]]=t[i[r]])}}(e,["id","tag","className","childFactory","stackChildren","componentChildStyle","componentChildClassName"]),[c["animation-container"],c["animation-container-relative"],n]);return t("div",{attrs:{id:this.$props.id},class:i},[t(u.AnimationChild,{key:"some",attrs:{appear:this.$props.appear,transitionName:this.$props.transitionName,componentChildClassName:this.$props.componentChildClassName,animationEnteringStyle:this.$props.animationEnteringStyle,animationExitingStyle:this.$props.animationExitingStyle,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration},on:{enter:this.onEnter,entering:this.onEntering,entered:this.onEntered,exit:this.onExit,exiting:this.onExiting,exited:this.onExited}},[this.$slots.default])])},function(t,e,n,i){var r,o=arguments.length,a=o<3?e:null===i?i=Object.getOwnPropertyDescriptor(e,n):i;if("object"===("undefined"==typeof Reflect?"undefined":l(Reflect))&&"function"==typeof Reflect.decorate)a=Reflect.decorate(t,e,n,i);else for(var p=t.length-1;0<=p;p--)(r=t[p])&&(a=(o<3?r(a):3<o?r(e,n,a):r(e,n))||a);return 3<o&&a&&Object.defineProperty(e,n,a),a}([p.default({props:{childFactory:Object,className:String,tag:String,id:String,animationEnteringStyle:Object,animationExitingStyle:Object,componentChildClassName:[String,Array],transitionName:{type:String,required:!0},appear:{type:Boolean,required:!0},enter:{type:Boolean,required:!0},exit:{type:Boolean,required:!0},transitionEnterDuration:{type:Number,required:!0},transitionExitDuration:{type:Number,required:!0}}})],d));function d(){return null!==a&&a.apply(this,arguments)||this}e.Animation=f},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={outerHeight:function(t){if(!t)return 0;var e=t.ownerDocument.defaultView.getComputedStyle(t),n=parseFloat(e.marginTop),i=parseFloat(e.marginBottom);return t.offsetHeight+n+i},outerWidth:function(t){if(!t)return 0;var e=t.ownerDocument.defaultView.getComputedStyle(t),n=parseFloat(e.marginLeft),i=parseFloat(e.marginRight);return t.offsetWidth+n+i},styles:{"animation-container":"k-animation-container","animation-container-relative":"k-animation-container-relative","animation-container-fixed":"k-animation-container-fixed","push-right-enter":"k-push-right-enter","push-right-appear":"k-push-right-appear","push-right-enter-active":"k-push-right-enter-active","push-right-appear-active":"k-push-right-appear-active","push-right-exit":"k-push-right-exit","push-right-exit-active":"k-push-right-exit-active","push-left-enter":"k-push-left-enter","push-left-appear":"k-push-left-appear","push-left-enter-active":"k-push-left-enter-active","push-left-appear-active":"k-push-left-appear-active","push-left-exit":"k-push-left-exit","push-left-exit-active":"k-push-left-exit-active","push-down-enter":"k-push-down-enter","push-down-appear":"k-push-down-appear","push-down-enter-active":"k-push-down-enter-active","push-down-appear-active":"k-push-down-appear-active","push-down-exit":"k-push-down-exit","push-down-exit-active":"k-push-down-exit-active","push-up-enter":"k-push-up-enter","push-up-appear":"k-push-up-appear","push-up-enter-active":"k-push-up-enter-active","push-up-appear-active":"k-push-up-appear-active","push-up-exit":"k-push-up-exit","push-up-exit-active":"k-push-up-exit-active",expand:"k-expand","expand-vertical-enter":"k-expand-vertical-enter","expand-vertical-appear":"k-expand-vertical-appear","expand-vertical-enter-active":"k-expand-vertical-enter-active","expand-vertical-appear-active":"k-expand-vertical-appear-active","expand-vertical-exit":"k-expand-vertical-exit","expand-vertical-exit-active":"k-expand-vertical-exit-active","expand-horizontal-enter":"k-expand-horizontal-enter","expand-horizontal-appear":"k-expand-horizontal-appear","expand-horizontal-enter-active":"k-expand-horizontal-enter-active","expand-horizontal-appear-active":"k-expand-horizontal-appear-active","expand-horizontal-exit":"k-expand-horizontal-exit","expand-horizontal-exit-active":"k-expand-horizontal-exit-active","child-animation-container":"k-child-animation-container","fade-enter":"k-fade-enter","fade-appear":"k-fade-appear","fade-enter-active":"k-fade-enter-active","fade-appear-active":"k-fade-appear-active","fade-exit":"k-fade-exit","fade-exit-active":"k-fade-exit-active","zoom-in-enter":"k-zoom-in-enter","zoom-in-appear":"k-zoom-in-appear","zoom-in-enter-active":"k-zoom-in-enter-active","zoom-in-appear-active":"k-zoom-in-appear-active","zoom-in-exit":"k-zoom-in-exit","zoom-in-exit-active":"k-zoom-in-exit-active","zoom-out-enter":"k-zoom-out-enter","zoom-out-appear":"k-zoom-out-appear","zoom-out-enter-active":"k-zoom-out-enter-active","zoom-out-appear-active":"k-zoom-out-appear-active","zoom-out-exit":"k-zoom-out-exit","zoom-out-exit-active":"k-zoom-out-exit-active","slide-in-appear":"k-slide-in-appear",centered:"k-centered","slide-in-appear-active":"k-slide-in-appear-active","slide-down-enter":"k-slide-down-enter","slide-down-appear":"k-slide-down-appear","slide-down-enter-active":"k-slide-down-enter-active","slide-down-appear-active":"k-slide-down-appear-active","slide-down-exit":"k-slide-down-exit","slide-down-exit-active":"k-slide-down-exit-active","slide-up-enter":"k-slide-up-enter","slide-up-appear":"k-slide-up-appear","slide-up-enter-active":"k-slide-up-enter-active","slide-up-appear-active":"k-slide-up-appear-active","slide-up-exit":"k-slide-up-exit","slide-up-exit-active":"k-slide-up-exit-active","slide-right-enter":"k-slide-right-enter","slide-right-appear":"k-slide-right-appear","slide-right-enter-active":"k-slide-right-enter-active","slide-right-appear-active":"k-slide-right-appear-active","slide-right-exit":"k-slide-right-exit","slide-right-exit-active":"k-slide-right-exit-active","slide-left-enter":"k-slide-left-enter","slide-left-appear":"k-slide-left-appear","slide-left-enter-active":"k-slide-left-enter-active","slide-left-appear-active":"k-slide-left-appear-active","slide-left-exit":"k-slide-left-exit","slide-left-exit-active":"k-slide-left-exit-active","reveal-vertical-enter":"k-reveal-vertical-enter","reveal-vertical-appear":"k-reveal-vertical-appear","reveal-vertical-enter-active":"k-reveal-vertical-enter-active","reveal-vertical-appear-active":"k-reveal-vertical-appear-active","reveal-vertical-exit":"k-reveal-vertical-exit","reveal-vertical-exit-active":"k-reveal-vertical-exit-active","reveal-horizontal-enter":"k-reveal-horizontal-enter","reveal-horizontal-appear":"k-reveal-horizontal-appear","reveal-horizontal-enter-active":"k-reveal-horizontal-enter-active","reveal-horizontal-appear-active":"k-reveal-horizontal-appear-active","reveal-horizontal-exit":"k-reveal-horizontal-exit","reveal-horizontal-exit-active":"k-reveal-horizontal-exit-active"}}},function(t,e,n){"use strict";function i(t){return t&&t.__esModule?t:{default:t}}var r,l="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},o=(r=function(t,e){return(r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])})(t,e)},function(t,e){function n(){this.constructor=t}r(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}),h=function(){return(h=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0});var a,p=i(n(0)),s=n(1),m=i(n(3)).default.styles,u=(a=s.VueComponent,o(c,a),Object.defineProperty(c.prototype,"element",{get:function(){return this._element},enumerable:!0,configurable:!0}),c.prototype.mounted=function(){this._element=this.$refs.element||null},c.prototype.onBeforeEnter=function(t){this.$emit("enter",{animatedElement:t,target:this})},c.prototype.onEnter=function(t){this.animationStep="entering",this.$emit("entering",{animatedElement:t,target:this})},c.prototype.onAfterEnter=function(t){this.animationStep="entered",this.$emit("entered",{animatedElement:t,target:this})},c.prototype.onBeforeLeave=function(t){this.$emit("exit",{animatedElement:t,target:this})},c.prototype.onLeave=function(t){this.animationStep="exiting",this.$emit("exiting",{animatedElement:t,target:this})},c.prototype.onAfterLeave=function(t){this.animationStep="exited",this.$emit("exited",{animatedElement:t,target:this})},c.prototype.render=function(t){var e=this.$props,n=e.appear,i=(e.enter,e.exit,e.transitionName),r=e.transitionEnterDuration,o=e.transitionExitDuration,a=(e.className,e.componentChildClassName),p=(e.mountOnEnter,e.unmountOnExit,e.animationEnteringStyle),l=e.animationEnteredStyle,s=e.animationExitingStyle,u=e.animationExitedStyle,c=(function(t,e){var n={};for(var i in t)Object.prototype.hasOwnProperty.call(t,i)&&e.indexOf(i)<0&&(n[i]=t[i]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var r=0;for(i=Object.getOwnPropertySymbols(t);r<i.length;r++)e.indexOf(i[r])<0&&Object.prototype.propertyIsEnumerable.call(t,i[r])&&(n[i[r]]=t[i[r]])}}(e,["appear","enter","exit","transitionName","transitionEnterDuration","transitionExitDuration","className","componentChildClassName","mountOnEnter","unmountOnExit","animationEnteringStyle","animationEnteredStyle","animationExitingStyle","animationExitedStyle"]),[a,m["child-animation-container"]]),f=[h({transitionDelay:"0ms"},this.$props.transitionStyle),{entering:h({transitionDuration:r+"ms"},p),entered:h({},l),exiting:h({transitionDuration:o+"ms"},s),exited:h({},u)}[this.animationStep]],d={enter:r,leave:o},y=!!this.$slots.default;return t("transition",{attrs:{duration:d,name:i,appear:n,appearClass:m[i+"-appear"]||i+"-appear",appearToClass:m[i+"-appear-active"]||i+"-appear-active",enterClass:m[i+"-enter"]||i+"-enter",enterToClass:m[i+"-enter-active"]||i+"-enter-active",leaveClass:m[i+"-exit"]||i+"-exit",leaveToClass:m[i+"-exit-active"]||i+"-exit-active"},on:{beforeEnter:this.onBeforeEnter,enter:this.onEnter,afterEnter:this.onAfterEnter,beforeLeave:this.onBeforeLeave,leave:this.onLeave,afterLeave:this.onAfterLeave}},[y?t("div",{style:f,class:c,ref:"element"},[this.$slots.default]):null,"}}"])},function(t,e,n,i){var r,o=arguments.length,a=o<3?e:null===i?i=Object.getOwnPropertyDescriptor(e,n):i;if("object"===("undefined"==typeof Reflect?"undefined":l(Reflect))&&"function"==typeof Reflect.decorate)a=Reflect.decorate(t,e,n,i);else for(var p=t.length-1;0<=p;p--)(r=t[p])&&(a=(o<3?r(a):3<o?r(e,n,a):r(e,n))||a);return 3<o&&a&&Object.defineProperty(e,n,a),a}([p.default({props:{in:Boolean,transitionName:{type:String,required:!0},transitionStyle:Object,componentChildClassName:[String,Array],className:String,appear:Boolean,enter:Boolean,exit:Boolean,transitionEnterDuration:Number,transitionExitDuration:Number,mountOnEnter:Boolean,unmountOnExit:Boolean,animationEnteringStyle:Object,animationEnteredStyle:Object,animationExitingStyle:Object,animationExitedStyle:Object}})],c));function c(){return null!==a&&a.apply(this,arguments)||this}e.AnimationChild=u},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=n(2);e.Animation=i.Animation;var r=n(4);e.AnimationChild=r.AnimationChild;var o=n(6);e.Fade=o.Fade;var a=n(7);e.Expand=a.Expand;var p=n(8);e.Push=p.Push;var l=n(9);e.Slide=l.Slide;var s=n(10);e.Zoom=s.Zoom;var u=n(11);e.Reveal=u.Reveal,function(t){for(var e in t)c(e,t[e])}(e)},function(t,e,n){"use strict";var i,l="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},r=(i=function(t,e){return(i=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])})(t,e)},function(t,e){function n(){this.constructor=t}i(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)});Object.defineProperty(e,"__esModule",{value:!0});var o,a,p=(a=n(0))&&a.__esModule?a:{default:a},s=n(1),u=n(2),c=(o=s.VueComponent,r(f,o),f.prototype.render=function(t){return t(u.Animation,{attrs:{transitionName:"fade",appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration}},[this.$slots.default])},function(t,e,n,i){var r,o=arguments.length,a=o<3?e:null===i?i=Object.getOwnPropertyDescriptor(e,n):i;if("object"===("undefined"==typeof Reflect?"undefined":l(Reflect))&&"function"==typeof Reflect.decorate)a=Reflect.decorate(t,e,n,i);else for(var p=t.length-1;0<=p;p--)(r=t[p])&&(a=(o<3?r(a):3<o?r(e,n,a):r(e,n))||a);return 3<o&&a&&Object.defineProperty(e,n,a),a}([p.default({props:{appear:{type:Boolean,default:!1},enter:{type:Boolean,default:!0},exit:{type:Boolean,default:!1},transitionEnterDuration:{type:Number,default:500},transitionExitDuration:{type:Number,default:500},childFactory:Object,className:String,direction:{type:String,default:"vertical"},tag:String,id:String}})],f));function f(){return null!==o&&o.apply(this,arguments)||this}e.Fade=c},function(t,e,n){"use strict";var i,l="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},r=(i=function(t,e){return(i=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])})(t,e)},function(t,e){function n(){this.constructor=t}i(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)});Object.defineProperty(e,"__esModule",{value:!0});var o,a,p=(a=n(0))&&a.__esModule?a:{default:a},s=n(1),u=n(2),c=(o=s.VueComponent,r(f,o),f.prototype.render=function(t){var e=this.$props,n=(e.direction,function(t,e){var n={};for(var i in t)Object.prototype.hasOwnProperty.call(t,i)&&e.indexOf(i)<0&&(n[i]=t[i]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var r=0;for(i=Object.getOwnPropertySymbols(t);r<i.length;r++)e.indexOf(i[r])<0&&Object.prototype.propertyIsEnumerable.call(t,i[r])&&(n[i[r]]=t[i[r]])}}(e,["direction"]),"expand-"+this.$props.direction);return t(u.Animation,{attrs:{transitionName:n,appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration}},[this.$slots.default])},function(t,e,n,i){var r,o=arguments.length,a=o<3?e:null===i?i=Object.getOwnPropertyDescriptor(e,n):i;if("object"===("undefined"==typeof Reflect?"undefined":l(Reflect))&&"function"==typeof Reflect.decorate)a=Reflect.decorate(t,e,n,i);else for(var p=t.length-1;0<=p;p--)(r=t[p])&&(a=(o<3?r(a):3<o?r(e,n,a):r(e,n))||a);return 3<o&&a&&Object.defineProperty(e,n,a),a}([p.default({props:{appear:{type:Boolean,default:!1},enter:{type:Boolean,default:!0},exit:{type:Boolean,default:!0},transitionEnterDuration:{type:Number,default:300},transitionExitDuration:{type:Number,default:300},childFactory:Object,className:String,direction:{type:String,default:"vertical"},tag:String,id:String}})],f));function f(){return null!==o&&o.apply(this,arguments)||this}e.Expand=c},function(t,e,n){"use strict";var i,l="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},r=(i=function(t,e){return(i=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])})(t,e)},function(t,e){function n(){this.constructor=t}i(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)});Object.defineProperty(e,"__esModule",{value:!0});var o,a,p=(a=n(0))&&a.__esModule?a:{default:a},s=n(1),u=n(2),c={position:"absolute",top:"0",left:"0"},f=(o=s.VueComponent,r(d,o),d.prototype.render=function(t){var e="push-"+this.$props.direction;return t(u.Animation,{attrs:{transitionName:e,appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration,animationExitingStyle:this.$props.stackChildren?c:void 0}},[this.$slots.default])},function(t,e,n,i){var r,o=arguments.length,a=o<3?e:null===i?i=Object.getOwnPropertyDescriptor(e,n):i;if("object"===("undefined"==typeof Reflect?"undefined":l(Reflect))&&"function"==typeof Reflect.decorate)a=Reflect.decorate(t,e,n,i);else for(var p=t.length-1;0<=p;p--)(r=t[p])&&(a=(o<3?r(a):3<o?r(e,n,a):r(e,n))||a);return 3<o&&a&&Object.defineProperty(e,n,a),a}([p.default({props:{appear:{type:Boolean,default:!1},enter:{type:Boolean,default:!0},exit:{type:Boolean,default:!0},transitionEnterDuration:{type:Number,default:300},transitionExitDuration:{type:Number,default:300},childFactory:Object,className:String,direction:{type:String,default:"right"},tag:String,id:String}})],d));function d(){return null!==o&&o.apply(this,arguments)||this}e.Push=f},function(t,e,n){"use strict";var i,l="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},r=(i=function(t,e){return(i=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])})(t,e)},function(t,e){function n(){this.constructor=t}i(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)});Object.defineProperty(e,"__esModule",{value:!0});var o,a,p=(a=n(0))&&a.__esModule?a:{default:a},s=n(1),u=n(2),c=(o=s.VueComponent,r(f,o),f.prototype.onEntering=function(t){this.$emit("entering",t)},f.prototype.onEnter=function(t){this.$emit("enter",t)},f.prototype.onEntered=function(t){this.$emit("entered",t)},f.prototype.onExit=function(t){this.$emit("exit",t)},f.prototype.onExiting=function(t){this.$emit("exiting",t)},f.prototype.onExited=function(t){this.$emit("exited",t)},f.prototype.render=function(t){var e=this.$props,n=(e.direction,function(t,e){var n={};for(var i in t)Object.prototype.hasOwnProperty.call(t,i)&&e.indexOf(i)<0&&(n[i]=t[i]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var r=0;for(i=Object.getOwnPropertySymbols(t);r<i.length;r++)e.indexOf(i[r])<0&&Object.prototype.propertyIsEnumerable.call(t,i[r])&&(n[i[r]]=t[i[r]])}}(e,["direction"]),"slide-"+this.$props.direction);return t(u.Animation,{attrs:{transitionName:n,componentChildClassName:this.$props.componentChildClassName,appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration},on:{enter:this.onEnter,entering:this.onEntering,entered:this.onEntered,exit:this.onExit,exiting:this.onExiting,exited:this.onExited}},[this.$slots.default])},function(t,e,n,i){var r,o=arguments.length,a=o<3?e:null===i?i=Object.getOwnPropertyDescriptor(e,n):i;if("object"===("undefined"==typeof Reflect?"undefined":l(Reflect))&&"function"==typeof Reflect.decorate)a=Reflect.decorate(t,e,n,i);else for(var p=t.length-1;0<=p;p--)(r=t[p])&&(a=(o<3?r(a):3<o?r(e,n,a):r(e,n))||a);return 3<o&&a&&Object.defineProperty(e,n,a),a}([p.default({props:{appear:{type:Boolean,default:!1},enter:{type:Boolean,default:!0},exit:{type:Boolean,default:!0},transitionEnterDuration:{type:Number,default:300},transitionExitDuration:{type:Number,default:300},componentChildClassName:[String,Array],childFactory:Object,className:String,direction:{type:String,default:"down"},tag:String,id:String}})],f));function f(){return null!==o&&o.apply(this,arguments)||this}e.Slide=c},function(t,e,n){"use strict";var i,l="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},r=(i=function(t,e){return(i=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])})(t,e)},function(t,e){function n(){this.constructor=t}i(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)});Object.defineProperty(e,"__esModule",{value:!0});var o,a,p=(a=n(0))&&a.__esModule?a:{default:a},s=n(1),u=n(2),c={position:"absolute",top:"0",left:"0"},f=(o=s.VueComponent,r(d,o),d.prototype.render=function(t){var e="zoom-"+this.$props.direction;return t(u.Animation,{attrs:{transitionName:e,appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration,animationExitingStyle:this.$props.stackChildren?c:void 0}},[this.$slots.default])},function(t,e,n,i){var r,o=arguments.length,a=o<3?e:null===i?i=Object.getOwnPropertyDescriptor(e,n):i;if("object"===("undefined"==typeof Reflect?"undefined":l(Reflect))&&"function"==typeof Reflect.decorate)a=Reflect.decorate(t,e,n,i);else for(var p=t.length-1;0<=p;p--)(r=t[p])&&(a=(o<3?r(a):3<o?r(e,n,a):r(e,n))||a);return 3<o&&a&&Object.defineProperty(e,n,a),a}([p.default({props:{appear:{type:Boolean,default:!1},enter:{type:Boolean,default:!0},exit:{type:Boolean,default:!0},stackChildren:{type:Boolean,default:!1},transitionEnterDuration:{type:Number,default:300},transitionExitDuration:{type:Number,default:300},childFactory:Object,className:String,direction:{type:String,default:"out"},tag:String,id:String}})],d));function d(){return null!==o&&o.apply(this,arguments)||this}e.Zoom=f},function(t,e,n){"use strict";function i(t){return t&&t.__esModule?t:{default:t}}var r,l="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},o=(r=function(t,e){return(r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])})(t,e)},function(t,e){function n(){this.constructor=t}r(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)});Object.defineProperty(e,"__esModule",{value:!0});function a(){}var p,s=i(n(0)),u=n(1),c=n(2),f=i(n(3)),d=(p=u.VueComponent,o(y,p),Object.defineProperty(y.prototype,"animationEnteringStyle",{get:function(){var t;return{maxHeight:(t="vertical"===this.$props.direction?{maxHeight:this.maxHeight?this.maxHeight+"px":null}:{maxWidth:this.maxWidth?this.maxWidth+"px":null}).maxHeight,maxWidth:t.maxWidth}},enumerable:!0,configurable:!0}),y.prototype.render=function(t){var e=this.$props,n=(e.direction,e.childFactory,function(t,e){var n={};for(var i in t)Object.prototype.hasOwnProperty.call(t,i)&&e.indexOf(i)<0&&(n[i]=t[i]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var r=0;for(i=Object.getOwnPropertySymbols(t);r<i.length;r++)e.indexOf(i[r])<0&&Object.prototype.propertyIsEnumerable.call(t,i[r])&&(n[i[r]]=t[i[r]])}}(e,["direction","childFactory"]),"reveal-"+this.$props.direction);return t(c.Animation,{attrs:{appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration,animationEnteringStyle:this.animationEnteringStyle,transitionName:n},on:{enter:this.componentWillEnter,entering:this.componentIsEntering,exit:this.componentWillExit}},[this.$slots.default])},y.prototype.componentWillEnter=function(t){var e=this.$props.onEnter;this.updateContainerDimensions(t.animatedElement,function(){e&&e.call(void 0,t)})},y.prototype.componentIsEntering=function(t){var e=this.$props.onEntering;this.updateContainerDimensions(t.animatedElement,function(){e&&e.call(void 0,t)})},y.prototype.componentWillExit=function(t){var e=this.$props.onExit;this.updateContainerDimensions(t.animatedElement,function(){e&&e.call(void 0,t)})},y.prototype.updateContainerDimensions=function(t,e){void 0===e&&(e=a);var n=t.firstChild;if(n){var i=f.default.outerHeight(n),r=f.default.outerWidth(n);this.maxHeight=i,this.maxWidth=r,e()}},function(t,e,n,i){var r,o=arguments.length,a=o<3?e:null===i?i=Object.getOwnPropertyDescriptor(e,n):i;if("object"===("undefined"==typeof Reflect?"undefined":l(Reflect))&&"function"==typeof Reflect.decorate)a=Reflect.decorate(t,e,n,i);else for(var p=t.length-1;0<=p;p--)(r=t[p])&&(a=(o<3?r(a):3<o?r(e,n,a):r(e,n))||a);return 3<o&&a&&Object.defineProperty(e,n,a),a}([s.default({props:{appear:{type:Boolean,default:!1},enter:{type:Boolean,default:!0},exit:{type:Boolean,default:!0},transitionEnterDuration:{type:Number,default:300},transitionExitDuration:{type:Number,default:300},childFactory:Object,className:String,direction:{type:String,default:"vertical"},tag:String,id:String}})],y));function y(){var t=null!==p&&p.apply(this,arguments)||this;return t.maxHeight="",t.maxWidth="",t}e.Reveal=d}],r.c=i,r.d=function(t,e,n){r.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:n})},r.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},r.t=function(e,t){if(1&t&&(e=r(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(r.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)r.d(n,i,function(t){return e[t]}.bind(null,i));return n},r.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return r.d(e,"a",e),e},r.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},r.p="",r(r.s=5)}}}); | ||
System.register("@progress/kendo-vue-animation",["vue-class-component","@progress/kendo-vue-common"],function(c){var r,a;function e(t){return t.__useDefault?t.default:t}return{setters:[function(t){r=e(t)},function(t){a=e(t)}],execute:function(){function o(t){if(i[t])return i[t].exports;var e=i[t]={i:t,l:!1,exports:{}};return n[t].call(e.exports,e,e.exports,o),e.l=!0,e.exports}var n,i;i={},o.m=n=[function(t,e){t.exports=r},function(t,e){t.exports=a},function(t,e,n){"use strict";function i(t){return t&&t.__esModule?t:{default:t}}var o,l="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},r=(o=function(t,e){return(o=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])})(t,e)},function(t,e){function n(){this.constructor=t}o(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)});Object.defineProperty(e,"__esModule",{value:!0});var a,p=i(n(0)),s=n(1),u=n(4),c=i(n(3)).default.styles,f=(a=s.VueComponent,r(d,a),d.prototype.onEntering=function(t){this.$emit("entering",t)},d.prototype.onEnter=function(t){this.$emit("enter",t)},d.prototype.onEntered=function(t){this.$emit("entered",t)},d.prototype.onExit=function(t){this.$emit("exit",t)},d.prototype.onExiting=function(t){this.$emit("exiting",t)},d.prototype.onExited=function(t){this.$emit("exited",t)},d.prototype.render=function(t){var e=this.$props,n=(e.id,e.tag,e.className),i=(e.childFactory,e.stackChildren,e.componentChildStyle,e.componentChildClassName,function(t,e){var n={};for(var i in t)Object.prototype.hasOwnProperty.call(t,i)&&e.indexOf(i)<0&&(n[i]=t[i]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(i=Object.getOwnPropertySymbols(t);o<i.length;o++)e.indexOf(i[o])<0&&Object.prototype.propertyIsEnumerable.call(t,i[o])&&(n[i[o]]=t[i[o]])}}(e,["id","tag","className","childFactory","stackChildren","componentChildStyle","componentChildClassName"]),[c["animation-container"],c["animation-container-relative"],n]);return t("div",{attrs:{id:this.$props.id},class:i},[t(u.AnimationChild,{key:"some",attrs:{appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,transitionName:this.$props.transitionName,componentChildClassName:this.$props.componentChildClassName,animationEnteringStyle:this.$props.animationEnteringStyle,animationExitingStyle:this.$props.animationExitingStyle,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration},on:{enter:this.onEnter,entering:this.onEntering,entered:this.onEntered,exit:this.onExit,exiting:this.onExiting,exited:this.onExited}},[this.$slots.default])])},function(t,e,n,i){var o,r=arguments.length,a=r<3?e:null===i?i=Object.getOwnPropertyDescriptor(e,n):i;if("object"===("undefined"==typeof Reflect?"undefined":l(Reflect))&&"function"==typeof Reflect.decorate)a=Reflect.decorate(t,e,n,i);else for(var p=t.length-1;0<=p;p--)(o=t[p])&&(a=(r<3?o(a):3<r?o(e,n,a):o(e,n))||a);return 3<r&&a&&Object.defineProperty(e,n,a),a}([p.default({props:{childFactory:Object,className:String,tag:String,id:String,animationEnteringStyle:Object,animationExitingStyle:Object,componentChildClassName:[String,Array],transitionName:{type:String,required:!0},appear:{type:Boolean,default:!0},enter:{type:Boolean,default:!0},exit:{type:Boolean,default:!0},transitionEnterDuration:{type:Number},transitionExitDuration:{type:Number}}})],d));function d(){return null!==a&&a.apply(this,arguments)||this}e.Animation=f},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={outerHeight:function(t){if(!t)return 0;var e=t.ownerDocument.defaultView.getComputedStyle(t),n=parseFloat(e.marginTop),i=parseFloat(e.marginBottom);return t.offsetHeight+n+i},outerWidth:function(t){if(!t)return 0;var e=t.ownerDocument.defaultView.getComputedStyle(t),n=parseFloat(e.marginLeft),i=parseFloat(e.marginRight);return t.offsetWidth+n+i},styles:{"animation-container":"k-animation-container","animation-container-relative":"k-animation-container-relative","animation-container-fixed":"k-animation-container-fixed","push-right-enter":"k-push-right-enter","push-right-appear":"k-push-right-appear","push-right-enter-active":"k-push-right-enter-active","push-right-appear-active":"k-push-right-appear-active","push-right-exit":"k-push-right-exit","push-right-exit-active":"k-push-right-exit-active","push-left-enter":"k-push-left-enter","push-left-appear":"k-push-left-appear","push-left-enter-active":"k-push-left-enter-active","push-left-appear-active":"k-push-left-appear-active","push-left-exit":"k-push-left-exit","push-left-exit-active":"k-push-left-exit-active","push-down-enter":"k-push-down-enter","push-down-appear":"k-push-down-appear","push-down-enter-active":"k-push-down-enter-active","push-down-appear-active":"k-push-down-appear-active","push-down-exit":"k-push-down-exit","push-down-exit-active":"k-push-down-exit-active","push-up-enter":"k-push-up-enter","push-up-appear":"k-push-up-appear","push-up-enter-active":"k-push-up-enter-active","push-up-appear-active":"k-push-up-appear-active","push-up-exit":"k-push-up-exit","push-up-exit-active":"k-push-up-exit-active",expand:"k-expand","expand-vertical-enter":"k-expand-vertical-enter","expand-vertical-appear":"k-expand-vertical-appear","expand-vertical-enter-active":"k-expand-vertical-enter-active","expand-vertical-appear-active":"k-expand-vertical-appear-active","expand-vertical-exit":"k-expand-vertical-exit","expand-vertical-exit-active":"k-expand-vertical-exit-active","expand-horizontal-enter":"k-expand-horizontal-enter","expand-horizontal-appear":"k-expand-horizontal-appear","expand-horizontal-enter-active":"k-expand-horizontal-enter-active","expand-horizontal-appear-active":"k-expand-horizontal-appear-active","expand-horizontal-exit":"k-expand-horizontal-exit","expand-horizontal-exit-active":"k-expand-horizontal-exit-active","child-animation-container":"k-child-animation-container","fade-enter":"k-fade-enter","fade-appear":"k-fade-appear","fade-enter-active":"k-fade-enter-active","fade-appear-active":"k-fade-appear-active","fade-exit":"k-fade-exit","fade-exit-active":"k-fade-exit-active","zoom-in-enter":"k-zoom-in-enter","zoom-in-appear":"k-zoom-in-appear","zoom-in-enter-active":"k-zoom-in-enter-active","zoom-in-appear-active":"k-zoom-in-appear-active","zoom-in-exit":"k-zoom-in-exit","zoom-in-exit-active":"k-zoom-in-exit-active","zoom-out-enter":"k-zoom-out-enter","zoom-out-appear":"k-zoom-out-appear","zoom-out-enter-active":"k-zoom-out-enter-active","zoom-out-appear-active":"k-zoom-out-appear-active","zoom-out-exit":"k-zoom-out-exit","zoom-out-exit-active":"k-zoom-out-exit-active","slide-in-appear":"k-slide-in-appear",centered:"k-centered","slide-in-appear-active":"k-slide-in-appear-active","slide-down-enter":"k-slide-down-enter","slide-down-appear":"k-slide-down-appear","slide-down-enter-active":"k-slide-down-enter-active","slide-down-appear-active":"k-slide-down-appear-active","slide-down-exit":"k-slide-down-exit","slide-down-exit-active":"k-slide-down-exit-active","slide-up-enter":"k-slide-up-enter","slide-up-appear":"k-slide-up-appear","slide-up-enter-active":"k-slide-up-enter-active","slide-up-appear-active":"k-slide-up-appear-active","slide-up-exit":"k-slide-up-exit","slide-up-exit-active":"k-slide-up-exit-active","slide-right-enter":"k-slide-right-enter","slide-right-appear":"k-slide-right-appear","slide-right-enter-active":"k-slide-right-enter-active","slide-right-appear-active":"k-slide-right-appear-active","slide-right-exit":"k-slide-right-exit","slide-right-exit-active":"k-slide-right-exit-active","slide-left-enter":"k-slide-left-enter","slide-left-appear":"k-slide-left-appear","slide-left-enter-active":"k-slide-left-enter-active","slide-left-appear-active":"k-slide-left-appear-active","slide-left-exit":"k-slide-left-exit","slide-left-exit-active":"k-slide-left-exit-active","reveal-vertical-enter":"k-reveal-vertical-enter","reveal-vertical-appear":"k-reveal-vertical-appear","reveal-vertical-enter-active":"k-reveal-vertical-enter-active","reveal-vertical-appear-active":"k-reveal-vertical-appear-active","reveal-vertical-exit":"k-reveal-vertical-exit","reveal-vertical-exit-active":"k-reveal-vertical-exit-active","reveal-horizontal-enter":"k-reveal-horizontal-enter","reveal-horizontal-appear":"k-reveal-horizontal-appear","reveal-horizontal-enter-active":"k-reveal-horizontal-enter-active","reveal-horizontal-appear-active":"k-reveal-horizontal-appear-active","reveal-horizontal-exit":"k-reveal-horizontal-exit","reveal-horizontal-exit-active":"k-reveal-horizontal-exit-active"}}},function(t,e,n){"use strict";function i(t){return t&&t.__esModule?t:{default:t}}var o,l="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},r=(o=function(t,e){return(o=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])})(t,e)},function(t,e){function n(){this.constructor=t}o(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}),v=function(){return(v=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var o in e=arguments[n])Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o]);return t}).apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0});var a,p=i(n(0)),s=n(1),x=i(n(3)).default.styles,u=(a=s.VueComponent,r(c,a),Object.defineProperty(c.prototype,"element",{get:function(){return this._element},enumerable:!0,configurable:!0}),c.prototype.mounted=function(){this._element=this.$refs.element||null},c.prototype.onBeforeEnter=function(t){this.$emit("enter",{animatedElement:t,target:this})},c.prototype.onEnter=function(t){this.animationStep="entering",this.$emit("entering",{animatedElement:t,target:this})},c.prototype.onAfterEnter=function(t){this.animationStep="entered",this.$emit("entered",{animatedElement:t,target:this})},c.prototype.onBeforeLeave=function(t){this.$emit("exit",{animatedElement:t,target:this})},c.prototype.onLeave=function(t){this.animationStep="exiting",this.$emit("exiting",{animatedElement:t,target:this})},c.prototype.onAfterLeave=function(t){this.animationStep="exited",this.$emit("exited",{animatedElement:t,target:this})},c.prototype.render=function(t){var e=this.$props,n=e.appear,i=e.enter,o=e.exit,r=e.transitionName,a=e.transitionEnterDuration,p=e.transitionExitDuration,l=(e.className,e.componentChildClassName),s=(e.mountOnEnter,e.unmountOnExit,e.animationEnteringStyle),u=e.animationEnteredStyle,c=e.animationExitingStyle,f=e.animationExitedStyle,d=(function(t,e){var n={};for(var i in t)Object.prototype.hasOwnProperty.call(t,i)&&e.indexOf(i)<0&&(n[i]=t[i]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(i=Object.getOwnPropertySymbols(t);o<i.length;o++)e.indexOf(i[o])<0&&Object.prototype.propertyIsEnumerable.call(t,i[o])&&(n[i[o]]=t[i[o]])}}(e,["appear","enter","exit","transitionName","transitionEnterDuration","transitionExitDuration","className","componentChildClassName","mountOnEnter","unmountOnExit","animationEnteringStyle","animationEnteredStyle","animationExitingStyle","animationExitedStyle"]),[l,x["child-animation-container"]]),y=[v({transitionDelay:"0ms"},this.$props.transitionStyle),{entering:v({transitionDuration:a+"ms"},s),entered:v({},u),exiting:v({transitionDuration:p+"ms"},c),exited:v({},f)}[this.animationStep]],h={enter:i?a:0,leave:o?p:0},m=!!this.$slots.default;return t("transition",{attrs:{duration:h,name:r,appear:n,appearClass:x[r+"-appear"]||r+"-appear",appearToClass:x[r+"-appear-active"]||r+"-appear-active",enterClass:x[r+"-enter"]||r+"-enter",enterToClass:x[r+"-enter-active"]||r+"-enter-active",leaveClass:x[r+"-exit"]||r+"-exit",leaveToClass:x[r+"-exit-active"]||r+"-exit-active"},on:{beforeEnter:this.onBeforeEnter,enter:this.onEnter,afterEnter:this.onAfterEnter,beforeLeave:this.onBeforeLeave,leave:this.onLeave,afterLeave:this.onAfterLeave}},[m?t("div",{style:y,class:d,ref:"element"},[this.$slots.default]):null,"}}"])},function(t,e,n,i){var o,r=arguments.length,a=r<3?e:null===i?i=Object.getOwnPropertyDescriptor(e,n):i;if("object"===("undefined"==typeof Reflect?"undefined":l(Reflect))&&"function"==typeof Reflect.decorate)a=Reflect.decorate(t,e,n,i);else for(var p=t.length-1;0<=p;p--)(o=t[p])&&(a=(r<3?o(a):3<r?o(e,n,a):o(e,n))||a);return 3<r&&a&&Object.defineProperty(e,n,a),a}([p.default({props:{in:Boolean,transitionName:{type:String,required:!0},transitionStyle:Object,componentChildClassName:[String,Array],className:String,appear:{type:Boolean,default:!0},enter:{type:Boolean,default:!0},exit:{type:Boolean,default:!0},transitionEnterDuration:Number,transitionExitDuration:Number,mountOnEnter:Boolean,unmountOnExit:Boolean,animationEnteringStyle:Object,animationEnteredStyle:Object,animationExitingStyle:Object,animationExitedStyle:Object}})],c));function c(){return null!==a&&a.apply(this,arguments)||this}e.AnimationChild=u},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=n(2);e.Animation=i.Animation;var o=n(4);e.AnimationChild=o.AnimationChild;var r=n(6);e.Fade=r.Fade;var a=n(7);e.Expand=a.Expand;var p=n(8);e.Push=p.Push;var l=n(9);e.Slide=l.Slide;var s=n(10);e.Zoom=s.Zoom;var u=n(11);e.Reveal=u.Reveal,function(t){for(var e in t)c(e,t[e])}(e)},function(t,e,n){"use strict";var i,l="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},o=(i=function(t,e){return(i=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])})(t,e)},function(t,e){function n(){this.constructor=t}i(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)});Object.defineProperty(e,"__esModule",{value:!0});var r,a,p=(a=n(0))&&a.__esModule?a:{default:a},s=n(1),u=n(2),c=(r=s.VueComponent,o(f,r),f.prototype.render=function(t){return t(u.Animation,{attrs:{transitionName:"fade",appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration}},[this.$slots.default])},function(t,e,n,i){var o,r=arguments.length,a=r<3?e:null===i?i=Object.getOwnPropertyDescriptor(e,n):i;if("object"===("undefined"==typeof Reflect?"undefined":l(Reflect))&&"function"==typeof Reflect.decorate)a=Reflect.decorate(t,e,n,i);else for(var p=t.length-1;0<=p;p--)(o=t[p])&&(a=(r<3?o(a):3<r?o(e,n,a):o(e,n))||a);return 3<r&&a&&Object.defineProperty(e,n,a),a}([p.default({props:{appear:{type:Boolean,default:!1},enter:{type:Boolean,default:!0},exit:{type:Boolean,default:!1},transitionEnterDuration:{type:Number,default:500},transitionExitDuration:{type:Number,default:500},childFactory:Object,className:String,direction:{type:String,default:"vertical"},tag:String,id:String}})],f));function f(){return null!==r&&r.apply(this,arguments)||this}e.Fade=c},function(t,e,n){"use strict";var i,l="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},o=(i=function(t,e){return(i=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])})(t,e)},function(t,e){function n(){this.constructor=t}i(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)});Object.defineProperty(e,"__esModule",{value:!0});var r,a,p=(a=n(0))&&a.__esModule?a:{default:a},s=n(1),u=n(2),c=(r=s.VueComponent,o(f,r),f.prototype.render=function(t){var e=this.$props,n=(e.direction,function(t,e){var n={};for(var i in t)Object.prototype.hasOwnProperty.call(t,i)&&e.indexOf(i)<0&&(n[i]=t[i]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(i=Object.getOwnPropertySymbols(t);o<i.length;o++)e.indexOf(i[o])<0&&Object.prototype.propertyIsEnumerable.call(t,i[o])&&(n[i[o]]=t[i[o]])}}(e,["direction"]),"expand-"+this.$props.direction);return t(u.Animation,{attrs:{transitionName:n,appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration}},[this.$slots.default])},function(t,e,n,i){var o,r=arguments.length,a=r<3?e:null===i?i=Object.getOwnPropertyDescriptor(e,n):i;if("object"===("undefined"==typeof Reflect?"undefined":l(Reflect))&&"function"==typeof Reflect.decorate)a=Reflect.decorate(t,e,n,i);else for(var p=t.length-1;0<=p;p--)(o=t[p])&&(a=(r<3?o(a):3<r?o(e,n,a):o(e,n))||a);return 3<r&&a&&Object.defineProperty(e,n,a),a}([p.default({props:{appear:{type:Boolean,default:!1},enter:{type:Boolean,default:!0},exit:{type:Boolean,default:!0},transitionEnterDuration:{type:Number,default:300},transitionExitDuration:{type:Number,default:300},childFactory:Object,className:String,direction:{type:String,default:"vertical"},tag:String,id:String}})],f));function f(){return null!==r&&r.apply(this,arguments)||this}e.Expand=c},function(t,e,n){"use strict";var i,l="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},o=(i=function(t,e){return(i=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])})(t,e)},function(t,e){function n(){this.constructor=t}i(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)});Object.defineProperty(e,"__esModule",{value:!0});var r,a,p=(a=n(0))&&a.__esModule?a:{default:a},s=n(1),u=n(2),c={position:"absolute",top:"0",left:"0"},f=(r=s.VueComponent,o(d,r),d.prototype.render=function(t){var e="push-"+this.$props.direction;return t(u.Animation,{attrs:{transitionName:e,appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration,animationExitingStyle:this.$props.stackChildren?c:void 0}},[this.$slots.default])},function(t,e,n,i){var o,r=arguments.length,a=r<3?e:null===i?i=Object.getOwnPropertyDescriptor(e,n):i;if("object"===("undefined"==typeof Reflect?"undefined":l(Reflect))&&"function"==typeof Reflect.decorate)a=Reflect.decorate(t,e,n,i);else for(var p=t.length-1;0<=p;p--)(o=t[p])&&(a=(r<3?o(a):3<r?o(e,n,a):o(e,n))||a);return 3<r&&a&&Object.defineProperty(e,n,a),a}([p.default({props:{appear:{type:Boolean,default:!1},enter:{type:Boolean,default:!0},exit:{type:Boolean,default:!0},transitionEnterDuration:{type:Number,default:300},transitionExitDuration:{type:Number,default:300},childFactory:Object,className:String,direction:{type:String,default:"right"},tag:String,id:String}})],d));function d(){return null!==r&&r.apply(this,arguments)||this}e.Push=f},function(t,e,n){"use strict";var i,l="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},o=(i=function(t,e){return(i=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])})(t,e)},function(t,e){function n(){this.constructor=t}i(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)});Object.defineProperty(e,"__esModule",{value:!0});var r,a,p=(a=n(0))&&a.__esModule?a:{default:a},s=n(1),u=n(2),c=(r=s.VueComponent,o(f,r),f.prototype.onEntering=function(t){this.$emit("entering",t)},f.prototype.onEnter=function(t){this.$emit("enter",t)},f.prototype.onEntered=function(t){this.$emit("entered",t)},f.prototype.onExit=function(t){this.$emit("exit",t)},f.prototype.onExiting=function(t){this.$emit("exiting",t)},f.prototype.onExited=function(t){this.$emit("exited",t)},f.prototype.render=function(t){var e=this.$props,n=(e.direction,function(t,e){var n={};for(var i in t)Object.prototype.hasOwnProperty.call(t,i)&&e.indexOf(i)<0&&(n[i]=t[i]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(i=Object.getOwnPropertySymbols(t);o<i.length;o++)e.indexOf(i[o])<0&&Object.prototype.propertyIsEnumerable.call(t,i[o])&&(n[i[o]]=t[i[o]])}}(e,["direction"]),"slide-"+this.$props.direction);return t(u.Animation,{attrs:{transitionName:n,componentChildClassName:this.$props.componentChildClassName,appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration},on:{enter:this.onEnter,entering:this.onEntering,entered:this.onEntered,exit:this.onExit,exiting:this.onExiting,exited:this.onExited}},[this.$slots.default])},function(t,e,n,i){var o,r=arguments.length,a=r<3?e:null===i?i=Object.getOwnPropertyDescriptor(e,n):i;if("object"===("undefined"==typeof Reflect?"undefined":l(Reflect))&&"function"==typeof Reflect.decorate)a=Reflect.decorate(t,e,n,i);else for(var p=t.length-1;0<=p;p--)(o=t[p])&&(a=(r<3?o(a):3<r?o(e,n,a):o(e,n))||a);return 3<r&&a&&Object.defineProperty(e,n,a),a}([p.default({props:{appear:{type:Boolean,default:!1},enter:{type:Boolean,default:!0},exit:{type:Boolean,default:!0},transitionEnterDuration:{type:Number,default:300},transitionExitDuration:{type:Number,default:300},componentChildClassName:[String,Array],childFactory:Object,className:String,direction:{type:String,default:"down"},tag:String,id:String}})],f));function f(){return null!==r&&r.apply(this,arguments)||this}e.Slide=c},function(t,e,n){"use strict";var i,l="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},o=(i=function(t,e){return(i=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])})(t,e)},function(t,e){function n(){this.constructor=t}i(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)});Object.defineProperty(e,"__esModule",{value:!0});var r,a,p=(a=n(0))&&a.__esModule?a:{default:a},s=n(1),u=n(2),c={position:"absolute",top:"0",left:"0"},f=(r=s.VueComponent,o(d,r),d.prototype.render=function(t){var e="zoom-"+this.$props.direction;return t(u.Animation,{attrs:{transitionName:e,appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration,animationExitingStyle:this.$props.stackChildren?c:void 0}},[this.$slots.default])},function(t,e,n,i){var o,r=arguments.length,a=r<3?e:null===i?i=Object.getOwnPropertyDescriptor(e,n):i;if("object"===("undefined"==typeof Reflect?"undefined":l(Reflect))&&"function"==typeof Reflect.decorate)a=Reflect.decorate(t,e,n,i);else for(var p=t.length-1;0<=p;p--)(o=t[p])&&(a=(r<3?o(a):3<r?o(e,n,a):o(e,n))||a);return 3<r&&a&&Object.defineProperty(e,n,a),a}([p.default({props:{appear:{type:Boolean,default:!1},enter:{type:Boolean,default:!0},exit:{type:Boolean,default:!0},stackChildren:{type:Boolean,default:!1},transitionEnterDuration:{type:Number,default:300},transitionExitDuration:{type:Number,default:300},childFactory:Object,className:String,direction:{type:String,default:"out"},tag:String,id:String}})],d));function d(){return null!==r&&r.apply(this,arguments)||this}e.Zoom=f},function(t,e,n){"use strict";function i(t){return t&&t.__esModule?t:{default:t}}var o,l="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},r=(o=function(t,e){return(o=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])})(t,e)},function(t,e){function n(){this.constructor=t}o(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)});Object.defineProperty(e,"__esModule",{value:!0});function a(){}var p,s=i(n(0)),u=n(1),c=n(2),f=i(n(3)),d=(p=u.VueComponent,r(y,p),Object.defineProperty(y.prototype,"animationEnteringStyle",{get:function(){var t;return{maxHeight:(t="vertical"===this.$props.direction?{maxHeight:this.maxHeight?this.maxHeight+"px":null}:{maxWidth:this.maxWidth?this.maxWidth+"px":null}).maxHeight,maxWidth:t.maxWidth}},enumerable:!0,configurable:!0}),y.prototype.render=function(t){var e=this.$props,n=(e.direction,e.childFactory,function(t,e){var n={};for(var i in t)Object.prototype.hasOwnProperty.call(t,i)&&e.indexOf(i)<0&&(n[i]=t[i]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(i=Object.getOwnPropertySymbols(t);o<i.length;o++)e.indexOf(i[o])<0&&Object.prototype.propertyIsEnumerable.call(t,i[o])&&(n[i[o]]=t[i[o]])}}(e,["direction","childFactory"]),"reveal-"+this.$props.direction);return t(c.Animation,{attrs:{appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration,animationEnteringStyle:this.animationEnteringStyle,transitionName:n},on:{enter:this.componentWillEnter,entering:this.componentIsEntering,exit:this.componentWillExit}},[this.$slots.default])},y.prototype.componentWillEnter=function(t){var e=this.$props.onEnter;this.updateContainerDimensions(t.animatedElement,function(){e&&e.call(void 0,t)})},y.prototype.componentIsEntering=function(t){var e=this.$props.onEntering;this.updateContainerDimensions(t.animatedElement,function(){e&&e.call(void 0,t)})},y.prototype.componentWillExit=function(t){var e=this.$props.onExit;this.updateContainerDimensions(t.animatedElement,function(){e&&e.call(void 0,t)})},y.prototype.updateContainerDimensions=function(t,e){void 0===e&&(e=a);var n=t.firstChild;if(n){var i=f.default.outerHeight(n),o=f.default.outerWidth(n);this.maxHeight=i,this.maxWidth=o,e()}},function(t,e,n,i){var o,r=arguments.length,a=r<3?e:null===i?i=Object.getOwnPropertyDescriptor(e,n):i;if("object"===("undefined"==typeof Reflect?"undefined":l(Reflect))&&"function"==typeof Reflect.decorate)a=Reflect.decorate(t,e,n,i);else for(var p=t.length-1;0<=p;p--)(o=t[p])&&(a=(r<3?o(a):3<r?o(e,n,a):o(e,n))||a);return 3<r&&a&&Object.defineProperty(e,n,a),a}([s.default({props:{appear:{type:Boolean,default:!1},enter:{type:Boolean,default:!0},exit:{type:Boolean,default:!0},transitionEnterDuration:{type:Number,default:300},transitionExitDuration:{type:Number,default:300},childFactory:Object,className:String,direction:{type:String,default:"vertical"},tag:String,id:String}})],y));function y(){var t=null!==p&&p.apply(this,arguments)||this;return t.maxHeight="",t.maxWidth="",t}e.Reveal=d}],o.c=i,o.d=function(t,e,n){o.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:n})},o.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},o.t=function(e,t){if(1&t&&(e=o(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(o.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)o.d(n,i,function(t){return e[t]}.bind(null,i));return n},o.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return o.d(e,"a",e),e},o.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},o.p="",o(o.s=5)}}}); |
{ | ||
"name": "@progress/kendo-vue-animation", | ||
"description": "KendoVue Animation package", | ||
"version": "0.4.1-dev.202001101532", | ||
"version": "0.4.1-dev.202001131438", | ||
"repository": { | ||
@@ -30,3 +30,3 @@ "type": "git", | ||
"dependencies": { | ||
"@progress/kendo-vue-common": "0.4.1-dev.202001101532" | ||
"@progress/kendo-vue-common": "0.4.1-dev.202001131438" | ||
}, | ||
@@ -33,0 +33,0 @@ "devDependencies": { |
Sorry, the diff of this file is too big to display
278509
4210
+ Added@progress/kendo-vue-common@0.4.1-dev.202001131438(transitive)
- Removed@progress/kendo-vue-common@0.4.1-dev.202001101532(transitive)