@progress/kendo-vue-layout 2.5.1 → 2.5.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (80) hide show
  1. package/dist/cdn/js/kendo-vue-layout.js +1 -1
  2. package/dist/es/main.d.ts +5 -0
  3. package/dist/es/main.js +5 -0
  4. package/dist/es/menu/BaseMenuItemInternalProps.d.ts +20 -0
  5. package/dist/es/menu/BaseMenuItemInternalProps.js +0 -0
  6. package/dist/es/menu/MenuProps.d.ts +51 -0
  7. package/dist/es/menu/MenuProps.js +1 -0
  8. package/dist/es/menu/components/Menu.d.ts +68 -0
  9. package/dist/es/menu/components/Menu.js +301 -0
  10. package/dist/es/menu/components/MenuItemArrow.d.ts +65 -0
  11. package/dist/es/menu/components/MenuItemArrow.js +59 -0
  12. package/dist/es/menu/components/MenuItemInternal.d.ts +55 -0
  13. package/dist/es/menu/components/MenuItemInternal.js +437 -0
  14. package/dist/es/menu/components/MenuItemInternalsList.d.ts +44 -0
  15. package/dist/es/menu/components/MenuItemInternalsList.js +147 -0
  16. package/dist/es/menu/components/MenuItemLink.d.ts +49 -0
  17. package/dist/es/menu/components/MenuItemLink.js +57 -0
  18. package/dist/es/menu/consts.d.ts +54 -0
  19. package/dist/es/menu/consts.js +70 -0
  20. package/dist/es/menu/events.d.ts +14 -0
  21. package/dist/es/menu/events.js +1 -0
  22. package/dist/es/menu/models/BaseMenuItem.d.ts +45 -0
  23. package/dist/es/menu/models/BaseMenuItem.js +1 -0
  24. package/dist/es/menu/models/MenuItemModel.d.ts +19 -0
  25. package/dist/es/menu/models/MenuItemModel.js +0 -0
  26. package/dist/es/menu/utils/DirectionHolder.d.ts +11 -0
  27. package/dist/es/menu/utils/DirectionHolder.js +24 -0
  28. package/dist/es/menu/utils/MouseOverHandler.d.ts +17 -0
  29. package/dist/es/menu/utils/MouseOverHandler.js +64 -0
  30. package/dist/es/menu/utils/getNewItemIdUponKeyboardNavigation.d.ts +7 -0
  31. package/dist/es/menu/utils/getNewItemIdUponKeyboardNavigation.js +202 -0
  32. package/dist/es/menu/utils/hoverDelay.d.ts +9 -0
  33. package/dist/es/menu/utils/hoverDelay.js +17 -0
  34. package/dist/es/menu/utils/itemsIdsUtils.d.ts +64 -0
  35. package/dist/es/menu/utils/itemsIdsUtils.js +119 -0
  36. package/dist/es/menu/utils/misc.d.ts +16 -0
  37. package/dist/es/menu/utils/misc.js +42 -0
  38. package/dist/es/menu/utils/prepareInputItemsForInternalWork.d.ts +5 -0
  39. package/dist/es/menu/utils/prepareInputItemsForInternalWork.js +80 -0
  40. package/dist/es/package-metadata.js +1 -1
  41. package/dist/npm/main.d.ts +5 -0
  42. package/dist/npm/main.js +5 -0
  43. package/dist/npm/menu/BaseMenuItemInternalProps.d.ts +20 -0
  44. package/dist/npm/menu/BaseMenuItemInternalProps.js +2 -0
  45. package/dist/npm/menu/MenuProps.d.ts +51 -0
  46. package/dist/npm/menu/MenuProps.js +5 -0
  47. package/dist/npm/menu/components/Menu.d.ts +68 -0
  48. package/dist/npm/menu/components/Menu.js +320 -0
  49. package/dist/npm/menu/components/MenuItemArrow.d.ts +65 -0
  50. package/dist/npm/menu/components/MenuItemArrow.js +69 -0
  51. package/dist/npm/menu/components/MenuItemInternal.d.ts +55 -0
  52. package/dist/npm/menu/components/MenuItemInternal.js +453 -0
  53. package/dist/npm/menu/components/MenuItemInternalsList.d.ts +44 -0
  54. package/dist/npm/menu/components/MenuItemInternalsList.js +158 -0
  55. package/dist/npm/menu/components/MenuItemLink.d.ts +49 -0
  56. package/dist/npm/menu/components/MenuItemLink.js +67 -0
  57. package/dist/npm/menu/consts.d.ts +54 -0
  58. package/dist/npm/menu/consts.js +73 -0
  59. package/dist/npm/menu/events.d.ts +14 -0
  60. package/dist/npm/menu/events.js +3 -0
  61. package/dist/npm/menu/models/BaseMenuItem.d.ts +45 -0
  62. package/dist/npm/menu/models/BaseMenuItem.js +3 -0
  63. package/dist/npm/menu/models/MenuItemModel.d.ts +19 -0
  64. package/dist/npm/menu/models/MenuItemModel.js +2 -0
  65. package/dist/npm/menu/utils/DirectionHolder.d.ts +11 -0
  66. package/dist/npm/menu/utils/DirectionHolder.js +27 -0
  67. package/dist/npm/menu/utils/MouseOverHandler.d.ts +17 -0
  68. package/dist/npm/menu/utils/MouseOverHandler.js +67 -0
  69. package/dist/npm/menu/utils/getNewItemIdUponKeyboardNavigation.d.ts +7 -0
  70. package/dist/npm/menu/utils/getNewItemIdUponKeyboardNavigation.js +206 -0
  71. package/dist/npm/menu/utils/hoverDelay.d.ts +9 -0
  72. package/dist/npm/menu/utils/hoverDelay.js +22 -0
  73. package/dist/npm/menu/utils/itemsIdsUtils.d.ts +64 -0
  74. package/dist/npm/menu/utils/itemsIdsUtils.js +135 -0
  75. package/dist/npm/menu/utils/misc.d.ts +16 -0
  76. package/dist/npm/menu/utils/misc.js +49 -0
  77. package/dist/npm/menu/utils/prepareInputItemsForInternalWork.d.ts +5 -0
  78. package/dist/npm/menu/utils/prepareInputItemsForInternalWork.js +84 -0
  79. package/dist/npm/package-metadata.js +1 -1
  80. package/package.json +9 -9
@@ -1 +1 @@
1
- !function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e(require("vue"),require("@progress/kendo-licensing")):"function"==typeof define&&define.amd?define(["vue","@progress/kendo-licensing"],e):"object"==typeof exports?exports.KendoVueLayout=e(require("vue"),require("@progress/kendo-licensing")):t.KendoVueLayout=e(t.Vue,t.KendoLicensing)}(window,(function(t,e){return function(t){var e={};function n(i){if(e[i])return e[i].exports;var r=e[i]={i:i,l:!1,exports:{}};return t[i].call(r.exports,r,r.exports,n),r.l=!0,r.exports}return n.m=t,n.c=e,n.d=function(t,e,i){n.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:i})},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,e){if(1&e&&(t=n(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var i=Object.create(null);if(n.r(i),Object.defineProperty(i,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var r in t)n.d(i,r,function(e){return t[e]}.bind(null,r));return i},n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="",n(n.s=8)}([function(e,n){e.exports=t},function(t,e,n){"use strict";n.r(e),n.d(e,"classNames",(function(){return i})),n.d(e,"guid",(function(){return r})),n.d(e,"Keys",(function(){return a})),n.d(e,"noop",(function(){return T})),n.d(e,"getListeners",(function(){return A})),n.d(e,"hasListener",(function(){return I})),n.d(e,"canUseDOM",(function(){return o})),n.d(e,"focusFirstFocusableChild",(function(){return s})),n.d(e,"clone",(function(){return k})),n.d(e,"Draggable",(function(){return O})),n.d(e,"cloneArray",(function(){return j})),n.d(e,"cloneValue",(function(){return C})),n.d(e,"cloneObject",(function(){return $})),n.d(e,"cloneDate",(function(){return S})),n.d(e,"getTemplate",(function(){return R})),n.d(e,"templateRendering",(function(){return M})),n.d(e,"getTabIndex",(function(){return L})),n.d(e,"getDefaultSlots",(function(){return g})),n.d(e,"isRtl",(function(){return V})),n.d(e,"getter",(function(){return D})),n.d(e,"setter",(function(){return P})),n.d(e,"validatePackage",(function(){return H}));var i=function(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];return t.filter((function(t){return!0!==t&&!!t})).map((function(t){return Array.isArray(t)?i.apply(void 0,t):"object"==typeof t?Object.keys(t).map((function(e,n){return t[n]||t[e]&&e||null})).filter((function(t){return null!==t})).join(" "):t})).filter((function(t){return!!t})).join(" ")},r=function(){var t,e,n="";for(t=0;t<32;t++)e=16*Math.random()|0,8!==t&&12!==t&&16!==t&&20!==t||(n+="-"),n+=(12===t?4:16===t?3&e|8:e).toString(16);return n},a={backspace:8,tab:9,enter:13,shift:16,esc:27,space:32,pageUp:33,pageDown:34,end:35,home:36,left:37,up:38,right:39,down:40,delete:46},o=Boolean("undefined"!=typeof window&&window.document&&window.document.createElement),s=function(t){if(t){var e=t.querySelectorAll('input, [tabindex]:not([tabindex="-1"])');e.length&&e[0].focus&&e[0].focus()}},u=n(0),l=function(t,e){return function(n){return e(t(n))}},c=function(t,e,n){return t.addEventListener&&t.addEventListener(e,n)},p=function(t,e,n){return t&&t.removeEventListener&&t.removeEventListener(e,n)},d=function(){},f=function(t){return t.preventDefault()},h=/touch/;function v(t){return t.type.match(h)?{pageX:t.changedTouches[0].pageX,pageY:t.changedTouches[0].pageY,clientX:t.changedTouches[0].clientX,clientY:t.changedTouches[0].clientY,type:t.type,originalEvent:t,isTouch:!0}:{pageX:t.pageX,pageY:t.pageY,clientX:t.clientX,clientY:t.clientY,offsetX:t.offsetX,offsetY:t.offsetY,type:t.type,ctrlKey:t.ctrlKey,shiftKey:t.shiftKey,altKey:t.altKey,originalEvent:t}}var m=function(t){var e=this,n=t.press;void 0===n&&(n=d);var i=t.drag;void 0===i&&(i=d);var r=t.release;void 0===r&&(r=d);var a=t.mouseOnly;void 0===a&&(a=!1),this._pressHandler=l(v,n),this._dragHandler=l(v,i),this._releaseHandler=l(v,r),this._ignoreMouse=!1,this._mouseOnly=a,this._touchstart=function(t){1===t.touches.length&&e._pressHandler(t)},this._touchmove=function(t){1===t.touches.length&&e._dragHandler(t)},this._touchend=function(t){0===t.touches.length&&1===t.changedTouches.length&&(e._releaseHandler(t),e._ignoreMouse=!0,setTimeout(e._restoreMouse,2e3))},this._restoreMouse=function(){e._ignoreMouse=!1},this._mousedown=function(t){var n=t.which;n&&n>1||e._ignoreMouse||(c(document,"mousemove",e._mousemove),c(document,"mouseup",e._mouseup),e._pressHandler(t))},this._mousemove=function(t){e._dragHandler(t)},this._mouseup=function(t){p(document,"mousemove",e._mousemove),p(document,"mouseup",e._mouseup),e._releaseHandler(t)},this._pointerdown=function(t){t.isPrimary&&0===t.button&&(c(document,"pointermove",e._pointermove),c(document,"pointerup",e._pointerup),c(document,"pointercancel",e._pointerup),c(document,"contextmenu",f),e._pressHandler(t))},this._pointermove=function(t){t.isPrimary&&e._dragHandler(t)},this._pointerup=function(t){t.isPrimary&&(p(document,"pointermove",e._pointermove),p(document,"pointerup",e._pointerup),p(document,"pointercancel",e._pointerup),p(document,"contextmenu",f),e._releaseHandler(t))}};m.supportPointerEvent=function(){return"undefined"!=typeof window&&window.PointerEvent},m.prototype.bindTo=function(t){t!==this._element&&(this._element&&this._unbindFromCurrent(),this._element=t,this._bindToCurrent())},m.prototype._bindToCurrent=function(){var t=this._element;this._usePointers()?c(t,"pointerdown",this._pointerdown):(c(t,"mousedown",this._mousedown),this._mouseOnly||(c(t,"touchstart",this._touchstart),c(t,"touchmove",this._touchmove),c(t,"touchend",this._touchend)))},m.prototype._unbindFromCurrent=function(){var t=this._element;if(this._usePointers())return p(t,"pointerdown",this._pointerdown),p(document,"pointermove",this._pointermove),p(document,"pointerup",this._pointerup),p(document,"contextmenu",f),void p(document,"pointercancel",this._pointerup);p(t,"mousedown",this._mousedown),this._mouseOnly||(p(t,"touchstart",this._touchstart),p(t,"touchmove",this._touchmove),p(t,"touchend",this._touchend))},m.prototype._usePointers=function(){return!this._mouseOnly&&m.supportPointerEvent()},m.prototype.update=function(t){var e=t.press;void 0===e&&(e=d);var n=t.drag;void 0===n&&(n=d);var i=t.release;void 0===i&&(i=d);var r=t.mouseOnly;void 0===r&&(r=!1),this._pressHandler=l(v,e),this._dragHandler=l(v,n),this._releaseHandler=l(v,i),this._mouseOnly=r},m.prototype.destroy=function(){this._unbindFromCurrent(),this._element=null},m.default=m;var b,y=m;function g(t){var e=t.$slots.default;return t.v3&&e&&"function"==typeof e?e():e}function x(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var E=u.h,O=(x(b={emits:{press:null,drag:null,release:null},inheritAttrs:!1,created:function(){this.element=null,this.draggable=new y({press:this.press,drag:this.drag,release:this.release})},setup:E?function(){return{v3:!!E}}:void 0,mounted:function(){this.$el&&(this.element=3===this.$el.nodeType?this.$el.nextElementSibling:this.$el,this.draggable.bindTo(this.element))},destroyed:E?void 0:function(){this.draggable.destroy()},unmounted:function(){this.draggable.destroy()},methods:{press:function(t){this.element&&this.$emit("press",t,this.element)},drag:function(t){this.element&&this.$emit("drag",t,this.element)},release:function(t){this.element&&this.$emit("release",t,this.element)}}},"setup",E?function(){return{v3:!!E}}:void 0),x(b,"render",(function(t){return g(this)})),b),S=function(t){return t?new Date(t.getTime()):null};function k(t){var e={};return $(t,e),e}function $(t,e){for(var n in t)if(t.hasOwnProperty(n)){var i=t[n];e[n]=C(i,e[n])}}function C(t,e){if(Array.isArray(t))return j(t);if(t instanceof Date)return S(t);if(t&&"object"==typeof t){var n=e||{};return $(t,n),n}return t}function j(t){return t.map((function(t){return C(t,void 0)}))}var T=function(){},w=/\[(?:(\d+)|['"](.*?)['"])\]|((?:(?!\[.*?\]|\.).)+)/g,_={};function D(t){if(_[t])return _[t];var e=[];return t.replace(w,(function(t,n,i,r){e.push(void 0!==n?n:i||r)})),_[t]=function(t){for(var n=t,i=0;i<e.length&&n;i++)n=n[e[i]];return n},_[t]}_.undefined=function(){};var N={};function P(t){if(N[t])return N[t];var e=[];return t.replace(w,(function(t,n,i,r){e.push(void 0!==n?n:i||r)})),N[t]=function(t,n){for(var i=t,r=e.length-1,a=0;a<r&&i;a++)i=i[e[a]]=i[e[a]]||{};i[e[r]]=n},N[t]}function I(t){return this.v3?Object.keys(this.$attrs).map((function(t){return t.toLowerCase()})).some((function(e){return e.endsWith(t.toLowerCase())})):this.$listeners[t]}function A(){if(this.v3){var t={};for(var e in this.$attrs)e.startsWith("on")&&(t[e]=this.$attrs[e]);return t}return this.$listeners}N.undefined=function(t){return t};var K=function(){return(K=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)},z=u.h;function M(t,e){if(t){var n=z?this.$slots[t]||(t.toLowerCase?this.$slots[t.toLowerCase()]:null):this.$scopedSlots[t]||(t.toLowerCase?this.$scopedSlots[t.toLowerCase()]:null);return"string"==typeof t&&n?{type:"slot",render:n,listeners:e}:"string"==typeof t||"object"==typeof t||"function"==typeof t&&t.component?{type:"component",render:t,listeners:e}:{type:"renderFunction",render:t,listeners:e}}}function R(t){var e,n,i,r=t.h,a=t.template,o=t.defaultRendering,s=t.defaultSlots,u=t.additionalProps,l=t.additionalListeners,c=t.swapDefaultSlots;if(!a)return o;if(z){var p=o?o.props:{};e=K(K({},B(l)),a.listeners),n=K(K(K({},p),u),e),i=K(K({},n),e)}else{var d=o&&o.componentOptions,f=d?o.componentOptions.listeners:{},h=d?o.componentOptions.propsData:{};e=K(K(K(K({},f),l),B(l)),a.listeners),i={props:n=K(K(K({},h),u),e),on:e}}if("slot"===a.type){var v=a.render({props:n,listeners:e,methods:e,defaultSlots:s});return v?v[0]:void 0}return"renderFunction"===a.type?c?a.render(r,o,s,n,e):a.render(r,o,n,e,s):r(a.render,i,z?function(){return[s]}:[s])}function B(t){if(!t)return t;for(var e={},n=Object.keys(t),i=0;i<n.length;i++){var r=n[i];e["on"+r.charAt(0).toUpperCase()+r.slice(1)]=t[r]}return e}var L=function(t,e,n){var i="string"==typeof t?parseInt(t,void 0):t;if(NaN!==i)return void 0!==i?i:e?n?void 0:-1:0};function V(t){return Boolean(o&&t&&"rtl"===getComputedStyle(t).direction)}var F=n(4);function H(t){if(void 0!==F)F.validatePackage(t);else{var e="License activation failed for "+t.name+"\n";e+="The @progress/kendo-licensing script is not loaded.\n",e+="See "+t.licensingDocsUrl+" for more information.\n",console.warn(e)}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.cardActionsLayout=e.cardType=e.cardOrientation=e.avatarThemeColor=e.avatarFill=e.avatarSize=e.avatarType=e.avatarShape=void 0,function(t){t.CIRCLE="circle",t.SQUARE="square",t.ROUNDED="rounded",t.RECTANGLE="rectangle"}(e.avatarShape||(e.avatarShape={})),function(t){t.TEXT="text",t.IMAGE="image",t.ICON="icon"}(e.avatarType||(e.avatarType={})),function(t){t.SMALL="small",t.MEDIUM="medium",t.LARGE="large"}(e.avatarSize||(e.avatarSize={})),function(t){t.SOLID="solid",t.OUTLINE="outline"}(e.avatarFill||(e.avatarFill={})),function(t){t.PRIMARY="primary",t.SECONDARY="secondary",t.TERTIARY="tertiary",t.INFO="info",t.SUCCESS="success",t.WARNING="warning",t.ERROR="error",t.DARK="dark",t.LIGHT="light",t.INVERSE="inverse",t.INHERIT="inherit"}(e.avatarThemeColor||(e.avatarThemeColor={})),function(t){t.HORIZONTAL="horizontal",t.VERTICAL="vertical"}(e.cardOrientation||(e.cardOrientation={})),function(t){t.DEFAULT="default",t.primary="primary",t.INFO="info",t.SUCCESS="success",t.WARNING="warning",t.ERROR="error"}(e.cardType||(e.cardType={})),function(t){t.START="start",t.CENTER="center",t.END="end",t.STRETCHED="stretched"}(e.cardActionsLayout||(e.cardActionsLayout={}))},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.packageMetadata=void 0,e.packageMetadata={name:"@progress/kendo-vue-layout",productName:"Kendo UI for Vue",productCodes:["KENDOUIVUE","KENDOUICOMPLETE"],publishDate:1633591190,version:"",licensingDocsUrl:"https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning"}},function(t,n){t.exports=e},function(t,e,n){"use strict";var i=Object.create?function(t,e,n,i){void 0===i&&(i=n),Object.defineProperty(t,i,{enumerable:!0,get:function(){return e[n]}})}:function(t,e,n,i){void 0===i&&(i=n),t[i]=e[n]},r=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e},a=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var n in t)"default"!==n&&Object.hasOwnProperty.call(t,n)&&i(e,t,n);return r(e,t),e};Object.defineProperty(e,"__esModule",{value:!0}),e.TabStripNavigationVue3=e.TabStripNavigation=void 0;var o=a(n(0)),s=o.h,u=(o.ref,o.inject,n(6)),l={name:"KendoTabStripNavigation",emits:{select:null,keydown:null},props:{tabs:Array,selected:Number,tabIndex:Number,tabPosition:String},computed:{wrapperNavClasses:{get:function(){return{"k-tabstrip-items-wrapper":!0,"k-hstack":"top"===this.$props.tabPosition||"bottom"===this.$props.tabPosition,"k-vstack":"left"===this.$props.tabPosition||"right"===this.$props.tabPosition}}},navClasses:{get:function(){return{"k-tabstrip-items":!0,"k-reset":!0}}}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=s||t,n=this.$props,i=n.tabs,r=n.selected,a=i.length;return e("div",{class:this.wrapperNavClasses},[e("ul",{class:this.navClasses,role:"tablist",attrs:this.v3?void 0:{role:"tablist",tabIndex:this.$props.tabIndex},tabIndex:this.$props.tabIndex,onKeydown:this.onKeyDown,on:this.v3?void 0:{keydown:this.onKeyDown}},[function(){return(t=a,Array.apply(null,Array(t))).map((function(t,n,a){return e(u.TabStripNavigationItem,{key:n,active:r===n,attrs:this.v3?void 0:{active:r===n,disabled:i[n].disabled,index:n,title:i[n].title,titleRender:i[n].titleRender,first:0===n,last:n===a.length-1},disabled:i[n].disabled,index:n,title:i[n].title,titleRender:i[n].titleRender,first:0===n,last:n===a.length-1,onSelect:this.onSelect,on:this.v3?void 0:{select:this.onSelect}})}),this);var t}.call(this)])])},methods:{onKeyDown:function(t){this.$emit("keydown",t)},onSelect:function(t){this.$emit("select",t)}}};e.TabStripNavigation=l;var c=l;e.TabStripNavigationVue3=c},function(t,e,n){"use strict";var i=Object.create?function(t,e,n,i){void 0===i&&(i=n),Object.defineProperty(t,i,{enumerable:!0,get:function(){return e[n]}})}:function(t,e,n,i){void 0===i&&(i=n),t[i]=e[n]},r=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e},a=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var n in t)"default"!==n&&Object.hasOwnProperty.call(t,n)&&i(e,t,n);return r(e,t),e};Object.defineProperty(e,"__esModule",{value:!0}),e.TabStripNavigationItemVue3=e.TabStripNavigationItem=void 0;var o=n(1),s=a(n(0)).h,u={name:"KendoTabStripNavigationItem",emits:{select:null},props:{active:Boolean,disabled:Boolean,index:Number,title:{type:String,default:"Untitled"},titleRender:[String,Function,Object],first:{type:Boolean,default:void 0},last:{type:Boolean,default:void 0}},computed:{itemClasses:{get:function(){var t,e=this.$props,n=e.active,i=e.disabled,r=e.first,a=e.last;return(t={})["k-first"]=r,t["k-last"]=a,t["k-item"]=!0,t["k-state-disabled"]=i,t["k-state-active"]=n,t}}},methods:{onClick:function(){this.$props.disabled||this.$emit("select",this.$props.index)}},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=s||t,n=this.$props,i=n.active,r=n.title,a=void 0===r?"Untitled":r,u=this.$props.titleRender,l=o.getTemplate.call(this,{h:e,template:u,defaultRendering:a,additionalProps:this.$props,additionalListeners:{select:this.onClick}});return e("li",{"aria-selected":i,attrs:this.v3?void 0:{"aria-selected":i,role:"tab"},role:"tab",onClick:this.onClick,on:this.v3?void 0:{click:this.onClick},class:this.itemClasses},[e("span",{class:"k-link"},[l])])}};e.TabStripNavigationItem=u;var l=u;e.TabStripNavigationItemVue3=l},function(t,e,n){"use strict";var i=Object.create?function(t,e,n,i){void 0===i&&(i=n),Object.defineProperty(t,i,{enumerable:!0,get:function(){return e[n]}})}:function(t,e,n,i){void 0===i&&(i=n),t[i]=e[n]},r=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e},a=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var n in t)"default"!==n&&Object.hasOwnProperty.call(t,n)&&i(e,t,n);return r(e,t),e};Object.defineProperty(e,"__esModule",{value:!0}),e.TabStripContentVue3=e.TabStripContent=void 0;var o=a(n(0)),s=o.h,u=(o.ref,o.inject,n(21)),l=n(1),c=n(10),p={name:"KendoTabStripContent",props:{showAll:Boolean,animation:Boolean,tabs:Array,selected:Number},created:function(){this.contentId=l.guid()},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=s||t,n=this.$props,i=n.tabs,r=n.selected,a=n.showAll,o=i&&"number"==typeof r&&i[r],p=l.getDefaultSlots(this),d=c.getTabs.call(this,[],p),f=r<d.length&&r>-1,h=l.classNames({"k-content":f},{"k-state-active":f},o&&o.contentClassName),v=function(t,n){var i=this,r=n===this.$props.selected,a={position:"initial",display:r?void 0:"none"};return e(u.Fade,{appear:!!this.v3||r,attrs:this.v3?void 0:{appear:!!this.v3||r,enter:this.$props.animation,exit:this.$props.keepTabsMounted},key:n,enter:this.$props.animation,exit:this.$props.keepTabsMounted,style:a},this.v3?function(){return[e("div",{role:"tabpanel",attrs:i.v3?void 0:{role:"tabpanel","aria-expanded":!0,id:String(i.contentId+n)},"aria-expanded":!0,id:String(i.contentId+n),key:n},[t])]}:[e("div",{role:"tabpanel",attrs:i.v3?void 0:{role:"tabpanel","aria-expanded":!0,id:String(i.contentId+n)},"aria-expanded":!0,id:String(i.contentId+n),key:n},[t])])};return e("div",{class:h,style:this.$props.style},[function(){return a&&d.map((function(t,e){return v.call(this,t,e)}),this)}.call(this)])}};e.TabStripContent=p;var d=p;e.TabStripContentVue3=d},function(t,e,n){"use strict";var i=Object.create?function(t,e,n,i){void 0===i&&(i=n),Object.defineProperty(t,i,{enumerable:!0,get:function(){return e[n]}})}:function(t,e,n,i){void 0===i&&(i=n),t[i]=e[n]},r=function(t,e){for(var n in t)"default"===n||e.hasOwnProperty(n)||i(e,t,n)};Object.defineProperty(e,"__esModule",{value:!0}),r(n(9),e),r(n(7),e),r(n(5),e),r(n(6),e),r(n(11),e),r(n(12),e),r(n(13),e),r(n(14),e),r(n(15),e),r(n(16),e),r(n(17),e),r(n(18),e),r(n(19),e),r(n(20),e)},function(t,e,n){"use strict";var i=function(){return(i=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)},r=Object.create?function(t,e,n,i){void 0===i&&(i=n),Object.defineProperty(t,i,{enumerable:!0,get:function(){return e[n]}})}:function(t,e,n,i){void 0===i&&(i=n),t[i]=e[n]},a=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e},o=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var n in t)"default"!==n&&Object.hasOwnProperty.call(t,n)&&r(e,t,n);return a(e,t),e};Object.defineProperty(e,"__esModule",{value:!0}),e.TabStripVue3=e.TabStrip=void 0;var s=o(n(0)),u=s.h,l=(s.ref,s.inject,n(5)),c=n(7),p=n(1),d=n(3),f={name:"KendoTabStrip",emits:{select:null},props:{animation:{type:Boolean,default:!0},selected:Number,tabContentStyle:Object,tabPosition:{type:String,default:"top"},tabIndex:Number,dir:String},data:function(){return{currentShowAll:!0,currentTabs:[]}},provide:function(){return{addRenderTitle:this.addRenderTitle,addTab:this.addTab,removeTab:this.removeTab}},created:function(){var t,e=this;this.keyBinding=((t={})[p.Keys.left]=function(){return e.prevNavigatableTab()},t[p.Keys.right]=function(){return e.nextNavigatableTab()},t[p.Keys.down]=function(){return e.nextNavigatableTab()},t[p.Keys.up]=function(){return e.prevNavigatableTab()},t[p.Keys.home]=function(){return 0},t[p.Keys.end]=function(){return e.currentTabs.length-1},t),p.validatePackage(d.packageMetadata)},watch:{selected:function(t,e){this.$props.animation&&(this.currentShowAll=!1,this.$nextTick((function(){this.currentShowAll=!0})))}},methods:{addRenderTitle:function(t,e){var n=this.currentTabs.findIndex((function(e){return e.id===t}));this.v3?this.currentTabs[n].titleRender=e:this.currentTabs[n]=i(i({},this.currentTabs[n]),{titleRender:e})},addTab:function(t){this.currentTabs.push(t)},removeTab:function(t){var e=this.currentTabs.findIndex((function(e){return e.id===t}));this.currentTabs.splice(e,1)},onSelect:function(t){this.$props.selected!==t&&this.$emit("select",{selected:t})},onKeyDown:function(t){var e;switch(t.keyCode){case p.Keys.left:e=this.keyBinding[this.invertKeys(p.Keys.left,p.Keys.right)];break;case p.Keys.right:e=this.keyBinding[this.invertKeys(p.Keys.right,p.Keys.left)];break;case p.Keys.up:e=this.keyBinding[p.Keys.up];break;case p.Keys.down:e=this.keyBinding[p.Keys.down];break;case p.Keys.home:e=this.keyBinding[p.Keys.home];break;case p.Keys.end:e=this.keyBinding[p.Keys.end]}e&&(t.preventDefault(),this.onSelect(e()))},invertKeys:function(t,e){return this.$el&&"rtl"===getComputedStyle(this.$el).direction||!1?e:t},firstNavigatableTab:function(){var t=this.currentTabs.length;if(t)for(var e=0;e<t;e++)if(!this.currentTabs[e].disabled)return e},lastNavigatableTab:function(){var t=this.currentTabs.length;if(t)for(var e=t-1;e>0;e--)if(!this.currentTabs[e].disabled)return e},prevNavigatableTab:function(){var t=this.currentTabs.length,e=this.$props.selected,n=e?e-1:-1;if(n<0)return this.lastNavigatableTab();if(t)for(var i=n;i>-1;i--){if(!this.currentTabs[i].disabled)return i;if(0===i)return this.lastNavigatableTab()}},nextNavigatableTab:function(){var t=this.currentTabs.length,e=this.$props.selected,n=e?e+1:1;if(n>=t)return this.firstNavigatableTab();if(t)for(var i=n;i<t;i++){if(!this.currentTabs[i].disabled)return i;if(i+1===t)return this.firstNavigatableTab()}}},setup:u?function(){return{v3:!!u}}:void 0,render:function(t){var e,n=u||t,r=i({},this.$props),a=r.tabPosition,o=r.tabIndex,s=void 0===o?0:o,d="bottom"===a,f=p.classNames("k-widget","k-header","k-floatwrap","k-tabstrip",((e={})["k-tabstrip-left"]="left"===a,e["k-tabstrip-right"]="right"===a,e["k-tabstrip-bottom"]="bottom"===a,e["k-tabstrip-top"]="top"===a,e));return n("div",{dir:this.$props.dir,attrs:this.v3?void 0:{dir:this.$props.dir},class:f},[!d&&n(l.TabStripNavigation,{tabs:this.currentTabs,attrs:this.v3?void 0:{tabs:this.currentTabs,selected:r.selected,tabContentStyle:r.tabContentStyle,tabIndex:s},selected:r.selected,tabContentStyle:r.tabContentStyle,onSelect:this.onSelect,on:this.v3?void 0:{select:this.onSelect,keydown:this.onKeyDown},onKeydown:this.onKeyDown,tabIndex:s}),function(t){var e=t.selected,r=t.tabContentStyle,a=p.getDefaultSlots(this),o={index:e,animation:this.$props.animation,tabs:this.currentTabs,selected:e,tabContentStyle:r,showAll:this.currentShowAll};return n(c.TabStripContent,i(i({},o),{attrs:this.v3?void 0:i({},o)}),this.v3?function(){return a}:[a])}.call(this,r),d&&n(l.TabStripNavigation,{tabs:this.currentTabs,attrs:this.v3?void 0:{tabs:this.currentTabs,selected:r.selected,tabContentStyle:r.tabContentStyle,tabIndex:s},selected:r.selected,tabContentStyle:r.tabContentStyle,onSelect:this.onSelect,on:this.v3?void 0:{select:this.onSelect,keydown:this.onKeyDown},onKeydown:this.onKeyDown,tabIndex:s})])}};e.TabStrip=f;var h=f;e.TabStripVue3=h},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.getTabs=void 0,e.getTabs=function(t,n){var i=this,r=[];return n.forEach((function(n){i.v3&&n.children&&n.children.length&&(r=e.getTabs.call(i,t,n.children)),(n&&n.tag&&-1!==n.tag.toLowerCase().indexOf("tab")||n.type&&n.type.name&&-1!==n.type.name.toLowerCase().indexOf("kendotabstriptab"))&&r.push(n)})),r}},function(t,e,n){"use strict";var i=Object.create?function(t,e,n,i){void 0===i&&(i=n),Object.defineProperty(t,i,{enumerable:!0,get:function(){return e[n]}})}:function(t,e,n,i){void 0===i&&(i=n),t[i]=e[n]},r=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e},a=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var n in t)"default"!==n&&Object.hasOwnProperty.call(t,n)&&i(e,t,n);return r(e,t),e};Object.defineProperty(e,"__esModule",{value:!0}),e.TabStripTabVue3=e.TabStripTab=void 0;var o=a(n(0)),s=o.h,u=(o.ref,o.inject,n(1)),l={name:"KendoTabStripTab",props:{disabled:Boolean,contentClassName:String,title:String,titleRender:[String,Function,Object]},inject:{addRenderTitle:{default:null},addTab:{default:null},removeTab:{default:null}},created:function(){this.tabId=u.guid(),this.addTab({title:this.$props.title,id:this.tabId,disabled:this.$props.disabled,contentClassName:this.$props.contentClassName})},destroyed:s?void 0:function(){this.removeTab(this.tabId)},unmounted:function(){this.removeTab(this.tabId)},setup:s?function(){return{v3:!!s}}:void 0,render:function(t){var e=s||t,n=this.$props.titleRender?u.templateRendering.call(this,this.$props.titleRender,u.getListeners.call(this)):null;return n&&this.addRenderTitle(this.tabId,n),e("div",[u.getDefaultSlots(this)])}};e.TabStripTab=l;var c=l;e.TabStripTabVue3=c},function(t,e,n){"use strict";var i=Object.create?function(t,e,n,i){void 0===i&&(i=n),Object.defineProperty(t,i,{enumerable:!0,get:function(){return e[n]}})}:function(t,e,n,i){void 0===i&&(i=n),t[i]=e[n]},r=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e},a=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var n in t)"default"!==n&&Object.hasOwnProperty.call(t,n)&&i(e,t,n);return r(e,t),e};Object.defineProperty(e,"__esModule",{value:!0}),e.CardVue3=e.Card=void 0;var o=a(n(0)).h,s=n(2),u=n(2),l=n(3),c=n(1),p={name:"KendoCard",props:{dir:String,type:{type:String,default:s.cardType.DEFAULT,validator:function(t){return["default","primary","info","success","warning","error"].includes(t)}},orientation:{type:String,default:u.cardOrientation.VERTICAL,validator:function(t){return["horizontal","vertical"].includes(t)}}},created:function(){c.validatePackage(l.packageMetadata)},setup:o?function(){return{v3:!!o}}:void 0,computed:{wrapperClass:function(){var t,e=this.$props.orientation!==u.cardOrientation.HORIZONTAL?"vertical":"horizontal";return(t={"k-card":!0})["k-card-"+this.$props.type]=this.$props.type!==s.cardType.DEFAULT,t["k-card-"+e]=!0,t}},render:function(t){var e=o||t,n=c.getDefaultSlots(this);return e("div",{dir:this.$props.dir,attrs:this.v3?void 0:{dir:this.$props.dir},class:this.wrapperClass},[n])}};e.Card=p;var d=p;e.CardVue3=d},function(t,e,n){"use strict";var i=Object.create?function(t,e,n,i){void 0===i&&(i=n),Object.defineProperty(t,i,{enumerable:!0,get:function(){return e[n]}})}:function(t,e,n,i){void 0===i&&(i=n),t[i]=e[n]},r=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e},a=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var n in t)"default"!==n&&Object.hasOwnProperty.call(t,n)&&i(e,t,n);return r(e,t),e};Object.defineProperty(e,"__esModule",{value:!0}),e.CardHeaderVue3=e.CardHeader=void 0;var o=a(n(0)).h,s=n(1),u={name:"KendoCardHeader",setup:o?function(){return{v3:!!o}}:void 0,render:function(t){return(o||t)("div",{class:"k-card-header"},[s.getDefaultSlots(this)])}};e.CardHeader=u;var l=u;e.CardHeaderVue3=l},function(t,e,n){"use strict";var i=Object.create?function(t,e,n,i){void 0===i&&(i=n),Object.defineProperty(t,i,{enumerable:!0,get:function(){return e[n]}})}:function(t,e,n,i){void 0===i&&(i=n),t[i]=e[n]},r=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e},a=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var n in t)"default"!==n&&Object.hasOwnProperty.call(t,n)&&i(e,t,n);return r(e,t),e};Object.defineProperty(e,"__esModule",{value:!0}),e.CardTitleVue3=e.CardTitle=void 0;var o=a(n(0)).h,s=n(1),u={name:"KendoCardTitle",setup:o?function(){return{v3:!!o}}:void 0,render:function(t){return(o||t)("div",{class:"k-card-title"},[s.getDefaultSlots(this)])}};e.CardTitle=u;var l=u;e.CardTitleVue3=l},function(t,e,n){"use strict";var i=Object.create?function(t,e,n,i){void 0===i&&(i=n),Object.defineProperty(t,i,{enumerable:!0,get:function(){return e[n]}})}:function(t,e,n,i){void 0===i&&(i=n),t[i]=e[n]},r=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e},a=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var n in t)"default"!==n&&Object.hasOwnProperty.call(t,n)&&i(e,t,n);return r(e,t),e};Object.defineProperty(e,"__esModule",{value:!0}),e.CardBodyVue3=e.CardBody=void 0;var o=a(n(0)).h,s=n(1),u={name:"KendoCardBody",setup:o?function(){return{v3:!!o}}:void 0,render:function(t){return(o||t)("div",{class:"k-card-body"},[s.getDefaultSlots(this)])}};e.CardBody=u;var l=u;e.CardBodyVue3=l},function(t,e,n){"use strict";var i=Object.create?function(t,e,n,i){void 0===i&&(i=n),Object.defineProperty(t,i,{enumerable:!0,get:function(){return e[n]}})}:function(t,e,n,i){void 0===i&&(i=n),t[i]=e[n]},r=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e},a=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var n in t)"default"!==n&&Object.hasOwnProperty.call(t,n)&&i(e,t,n);return r(e,t),e};Object.defineProperty(e,"__esModule",{value:!0}),e.CardActionsVue3=e.CardActions=void 0;var o=a(n(0)).h,s=n(1),u=n(2),l={name:"KendoCardActions",props:{layout:{type:String,default:u.cardActionsLayout.START,validator:function(t){return["stretched","start","center","end"].includes(t)}},orientation:{type:String,default:u.cardOrientation.HORIZONTAL,validator:function(t){return["horizontal","vertical"].includes(t)}}},setup:o?function(){return{v3:!!o}}:void 0,computed:{wrapperClass:function(){var t;return(t={"k-card-actions":!0})["k-card-actions-"+this.$props.layout]=!0,t["k-card-actions-"+(this.$props.orientation!==u.cardOrientation.HORIZONTAL?"vertical":"k-card-horizontal")]=!0,t}},render:function(t){var e=o||t,n=s.getDefaultSlots(this);return e("div",{class:this.wrapperClass},[n])}};e.CardActions=l;var c=l;e.CardActionsVue3=c},function(t,e,n){"use strict";var i=Object.create?function(t,e,n,i){void 0===i&&(i=n),Object.defineProperty(t,i,{enumerable:!0,get:function(){return e[n]}})}:function(t,e,n,i){void 0===i&&(i=n),t[i]=e[n]},r=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e},a=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var n in t)"default"!==n&&Object.hasOwnProperty.call(t,n)&&i(e,t,n);return r(e,t),e};Object.defineProperty(e,"__esModule",{value:!0}),e.CardImageVue3=e.CardImage=void 0;var o=a(n(0)).h,s=n(1),u={name:"KendoCardImage",props:{src:String},setup:o?function(){return{v3:!!o}}:void 0,render:function(t){var e=o||t;s.getDefaultSlots(this);return e("img",{class:"k-card-image",src:this.$props.src,attrs:this.v3?void 0:{src:this.$props.src}})}};e.CardImage=u;var l=u;e.CardImageVue3=l},function(t,e,n){"use strict";var i=Object.create?function(t,e,n,i){void 0===i&&(i=n),Object.defineProperty(t,i,{enumerable:!0,get:function(){return e[n]}})}:function(t,e,n,i){void 0===i&&(i=n),t[i]=e[n]},r=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e},a=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var n in t)"default"!==n&&Object.hasOwnProperty.call(t,n)&&i(e,t,n);return r(e,t),e};Object.defineProperty(e,"__esModule",{value:!0}),e.CardSubtitleVue3=e.CardSubtitle=void 0;var o=a(n(0)).h,s=n(1),u={name:"KendoCardSubtitle",setup:o?function(){return{v3:!!o}}:void 0,render:function(t){return(o||t)("div",{class:"k-card-subtitle"},[s.getDefaultSlots(this)])}};e.CardSubtitle=u;var l=u;e.CardSubtitleVue3=l},function(t,e,n){"use strict";var i=Object.create?function(t,e,n,i){void 0===i&&(i=n),Object.defineProperty(t,i,{enumerable:!0,get:function(){return e[n]}})}:function(t,e,n,i){void 0===i&&(i=n),t[i]=e[n]},r=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e},a=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var n in t)"default"!==n&&Object.hasOwnProperty.call(t,n)&&i(e,t,n);return r(e,t),e};Object.defineProperty(e,"__esModule",{value:!0}),e.CardFooterVue3=e.CardFooter=void 0;var o=a(n(0)).h,s=n(1),u={name:"KendoCardFooter",setup:o?function(){return{v3:!!o}}:void 0,render:function(t){return(o||t)("div",{class:"k-card-footer"},[s.getDefaultSlots(this)])}};e.CardFooter=u;var l=u;e.CardFooterVue3=l},function(t,e,n){"use strict";var i=Object.create?function(t,e,n,i){void 0===i&&(i=n),Object.defineProperty(t,i,{enumerable:!0,get:function(){return e[n]}})}:function(t,e,n,i){void 0===i&&(i=n),t[i]=e[n]},r=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e},a=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var n in t)"default"!==n&&Object.hasOwnProperty.call(t,n)&&i(e,t,n);return r(e,t),e};Object.defineProperty(e,"__esModule",{value:!0}),e.AvatarVue3=e.Avatar=void 0;var o=a(n(0)).h,s=n(2),u=n(3),l=n(1),c={name:"KendoAvatar",props:{shape:{type:String,default:s.avatarShape.SQUARE,validator:function(t){return["circle","square","rounded","rectangle"].includes(t)}},type:{type:String,default:s.avatarType.TEXT,validator:function(t){return["text","image","icon"].includes(t)}},fill:{type:String,default:s.avatarFill.SOLID,validator:function(t){return["solid","outline"].includes(t)}},size:{type:String,default:s.avatarSize.MEDIUM,validator:function(t){return["small","medium","large"].includes(t)}},themeColor:{type:String,default:s.avatarThemeColor.PRIMARY,validator:function(t){return["primary","secondary","tertiary","info","success","warning","error","dark","light","inverse","inherit"].includes(t)}}},created:function(){l.validatePackage(u.packageMetadata)},setup:o?function(){return{v3:!!o}}:void 0,computed:{wrapperClass:function(){var t;return(t={"k-avatar":!0})["k-avatar-"+this.$props.fill]=!0,t["k-avatar-"+this.$props.shape]=!0,t["k-avatar-"+this.$props.themeColor]=!0,t["k-avatar-bordered"]=this.$props.border,t["k-avatar-sm"]="small"===this.$props.size,t["k-avatar-md"]="medium"===this.$props.size,t["k-avatar-lg"]="large"===this.$props.size,t}},render:function(t){var e=o||t,n=l.getDefaultSlots(this);return e("div",{class:this.wrapperClass},[e("span",{class:"k-avatar-"+this.$props.type},[n])])}};e.Avatar=c;var p=c;e.AvatarVue3=p},function(t,e,n){"use strict";n.r(e),n.d(e,"Animation",(function(){return E})),n.d(e,"AnimationVue3",(function(){return O})),n.d(e,"AnimationChild",(function(){return v})),n.d(e,"AnimationChildVue3",(function(){return m})),n.d(e,"Fade",(function(){return k})),n.d(e,"FadeVue3",(function(){return $})),n.d(e,"Expand",(function(){return T})),n.d(e,"ExpandVue3",(function(){return w})),n.d(e,"Push",(function(){return N})),n.d(e,"PushVue3",(function(){return P})),n.d(e,"Slide",(function(){return K})),n.d(e,"SlideVue3",(function(){return z})),n.d(e,"Zoom",(function(){return B})),n.d(e,"ZoomVue3",(function(){return L})),n.d(e,"Reveal",(function(){return U})),n.d(e,"RevealVue3",(function(){return W}));var i=n(0),r=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},a=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},o={"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"},s=n(1),u=function(){return(u=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)},l=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]])}return n},c=i,p=c.h,d=c.ref,f=c.Transition,h=o,v={props:{in:Boolean,transitionName:{type:String,required:!0},transitionStyle:Object,componentChildClassName:[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},created:function(){this.animationStep=""},setup:p?function(){return{v3:!!p,elementRef:d(null)}}:void 0,mounted:function(){this._element=this.v3?this.elementRef||null:this.$refs.element||null},computed:{element:{get:function(){return this._element}}},methods:{onBeforeEnter:function(t){this.$emit("beforeenter",{animatedElement:t,target:this})},onEnter:function(t){this.animationStep="entering",this.$emit("entering",{animatedElement:t,target:this})},onAfterEnter:function(t){this.animationStep="entered",this.$emit("entered",{animatedElement:t,target:this})},onBeforeLeave:function(t){this.$emit("exit",{animatedElement:t,target:this})},onLeave:function(t){this.animationStep="exiting",this.$emit("exiting",{animatedElement:t,target:this})},onAfterLeave:function(t){this.animationStep="exited",this.$emit("exited",{animatedElement:t,target:this})}},render:function(t){var e=this,n=p||t,i=this.$props,r=i.appear,a=i.enter,o=i.exit,c=i.transitionName,d=i.transitionEnterDuration,v=i.transitionExitDuration,m=(i.className,i.componentChildClassName),b=(i.mountOnEnter,i.unmountOnExit,i.animationEnteringStyle),y=i.animationEnteredStyle,g=i.animationExitingStyle,x=i.animationExitedStyle,E=(l(i,["appear","enter","exit","transitionName","transitionEnterDuration","transitionExitDuration","className","componentChildClassName","mountOnEnter","unmountOnExit","animationEnteringStyle","animationEnteredStyle","animationExitingStyle","animationExitedStyle"]),Object(s.getDefaultSlots)(this)),O=this.v3?r:!!E,S=this.v3?f:"transition",k=[m,h["child-animation-container"]],$=a?d:0,C=o?v:0,j=[u({transitionDelay:"0ms",transitionDuration:O?$+"ms":C+"ms"},this.$props.transitionStyle),{entering:u({transitionDuration:$+"ms"},b),entered:u({},y),exiting:u({transitionDuration:C+"ms"},g),exited:u({},x)}[this.animationStep]],T={enter:$,leave:C},w=[O?n("div",{style:j,class:k,ref:this.v3?function(t){e.elementRef=t}:"element"},[E]):null];return n(S,{duration:T,attrs:this.v3?null:{duration:T,name:c,appear:r,appearClass:h[c+"-appear"]||c+"-appear",appearToClass:h[c+"-appear-active"]||c+"-appear-active",enterClass:h[c+"-enter"]||c+"-enter",enterToClass:h[c+"-enter-active"]||c+"-enter-active",leaveClass:h[c+"-exit"]||c+"-exit",leaveToClass:h[c+"-exit-active"]||c+"-exit-active"},name:c,appear:r,appearFromClass:h[c+"-appear"]||c+"-appear",enterFromClass:h[c+"-enter"]||c+"-enter",leaveFromClass:h[c+"-exit"]||c+"-exit",appearToClass:h[c+"-appear-active"]||c+"-appear-active",enterToClass:h[c+"-enter-active"]||c+"-enter-active",leaveToClass:h[c+"-exit-active"]||c+"-exit-active",onBeforeEnter:this.onBeforeEnter,on:this.v3?null:{beforeEnter:this.onBeforeEnter,enter:this.onEnter,afterEnter:this.onAfterEnter,beforeLeave:this.onBeforeLeave,leave:this.onLeave,afterLeave:this.onAfterLeave},onEnter:this.onEnter,onAfterEnter:this.onAfterEnter,onBeforeLeave:this.onBeforeLeave,onLeave:this.onLeave,onAfterLeave:this.onAfterLeave},this.v3?function(){return w}:w)}},m=v,b={name:"@progress/kendo-vue-animation",productName:"Kendo UI for Vue",productCodes:["KENDOUIVUE","KENDOUICOMPLETE"],publishDate:1633590864,version:"",licensingDocsUrl:"https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning"},y=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]])}return n},g=i.h,x=o,E={props:{childFactory:Object,className:String,tag:String,id:String,animationEnteringStyle:Object,animationExitingStyle:Object,componentChildClassName:[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}},methods:{onEntering:function(t){this.$emit("entering",t)},onEnter:function(t){this.$emit("enter",t)},onEntered:function(t){this.$emit("entered",t)},onExit:function(t){this.$emit("exit",t)},onExiting:function(t){this.$emit("exiting",t)},onExited:function(t){this.$emit("exited",t)}},setup:g?function(){return{v3:!!g}}:void 0,created:function(){Object(s.validatePackage)(b)},render:function(t){var e=g||t,n=Object(s.getDefaultSlots)(this),i=this.$props,r=(i.id,i.tag,i.className),a=(i.childFactory,i.stackChildren,i.componentChildStyle,i.componentChildClassName,y(i,["id","tag","className","childFactory","stackChildren","componentChildStyle","componentChildClassName"]),[x["animation-container"],x["animation-container-relative"],r]);return e("div",{id:this.$props.id,attrs:this.v3?void 0:{id:this.$props.id},class:a},[e(v,{key:"some",appear:this.$props.appear,attrs:this.v3?void 0:{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},enter:this.$props.enter,exit:this.$props.exit,transitionName:this.$props.transitionName,componentChildClassName:this.$props.componentChildClassName,onBeforeenter:this.onEnter,on:this.v3?void 0:{beforeenter:this.onEnter,entering:this.onEntering,entered:this.onEntered,exit:this.onExit,exiting:this.onExiting,exited:this.onExited},onEntering:this.onEntering,onEntered:this.onEntered,onExit:this.onExit,onExiting:this.onExiting,onExited:this.onExited,animationEnteringStyle:this.$props.animationEnteringStyle,animationExitingStyle:this.$props.animationExitingStyle,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration},this.v3?function(){return[n]}:[n])])}},O=E,S=i.h,k={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,tag:String,id:String},setup:S?function(){return{v3:!!S}}:void 0,render:function(t){var e=S||t,n=Object(s.getDefaultSlots)(this);return e(E,{transitionName:"fade",attrs:this.v3?void 0:{transitionName:"fade",appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration},appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration},this.v3?function(){return[n]}:[n])}},$=k,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]])}return n},j=i.h,T={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},setup:j?function(){return{v3:!!j}}:void 0,render:function(t){var e=j||t,n=Object(s.getDefaultSlots)(this),i=this.$props,r=(i.direction,C(i,["direction"]),"expand-"+this.$props.direction);return e(E,{transitionName:r,attrs:this.v3?void 0:{transitionName:r,appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration},appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration},this.v3?function(){return[n]}:[n])}},w=T,_=i.h,D={position:"absolute",top:"0",left:"0"},N={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},setup:_?function(){return{v3:!!_}}:void 0,render:function(t){var e=_||t,n=Object(s.getDefaultSlots)(this),i="push-"+this.$props.direction;return e(E,{transitionName:i,attrs:this.v3?void 0:{transitionName:i,appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration,animationExitingStyle:this.$props.stackChildren?D:void 0},appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration,animationExitingStyle:this.$props.stackChildren?D:void 0},this.v3?function(){return[n]}:[n])}},P=N,I=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]])}return n},A=i.h,K={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:[Array],childFactory:Object,className:String,direction:{type:String,default:"down"},tag:String,id:String},methods:{onEntering:function(t){this.$emit("entering",t)},onEnter:function(t){this.$emit("enter",t)},onEntered:function(t){this.$emit("entered",t)},onExit:function(t){this.$emit("exit",t)},onExiting:function(t){this.$emit("exiting",t)},onExited:function(t){this.$emit("exited",t)}},setup:A?function(){return{v3:!!A}}:void 0,render:function(t){var e=A||t,n=Object(s.getDefaultSlots)(this),i=this.$props,r=(i.direction,I(i,["direction"]),"slide-"+this.$props.direction);return e(E,{transitionName:r,attrs:this.v3?void 0:{transitionName:r,componentChildClassName:this.$props.componentChildClassName,appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration},componentChildClassName:this.$props.componentChildClassName,appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,onEnter:this.onEnter,on:this.v3?void 0:{enter:this.onEnter,entering:this.onEntering,entered:this.onEntered,exit:this.onExit,exiting:this.onExiting,exited:this.onExited},onEntering:this.onEntering,onEntered:this.onEntered,onExit:this.onExit,onExiting:this.onExiting,onExited:this.onExited,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration},this.v3?function(){return[n]}:[n])}},z=K,M=i.h,R={position:"absolute",top:"0",left:"0"},B={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},setup:M?function(){return{v3:!!M}}:void 0,render:function(t){var e=M||t,n=Object(s.getDefaultSlots)(this),i="zoom-"+this.$props.direction;return e(E,{transitionName:i,attrs:this.v3?void 0:{transitionName:i,appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration,animationExitingStyle:this.$props.stackChildren?R:void 0},appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration,animationExitingStyle:this.$props.stackChildren?R:void 0},this.v3?function(){return[n]}:[n])}},L=B,V=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]])}return n},F=i.h,H=function(){},U={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},data:function(){return{maxHeight:"",maxWidth:""}},methods:{componentWillEnter:function(t){var e=this.$props.onEnter;this.updateContainerDimensions(t.animatedElement,(function(){e&&e.call(void 0,t)}))},componentIsEntering:function(t){var e=this.$props.onEntering;this.updateContainerDimensions(t.animatedElement,(function(){e&&e.call(void 0,t)}))},componentWillExit:function(t){var e=this.$props.onExit;this.updateContainerDimensions(t.animatedElement,(function(){e&&e.call(void 0,t)}))},updateContainerDimensions:function(t,e){void 0===e&&(e=H);var n=t?t.firstElementChild:null;if(n){var i=r(n),o=a(n);this.$data.maxHeight=i,this.$data.maxWidth=o,e()}}},computed:{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}}}},setup:F?function(){return{v3:!!F}}:void 0,render:function(t){var e=F||t,n=Object(s.getDefaultSlots)(this),i=this.$props,r=(i.direction,i.childFactory,V(i,["direction","childFactory"]),"reveal-"+this.$props.direction);return e(E,{appear:this.$props.appear,attrs:this.v3?void 0:{appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration,animationEnteringStyle:this.animationEnteringStyle,transitionName:r},enter:this.$props.enter,exit:this.$props.exit,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration,onEnter:this.componentWillEnter,on:this.v3?void 0:{enter:this.componentWillEnter,entering:this.componentIsEntering,exit:this.componentWillExit},onEntering:this.componentIsEntering,onExit:this.componentWillExit,animationEnteringStyle:this.animationEnteringStyle,transitionName:r},this.v3?function(){return[n]}:[n])}},W=U}])}));
1
+ !function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("vue"),require("@progress/kendo-licensing")):"function"==typeof define&&define.amd?define(["vue","@progress/kendo-licensing"],t):"object"==typeof exports?exports.KendoVueLayout=t(require("vue"),require("@progress/kendo-licensing")):e.KendoVueLayout=t(e.Vue,e.KendoLicensing)}(window,(function(e,t){return function(e){var t={};function n(i){if(t[i])return t[i].exports;var r=t[i]={i:i,l:!1,exports:{}};return e[i].call(r.exports,r,r.exports,n),r.l=!0,r.exports}return n.m=e,n.c=t,n.d=function(e,t,i){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:i})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var i=Object.create(null);if(n.r(i),Object.defineProperty(i,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)n.d(i,r,function(t){return e[t]}.bind(null,r));return i},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=14)}([function(e,t,n){"use strict";n.r(t),n.d(t,"classNames",(function(){return i})),n.d(t,"guid",(function(){return r})),n.d(t,"Keys",(function(){return o})),n.d(t,"noop",(function(){return C})),n.d(t,"getListeners",(function(){return j})),n.d(t,"hasListener",(function(){return R})),n.d(t,"canUseDOM",(function(){return a})),n.d(t,"focusFirstFocusableChild",(function(){return s})),n.d(t,"clone",(function(){return x})),n.d(t,"Draggable",(function(){return E})),n.d(t,"cloneArray",(function(){return S})),n.d(t,"cloneValue",(function(){return k})),n.d(t,"cloneObject",(function(){return $})),n.d(t,"cloneDate",(function(){return w})),n.d(t,"getTemplate",(function(){return B})),n.d(t,"templateRendering",(function(){return A})),n.d(t,"getTabIndex",(function(){return K})),n.d(t,"getDefaultSlots",(function(){return y})),n.d(t,"isRtl",(function(){return z})),n.d(t,"getter",(function(){return _})),n.d(t,"setter",(function(){return P})),n.d(t,"validatePackage",(function(){return H}));var i=function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];return e.filter((function(e){return!0!==e&&!!e})).map((function(e){return Array.isArray(e)?i.apply(void 0,e):"object"==typeof e?Object.keys(e).map((function(t,n){return e[n]||e[t]&&t||null})).filter((function(e){return null!==e})).join(" "):e})).filter((function(e){return!!e})).join(" ")},r=function(){var e,t,n="";for(e=0;e<32;e++)t=16*Math.random()|0,8!==e&&12!==e&&16!==e&&20!==e||(n+="-"),n+=(12===e?4:16===e?3&t|8:t).toString(16);return n},o={backspace:8,tab:9,enter:13,shift:16,esc:27,space:32,pageUp:33,pageDown:34,end:35,home:36,left:37,up:38,right:39,down:40,delete:46},a=Boolean("undefined"!=typeof window&&window.document&&window.document.createElement),s=function(e){if(e){var t=e.querySelectorAll('input, [tabindex]:not([tabindex="-1"])');t.length&&t[0].focus&&t[0].focus()}},u=n(1),l=function(e,t){return function(n){return t(e(n))}},d=function(e,t,n){return e.addEventListener&&e.addEventListener(t,n)},c=function(e,t,n){return e&&e.removeEventListener&&e.removeEventListener(t,n)},p=function(){},h=function(e){return e.preventDefault()},f=/touch/;function v(e){return e.type.match(f)?{pageX:e.changedTouches[0].pageX,pageY:e.changedTouches[0].pageY,clientX:e.changedTouches[0].clientX,clientY:e.changedTouches[0].clientY,type:e.type,originalEvent:e,isTouch:!0}:{pageX:e.pageX,pageY:e.pageY,clientX:e.clientX,clientY:e.clientY,offsetX:e.offsetX,offsetY:e.offsetY,type:e.type,ctrlKey:e.ctrlKey,shiftKey:e.shiftKey,altKey:e.altKey,originalEvent:e}}var m=function(e){var t=this,n=e.press;void 0===n&&(n=p);var i=e.drag;void 0===i&&(i=p);var r=e.release;void 0===r&&(r=p);var o=e.mouseOnly;void 0===o&&(o=!1),this._pressHandler=l(v,n),this._dragHandler=l(v,i),this._releaseHandler=l(v,r),this._ignoreMouse=!1,this._mouseOnly=o,this._touchstart=function(e){1===e.touches.length&&t._pressHandler(e)},this._touchmove=function(e){1===e.touches.length&&t._dragHandler(e)},this._touchend=function(e){0===e.touches.length&&1===e.changedTouches.length&&(t._releaseHandler(e),t._ignoreMouse=!0,setTimeout(t._restoreMouse,2e3))},this._restoreMouse=function(){t._ignoreMouse=!1},this._mousedown=function(e){var n=e.which;n&&n>1||t._ignoreMouse||(d(document,"mousemove",t._mousemove),d(document,"mouseup",t._mouseup),t._pressHandler(e))},this._mousemove=function(e){t._dragHandler(e)},this._mouseup=function(e){c(document,"mousemove",t._mousemove),c(document,"mouseup",t._mouseup),t._releaseHandler(e)},this._pointerdown=function(e){e.isPrimary&&0===e.button&&(d(document,"pointermove",t._pointermove),d(document,"pointerup",t._pointerup),d(document,"pointercancel",t._pointerup),d(document,"contextmenu",h),t._pressHandler(e))},this._pointermove=function(e){e.isPrimary&&t._dragHandler(e)},this._pointerup=function(e){e.isPrimary&&(c(document,"pointermove",t._pointermove),c(document,"pointerup",t._pointerup),c(document,"pointercancel",t._pointerup),c(document,"contextmenu",h),t._releaseHandler(e))}};m.supportPointerEvent=function(){return"undefined"!=typeof window&&window.PointerEvent},m.prototype.bindTo=function(e){e!==this._element&&(this._element&&this._unbindFromCurrent(),this._element=e,this._bindToCurrent())},m.prototype._bindToCurrent=function(){var e=this._element;this._usePointers()?d(e,"pointerdown",this._pointerdown):(d(e,"mousedown",this._mousedown),this._mouseOnly||(d(e,"touchstart",this._touchstart),d(e,"touchmove",this._touchmove),d(e,"touchend",this._touchend)))},m.prototype._unbindFromCurrent=function(){var e=this._element;if(this._usePointers())return c(e,"pointerdown",this._pointerdown),c(document,"pointermove",this._pointermove),c(document,"pointerup",this._pointerup),c(document,"contextmenu",h),void c(document,"pointercancel",this._pointerup);c(e,"mousedown",this._mousedown),this._mouseOnly||(c(e,"touchstart",this._touchstart),c(e,"touchmove",this._touchmove),c(e,"touchend",this._touchend))},m.prototype._usePointers=function(){return!this._mouseOnly&&m.supportPointerEvent()},m.prototype.update=function(e){var t=e.press;void 0===t&&(t=p);var n=e.drag;void 0===n&&(n=p);var i=e.release;void 0===i&&(i=p);var r=e.mouseOnly;void 0===r&&(r=!1),this._pressHandler=l(v,t),this._dragHandler=l(v,n),this._releaseHandler=l(v,i),this._mouseOnly=r},m.prototype.destroy=function(){this._unbindFromCurrent(),this._element=null},m.default=m;var g,b=m;function y(e){var t=e.$slots.default;return e.v3&&t&&"function"==typeof t?t():t}function I(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var O=u.h,E=(I(g={emits:{press:null,drag:null,release:null},inheritAttrs:!1,created:function(){this.element=null,this.draggable=new b({press:this.press,drag:this.drag,release:this.release})},setup:O?function(){return{v3:!!O}}:void 0,mounted:function(){this.$el&&(this.element=3===this.$el.nodeType?this.$el.nextElementSibling:this.$el,this.draggable.bindTo(this.element))},destroyed:O?void 0:function(){this.draggable.destroy()},unmounted:function(){this.draggable.destroy()},methods:{press:function(e){this.element&&this.$emit("press",e,this.element)},drag:function(e){this.element&&this.$emit("drag",e,this.element)},release:function(e){this.element&&this.$emit("release",e,this.element)}}},"setup",O?function(){return{v3:!!O}}:void 0),I(g,"render",(function(e){return y(this)})),g),w=function(e){return e?new Date(e.getTime()):null};function x(e){var t={};return $(e,t),t}function $(e,t){for(var n in e)if(e.hasOwnProperty(n)){var i=e[n];t[n]=k(i,t[n])}}function k(e,t){if(Array.isArray(e))return S(e);if(e instanceof Date)return w(e);if(e&&"object"==typeof e){var n=t||{};return $(e,n),n}return e}function S(e){return e.map((function(e){return k(e,void 0)}))}var C=function(){},D=/\[(?:(\d+)|['"](.*?)['"])\]|((?:(?!\[.*?\]|\.).)+)/g,T={};function _(e){if(T[e])return T[e];var t=[];return e.replace(D,(function(e,n,i,r){t.push(void 0!==n?n:i||r)})),T[e]=function(e){for(var n=e,i=0;i<t.length&&n;i++)n=n[t[i]];return n},T[e]}T.undefined=function(){};var M={};function P(e){if(M[e])return M[e];var t=[];return e.replace(D,(function(e,n,i,r){t.push(void 0!==n?n:i||r)})),M[e]=function(e,n){for(var i=e,r=t.length-1,o=0;o<r&&i;o++)i=i[t[o]]=i[t[o]]||{};i[t[r]]=n},M[e]}function R(e){return this.v3?Object.keys(this.$attrs).map((function(e){return e.toLowerCase()})).some((function(t){return t.endsWith(e.toLowerCase())})):this.$listeners[e]}function j(){if(this.v3){var e={};for(var t in this.$attrs)t.startsWith("on")&&(e[t]=this.$attrs[t]);return e}return this.$listeners}M.undefined=function(e){return e};var L=function(){return(L=Object.assign||function(e){for(var t,n=1,i=arguments.length;n<i;n++)for(var r in t=arguments[n])Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r]);return e}).apply(this,arguments)},N=u.h;function A(e,t){if(e){var n=N?this.$slots[e]||(e.toLowerCase?this.$slots[e.toLowerCase()]:null):this.$scopedSlots[e]||(e.toLowerCase?this.$scopedSlots[e.toLowerCase()]:null);return"string"==typeof e&&n?{type:"slot",render:n,listeners:t}:"string"==typeof e||"object"==typeof e||"function"==typeof e&&e.component?{type:"component",render:e,listeners:t}:{type:"renderFunction",render:e,listeners:t}}}function B(e){var t,n,i,r=e.h,o=e.template,a=e.defaultRendering,s=e.defaultSlots,u=e.additionalProps,l=e.additionalListeners,d=e.swapDefaultSlots;if(!o)return a;if(N){var c=a?a.props:{};t=L(L({},F(l)),o.listeners),n=L(L(L({},c),u),t),i=L(L({},n),t)}else{var p=a&&a.componentOptions,h=p?a.componentOptions.listeners:{},f=p?a.componentOptions.propsData:{};t=L(L(L(L({},h),l),F(l)),o.listeners),i={props:n=L(L(L({},f),u),t),on:t}}if("slot"===o.type){var v=o.render({props:n,listeners:t,methods:t,defaultSlots:s});return v?v[0]:void 0}return"renderFunction"===o.type?d?o.render(r,a,s,n,t):o.render(r,a,n,t,s):r(o.render,i,N?function(){return[s]}:[s])}function F(e){if(!e)return e;for(var t={},n=Object.keys(e),i=0;i<n.length;i++){var r=n[i];t["on"+r.charAt(0).toUpperCase()+r.slice(1)]=e[r]}return t}var K=function(e,t,n){var i="string"==typeof e?parseInt(e,void 0):e;if(NaN!==i)return void 0!==i?i:t?n?void 0:-1:0};function z(e){return Boolean(a&&e&&"rtl"===getComputedStyle(e).direction)}var V=n(7);function H(e){if(void 0!==V)V.validatePackage(e);else{var t="License activation failed for "+e.name+"\n";t+="The @progress/kendo-licensing script is not loaded.\n",t+="See "+e.licensingDocsUrl+" for more information.\n",console.warn(t)}}},function(t,n){t.exports=e},function(e,t,n){"use strict";function i(e){return a(e)?e:e.split(t.SEPARATOR)[0]}function r(e){if(a(e))return e;var n=e.indexOf(t.SEPARATOR);return e.substring(n+1)}function o(e,n){return n?n+t.SEPARATOR+e:e}function a(e){return e===t.EMPTY_ID||e.indexOf(t.SEPARATOR)<0}function s(e){return e!==t.EMPTY_ID&&e.indexOf(t.SEPARATOR)<0}function u(e){var n=e.lastIndexOf(t.SEPARATOR);return n<0?e:e.substring(n+1)}Object.defineProperty(t,"__esModule",{value:!0}),t.getDirectSiblingIdForLevelZero=t.getShortId=t.isFirstItemFromSiblings=t.isIdFirstLevel=t.isIdZeroLevel=t.isIdEmptyOrZeroLevel=t.getDirectParentId=t.createId=t.shouldOpenItem=t.getFirstChildId=t.getIdWithoutRootParentId=t.getRootParentId=t.getItemById=t.SEPARATOR=t.ZERO_LEVEL_ZERO_ITEM_ID=t.EMPTY_ID=void 0,t.EMPTY_ID="",t.ZERO_LEVEL_ZERO_ITEM_ID="0",t.SEPARATOR="_",t.getItemById=function e(t,n){if(s(t))return n[Number(t)];var o=n[Number(i(t))];return o.items?e(r(t),o.items):void 0},t.getRootParentId=i,t.getIdWithoutRootParentId=r,t.getFirstChildId=function(e){return o("0",e)},t.shouldOpenItem=function(e,n){return 0===n.indexOf(e)&&(n.length===e.length||n.charAt(e.length)===t.SEPARATOR)},t.createId=o,t.getDirectParentId=function(e){var n=e.lastIndexOf(t.SEPARATOR);return n<0?t.EMPTY_ID:e.substring(0,n)},t.isIdEmptyOrZeroLevel=a,t.isIdZeroLevel=s,t.isIdFirstLevel=function(e){return 1===function(e){return e.split(t.SEPARATOR).length-1}(e)},t.isFirstItemFromSiblings=function(e){return u(e)===t.ZERO_LEVEL_ZERO_ITEM_ID},t.getShortId=u,t.getDirectSiblingIdForLevelZero=function(e,t,n){return s(t)?e?Number(t)<n-1?(Number(t)+1).toString():"0":Number(t)>0?(Number(t)-1).toString():(n-1).toString():t}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.packageMetadata=void 0,t.packageMetadata={name:"@progress/kendo-vue-layout",productName:"Kendo UI for Vue",productCodes:["KENDOUIVUE","KENDOUICOMPLETE"],publishDate:1634297459,version:"",licensingDocsUrl:"https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning"}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.cardActionsLayout=t.cardType=t.cardOrientation=t.avatarThemeColor=t.avatarFill=t.avatarSize=t.avatarType=t.avatarShape=void 0,function(e){e.CIRCLE="circle",e.SQUARE="square",e.ROUNDED="rounded",e.RECTANGLE="rectangle"}(t.avatarShape||(t.avatarShape={})),function(e){e.TEXT="text",e.IMAGE="image",e.ICON="icon"}(t.avatarType||(t.avatarType={})),function(e){e.SMALL="small",e.MEDIUM="medium",e.LARGE="large"}(t.avatarSize||(t.avatarSize={})),function(e){e.SOLID="solid",e.OUTLINE="outline"}(t.avatarFill||(t.avatarFill={})),function(e){e.PRIMARY="primary",e.SECONDARY="secondary",e.TERTIARY="tertiary",e.INFO="info",e.SUCCESS="success",e.WARNING="warning",e.ERROR="error",e.DARK="dark",e.LIGHT="light",e.INVERSE="inverse",e.INHERIT="inherit"}(t.avatarThemeColor||(t.avatarThemeColor={})),function(e){e.HORIZONTAL="horizontal",e.VERTICAL="vertical"}(t.cardOrientation||(t.cardOrientation={})),function(e){e.DEFAULT="default",e.primary="primary",e.INFO="info",e.SUCCESS="success",e.WARNING="warning",e.ERROR="error"}(t.cardType||(t.cardType={})),function(e){e.START="start",e.CENTER="center",e.END="end",e.STRETCHED="stretched"}(t.cardActionsLayout||(t.cardActionsLayout={}))},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.getDOMElementId=t.convertBoolDirectionToString=t.getChildrenPosition=t.getPopupSettings=void 0;var i=n(32),r=n(2);function o(e,t,n){return r.isIdZeroLevel(e)?t?n?"leftward":"rightward":"downward":n?"leftward":"rightward"}t.getPopupSettings=function(e,t,n){var r=o(e,t,n);return n?"downward"===r?i.POPUP_SETTINGS_RTL.downward:i.POPUP_SETTINGS_RTL.leftward:"downward"===r?i.POPUP_SETTINGS.downward:i.POPUP_SETTINGS.rightward},t.getChildrenPosition=o,t.convertBoolDirectionToString=function(e){return e?"rtl":"ltr"},t.getDOMElementId=function(e,t){return e+"_"+t}},function(e,t,n){"use strict";n.r(t),n.d(t,"Animation",(function(){return O})),n.d(t,"AnimationVue3",(function(){return E})),n.d(t,"AnimationChild",(function(){return v})),n.d(t,"AnimationChildVue3",(function(){return m})),n.d(t,"Fade",(function(){return x})),n.d(t,"FadeVue3",(function(){return $})),n.d(t,"Expand",(function(){return C})),n.d(t,"ExpandVue3",(function(){return D})),n.d(t,"Push",(function(){return M})),n.d(t,"PushVue3",(function(){return P})),n.d(t,"Slide",(function(){return L})),n.d(t,"SlideVue3",(function(){return N})),n.d(t,"Zoom",(function(){return F})),n.d(t,"ZoomVue3",(function(){return K})),n.d(t,"Reveal",(function(){return U})),n.d(t,"RevealVue3",(function(){return W}));var i=n(1),r=function(e){if(!e)return 0;var t=e.ownerDocument.defaultView.getComputedStyle(e),n=parseFloat(t.marginTop),i=parseFloat(t.marginBottom);return e.offsetHeight+n+i},o=function(e){if(!e)return 0;var t=e.ownerDocument.defaultView.getComputedStyle(e),n=parseFloat(t.marginLeft),i=parseFloat(t.marginRight);return e.offsetWidth+n+i},a={"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"},s=n(0),u=function(){return(u=Object.assign||function(e){for(var t,n=1,i=arguments.length;n<i;n++)for(var r in t=arguments[n])Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r]);return e}).apply(this,arguments)},l=function(e,t){var n={};for(var i in e)Object.prototype.hasOwnProperty.call(e,i)&&t.indexOf(i)<0&&(n[i]=e[i]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var r=0;for(i=Object.getOwnPropertySymbols(e);r<i.length;r++)t.indexOf(i[r])<0&&Object.prototype.propertyIsEnumerable.call(e,i[r])&&(n[i[r]]=e[i[r]])}return n},d=i,c=d.h,p=d.ref,h=d.Transition,f=a,v={props:{in:Boolean,transitionName:{type:String,required:!0},transitionStyle:Object,componentChildClassName:[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},created:function(){this.animationStep=""},setup:c?function(){return{v3:!!c,elementRef:p(null)}}:void 0,mounted:function(){this._element=this.v3?this.elementRef||null:this.$refs.element||null},computed:{element:{get:function(){return this._element}}},methods:{onBeforeEnter:function(e){this.$emit("beforeenter",{animatedElement:e,target:this})},onEnter:function(e){this.animationStep="entering",this.$emit("entering",{animatedElement:e,target:this})},onAfterEnter:function(e){this.animationStep="entered",this.$emit("entered",{animatedElement:e,target:this})},onBeforeLeave:function(e){this.$emit("exit",{animatedElement:e,target:this})},onLeave:function(e){this.animationStep="exiting",this.$emit("exiting",{animatedElement:e,target:this})},onAfterLeave:function(e){this.animationStep="exited",this.$emit("exited",{animatedElement:e,target:this})}},render:function(e){var t=this,n=c||e,i=this.$props,r=i.appear,o=i.enter,a=i.exit,d=i.transitionName,p=i.transitionEnterDuration,v=i.transitionExitDuration,m=(i.className,i.componentChildClassName),g=(i.mountOnEnter,i.unmountOnExit,i.animationEnteringStyle),b=i.animationEnteredStyle,y=i.animationExitingStyle,I=i.animationExitedStyle,O=(l(i,["appear","enter","exit","transitionName","transitionEnterDuration","transitionExitDuration","className","componentChildClassName","mountOnEnter","unmountOnExit","animationEnteringStyle","animationEnteredStyle","animationExitingStyle","animationExitedStyle"]),Object(s.getDefaultSlots)(this)),E=this.v3?r:!!O,w=this.v3?h:"transition",x=[m,f["child-animation-container"]],$=o?p:0,k=a?v:0,S=[u({transitionDelay:"0ms",transitionDuration:E?$+"ms":k+"ms"},this.$props.transitionStyle),{entering:u({transitionDuration:$+"ms"},g),entered:u({},b),exiting:u({transitionDuration:k+"ms"},y),exited:u({},I)}[this.animationStep]],C={enter:$,leave:k},D=[E?n("div",{style:S,class:x,ref:this.v3?function(e){t.elementRef=e}:"element"},[O]):null];return n(w,{duration:C,attrs:this.v3?null:{duration:C,name:d,appear:r,appearClass:f[d+"-appear"]||d+"-appear",appearToClass:f[d+"-appear-active"]||d+"-appear-active",enterClass:f[d+"-enter"]||d+"-enter",enterToClass:f[d+"-enter-active"]||d+"-enter-active",leaveClass:f[d+"-exit"]||d+"-exit",leaveToClass:f[d+"-exit-active"]||d+"-exit-active"},name:d,appear:r,appearFromClass:f[d+"-appear"]||d+"-appear",enterFromClass:f[d+"-enter"]||d+"-enter",leaveFromClass:f[d+"-exit"]||d+"-exit",appearToClass:f[d+"-appear-active"]||d+"-appear-active",enterToClass:f[d+"-enter-active"]||d+"-enter-active",leaveToClass:f[d+"-exit-active"]||d+"-exit-active",onBeforeEnter:this.onBeforeEnter,on:this.v3?null:{beforeEnter:this.onBeforeEnter,enter:this.onEnter,afterEnter:this.onAfterEnter,beforeLeave:this.onBeforeLeave,leave:this.onLeave,afterLeave:this.onAfterLeave},onEnter:this.onEnter,onAfterEnter:this.onAfterEnter,onBeforeLeave:this.onBeforeLeave,onLeave:this.onLeave,onAfterLeave:this.onAfterLeave},this.v3?function(){return D}:D)}},m=v,g={name:"@progress/kendo-vue-animation",productName:"Kendo UI for Vue",productCodes:["KENDOUIVUE","KENDOUICOMPLETE"],publishDate:1634297128,version:"",licensingDocsUrl:"https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning"},b=function(e,t){var n={};for(var i in e)Object.prototype.hasOwnProperty.call(e,i)&&t.indexOf(i)<0&&(n[i]=e[i]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var r=0;for(i=Object.getOwnPropertySymbols(e);r<i.length;r++)t.indexOf(i[r])<0&&Object.prototype.propertyIsEnumerable.call(e,i[r])&&(n[i[r]]=e[i[r]])}return n},y=i.h,I=a,O={props:{childFactory:Object,className:String,tag:String,id:String,animationEnteringStyle:Object,animationExitingStyle:Object,componentChildClassName:[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}},methods:{onEntering:function(e){this.$emit("entering",e)},onEnter:function(e){this.$emit("enter",e)},onEntered:function(e){this.$emit("entered",e)},onExit:function(e){this.$emit("exit",e)},onExiting:function(e){this.$emit("exiting",e)},onExited:function(e){this.$emit("exited",e)}},setup:y?function(){return{v3:!!y}}:void 0,created:function(){Object(s.validatePackage)(g)},render:function(e){var t=y||e,n=Object(s.getDefaultSlots)(this),i=this.$props,r=(i.id,i.tag,i.className),o=(i.childFactory,i.stackChildren,i.componentChildStyle,i.componentChildClassName,b(i,["id","tag","className","childFactory","stackChildren","componentChildStyle","componentChildClassName"]),[I["animation-container"],I["animation-container-relative"],r]);return t("div",{id:this.$props.id,attrs:this.v3?void 0:{id:this.$props.id},class:o},[t(v,{key:"some",appear:this.$props.appear,attrs:this.v3?void 0:{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},enter:this.$props.enter,exit:this.$props.exit,transitionName:this.$props.transitionName,componentChildClassName:this.$props.componentChildClassName,onBeforeenter:this.onEnter,on:this.v3?void 0:{beforeenter:this.onEnter,entering:this.onEntering,entered:this.onEntered,exit:this.onExit,exiting:this.onExiting,exited:this.onExited},onEntering:this.onEntering,onEntered:this.onEntered,onExit:this.onExit,onExiting:this.onExiting,onExited:this.onExited,animationEnteringStyle:this.$props.animationEnteringStyle,animationExitingStyle:this.$props.animationExitingStyle,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration},this.v3?function(){return[n]}:[n])])}},E=O,w=i.h,x={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,tag:String,id:String},setup:w?function(){return{v3:!!w}}:void 0,render:function(e){var t=w||e,n=Object(s.getDefaultSlots)(this);return t(O,{transitionName:"fade",attrs:this.v3?void 0:{transitionName:"fade",appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration},appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration},this.v3?function(){return[n]}:[n])}},$=x,k=function(e,t){var n={};for(var i in e)Object.prototype.hasOwnProperty.call(e,i)&&t.indexOf(i)<0&&(n[i]=e[i]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var r=0;for(i=Object.getOwnPropertySymbols(e);r<i.length;r++)t.indexOf(i[r])<0&&Object.prototype.propertyIsEnumerable.call(e,i[r])&&(n[i[r]]=e[i[r]])}return n},S=i.h,C={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},setup:S?function(){return{v3:!!S}}:void 0,render:function(e){var t=S||e,n=Object(s.getDefaultSlots)(this),i=this.$props,r=(i.direction,k(i,["direction"]),"expand-"+this.$props.direction);return t(O,{transitionName:r,attrs:this.v3?void 0:{transitionName:r,appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration},appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration},this.v3?function(){return[n]}:[n])}},D=C,T=i.h,_={position:"absolute",top:"0",left:"0"},M={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},setup:T?function(){return{v3:!!T}}:void 0,render:function(e){var t=T||e,n=Object(s.getDefaultSlots)(this),i="push-"+this.$props.direction;return t(O,{transitionName:i,attrs:this.v3?void 0:{transitionName:i,appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration,animationExitingStyle:this.$props.stackChildren?_:void 0},appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration,animationExitingStyle:this.$props.stackChildren?_:void 0},this.v3?function(){return[n]}:[n])}},P=M,R=function(e,t){var n={};for(var i in e)Object.prototype.hasOwnProperty.call(e,i)&&t.indexOf(i)<0&&(n[i]=e[i]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var r=0;for(i=Object.getOwnPropertySymbols(e);r<i.length;r++)t.indexOf(i[r])<0&&Object.prototype.propertyIsEnumerable.call(e,i[r])&&(n[i[r]]=e[i[r]])}return n},j=i.h,L={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:[Array],childFactory:Object,className:String,direction:{type:String,default:"down"},tag:String,id:String},methods:{onEntering:function(e){this.$emit("entering",e)},onEnter:function(e){this.$emit("enter",e)},onEntered:function(e){this.$emit("entered",e)},onExit:function(e){this.$emit("exit",e)},onExiting:function(e){this.$emit("exiting",e)},onExited:function(e){this.$emit("exited",e)}},setup:j?function(){return{v3:!!j}}:void 0,render:function(e){var t=j||e,n=Object(s.getDefaultSlots)(this),i=this.$props,r=(i.direction,R(i,["direction"]),"slide-"+this.$props.direction);return t(O,{transitionName:r,attrs:this.v3?void 0:{transitionName:r,componentChildClassName:this.$props.componentChildClassName,appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration},componentChildClassName:this.$props.componentChildClassName,appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,onEnter:this.onEnter,on:this.v3?void 0:{enter:this.onEnter,entering:this.onEntering,entered:this.onEntered,exit:this.onExit,exiting:this.onExiting,exited:this.onExited},onEntering:this.onEntering,onEntered:this.onEntered,onExit:this.onExit,onExiting:this.onExiting,onExited:this.onExited,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration},this.v3?function(){return[n]}:[n])}},N=L,A=i.h,B={position:"absolute",top:"0",left:"0"},F={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},setup:A?function(){return{v3:!!A}}:void 0,render:function(e){var t=A||e,n=Object(s.getDefaultSlots)(this),i="zoom-"+this.$props.direction;return t(O,{transitionName:i,attrs:this.v3?void 0:{transitionName:i,appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration,animationExitingStyle:this.$props.stackChildren?B:void 0},appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration,animationExitingStyle:this.$props.stackChildren?B:void 0},this.v3?function(){return[n]}:[n])}},K=F,z=function(e,t){var n={};for(var i in e)Object.prototype.hasOwnProperty.call(e,i)&&t.indexOf(i)<0&&(n[i]=e[i]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var r=0;for(i=Object.getOwnPropertySymbols(e);r<i.length;r++)t.indexOf(i[r])<0&&Object.prototype.propertyIsEnumerable.call(e,i[r])&&(n[i[r]]=e[i[r]])}return n},V=i.h,H=function(){},U={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},data:function(){return{maxHeight:"",maxWidth:""}},methods:{componentWillEnter:function(e){var t=this.$props.onEnter;this.updateContainerDimensions(e.animatedElement,(function(){t&&t.call(void 0,e)}))},componentIsEntering:function(e){var t=this.$props.onEntering;this.updateContainerDimensions(e.animatedElement,(function(){t&&t.call(void 0,e)}))},componentWillExit:function(e){var t=this.$props.onExit;this.updateContainerDimensions(e.animatedElement,(function(){t&&t.call(void 0,e)}))},updateContainerDimensions:function(e,t){void 0===t&&(t=H);var n=e?e.firstElementChild:null;if(n){var i=r(n),a=o(n);this.$data.maxHeight=i,this.$data.maxWidth=a,t()}}},computed:{animationEnteringStyle:{get:function(){var e;return{maxHeight:(e="vertical"===this.$props.direction?{maxHeight:this.maxHeight?this.maxHeight+"px":null}:{maxWidth:this.maxWidth?this.maxWidth+"px":null}).maxHeight,maxWidth:e.maxWidth}}}},setup:V?function(){return{v3:!!V}}:void 0,render:function(e){var t=V||e,n=Object(s.getDefaultSlots)(this),i=this.$props,r=(i.direction,i.childFactory,z(i,["direction","childFactory"]),"reveal-"+this.$props.direction);return t(O,{appear:this.$props.appear,attrs:this.v3?void 0:{appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration,animationEnteringStyle:this.animationEnteringStyle,transitionName:r},enter:this.$props.enter,exit:this.$props.exit,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration,onEnter:this.componentWillEnter,on:this.v3?void 0:{enter:this.componentWillEnter,entering:this.componentIsEntering,exit:this.componentWillExit},onEntering:this.componentIsEntering,onExit:this.componentWillExit,animationEnteringStyle:this.animationEnteringStyle,transitionName:r},this.v3?function(){return[n]}:[n])}},W=U},function(e,n){e.exports=t},function(e,t,n){"use strict";var i=Object.create?function(e,t,n,i){void 0===i&&(i=n),Object.defineProperty(e,i,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},r=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t},o=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.hasOwnProperty.call(e,n)&&i(t,e,n);return r(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.TabStripNavigationVue3=t.TabStripNavigation=void 0;var a=o(n(1)),s=a.h,u=(a.ref,a.inject,n(9)),l={name:"KendoTabStripNavigation",emits:{select:null,keydown:null},props:{tabs:Array,selected:Number,tabIndex:Number,tabPosition:String},computed:{wrapperNavClasses:{get:function(){return{"k-tabstrip-items-wrapper":!0,"k-hstack":"top"===this.$props.tabPosition||"bottom"===this.$props.tabPosition,"k-vstack":"left"===this.$props.tabPosition||"right"===this.$props.tabPosition}}},navClasses:{get:function(){return{"k-tabstrip-items":!0,"k-reset":!0}}}},setup:s?function(){return{v3:!!s}}:void 0,render:function(e){var t=s||e,n=this.$props,i=n.tabs,r=n.selected,o=i.length;return t("div",{class:this.wrapperNavClasses},[t("ul",{class:this.navClasses,role:"tablist",attrs:this.v3?void 0:{role:"tablist",tabIndex:this.$props.tabIndex},tabIndex:this.$props.tabIndex,onKeydown:this.onKeyDown,on:this.v3?void 0:{keydown:this.onKeyDown}},[function(){return(e=o,Array.apply(null,Array(e))).map((function(e,n,o){return t(u.TabStripNavigationItem,{key:n,active:r===n,attrs:this.v3?void 0:{active:r===n,disabled:i[n].disabled,index:n,title:i[n].title,titleRender:i[n].titleRender,first:0===n,last:n===o.length-1},disabled:i[n].disabled,index:n,title:i[n].title,titleRender:i[n].titleRender,first:0===n,last:n===o.length-1,onSelect:this.onSelect,on:this.v3?void 0:{select:this.onSelect}})}),this);var e}.call(this)])])},methods:{onKeyDown:function(e){this.$emit("keydown",e)},onSelect:function(e){this.$emit("select",e)}}};t.TabStripNavigation=l;var d=l;t.TabStripNavigationVue3=d},function(e,t,n){"use strict";var i=Object.create?function(e,t,n,i){void 0===i&&(i=n),Object.defineProperty(e,i,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},r=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t},o=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.hasOwnProperty.call(e,n)&&i(t,e,n);return r(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.TabStripNavigationItemVue3=t.TabStripNavigationItem=void 0;var a=n(0),s=o(n(1)).h,u={name:"KendoTabStripNavigationItem",emits:{select:null},props:{active:Boolean,disabled:Boolean,index:Number,title:{type:String,default:"Untitled"},titleRender:[String,Function,Object],first:{type:Boolean,default:void 0},last:{type:Boolean,default:void 0}},computed:{itemClasses:{get:function(){var e,t=this.$props,n=t.active,i=t.disabled,r=t.first,o=t.last;return(e={})["k-first"]=r,e["k-last"]=o,e["k-item"]=!0,e["k-state-disabled"]=i,e["k-state-active"]=n,e}}},methods:{onClick:function(){this.$props.disabled||this.$emit("select",this.$props.index)}},setup:s?function(){return{v3:!!s}}:void 0,render:function(e){var t=s||e,n=this.$props,i=n.active,r=n.title,o=void 0===r?"Untitled":r,u=this.$props.titleRender,l=a.getTemplate.call(this,{h:t,template:u,defaultRendering:o,additionalProps:this.$props,additionalListeners:{select:this.onClick}});return t("li",{"aria-selected":i,attrs:this.v3?void 0:{"aria-selected":i,role:"tab"},role:"tab",onClick:this.onClick,on:this.v3?void 0:{click:this.onClick},class:this.itemClasses},[t("span",{class:"k-link"},[l])])}};t.TabStripNavigationItem=u;var l=u;t.TabStripNavigationItemVue3=l},function(e,t,n){"use strict";var i=Object.create?function(e,t,n,i){void 0===i&&(i=n),Object.defineProperty(e,i,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},r=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t},o=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.hasOwnProperty.call(e,n)&&i(t,e,n);return r(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.TabStripContentVue3=t.TabStripContent=void 0;var a=o(n(1)),s=a.h,u=(a.ref,a.inject,n(6)),l=n(0),d=n(16),c={name:"KendoTabStripContent",props:{showAll:Boolean,animation:Boolean,tabs:Array,selected:Number},created:function(){this.contentId=l.guid()},setup:s?function(){return{v3:!!s}}:void 0,render:function(e){var t=s||e,n=this.$props,i=n.tabs,r=n.selected,o=n.showAll,a=i&&"number"==typeof r&&i[r],c=l.getDefaultSlots(this),p=d.getTabs.call(this,[],c),h=r<p.length&&r>-1,f=l.classNames({"k-content":h},{"k-state-active":h},a&&a.contentClassName),v=function(e,n){var i=this,r=n===this.$props.selected,o={position:"initial",display:r?void 0:"none"};return t(u.Fade,{appear:!!this.v3||r,attrs:this.v3?void 0:{appear:!!this.v3||r,enter:this.$props.animation,exit:this.$props.keepTabsMounted},key:n,enter:this.$props.animation,exit:this.$props.keepTabsMounted,style:o},this.v3?function(){return[t("div",{role:"tabpanel",attrs:i.v3?void 0:{role:"tabpanel","aria-expanded":!0,id:String(i.contentId+n)},"aria-expanded":!0,id:String(i.contentId+n),key:n},[e])]}:[t("div",{role:"tabpanel",attrs:i.v3?void 0:{role:"tabpanel","aria-expanded":!0,id:String(i.contentId+n)},"aria-expanded":!0,id:String(i.contentId+n),key:n},[e])])};return t("div",{class:f,style:this.$props.style},[function(){return o&&p.map((function(e,t){return v.call(this,e,t)}),this)}.call(this)])}};t.TabStripContent=c;var p=c;t.TabStripContentVue3=p},function(e,t,n){"use strict";var i=Object.create?function(e,t,n,i){void 0===i&&(i=n),Object.defineProperty(e,i,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},r=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t},o=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.hasOwnProperty.call(e,n)&&i(t,e,n);return r(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.MenuItemInternalsListVue3=t.MenuItemInternalsList=void 0;var a=o(n(1)).h,s=n(31),u=n(5),l={name:"KendoMenuItemInternalsList",emits:{keydown:null,mouseover:null,mouseleave:null,blur:null,focus:null,click:null,mousedown:null},props:{items:Array,parentItemId:String,focusedItemId:String,lastItemIdToBeOpened:String,tabbableItemId:String,itemRender:[String,Object,Function],linkRender:[String,Object,Function],isMenuVertical:Boolean,isDirectionRightToLeft:Boolean,menuGuid:String,originalItemNeeded:Function},setup:a?function(){return{v3:!!a}}:void 0,render:function(e){var t=a||e,n=this.$props.parentItemId;return t("ul",{role:void 0!==n?"menu":"menubar",attrs:this.v3?void 0:{role:void 0!==n?"menu":"menubar",id:void 0!==n?u.getDOMElementId(this.$props.menuGuid,n):void 0},id:void 0!==n?u.getDOMElementId(this.$props.menuGuid,n):void 0,onMouseover:this.onMouseOver,on:this.v3?void 0:{mouseover:this.onMouseOver,mouseleave:this.onMouseLeave},onMouseleave:this.onMouseLeave},[function(){return this.$props.items.length>0?this.$props.items.map((function(e,n){return t(s.MenuItemInternal,{item:e,attrs:this.v3?void 0:{item:e,isMenuVertical:this.$props.isMenuVertical,isDirectionRightToLeft:this.$props.isDirectionRightToLeft,focusedItemId:this.$props.focusedItemId,lastItemIdToBeOpened:this.$props.lastItemIdToBeOpened,tabbableItemId:this.$props.tabbableItemId,itemRender:this.$props.itemRender,linkRender:this.$props.linkRender,menuGuid:this.$props.menuGuid,originalItemNeeded:this.handleOriginalItemNeeded},isMenuVertical:this.$props.isMenuVertical,isDirectionRightToLeft:this.$props.isDirectionRightToLeft,focusedItemId:this.$props.focusedItemId,lastItemIdToBeOpened:this.$props.lastItemIdToBeOpened,tabbableItemId:this.$props.tabbableItemId,itemRender:this.$props.itemRender,linkRender:this.$props.linkRender,menuGuid:this.$props.menuGuid,onMouseover:this.handleItemMouseOver,on:this.v3?void 0:{mouseover:this.handleItemMouseOver,mouseleave:this.handleItemMouseLeave,mousedown:this.handleItemMouseDown,keydown:this.handleKeyDown,blur:this.handleItemMouseBlur,focus:this.handleItemMouseFocus,click:this.handleItemMouseClick},onMouseleave:this.handleItemMouseLeave,onMousedown:this.handleItemMouseDown,onKeydown:this.handleKeyDown,onBlur:this.handleItemMouseBlur,onFocus:this.handleItemMouseFocus,onClick:this.handleItemMouseClick,originalItemNeeded:this.handleOriginalItemNeeded,key:n})}),this):null}.call(this)])},methods:{handleKeyDown:function(e){this.$emit("keydown",e)},handleOriginalItemNeeded:function(e){this.$props.originalItemNeeded(e)},handleItemMouseOver:function(e){this.$emit("mouseover",e)},handleItemMouseLeave:function(e){this.$emit("mouseleave",e)},handleItemMouseDown:function(e){this.$emit("mousedown",e)},handleItemMouseBlur:function(e){this.$emit("blur",e)},handleItemMouseFocus:function(e){this.$emit("focus",e)},handleItemMouseClick:function(e,t){this.$emit("click",e,t)},onMouseOver:function(e){void 0!==this.$props.parentItemId&&(this.$emit("mouseover",this.$props.parentItemId),e.stopPropagation())},onMouseLeave:function(e){void 0!==this.$props.parentItemId&&(this.$emit("mouseleave",this.$props.parentItemId),e.stopPropagation())}}};t.MenuItemInternalsList=l;var d=l;t.MenuItemInternalsListVue3=d},function(e,t,n){"use strict";var i=Object.create?function(e,t,n,i){void 0===i&&(i=n),Object.defineProperty(e,i,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},r=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t},o=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.hasOwnProperty.call(e,n)&&i(t,e,n);return r(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.MenuItemLinkVue3=t.MenuItemLink=void 0;var a=o(n(1)).h,s=n(0),u={name:"KendoMenuItemLink",props:{opened:Boolean,url:String},computed:{menuItemClassName:function(){return{"k-link":!0,"k-menu-link":!0,"k-state-active":this.$props.opened}}},setup:a?function(){return{v3:!!a}}:void 0,render:function(e){var t=a||e,n=s.getDefaultSlots(this);return this.$props.url?t("a",{class:this.getMenuItemClassName(),role:"presentation",attrs:this.v3?void 0:{role:"presentation",href:this.props.url,tabIndex:-1},href:this.props.url,tabIndex:-1},[this.props.children]):t("span",{class:this.menuItemClassName,role:"presentation",attrs:this.v3?void 0:{role:"presentation"}},[n])}};t.MenuItemLink=u;var l=u;t.MenuItemLinkVue3=l},function(e,t,n){"use strict";var i=Object.create?function(e,t,n,i){void 0===i&&(i=n),Object.defineProperty(e,i,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},r=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t},o=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.hasOwnProperty.call(e,n)&&i(t,e,n);return r(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.MenuItemArrowVue3=t.MenuItemArrow=t.leftArrowClass=t.rightArrowClass=t.downArrowClass=void 0;var a=o(n(1)).h,s=n(5);t.downArrowClass="k-i-arrow-60-down",t.rightArrowClass="k-i-arrow-60-right",t.leftArrowClass="k-i-arrow-60-left";var u={name:"KendoMenuItemArrow",props:{itemId:String,dir:String,verticalMenu:Boolean},setup:a?function(){return{v3:!!a}}:void 0,render:function(e){return(a||e)("span",{class:this.getArrowClassName(),role:"presentation",attrs:this.v3?void 0:{role:"presentation"}})},methods:{getArrowClassName:function(){var e,n=s.getChildrenPosition(this.$props.itemId,!0===this.$props.verticalMenu,"rtl"===this.$props.dir);return(e={"k-icon":!0,"k-menu-expand-arrow":!0})[t.downArrowClass]="downward"===n,e[t.rightArrowClass]="rightward"===n,e[t.leftArrowClass]="leftward"===n,e}}};t.MenuItemArrow=u;var l=u;t.MenuItemArrowVue3=l},function(e,t,n){"use strict";var i=Object.create?function(e,t,n,i){void 0===i&&(i=n),Object.defineProperty(e,i,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},r=function(e,t){for(var n in e)"default"===n||t.hasOwnProperty(n)||i(t,e,n)};Object.defineProperty(t,"__esModule",{value:!0}),r(n(15),t),r(n(10),t),r(n(8),t),r(n(9),t),r(n(17),t),r(n(18),t),r(n(19),t),r(n(20),t),r(n(21),t),r(n(22),t),r(n(23),t),r(n(24),t),r(n(25),t),r(n(26),t),r(n(27),t),r(n(12),t),r(n(13),t),r(n(35),t),r(n(36),t)},function(e,t,n){"use strict";var i=function(){return(i=Object.assign||function(e){for(var t,n=1,i=arguments.length;n<i;n++)for(var r in t=arguments[n])Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r]);return e}).apply(this,arguments)},r=Object.create?function(e,t,n,i){void 0===i&&(i=n),Object.defineProperty(e,i,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},o=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t},a=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.hasOwnProperty.call(e,n)&&r(t,e,n);return o(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.TabStripVue3=t.TabStrip=void 0;var s=a(n(1)),u=s.h,l=(s.ref,s.inject,n(8)),d=n(10),c=n(0),p=n(3),h={name:"KendoTabStrip",emits:{select:null},props:{animation:{type:Boolean,default:!0},selected:Number,tabContentStyle:Object,tabPosition:{type:String,default:"top"},tabIndex:Number,dir:String},data:function(){return{currentShowAll:!0,currentTabs:[]}},provide:function(){return{addRenderTitle:this.addRenderTitle,addTab:this.addTab,removeTab:this.removeTab}},created:function(){var e,t=this;this.keyBinding=((e={})[c.Keys.left]=function(){return t.prevNavigatableTab()},e[c.Keys.right]=function(){return t.nextNavigatableTab()},e[c.Keys.down]=function(){return t.nextNavigatableTab()},e[c.Keys.up]=function(){return t.prevNavigatableTab()},e[c.Keys.home]=function(){return 0},e[c.Keys.end]=function(){return t.currentTabs.length-1},e),c.validatePackage(p.packageMetadata)},watch:{selected:function(e,t){this.$props.animation&&(this.currentShowAll=!1,this.$nextTick((function(){this.currentShowAll=!0})))}},methods:{addRenderTitle:function(e,t){var n=this.currentTabs.findIndex((function(t){return t.id===e}));this.v3?this.currentTabs[n].titleRender=t:this.currentTabs[n]=i(i({},this.currentTabs[n]),{titleRender:t})},addTab:function(e){this.currentTabs.push(e)},removeTab:function(e){var t=this.currentTabs.findIndex((function(t){return t.id===e}));this.currentTabs.splice(t,1)},onSelect:function(e){this.$props.selected!==e&&this.$emit("select",{selected:e})},onKeyDown:function(e){var t;switch(e.keyCode){case c.Keys.left:t=this.keyBinding[this.invertKeys(c.Keys.left,c.Keys.right)];break;case c.Keys.right:t=this.keyBinding[this.invertKeys(c.Keys.right,c.Keys.left)];break;case c.Keys.up:t=this.keyBinding[c.Keys.up];break;case c.Keys.down:t=this.keyBinding[c.Keys.down];break;case c.Keys.home:t=this.keyBinding[c.Keys.home];break;case c.Keys.end:t=this.keyBinding[c.Keys.end]}t&&(e.preventDefault(),this.onSelect(t()))},invertKeys:function(e,t){return this.$el&&"rtl"===getComputedStyle(this.$el).direction||!1?t:e},firstNavigatableTab:function(){var e=this.currentTabs.length;if(e)for(var t=0;t<e;t++)if(!this.currentTabs[t].disabled)return t},lastNavigatableTab:function(){var e=this.currentTabs.length;if(e)for(var t=e-1;t>0;t--)if(!this.currentTabs[t].disabled)return t},prevNavigatableTab:function(){var e=this.currentTabs.length,t=this.$props.selected,n=t?t-1:-1;if(n<0)return this.lastNavigatableTab();if(e)for(var i=n;i>-1;i--){if(!this.currentTabs[i].disabled)return i;if(0===i)return this.lastNavigatableTab()}},nextNavigatableTab:function(){var e=this.currentTabs.length,t=this.$props.selected,n=t?t+1:1;if(n>=e)return this.firstNavigatableTab();if(e)for(var i=n;i<e;i++){if(!this.currentTabs[i].disabled)return i;if(i+1===e)return this.firstNavigatableTab()}}},setup:u?function(){return{v3:!!u}}:void 0,render:function(e){var t,n=u||e,r=i({},this.$props),o=r.tabPosition,a=r.tabIndex,s=void 0===a?0:a,p="bottom"===o,h=c.classNames("k-widget","k-header","k-floatwrap","k-tabstrip",((t={})["k-tabstrip-left"]="left"===o,t["k-tabstrip-right"]="right"===o,t["k-tabstrip-bottom"]="bottom"===o,t["k-tabstrip-top"]="top"===o,t));return n("div",{dir:this.$props.dir,attrs:this.v3?void 0:{dir:this.$props.dir},class:h},[!p&&n(l.TabStripNavigation,{tabs:this.currentTabs,attrs:this.v3?void 0:{tabs:this.currentTabs,selected:r.selected,tabContentStyle:r.tabContentStyle,tabIndex:s},selected:r.selected,tabContentStyle:r.tabContentStyle,onSelect:this.onSelect,on:this.v3?void 0:{select:this.onSelect,keydown:this.onKeyDown},onKeydown:this.onKeyDown,tabIndex:s}),function(e){var t=e.selected,r=e.tabContentStyle,o=c.getDefaultSlots(this),a={index:t,animation:this.$props.animation,tabs:this.currentTabs,selected:t,tabContentStyle:r,showAll:this.currentShowAll};return n(d.TabStripContent,i(i({},a),{attrs:this.v3?void 0:i({},a)}),this.v3?function(){return o}:[o])}.call(this,r),p&&n(l.TabStripNavigation,{tabs:this.currentTabs,attrs:this.v3?void 0:{tabs:this.currentTabs,selected:r.selected,tabContentStyle:r.tabContentStyle,tabIndex:s},selected:r.selected,tabContentStyle:r.tabContentStyle,onSelect:this.onSelect,on:this.v3?void 0:{select:this.onSelect,keydown:this.onKeyDown},onKeydown:this.onKeyDown,tabIndex:s})])}};t.TabStrip=h;var f=h;t.TabStripVue3=f},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.getTabs=void 0,t.getTabs=function(e,n){var i=this,r=[];return n.forEach((function(n){i.v3&&n.children&&n.children.length&&(r=t.getTabs.call(i,e,n.children)),(n&&n.tag&&-1!==n.tag.toLowerCase().indexOf("tab")||n.type&&n.type.name&&-1!==n.type.name.toLowerCase().indexOf("kendotabstriptab"))&&r.push(n)})),r}},function(e,t,n){"use strict";var i=Object.create?function(e,t,n,i){void 0===i&&(i=n),Object.defineProperty(e,i,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},r=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t},o=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.hasOwnProperty.call(e,n)&&i(t,e,n);return r(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.TabStripTabVue3=t.TabStripTab=void 0;var a=o(n(1)),s=a.h,u=(a.ref,a.inject,n(0)),l={name:"KendoTabStripTab",props:{disabled:Boolean,contentClassName:String,title:String,titleRender:[String,Function,Object]},inject:{addRenderTitle:{default:null},addTab:{default:null},removeTab:{default:null}},created:function(){this.tabId=u.guid(),this.addTab({title:this.$props.title,id:this.tabId,disabled:this.$props.disabled,contentClassName:this.$props.contentClassName})},destroyed:s?void 0:function(){this.removeTab(this.tabId)},unmounted:function(){this.removeTab(this.tabId)},setup:s?function(){return{v3:!!s}}:void 0,render:function(e){var t=s||e,n=this.$props.titleRender?u.templateRendering.call(this,this.$props.titleRender,u.getListeners.call(this)):null;return n&&this.addRenderTitle(this.tabId,n),t("div",[u.getDefaultSlots(this)])}};t.TabStripTab=l;var d=l;t.TabStripTabVue3=d},function(e,t,n){"use strict";var i=Object.create?function(e,t,n,i){void 0===i&&(i=n),Object.defineProperty(e,i,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},r=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t},o=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.hasOwnProperty.call(e,n)&&i(t,e,n);return r(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.CardVue3=t.Card=void 0;var a=o(n(1)).h,s=n(4),u=n(4),l=n(3),d=n(0),c={name:"KendoCard",props:{dir:String,type:{type:String,default:s.cardType.DEFAULT,validator:function(e){return["default","primary","info","success","warning","error"].includes(e)}},orientation:{type:String,default:u.cardOrientation.VERTICAL,validator:function(e){return["horizontal","vertical"].includes(e)}}},created:function(){d.validatePackage(l.packageMetadata)},setup:a?function(){return{v3:!!a}}:void 0,computed:{wrapperClass:function(){var e,t=this.$props.orientation!==u.cardOrientation.HORIZONTAL?"vertical":"horizontal";return(e={"k-card":!0})["k-card-"+this.$props.type]=this.$props.type!==s.cardType.DEFAULT,e["k-card-"+t]=!0,e}},render:function(e){var t=a||e,n=d.getDefaultSlots(this);return t("div",{dir:this.$props.dir,attrs:this.v3?void 0:{dir:this.$props.dir},class:this.wrapperClass},[n])}};t.Card=c;var p=c;t.CardVue3=p},function(e,t,n){"use strict";var i=Object.create?function(e,t,n,i){void 0===i&&(i=n),Object.defineProperty(e,i,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},r=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t},o=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.hasOwnProperty.call(e,n)&&i(t,e,n);return r(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.CardHeaderVue3=t.CardHeader=void 0;var a=o(n(1)).h,s=n(0),u={name:"KendoCardHeader",setup:a?function(){return{v3:!!a}}:void 0,render:function(e){return(a||e)("div",{class:"k-card-header"},[s.getDefaultSlots(this)])}};t.CardHeader=u;var l=u;t.CardHeaderVue3=l},function(e,t,n){"use strict";var i=Object.create?function(e,t,n,i){void 0===i&&(i=n),Object.defineProperty(e,i,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},r=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t},o=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.hasOwnProperty.call(e,n)&&i(t,e,n);return r(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.CardTitleVue3=t.CardTitle=void 0;var a=o(n(1)).h,s=n(0),u={name:"KendoCardTitle",setup:a?function(){return{v3:!!a}}:void 0,render:function(e){return(a||e)("div",{class:"k-card-title"},[s.getDefaultSlots(this)])}};t.CardTitle=u;var l=u;t.CardTitleVue3=l},function(e,t,n){"use strict";var i=Object.create?function(e,t,n,i){void 0===i&&(i=n),Object.defineProperty(e,i,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},r=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t},o=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.hasOwnProperty.call(e,n)&&i(t,e,n);return r(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.CardBodyVue3=t.CardBody=void 0;var a=o(n(1)).h,s=n(0),u={name:"KendoCardBody",setup:a?function(){return{v3:!!a}}:void 0,render:function(e){return(a||e)("div",{class:"k-card-body"},[s.getDefaultSlots(this)])}};t.CardBody=u;var l=u;t.CardBodyVue3=l},function(e,t,n){"use strict";var i=Object.create?function(e,t,n,i){void 0===i&&(i=n),Object.defineProperty(e,i,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},r=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t},o=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.hasOwnProperty.call(e,n)&&i(t,e,n);return r(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.CardActionsVue3=t.CardActions=void 0;var a=o(n(1)).h,s=n(0),u=n(4),l={name:"KendoCardActions",props:{layout:{type:String,default:u.cardActionsLayout.START,validator:function(e){return["stretched","start","center","end"].includes(e)}},orientation:{type:String,default:u.cardOrientation.HORIZONTAL,validator:function(e){return["horizontal","vertical"].includes(e)}}},setup:a?function(){return{v3:!!a}}:void 0,computed:{wrapperClass:function(){var e;return(e={"k-card-actions":!0})["k-card-actions-"+this.$props.layout]=!0,e["k-card-actions-"+(this.$props.orientation!==u.cardOrientation.HORIZONTAL?"vertical":"k-card-horizontal")]=!0,e}},render:function(e){var t=a||e,n=s.getDefaultSlots(this);return t("div",{class:this.wrapperClass},[n])}};t.CardActions=l;var d=l;t.CardActionsVue3=d},function(e,t,n){"use strict";var i=Object.create?function(e,t,n,i){void 0===i&&(i=n),Object.defineProperty(e,i,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},r=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t},o=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.hasOwnProperty.call(e,n)&&i(t,e,n);return r(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.CardImageVue3=t.CardImage=void 0;var a=o(n(1)).h,s=n(0),u={name:"KendoCardImage",props:{src:String},setup:a?function(){return{v3:!!a}}:void 0,render:function(e){var t=a||e;s.getDefaultSlots(this);return t("img",{class:"k-card-image",src:this.$props.src,attrs:this.v3?void 0:{src:this.$props.src}})}};t.CardImage=u;var l=u;t.CardImageVue3=l},function(e,t,n){"use strict";var i=Object.create?function(e,t,n,i){void 0===i&&(i=n),Object.defineProperty(e,i,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},r=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t},o=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.hasOwnProperty.call(e,n)&&i(t,e,n);return r(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.CardSubtitleVue3=t.CardSubtitle=void 0;var a=o(n(1)).h,s=n(0),u={name:"KendoCardSubtitle",setup:a?function(){return{v3:!!a}}:void 0,render:function(e){return(a||e)("div",{class:"k-card-subtitle"},[s.getDefaultSlots(this)])}};t.CardSubtitle=u;var l=u;t.CardSubtitleVue3=l},function(e,t,n){"use strict";var i=Object.create?function(e,t,n,i){void 0===i&&(i=n),Object.defineProperty(e,i,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},r=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t},o=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.hasOwnProperty.call(e,n)&&i(t,e,n);return r(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.CardFooterVue3=t.CardFooter=void 0;var a=o(n(1)).h,s=n(0),u={name:"KendoCardFooter",setup:a?function(){return{v3:!!a}}:void 0,render:function(e){return(a||e)("div",{class:"k-card-footer"},[s.getDefaultSlots(this)])}};t.CardFooter=u;var l=u;t.CardFooterVue3=l},function(e,t,n){"use strict";var i=Object.create?function(e,t,n,i){void 0===i&&(i=n),Object.defineProperty(e,i,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},r=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t},o=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.hasOwnProperty.call(e,n)&&i(t,e,n);return r(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.AvatarVue3=t.Avatar=void 0;var a=o(n(1)).h,s=n(4),u=n(3),l=n(0),d={name:"KendoAvatar",props:{shape:{type:String,default:s.avatarShape.SQUARE,validator:function(e){return["circle","square","rounded","rectangle"].includes(e)}},type:{type:String,default:s.avatarType.TEXT,validator:function(e){return["text","image","icon"].includes(e)}},fill:{type:String,default:s.avatarFill.SOLID,validator:function(e){return["solid","outline"].includes(e)}},size:{type:String,default:s.avatarSize.MEDIUM,validator:function(e){return["small","medium","large"].includes(e)}},themeColor:{type:String,default:s.avatarThemeColor.PRIMARY,validator:function(e){return["primary","secondary","tertiary","info","success","warning","error","dark","light","inverse","inherit"].includes(e)}}},created:function(){l.validatePackage(u.packageMetadata)},setup:a?function(){return{v3:!!a}}:void 0,computed:{wrapperClass:function(){var e;return(e={"k-avatar":!0})["k-avatar-"+this.$props.fill]=!0,e["k-avatar-"+this.$props.shape]=!0,e["k-avatar-"+this.$props.themeColor]=!0,e["k-avatar-bordered"]=this.$props.border,e["k-avatar-sm"]="small"===this.$props.size,e["k-avatar-md"]="medium"===this.$props.size,e["k-avatar-lg"]="large"===this.$props.size,e}},render:function(e){var t=a||e,n=l.getDefaultSlots(this);return t("div",{class:this.wrapperClass},[t("span",{class:"k-avatar-"+this.$props.type},[n])])}};t.Avatar=d;var c=d;t.AvatarVue3=c},function(e,t,n){"use strict";var i=function(){return(i=Object.assign||function(e){for(var t,n=1,i=arguments.length;n<i;n++)for(var r in t=arguments[n])Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r]);return e}).apply(this,arguments)},r=Object.create?function(e,t,n,i){void 0===i&&(i=n),Object.defineProperty(e,i,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},o=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t},a=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.hasOwnProperty.call(e,n)&&r(t,e,n);return o(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.MenuVue3=t.Menu=void 0;var s=a(n(1)).h,u=n(0),l=n(0),d=n(2),c=n(28),p=n(29),h=n(30),f=n(11),v=n(33),m=n(34),g=n(3),b={name:"KendoMenu",props:{vertical:{type:Boolean,default:!1},items:Array,dir:String,hoverOpenDelay:Number,hoverCloseDelay:Number,openOnClick:Boolean,itemRender:[String,Object,Function],linkRender:[String,Object,Function],customCloseItemIds:Array},created:function(){l.validatePackage(g.packageMetadata),this.mouseOverHandler=new m.MouseOverHandler(this.$props.openOnClick,this.reset,this.onItemMouseOver),this.guid=l.guid(),this.directionHolder=new v.DirectionHolder,this.inputItems=[],this.currentItems=[]},mounted:function(){this.isFirstRender=!1},updated:function(){this.mouseOverHandler.OpenOnClick=this.$props.openOnClick},destroyed:function(){this.clearItemHoverAndLeaveRequestsIfApplicable()},data:function(){return{focusedItemId:d.EMPTY_ID,hoveredItemId:d.EMPTY_ID,tabbableItemId:d.ZERO_LEVEL_ZERO_ITEM_ID,isFirstRender:!0}},computed:{menuClassName:function(){return{"k-widget":!0,"k-reset":!0,"k-header":!0,"k-menu":!0,"k-menu-horizontal":!this.$props.vertical,"k-menu-vertical":this.$props.vertical}}},setup:s?function(){return{v3:!!s}}:void 0,render:function(e){var t=this,n=s||e;this.prepareItems(),this.isFirstRender||this.directionHolder.setIsDirectionRightToLeft(this.checkIsDirectionRightToLeft());var i=this.hoveredItemId?this.hoveredItemId:this.focusedItemId?d.getDirectParentId(this.focusedItemId):d.EMPTY_ID;return n("div",{class:this.getMenuWrapperClassName(),ref:function(e){return t.menuWrapperEl=e}},[n(f.MenuItemInternalsList,{class:this.menuClassName,"aria-orientation":this.$props.vertical?"vertical":void 0,attrs:this.v3?void 0:{"aria-orientation":this.$props.vertical?"vertical":void 0,items:this.currentItems,isMenuVertical:this.$props.vertical,isDirectionRightToLeft:this.directionHolder.getIsDirectionRightToLeft(),focusedItemId:this.focusedItemId,lastItemIdToBeOpened:i,tabbableItemId:this.tabbableItemId,itemRender:u.templateRendering.call(this,this.$props.itemRender,u.getListeners.call(this)),linkRender:u.templateRendering.call(this,this.$props.linkRender,u.getListeners.call(this)),menuGuid:this.guid,originalItemNeeded:this.getInputItem},items:this.currentItems,isMenuVertical:this.$props.vertical,isDirectionRightToLeft:this.directionHolder.getIsDirectionRightToLeft(),focusedItemId:this.focusedItemId,lastItemIdToBeOpened:i,tabbableItemId:this.tabbableItemId,itemRender:u.templateRendering.call(this,this.$props.itemRender,u.getListeners.call(this)),linkRender:u.templateRendering.call(this,this.$props.linkRender,u.getListeners.call(this)),menuGuid:this.guid,onMouseleave:this.onItemMouseLeave,on:this.v3?void 0:{mouseleave:this.onItemMouseLeave,mouseover:this.onItemMouseOver,mousedown:this.onItemMouseDown,keydown:this.onKeyDown,focus:this.onItemFocus,click:this.onItemClick,blur:this.onItemBlur},onMouseover:this.onItemMouseOver,onMousedown:this.onItemMouseDown,onKeydown:this.onKeyDown,onFocus:this.onItemFocus,onClick:this.onItemClick,onBlur:this.onItemBlur,originalItemNeeded:this.getInputItem})])},methods:{reset:function(){this.clearItemHoverAndLeaveRequestsIfApplicable(),this.focusedItemId=d.EMPTY_ID,this.hoveredItemId=d.EMPTY_ID,this.tabbableItemId=d.ZERO_LEVEL_ZERO_ITEM_ID},onKeyDown:function(e){if(this.focusedItemId!==d.EMPTY_ID){var t=d.getItemById(this.focusedItemId,this.currentItems),n=p.getNewItemIdUponKeyboardNavigation(this.currentItems,t.id,e.keyCode,e.key,this.$props.vertical,this.directionHolder.getIsDirectionRightToLeft());t.id!==n&&(e.preventDefault(),this.setFocusedItemId(n)),e.keyCode!==l.Keys.enter&&e.keyCode!==l.Keys.space||t.disabled||(this.mouseOverHandler.handleItemSelectedViaKeyboard(),this.dispatchSelectEventIfWired(e,t.id),!e.defaultPrevented&&0===t.items.length&&t.url&&window.location.assign(t.url))}},onItemMouseOver:function(e){if(this.mouseOverHandler.IsMouseOverEnabled){this.clearItemHoverAndLeaveRequestsIfApplicable();var t=this;this.itemHoverRequest=window.setTimeout((function(){t.setHoveredItemId(e),t.itemHoverRequest=null}),h.getHoverOpenDelay(i({},this.$props)))}},onItemMouseLeave:function(e){if(this.mouseOverHandler.IsMouseOverEnabled&&this.isItemWithDefaultClose(e)){this.clearItemHoverAndLeaveRequestsIfApplicable();var t=this;this.itemLeaveRequest=window.setTimeout((function(){t.setHoveredItemId(d.EMPTY_ID),t.itemLeaveRequest=null}),h.getHoverCloseDelay(i({},this.$props)))}},onItemMouseDown:function(){this.mouseOverHandler.handleItemMouseDown()},onItemFocus:function(e){this.setFocusedItemId(e),this.mouseOverHandler.handleItemFocus()},onItemClick:function(e,t){var n=d.getItemById(t,this.currentItems);n.disabled||(this.setFocusedItemId(t),this.mouseOverHandler.handleItemClick(t,this.isItemWithDefaultClose(t)),this.dispatchSelectEventIfWired(e,t),!e.defaultPrevented&&n.url&&window.location.assign(n.url))},onItemBlur:function(e){this.isItemWithDefaultClose(e)&&this.setFocusedItemId(d.EMPTY_ID)},getInputItem:function(e){return d.getItemById(e,this.inputItems)},setFocusedItemId:function(e){var t=e===d.EMPTY_ID?this.tabbableItemId:d.getRootParentId(e),n=e===d.EMPTY_ID||d.isIdEmptyOrZeroLevel(this.hoveredItemId)&&d.isIdEmptyOrZeroLevel(e)?this.hoveredItemId:d.EMPTY_ID;this.hoveredItemId=n,this.focusedItemId=e,this.tabbableItemId=t},setHoveredItemId:function(e){d.isIdEmptyOrZeroLevel(e)&&d.isIdEmptyOrZeroLevel(this.focusedItemId)?this.hoveredItemId=e:(this.hoveredItemId=e,this.focusedItemId=d.EMPTY_ID,this.tabbableItemId=d.ZERO_LEVEL_ZERO_ITEM_ID)},getMenuWrapperClassName:function(){return{"k-rtl":this.directionHolder.getIsDirectionRightToLeft()}},clearItemHoverAndLeaveRequestsIfApplicable:function(){this.itemHoverRequest&&(clearTimeout(this.itemHoverRequest),this.itemHoverRequest=null),this.itemLeaveRequest&&(clearTimeout(this.itemLeaveRequest),this.itemLeaveRequest=null)},isItemWithDefaultClose:function(e){return!this.$props.customCloseItemIds||-1===this.$props.customCloseItemIds.indexOf(e)},checkIsDirectionRightToLeft:function(){return void 0!==this.$props.dir?"rtl"===this.$props.dir:this.menuWrapperEl&&"rtl"===getComputedStyle(this.menuWrapperEl).direction},prepareItems:function(){var e=c.prepareInputItemsForInternalWork.call(this,this.$props.items),t=e.items,n=e.inputItems;this.currentItems=t,this.inputItems=n},dispatchSelectEventIfWired:function(e,t){this.$emit("select",{event:e,compontent:this,item:this.getInputItem(t),itemId:t})}}};t.Menu=b;var y=b;t.MenuVue3=y},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.prepareInputItemsForInternalWork=void 0;var i=n(0),r=n(2);function o(e){var t={},n=e.text,r=e.url,o=e.icon,a=e.disabled,s=e.cssClass,u=e.cssStyle,l=e.render,d=e.linkRender,c=e.contentRender,p=e.data;return void 0!==n&&(t.text=n),void 0!==r&&(t.url=r),void 0!==o&&(t.icon=o),void 0!==a&&(t.disabled=a),void 0!==s&&(t.cssClass=s),void 0!==u&&(t.cssStyle=u),void 0!==l&&(t.render=i.templateRendering.call(this,l,i.getListeners.call(this))),void 0!==d&&(t.linkRender=i.templateRendering.call(this,d,i.getListeners.call(this))),void 0!==c&&(t.contentRender=i.templateRendering.call(this,c,i.getListeners.call(this))),void 0!==p&&(t.data=p),t}function a(e,t){for(var n=[],i=0;i<e.length;i++){var a=e[i],u=o.call(this,a);u.id=r.createId(i.toString(),t),u.isLastFromSiblings=i===e.length-1,u.items=s(a,u),n.push(u)}return n}function s(e,t){return e.contentRender?[{contentParentItemId:t.id,id:r.createId(r.ZERO_LEVEL_ZERO_ITEM_ID,t.id),isLastFromSiblings:!0,contentRender:e.contentRender,items:[]}]:e.items?a.call(this,e.items,t.id):[]}t.prepareInputItemsForInternalWork=function(e){return e&&e.length>0?{items:a.call(this,e),inputItems:e}:{items:[],inputItems:[]}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.getNewItemIdUponKeyboardNavigation=void 0;var i=n(0),r=n(2),o=/\S/;t.getNewItemIdUponKeyboardNavigation=function(e,t,n,a,s,u){var l,d=g();switch(n){case i.Keys.left:return s?u?f():p():u?h():c();case i.Keys.right:return s?u?p():f():u?c():h();case i.Keys.up:return s?y():r.isIdZeroLevel(t)?m():y();case i.Keys.down:return s?I():r.isIdZeroLevel(t)?v():I();case i.Keys.enter:case i.Keys.space:return d.disabled?t:b()?r.getFirstChildId(t):r.getRootParentId(t);case i.Keys.home:return O()[0].id;case i.Keys.end:return(l=O())[l.length-1].id;case i.Keys.esc:return r.isIdZeroLevel(t)?t:r.getDirectParentId(t);default:return 1===a.length&&o.test(a)?function(){var e=a.toLowerCase(),n=O(),i=Number(r.getShortId(t)),o=n.slice(i+1).concat(n.slice(0,i+1)).find((function(t){return(t.text||"").toLowerCase().startsWith(e)}));return o?o.id:t}():t}function c(){return r.isIdZeroLevel(t)?y():r.isIdFirstLevel(t)?v(y(r.getRootParentId(t))):r.getDirectParentId(t)}function p(){return r.isIdZeroLevel(t)?m():r.getDirectParentId(t)}function h(){return r.isIdZeroLevel(t)?I():v(b()?t:I(r.getRootParentId(t)))}function f(){return v(r.isIdZeroLevel(t)||b()?t:I(r.getRootParentId(t)))}function v(e){return E(!0,e)}function m(e){return E(!1,e)}function g(n,i){return void 0===n&&(n=t),void 0===i&&(i=e),r.getItemById(n,i)}function b(e){return g(e).items.length>0}function y(e){return w(!1,e)}function I(e){return w(!0,e)}function O(){return r.isIdZeroLevel(t)?e:g(r.getDirectParentId(t),e).items}function E(e,n){void 0===n&&(n=t);var i=g(n);return b(n)&&!i.disabled?e?r.getFirstChildId(n):function(e){var t=g(e).items;return t[t.length-1].id}(n):n}function w(n,i){if(void 0===i&&(i=t),r.isIdZeroLevel(i))return r.getDirectSiblingIdForLevelZero(n,i,e.length);var o=r.getDirectParentId(i),a=r.getShortId(i),s=g(o).items.length;return r.createId(r.getDirectSiblingIdForLevelZero(n,a,s),o)}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.getHoverCloseDelay=t.getHoverOpenDelay=void 0,t.getHoverOpenDelay=function(e){return void 0!==e.hoverOpenDelay?e.hoverOpenDelay:e.openOnClick?0:100},t.getHoverCloseDelay=function(e){return void 0!==e.hoverCloseDelay?e.hoverCloseDelay:100}},function(e,t,n){"use strict";var i=Object.create?function(e,t,n,i){void 0===i&&(i=n),Object.defineProperty(e,i,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},r=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t},o=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.hasOwnProperty.call(e,n)&&i(t,e,n);return r(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.MenuItemInternalVue3=t.MenuItemInternal=void 0;var a=o(n(1)),s=a.h,u=a.ref,l=n(0),d=n(37),c=n(2),p=n(5),h=n(12),f=n(11),v=n(13),m={name:"KendoMenuItemInternal",emits:{keydown:null,mouseover:null,mouseleave:null,blur:null,focus:null,click:null,mousedown:null},props:{item:Object,focusedItemId:String,lastItemIdToBeOpened:String,tabbableItemId:String,itemRender:[String,Object,Function],linkRender:[String,Object,Function],isMenuVertical:Boolean,isDirectionRightToLeft:Boolean,menuGuid:String,originalItemNeeded:Function},created:function(){this.itemElement=null,this.prevFocusedItemId=this.$props.focusedItemId,this.isFirstRender=!0,this._anchor=l.guid()},data:function(){return{opened:!1}},mounted:function(){this.itemElement=this.v3?this.kendoAnchorRef:this.$refs[this._anchor];var e=this.$props.focusedItemId,t=this.$props.item.id;e&&e===t&&this.itemElement.focus(),this.isFirstRender=!1},watch:{focusedItemId:function(e,t){this.prevFocusedItemId=t}},updated:function(){var e=this.$props.focusedItemId,t=this.$props.item.id;e?this.prevFocusedItemId===e||e!==t||this.itemElement.contains(document.activeElement)||this.itemElement.focus():document.activeElement===this.itemElement&&this.itemElement.blur()},computed:{currentItemRender:function(){return this.$props.item.render||this.$props.itemRender},currentLinkRender:function(){return this.$props.item.linkRender||this.$props.linkRender},contentRender:function(){return this.$props.item.contentParentItemId?this.$props.item.contentRender:null},currentOpened:function(){var e=this.$props;return e.item.items.length>0&&c.shouldOpenItem(e.item.id,e.lastItemIdToBeOpened)&&!this.isFirstRender},popupClassName:function(){return l.classNames({"k-menu-popup":!0,"k-rtl":this.$props.isDirectionRightToLeft})},menuItemClassName:function(){var e,t=this.$props.item;return(e={"k-item":!0,"k-menu-item":!0,"k-first":c.isFirstItemFromSiblings(t.id),"k-last":t.isLastFromSiblings,"k-state-disabled":t.disabled})[t.cssClass?t.cssClass:""]=t.cssClass,e}},setup:s?function(){return{v3:!!s,kendoAnchorRef:u(null)}}:void 0,render:function(e){var t=this,n=s||e,i=this.$props.item,r=i.id,o=function(){return this.$props.item.icon?n("span",{class:"k-icon k-i-"+this.$props.item.icon,role:"presentation",attrs:this.v3?void 0:{role:"presentation"},key:"0"}):null},a=function(){return this.$props.item.items.length>0?n(v.MenuItemArrow,{itemId:this.$props.item.id,attrs:this.v3?void 0:{itemId:this.$props.item.id,verticalMenu:this.$props.isMenuVertical,dir:p.convertBoolDirectionToString(this.$props.isDirectionRightToLeft)},verticalMenu:this.$props.isMenuVertical,dir:p.convertBoolDirectionToString(this.$props.isDirectionRightToLeft),key:"2"}):null};return n("li",{class:this.menuItemClassName,style:i.cssStyle,tabIndex:r===this.$props.tabbableItemId?0:-1,attrs:this.v3?void 0:{tabIndex:r===this.$props.tabbableItemId?0:-1,role:"menuitem","aria-disabled":!!i.disabled||void 0,"aria-haspopup":i.items.length>0||void 0,"aria-expanded":i.items.length>0?this.currentOpened:void 0,"aria-label":i.text,"aria-owns":this.currentOpened?p.getDOMElementId(this.$props.menuGuid,r):void 0},onMouseover:this.onMouseOver,on:this.v3?void 0:{mouseover:this.onMouseOver,mouseleave:this.onMouseLeave,mousedown:function(e){return t.handleMouseDown(e)},focusout:function(){return t.handleBlur(r)},focusin:function(){return t.handleFocus(r)},click:function(e){return t.handleClick(e,r)},keydown:this.handleKeyDown},onMouseleave:this.onMouseLeave,onMousedown:function(e){return t.handleMouseDown(e)},onFocusout:function(){return t.handleBlur(r)},onFocusin:function(){return t.handleFocus(r)},onClick:function(e){return t.handleClick(e,r)},onKeydown:this.handleKeyDown,role:"menuitem","aria-disabled":!!i.disabled||void 0,"aria-haspopup":i.items.length>0||void 0,"aria-expanded":i.items.length>0?this.currentOpened:void 0,"aria-label":i.text,"aria-owns":this.currentOpened?p.getDOMElementId(this.$props.menuGuid,r):void 0,ref:this.v3?function(e){t.kendoAnchorRef=e}:this._anchor,key:"0"},[this.contentRender?function(){var e=this.$props.item.contentParentItemId;return n("div",{class:"k-content",role:"presentation",attrs:this.v3?void 0:{role:"presentation"}},[function(e){return l.getTemplate.call(this,{h:n,template:this.contentRender,additionalProps:e})}.call(this,{item:this.handleOriginalItemNeeded(e),itemId:e}),n(this.contentRender)])}.call(this):function(){var e=this,t=i.text,r=l.getTemplate.call(this,{h:n,template:this.currentItemRender,defaultRendering:t,additionalProps:{item:this.$props.originalItemNeeded(i.id),itemId:i.id,key:"1"}}),s=n(h.MenuItemLink,{url:i.url,attrs:this.v3?void 0:{url:i.url,opened:this.currentOpened},opened:this.currentOpened},this.v3?function(){return[[o.call(e),r,a.call(e)]]}:[[o.call(e),r,a.call(e)]]);return l.getTemplate.call(this,{h:n,template:this.currentLinkRender,defaultRendering:s,additionalProps:{item:this.$props.originalItemNeeded(i.id),itemId:i.id,opened:this.currentOpened,dir:p.convertBoolDirectionToString(this.$props.isDirectionRightToLeft)}})}.call(this),function(){var e=this,t=p.getPopupSettings(r,this.$props.isMenuVertical,this.$props.isDirectionRightToLeft),i=t.anchorAlign,o=t.popupAlign,a=t.collision;return n(d.Popup,{anchor:this._anchor,attrs:this.v3?void 0:{anchor:this._anchor,show:this.currentOpened,popupClass:this.popupClassName,anchorAlign:i,popupAlign:o,collision:a,animate:!1},show:this.currentOpened,popupClass:this.popupClassName,anchorAlign:i,popupAlign:o,collision:a,animate:!1,key:"1"},this.v3?function(){return[n(f.MenuItemInternalsList,{parentItemId:r,attrs:e.v3?void 0:{parentItemId:r,items:e.$props.item.items,menuGuid:e.$props.menuGuid,focusedItemId:e.$props.focusedItemId,lastItemIdToBeOpened:e.$props.lastItemIdToBeOpened,tabbableItemId:e.$props.tabbableItemId,itemRender:e.$props.itemRender,linkRender:e.$props.linkRender,isMenuVertical:e.$props.isMenuVertical,isDirectionRightToLeft:e.$props.isDirectionRightToLeft,originalItemNeeded:e.handleOriginalItemNeeded},items:e.$props.item.items,menuGuid:e.$props.menuGuid,focusedItemId:e.$props.focusedItemId,lastItemIdToBeOpened:e.$props.lastItemIdToBeOpened,tabbableItemId:e.$props.tabbableItemId,itemRender:e.$props.itemRender,linkRender:e.$props.linkRender,isMenuVertical:e.$props.isMenuVertical,isDirectionRightToLeft:e.$props.isDirectionRightToLeft,class:"k-group k-menu-group k-reset",onMouseover:e.handleItemMouseOver,on:e.v3?void 0:{mouseover:e.handleItemMouseOver,mouseleave:e.handleItemMouseLeave,mousedown:e.handleMouseDown,blur:e.handleItemMouseBlur,focus:e.handleItemMouseFocus,click:e.handleClick,keydown:e.handleKeyDown},onMouseleave:e.handleItemMouseLeave,onMousedown:e.handleMouseDown,onBlur:e.handleItemMouseBlur,onFocus:e.handleItemMouseFocus,onClick:e.handleClick,onKeydown:e.handleKeyDown,originalItemNeeded:e.handleOriginalItemNeeded})]}:[n(f.MenuItemInternalsList,{parentItemId:r,attrs:e.v3?void 0:{parentItemId:r,items:e.$props.item.items,menuGuid:e.$props.menuGuid,focusedItemId:e.$props.focusedItemId,lastItemIdToBeOpened:e.$props.lastItemIdToBeOpened,tabbableItemId:e.$props.tabbableItemId,itemRender:e.$props.itemRender,linkRender:e.$props.linkRender,isMenuVertical:e.$props.isMenuVertical,isDirectionRightToLeft:e.$props.isDirectionRightToLeft,originalItemNeeded:e.handleOriginalItemNeeded},items:e.$props.item.items,menuGuid:e.$props.menuGuid,focusedItemId:e.$props.focusedItemId,lastItemIdToBeOpened:e.$props.lastItemIdToBeOpened,tabbableItemId:e.$props.tabbableItemId,itemRender:e.$props.itemRender,linkRender:e.$props.linkRender,isMenuVertical:e.$props.isMenuVertical,isDirectionRightToLeft:e.$props.isDirectionRightToLeft,class:"k-group k-menu-group k-reset",onMouseover:e.handleItemMouseOver,on:e.v3?void 0:{mouseover:e.handleItemMouseOver,mouseleave:e.handleItemMouseLeave,mousedown:e.handleMouseDown,blur:e.handleItemMouseBlur,focus:e.handleItemMouseFocus,click:e.handleClick,keydown:e.handleKeyDown},onMouseleave:e.handleItemMouseLeave,onMousedown:e.handleMouseDown,onBlur:e.handleItemMouseBlur,onFocus:e.handleItemMouseFocus,onClick:e.handleClick,onKeydown:e.handleKeyDown,originalItemNeeded:e.handleOriginalItemNeeded})])}.call(this)])},methods:{handleKeyDown:function(e){this.$emit("keydown",e)},handleItemMouseOver:function(e){this.$emit("mouseover",e)},handleItemMouseLeave:function(e){this.$emit("mouseleave",e)},handleItemMouseBlur:function(e){this.$emit("blur",e)},handleItemMouseFocus:function(e){this.$emit("focus",e)},handleClick:function(e,t){this.$emit("click",e,t)},handleBlur:function(e){this.$emit("blur",e)},handleFocus:function(e){this.$emit("focus",e)},handleMouseDown:function(e){this.$emit("mousedown",e)},handleOriginalItemNeeded:function(e){this.$props.originalItemNeeded(e)},onMouseOver:function(e){this.$emit("mouseover",this.$props.item.id),e.stopPropagation()},onMouseLeave:function(e){this.$emit("mouseleave",this.$props.item.id),e.stopPropagation()}}};t.MenuItemInternal=m;var g=m;t.MenuItemInternalVue3=g},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.POPUP_SETTINGS=t.POPUP_SETTINGS_RTL=void 0;var i={vertical:"top",horizontal:"left"},r={vertical:"top",horizontal:"right"},o={vertical:"flip",horizontal:"fit"},a={vertical:"fit",horizontal:"flip"};t.POPUP_SETTINGS_RTL={downward:{anchorAlign:{vertical:"bottom",horizontal:"right"},popupAlign:r,collision:o},leftward:{anchorAlign:{vertical:"top",horizontal:"left"},popupAlign:r,collision:a}},t.POPUP_SETTINGS={downward:{anchorAlign:{vertical:"bottom",horizontal:"left"},popupAlign:i,collision:o},rightward:{anchorAlign:{vertical:"top",horizontal:"right"},popupAlign:i,collision:a}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.DirectionHolder=void 0;var i=function(){function e(){this.phase="Initialized"}return e.prototype.getIsDirectionRightToLeft=function(){return this.isDirectionRightToLeft},e.prototype.setIsDirectionRightToLeft=function(e){this.phase="NotInitialized"===this.phase?"Initialized":"NewValueReceived",this.previousIsDirectionRightToLeft=this.isDirectionRightToLeft,this.isDirectionRightToLeft=e},e.prototype.hasDirectionChanged=function(){return"NewValueReceived"===this.phase&&this.previousIsDirectionRightToLeft!==this.isDirectionRightToLeft},e}();t.DirectionHolder=i},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.MouseOverHandler=void 0;var i=function(){function e(e,t,n){this.openOnClick=e,this.resetMenu=t,this.openItem=n,this.openOnClick=e,this.isMouseOverEnabled=!e}return Object.defineProperty(e.prototype,"OpenOnClick",{set:function(e){Boolean(e)!==Boolean(this.openOnClick)&&(this.mouseDown=!1,this.isMouseOverEnabled=!e),this.openOnClick=e},enumerable:!1,configurable:!0}),e.prototype.handleItemSelectedViaKeyboard=function(){this.openOnClick&&(this.isMouseOverEnabled=!1,this.resetMenu())},Object.defineProperty(e.prototype,"IsMouseOverEnabled",{get:function(){return this.isMouseOverEnabled},enumerable:!1,configurable:!0}),e.prototype.handleItemMouseDown=function(){this.mouseDown=!0},e.prototype.handleItemFocus=function(){this.openOnClick&&!this.mouseDown&&(this.isMouseOverEnabled=!0),this.mouseDown=!1},e.prototype.handleItemClick=function(e,t){this.openOnClick&&(this.isMouseOverEnabled?t&&(this.isMouseOverEnabled=!1,this.resetMenu()):(this.isMouseOverEnabled=!0,this.openItem(e)))},e}();t.MouseOverHandler=i},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0})},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0})},function(e,t,n){"use strict";n.r(t),n.d(t,"Popup",(function(){return Q})),n.d(t,"PopupVue3",(function(){return J}));var i=n(1),r=n(6),o="bottom",a="center",s="middle",u="left",l="right",d="top",c=function(e){var t=e.anchorRect,n=e.anchorAlign,i=e.elementRect,r=e.elementAlign,u=e.margin;void 0===u&&(u={});var d=n.horizontal,c=n.vertical,p=r.horizontal,h=r.vertical,f=u.horizontal||0,v=u.vertical||0,m=t.top,g=t.left;return c===o&&(m+=t.height),c!==a&&c!==s||(m+=Math.round(t.height/2)),h===o&&(m-=i.height,v*=-1),h!==a&&h!==s||(m-=Math.round(i.height/2),v*=-1),d===l&&(g+=t.width),d!==a&&d!==s||(g+=Math.round(t.width/2)),p===l&&(g-=i.width,f*=-1),p!==a&&p!==s||(g-=Math.round(i.width/2),f*=-1),{top:m+v,left:g+f}};function p(e){return e.ownerDocument||e.document||e}var h=function(e){return p(e).defaultView},f=function(e){return p(e).documentElement},v=0;function m(){if(!v&&"undefined"!=typeof document){var e=document.createElement("div");e.style.cssText="overflow:scroll;overflow-x:hidden;zoom:1;clear:both;display:block",e.innerHTML="&nbsp;",document.body.appendChild(e),v=e.offsetWidth-e.scrollWidth,document.body.removeChild(e)}return v}function g(e){var t=h(e),n=f(e),i={height:t.innerHeight,width:t.innerWidth};return n.scrollHeight-n.clientHeight>0&&(i.width-=m()),i}var b=function(e){if(!e.getBoundingClientRect){var t=g(e);return{bottom:t.height,left:0,right:t.width,top:0}}var n=e.getBoundingClientRect();return{bottom:n.bottom,left:n.left,right:n.right,top:n.top}},y=function(e){for(var t=e.offsetParent;t&&"static"===t.style.position;)t=t.offsetParent;return t||f(e)},I=function(e){return y(e)===e.ownerDocument.body},O=function(e){var t=e.getBoundingClientRect(),n=t.left,i=t.top;return t.height||t.width||(t=function(e){var t=e.style,n=t.display,i=t.left,r=t.position;e.style.display="",e.style.left="-10000px",e.style.position="absolute";var o=e.getBoundingClientRect();return e.style.display=n,e.style.left=i,e.style.position=r,o}(e)),{top:i,left:n,height:t.height,width:t.width}},E=function(e,t){for(var n=[],i=e.parentNode;i&&(n.push(i),i!==t);)i=i.parentNode;return n};function w(e){var t=f(e),n=h(e);return{x:n.pageXOffset||t.scrollLeft||0,y:n.pageYOffset||t.scrollTop||0}}var x=function(e){return e===(e.ownerDocument||{}).body?w(e):{x:e.scrollLeft,y:e.scrollTop}};var $=function(e,t){var n=h(e),i=n.getComputedStyle(e),r=O(e),o=t||y(e),a=e.ownerDocument,s=o!==a.body&&o!==a.documentElement,u={top:0,left:0};if("fixed"!==i.position&&s){var l=n.getComputedStyle(o);(u=O(o)).top+=parseInt(l.borderTopWidth,10),u.left+=parseInt(l.borderLeftWidth,10)}return{top:r.top-u.top,left:r.left-u.left,height:r.height,width:r.width}},k=function(e,t){return e?x(e):function(e){var t=y(e);return t?x(t):{x:0,y:0}}(t)};var S="fit",C="flip",D=function(e,t,n){var i=0;return e+t>n&&(i=n-(e+t)),e<0&&(i=-e),i},T=function(e){var t=e.offset,n=e.size,i=e.anchorSize,r=e.viewPortSize,o=e.anchorAlignPoint,l=e.elementAlignPoint,c=0,p=2*e.margin;if(l!==o&&!(l===a||l===s)&&!(o===a||o===s)){var h=o===d||o===u;t<0&&h?t+(c=n+i+p)+n>r&&(c=0):t>=0&&!h&&(t+n>r&&(c+=-(i+n+p)),t+c<0&&(c=0))}return c},_=function(e){var t=e.anchorRect,n=e.anchorAlign,i=e.elementRect,r=e.elementAlign,o=e.collisions,a=e.viewPort,s=e.margin;void 0===s&&(s={});var u=i.top,l=i.left,d=i.height,c=i.width,p=a.height,h=a.width,f=s.horizontal||0,v=s.vertical||0,m=0,g=0,b=o.horizontal===C,y=o.vertical===C;o.vertical===S&&(g+=D(u,d,p)),o.horizontal===S&&(m+=D(l,c,h)),y&&(g+=T({margin:v,offset:u,size:d,anchorSize:t.height,viewPortSize:p,anchorAlignPoint:n.vertical,elementAlignPoint:r.vertical})),b&&(m+=T({margin:f,offset:l,size:c,anchorSize:t.width,viewPortSize:h,anchorAlignPoint:n.horizontal,elementAlignPoint:r.horizontal}));var I=b&&0!==m,O=y&&0!==g;return{flipped:I||O,flip:{horizontal:I,vertical:O},offset:{left:m,top:g}}},M=function(e){for(var t=[],n=e.parentNode.firstElementChild;n;)n!==e&&t.push(n),n=n.nextElementSibling;return t},P=function(e,t){for(var n,i,r=E(e),o=t;o&&(n=M(o),!(i=r.reduce((function(e,t){return e.concat(n.filter((function(e){return e===t})))}),[])[0]));)o=o.parentElement;return i};var R=function(e,t){return e||{height:0,left:t.left,top:t.top,width:0}},j=function(){return"undefined"!=typeof document&&!!document.body},L=function(){return"undefined"!=typeof window},N=/auto|scroll/,A=function(e){var t=window.getComputedStyle(e);return""+t.overflow+t.overflowX+t.overflowY},B=function(){if(!j())return!1;var e=document.createElement("div");if(e.style.transform="matrix(10, 0, 0, 10, 0, 0)",e.innerHTML="<div>child</div>",document.body.appendChild(e),e&&e.firstChild){var t=e.firstChild;t.style.position="fixed",t.style.top="10px"}var n=10!==e.children[0].getBoundingClientRect().top;return document.body.removeChild(e),n}(),F="fit",K="flip",z="left",V="bottom",H="top",U=function(){function e(e){this._dom=e}return e.prototype.alignElement=function(e){var t=e.anchor,n=e.element,i=e.anchorAlign,r=e.elementAlign,o=e.offset,a=!this._dom.hasOffsetParent(n)?this.absoluteRect(t,n,o):this.relativeRect(t,n,o);return this._dom.align({anchorAlign:i,anchorRect:a,elementAlign:r,elementRect:this._dom.offset(n)})},e.prototype.absoluteRect=function(e,t,n){var i=this._dom,r=function(e,t){return t?{height:e.height,left:e.left-t.left,top:e.top-t.top,width:e.width}:e}(R(i.offset(e),n),i.stackingElementOffset(t)),o=i.stackingElementScroll(t),a=i.addScroll(r,o),s=this.elementScrollPosition(e,t),u=i.removeScroll(a,s);return u.left+=window.scrollX||window.pageXOffset,u.top+=window.scrollY||window.pageYOffset,u},e.prototype.elementScrollPosition=function(e,t){return e?{x:0,y:0}:this._dom.scrollPosition(t)},e.prototype.relativeRect=function(e,t,n){return R(this._dom.position(e,t),n)},e}(),W=function(){function e(){}return e.prototype.addOffset=function(e,t){return{left:e.left+t.left,top:e.top+t.top}},e.prototype.align=function(e){return c(e)},e.prototype.boundingOffset=function(e){return b(e)},e.prototype.getWindow=function(){return L()?window:null},e.prototype.isBodyOffset=function(e){return I(e)},e.prototype.hasOffsetParent=function(e){if(!e)return!1;var t=e.offsetParent;return t&&!("BODY"===t.nodeName&&"static"===window.getComputedStyle(t).position)},e.prototype.offset=function(e){return e?O(e):null},e.prototype.staticOffset=function(e){if(!e)return null;var t=e.style,n=t.left,i=t.top;e.style.left="0px",e.style.top="0px";var r=O(e);return e.style.left=n,e.style.top=i,r},e.prototype.position=function(e,t){return e&&t?function(e,t,n){void 0===n&&(n=1);var i=t?y(t):null,r=$(e,i),o=r.top,a=r.left,s=r.height,u=r.width,l=k(i,e),d=l.x,c=l.y,p=e.ownerDocument,h=i===p.body||i===p.documentElement?1:n;return{top:o+c*h,left:a+d*h,height:s,width:u}}(e,P(e,t)):null},e.prototype.relativeOffset=function(e,t){return n=this.offset(e),i=t,r=this.isBodyOffset(e),o=n.top,a=n.left,r&&(a=0,o=0),{top:o+i.top,left:a+i.left,height:n.height,width:n.width};var n,i,r,o,a},e.prototype.addScroll=function(e,t){return function(e,t){return{top:e.top+t.y,left:e.left+t.x,height:e.height,width:e.width}}(e,t)},e.prototype.removeScroll=function(e,t){return function(e,t){return{top:e.top-t.y,left:e.left-t.x,height:e.height,width:e.width}}(e,t)},e.prototype.restrictToView=function(e){return _(e)},e.prototype.scrollPosition=function(e){return w(e)},e.prototype.scrollableParents=function(e){return function(e){var t=[];if(!j()||!L())return t;for(var n=e.parentElement;n;)N.test(A(n))&&t.push(n),n=n.parentElement;return t.push(window),t}(e)},e.prototype.stackingElementOffset=function(e){var t=this.getRelativeContextElement(e);return t?O(t):null},e.prototype.stackingElementScroll=function(e){var t=this.getRelativeContextElement(e);return t?{x:t.scrollLeft,y:t.scrollTop}:{x:0,y:0}},e.prototype.stackingElementViewPort=function(e){var t=this.getRelativeContextElement(e);return t?{height:t.scrollHeight,width:t.scrollWidth}:null},e.prototype.getRelativeContextElement=function(e){if(!e||!B)return null;for(var t=e.parentElement;t;){if("none"!==window.getComputedStyle(t).transform)return t;t=t.parentElement}return null},e.prototype.useRelativePosition=function(e){return!!this.getRelativeContextElement(e)},e.prototype.windowViewPort=function(e){return g(e)},e.prototype.zIndex=function(e,t){return function(e,t){if(!e||!j()||!L())return null;var n=P(e,t);if(!n)return null;var i=[e].concat(E(e,n)).reduce((function(e,t){var n=t.style.zIndex||window.getComputedStyle(t).zIndex,i=parseInt(n,10);return i>e?i:e}),0);return i?i+1:null}(e,t)},e.prototype.zoomLevel=function(){return j()&&L()?parseFloat((document.documentElement.clientWidth/window.innerWidth).toFixed(2)):1},e.prototype.isZoomed=function(){return this.zoomLevel()>1},e}(),Z=function(){function e(e){this._dom=e}return e.prototype.positionElement=function(e){var t,n,i=e.anchor,r=e.currentLocation,o=e.element,a=e.anchorAlign,s=e.elementAlign,u=e.collisions,l=this._dom,d=e.viewPort||l.stackingElementViewPort(o)||l.windowViewPort(o),c=R(l.offset(i),r),p=(t=l.staticOffset(o),(n=r)?{height:t.height,left:n.left,top:n.top,width:t.width}:t),h=this.elementRect(o,p),f=l.restrictToView({anchorAlign:a,anchorRect:c,collisions:u,elementAlign:s,elementRect:h,viewPort:d});return{flipped:f.flipped,offset:l.addOffset(p,f.offset)}},e.prototype.elementRect=function(e,t){return this._dom.removeScroll(t,this._dom.scrollPosition(e))},e}(),Y=n(0),G={name:"@progress/kendo-vue-popup",productName:"Kendo UI for Vue",productCodes:["KENDOUIVUE","KENDOUICOMPLETE"],publishDate:1634297147,version:"",licensingDocsUrl:"https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning"},q=i.h,X={left:-1e3,top:0},Q={name:"Popup",props:{appendTo:{type:String,default:""},anchor:{type:String,default:""},className:String,id:String,popupClass:String,collision:{type:Object,default:function(){return{horizontal:F,vertical:K}}},anchorAlign:{type:Object,default:function(){return{horizontal:z,vertical:V}}},popupAlign:{type:Object,default:function(){return{horizontal:z,vertical:H}}},offset:{type:Object,default:function(){return X}},show:{type:Boolean,default:!1},animate:{type:[Boolean,Object],default:function(){return!0}},direction:{type:String,default:"down"},transition:{type:String,default:"expand"}},data:function(){return{hasMounted:!1}},created:function(){Object(Y.validatePackage)(G),this.mountedAppendTo=void 0,this.mountedAnchor=void 0,this._initiallyMountedContent=void 0,this._flipped=!1,this._offsetTop=0,this._offsetLeft=-1e3,this._exitingAnimation=!1,this._prevShow=!1,this._prevShow=this.$props.show,this._domService=new W,this._alignService=new U(this._domService),this._positionService=new Z(this._domService),this.reposition=function(e,t,n){var i,r,o,a;void 0===n&&(n={});var s=0;n=n||{};var u=function(){s=!1===n.leading?0:(new Date).getTime(),i=null,a=e.apply(r,o),i||(r=o=null)};return function(){var l=(new Date).getTime();s||!1!==n.leading||(s=l);var d=t-(l-s);return r=this,o=arguments,d<=0||d>t?(i&&(clearTimeout(i),i=null),s=l,a=e.apply(r,o),i||(r=o=null)):i||!1===n.trailing||(i=setTimeout(u,d)),a}}(this.reposition.bind(this),1e3/60)},setup:q?function(){return{v3:!!q}}:void 0,mounted:function(){Y.canUseDOM&&(this.mountedAppendTo=this.$props.appendTo?this.getParentRef(this.$props.appendTo):document.body,this.mountedAnchor=this.$props.anchor?this.getParentRef(this.$props.anchor):document.body),this._parentElement=this.$el.parentElement,this._initiallyMountedContent=this.$el.cloneNode(!0),this.hasMounted=!0,this.mountedAppendTo.appendChild(this.$el)},updated:function(){this._prevShow=this.$props.show},destroyed:q?void 0:function(){this.detachRepositionHandlers()},beforeDestroy:q?void 0:function(){this._parentElement&&this._parentElement.appendChild(this.$el)},unmounted:function(){this.detachRepositionHandlers()},beforeUnmount:function(){this._parentElement&&this._parentElement.appendChild(this.$el)},methods:{onOpened:function(){var e=this.$el;this.$props.show&&e.classList.add("k-animation-container-shown"),this.attachRepositionHandlers(e),this.$emit("open",{target:this})},onClosing:function(){this.$props.show||this.$el.classList.remove("k-animation-container-shown");this.detachRepositionHandlers()},onClosed:function(){this._exitingAnimation&&(this._exitingAnimation=!1,this.$forceUpdate()),this.$emit("close",{target:this})},transitionDuration:function(){var e=this.$props.animate,t=0,n=0;return e&&(!0===e?t=n=void 0:(t=e.openDuration,n=e.closeDuration)),{transitionEnterDuration:t,transitionExitDuration:n}},getParentRef:function(e){for(var t=this.$parent;!t.$refs[e];){if(t&&t.kendoAnchorRef)return t.kendoAnchorRef;if(!(t=t.$parent)&&Y.canUseDOM)return document.body}return t.$refs[e].$el||t.$refs[e]},position:function(e,t,n){var i=e.anchorAlign,r=e.popupAlign,o=e.collision,a=e.offset,s=n?this.v3?this.mountedAnchor:this.getParentRef(n):document.body,u=this._alignService.alignElement({anchor:n?s:void 0,element:t,elementAlign:r,anchorAlign:i,offset:a});return this._positionService.positionElement({anchor:s,anchorAlign:i,collisions:o,element:t,currentLocation:u,elementAlign:r})},calculatePosition:function(e,t){if(!t||!L()||!Y.canUseDOM)return{flipped:!1,offset:e.offset};var n=Object(Y.getDefaultSlots)(this),i=document.createElement("div"),r=this.$el&&this.$el.firstChild&&this.$el.firstChild.firstChild?this.$el.firstChild.firstChild.cloneNode(!0):null,o=r&&r.getBoundingClientRect?r:this._initiallyMountedContent;if(o)i.appendChild(o);else{var a=this.v3?n&&n[0].props?n[0].props.class:"":n&&n[0].data?n[0].data.staticClass:"",s=this.v3?this.$props.popupClass?this.$props.popupClass:"":n&&n[0].data?n[0].data.class:"";i.innerHTML='<div class="k-animation-container k-animation-container-relative">\t\n <div class="k-popup k-animation-container k-animation-container-relative">\n <div class="'+a+" "+s+'" >\n </div>\t\n </div>\t\n </div>'}if(t.appendChild(i),i&&i.firstChild){var u=i.firstChild;u.style.position="absolute",u.style.visibility="hidden",u.style.display="block",u.style.left="-1000",u.style.top="0";var l=this.v3?n&&n[0].props?n[0].props.style:{}:n[0].data?n[0].data.style:{};if(l)for(var d=0,c=Object.entries(l);d<c.length;d++){var p=c[d],h=p[0],f=p[1];u.style[h]=f}}var v=this.position(e,i.firstChild,this.$props.anchor);return i.parentNode.removeChild(i),v},attachRepositionHandlers:function(e){var t=this;this.detachRepositionHandlers(),this._scrollableParents=this._domService.scrollableParents(this.$props.anchor?this.mountedAnchor:e),this._scrollableParents.map((function(e){return e.addEventListener("scroll",t.reposition)})),window.addEventListener("resize",this.reposition)},detachRepositionHandlers:function(){var e=this;this._scrollableParents&&(this._scrollableParents.map((function(t){return t.removeEventListener("scroll",e.reposition)})),this._scrollableParents=void 0),window.removeEventListener("resize",this.reposition)},reposition:function(){this.$forceUpdate()}},render:function(e){var t=q||e,n=this.$props,i=n.className,o=n.popupClass,a=n.show,s=n.id,u=Object(Y.getDefaultSlots)(this),l=this.v3||a?u:null,d=L()?this.$props.appendTo?this.mountedAppendTo||this.getParentRef(this.$props.appendTo):document.body:void 0;if(this.$props.show){var c=this.calculatePosition(this.$props,d);this._offsetLeft=c.offset.left,this._offsetTop=c.offset.top,this._flipped=!!c.flipped}var p=this._flipped?"up":"down",h=this.transitionDuration(),f=h.transitionEnterDuration,v=h.transitionExitDuration;return this._exitingAnimation=this._exitingAnimation||this._prevShow&&!a,this.hasMounted?a||this._exitingAnimation&&d?t(r.Slide,{id:s,attrs:this.v3?void 0:{id:s,componentChildClassName:[o,"k-popup"],className:i,direction:p,transitionEnterDuration:f,transitionExitDuration:v,appear:a},componentChildClassName:[o,"k-popup"],className:i,onEntered:this.onOpened,on:this.v3?void 0:{entered:this.onOpened,exiting:this.onClosing,exited:this.onClosed},onExiting:this.onClosing,onExited:this.onClosed,direction:p,style:{position:"absolute",top:this._offsetTop+"px",left:this._offsetLeft+"px"},transitionEnterDuration:f,transitionExitDuration:v,appear:a},this.v3?function(){return[l]}:[l]):null:t("div",{style:{display:"none"},class:i},[t("div",{class:[o,"k-popup"]},[u])])}},J=Q}])}));
package/dist/es/main.d.ts CHANGED
@@ -12,3 +12,8 @@ export * from './card/CardImage';
12
12
  export * from './card/CardSubtitle';
13
13
  export * from './card/CardFooter';
14
14
  export * from './card/Avatar';
15
+ export * from './menu/components/Menu';
16
+ export * from './menu/components/MenuItemLink';
17
+ export * from './menu/components/MenuItemArrow';
18
+ export * from './menu/models/MenuItemModel';
19
+ export * from './menu/events';
package/dist/es/main.js CHANGED
@@ -12,3 +12,8 @@ export * from './card/CardImage';
12
12
  export * from './card/CardSubtitle';
13
13
  export * from './card/CardFooter';
14
14
  export * from './card/Avatar';
15
+ export * from './menu/components/Menu';
16
+ export * from './menu/components/MenuItemLink';
17
+ export * from './menu/components/MenuItemArrow';
18
+ export * from './menu/models/MenuItemModel';
19
+ export * from './menu/events';
@@ -0,0 +1,20 @@
1
+ /**
2
+ * @hidden
3
+ */
4
+ export interface BaseMenuItemInternalProps {
5
+ focusedItemId: string;
6
+ lastItemIdToBeOpened: string;
7
+ tabbableItemId: string;
8
+ itemRender?: any;
9
+ linkRender?: any;
10
+ isMenuVertical: boolean;
11
+ isDirectionRightToLeft?: boolean;
12
+ menuGuid: string;
13
+ onMouseOver?: any;
14
+ onMouseLeave?: any;
15
+ onMouseDown?: any;
16
+ onFocus?: any;
17
+ onClick?: any;
18
+ onBlur?: any;
19
+ originalItemNeeded?: any;
20
+ }
File without changes
@@ -0,0 +1,51 @@
1
+ import { MenuItemModel } from './models/MenuItemModel';
2
+ import { MenuSelectEvent } from './events';
3
+ /**
4
+ * The properties of the [Kendo UI for Vue Menu component]({% slug overview_menu %}).
5
+ */
6
+ export interface MenuProps {
7
+ /**
8
+ * Specifies whether the Menu will be vertical ([see example]({% slug vertical_menu %})).
9
+ */
10
+ vertical?: boolean;
11
+ /**
12
+ * Sets the Menu items.
13
+ */
14
+ items?: MenuItemModel[];
15
+ /**
16
+ * Sets the direction of the Menu.
17
+ */
18
+ dir?: string;
19
+ /**
20
+ * Specifies the delay in milliseconds before the Menu items are opened on item mouse-hover ([see example]({% slug opening_closing_menu %}#toc-delay-on-hover)). Defaults to `100`. If `openOnClick` is `true`, defaults to `0`.
21
+ */
22
+ hoverOpenDelay?: number;
23
+ /**
24
+ * Specifies the delay in milliseconds before the Menu items are closed on item mouse-leave ([see example]({% slug opening_closing_menu %}#toc-delay-on-hover)). Used to avoid accidental closure on leaving. Defaults to `100`.
25
+ */
26
+ hoverCloseDelay?: number;
27
+ /**
28
+ * If `openOnClick` is set to `true`, the items are opened on mouse hover only after an initial click.
29
+ */
30
+ openOnClick?: boolean;
31
+ /**
32
+ * A React functional or class component which is used for rendering the innermost part of the Menu item ([see example]({% slug rendering_menu %}#toc-items)). By default, the innermost item part includes only the text for the item.
33
+ */
34
+ itemRender?: any;
35
+ /**
36
+ * A React functional or class component which is used for rendering the link of the item ([see example]({% slug rendering_menu %}#toc-links)). The item link is a part of the visual representation of the item which, by default, includes an arrow, icon, and text.
37
+ */
38
+ linkRender?: any;
39
+ /**
40
+ * Sets the ids of the Menu items that will not be closed on mouse-leave. The ids are hierarchical and zero-based. The first root item has a `0` id. If the first root item has children, the first child item acquires a `0_0` id and the second acquires a `0_1` id.
41
+ */
42
+ customCloseItemIds?: string[];
43
+ /**
44
+ * Adds a custom className to the Menu top element.
45
+ */
46
+ className?: string;
47
+ /**
48
+ * Fires when a Menu item is selected.
49
+ */
50
+ onSelect?: (event: MenuSelectEvent) => void;
51
+ }
@@ -0,0 +1 @@
1
+ // tslint:enable:max-line-length
@@ -0,0 +1,68 @@
1
+ import { DefineComponent } from '../../additionalTypes';
2
+ import { RecordPropsDefinition, ComponentOptions } from 'vue/types/options';
3
+ declare type DefaultData<V> = object | ((this: V) => {});
4
+ declare type DefaultMethods<V> = {
5
+ [key: string]: (this: V, ...args: any[]) => any;
6
+ };
7
+ import { MenuItemInternalModel, MenuItemModel } from '../models/MenuItemModel';
8
+ import { MenuProps } from '../MenuProps';
9
+ import { MouseOverHandler } from '../utils/MouseOverHandler';
10
+ /**
11
+ * @hidden
12
+ */
13
+ export interface MenuState {
14
+ itemHoverRequest: any;
15
+ itemLeaveRequest: any;
16
+ menuWrapperEl: any;
17
+ guid: string;
18
+ directionHolder: any;
19
+ inputItems: MenuItemModel[];
20
+ currentItems: MenuItemInternalModel[];
21
+ mouseOverHandler: MouseOverHandler;
22
+ }
23
+ /**
24
+ * @hidden
25
+ */
26
+ export interface MenuComputed {
27
+ menuClassName: object;
28
+ }
29
+ /**
30
+ * @hidden
31
+ */
32
+ export interface MenuMethods {
33
+ [key: string]: any;
34
+ reset: () => void;
35
+ onKeyDown: (event: any) => void;
36
+ onItemMouseOver: (itemId: string) => void;
37
+ onItemMouseLeave: (itemId: string) => void;
38
+ onItemMouseDown: () => void;
39
+ onItemFocus: (itemId: string) => void;
40
+ onItemClick: (event: any, itemId: string) => void;
41
+ onItemBlur: (itemId: string) => void;
42
+ getInputItem: (itemId: string) => void;
43
+ setFocusedItemId: (focusedItemId: string) => void;
44
+ setHoveredItemId: (hoveredItemId: string) => void;
45
+ getMenuWrapperClassName: () => object;
46
+ clearItemHoverAndLeaveRequestsIfApplicable: () => void;
47
+ isItemWithDefaultClose: (itemId: string) => boolean;
48
+ checkIsDirectionRightToLeft: () => any;
49
+ prepareItems: () => void;
50
+ dispatchSelectEventIfWired: (event: any, itemId: string) => void;
51
+ }
52
+ /**
53
+ * @hidden
54
+ */
55
+ export interface MenuData {
56
+ focusedItemId: string;
57
+ hoveredItemId: string;
58
+ tabbableItemId: string;
59
+ isFirstRender: boolean;
60
+ }
61
+ /**
62
+ * @hidden
63
+ */
64
+ export interface MenuAll extends Vue, MenuMethods, MenuData, MenuComputed, MenuState {
65
+ }
66
+ declare let Menu: ComponentOptions<MenuAll, DefaultData<MenuData>, DefaultMethods<MenuAll>, MenuComputed, RecordPropsDefinition<MenuProps>>;
67
+ declare const MenuVue3: DefineComponent<MenuProps, any, MenuData, MenuComputed, MenuMethods, {}, {}, {}, string, MenuProps, MenuProps, {}>;
68
+ export { Menu, MenuVue3 };