uikit 3.14.4-dev.fea9fd466 → 3.15.1-dev.f849bb0c8
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.
- package/CHANGELOG.md +32 -18
- package/build/util.js +1 -0
- package/dist/css/uikit-core-rtl.css +284 -63
- package/dist/css/uikit-core-rtl.min.css +1 -1
- package/dist/css/uikit-core.css +284 -63
- package/dist/css/uikit-core.min.css +1 -1
- package/dist/css/uikit-rtl.css +306 -92
- package/dist/css/uikit-rtl.min.css +1 -1
- package/dist/css/uikit.css +306 -92
- package/dist/css/uikit.min.css +1 -1
- package/dist/js/components/countdown.js +1 -1
- package/dist/js/components/countdown.min.js +1 -1
- package/dist/js/components/filter.js +1 -1
- package/dist/js/components/filter.min.js +1 -1
- package/dist/js/components/lightbox-panel.js +98 -131
- package/dist/js/components/lightbox-panel.min.js +1 -1
- package/dist/js/components/lightbox.js +98 -131
- package/dist/js/components/lightbox.min.js +1 -1
- package/dist/js/components/notification.js +4 -2
- package/dist/js/components/notification.min.js +1 -1
- package/dist/js/components/parallax.js +1 -1
- package/dist/js/components/parallax.min.js +1 -1
- package/dist/js/components/slider-parallax.js +1 -1
- package/dist/js/components/slider-parallax.min.js +1 -1
- package/dist/js/components/slider.js +1 -1
- package/dist/js/components/slider.min.js +1 -1
- package/dist/js/components/slideshow-parallax.js +1 -1
- package/dist/js/components/slideshow-parallax.min.js +1 -1
- package/dist/js/components/slideshow.js +1 -1
- package/dist/js/components/slideshow.min.js +1 -1
- package/dist/js/components/sortable.js +1 -1
- package/dist/js/components/sortable.min.js +1 -1
- package/dist/js/components/tooltip.js +101 -136
- package/dist/js/components/tooltip.min.js +1 -1
- package/dist/js/components/upload.js +1 -1
- package/dist/js/components/upload.min.js +1 -1
- package/dist/js/uikit-core.js +518 -478
- package/dist/js/uikit-core.min.js +17 -1
- package/dist/js/uikit-icons.js +1 -1
- package/dist/js/uikit-icons.min.js +1 -1
- package/dist/js/uikit.js +521 -479
- package/dist/js/uikit.min.js +17 -1
- package/package.json +11 -11
- package/src/images/components/navbar-toggle-icon.svg +25 -3
- package/src/js/api/hooks.js +5 -1
- package/src/js/api/state.js +2 -2
- package/src/js/components/notification.js +3 -1
- package/src/js/core/accordion.js +9 -17
- package/src/js/core/alert.js +35 -14
- package/src/js/core/drop.js +110 -82
- package/src/js/core/navbar.js +33 -49
- package/src/js/core/offcanvas.js +8 -4
- package/src/js/core/scroll.js +37 -10
- package/src/js/core/toggle.js +3 -5
- package/src/js/mixin/modal.js +15 -12
- package/src/js/mixin/position.js +21 -22
- package/src/js/mixin/style.js +11 -0
- package/src/js/mixin/togglable.js +90 -124
- package/src/js/util/animation.js +9 -7
- package/src/js/util/class.js +3 -1
- package/src/js/util/filter.js +3 -7
- package/src/js/util/position.js +136 -130
- package/src/js/util/viewport.js +1 -1
- package/src/less/components/_import.less +1 -0
- package/src/less/components/drop.less +1 -18
- package/src/less/components/dropbar.less +126 -0
- package/src/less/components/dropdown.less +6 -20
- package/src/less/components/nav.less +214 -23
- package/src/less/components/navbar.less +26 -54
- package/src/less/theme/_import.less +1 -0
- package/src/less/theme/dropbar.less +44 -0
- package/src/less/theme/dropdown.less +0 -11
- package/src/less/theme/nav.less +46 -0
- package/src/less/theme/navbar.less +5 -36
- package/src/scss/components/_import.scss +1 -0
- package/src/scss/components/drop.scss +1 -18
- package/src/scss/components/dropbar.scss +126 -0
- package/src/scss/components/dropdown.scss +6 -20
- package/src/scss/components/nav.scss +163 -22
- package/src/scss/components/navbar.scss +26 -54
- package/src/scss/mixins-theme.scss +81 -35
- package/src/scss/mixins.scss +77 -3
- package/src/scss/theme/_import.scss +1 -0
- package/src/scss/theme/dropbar.scss +44 -0
- package/src/scss/theme/dropdown.scss +0 -8
- package/src/scss/theme/nav.scss +44 -0
- package/src/scss/theme/navbar.scss +4 -8
- package/src/scss/variables-theme.scss +58 -13
- package/src/scss/variables.scss +46 -8
- package/tests/accordion.html +2 -2
- package/tests/alert.html +2 -2
- package/tests/countdown.html +1 -1
- package/tests/drop.html +446 -416
- package/tests/dropbar.html +458 -0
- package/tests/dropdown.html +8 -470
- package/tests/filter.html +9 -12
- package/tests/flex.html +36 -36
- package/tests/form.html +1 -1
- package/tests/grid.html +22 -22
- package/tests/height.html +6 -6
- package/tests/index.html +127 -108
- package/tests/js/index.js +1 -4
- package/tests/lightbox.html +5 -5
- package/tests/list.html +8 -8
- package/tests/modal.html +13 -13
- package/tests/nav.html +121 -12
- package/tests/navbar.html +111 -220
- package/tests/offcanvas.html +10 -14
- package/tests/pagination.html +6 -6
- package/tests/parallax.html +1 -1
- package/tests/position.html +18 -16
- package/tests/progress.html +9 -9
- package/tests/scroll.html +7 -10
- package/tests/search.html +6 -6
- package/tests/slider.html +6 -5
- package/tests/slideshow.html +8 -8
- package/tests/sortable.html +6 -8
- package/tests/sticky-navbar.html +15 -15
- package/tests/sticky.html +8 -8
- package/tests/switcher.html +1 -1
- package/tests/tab.html +1 -1
- package/tests/table.html +7 -7
- package/tests/toggle.html +2 -2
- package/tests/tooltip.html +1 -1
- package/tests/upload.html +11 -11
- package/tests/utility.html +16 -16
|
@@ -1 +1,17 @@
|
|
|
1
|
-
/*! UIkit 3.14.4-dev.fea9fd466 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */(function(qt,Yt){typeof exports=="object"&&typeof module<"u"?module.exports=Yt():typeof define=="function"&&define.amd?define("uikit",Yt):(qt=typeof globalThis<"u"?globalThis:qt||self,qt.UIkit=Yt())})(this,function(){"use strict";const{hasOwnProperty:qt,toString:Yt}=Object.prototype;function wt(t,e){return qt.call(t,e)}const qn=/\B([A-Z])/g,bt=Y(t=>t.replace(qn,"-$1").toLowerCase()),Yn=/-(\w)/g,At=Y(t=>t.replace(Yn,ki)),dt=Y(t=>t.length?ki(null,t.charAt(0))+t.slice(1):"");function ki(t,e){return e?e.toUpperCase():""}function R(t,e){return t==null||t.startsWith==null?void 0:t.startsWith(e)}function Vt(t,e){return t==null||t.endsWith==null?void 0:t.endsWith(e)}function d(t,e){return t==null||t.includes==null?void 0:t.includes(e)}function ae(t,e){return t==null||t.findIndex==null?void 0:t.findIndex(e)}const{isArray:W,from:Ti}=Array,{assign:Et}=Object;function st(t){return typeof t=="function"}function pt(t){return t!==null&&typeof t=="object"}function gt(t){return Yt.call(t)==="[object Object]"}function _t(t){return pt(t)&&t===t.window}function le(t){return Le(t)===9}function He(t){return Le(t)>=1}function Gt(t){return Le(t)===1}function Le(t){return!_t(t)&&pt(t)&&t.nodeType}function ce(t){return typeof t=="boolean"}function k(t){return typeof t=="string"}function ze(t){return typeof t=="number"}function yt(t){return ze(t)||k(t)&&!isNaN(t-parseFloat(t))}function Fe(t){return!(W(t)?t.length:pt(t)?Object.keys(t).length:!1)}function q(t){return t===void 0}function Ie(t){return ce(t)?t:t==="true"||t==="1"||t===""?!0:t==="false"||t==="0"?!1:t}function Xt(t){const e=Number(t);return isNaN(e)?!1:e}function g(t){return parseFloat(t)||0}function E(t){return p(t)[0]}function p(t){return t&&(He(t)?[t]:Array.from(t).filter(He))||[]}function $t(t){var e;if(_t(t))return t;t=E(t);const i=le(t)?t:(e=t)==null?void 0:e.ownerDocument;return(i==null?void 0:i.defaultView)||window}function je(t,e){return t===e||pt(t)&&pt(e)&&Object.keys(t).length===Object.keys(e).length&&xt(t,(i,n)=>i===e[n])}function Re(t,e,i){return t.replace(new RegExp(e+"|"+i,"g"),n=>n===e?i:e)}function Jt(t){return t[t.length-1]}function xt(t,e){for(const i in t)if(e(t[i],i)===!1)return!1;return!0}function We(t,e){return t.slice().sort((i,n)=>{let{[e]:s=0}=i,{[e]:o=0}=n;return s>o?1:o>s?-1:0})}function Vn(t,e){const i=new Set;return t.filter(n=>{let{[e]:s}=n;return i.has(s)?!1:i.add(s)})}function ht(t,e,i){return e===void 0&&(e=0),i===void 0&&(i=1),Math.min(Math.max(Xt(t)||0,e),i)}function mt(){}function qe(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];return[["bottom","top"],["right","left"]].every(n=>{let[s,o]=n;return Math.min(...e.map(r=>{let{[s]:a}=r;return a}))-Math.max(...e.map(r=>{let{[o]:a}=r;return a}))>0})}function Ye(t,e){return t.x<=e.right&&t.x>=e.left&&t.y<=e.bottom&&t.y>=e.top}function Ve(t,e,i){const n=e==="width"?"height":"width";return{[n]:t[e]?Math.round(i*t[n]/t[e]):t[n],[e]:i}}function Si(t,e){t={...t};for(const i in t)t=t[i]>e[i]?Ve(t,i,e[i]):t;return t}function Gn(t,e){t=Si(t,e);for(const i in t)t=t[i]<e[i]?Ve(t,i,e[i]):t;return t}const Ge={ratio:Ve,contain:Si,cover:Gn};function he(t,e,i,n){i===void 0&&(i=0),n===void 0&&(n=!1),e=p(e);const{length:s}=e;return s?(t=yt(t)?Xt(t):t==="next"?i+1:t==="previous"?i-1:e.indexOf(E(t)),n?ht(t,0,s-1):(t%=s,t<0?t+s:t)):-1}function Y(t){const e=Object.create(null);return i=>e[i]||(e[i]=t(i))}class Ci{constructor(){this.promise=new Promise((e,i)=>{this.reject=i,this.resolve=e})}}function b(t,e,i){if(pt(e)){for(const s in e)b(t,s,e[s]);return}if(q(i)){var n;return(n=E(t))==null?void 0:n.getAttribute(e)}else for(const s of p(t))st(i)&&(i=i.call(s,b(s,e))),i===null?Kt(s,e):s.setAttribute(e,i)}function Bt(t,e){return p(t).some(i=>i.hasAttribute(e))}function Kt(t,e){const i=p(t);for(const n of e.split(" "))for(const s of i)s.removeAttribute(n)}function Nt(t,e){for(const i of[e,"data-"+e])if(Bt(t,i))return b(t,i)}const Xn={area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,menuitem:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0};function Xe(t){return p(t).some(e=>Xn[e.tagName.toLowerCase()])}function D(t){return p(t).some(e=>e.offsetWidth||e.offsetHeight||e.getClientRects().length)}const ue="input,select,textarea,button";function Pi(t){return p(t).some(e=>_(e,ue))}const fe=ue+",a[href],[tabindex]";function Je(t){return _(t,fe)}function O(t){var e;return(e=E(t))==null?void 0:e.parentElement}function Zt(t,e){return p(t).filter(i=>_(i,e))}function _(t,e){return p(t).some(i=>i.matches(e))}function X(t,e){return R(e,">")&&(e=e.slice(1)),Gt(t)?t.closest(e):p(t).map(i=>X(i,e)).filter(Boolean)}function A(t,e){return k(e)?_(t,e)||!!X(t,e):t===e||E(e).contains(E(t))}function Qt(t,e){const i=[];for(;t=O(t);)(!e||_(t,e))&&i.push(t);return i}function ut(t,e){t=E(t);const i=t?p(t.children):[];return e?Zt(i,e):i}function Ke(t,e){return e?p(t).indexOf(E(e)):ut(O(t)).indexOf(t)}function kt(t,e){return Ze(t,Ai(t,e))}function Ut(t,e){return te(t,Ai(t,e))}function Ze(t,e){return E(Ei(t,e,"querySelector"))}function te(t,e){return p(Ei(t,e,"querySelectorAll"))}const Jn=/(^|[^\\],)\s*[!>+~-]/,Oi=Y(t=>t.match(Jn));function Ai(t,e){return e===void 0&&(e=document),k(t)&&Oi(t)||le(e)?e:e.ownerDocument}const Kn=/([!>+~-])(?=\s+[!>+~-]|\s*$)/g,Zn=Y(t=>t.replace(Kn,"$1 *"));function Ei(t,e,i){if(e===void 0&&(e=document),!t||!k(t))return t;if(t=Zn(t),Oi(t)){const n=Un(t);t="";for(let s of n){let o=e;if(s[0]==="!"){const r=s.substr(1).trim().split(" ");if(o=X(O(e),r[0]),s=r.slice(1).join(" ").trim(),!s.length&&n.length===1)return o}if(s[0]==="-"){const r=s.substr(1).trim().split(" "),a=(o||e).previousElementSibling;o=_(a,s.substr(1))?a:null,s=r.slice(1).join(" ")}o&&(t+=(t?",":"")+ts(o)+" "+s)}e=document}try{return e[i](t)}catch{return null}}const Qn=/.*?[^\\](?:,|$)/g,Un=Y(t=>t.match(Qn).map(e=>e.replace(/,$/,"").trim()));function ts(t){const e=[];for(;t.parentNode;){const i=b(t,"id");if(i){e.unshift("#"+Qe(i));break}else{let{tagName:n}=t;n!=="HTML"&&(n+=":nth-child("+(Ke(t)+1)+")"),e.unshift(n),t=t.parentNode}}return e.join(" > ")}function Qe(t){return k(t)?CSS.escape(t):""}function S(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];let[n,s,o,r,a=!1]=Ue(e);r.length>1&&(r=is(r)),a!=null&&a.self&&(r=ns(r)),o&&(r=es(o,r));for(const l of s)for(const h of n)h.addEventListener(l,r,a);return()=>_i(n,s,r,a)}function _i(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];let[n,s,,o,r=!1]=Ue(e);for(const a of s)for(const l of n)l.removeEventListener(a,o,r)}function C(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];const[n,s,o,r,a=!1,l]=Ue(e),h=S(n,s,o,u=>{const f=!l||l(u);f&&(h(),r(u,f))},a);return h}function y(t,e,i){return ti(t).every(n=>n.dispatchEvent(de(e,!0,!0,i)))}function de(t,e,i,n){return e===void 0&&(e=!0),i===void 0&&(i=!1),k(t)&&(t=new CustomEvent(t,{bubbles:e,cancelable:i,detail:n})),t}function Ue(t){return t[0]=ti(t[0]),k(t[1])&&(t[1]=t[1].split(" ")),st(t[2])&&t.splice(2,0,!1),t}function es(t,e){return i=>{const n=t[0]===">"?te(t,i.currentTarget).reverse().filter(s=>A(i.target,s))[0]:X(i.target,t);n&&(i.current=n,e.call(this,i))}}function is(t){return e=>W(e.detail)?t(e,...e.detail):t(e)}function ns(t){return function(e){if(e.target===e.currentTarget||e.target===e.current)return t.call(null,e)}}function Bi(t){return t&&"addEventListener"in t}function ss(t){return Bi(t)?t:E(t)}function ti(t){return W(t)?t.map(ss).filter(Boolean):k(t)?te(t):Bi(t)?[t]:p(t)}function Dt(t){return t.pointerType==="touch"||!!t.touches}function pe(t){var e,i;const{clientX:n,clientY:s}=((e=t.touches)==null?void 0:e[0])||((i=t.changedTouches)==null?void 0:i[0])||t;return{x:n,y:s}}function os(t,e){const i={data:null,method:"GET",headers:{},xhr:new XMLHttpRequest,beforeSend:mt,responseType:"",...e};return Promise.resolve().then(()=>i.beforeSend(i)).then(()=>rs(t,i))}function rs(t,e){return new Promise((i,n)=>{const{xhr:s}=e;for(const o in e)if(o in s)try{s[o]=e[o]}catch{}s.open(e.method.toUpperCase(),t);for(const o in e.headers)s.setRequestHeader(o,e.headers[o]);S(s,"load",()=>{s.status===0||s.status>=200&&s.status<300||s.status===304?i(s):n(Et(Error(s.statusText),{xhr:s,status:s.status}))}),S(s,"error",()=>n(Et(Error("Network Error"),{xhr:s}))),S(s,"timeout",()=>n(Et(Error("Network Timeout"),{xhr:s}))),s.send(e.data)})}function as(t,e,i){return new Promise((n,s)=>{const o=new Image;o.onerror=r=>{s(r)},o.onload=()=>{n(o)},i&&(o.sizes=i),e&&(o.srcset=e),o.src=t})}const ls={"animation-iteration-count":!0,"column-count":!0,"fill-opacity":!0,"flex-grow":!0,"flex-shrink":!0,"font-weight":!0,"line-height":!0,opacity:!0,order:!0,orphans:!0,"stroke-dasharray":!0,"stroke-dashoffset":!0,widows:!0,"z-index":!0,zoom:!0};function c(t,e,i,n){n===void 0&&(n="");const s=p(t);for(const o of s)if(k(e)){if(e=ei(e),q(i))return getComputedStyle(o).getPropertyValue(e);o.style.setProperty(e,yt(i)&&!ls[e]?i+"px":i||ze(i)?i:"",n)}else if(W(e)){const r={};for(const a of e)r[a]=c(o,a);return r}else pt(e)&&(n=i,xt(e,(r,a)=>c(o,a,r,n)));return s[0]}const ei=Y(t=>cs(t));function cs(t){if(R(t,"--"))return t;t=bt(t);const{style:e}=document.documentElement;if(t in e)return t;for(const i of["webkit","moz"]){const n="-"+i+"-"+t;if(n in e)return n}}function $(t){for(var e=arguments.length,i=new Array(e>1?e-1:0),n=1;n<e;n++)i[n-1]=arguments[n];Ni(t,i,"add")}function z(t){for(var e=arguments.length,i=new Array(e>1?e-1:0),n=1;n<e;n++)i[n-1]=arguments[n];Ni(t,i,"remove")}function ii(t,e){b(t,"class",i=>(i||"").replace(new RegExp("\\b"+e+"\\b","g"),""))}function ni(t){!(arguments.length<=1)&&arguments[1]&&z(t,arguments.length<=1?void 0:arguments[1]),!(arguments.length<=2)&&arguments[2]&&$(t,arguments.length<=2?void 0:arguments[2])}function x(t,e){return[e]=si(e),!!e&&p(t).some(i=>i.classList.contains(e))}function F(t,e,i){const n=si(e);q(i)||(i=!!i);for(const s of p(t))for(const o of n)s.classList.toggle(o,i)}function Ni(t,e,i){e=e.reduce((n,s)=>n.concat(si(s)),[]);for(const n of p(t))n.classList[i](...e)}function si(t){return String(t).split(/\s|,/).filter(Boolean)}function Di(t,e,i,n){return i===void 0&&(i=400),n===void 0&&(n="linear"),i=Math.round(i),Promise.all(p(t).map(s=>new Promise((o,r)=>{for(const l in e){const h=c(s,l);h===""&&c(s,l,h)}const a=setTimeout(()=>y(s,"transitionend"),i);C(s,"transitionend transitioncanceled",l=>{let{type:h}=l;clearTimeout(a),z(s,"uk-transition"),c(s,{transitionProperty:"",transitionDuration:"",transitionTimingFunction:""}),h==="transitioncanceled"?r():o(s)},{self:!0}),$(s,"uk-transition"),c(s,{transitionProperty:Object.keys(e).map(ei).join(","),transitionDuration:i+"ms",transitionTimingFunction:n,...e})})))}const J={start:Di,stop(t){return y(t,"transitionend"),Promise.resolve()},cancel(t){y(t,"transitioncanceled")},inProgress(t){return x(t,"uk-transition")}},ee="uk-animation-";function oi(t,e,i,n,s){return i===void 0&&(i=200),Promise.all(p(t).map(o=>new Promise((r,a)=>{y(o,"animationcanceled");const l=setTimeout(()=>y(o,"animationend"),i);C(o,"animationend animationcanceled",h=>{let{type:u}=h;clearTimeout(l),u==="animationcanceled"?a():r(o),c(o,"animationDuration",""),ii(o,ee+"\\S*")},{self:!0}),c(o,"animationDuration",i+"ms"),$(o,e,ee+(s?"leave":"enter")),R(e,ee)&&(n&&$(o,"uk-transform-origin-"+n),s&&$(o,ee+"reverse"))})))}const hs=new RegExp(ee+"(enter|leave)"),Q={in:oi,out(t,e,i,n){return oi(t,e,i,n,!0)},inProgress(t){return hs.test(b(t,"class"))},cancel(t){y(t,"animationcanceled")}},Tt={width:["left","right"],height:["top","bottom"]};function U(t){const e=Gt(t)?E(t).getBoundingClientRect():{height:tt(t),width:ie(t),top:0,left:0};return{height:e.height,width:e.width,top:e.top,left:e.left,bottom:e.top+e.height,right:e.left+e.width}}function w(t,e){const i=U(t);if(t){const{scrollY:s,scrollX:o}=$t(t),r={height:s,width:o};for(const a in Tt)for(const l of Tt[a])i[l]+=r[a]}if(!e)return i;const n=c(t,"position");xt(c(t,["left","top"]),(s,o)=>c(t,o,e[o]-i[o]+g(n==="absolute"&&s==="auto"?Mi(t)[o]:s)))}function Mi(t){let{top:e,left:i}=w(t);const{ownerDocument:{body:n,documentElement:s},offsetParent:o}=E(t);let r=o||s;for(;r&&(r===n||r===s)&&c(r,"position")==="static";)r=r.parentNode;if(Gt(r)){const a=w(r);e-=a.top+g(c(r,"borderTopWidth")),i-=a.left+g(c(r,"borderLeftWidth"))}return{top:e-g(c(t,"marginTop")),left:i-g(c(t,"marginLeft"))}}function St(t){t=E(t);const e=[t.offsetTop,t.offsetLeft];for(;t=t.offsetParent;)if(e[0]+=t.offsetTop+g(c(t,"borderTopWidth")),e[1]+=t.offsetLeft+g(c(t,"borderLeftWidth")),c(t,"position")==="fixed"){const i=$t(t);return e[0]+=i.scrollY,e[1]+=i.scrollX,e}return e}const tt=Hi("height"),ie=Hi("width");function Hi(t){const e=dt(t);return(i,n)=>{if(q(n)){if(_t(i))return i["inner"+e];if(le(i)){const s=i.documentElement;return Math.max(s["offset"+e],s["scroll"+e])}return i=E(i),n=c(i,t),n=n==="auto"?i["offset"+e]:g(n)||0,n-ne(i,t)}else return c(i,t,!n&&n!==0?"":+n+ne(i,t)+"px")}}function ne(t,e,i){return i===void 0&&(i="border-box"),c(t,"boxSizing")===i?Tt[e].map(dt).reduce((n,s)=>n+g(c(t,"padding"+s))+g(c(t,"border"+s+"Width")),0):0}function Li(t){for(const e in Tt)for(const i in Tt[e])if(Tt[e][i]===t)return Tt[e][1-i];return t}function K(t,e,i,n){return e===void 0&&(e="width"),i===void 0&&(i=window),n===void 0&&(n=!1),k(t)?fs(t).reduce((s,o)=>{const r=ps(o);return r&&(o=gs(r==="vh"?tt($t(i)):r==="vw"?ie($t(i)):n?i["offset"+dt(e)]:U(i)[e],o)),s+g(o)},0):g(t)}const us=/-?\d+(?:\.\d+)?(?:v[wh]|%|px)?/g,fs=Y(t=>t.toString().replace(/\s/g,"").match(us)||[]),ds=/(?:v[hw]|%)$/,ps=Y(t=>(t.match(ds)||[])[0]);function gs(t,e){return t*g(e)/100}function ri(t){if(document.readyState!=="loading"){t();return}C(document,"DOMContentLoaded",t)}function ot(t,e){var i;return(t==null||(i=t.tagName)==null?void 0:i.toLowerCase())===e.toLowerCase()}function zi(t){return t=m(t),t.innerHTML="",t}function ge(t,e){return q(e)?m(t).innerHTML:rt(zi(t),e)}const ms=ve("prepend"),rt=ve("append"),Fi=ve("before"),me=ve("after");function ve(t){return function(e,i){var n;const s=p(k(i)?Ht(i):i);return(n=m(e))==null||n[t](...s),ji(s)}}function Mt(t){p(t).forEach(e=>e.remove())}function we(t,e){for(e=E(Fi(t,e));e.firstChild;)e=e.firstChild;return rt(e,t),e}function Ii(t,e){return p(p(t).map(i=>i.hasChildNodes()?we(p(i.childNodes),e):rt(i,e)))}function be(t){p(t).map(O).filter((e,i,n)=>n.indexOf(e)===i).forEach(e=>e.replaceWith(...e.childNodes))}const vs=/^\s*<(\w+|!)[^>]*>/,ws=/^<(\w+)\s*\/?>(?:<\/\1>)?$/;function Ht(t){const e=ws.exec(t);if(e)return document.createElement(e[1]);const i=document.createElement("div");return vs.test(t)?i.insertAdjacentHTML("beforeend",t.trim()):i.textContent=t,ji(i.childNodes)}function ji(t){return t.length>1?t:t[0]}function ft(t,e){if(!!Gt(t))for(e(t),t=t.firstElementChild;t;){const i=t.nextElementSibling;ft(t,e),t=i}}function m(t,e){return Ri(t)?E(Ht(t)):Ze(t,e)}function M(t,e){return Ri(t)?p(Ht(t)):te(t,e)}function Ri(t){return k(t)&&R(t.trim(),"<")}const Ct=typeof window<"u",se=Ct&&b(document.documentElement,"dir")==="rtl",Lt=Ct&&"ontouchstart"in window,zt=Ct&&window.PointerEvent,Ft=zt?"pointerdown":Lt?"touchstart":"mousedown",bs=zt?"pointermove":Lt?"touchmove":"mousemove",It=zt?"pointerup":Lt?"touchend":"mouseup",ye=zt?"pointerenter":Lt?"":"mouseenter",$e=zt?"pointerleave":Lt?"":"mouseleave",xe=zt?"pointercancel":"touchcancel",H={reads:[],writes:[],read(t){return this.reads.push(t),li(),t},write(t){return this.writes.push(t),li(),t},clear(t){qi(this.reads,t),qi(this.writes,t)},flush:ai};function ai(t){Wi(H.reads),Wi(H.writes.splice(0)),H.scheduled=!1,(H.reads.length||H.writes.length)&&li(t+1)}const ys=4;function li(t){H.scheduled||(H.scheduled=!0,t&&t<ys?Promise.resolve().then(()=>ai(t)):requestAnimationFrame(()=>ai(1)))}function Wi(t){let e;for(;e=t.shift();)try{e()}catch(i){console.error(i)}}function qi(t,e){const i=t.indexOf(e);return~i&&t.splice(i,1)}function ci(){}ci.prototype={positions:[],init(){this.positions=[];let t;this.unbind=S(document,"mousemove",e=>t=pe(e)),this.interval=setInterval(()=>{!t||(this.positions.push(t),this.positions.length>5&&this.positions.shift())},50)},cancel(){var t;(t=this.unbind)==null||t.call(this),this.interval&&clearInterval(this.interval)},movesTo(t){if(this.positions.length<2)return!1;const e=t.getBoundingClientRect(),{left:i,right:n,top:s,bottom:o}=e,[r]=this.positions,a=Jt(this.positions),l=[r,a];return Ye(a,e)?!1:[[{x:i,y:s},{x:n,y:o}],[{x:i,y:o},{x:n,y:s}]].some(u=>{const f=$s(l,u);return f&&Ye(f,e)})}};function $s(t,e){let[{x:i,y:n},{x:s,y:o}]=t,[{x:r,y:a},{x:l,y:h}]=e;const u=(h-a)*(s-i)-(l-r)*(o-n);if(u===0)return!1;const f=((l-r)*(n-a)-(h-a)*(i-r))/u;return f<0?!1:{x:i+f*(s-i),y:n+f*(o-n)}}function jt(t,e,i,n){n===void 0&&(n=!0);const s=new IntersectionObserver(n?(o,r)=>{o.some(a=>a.isIntersecting)&&e(o,r)}:e,i);for(const o of p(t))s.observe(o);return s}const xs=Ct&&window.ResizeObserver;function ke(t,e,i){return i===void 0&&(i={box:"border-box"}),xs?Vi(ResizeObserver,t,e,i):(ks(),oe.add(e),{disconnect(){oe.delete(e)}})}let oe;function ks(){if(oe)return;oe=new Set;let t;const e=()=>{if(!t){t=!0,H.read(()=>t=!1);for(const i of oe)i()}};S(window,"load resize",e),S(document,"loadedmetadata load",e,!0)}function Yi(t,e,i){return Vi(MutationObserver,t,e,i)}function Vi(t,e,i,n){const s=new t(i);for(const o of p(e))s.observe(o,n);return s}const L={};L.events=L.created=L.beforeConnect=L.connected=L.beforeDisconnect=L.disconnected=L.destroy=hi,L.args=function(t,e){return e!==!1&&hi(e||t)},L.update=function(t,e){return We(hi(t,st(e)?{read:e}:e),"order")},L.props=function(t,e){if(W(e)){const i={};for(const n of e)i[n]=String;e=i}return L.methods(t,e)},L.computed=L.methods=function(t,e){return e?t?{...t,...e}:e:t},L.data=function(t,e,i){return i?Gi(t,e,i):e?t?function(n){return Gi(t,e,n)}:e:t};function Gi(t,e,i){return L.computed(st(t)?t.call(i,i):t,st(e)?e.call(i,i):e)}function hi(t,e){return t=t&&!W(t)?[t]:t,e?t?t.concat(e):W(e)?e:[e]:t}function Ts(t,e){return q(e)?t:e}function Rt(t,e,i){const n={};if(st(e)&&(e=e.options),e.extends&&(t=Rt(t,e.extends,i)),e.mixins)for(const o of e.mixins)t=Rt(t,o,i);for(const o in t)s(o);for(const o in e)wt(t,o)||s(o);function s(o){n[o]=(L[o]||Ts)(t[o],e[o],i)}return n}function ui(t,e){e===void 0&&(e=[]);try{return t?R(t,"{")?JSON.parse(t):e.length&&!d(t,":")?{[e[0]]:t}:t.split(";").reduce((i,n)=>{const[s,o]=n.split(/:(.*)/);return s&&!q(o)&&(i[s.trim()]=o.trim()),i},{}):{}}catch{return{}}}function Xi(t){if(Se(t)&&fi(t,{func:"playVideo",method:"play"}),Te(t))try{t.play().catch(mt)}catch{}}function Ji(t){Se(t)&&fi(t,{func:"pauseVideo",method:"pause"}),Te(t)&&t.pause()}function Ki(t){Se(t)&&fi(t,{func:"mute",method:"setVolume",value:0}),Te(t)&&(t.muted=!0)}function Zi(t){return Te(t)||Se(t)}function Te(t){return ot(t,"video")}function Se(t){return ot(t,"iframe")&&(Qi(t)||Ui(t))}function Qi(t){return!!t.src.match(/\/\/.*?youtube(-nocookie)?\.[a-z]+\/(watch\?v=[^&\s]+|embed)|youtu\.be\/.*/)}function Ui(t){return!!t.src.match(/vimeo\.com\/video\/.*/)}async function fi(t,e){await Cs(t),tn(t,e)}function tn(t,e){try{t.contentWindow.postMessage(JSON.stringify({event:"command",...e}),"*")}catch{}}const di="_ukPlayer";let Ss=0;function Cs(t){if(t[di])return t[di];const e=Qi(t),i=Ui(t),n=++Ss;let s;return t[di]=new Promise(o=>{e&&C(t,"load",()=>{const r=()=>tn(t,{event:"listening",id:n});s=setInterval(r,100),r()}),C(window,"message",o,!1,r=>{let{data:a}=r;try{return a=JSON.parse(a),a&&(e&&a.id===n&&a.event==="onReady"||i&&Number(a.player_id)===n)}catch{}}),t.src=""+t.src+(d(t.src,"?")?"&":"?")+(e?"enablejsapi=1":"api=1&player_id="+n)}).then(()=>clearInterval(s))}function pi(t,e,i){return e===void 0&&(e=0),i===void 0&&(i=0),D(t)?qe(...V(t).map(n=>{const{top:s,left:o,bottom:r,right:a}=et(n);return{top:s-e,left:o-i,bottom:r+e,right:a+i}}).concat(w(t))):!1}function gi(t,e){let{offset:i=0}=e===void 0?{}:e;const n=D(t)?V(t):[];return n.reduce((a,l,h)=>{const{scrollTop:u,scrollHeight:f,offsetHeight:v}=l,P=et(l),N=f-P.height,{height:T,top:ct}=n[h-1]?et(n[h-1]):w(t);let it=Math.ceil(ct-P.top-i+u);return i>0&&v<T+i?it+=i:i=0,it>N?(i-=it-N,it=N):it<0&&(i-=it,it=0),()=>s(l,it-u).then(a)},()=>Promise.resolve())();function s(a,l){return new Promise(h=>{const u=a.scrollTop,f=o(Math.abs(l)),v=Date.now();(function P(){const N=r(ht((Date.now()-v)/f));a.scrollTop=u+l*N,N===1?h():requestAnimationFrame(P)})()})}function o(a){return 40*Math.pow(a,.375)}function r(a){return .5*(1-Math.cos(Math.PI*a))}}function en(t,e,i){if(e===void 0&&(e=0),i===void 0&&(i=0),!D(t))return 0;const[n]=V(t,/auto|scroll/,!0),{scrollHeight:s,scrollTop:o}=n,{height:r}=et(n),a=s-r,l=St(t)[0]-St(n)[0],h=Math.max(0,l-r+e),u=Math.min(a,l+t.offsetHeight-i);return ht((o-h)/(u-h))}function V(t,e,i){e===void 0&&(e=/auto|scroll|hidden|clip/),i===void 0&&(i=!1);const n=nn(t);let s=Qt(t).reverse();s=s.slice(s.indexOf(n)+1);const o=ae(s,r=>c(r,"position")==="fixed");return~o&&(s=s.slice(o)),[n].concat(s.filter(r=>e.test(c(r,"overflow"))&&(!i||r.scrollHeight>et(r).height))).reverse()}function et(t){const e=$t(t),{document:{documentElement:i}}=e;let n=t===nn(t)?e:t;const{visualViewport:s}=e;if(_t(n)&&s){let{height:r,width:a,scale:l,pageTop:h,pageLeft:u}=s;return r=Math.round(r*l),a=Math.round(a*l),{height:r,width:a,top:h,left:u,bottom:h+r,right:u+a}}let o=w(n);for(let[r,a,l,h]of[["width","x","left","right"],["height","y","top","bottom"]])_t(n)?n=i:o[l]+=g(c(n,"border"+dt(l)+"Width")),o[r]=o[a]=n["client"+dt(r)],o[h]=o[r]+o[l];return o}function nn(t){return $t(t).document.scrollingElement}const at=[["width","x","left","right"],["height","y","top","bottom"]];function sn(t,e,i){i={attach:{element:["left","top"],target:["left","top"],...i.attach},offset:[0,0],...i};const n=i.flip?an(t,e,i):on(t,e,i);w(t,n)}function on(t,e,i){let{attach:n,offset:s}={attach:{element:["left","top"],target:["left","top"],...i.attach},offset:[0,0],...i};const o=w(t),r=w(e);for(const[a,[l,h,u,f]]of Object.entries(at))o[u]=o[h]=r[u]+rn(n.target[a],f,r[l])-rn(n.element[a],f,o[l])+ +s[a],o[f]=o[u]+o[l];return o}function rn(t,e,i){return t==="center"?i/2:t===e?i:0}function an(t,e,i){const n=on(t,e,i),s=w(e);let{flip:o,attach:{element:r,target:a},offset:l,boundary:h,viewport:u,viewportOffset:f}=i,v=V(t);h===e&&(v=v.filter(T=>T!==h));const[P]=v;v.push(u);const N={...n};for(const[T,[ct,it,j,nt]]of Object.entries(at)){if(o!==!0&&!d(o,it))continue;const jn=!cn(n,s,T)&&cn(n,s,1-T);u=ln(...v.filter(Boolean).map(et)),f&&(u[j]+=f,u[nt]-=f),h&&!jn&&n[ct]<=w(h)[ct]&&(u=ln(u,w(h)));const Rn=n[j]>=u[j],Wn=n[nt]<=u[nt];if(Rn&&Wn)continue;let Wt;if(jn){if(r[T]===nt&&Rn||r[T]===j&&Wn)continue;if(Wt=(r[T]===j?-n[ct]:r[T]===nt?n[ct]:0)+(a[T]===j?s[ct]:a[T]===nt?-s[ct]:0)-l[T]*2,!mi({...n,[j]:n[j]+Wt,[nt]:n[nt]+Wt},P,T)){if(mi(n,P,T))continue;if(i.recursion)return!1;if(o===!0||d(o,at[1-T][1])){const xi=an(t,e,{...i,attach:{element:r.map(hn).reverse(),target:a.map(hn).reverse()},offset:l.reverse(),flip:o===!0?o:[...o,at[1-T][1]],recursion:!0});if(xi&&mi(xi,P,1-T))return xi}continue}}else Wt=ht(ht(n[j],u[j],u[nt]-n[ct]),s[j]-n[ct]+l[T],s[nt]-l[T])-n[j];N[j]=n[it]=n[j]+Wt,N[nt]+=Wt}return N}function ln(){let t={};for(var e=arguments.length,i=new Array(e),n=0;n<e;n++)i[n]=arguments[n];for(const s of i)for(const[,,o,r]of at)t[o]=Math.max(t[o]||0,s[o]),t[r]=Math.min(...[t[r],s[r]].filter(Boolean));return t}function mi(t,e,i){const n=et(e),[s,,o,r]=at[i];return n[o]-=e["scroll"+dt(o)],n[r]=n[o]+e["scroll"+dt(s)],t[o]>=n[o]&&t[r]<=n[r]}function cn(t,e,i){const[,,n,s]=at[i];return t[s]>e[n]&&e[s]>t[n]}function hn(t){for(let e=0;e<at.length;e++){const i=at[e].indexOf(t);if(~i)return at[1-e][i%2+2]}}var Ps=Object.freeze({__proto__:null,ajax:os,getImage:as,transition:Di,Transition:J,animate:oi,Animation:Q,attr:b,hasAttr:Bt,removeAttr:Kt,data:Nt,addClass:$,removeClass:z,removeClasses:ii,replaceClass:ni,hasClass:x,toggleClass:F,dimensions:U,offset:w,position:Mi,offsetPosition:St,height:tt,width:ie,boxModelAdjust:ne,flipPosition:Li,toPx:K,ready:ri,isTag:ot,empty:zi,html:ge,prepend:ms,append:rt,before:Fi,after:me,remove:Mt,wrapAll:we,wrapInner:Ii,unwrap:be,fragment:Ht,apply:ft,$:m,$$:M,inBrowser:Ct,isRtl:se,hasTouch:Lt,pointerDown:Ft,pointerMove:bs,pointerUp:It,pointerEnter:ye,pointerLeave:$e,pointerCancel:xe,on:S,off:_i,once:C,trigger:y,createEvent:de,toEventTargets:ti,isTouch:Dt,getEventPos:pe,fastdom:H,isVoidElement:Xe,isVisible:D,selInput:ue,isInput:Pi,selFocusable:fe,isFocusable:Je,parent:O,filter:Zt,matches:_,closest:X,within:A,parents:Qt,children:ut,index:Ke,hasOwn:wt,hyphenate:bt,camelize:At,ucfirst:dt,startsWith:R,endsWith:Vt,includes:d,findIndex:ae,isArray:W,toArray:Ti,assign:Et,isFunction:st,isObject:pt,isPlainObject:gt,isWindow:_t,isDocument:le,isNode:He,isElement:Gt,isBoolean:ce,isString:k,isNumber:ze,isNumeric:yt,isEmpty:Fe,isUndefined:q,toBoolean:Ie,toNumber:Xt,toFloat:g,toNode:E,toNodes:p,toWindow:$t,isEqual:je,swap:Re,last:Jt,each:xt,sortBy:We,uniqueBy:Vn,clamp:ht,noop:mt,intersectRect:qe,pointInRect:Ye,Dimensions:Ge,getIndex:he,memoize:Y,Deferred:Ci,MouseTracker:ci,observeIntersection:jt,observeResize:ke,observeMutation:Yi,mergeOptions:Rt,parseOptions:ui,play:Xi,pause:Ji,mute:Ki,isVideo:Zi,positionAt:sn,query:kt,queryAll:Ut,find:Ze,findAll:te,escape:Qe,css:c,propName:ei,isInView:pi,scrollIntoView:gi,scrolledOver:en,scrollParents:V,offsetViewport:et});function Os(t){const e=t.data;t.use=function(s){if(!s.installed)return s.call(null,this),s.installed=!0,this},t.mixin=function(s,o){o=(k(o)?t.component(o):o)||this,o.options=Rt(o.options,s)},t.extend=function(s){s=s||{};const o=this,r=function(l){this._init(l)};return r.prototype=Object.create(o.prototype),r.prototype.constructor=r,r.options=Rt(o.options,s),r.super=o,r.extend=o.extend,r},t.update=function(s,o){s=s?E(s):document.body;for(const r of Qt(s).reverse())n(r[e],o);ft(s,r=>n(r[e],o))};let i;Object.defineProperty(t,"container",{get(){return i||document.body},set(s){i=m(s)}});function n(s,o){if(!!s)for(const r in s)s[r]._connected&&s[r]._callUpdate(o)}}function As(t){t.prototype._callHook=function(n){var s;(s=this.$options[n])==null||s.forEach(o=>o.call(this))},t.prototype._callConnected=function(){this._connected||(this._data={},this._computed={},this._initProps(),this._callHook("beforeConnect"),this._connected=!0,this._initEvents(),this._initObservers(),this._callHook("connected"),this._callUpdate())},t.prototype._callDisconnected=function(){!this._connected||(this._callHook("beforeDisconnect"),this._disconnectObservers(),this._unbindEvents(),this._callHook("disconnected"),this._connected=!1,delete this._watch)},t.prototype._callUpdate=function(n){n===void 0&&(n="update"),this._connected&&((n==="update"||n==="resize")&&this._callWatches(),this.$options.update&&(this._updates||(this._updates=new Set,H.read(()=>{this._connected&&e.call(this,this._updates),delete this._updates})),this._updates.add(n.type||n)))},t.prototype._callWatches=function(){if(this._watch)return;const n=!wt(this,"_watch");this._watch=H.read(()=>{this._connected&&i.call(this,n),this._watch=null})};function e(n){for(const{read:s,write:o,events:r=[]}of this.$options.update){if(!n.has("update")&&!r.some(l=>n.has(l)))continue;let a;s&&(a=s.call(this,this._data,n),a&>(a)&&Et(this._data,a)),o&&a!==!1&&H.write(()=>o.call(this,this._data,n))}}function i(n){const{$options:{computed:s}}=this,o={...this._computed};this._computed={};for(const r in s){const{watch:a,immediate:l}=s[r];a&&(n&&l||wt(o,r)&&!je(o[r],this[r]))&&a.call(this,this[r],o[r])}}}function Es(t){let e=0;t.prototype._init=function(i){i=i||{},i.data=Ds(i,this.constructor.options),this.$options=Rt(this.constructor.options,i,this),this.$el=null,this.$props={},this._uid=e++,this._initData(),this._initMethods(),this._initComputeds(),this._callHook("created"),i.el&&this.$mount(i.el)},t.prototype._initData=function(){const{data:i={}}=this.$options;for(const n in i)this.$props[n]=this[n]=i[n]},t.prototype._initMethods=function(){const{methods:i}=this.$options;if(i)for(const n in i)this[n]=i[n].bind(this)},t.prototype._initComputeds=function(){const{computed:i}=this.$options;if(this._computed={},i)for(const n in i)_s(this,n,i[n])},t.prototype._initProps=function(i){let n;i=i||un(this.$options,this.$name);for(n in i)q(i[n])||(this.$props[n]=i[n]);const s=[this.$options.computed,this.$options.methods];for(n in this.$props)n in i&&Bs(s,n)&&(this[n]=this.$props[n])},t.prototype._initEvents=function(){this._events=[];for(const i of this.$options.events||[])if(wt(i,"handler"))Ce(this,i);else for(const n in i)Ce(this,i[n],n)},t.prototype._unbindEvents=function(){this._events.forEach(i=>i()),delete this._events},t.prototype._initObservers=function(){this._observers=[Hs(this)],this.$options.computed&&this.registerObserver(Ms(this))},t.prototype.registerObserver=function(i){this._observers.push(i)},t.prototype._disconnectObservers=function(){this._observers.forEach(i=>i==null?void 0:i.disconnect())}}function un(t,e){const i={},{args:n=[],props:s={},el:o}=t;if(!s)return i;for(const a in s){const l=bt(a);let h=Nt(o,l);q(h)||(h=s[a]===Boolean&&h===""?!0:vi(s[a],h),!(l==="target"&&(!h||R(h,"_")))&&(i[a]=h))}const r=ui(Nt(o,e),n);for(const a in r){const l=At(a);s[l]!==void 0&&(i[l]=vi(s[l],r[a]))}return i}function _s(t,e,i){Object.defineProperty(t,e,{enumerable:!0,get(){const{_computed:n,$props:s,$el:o}=t;return wt(n,e)||(n[e]=(i.get||i).call(t,s,o)),n[e]},set(n){const{_computed:s}=t;s[e]=i.set?i.set.call(t,n):n,q(s[e])&&delete s[e]}})}function Ce(t,e,i){gt(e)||(e={name:i,handler:e});let{name:n,el:s,handler:o,capture:r,passive:a,delegate:l,filter:h,self:u}=e;if(s=st(s)?s.call(t):s||t.$el,W(s)){s.forEach(f=>Ce(t,{...e,el:f},i));return}!s||h&&!h.call(t)||t._events.push(S(s,n,l?k(l)?l:l.call(t):null,k(o)?t[o]:o.bind(t),{passive:a,capture:r,self:u}))}function Bs(t,e){return t.every(i=>!i||!wt(i,e))}function vi(t,e){return t===Boolean?Ie(e):t===Number?Xt(e):t==="list"?Ns(e):t?t(e):e}function Ns(t){return W(t)?t:k(t)?t.split(/,(?![^(]*\))/).map(e=>yt(e)?Xt(e):Ie(e.trim())):[t]}function Ds(t,e){let{data:i={}}=t,{args:n=[],props:s={}}=e;W(i)&&(i=i.slice(0,n.length).reduce((o,r,a)=>(gt(r)?Et(o,r):o[n[a]]=r,o),{}));for(const o in i)q(i[o])?delete i[o]:s[o]&&(i[o]=vi(s[o],i[o]));return i}function Ms(t){const{el:e}=t.$options,i=new MutationObserver(()=>t.$emit());return i.observe(e,{childList:!0,subtree:!0}),i}function Hs(t){const{$name:e,$options:i,$props:n}=t,{attrs:s,props:o,el:r}=i;if(!o||s===!1)return;const a=W(s)?s:Object.keys(o),l=a.map(u=>bt(u)).concat(e),h=new MutationObserver(u=>{const f=un(i,e);u.some(v=>{let{attributeName:P}=v;const N=P.replace("data-","");return(N===e?a:[At(N),At(P)]).some(T=>!q(f[T])&&f[T]!==n[T])})&&t.$reset()});return h.observe(r,{attributes:!0,attributeFilter:l.concat(l.map(u=>"data-"+u))}),h}function Ls(t){const e=t.data;t.prototype.$create=function(n,s,o){return t[n](s,o)},t.prototype.$mount=function(n){const{name:s}=this.$options;n[e]||(n[e]={}),!n[e][s]&&(n[e][s]=this,this.$el=this.$options.el=this.$options.el||n,A(n,document)&&this._callConnected())},t.prototype.$reset=function(){this._callDisconnected(),this._callConnected()},t.prototype.$destroy=function(n){n===void 0&&(n=!1);const{el:s,name:o}=this.$options;s&&this._callDisconnected(),this._callHook("destroy"),s!=null&&s[e]&&(delete s[e][o],Fe(s[e])||delete s[e],n&&Mt(this.$el))},t.prototype.$emit=function(n){this._callUpdate(n)},t.prototype.$update=function(n,s){n===void 0&&(n=this.$el),t.update(n,s)},t.prototype.$getComponent=t.getComponent;const i=Y(n=>t.prefix+bt(n));Object.defineProperties(t.prototype,{$container:Object.getOwnPropertyDescriptor(t,"container"),$name:{get(){return i(this.$options.name)}}})}function zs(t){const e=t.data,i={};t.component=function(n,s){const o=bt(n);if(n=At(o),!s)return gt(i[n])&&(i[n]=t.extend(i[n])),i[n];t[n]=function(a,l){const h=t.component(n);return h.options.functional?new h({data:gt(a)?a:[...arguments]}):a?M(a).map(u)[0]:u();function u(f){const v=t.getComponent(f,n);if(v)if(l)v.$destroy();else return v;return new h({el:f,data:l})}};const r=gt(s)?{...s}:s.options;return r.name=n,r.install==null||r.install(t,r,n),t._initialized&&!r.functional&&H.read(()=>t[n]("[uk-"+o+"],[data-uk-"+o+"]")),i[n]=gt(s)?r:s},t.getComponents=n=>(n==null?void 0:n[e])||{},t.getComponent=(n,s)=>t.getComponents(n)[s],t.connect=n=>{if(n[e])for(const s in n[e])n[e][s]._callConnected();for(const s of n.attributes){const o=fn(s.name);o&&o in i&&t[o](n)}},t.disconnect=n=>{for(const s in n[e])n[e][s]._callDisconnected()}}const fn=Y(t=>R(t,"uk-")||R(t,"data-uk-")?At(t.replace("data-uk-","").replace("uk-","")):!1),G=function(t){this._init(t)};G.util=Ps,G.data="__uikit__",G.prefix="uk-",G.options={},G.version="3.14.4-dev.fea9fd466",Os(G),As(G),Es(G),zs(G),Ls(G);function Fs(t){const{connect:e,disconnect:i}=t;if(!Ct||!window.MutationObserver)return;H.read(function(){document.body&&ft(document.body,e),new MutationObserver(o=>o.forEach(n)).observe(document,{childList:!0,subtree:!0}),new MutationObserver(o=>o.forEach(s)).observe(document,{attributes:!0,subtree:!0}),t._initialized=!0});function n(o){let{addedNodes:r,removedNodes:a}=o;for(const l of r)ft(l,e);for(const l of a)ft(l,i)}function s(o){var r;let{target:a,attributeName:l}=o;const h=fn(l);if(!(!h||!(h in t))){if(Bt(a,l)){t[h](a);return}(r=t.getComponent(a,h))==null||r.$destroy()}}}var lt={connected(){!x(this.$el,this.$name)&&$(this.$el,this.$name)}},Pe={methods:{lazyload(t,e){t===void 0&&(t=this.$el),e===void 0&&(e=this.$el),this.registerObserver(jt(t,(i,n)=>{for(const s of p(st(e)?e():e))M('[loading="lazy"]',s).forEach(o=>Kt(o,"loading"));for(const s of i.filter(o=>{let{isIntersecting:r}=o;return r}).map(o=>{let{target:r}=o;return r}))n.unobserve(s)}))}}},Pt={props:{cls:Boolean,animation:"list",duration:Number,velocity:Number,origin:String,transition:String},data:{cls:!1,animation:[!1],duration:200,velocity:.2,origin:!1,transition:"ease",clsEnter:"uk-togglabe-enter",clsLeave:"uk-togglabe-leave",initProps:{overflow:"",maxHeight:"",paddingTop:"",paddingBottom:"",marginTop:"",marginBottom:"",boxShadow:""},hideProps:{overflow:"hidden",maxHeight:0,paddingTop:0,paddingBottom:0,marginTop:0,marginBottom:0,boxShadow:"none"}},computed:{hasAnimation(t){let{animation:e}=t;return!!e[0]},hasTransition(t){let{animation:e}=t;return R(e[0],"slide")}},methods:{toggleElement(t,e,i){return new Promise(n=>Promise.all(p(t).map(s=>{const o=ce(e)?e:!this.isToggled(s);if(!y(s,"before"+(o?"show":"hide"),[this]))return Promise.reject();const r=(st(i)?i:i===!1||!this.hasAnimation?Is(this):this.hasTransition?js(this):Rs(this))(s,o),a=o?this.clsEnter:this.clsLeave;$(s,a),y(s,o?"show":"hide",[this]);const l=()=>{z(s,a),y(s,o?"shown":"hidden",[this]),this.$update(s)};return r?r.then(l,()=>(z(s,a),Promise.reject())):l()})).then(n,mt))},isToggled(t){return t===void 0&&(t=this.$el),[t]=p(t),x(t,this.clsEnter)?!0:x(t,this.clsLeave)?!1:this.cls?x(t,this.cls.split(" ")[0]):D(t)},_toggle(t,e){if(!t)return;e=Boolean(e);let i;this.cls?(i=d(this.cls," ")||e!==x(t,this.cls),i&&F(t,this.cls,d(this.cls," ")?void 0:e)):(i=e===t.hidden,i&&(t.hidden=!e)),M("[autofocus]",t).some(n=>D(n)?n.focus()||!0:n.blur()),i&&(y(t,"toggled",[e,this]),this.$update(t))}}};function Is(t){let{_toggle:e}=t;return(i,n)=>(Q.cancel(i),J.cancel(i),e(i,n))}function js(t){switch(t.animation[0]){case"slide-left":return pn(t);case"slide-right":return pn(t,!0)}return dn(t)}function dn(t){let{isToggled:e,duration:i,velocity:n,initProps:s,hideProps:o,transition:r,_toggle:a}=t;return(l,h)=>{const u=J.inProgress(l),f=!u&&l.hasChildNodes()?g(c(l.firstElementChild,"marginTop"))+g(c(l.lastElementChild,"marginBottom")):0,v=D(l)?g(c(l,"height"))+f:0,P=u?c(l,Object.keys(s)):h?o:s;J.cancel(l),e(l)||a(l,!0),c(l,"maxHeight",""),H.flush();const N=g(c(l,"height"))+f;return i=n*N+i,c(l,{...P,maxHeight:v}),(h?J.start(l,{...s,overflow:"hidden",maxHeight:N},i*(1-v/N),r):J.start(l,o,i*(v/N),r).then(()=>a(l,!1))).then(()=>c(l,s))}}function pn(t,e){let{isToggled:i,duration:n,velocity:s,transition:o,_toggle:r}=t;return(a,l)=>{const h=D(a),u=g(c(a,"marginLeft"));J.cancel(a);const[f]=V(a.offsetParent);c(f,"overflowX","hidden"),i(a)||r(a,!0);const v=g(c(a,"width"));n=s*v+n;const P=h?(v+u*(e?-1:1))/v*100:0;return c(a,{clipPath:e?"polygon(0 0,"+P+"% 0,"+P+"% 100%,0 100%)":"polygon("+(100-P)+"% 0,100% 0,100% 100%,"+(100-P)+"% 100%)",marginLeft:(100-P)*(e?1:-1)/100*v}),(l?J.start(a,{clipPath:"polygon(0 0,100% 0,100% 100%,0 100%)",marginLeft:0},n*(1-P/100),o):J.start(a,{clipPath:e?"polygon(0 0,0 0,0 100%,0 100%)":"polygon(100% 0,100% 0,100% 100%,100% 100%)",marginLeft:(e?1:-1)*v},n*(P/100),o).then(()=>r(a,!1))).then(()=>{c(f,"overflowX",""),c(a,{clipPath:"",marginLeft:""})})}}function Rs(t){return(e,i)=>{Q.cancel(e);const{animation:n,duration:s,_toggle:o}=t;return i?(o(e,!0),Q.in(e,n[0],s,t.origin)):Q.out(e,n[1]||n[0],s,t.origin).then(()=>o(e,!1))}}var gn={mixins:[lt,Pe,Pt],props:{targets:String,active:null,collapsible:Boolean,multiple:Boolean,toggle:String,content:String,offset:Number},data:{targets:"> *",active:!1,animation:["slide"],collapsible:!0,multiple:!1,clsOpen:"uk-open",toggle:"> .uk-accordion-title",content:"> .uk-accordion-content",offset:0},computed:{items:{get(t,e){let{targets:i}=t;return M(i,e)},watch(t,e){if(e||x(t,this.clsOpen))return;const i=this.active!==!1&&t[Number(this.active)]||!this.collapsible&&t[0];i&&this.toggle(i,!1)},immediate:!0},toggles(t){let{toggle:e}=t;return this.items.map(i=>m(e,i))},contents:{get(t){let{content:e}=t;return this.items.map(i=>m(e,i))},watch(t){for(const e of t)Oe(e,!x(this.items.find(i=>i.contains(e)),this.clsOpen))},immediate:!0}},connected(){this.lazyload()},events:[{name:"click",delegate(){return this.targets+" "+this.$props.toggle},handler(t){t.preventDefault(),this.toggle(Ke(this.toggles,t.current))}}],methods:{toggle(t,e){let i=[this.items[he(t,this.items)]];const n=Zt(this.items,"."+this.clsOpen);if(!this.multiple&&!d(n,i[0])&&(i=i.concat(n)),!(!this.collapsible&&n.length<2&&!Zt(i,":not(."+this.clsOpen+")").length))for(const s of i)this.toggleElement(s,!x(s,this.clsOpen),async(o,r)=>{F(o,this.clsOpen,r),b(m(this.$props.toggle,o),"aria-expanded",r);const a=m((o._wrapper?"> * ":"")+this.content,o);if(e===!1||!this.hasTransition){Oe(a,!r);return}if(o._wrapper||(o._wrapper=we(a,"<div"+(r?" hidden":"")+">")),Oe(a,!1),await dn(this)(o._wrapper,r),Oe(a,!r),delete o._wrapper,be(a),r){const l=m(this.$props.toggle,o);H.read(()=>{pi(l)||gi(l,{offset:this.offset})})}})}}};function Oe(t,e){t&&(t.hidden=e)}var Ws={mixins:[lt,Pt],args:"animation",props:{close:String},data:{animation:["slide"],selClose:".uk-alert-close",duration:150,hideProps:{opacity:0,...Pt.data.hideProps}},events:[{name:"click",delegate(){return this.selClose},handler(t){t.preventDefault(),this.close()}}],methods:{async close(){await this.toggleElement(this.$el),this.$destroy(!0)}}},mn={args:"autoplay",props:{automute:Boolean,autoplay:Boolean},data:{automute:!1,autoplay:!0},connected(){this.inView=this.autoplay==="inview",this.inView&&!Bt(this.$el,"preload")&&(this.$el.preload="none"),this.automute&&Ki(this.$el),this.registerObserver(jt(this.$el,()=>this.$emit(),{},!1))},update:{read(){return Zi(this.$el)?{visible:D(this.$el)&&c(this.$el,"visibility")!=="hidden",inView:this.inView&&pi(this.$el)}:!1},write(t){let{visible:e,inView:i}=t;!e||this.inView&&!i?Ji(this.$el):(this.autoplay===!0||this.inView&&i)&&Xi(this.$el)}}},vt={connected(){var t;this.registerObserver(ke(((t=this.$options.resizeTargets)==null?void 0:t.call(this))||this.$el,()=>this.$emit("resize")))}},qs={mixins:[vt,mn],props:{width:Number,height:Number},data:{automute:!0},events:{"load loadedmetadata"(){this.$emit("resize")}},resizeTargets(){return[this.$el,O(this.$el)]},update:{read(){const{ratio:t,cover:e}=Ge,{$el:i,width:n,height:s}=this;let o={width:n,height:s};if(!o.width||!o.height){const h={width:i.naturalWidth||i.videoWidth||i.clientWidth,height:i.naturalHeight||i.videoHeight||i.clientHeight};o.width?o=t(h,"width",o.width):s?o=t(h,"height",o.height):o=h}const{offsetHeight:r,offsetWidth:a}=Ys(i)||O(i),l=e(o,{width:a+(a%2?1:0),height:r+(r%2?1:0)});return!l.width||!l.height?!1:l},write(t){let{height:e,width:i}=t;c(this.$el,{height:e,width:i})},events:["resize"]}};function Ys(t){for(;t=O(t);)if(c(t,"position")!=="static")return t}var wi={props:{container:Boolean},data:{container:!0},computed:{container(t){let{container:e}=t;return e===!0&&this.$container||e&&m(e)}}},Vs={props:{pos:String,offset:null,flip:Boolean},data:{pos:"bottom-"+(se?"right":"left"),flip:!0,offset:!1},connected(){this.pos=this.$props.pos.split("-").concat("center").slice(0,2),[this.dir,this.align]=this.pos,this.axis=d(["top","bottom"],this.dir)?"y":"x"},methods:{positionAt(t,e,i){let n=[this.getPositionOffset(t),this.getShiftOffset(t)];const s={element:[Li(this.dir),this.align],target:[this.dir,this.align]};if(this.axis==="y"){for(const u in s)s[u]=s[u].reverse();n=n.reverse()}const[o]=V(t,/auto|scroll/),{scrollTop:r,scrollLeft:a}=o,l=U(t);c(t,{top:-l.height,left:-l.width});const h=[t,e,{attach:s,offset:n,boundary:i,flip:this.flip,viewportOffset:this.getViewportOffset(t)}];y(t,"beforeposition",h),sn(...h),o.scrollTop=r,o.scrollLeft=a},getPositionOffset(t){return K(this.offset===!1?c(t,"--uk-position-offset"):this.offset,this.axis==="x"?"width":"height",t)*(d(["left","top"],this.dir)?-1:1)},getShiftOffset(t){return d(["center","justify","stretch"],this.align)?0:K(c(t,"--uk-position-shift-offset"),this.axis==="y"?"width":"height",t)*(d(["left","top"],this.align)?1:-1)},getViewportOffset(t){return K(c(t,"--uk-position-viewport-offset"))}}};const I=[];var vn={mixins:[lt,wi,Pt],props:{selPanel:String,selClose:String,escClose:Boolean,bgClose:Boolean,stack:Boolean},data:{cls:"uk-open",escClose:!0,bgClose:!0,overlay:!0,stack:!1},computed:{panel(t,e){let{selPanel:i}=t;return m(i,e)},transitionElement(){return this.panel},bgClose(t){let{bgClose:e}=t;return e&&this.panel}},beforeDisconnect(){d(I,this)&&this.toggleElement(this.$el,!1,!1)},events:[{name:"click",delegate(){return this.selClose},handler(t){t.preventDefault(),this.hide()}},{name:"toggle",self:!0,handler(t){t.defaultPrevented||(t.preventDefault(),this.isToggled()===d(I,this)&&this.toggle())}},{name:"beforeshow",self:!0,handler(t){if(d(I,this))return!1;!this.stack&&I.length?(Promise.all(I.map(e=>e.hide())).then(this.show),t.preventDefault()):I.push(this)}},{name:"show",self:!0,handler(){C(this.$el,"hide",S(document,"focusin",t=>{Jt(I)===this&&!A(t.target,this.$el)&&this.$el.focus()})),this.overlay&&(C(this.$el,"hide",bn(this.$el)),C(this.$el,"hide",yn())),this.stack&&c(this.$el,"zIndex",g(c(this.$el,"zIndex"))+I.length),$(document.documentElement,this.clsPage),this.bgClose&&C(this.$el,"hide",S(document,Ft,t=>{let{target:e}=t;Jt(I)!==this||this.overlay&&!A(e,this.$el)||A(e,this.panel)||C(document,It+" "+xe+" scroll",i=>{let{defaultPrevented:n,type:s,target:o}=i;!n&&s===It&&e===o&&this.hide()},!0)}),{self:!0}),this.escClose&&C(this.$el,"hide",S(document,"keydown",t=>{t.keyCode===27&&Jt(I)===this&&this.hide()}),{self:!0})}},{name:"shown",self:!0,handler(){Je(this.$el)||b(this.$el,"tabindex","-1"),m(":focus",this.$el)||this.$el.focus()}},{name:"hidden",self:!0,handler(){d(I,this)&&I.splice(I.indexOf(this),1),I.length||c(document.body,"overflowY",""),c(this.$el,"zIndex",""),I.some(t=>t.clsPage===this.clsPage)||z(document.documentElement,this.clsPage)}}],methods:{toggle(){return this.isToggled()?this.hide():this.show()},show(){return this.container&&O(this.$el)!==this.container?(rt(this.container,this.$el),new Promise(t=>requestAnimationFrame(()=>this.show().then(t)))):this.toggleElement(this.$el,!0,wn(this))},hide(){return this.toggleElement(this.$el,!1,wn(this))}}};function wn(t){let{transitionElement:e,_toggle:i}=t;return(n,s)=>new Promise((o,r)=>C(n,"show hide",()=>{n._reject==null||n._reject(),n._reject=r,i(n,s);const a=C(e,"transitionstart",()=>{C(e,"transitionend transitioncancel",o,{self:!0}),clearTimeout(l)},{self:!0}),l=setTimeout(()=>{a(),o()},Gs(c(e,"transitionDuration")))})).then(()=>delete n._reject)}function Gs(t){return t?Vt(t,"ms")?g(t):g(t)*1e3:0}function bn(t){if(CSS.supports("overscroll-behavior","contain")){const n=Xs(t,s=>/auto|scroll/.test(c(s,"overflow")));return c(n,"overscrollBehavior","contain"),()=>c(n,"overscrollBehavior","")}let e;const i=[S(t,"touchstart",n=>{let{targetTouches:s}=n;s.length===1&&(e=s[0].clientY)},{passive:!0}),S(t,"touchmove",n=>{if(n.targetTouches.length!==1)return;let[s]=V(n.target,/auto|scroll/);A(s,t)||(s=t);const o=n.targetTouches[0].clientY-e,{scrollTop:r,scrollHeight:a,clientHeight:l}=s;(l>=a||r===0&&o>0||a-r<=l&&o<0)&&n.cancelable&&n.preventDefault()},{passive:!1})];return()=>i.forEach(n=>n())}function yn(){const{body:t,documentElement:e}=document;return c(t,{overflowY:ie(window)>e.clientWidth?"scroll":"",touchAction:"none"}),c(e,"overflowY","hidden"),()=>{c(e,"overflowY",""),c(t,{overflowY:"",touchAction:""})}}function Xs(t,e){const i=[];return ft(t,n=>{e(n)&&i.push(n)}),i}let B;var $n={mixins:[wi,Pe,Vs,Pt],args:"pos",props:{mode:"list",toggle:Boolean,boundary:Boolean,boundaryAlign:Boolean,delayShow:Number,delayHide:Number,display:String,clsDrop:String,animateOut:Boolean,bgScroll:Boolean},data:{mode:["click","hover"],toggle:"- *",boundary:!0,boundaryAlign:!1,delayShow:0,delayHide:800,display:null,clsDrop:!1,animation:["uk-animation-fade"],cls:"uk-open",container:!1,animateOut:!1,bgScroll:!0},created(){this.tracker=new ci},beforeConnect(){this.clsDrop=this.$props.clsDrop||"uk-"+this.$options.name},connected(){$(this.$el,this.clsDrop),this.toggle&&!this.target&&(this.target=this.$create("toggle",kt(this.toggle,this.$el),{target:this.$el,mode:this.mode}).$el,b(this.target,"aria-haspopup",!0),this.lazyload(this.target))},disconnected(){this.isActive()&&(B=null)},events:[{name:"click",delegate(){return"."+this.clsDrop+"-close"},handler(t){t.preventDefault(),this.hide(!1)}},{name:"click",delegate(){return'a[href^="#"]'},handler(t){let{defaultPrevented:e,current:{hash:i}}=t;!e&&i&&!A(i,this.$el)&&this.hide(!1)}},{name:"beforescroll",handler(){this.hide(!1)}},{name:"toggle",self:!0,handler(t,e){t.preventDefault(),this.isToggled()?this.hide(!1):this.show(e==null?void 0:e.$el,!1)}},{name:"toggleshow",self:!0,handler(t,e){t.preventDefault(),this.show(e==null?void 0:e.$el)}},{name:"togglehide",self:!0,handler(t){t.preventDefault(),_(this.$el,":focus,:hover")||this.hide()}},{name:ye+" focusin",filter(){return d(this.mode,"hover")},handler(t){Dt(t)||this.clearTimers()}},{name:$e+" focusout",filter(){return d(this.mode,"hover")},handler(t){!Dt(t)&&t.relatedTarget&&this.hide()}},{name:"toggled",self:!0,handler(t,e){!e||(this.clearTimers(),this.position())}},{name:"show",self:!0,handler(){B=this,this.tracker.init();for(const t of[S(document,Ft,e=>{let{target:i}=e;return!A(i,this.$el)&&C(document,It+" "+xe+" scroll",n=>{let{defaultPrevented:s,type:o,target:r}=n;!s&&o===It&&i===r&&!(this.target&&A(i,this.target))&&this.hide(!1)},!0)}),S(document,"keydown",e=>{e.keyCode===27&&this.hide(!1)}),...this.bgScroll?[]:[bn(this.$el),yn()],...this.display==="static"&&this.align!=="stretch"?[]:(()=>{const e=()=>this.$emit();return[S(window,"resize",e),S(document,"scroll",e,!0),(()=>{const i=ke(V(this.$el),e);return()=>i.disconnect()})()]})()])C(this.$el,"hide",t,{self:!0})}},{name:"beforehide",self:!0,handler(){this.clearTimers()}},{name:"hide",handler(t){let{target:e}=t;if(this.$el!==e){B=B===null&&A(e,this.$el)&&this.isToggled()?this:B;return}B=this.isActive()?null:B,this.tracker.cancel()}}],update:{write(){this.isToggled()&&!x(this.$el,this.clsEnter)&&this.position()}},methods:{show(t,e){if(t===void 0&&(t=this.target),e===void 0&&(e=!0),this.isToggled()&&t&&this.target&&t!==this.target&&this.hide(!1,!1),this.target=t,this.clearTimers(),!this.isActive()){if(B){if(e&&B.isDelaying){this.showTimer=setTimeout(()=>_(t,":hover")&&this.show(),10);return}let i;for(;B&&i!==B&&!A(this.$el,B.$el);)i=B,B.hide(!1,!1)}this.container&&O(this.$el)!==this.container&&rt(this.container,this.$el),this.showTimer=setTimeout(()=>this.toggleElement(this.$el,!0),e&&this.delayShow||0)}},hide(t,e){t===void 0&&(t=!0),e===void 0&&(e=!0);const i=()=>this.toggleElement(this.$el,!1,this.animateOut&&e);this.clearTimers(),this.isDelaying=Js(this.$el).some(n=>this.tracker.movesTo(n)),t&&this.isDelaying?this.hideTimer=setTimeout(this.hide,50):t&&this.delayHide?this.hideTimer=setTimeout(i,this.delayHide):i()},clearTimers(){clearTimeout(this.showTimer),clearTimeout(this.hideTimer),this.showTimer=null,this.hideTimer=null,this.isDelaying=!1},isActive(){return B===this},position(){z(this.$el,this.clsDrop+"-stack"),F(this.$el,this.clsDrop+"-boundary",this.boundaryAlign),F(this.$el,this.clsDrop+"-stretch",this.align==="stretch");const t=kt(this.boundary,this.$el),e=t&&this.boundaryAlign?t:this.target,[i]=V(t&&this.boundaryAlign?t:this.$el),n=w(i),s=t?w(t):n,o=this.getViewportOffset(this.$el);c(this.$el,"maxWidth","");const r=n.width-2*o;if(this.align==="justify"){const a=this.axis==="y"?"width":"height";c(this.$el,a,Math.min((t?s:w(this.target))[a],n[a]-2*o))}else if(this.align==="stretch"){this.flip=this.axis==="y"?"x":"y",this.display="static";const a=et(i),l=w(e),h=Math.abs(this.getPositionOffset(this.$el))+o;c(this.$el,{width:this.axis==="y"?a.width:(this.dir==="left"?l.left-a.left:a.right-l.right)-h,height:this.axis==="x"?a.height:(this.dir==="top"?l.top-a.top:a.bottom-l.bottom)-h})}else this.$el.offsetWidth>r&&$(this.$el,this.clsDrop+"-stack");c(this.$el,"maxWidth",r),this.positionAt(this.$el,e,t)}}};function Js(t){const e=[];return ft(t,i=>c(i,"position")!=="static"&&e.push(i)),e}var Ks={mixins:[lt],args:"target",props:{target:Boolean},data:{target:!1},computed:{input(t,e){return m(ue,e)},state(){return this.input.nextElementSibling},target(t,e){let{target:i}=t;return i&&(i===!0&&O(this.input)===e&&this.input.nextElementSibling||m(i,e))}},update(){var t;const{target:e,input:i}=this;if(!e)return;let n;const s=Pi(e)?"value":"textContent",o=e[s],r=(t=i.files)!=null&&t[0]?i.files[0].name:_(i,"select")&&(n=M("option",i).filter(a=>a.selected)[0])?n.textContent:i.value;o!==r&&(e[s]=r)},events:[{name:"change",handler(){this.$emit()}},{name:"reset",el(){return X(this.$el,"form")},handler(){this.$emit()}}]},xn={mixins:[vt],props:{margin:String,firstColumn:Boolean},data:{margin:"uk-margin-small-top",firstColumn:"uk-first-column"},resizeTargets(){return[this.$el,...Ti(this.$el.children)]},connected(){this.registerObserver(Yi(this.$el,()=>this.$reset(),{childList:!0}))},update:{read(){const t=kn(this.$el.children);return{rows:t,columns:Zs(t)}},write(t){let{columns:e,rows:i}=t;for(const n of i)for(const s of n)F(s,this.margin,i[0]!==n),F(s,this.firstColumn,e[0].includes(s))},events:["resize"]}};function kn(t){return Tn(t,"top","bottom")}function Zs(t){const e=[];for(const i of t){const n=Tn(i,"left","right");for(let s=0;s<n.length;s++)e[s]=e[s]?e[s].concat(n[s]):n[s]}return se?e.reverse():e}function Tn(t,e,i){const n=[[]];for(const s of t){if(!D(s))continue;let o=Ae(s);for(let r=n.length-1;r>=0;r--){const a=n[r];if(!a[0]){a.push(s);break}let l;if(a[0].offsetParent===s.offsetParent?l=Ae(a[0]):(o=Ae(s,!0),l=Ae(a[0],!0)),o[e]>=l[i]-1&&o[e]!==l[e]){n.push([s]);break}if(o[i]-1>l[e]||o[e]===l[e]){a.push(s);break}if(r===0){n.unshift([s]);break}}}return n}function Ae(t,e){e===void 0&&(e=!1);let{offsetTop:i,offsetLeft:n,offsetHeight:s,offsetWidth:o}=t;return e&&([i,n]=St(t)),{top:i,left:n,bottom:i+s,right:n+o}}var Ee={connected(){Qs(this._uid,()=>this.$emit("scroll"))},disconnected(){Us(this._uid)}};const _e=new Map;let re;function Qs(t,e){re=re||S(window,"scroll",()=>_e.forEach(i=>i()),{passive:!0,capture:!0}),_e.set(t,e)}function Us(t){_e.delete(t),re&&!_e.size&&(re(),re=null)}var to={extends:xn,mixins:[lt,Ee],name:"grid",props:{masonry:Boolean,parallax:Number},data:{margin:"uk-grid-margin",clsStack:"uk-grid-stack",masonry:!1,parallax:0},connected(){this.masonry&&$(this.$el,"uk-flex-top uk-flex-wrap-top")},update:[{write(t){let{columns:e}=t;F(this.$el,this.clsStack,e.length<2)},events:["resize"]},{read(t){let{columns:e,rows:i}=t;if(!e.length||!this.masonry&&!this.parallax||Sn(this.$el))return t.translates=!1,!1;let n=!1;const s=ut(this.$el),o=no(e),r=io(s,this.margin)*(i.length-1),a=Math.max(...o)+r;this.masonry&&(e=e.map(h=>We(h,"offsetTop")),n=eo(i,e));let l=Math.abs(this.parallax);return l&&(l=o.reduce((h,u,f)=>Math.max(h,u+r+(f%2?l:l/8)-a),0)),{padding:l,columns:e,translates:n,height:n?a:""}},write(t){let{height:e,padding:i}=t;c(this.$el,"paddingBottom",i||""),e!==!1&&c(this.$el,"height",e)},events:["resize"]},{read(){return this.parallax&&Sn(this.$el)?!1:{scrolled:this.parallax?en(this.$el)*Math.abs(this.parallax):!1}},write(t){let{columns:e,scrolled:i,translates:n}=t;i===!1&&!n||e.forEach((s,o)=>s.forEach((r,a)=>c(r,"transform",!i&&!n?"":"translateY("+((n&&-n[o][a])+(i?o%2?i:i/8:0))+"px)")))},events:["scroll","resize"]}]};function Sn(t){return ut(t).some(e=>c(e,"position")==="absolute")}function eo(t,e){const i=t.map(n=>Math.max(...n.map(s=>s.offsetHeight)));return e.map(n=>{let s=0;return n.map((o,r)=>s+=r?i[r-1]-n[r-1].offsetHeight:0)})}function io(t,e){const[i]=t.filter(n=>x(n,e));return g(i?c(i,"marginTop"):c(t[0],"paddingLeft"))}function no(t){return t.map(e=>e.reduce((i,n)=>i+n.offsetHeight,0))}var so={mixins:[vt],args:"target",props:{target:String,row:Boolean},data:{target:"> *",row:!0},computed:{elements:{get(t,e){let{target:i}=t;return M(i,e)},watch(){this.$reset()}}},resizeTargets(){return[this.$el,...this.elements]},update:{read(){return{rows:(this.row?kn(this.elements):[this.elements]).map(oo)}},write(t){let{rows:e}=t;for(const{heights:i,elements:n}of e)n.forEach((s,o)=>c(s,"minHeight",i[o]))},events:["resize"]}};function oo(t){if(t.length<2)return{heights:[""],elements:t};c(t,"minHeight","");let e=t.map(ro);const i=Math.max(...e);return{heights:t.map((n,s)=>e[s].toFixed(2)===i.toFixed(2)?"":i),elements:t}}function ro(t){let e=!1;D(t)||(e=t.style.display,c(t,"display","block","important"));const i=U(t).height-ne(t,"height","content-box");return e!==!1&&c(t,"display",e),i}var ao={mixins:[vt],props:{expand:Boolean,offsetTop:Boolean,offsetBottom:Boolean,minHeight:Number},data:{expand:!1,offsetTop:!1,offsetBottom:!1,minHeight:0},resizeTargets(){return[this.$el,...V(this.$el,/auto|scroll/)]},update:{read(t){let{minHeight:e}=t;if(!D(this.$el))return!1;let i="";const n=ne(this.$el,"height","content-box"),{body:s,scrollingElement:o}=document,[r]=V(this.$el,/auto|scroll/),{height:a}=et(r===s?o:r);if(this.expand)i=Math.max(a-(U(r).height-U(this.$el).height)-n,0);else{const l=o===r||s===r;if(i="calc("+(l?"100vh":a+"px"),this.offsetTop)if(l){const h=St(this.$el)[0]-St(r)[0];i+=h>0&&h<a/2?" - "+h+"px":""}else i+=" - "+c(r,"paddingTop");this.offsetBottom===!0?i+=" - "+U(this.$el.nextElementSibling).height+"px":yt(this.offsetBottom)?i+=" - "+this.offsetBottom+"vh":this.offsetBottom&&Vt(this.offsetBottom,"px")?i+=" - "+g(this.offsetBottom)+"px":k(this.offsetBottom)&&(i+=" - "+U(kt(this.offsetBottom,this.$el)).height+"px"),i+=(n?" - "+n+"px":"")+")"}return{minHeight:i,prev:e}},write(t){let{minHeight:e}=t;c(this.$el,{minHeight:e}),this.minHeight&&g(c(this.$el,"minHeight"))<this.minHeight&&c(this.$el,"minHeight",this.minHeight)},events:["resize"]}},Cn={args:"src",props:{id:Boolean,icon:String,src:String,style:String,width:Number,height:Number,ratio:Number,class:String,strokeAnimation:Boolean,focusable:Boolean,attributes:"list"},data:{ratio:1,include:["style","class","focusable"],class:"",strokeAnimation:!1},beforeConnect(){this.class+=" uk-svg"},connected(){!this.icon&&d(this.src,"#")&&([this.src,this.icon]=this.src.split("#")),this.svg=this.getSvg().then(t=>{if(this._connected){const e=fo(t,this.$el);return this.svgEl&&e!==this.svgEl&&Mt(this.svgEl),this.applyAttributes(e,t),this.svgEl=e}},mt),this.strokeAnimation&&this.svg.then(t=>{this._connected&&(On(t),this.registerObserver(jt(t,(e,i)=>{On(t),i.disconnect()})))})},disconnected(){this.svg.then(t=>{this._connected||(Xe(this.$el)&&(this.$el.hidden=!1),Mt(t),this.svgEl=null)}),this.svg=null},methods:{async getSvg(){return ot(this.$el,"img")&&!this.$el.complete&&this.$el.loading==="lazy"?new Promise(t=>C(this.$el,"load",()=>t(this.getSvg()))):co(await lo(this.src),this.icon)||Promise.reject("SVG not found.")},applyAttributes(t,e){for(const o in this.$options.props)d(this.include,o)&&o in this&&b(t,o,this[o]);for(const o in this.attributes){const[r,a]=this.attributes[o].split(":",2);b(t,r,a)}this.id||Kt(t,"id");const i=["width","height"];let n=i.map(o=>this[o]);n.some(o=>o)||(n=i.map(o=>b(e,o)));const s=b(e,"viewBox");s&&!n.some(o=>o)&&(n=s.split(" ").slice(2)),n.forEach((o,r)=>b(t,i[r],g(o)*this.ratio||null))}}};const lo=Y(async t=>t?R(t,"data:")?decodeURIComponent(t.split(",")[1]):(await fetch(t)).text():Promise.reject());function co(t,e){var i;return e&&d(t,"<symbol")&&(t=ho(t,e)||t),t=m(t.substr(t.indexOf("<svg"))),((i=t)==null?void 0:i.hasChildNodes())&&t}const Pn=/<symbol([^]*?id=(['"])(.+?)\2[^]*?<\/)symbol>/g,Be={};function ho(t,e){if(!Be[t]){Be[t]={},Pn.lastIndex=0;let i;for(;i=Pn.exec(t);)Be[t][i[3]]='<svg xmlns="http://www.w3.org/2000/svg"'+i[1]+"svg>"}return Be[t][e]}function On(t){const e=uo(t);e&&t.style.setProperty("--uk-animation-stroke",e)}function uo(t){return Math.ceil(Math.max(0,...M("[stroke]",t).map(e=>{try{return e.getTotalLength()}catch{return 0}})))}function fo(t,e){if(Xe(e)||ot(e,"canvas")){e.hidden=!0;const n=e.nextElementSibling;return An(t,n)?n:me(e,t)}const i=e.lastElementChild;return An(t,i)?i:rt(e,t)}function An(t,e){return ot(t,"svg")&&ot(e,"svg")&&En(t)===En(e)}function En(t){return(t.innerHTML||new XMLSerializer().serializeToString(t).replace(/<svg.*?>(.*?)<\/svg>/g,"$1")).replace(/\s/g,"")}var po='<svg width="14" height="14" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"><line fill="none" stroke="#000" stroke-width="1.1" x1="1" y1="1" x2="13" y2="13"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13" y1="1" x2="1" y2="13"/></svg>',go='<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><line fill="none" stroke="#000" stroke-width="1.4" x1="1" y1="1" x2="19" y2="19"/><line fill="none" stroke="#000" stroke-width="1.4" x1="19" y1="1" x2="1" y2="19"/></svg>',mo='<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect x="9" y="4" width="1" height="11"/><rect x="4" y="9" width="11" height="1"/></svg>',vo='<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><polyline fill="none" stroke="#000" stroke-width="1.1" points="1 3.5 6 8.5 11 3.5"/></svg>',wo='<svg width="14" height="14" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.1" points="1 4 7 10 13 4"/></svg>',bo='<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><polyline fill="none" stroke="#000" stroke-width="1.1" points="1 3.5 6 8.5 11 3.5"/></svg>',yo='<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect y="9" width="20" height="2"/><rect y="3" width="20" height="2"/><rect y="15" width="20" height="2"/></svg>',$o='<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><rect x="19" y="0" width="1" height="40"/><rect x="0" y="19" width="40" height="1"/></svg>',xo='<svg width="7" height="12" viewBox="0 0 7 12" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.2" points="1 1 6 6 1 11"/></svg>',ko='<svg width="7" height="12" viewBox="0 0 7 12" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.2" points="6 1 1 6 6 11"/></svg>',To='<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',So='<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><circle fill="none" stroke="#000" stroke-width="1.8" cx="17.5" cy="17.5" r="16.5"/><line fill="none" stroke="#000" stroke-width="1.8" x1="38" y1="39" x2="29" y2="30"/></svg>',Co='<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10.5" cy="10.5" r="9.5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="23" y1="23" x2="17" y2="17"/></svg>',Po='<svg width="14" height="24" viewBox="0 0 14 24" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.4" points="1.225,23 12.775,12 1.225,1 "/></svg>',Oo='<svg width="25" height="40" viewBox="0 0 25 40" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="2" points="4.002,38.547 22.527,20.024 4,1.5 "/></svg>',Ao='<svg width="14" height="24" viewBox="0 0 14 24" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.4" points="12.775,1 1.225,12 12.775,23 "/></svg>',Eo='<svg width="25" height="40" viewBox="0 0 25 40" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="2" points="20.527,1.5 2,20.024 20.525,38.547 "/></svg>',_o='<svg width="30" height="30" viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"><circle fill="none" stroke="#000" cx="15" cy="15" r="14"/></svg>',Bo='<svg width="18" height="10" viewBox="0 0 18 10" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.2" points="1 9 9 1 17 9 "/></svg>';const Ne={spinner:_o,totop:Bo,marker:mo,"close-icon":po,"close-large":go,"nav-parent-icon":vo,"nav-parent-icon-large":wo,"navbar-parent-icon":bo,"navbar-toggle-icon":yo,"overlay-icon":$o,"pagination-next":xo,"pagination-previous":ko,"search-icon":To,"search-large":So,"search-navbar":Co,"slidenav-next":Po,"slidenav-next-large":Oo,"slidenav-previous":Ao,"slidenav-previous-large":Eo},bi={install:Lo,extends:Cn,args:"icon",props:["icon"],data:{include:["focusable"]},isIcon:!0,beforeConnect(){$(this.$el,"uk-icon")},methods:{async getSvg(){const t=zo(this.icon);if(!t)throw"Icon not found.";return t}}},Z={args:!1,extends:bi,data:t=>({icon:bt(t.constructor.options.name)}),beforeConnect(){$(this.$el,this.$name)}},No={extends:Z,beforeConnect(){const t=this.$props.icon;this.icon=X(this.$el,".uk-nav-primary")?t+"-large":t}},_n={extends:Z,beforeConnect(){$(this.$el,"uk-slidenav");const t=this.$props.icon;this.icon=x(this.$el,"uk-slidenav-large")?t+"-large":t}},Do={extends:Z,beforeConnect(){this.icon=x(this.$el,"uk-search-icon")&&Qt(this.$el,".uk-search-large").length?"search-large":Qt(this.$el,".uk-search-navbar").length?"search-navbar":this.$props.icon}},Mo={extends:Z,beforeConnect(){this.icon="close-"+(x(this.$el,"uk-close-large")?"large":"icon")}},Ho={extends:Z,methods:{async getSvg(){const t=await bi.methods.getSvg.call(this);return this.ratio!==1&&c(m("circle",t),"strokeWidth",1/this.ratio),t}}},De={};function Lo(t){t.icon.add=(e,i)=>{const n=k(e)?{[e]:i}:e;xt(n,(s,o)=>{Ne[o]=s,delete De[o]}),t._initialized&&ft(document.body,s=>xt(t.getComponents(s),o=>{o.$options.isIcon&&o.icon in n&&o.$reset()}))}}function zo(t){return Ne[t]?(De[t]||(De[t]=m((Ne[Fo(t)]||Ne[t]).trim())),De[t].cloneNode(!0)):null}function Fo(t){return se?Re(Re(t,"left","right"),"previous","next"):t}const Io=Ct&&"loading"in HTMLImageElement.prototype;var jo={args:"dataSrc",props:{dataSrc:String,sources:String,offsetTop:String,offsetLeft:String,target:String,loading:String},data:{dataSrc:"",sources:!1,offsetTop:"50vh",offsetLeft:"50vw",target:!1,loading:"lazy"},connected(){if(this.loading!=="lazy"){this.load();return}const t=[this.$el,...Ut(this.$props.target,this.$el)];Io&&Me(this.$el)&&(this.$el.loading="lazy",yi(this.$el),t.length===1)||(Vo(this.$el),this.registerObserver(jt(t,(e,i)=>{this.load(),i.disconnect()},{rootMargin:K(this.offsetTop,"height")+"px "+K(this.offsetLeft,"width")+"px"})))},disconnected(){this._data.image&&(this._data.image.onload="")},methods:{load(){if(this._data.image)return this._data.image;const t=Me(this.$el)?this.$el:Wo(this.$el,this.dataSrc,this.sources);return Kt(t,"loading"),yi(this.$el,t.currentSrc),this._data.image=t}}};function yi(t,e){if(Me(t)){const i=O(t);(Go(i)?ut(i):[t]).forEach(s=>Bn(s,s))}else e&&!d(t.style.backgroundImage,e)&&(c(t,"backgroundImage","url("+Qe(e)+")"),y(t,de("load",!1)))}const Ro=["data-src","data-srcset","sizes"];function Bn(t,e){Ro.forEach(i=>{const n=Nt(t,i);n&&b(e,i.replace(/^(data-)+/,""),n)})}function Wo(t,e,i){const n=new Image;return qo(n,i),Bn(t,n),n.onload=()=>{yi(t,n.currentSrc)},b(n,"src",e),n}function qo(t,e){if(e=Yo(e),e.length){const i=Ht("<picture>");for(const n of e){const s=Ht("<source>");b(s,n),rt(i,s)}rt(i,t)}}function Yo(t){if(!t)return[];if(R(t,"["))try{t=JSON.parse(t)}catch{t=[]}else t=ui(t);return W(t)||(t=[t]),t.filter(e=>!Fe(e))}function Vo(t){Me(t)&&!Bt(t,"src")&&b(t,"src",'data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"></svg>')}function Go(t){return ot(t,"picture")}function Me(t){return ot(t,"img")}var $i={props:{media:Boolean},data:{media:!1},connected(){const t=Xo(this.media,this.$el);if(this.matchMedia=!0,t){this.mediaObj=window.matchMedia(t);const e=()=>{this.matchMedia=this.mediaObj.matches,y(this.$el,de("mediachange",!1,!0,[this.mediaObj]))};this.offMediaObj=S(this.mediaObj,"change",()=>{e(),this.$emit("resize")}),e()}},disconnected(){var t;(t=this.offMediaObj)==null||t.call(this)}};function Xo(t,e){if(k(t)){if(R(t,"@"))t=g(c(e,"--uk-breakpoint-"+t.substr(1)));else if(isNaN(t))return t}return t&&yt(t)?"(min-width: "+t+"px)":""}var Jo={mixins:[lt,$i,vt],props:{fill:String},data:{fill:"",clsWrapper:"uk-leader-fill",clsHide:"uk-leader-hide",attrFill:"data-fill"},computed:{fill(t){let{fill:e}=t;return e||c(this.$el,"--uk-leader-fill-content")}},connected(){[this.wrapper]=Ii(this.$el,'<span class="'+this.clsWrapper+'">')},disconnected(){be(this.wrapper.childNodes)},update:{read(){return{width:Math.trunc(this.$el.offsetWidth/2),fill:this.fill,hide:!this.matchMedia}},write(t){let{width:e,fill:i,hide:n}=t;F(this.wrapper,this.clsHide,n),b(this.wrapper,this.attrFill,new Array(e).join(i))},events:["resize"]}},Ko={install:Zo,mixins:[vn],data:{clsPage:"uk-modal-page",selPanel:".uk-modal-dialog",selClose:".uk-modal-close, .uk-modal-close-default, .uk-modal-close-outside, .uk-modal-close-full"},events:[{name:"show",self:!0,handler(){x(this.panel,"uk-margin-auto-vertical")?$(this.$el,"uk-flex"):c(this.$el,"display","block"),tt(this.$el)}},{name:"hidden",self:!0,handler(){c(this.$el,"display",""),z(this.$el,"uk-flex")}}]};function Zo(t){let{modal:e}=t;e.dialog=function(n,s){const o=e('<div class="uk-modal"> <div class="uk-modal-dialog">'+n+"</div> </div>",s);return o.show(),S(o.$el,"hidden",async()=>{await Promise.resolve(),o.$destroy(!0)},{self:!0}),o},e.alert=function(n,s){return i(o=>{let{labels:r}=o;return'<div class="uk-modal-body">'+(k(n)?n:ge(n))+'</div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-primary uk-modal-close" autofocus>'+r.ok+"</button> </div>"},s,o=>o.resolve())},e.confirm=function(n,s){return i(o=>{let{labels:r}=o;return'<form> <div class="uk-modal-body">'+(k(n)?n:ge(n))+'</div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-default uk-modal-close" type="button">'+r.cancel+'</button> <button class="uk-button uk-button-primary" autofocus>'+r.ok+"</button> </div> </form>"},s,o=>o.reject())},e.prompt=function(n,s,o){return i(r=>{let{labels:a}=r;return'<form class="uk-form-stacked"> <div class="uk-modal-body"> <label>'+(k(n)?n:ge(n))+'</label> <input class="uk-input" value="'+(s||"")+'" autofocus> </div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-default uk-modal-close" type="button">'+a.cancel+'</button> <button class="uk-button uk-button-primary">'+a.ok+"</button> </div> </form>"},o,r=>r.resolve(null),r=>m("input",r.$el).value)},e.labels={ok:"Ok",cancel:"Cancel"};function i(n,s,o,r){s={bgClose:!1,escClose:!0,labels:e.labels,...s};const a=e.dialog(n(s),s),l=new Ci;let h=!1;return S(a.$el,"submit","form",u=>{u.preventDefault(),l.resolve(r==null?void 0:r(a)),h=!0,a.hide()}),S(a.$el,"hide",()=>!h&&o(l)),l.promise.dialog=a,l.promise}}var Qo={extends:gn,data:{targets:"> .uk-parent",toggle:"> a",content:"> ul"}},Uo={mixins:[lt,wi],props:{dropdown:String,mode:"list",align:String,offset:Number,boundary:Boolean,boundaryAlign:Boolean,clsDrop:String,delayShow:Number,delayHide:Number,dropbar:Boolean,dropbarAnchor:Boolean,duration:Number},data:{dropdown:".uk-navbar-nav > li > a, .uk-navbar-item, .uk-navbar-toggle",align:se?"right":"left",clsDrop:"uk-navbar-dropdown",mode:void 0,offset:void 0,delayShow:void 0,delayHide:void 0,boundaryAlign:void 0,flip:"x",boundary:!0,dropbar:!1,dropbarAnchor:!1,duration:200,container:!1},computed:{boundary(t,e){let{boundary:i}=t;return i===!0?e:i},dropbarAnchor(t,e){let{dropbarAnchor:i}=t;return kt(i,e)},pos(t){let{align:e}=t;return"bottom-"+e},dropbar:{get(t){let{dropbar:e}=t;return e?(e=this._dropbar||kt(e,this.$el)||m("+ .uk-navbar-dropbar",this.$el),e||(this._dropbar=m("<div></div>"))):null},watch(t){$(t,"uk-navbar-dropbar")},immediate:!0},dropContainer(t,e){return this.container||e},dropdowns:{get(t,e){let{clsDrop:i}=t;const n=M("."+i,e);if(this.dropContainer!==e)for(const o of M("."+i,this.dropContainer)){var s;const r=(s=this.getDropdown(o))==null?void 0:s.target;!d(n,o)&&r&&A(r,this.$el)&&n.push(o)}return n},watch(t){this.$create("drop",t.filter(e=>!this.getDropdown(e)),{...this.$props,boundary:this.boundary,pos:this.pos})},immediate:!0},toggles:{get(t,e){let{dropdown:i}=t;return M(i,e)},watch(){const t=x(this.$el,"uk-navbar-justify");for(const e of M(".uk-navbar-nav, .uk-navbar-left, .uk-navbar-right",this.$el))c(e,"flexGrow",t?M(this.dropdown,e).length:"")},immediate:!0}},disconnected(){this.dropbar&&Mt(this.dropbar),delete this._dropbar},events:[{name:"mouseover focusin",delegate(){return this.dropdown},handler(t){let{current:e}=t;const i=this.getActive();i&&d(i.mode,"hover")&&i.target&&!A(i.target,e)&&!i.isDelaying&&i.hide(!1)}},{name:"keydown",delegate(){return this.dropdown},handler(t){const{current:e,keyCode:i}=t,n=this.getActive();i===Ot.DOWN&&Bt(e,"aria-expanded")&&(t.preventDefault(),!n||n.target!==e?(e.click(),C(this.dropContainer,"show",s=>{let{target:o}=s;return Dn(o)})):Dn(n.$el)),Nn(t,this.toggles,n)}},{name:"keydown",el(){return this.dropContainer},delegate(){return"."+this.clsDrop},handler(t){const{current:e,keyCode:i}=t;if(!d(this.dropdowns,e))return;const n=this.getActive(),s=M(fe,e),o=ae(s,a=>_(a,":focus"));if(i===Ot.UP&&(t.preventDefault(),o>0&&s[o-1].focus()),i===Ot.DOWN&&(t.preventDefault(),o<s.length-1&&s[o+1].focus()),i===Ot.ESC){var r;n==null||(r=n.target)==null||r.focus()}Nn(t,this.toggles,n)}},{name:"mouseleave",el(){return this.dropbar},filter(){return this.dropbar},handler(){const t=this.getActive();t&&d(t.mode,"hover")&&!this.dropdowns.some(e=>_(e,":hover"))&&t.hide()}},{name:"beforeshow",el(){return this.dropContainer},filter(){return this.dropbar},handler(t){let{target:e}=t;!this.isDropbarDrop(e)||(O(this.dropbar)||me(this.dropbarAnchor||this.$el,this.dropbar),$(e,this.clsDrop+"-dropbar"))}},{name:"show",el(){return this.dropContainer},filter(){return this.dropbar},handler(t){let{target:e}=t;!this.isDropbarDrop(e)||(this._observer=ke(e,()=>this.transitionTo(w(e).bottom-w(this.dropbar).top+g(c(e,"marginBottom")),e)))}},{name:"beforeposition",el(){return this.dropContainer},filter(){return this.dropbar},handler(t,e,i,n){if(!this.isDropbarDrop(e))return;const s=w(this.dropbar);c(e,"maxWidth",s.width-n.viewportOffset*2),n.offset[1]=s.top-w(i).bottom,n.viewportOffset+=s.left}},{name:"beforehide",el(){return this.dropContainer},filter(){return this.dropbar},handler(t){const e=this.getActive();_(this.dropbar,":hover")&&(e==null?void 0:e.$el)===t.target&&!this.toggles.some(i=>e.target!==i&&_(i,":focus"))&&t.preventDefault()}},{name:"hide",el(){return this.dropContainer},filter(){return this.dropbar},handler(t){let{target:e}=t;if(!this.isDropbarDrop(e))return;this._observer.disconnect();const i=this.getActive();(!i||(i==null?void 0:i.$el)===e)&&this.transitionTo(0)}}],methods:{getActive(){return B&&A(B.target,this.$el)&&B},transitionTo(t,e){const{dropbar:i}=this,n=tt(i);e=n<t&&e,c(e,"clipPath","polygon(0 0,100% 0,100% "+n+"px,0 "+n+"px)"),tt(i,n),J.cancel([e,i]),Promise.all([J.start(i,{height:t},this.duration),J.start(e,{clipPath:"polygon(0 0,100% 0,100% "+t+"px,0 "+t+"px)"},this.duration)]).catch(mt).then(()=>c(e,{clipPath:""}))},getDropdown(t){return this.$getComponent(t,"drop")||this.$getComponent(t,"dropdown")},isDropbarDrop(t){const e=this.getDropdown(t);return e&&x(t,this.clsDrop)&&e.align!=="stretch"}}};function Nn(t,e,i){const{current:n,keyCode:s}=t,o=(i==null?void 0:i.target)||n,r=e.indexOf(o);s===Ot.LEFT&&r>0&&(i==null||i.hide(!1),e[r-1].focus()),s===Ot.RIGHT&&r<e.length-1&&(i==null||i.hide(!1),e[r+1].focus()),s===Ot.TAB&&(o.focus(),i==null||i.hide(!1))}function Dn(t){if(!m(":focus",t)){var e;(e=m(fe,t))==null||e.focus()}}const Ot={TAB:9,ESC:27,LEFT:37,UP:38,RIGHT:39,DOWN:40};var Mn={props:{swiping:Boolean},data:{swiping:!0},computed:{swipeTarget(t,e){return e}},connected(){!this.swiping||Ce(this,{el:this.swipeTarget,name:Ft,passive:!0,handler(t){if(!Dt(t))return;const e=pe(t),i="tagName"in t.target?t.target:O(t.target);C(document,It+" "+xe+" scroll",n=>{const{x:s,y:o}=pe(n);(n.type!=="scroll"&&i&&s&&Math.abs(e.x-s)>100||o&&Math.abs(e.y-o)>100)&&setTimeout(()=>{y(i,"swipe"),y(i,"swipe"+tr(e.x,e.y,s,o))})})}})}};function tr(t,e,i,n){return Math.abs(t-i)>=Math.abs(e-n)?t-i>0?"Left":"Right":e-n>0?"Up":"Down"}var er={mixins:[vn,Mn],args:"mode",props:{mode:String,flip:Boolean,overlay:Boolean},data:{mode:"slide",flip:!1,overlay:!1,clsPage:"uk-offcanvas-page",clsContainer:"uk-offcanvas-container",selPanel:".uk-offcanvas-bar",clsFlip:"uk-offcanvas-flip",clsContainerAnimation:"uk-offcanvas-container-animation",clsSidebarAnimation:"uk-offcanvas-bar-animation",clsMode:"uk-offcanvas",clsOverlay:"uk-offcanvas-overlay",selClose:".uk-offcanvas-close",container:!1},computed:{clsFlip(t){let{flip:e,clsFlip:i}=t;return e?i:""},clsOverlay(t){let{overlay:e,clsOverlay:i}=t;return e?i:""},clsMode(t){let{mode:e,clsMode:i}=t;return i+"-"+e},clsSidebarAnimation(t){let{mode:e,clsSidebarAnimation:i}=t;return e==="none"||e==="reveal"?"":i},clsContainerAnimation(t){let{mode:e,clsContainerAnimation:i}=t;return e!=="push"&&e!=="reveal"?"":i},transitionElement(t){let{mode:e}=t;return e==="reveal"?O(this.panel):this.panel}},update:{read(){this.isToggled()&&!D(this.$el)&&this.hide()},events:["resize"]},events:[{name:"click",delegate(){return'a[href^="#"]'},handler(t){let{current:{hash:e},defaultPrevented:i}=t;!i&&e&&m(e,document.body)&&this.hide()}},{name:"touchmove",self:!0,passive:!1,filter(){return this.overlay},handler(t){t.cancelable&&t.preventDefault()}},{name:"show",self:!0,handler(){this.mode==="reveal"&&!x(O(this.panel),this.clsMode)&&(we(this.panel,"<div>"),$(O(this.panel),this.clsMode)),$(document.body,this.clsContainer,this.clsFlip),c(document.body,"touch-action","pan-y pinch-zoom"),c(this.$el,"display","block"),$(this.$el,this.clsOverlay),$(this.panel,this.clsSidebarAnimation,this.mode==="reveal"?"":this.clsMode),tt(document.body),$(document.body,this.clsContainerAnimation),this.clsContainerAnimation&&ir()}},{name:"hide",self:!0,handler(){z(document.body,this.clsContainerAnimation),c(document.body,"touch-action","")}},{name:"hidden",self:!0,handler(){this.clsContainerAnimation&&nr(),this.mode==="reveal"&&be(this.panel),z(this.panel,this.clsSidebarAnimation,this.clsMode),z(this.$el,this.clsOverlay),c(this.$el,"display",""),z(document.body,this.clsContainer,this.clsFlip)}},{name:"swipeLeft swipeRight",handler(t){this.isToggled()&&Vt(t.type,"Left")^this.flip&&this.hide()}}]};function ir(){Hn().content+=",user-scalable=0"}function nr(){const t=Hn();t.content=t.content.replace(/,user-scalable=0$/,"")}function Hn(){return m('meta[name="viewport"]',document.head)||rt(document.head,'<meta name="viewport">')}var sr={mixins:[lt,vt],props:{selContainer:String,selContent:String,minHeight:Number},data:{selContainer:".uk-modal",selContent:".uk-modal-dialog",minHeight:150},computed:{container(t,e){let{selContainer:i}=t;return X(e,i)},content(t,e){let{selContent:i}=t;return X(e,i)}},resizeTargets(){return[this.container,this.content]},update:{read(){return!this.content||!this.container||!D(this.$el)?!1:{max:Math.max(this.minHeight,tt(this.container)-(U(this.content).height-tt(this.$el)))}},write(t){let{max:e}=t;c(this.$el,{minHeight:this.minHeight,maxHeight:e})},events:["resize"]}},or={mixins:[vt],props:["width","height"],resizeTargets(){return[this.$el,O(this.$el)]},connected(){$(this.$el,"uk-responsive-width")},update:{read(){return D(this.$el)&&this.width&&this.height?{width:ie(O(this.$el)),height:this.height}:!1},write(t){tt(this.$el,Ge.contain({height:this.height,width:this.width},t).height)},events:["resize"]}},rr={props:{offset:Number},data:{offset:0},methods:{async scrollTo(t){t=t&&m(t)||document.body,y(this.$el,"beforescroll",[this,t])&&(await gi(t,{offset:this.offset}),y(this.$el,"scrolled",[this,t]))}},events:{click(t){t.defaultPrevented||(t.preventDefault(),this.scrollTo(Ln(this.$el)))}}};function Ln(t){return document.getElementById(decodeURIComponent(t.hash).substring(1))}var ar={mixins:[Ee],args:"cls",props:{cls:String,target:String,hidden:Boolean,offsetTop:Number,offsetLeft:Number,repeat:Boolean,delay:Number},data:()=>({cls:"",target:!1,hidden:!0,offsetTop:0,offsetLeft:0,repeat:!1,delay:0,inViewClass:"uk-scrollspy-inview"}),computed:{elements:{get(t,e){let{target:i}=t;return i?M(i,e):[e]},watch(t,e){this.hidden&&c(Zt(t,":not(."+this.inViewClass+")"),"visibility","hidden"),je(t,e)||this.$reset()},immediate:!0}},connected(){this._data.elements=new Map,this.registerObserver(jt(this.elements,t=>{const e=this._data.elements;for(const{target:i,isIntersecting:n}of t){e.has(i)||e.set(i,{cls:Nt(i,"uk-scrollspy-class")||this.cls});const s=e.get(i);!this.repeat&&s.show||(s.show=n)}this.$emit()},{rootMargin:K(this.offsetTop,"height")-1+"px "+(K(this.offsetLeft,"width")-1)+"px"},!1))},disconnected(){for(const[t,e]of this._data.elements.entries())z(t,this.inViewClass,(e==null?void 0:e.cls)||"")},update:[{write(t){for(const[e,i]of t.elements.entries())i.show&&!i.inview&&!i.queued?(i.queued=!0,t.promise=(t.promise||Promise.resolve()).then(()=>new Promise(n=>setTimeout(n,this.delay))).then(()=>{this.toggle(e,!0),setTimeout(()=>{i.queued=!1,this.$emit()},300)})):!i.show&&i.inview&&!i.queued&&this.repeat&&this.toggle(e,!1)}}],methods:{toggle(t,e){const i=this._data.elements.get(t);if(!!i){if(i.off==null||i.off(),c(t,"visibility",!e&&this.hidden?"hidden":""),F(t,this.inViewClass,e),F(t,i.cls),/\buk-animation-/.test(i.cls)){const n=()=>ii(t,"uk-animation-[\\w-]+");e?i.off=C(t,"animationcancel animationend",n):n()}y(t,e?"inview":"outview"),i.inview=e,this.$update(t)}}}},lr={mixins:[Ee],props:{cls:String,closest:String,scroll:Boolean,overflow:Boolean,offset:Number},data:{cls:"uk-active",closest:!1,scroll:!1,overflow:!0,offset:0},computed:{links:{get(t,e){return M('a[href^="#"]',e).filter(i=>i.hash)},watch(t){this.scroll&&this.$create("scroll",t,{offset:this.offset||0})},immediate:!0},elements(t){let{closest:e}=t;return X(this.links,e||"*")}},update:[{read(){const t=this.links.map(Ln).filter(Boolean),{length:e}=t;if(!e||!D(this.$el))return!1;const[i]=V(t,/auto|scroll/,!0),{scrollTop:n,scrollHeight:s}=i,o=et(i),r=s-o.height;let a=!1;if(n===r)a=e-1;else{for(let l=0;l<t.length&&!(w(t[l]).top-o.top-this.offset>0);l++)a=+l;a===!1&&this.overflow&&(a=0)}return{active:a}},write(t){let{active:e}=t;const i=e!==!1&&!x(this.elements[e],this.cls);this.links.forEach(n=>n.blur());for(let n=0;n<this.elements.length;n++)F(this.elements[n],this.cls,+n===e);i&&y(this.$el,"active",[e,this.elements[e]])},events:["scroll","resize"]}]},cr={mixins:[lt,$i,vt,Ee],props:{position:String,top:null,bottom:null,start:null,end:null,offset:String,overflowFlip:Boolean,animation:String,clsActive:String,clsInactive:String,clsFixed:String,clsBelow:String,selTarget:String,showOnUp:Boolean,targetOffset:Number},data:{position:"top",top:!1,bottom:!1,start:!1,end:!1,offset:0,overflowFlip:!1,animation:"",clsActive:"uk-active",clsInactive:"",clsFixed:"uk-sticky-fixed",clsBelow:"uk-sticky-below",selTarget:"",showOnUp:!1,targetOffset:!1},computed:{selTarget(t,e){let{selTarget:i}=t;return i&&m(i,e)||e}},resizeTargets(){return document.documentElement},connected(){this.start=Fn(this.start||this.top),this.end=Fn(this.end||this.bottom),this.placeholder=m("+ .uk-sticky-placeholder",this.$el)||m('<div class="uk-sticky-placeholder"></div>'),this.isFixed=!1,this.setActive(!1)},disconnected(){this.isFixed&&(this.hide(),z(this.selTarget,this.clsInactive)),Mt(this.placeholder),this.placeholder=null},events:[{name:"resize",el(){return window},handler(){this.$emit("resize")}},{name:"load hashchange popstate",el(){return window},filter(){return this.targetOffset!==!1},handler(){const{scrollingElement:t}=document;!location.hash||t.scrollTop===0||setTimeout(()=>{const e=w(m(location.hash)),i=w(this.$el);this.isFixed&&qe(e,i)&&(t.scrollTop=e.top-i.height-K(this.targetOffset,"height",this.placeholder)-K(this.offset,"height",this.placeholder))})}}],update:[{read(t,e){let{height:i,margin:n}=t;if(this.inactive=!this.matchMedia||!D(this.$el),this.inactive)return!1;const s=this.active&&e.has("resize");s&&(c(this.selTarget,"transition","0s"),this.hide()),this.active||(i=w(this.$el).height,n=c(this.$el,"margin")),s&&(this.show(),requestAnimationFrame(()=>c(this.selTarget,"transition","")));const o=this.isFixed?this.placeholder:this.$el,r=tt(window);let a=this.position;this.overflowFlip&&i>r&&(a=a==="top"?"bottom":"top");let l=K(this.offset,"height",o);a==="bottom"&&(i<r||this.overflowFlip)&&(l+=r-i);const h=this.overflowFlip?0:Math.max(0,i+l-r),u=w(o).top,f=(this.start===!1?u:zn(this.start,this.$el,u))-l,v=this.end===!1?document.scrollingElement.scrollHeight-r:zn(this.end,this.$el,u+i,!0)-w(this.$el).height+h-l;return{start:f,end:v,offset:l,overflow:h,topOffset:u,height:i,margin:n,width:U(o).width,top:St(o)[0]}},write(t){let{height:e,margin:i}=t;const{placeholder:n}=this;c(n,{height:e,margin:i}),A(n,document)||(me(this.$el,n),n.hidden=!0)},events:["resize"]},{read(t){let{scroll:e=0,dir:i="down",overflow:n,overflowScroll:s=0,start:o,end:r}=t;const a=document.scrollingElement.scrollTop;return{dir:e<=a?"down":"up",prevDir:i,scroll:a,prevScroll:e,offsetParentTop:w((this.isFixed?this.placeholder:this.$el).offsetParent).top,overflowScroll:ht(s+ht(a,o,r)-ht(e,o,r),0,n)}},write(t,e){const i=e.has("scroll"),{initTimestamp:n=0,dir:s,prevDir:o,scroll:r,prevScroll:a=0,top:l,start:h,topOffset:u,height:f}=t;if(r<0||r===a&&i||this.showOnUp&&!i&&!this.isFixed)return;const v=Date.now();if((v-n>300||s!==o)&&(t.initScroll=r,t.initTimestamp=v),!(this.showOnUp&&!this.isFixed&&Math.abs(t.initScroll-r)<=30&&Math.abs(a-r)<=10))if(this.inactive||r<h||this.showOnUp&&(r<=h||s==="down"&&i||s==="up"&&!this.isFixed&&r<=u+f)){if(!this.isFixed){Q.inProgress(this.$el)&&l>r&&(Q.cancel(this.$el),this.hide());return}this.isFixed=!1,this.animation&&r>u?(Q.cancel(this.$el),Q.out(this.$el,this.animation).then(()=>this.hide(),mt)):this.hide()}else this.isFixed?this.update():this.animation&&r>u?(Q.cancel(this.$el),this.show(),Q.in(this.$el,this.animation).catch(mt)):this.show()},events:["resize","scroll"]}],methods:{show(){this.isFixed=!0,this.update(),this.placeholder.hidden=!1},hide(){this.setActive(!1),z(this.$el,this.clsFixed,this.clsBelow),c(this.$el,{position:"",top:"",width:""}),this.placeholder.hidden=!0},update(){let{width:t,scroll:e=0,overflow:i,overflowScroll:n=0,start:s,end:o,offset:r,topOffset:a,height:l,offsetParentTop:h}=this._data;const u=s!==0||e>s;let f="fixed";e>o&&(r+=o-h,f="absolute"),i&&(r-=n),c(this.$el,{position:f,top:r+"px",width:t}),this.setActive(u),F(this.$el,this.clsBelow,e>a+l),$(this.$el,this.clsFixed)},setActive(t){const e=this.active;this.active=t,t?(ni(this.selTarget,this.clsInactive,this.clsActive),e!==t&&y(this.$el,"active")):(ni(this.selTarget,this.clsActive,this.clsInactive),e!==t&&y(this.$el,"inactive"))}}};function zn(t,e,i,n){if(!t)return 0;if(yt(t)||k(t)&&t.match(/^-?\d/))return i+K(t,"height",e,!0);{const s=t===!0?O(e):kt(t,e);return w(s).bottom-(n&&s&&A(e,s)?g(c(s,"paddingBottom")):0)}}function Fn(t){return t==="true"?!0:t==="false"?!1:t}var In={mixins:[Pe,Mn,Pt],args:"connect",props:{connect:String,toggle:String,itemNav:String,active:Number},data:{connect:"~.uk-switcher",toggle:"> * > :first-child",itemNav:!1,active:0,cls:"uk-active",attrItem:"uk-switcher-item"},computed:{connects:{get(t,e){let{connect:i}=t;return Ut(i,e)},watch(t){this.swiping&&c(t,"touchAction","pan-y pinch-zoom");const e=this.index();this.connects.forEach(i=>ut(i).forEach((n,s)=>F(n,this.cls,s===e)))},immediate:!0},toggles:{get(t,e){let{toggle:i}=t;return M(i,e).filter(n=>!_(n,".uk-disabled *, .uk-disabled, [disabled]"))},watch(t){const e=this.index();this.show(~e?e:t[this.active]||t[0])},immediate:!0},children(){return ut(this.$el).filter(t=>this.toggles.some(e=>A(e,t)))},swipeTarget(){return this.connects}},connected(){this.lazyload(this.$el,this.connects),ri(()=>this.$emit())},events:[{name:"click",delegate(){return this.toggle},handler(t){t.preventDefault(),this.show(t.current)}},{name:"click",el(){return this.connects.concat(this.itemNav?Ut(this.itemNav,this.$el):[])},delegate(){return"["+this.attrItem+"],[data-"+this.attrItem+"]"},handler(t){t.preventDefault(),this.show(Nt(t.current,this.attrItem))}},{name:"swipeRight swipeLeft",filter(){return this.swiping},el(){return this.connects},handler(t){let{type:e}=t;this.show(Vt(e,"Left")?"next":"previous")}}],methods:{index(){return ae(this.children,t=>x(t,this.cls))},show(t){const e=this.index(),i=he(t,this.toggles,e),n=he(this.children[i],ut(this.$el));ut(this.$el).forEach((o,r)=>{F(o,this.cls,n===r),b(this.toggles[r],"aria-expanded",n===r)});const s=e>=0&&e!==i;this.connects.forEach(async o=>{let{children:r}=o;await this.toggleElement(p(r).filter(a=>x(a,this.cls)),!1,s),await this.toggleElement(r[n],!0,s)})}}},hr={mixins:[lt],extends:In,props:{media:Boolean},data:{media:960,attrItem:"uk-tab-item"},connected(){const t=x(this.$el,"uk-tab-left")?"uk-tab-left":x(this.$el,"uk-tab-right")?"uk-tab-right":!1;t&&this.$create("toggle",this.$el,{cls:t,mode:"media",media:this.media})}};const ur=32;var fr={mixins:[Pe,$i,Pt],args:"target",props:{href:String,target:null,mode:"list",queued:Boolean},data:{href:!1,target:!1,mode:"click",queued:!0},computed:{target:{get(t,e){let{href:i,target:n}=t;return n=Ut(n||i,e),n.length&&n||[e]},watch(){this.updateAria()},immediate:!0}},connected(){!d(this.mode,"media")&&!Je(this.$el)&&b(this.$el,"tabindex","0"),this.lazyload(this.$el,this.target),ri(()=>this.$emit())},events:[{name:Ft,filter(){return d(this.mode,"hover")},handler(t){this._preventClick=null,!(!Dt(t)||this._showState)&&(y(this.$el,"focus"),C(document,Ft,()=>y(this.$el,"blur"),!0,e=>!A(e.target,this.$el)),d(this.mode,"click")&&(this._preventClick=!0))}},{name:ye+" "+$e+" focus blur",filter(){return d(this.mode,"hover")},handler(t){if(Dt(t))return;const e=d([ye,"focus"],t.type),i=b(this.$el,"aria-expanded");if(!(!e&&(t.type===$e&&_(this.$el,":focus")||t.type==="blur"&&_(this.$el,":hover")))){if(this._showState&&e&&i!==this._showState){e||(this._showState=null);return}this._showState=e?i:null,this.toggle("toggle"+(e?"show":"hide"))}}},{name:"keydown",filter(){return d(this.mode,"click")&&!ot(this.$el,"input")},handler(t){t.keyCode===ur&&(t.preventDefault(),this.$el.click())}},{name:"click",filter(){return["click","hover"].some(t=>d(this.mode,t))},handler(t){let e;(this._preventClick||X(t.target,'a[href="#"], a[href=""]')||(e=X(t.target,"a[href]"))&&(b(this.$el,"aria-expanded")!=="true"||e.hash&&_(this.target,e.hash)))&&t.preventDefault(),!this._preventClick&&d(this.mode,"click")&&this.toggle()}},{name:"toggled",self:!0,el(){return this.target},handler(t,e){t.target===this.target[0]&&this.updateAria(e)}},{name:"mediachange",filter(){return d(this.mode,"media")},el(){return this.target},handler(t,e){e.matches^this.isToggled(this.target)&&this.toggle()}}],methods:{async toggle(t){if(!y(this.target,t||"toggle",[this]))return;if(!this.queued)return this.toggleElement(this.target);const e=this.target.filter(n=>x(n,this.clsLeave));if(e.length){for(const n of this.target){const s=d(e,n);this.toggleElement(n,s,s)}return}const i=this.target.filter(this.isToggled);await this.toggleElement(i,!1),await this.toggleElement(this.target.filter(n=>!d(i,n)),!0)},updateAria(t){d(this.mode,"media")||b(this.$el,"aria-expanded",ce(t)?t:this.isToggled(this.target))}}},dr=Object.freeze({__proto__:null,Accordion:gn,Alert:Ws,Cover:qs,Drop:$n,Dropdown:$n,FormCustom:Ks,Grid:to,HeightMatch:so,HeightViewport:ao,Icon:bi,Img:jo,Leader:Jo,Margin:xn,Modal:Ko,Nav:Qo,Navbar:Uo,Offcanvas:er,OverflowAuto:sr,Responsive:or,Scroll:rr,Scrollspy:ar,ScrollspyNav:lr,Sticky:cr,Svg:Cn,Switcher:In,Tab:hr,Toggle:fr,Video:mn,Close:Mo,Spinner:Ho,NavParentIcon:No,SlidenavNext:_n,SlidenavPrevious:_n,SearchIcon:Do,Marker:Z,NavbarParentIcon:Z,NavbarToggleIcon:Z,OverlayIcon:Z,PaginationNext:Z,PaginationPrevious:Z,Totop:Z});return xt(dr,(t,e)=>G.component(e,t)),Fs(G),G});
|
|
1
|
+
/*! UIkit 3.15.1-dev.f849bb0c8 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */(function(jt,qt){typeof exports=="object"&&typeof module<"u"?module.exports=qt():typeof define=="function"&&define.amd?define("uikit",qt):(jt=typeof globalThis<"u"?globalThis:jt||self,jt.UIkit=qt())})(this,function(){"use strict";const{hasOwnProperty:jt,toString:qt}=Object.prototype;function mt(t,e){return jt.call(t,e)}const Vn=/\B([A-Z])/g,vt=Y(t=>t.replace(Vn,"-$1").toLowerCase()),Gn=/-(\w)/g,Et=Y(t=>t.replace(Gn,Ci)),wt=Y(t=>t.length?Ci(null,t.charAt(0))+t.slice(1):"");function Ci(t,e){return e?e.toUpperCase():""}function q(t,e){return t==null||t.startsWith==null?void 0:t.startsWith(e)}function Yt(t,e){return t==null||t.endsWith==null?void 0:t.endsWith(e)}function d(t,e){return t==null||t.includes==null?void 0:t.includes(e)}function ae(t,e){return t==null||t.findIndex==null?void 0:t.findIndex(e)}const{isArray:F,from:Ei}=Array,{assign:Ot}=Object;function it(t){return typeof t=="function"}function ft(t){return t!==null&&typeof t=="object"}function dt(t){return qt.call(t)==="[object Object]"}function Pt(t){return ft(t)&&t===t.window}function le(t){return He(t)===9}function ze(t){return He(t)>=1}function Xt(t){return He(t)===1}function He(t){return!Pt(t)&&ft(t)&&t.nodeType}function ce(t){return typeof t=="boolean"}function y(t){return typeof t=="string"}function Le(t){return typeof t=="number"}function bt(t){return Le(t)||y(t)&&!isNaN(t-parseFloat(t))}function Fe(t){return!(F(t)?t.length:ft(t)?Object.keys(t).length:!1)}function R(t){return t===void 0}function Re(t){return ce(t)?t:t==="true"||t==="1"||t===""?!0:t==="false"||t==="0"?!1:t}function Vt(t){const e=Number(t);return isNaN(e)?!1:e}function w(t){return parseFloat(t)||0}function P(t){return p(t)[0]}function p(t){return t&&(ze(t)?[t]:Array.from(t).filter(ze))||[]}function $t(t){var e;if(Pt(t))return t;t=P(t);const i=le(t)?t:(e=t)==null?void 0:e.ownerDocument;return(i==null?void 0:i.defaultView)||window}function Ie(t,e){return t===e||ft(t)&&ft(e)&&Object.keys(t).length===Object.keys(e).length&&yt(t,(i,n)=>i===e[n])}function We(t,e,i){return t.replace(new RegExp(e+"|"+i,"g"),n=>n===e?i:e)}function Gt(t){return t[t.length-1]}function yt(t,e){for(const i in t)if(e(t[i],i)===!1)return!1;return!0}function je(t,e){return t.slice().sort((i,n)=>{let{[e]:s=0}=i,{[e]:o=0}=n;return s>o?1:o>s?-1:0})}function Jn(t,e){const i=new Set;return t.filter(n=>{let{[e]:s}=n;return i.has(s)?!1:i.add(s)})}function at(t,e,i){return e===void 0&&(e=0),i===void 0&&(i=1),Math.min(Math.max(Vt(t)||0,e),i)}function lt(){}function qe(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];return[["bottom","top"],["right","left"]].every(n=>{let[s,o]=n;return Math.min(...e.map(r=>{let{[s]:a}=r;return a}))-Math.max(...e.map(r=>{let{[o]:a}=r;return a}))>0})}function Ye(t,e){return t.x<=e.right&&t.x>=e.left&&t.y<=e.bottom&&t.y>=e.top}function Xe(t,e,i){const n=e==="width"?"height":"width";return{[n]:t[e]?Math.round(i*t[n]/t[e]):t[n],[e]:i}}function Oi(t,e){t={...t};for(const i in t)t=t[i]>e[i]?Xe(t,i,e[i]):t;return t}function Kn(t,e){t=Oi(t,e);for(const i in t)t=t[i]<e[i]?Xe(t,i,e[i]):t;return t}const Ve={ratio:Xe,contain:Oi,cover:Kn};function he(t,e,i,n){i===void 0&&(i=0),n===void 0&&(n=!1),e=p(e);const{length:s}=e;return s?(t=bt(t)?Vt(t):t==="next"?i+1:t==="previous"?i-1:e.indexOf(P(t)),n?at(t,0,s-1):(t%=s,t<0?t+s:t)):-1}function Y(t){const e=Object.create(null);return i=>e[i]||(e[i]=t(i))}class Pi{constructor(){this.promise=new Promise((e,i)=>{this.reject=i,this.resolve=e})}}function v(t,e,i){if(ft(e)){for(const s in e)v(t,s,e[s]);return}if(R(i)){var n;return(n=P(t))==null?void 0:n.getAttribute(e)}else for(const s of p(t))it(i)&&(i=i.call(s,v(s,e))),i===null?Jt(s,e):s.setAttribute(e,i)}function At(t,e){return p(t).some(i=>i.hasAttribute(e))}function Jt(t,e){const i=p(t);for(const n of e.split(" "))for(const s of i)s.removeAttribute(n)}function Bt(t,e){for(const i of[e,"data-"+e])if(At(t,i))return v(t,i)}const Zn={area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,menuitem:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0};function Ge(t){return p(t).some(e=>Zn[e.tagName.toLowerCase()])}function D(t){return p(t).some(e=>e.offsetWidth||e.offsetHeight||e.getClientRects().length)}const ue="input,select,textarea,button";function Ai(t){return p(t).some(e=>B(e,ue))}const fe=ue+",a[href],[tabindex]";function Je(t){return B(t,fe)}function E(t){var e;return(e=P(t))==null?void 0:e.parentElement}function Kt(t,e){return p(t).filter(i=>B(i,e))}function B(t,e){return p(t).some(i=>i.matches(e))}function K(t,e){return Xt(t)?t.closest(q(e,">")?e.slice(1):e):p(t).map(i=>K(i,e)).filter(Boolean)}function C(t,e){return y(e)?!!K(t,e):P(e).contains(P(t))}function _t(t,e){const i=[];for(;t=E(t);)(!e||B(t,e))&&i.push(t);return i}function ct(t,e){t=P(t);const i=t?p(t.children):[];return e?Kt(i,e):i}function Ke(t,e){return e?p(t).indexOf(P(e)):ct(E(t)).indexOf(t)}function ht(t,e){return Ze(t,_i(t,e))}function Zt(t,e){return Qt(t,_i(t,e))}function Ze(t,e){return P(Mi(t,e,"querySelector"))}function Qt(t,e){return p(Mi(t,e,"querySelectorAll"))}const Qn=/(^|[^\\],)\s*[!>+~-]/,Bi=Y(t=>t.match(Qn));function _i(t,e){return e===void 0&&(e=document),y(t)&&Bi(t)||le(e)?e:e.ownerDocument}const Un=/([!>+~-])(?=\s+[!>+~-]|\s*$)/g,ts=Y(t=>t.replace(Un,"$1 *"));function Mi(t,e,i){if(e===void 0&&(e=document),!t||!y(t))return t;if(t=ts(t),Bi(t)){const n=is(t);t="";for(let s of n){let o=e;if(s[0]==="!"){const r=s.substr(1).trim().split(" ");if(o=K(E(e),r[0]),s=r.slice(1).join(" ").trim(),!s.length&&n.length===1)return o}if(s[0]==="-"){const r=s.substr(1).trim().split(" "),a=(o||e).previousElementSibling;o=B(a,s.substr(1))?a:null,s=r.slice(1).join(" ")}o&&(t+=(t?",":"")+ns(o)+" "+s)}e=document}try{return e[i](t)}catch{return null}}const es=/.*?[^\\](?:,|$)/g,is=Y(t=>t.match(es).map(e=>e.replace(/,$/,"").trim()));function ns(t){const e=[];for(;t.parentNode;){const i=v(t,"id");if(i){e.unshift("#"+Qe(i));break}else{let{tagName:n}=t;n!=="HTML"&&(n+=":nth-child("+(Ke(t)+1)+")"),e.unshift(n),t=t.parentNode}}return e.join(" > ")}function Qe(t){return y(t)?CSS.escape(t):""}function x(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];let[n,s,o,r,a=!1]=ti(e);r.length>1&&(r=os(r)),a!=null&&a.self&&(r=rs(r)),o&&(r=ss(o,r));for(const l of s)for(const h of n)h.addEventListener(l,r,a);return()=>Ue(n,s,r,a)}function Ue(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];let[n,s,,o,r=!1]=ti(e);for(const a of s)for(const l of n)l.removeEventListener(a,o,r)}function S(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];const[n,s,o,r,a=!1,l]=ti(e),h=x(n,s,o,u=>{const f=!l||l(u);f&&(h(),r(u,f))},a);return h}function k(t,e,i){return ei(t).every(n=>n.dispatchEvent(de(e,!0,!0,i)))}function de(t,e,i,n){return e===void 0&&(e=!0),i===void 0&&(i=!1),y(t)&&(t=new CustomEvent(t,{bubbles:e,cancelable:i,detail:n})),t}function ti(t){return t[0]=ei(t[0]),y(t[1])&&(t[1]=t[1].split(" ")),it(t[2])&&t.splice(2,0,!1),t}function ss(t,e){return i=>{const n=t[0]===">"?Qt(t,i.currentTarget).reverse().filter(s=>C(i.target,s))[0]:K(i.target,t);n&&(i.current=n,e.call(this,i))}}function os(t){return e=>F(e.detail)?t(e,...e.detail):t(e)}function rs(t){return function(e){if(e.target===e.currentTarget||e.target===e.current)return t.call(null,e)}}function Ni(t){return t&&"addEventListener"in t}function as(t){return Ni(t)?t:P(t)}function ei(t){return F(t)?t.map(as).filter(Boolean):y(t)?Qt(t):Ni(t)?[t]:p(t)}function Mt(t){return t.pointerType==="touch"||!!t.touches}function pe(t){var e,i;const{clientX:n,clientY:s}=((e=t.touches)==null?void 0:e[0])||((i=t.changedTouches)==null?void 0:i[0])||t;return{x:n,y:s}}function ls(t,e){const i={data:null,method:"GET",headers:{},xhr:new XMLHttpRequest,beforeSend:lt,responseType:"",...e};return Promise.resolve().then(()=>i.beforeSend(i)).then(()=>cs(t,i))}function cs(t,e){return new Promise((i,n)=>{const{xhr:s}=e;for(const o in e)if(o in s)try{s[o]=e[o]}catch{}s.open(e.method.toUpperCase(),t);for(const o in e.headers)s.setRequestHeader(o,e.headers[o]);x(s,"load",()=>{s.status===0||s.status>=200&&s.status<300||s.status===304?i(s):n(Ot(Error(s.statusText),{xhr:s,status:s.status}))}),x(s,"error",()=>n(Ot(Error("Network Error"),{xhr:s}))),x(s,"timeout",()=>n(Ot(Error("Network Timeout"),{xhr:s}))),s.send(e.data)})}function hs(t,e,i){return new Promise((n,s)=>{const o=new Image;o.onerror=r=>{s(r)},o.onload=()=>{n(o)},i&&(o.sizes=i),e&&(o.srcset=e),o.src=t})}const us={"animation-iteration-count":!0,"column-count":!0,"fill-opacity":!0,"flex-grow":!0,"flex-shrink":!0,"font-weight":!0,"line-height":!0,opacity:!0,order:!0,orphans:!0,"stroke-dasharray":!0,"stroke-dashoffset":!0,widows:!0,"z-index":!0,zoom:!0};function c(t,e,i,n){n===void 0&&(n="");const s=p(t);for(const o of s)if(y(e)){if(e=ii(e),R(i))return getComputedStyle(o).getPropertyValue(e);o.style.setProperty(e,bt(i)&&!us[e]?i+"px":i||Le(i)?i:"",n)}else if(F(e)){const r={};for(const a of e)r[a]=c(o,a);return r}else ft(e)&&(n=i,yt(e,(r,a)=>c(o,a,r,n)));return s[0]}const ii=Y(t=>fs(t));function fs(t){if(q(t,"--"))return t;t=vt(t);const{style:e}=document.documentElement;if(t in e)return t;for(const i of["webkit","moz"]){const n="-"+i+"-"+t;if(n in e)return n}}function b(t){for(var e=arguments.length,i=new Array(e>1?e-1:0),n=1;n<e;n++)i[n-1]=arguments[n];Di(t,i,"add")}function z(t){for(var e=arguments.length,i=new Array(e>1?e-1:0),n=1;n<e;n++)i[n-1]=arguments[n];Di(t,i,"remove")}function ni(t,e){v(t,"class",i=>(i||"").replace(new RegExp("\\b"+e+"\\b\\s?","g"),""))}function si(t){!(arguments.length<=1)&&arguments[1]&&z(t,arguments.length<=1?void 0:arguments[1]),!(arguments.length<=2)&&arguments[2]&&b(t,arguments.length<=2?void 0:arguments[2])}function $(t,e){return[e]=oi(e),!!e&&p(t).some(i=>i.classList.contains(e))}function X(t,e,i){const n=oi(e);R(i)||(i=!!i);for(const s of p(t))for(const o of n)s.classList.toggle(o,i)}function Di(t,e,i){e=e.reduce((n,s)=>n.concat(oi(s)),[]);for(const n of p(t))n.classList[i](...e)}function oi(t){return String(t).split(/\s|,/).filter(Boolean)}function ds(t,e,i,n){return i===void 0&&(i=400),n===void 0&&(n="linear"),i=Math.round(i),Promise.all(p(t).map(s=>new Promise((o,r)=>{for(const l in e){const h=c(s,l);h===""&&c(s,l,h)}const a=setTimeout(()=>k(s,"transitionend"),i);S(s,"transitionend transitioncanceled",l=>{let{type:h}=l;clearTimeout(a),z(s,"uk-transition"),c(s,{transitionProperty:"",transitionDuration:"",transitionTimingFunction:""}),h==="transitioncanceled"?r():o(s)},{self:!0}),b(s,"uk-transition"),c(s,{transitionProperty:Object.keys(e).map(ii).join(","),transitionDuration:i+"ms",transitionTimingFunction:n,...e})})))}const nt={start:ds,async stop(t){k(t,"transitionend"),await Promise.resolve()},async cancel(t){k(t,"transitioncanceled"),await Promise.resolve()},inProgress(t){return $(t,"uk-transition")}},Ut="uk-animation-";function zi(t,e,i,n,s){return i===void 0&&(i=200),Promise.all(p(t).map(o=>new Promise((r,a)=>{k(o,"animationcanceled");const l=setTimeout(()=>k(o,"animationend"),i);S(o,"animationend animationcanceled",h=>{let{type:u}=h;clearTimeout(l),u==="animationcanceled"?a():r(o),c(o,"animationDuration",""),ni(o,Ut+"\\S*")},{self:!0}),c(o,"animationDuration",i+"ms"),b(o,e,Ut+(s?"leave":"enter")),q(e,Ut)&&(n&&b(o,"uk-transform-origin-"+n),s&&b(o,Ut+"reverse"))})))}const ps=new RegExp(Ut+"(enter|leave)"),tt={in:zi,out(t,e,i,n){return zi(t,e,i,n,!0)},inProgress(t){return ps.test(v(t,"class"))},cancel(t){k(t,"animationcanceled")}},xt={width:["left","right"],height:["top","bottom"]};function V(t){const e=Xt(t)?P(t).getBoundingClientRect():{height:et(t),width:te(t),top:0,left:0};return{height:e.height,width:e.width,top:e.top,left:e.left,bottom:e.top+e.height,right:e.left+e.width}}function T(t,e){const i=V(t);if(t){const{scrollY:s,scrollX:o}=$t(t),r={height:s,width:o};for(const a in xt)for(const l of xt[a])i[l]+=r[a]}if(!e)return i;const n=c(t,"position");yt(c(t,["left","top"]),(s,o)=>c(t,o,e[o]-i[o]+w(n==="absolute"&&s==="auto"?Hi(t)[o]:s)))}function Hi(t){let{top:e,left:i}=T(t);const{ownerDocument:{body:n,documentElement:s},offsetParent:o}=P(t);let r=o||s;for(;r&&(r===n||r===s)&&c(r,"position")==="static";)r=r.parentNode;if(Xt(r)){const a=T(r);e-=a.top+w(c(r,"borderTopWidth")),i-=a.left+w(c(r,"borderLeftWidth"))}return{top:e-w(c(t,"marginTop")),left:i-w(c(t,"marginLeft"))}}function kt(t){t=P(t);const e=[t.offsetTop,t.offsetLeft];for(;t=t.offsetParent;)if(e[0]+=t.offsetTop+w(c(t,"borderTopWidth")),e[1]+=t.offsetLeft+w(c(t,"borderLeftWidth")),c(t,"position")==="fixed"){const i=$t(t);return e[0]+=i.scrollY,e[1]+=i.scrollX,e}return e}const et=Li("height"),te=Li("width");function Li(t){const e=wt(t);return(i,n)=>{if(R(n)){if(Pt(i))return i["inner"+e];if(le(i)){const s=i.documentElement;return Math.max(s["offset"+e],s["scroll"+e])}return i=P(i),n=c(i,t),n=n==="auto"?i["offset"+e]:w(n)||0,n-ee(i,t)}else return c(i,t,!n&&n!==0?"":+n+ee(i,t)+"px")}}function ee(t,e,i){return i===void 0&&(i="border-box"),c(t,"boxSizing")===i?xt[e].map(wt).reduce((n,s)=>n+w(c(t,"padding"+s))+w(c(t,"border"+s+"Width")),0):0}function Fi(t){for(const e in xt)for(const i in xt[e])if(xt[e][i]===t)return xt[e][1-i];return t}function Z(t,e,i,n){return e===void 0&&(e="width"),i===void 0&&(i=window),n===void 0&&(n=!1),y(t)?ms(t).reduce((s,o)=>{const r=ws(o);return r&&(o=bs(r==="vh"?et($t(i)):r==="vw"?te($t(i)):n?i["offset"+wt(e)]:V(i)[e],o)),s+w(o)},0):w(t)}const gs=/-?\d+(?:\.\d+)?(?:v[wh]|%|px)?/g,ms=Y(t=>t.toString().replace(/\s/g,"").match(gs)||[]),vs=/(?:v[hw]|%)$/,ws=Y(t=>(t.match(vs)||[])[0]);function bs(t,e){return t*w(e)/100}function ri(t){if(document.readyState!=="loading"){t();return}S(document,"DOMContentLoaded",t)}function st(t,e){var i;return(t==null||(i=t.tagName)==null?void 0:i.toLowerCase())===e.toLowerCase()}function Ri(t){return t=m(t),t.innerHTML="",t}function ge(t,e){return R(e)?m(t).innerHTML:ot(Ri(t),e)}const $s=ve("prepend"),ot=ve("append"),Ii=ve("before"),me=ve("after");function ve(t){return function(e,i){var n;const s=p(y(i)?Dt(i):i);return(n=m(e))==null||n[t](...s),Wi(s)}}function Nt(t){p(t).forEach(e=>e.remove())}function ai(t,e){for(e=P(Ii(t,e));e.firstChild;)e=e.firstChild;return ot(e,t),e}function li(t,e){return p(p(t).map(i=>i.hasChildNodes()?ai(p(i.childNodes),e):ot(i,e)))}function we(t){p(t).map(E).filter((e,i,n)=>n.indexOf(e)===i).forEach(e=>e.replaceWith(...e.childNodes))}const ys=/^\s*<(\w+|!)[^>]*>/,xs=/^<(\w+)\s*\/?>(?:<\/\1>)?$/;function Dt(t){const e=xs.exec(t);if(e)return document.createElement(e[1]);const i=document.createElement("div");return ys.test(t)?i.insertAdjacentHTML("beforeend",t.trim()):i.textContent=t,Wi(i.childNodes)}function Wi(t){return t.length>1?t:t[0]}function ut(t,e){if(!!Xt(t))for(e(t),t=t.firstElementChild;t;){const i=t.nextElementSibling;ut(t,e),t=i}}function m(t,e){return ji(t)?P(Dt(t)):Ze(t,e)}function _(t,e){return ji(t)?p(Dt(t)):Qt(t,e)}function ji(t){return y(t)&&q(t.trim(),"<")}const Tt=typeof window<"u",ie=Tt&&v(document.documentElement,"dir")==="rtl",zt=Tt&&"ontouchstart"in window,Ht=Tt&&window.PointerEvent,Lt=Ht?"pointerdown":zt?"touchstart":"mousedown",ks=Ht?"pointermove":zt?"touchmove":"mousemove",Ft=Ht?"pointerup":zt?"touchend":"mouseup",be=Ht?"pointerenter":zt?"":"mouseenter",$e=Ht?"pointerleave":zt?"":"mouseleave",ye=Ht?"pointercancel":"touchcancel",H={reads:[],writes:[],read(t){return this.reads.push(t),hi(),t},write(t){return this.writes.push(t),hi(),t},clear(t){Yi(this.reads,t),Yi(this.writes,t)},flush:ci};function ci(t){qi(H.reads),qi(H.writes.splice(0)),H.scheduled=!1,(H.reads.length||H.writes.length)&&hi(t+1)}const Ts=4;function hi(t){H.scheduled||(H.scheduled=!0,t&&t<Ts?Promise.resolve().then(()=>ci(t)):requestAnimationFrame(()=>ci(1)))}function qi(t){let e;for(;e=t.shift();)try{e()}catch(i){console.error(i)}}function Yi(t,e){const i=t.indexOf(e);return~i&&t.splice(i,1)}function ui(){}ui.prototype={positions:[],init(){this.positions=[];let t;this.unbind=x(document,"mousemove",e=>t=pe(e)),this.interval=setInterval(()=>{!t||(this.positions.push(t),this.positions.length>5&&this.positions.shift())},50)},cancel(){var t;(t=this.unbind)==null||t.call(this),this.interval&&clearInterval(this.interval)},movesTo(t){if(this.positions.length<2)return!1;const e=t.getBoundingClientRect(),{left:i,right:n,top:s,bottom:o}=e,[r]=this.positions,a=Gt(this.positions),l=[r,a];return Ye(a,e)?!1:[[{x:i,y:s},{x:n,y:o}],[{x:i,y:o},{x:n,y:s}]].some(u=>{const f=Ss(l,u);return f&&Ye(f,e)})}};function Ss(t,e){let[{x:i,y:n},{x:s,y:o}]=t,[{x:r,y:a},{x:l,y:h}]=e;const u=(h-a)*(s-i)-(l-r)*(o-n);if(u===0)return!1;const f=((l-r)*(n-a)-(h-a)*(i-r))/u;return f<0?!1:{x:i+f*(s-i),y:n+f*(o-n)}}function Rt(t,e,i,n){n===void 0&&(n=!0);const s=new IntersectionObserver(n?(o,r)=>{o.some(a=>a.isIntersecting)&&e(o,r)}:e,i);for(const o of p(t))s.observe(o);return s}const Cs=Tt&&window.ResizeObserver;function xe(t,e,i){return i===void 0&&(i={box:"border-box"}),Cs?Vi(ResizeObserver,t,e,i):(Es(),ne.add(e),{disconnect(){ne.delete(e)}})}let ne;function Es(){if(ne)return;ne=new Set;let t;const e=()=>{if(!t){t=!0,H.read(()=>t=!1);for(const i of ne)i()}};x(window,"load resize",e),x(document,"loadedmetadata load",e,!0)}function Xi(t,e,i){return Vi(MutationObserver,t,e,i)}function Vi(t,e,i,n){const s=new t(i);for(const o of p(e))s.observe(o,n);return s}const N={};N.events=N.created=N.beforeConnect=N.connected=N.beforeDisconnect=N.disconnected=N.destroy=fi,N.args=function(t,e){return e!==!1&&fi(e||t)},N.update=function(t,e){return je(fi(t,it(e)?{read:e}:e),"order")},N.props=function(t,e){if(F(e)){const i={};for(const n of e)i[n]=String;e=i}return N.methods(t,e)},N.computed=N.methods=function(t,e){return e?t?{...t,...e}:e:t},N.data=function(t,e,i){return i?Gi(t,e,i):e?t?function(n){return Gi(t,e,n)}:e:t};function Gi(t,e,i){return N.computed(it(t)?t.call(i,i):t,it(e)?e.call(i,i):e)}function fi(t,e){return t=t&&!F(t)?[t]:t,e?t?t.concat(e):F(e)?e:[e]:t}function Os(t,e){return R(e)?t:e}function It(t,e,i){const n={};if(it(e)&&(e=e.options),e.extends&&(t=It(t,e.extends,i)),e.mixins)for(const o of e.mixins)t=It(t,o,i);for(const o in t)s(o);for(const o in e)mt(t,o)||s(o);function s(o){n[o]=(N[o]||Os)(t[o],e[o],i)}return n}function di(t,e){e===void 0&&(e=[]);try{return t?q(t,"{")?JSON.parse(t):e.length&&!d(t,":")?{[e[0]]:t}:t.split(";").reduce((i,n)=>{const[s,o]=n.split(/:(.*)/);return s&&!R(o)&&(i[s.trim()]=o.trim()),i},{}):{}}catch{return{}}}function Ji(t){if(Te(t)&&pi(t,{func:"playVideo",method:"play"}),ke(t))try{t.play().catch(lt)}catch{}}function Ki(t){Te(t)&&pi(t,{func:"pauseVideo",method:"pause"}),ke(t)&&t.pause()}function Zi(t){Te(t)&&pi(t,{func:"mute",method:"setVolume",value:0}),ke(t)&&(t.muted=!0)}function Qi(t){return ke(t)||Te(t)}function ke(t){return st(t,"video")}function Te(t){return st(t,"iframe")&&(Ui(t)||tn(t))}function Ui(t){return!!t.src.match(/\/\/.*?youtube(-nocookie)?\.[a-z]+\/(watch\?v=[^&\s]+|embed)|youtu\.be\/.*/)}function tn(t){return!!t.src.match(/vimeo\.com\/video\/.*/)}async function pi(t,e){await As(t),en(t,e)}function en(t,e){try{t.contentWindow.postMessage(JSON.stringify({event:"command",...e}),"*")}catch{}}const gi="_ukPlayer";let Ps=0;function As(t){if(t[gi])return t[gi];const e=Ui(t),i=tn(t),n=++Ps;let s;return t[gi]=new Promise(o=>{e&&S(t,"load",()=>{const r=()=>en(t,{event:"listening",id:n});s=setInterval(r,100),r()}),S(window,"message",o,!1,r=>{let{data:a}=r;try{return a=JSON.parse(a),a&&(e&&a.id===n&&a.event==="onReady"||i&&Number(a.player_id)===n)}catch{}}),t.src=""+t.src+(d(t.src,"?")?"&":"?")+(e?"enablejsapi=1":"api=1&player_id="+n)}).then(()=>clearInterval(s))}function mi(t,e,i){return e===void 0&&(e=0),i===void 0&&(i=0),D(t)?qe(...I(t).map(n=>{const{top:s,left:o,bottom:r,right:a}=Q(n);return{top:s-e,left:o-i,bottom:r+e,right:a+i}}).concat(T(t))):!1}function vi(t,e){let{offset:i=0}=e===void 0?{}:e;const n=D(t)?I(t):[];return n.reduce((a,l,h)=>{const{scrollTop:u,scrollHeight:f,offsetHeight:g}=l,O=Q(l),M=f-O.height,{height:L,top:gt}=n[h-1]?Q(n[h-1]):T(t);let j=Math.ceil(gt-O.top-i+u);return i>0&&g<L+i?j+=i:i=0,j>M?(i-=j-M,j=M):j<0&&(i-=j,j=0),()=>s(l,j-u).then(a)},()=>Promise.resolve())();function s(a,l){return new Promise(h=>{const u=a.scrollTop,f=o(Math.abs(l)),g=Date.now();(function O(){const M=r(at((Date.now()-g)/f));a.scrollTop=u+l*M,M===1?h():requestAnimationFrame(O)})()})}function o(a){return 40*Math.pow(a,.375)}function r(a){return .5*(1-Math.cos(Math.PI*a))}}function nn(t,e,i){if(e===void 0&&(e=0),i===void 0&&(i=0),!D(t))return 0;const[n]=I(t,/auto|scroll/,!0),{scrollHeight:s,scrollTop:o}=n,{height:r}=Q(n),a=s-r,l=kt(t)[0]-kt(n)[0],h=Math.max(0,l-r+e),u=Math.min(a,l+t.offsetHeight-i);return at((o-h)/(u-h))}function I(t,e,i){e===void 0&&(e=/auto|scroll|hidden|clip/),i===void 0&&(i=!1);const n=sn(t);let s=_t(t).reverse();s=s.slice(s.indexOf(n)+1);const o=ae(s,r=>c(r,"position")==="fixed");return~o&&(s=s.slice(o)),[n].concat(s.filter(r=>e.test(c(r,"overflow"))&&(!i||r.scrollHeight>Q(r).height))).reverse()}function Q(t){const e=$t(t),{document:{documentElement:i}}=e;let n=t===sn(t)?e:t;const{visualViewport:s}=e;if(Pt(n)&&s){let{height:r,width:a,scale:l,pageTop:h,pageLeft:u}=s;return r=Math.round(r*l),a=Math.round(a*l),{height:r,width:a,top:h,left:u,bottom:h+r,right:u+a}}let o=T(n);for(let[r,a,l,h]of[["width","x","left","right"],["height","y","top","bottom"]])Pt(n)?n=i:o[l]+=w(c(n,"border-"+l+"-width")),o[r]=o[a]=n["client"+wt(r)],o[h]=o[r]+o[l];return o}function sn(t){return $t(t).document.scrollingElement}const G=[["width","x","left","right"],["height","y","top","bottom"]];function on(t,e,i){i={attach:{element:["left","top"],target:["left","top"],...i.attach},offset:[0,0],placement:[],...i},F(e)||(e=[e,e]),T(t,rn(t,e,i))}function rn(t,e,i){const n=an(t,e,i),{boundary:s,viewportOffset:o=0,placement:r}=i;let a=n;for(const[l,[h,,u,f]]of Object.entries(G)){const g=Bs(e[l],o,s,l);if(Se(n,g,l))continue;let O=0;if(r[l]==="flip"){const M=i.attach.target[l];if(M===f&&n[f]<=g[f]||M===u&&n[u]>=g[u])continue;O=Ms(t,e,i,l)[u]-n[u];const L=_s(e[l],o,l);if(!Se(wi(n,O,l),L,l)){if(Se(n,L,l))continue;if(i.recursion)return!1;const gt=Ns(t,e,i);if(gt&&Se(gt,L,1-l))return gt;continue}}else if(r[l]==="shift"){const M=T(e[l]),{offset:L}=i;O=at(at(n[u],g[u],g[f]-n[h]),M[u]-n[h]+L[l],M[f]-L[l])-n[u]}a=wi(a,O,l)}return a}function an(t,e,i){let{attach:n,offset:s}={attach:{element:["left","top"],target:["left","top"],...i.attach},offset:[0,0],...i},o=T(t);for(const[r,[a,,l,h]]of Object.entries(G)){const u=n.target[r]===n.element[r]?Q(e[r]):T(e[r]);o=wi(o,u[l]-o[l]+ln(n.target[r],h,u[a])-ln(n.element[r],h,o[a])+ +s[r],r)}return o}function wi(t,e,i){const[,n,s,o]=G[i],r={...t};return r[s]=t[n]=t[s]+e,r[o]+=e,r}function ln(t,e,i){return t==="center"?i/2:t===e?i:0}function Bs(t,e,i,n){let s=cn(...I(t).map(Q));return e&&(s[G[n][2]]+=e,s[G[n][3]]-=e),i&&(s=cn(s,T(i))),s}function _s(t,e,i){const[n,,s,o]=G[i],[r]=I(t),a=Q(r);return a[s]-=r["scroll"+wt(s)]-e,a[o]=a[s]+r["scroll"+wt(n)]-e,a}function cn(){let t={};for(var e=arguments.length,i=new Array(e),n=0;n<e;n++)i[n]=arguments[n];for(const s of i)for(const[,,o,r]of G)t[o]=Math.max(t[o]||0,s[o]),t[r]=Math.min(...[t[r],s[r]].filter(Boolean));return t}function Se(t,e,i){const[,,n,s]=G[i];return t[n]>=e[n]&&t[s]<=e[s]}function Ms(t,e,i,n){let{offset:s,attach:o}=i;return an(t,e,{attach:{element:hn(o.element,n),target:hn(o.target,n)},offset:Ds(s,n)})}function Ns(t,e,i){return rn(t,e,{...i,attach:{element:i.attach.element.map(un).reverse(),target:i.attach.target.map(un).reverse()},offset:i.offset.reverse(),placement:i.placement.reverse(),recursion:!0})}function hn(t,e){const i=[...t],n=G[e].indexOf(t[e]);return~n&&(i[e]=G[e][1-n%2+2]),i}function un(t){for(let e=0;e<G.length;e++){const i=G[e].indexOf(t);if(~i)return G[1-e][i%2+2]}}function Ds(t,e){return t=[...t],t[e]*=-1,t}var zs=Object.freeze({__proto__:null,ajax:ls,getImage:hs,Transition:nt,Animation:tt,attr:v,hasAttr:At,removeAttr:Jt,data:Bt,addClass:b,removeClass:z,removeClasses:ni,replaceClass:si,hasClass:$,toggleClass:X,dimensions:V,offset:T,position:Hi,offsetPosition:kt,height:et,width:te,boxModelAdjust:ee,flipPosition:Fi,toPx:Z,ready:ri,isTag:st,empty:Ri,html:ge,prepend:$s,append:ot,before:Ii,after:me,remove:Nt,wrapAll:ai,wrapInner:li,unwrap:we,fragment:Dt,apply:ut,$:m,$$:_,inBrowser:Tt,isRtl:ie,hasTouch:zt,pointerDown:Lt,pointerMove:ks,pointerUp:Ft,pointerEnter:be,pointerLeave:$e,pointerCancel:ye,on:x,off:Ue,once:S,trigger:k,createEvent:de,toEventTargets:ei,isTouch:Mt,getEventPos:pe,fastdom:H,isVoidElement:Ge,isVisible:D,selInput:ue,isInput:Ai,selFocusable:fe,isFocusable:Je,parent:E,filter:Kt,matches:B,closest:K,within:C,parents:_t,children:ct,index:Ke,hasOwn:mt,hyphenate:vt,camelize:Et,ucfirst:wt,startsWith:q,endsWith:Yt,includes:d,findIndex:ae,isArray:F,toArray:Ei,assign:Ot,isFunction:it,isObject:ft,isPlainObject:dt,isWindow:Pt,isDocument:le,isNode:ze,isElement:Xt,isBoolean:ce,isString:y,isNumber:Le,isNumeric:bt,isEmpty:Fe,isUndefined:R,toBoolean:Re,toNumber:Vt,toFloat:w,toNode:P,toNodes:p,toWindow:$t,isEqual:Ie,swap:We,last:Gt,each:yt,sortBy:je,uniqueBy:Jn,clamp:at,noop:lt,intersectRect:qe,pointInRect:Ye,Dimensions:Ve,getIndex:he,memoize:Y,Deferred:Pi,MouseTracker:ui,observeIntersection:Rt,observeResize:xe,observeMutation:Xi,mergeOptions:It,parseOptions:di,play:Ji,pause:Ki,mute:Zi,isVideo:Qi,positionAt:on,query:ht,queryAll:Zt,find:Ze,findAll:Qt,escape:Qe,css:c,propName:ii,isInView:mi,scrollIntoView:vi,scrolledOver:nn,scrollParents:I,offsetViewport:Q});function Hs(t){const e=t.data;t.use=function(s){if(!s.installed)return s.call(null,this),s.installed=!0,this},t.mixin=function(s,o){o=(y(o)?t.component(o):o)||this,o.options=It(o.options,s)},t.extend=function(s){s=s||{};const o=this,r=function(l){this._init(l)};return r.prototype=Object.create(o.prototype),r.prototype.constructor=r,r.options=It(o.options,s),r.super=o,r.extend=o.extend,r},t.update=function(s,o){s=s?P(s):document.body;for(const r of _t(s).reverse())n(r[e],o);ut(s,r=>n(r[e],o))};let i;Object.defineProperty(t,"container",{get(){return i||document.body},set(s){i=m(s)}});function n(s,o){if(!!s)for(const r in s)s[r]._connected&&s[r]._callUpdate(o)}}function Ls(t){t.prototype._callHook=function(n){var s;(s=this.$options[n])==null||s.forEach(o=>o.call(this))},t.prototype._callConnected=function(){this._connected||(this._data={},this._computed={},this._initProps(),this._callHook("beforeConnect"),this._connected=!0,this._initEvents(),this._initObservers(),this._callHook("connected"),this._callUpdate())},t.prototype._callDisconnected=function(){!this._connected||(this._callHook("beforeDisconnect"),this._disconnectObservers(),this._unbindEvents(),this._callHook("disconnected"),this._connected=!1,delete this._watch)},t.prototype._callUpdate=function(n){n===void 0&&(n="update"),this._connected&&((n==="update"||n==="resize")&&this._callWatches(),this.$options.update&&(this._updates||(this._updates=new Set,H.read(()=>{this._connected&&e.call(this,this._updates),delete this._updates})),this._updates.add(n.type||n)))},t.prototype._callWatches=function(){if(this._watch)return;const n=!mt(this,"_watch");this._watch=H.read(()=>{this._connected&&i.call(this,n),this._watch=null})};function e(n){for(const{read:s,write:o,events:r=[]}of this.$options.update){if(!n.has("update")&&!r.some(l=>n.has(l)))continue;let a;s&&(a=s.call(this,this._data,n),a&&dt(a)&&Ot(this._data,a)),o&&a!==!1&&H.write(()=>{this._connected&&o.call(this,this._data,n)})}}function i(n){const{$options:{computed:s}}=this,o={...this._computed};this._computed={};for(const r in s){const{watch:a,immediate:l}=s[r];a&&(n&&l||mt(o,r)&&!Ie(o[r],this[r]))&&a.call(this,this[r],o[r])}}}function Fs(t){let e=0;t.prototype._init=function(i){i=i||{},i.data=js(i,this.constructor.options),this.$options=It(this.constructor.options,i,this),this.$el=null,this.$props={},this._uid=e++,this._initData(),this._initMethods(),this._initComputeds(),this._callHook("created"),i.el&&this.$mount(i.el)},t.prototype._initData=function(){const{data:i={}}=this.$options;for(const n in i)this.$props[n]=this[n]=i[n]},t.prototype._initMethods=function(){const{methods:i}=this.$options;if(i)for(const n in i)this[n]=i[n].bind(this)},t.prototype._initComputeds=function(){const{computed:i}=this.$options;if(this._computed={},i)for(const n in i)Rs(this,n,i[n])},t.prototype._initProps=function(i){let n;i=i||fn(this.$options,this.$name);for(n in i)R(i[n])||(this.$props[n]=i[n]);const s=[this.$options.computed,this.$options.methods];for(n in this.$props)n in i&&Is(s,n)&&(this[n]=this.$props[n])},t.prototype._initEvents=function(){this._events=[];for(const i of this.$options.events||[])if(mt(i,"handler"))Ce(this,i);else for(const n in i)Ce(this,i[n],n)},t.prototype._unbindEvents=function(){this._events.forEach(i=>i()),delete this._events},t.prototype._initObservers=function(){this._observers=[Ys(this)],this.$options.computed&&this.registerObserver(qs(this))},t.prototype.registerObserver=function(i){this._observers.push(i)},t.prototype._disconnectObservers=function(){this._observers.forEach(i=>i==null?void 0:i.disconnect())}}function fn(t,e){const i={},{args:n=[],props:s={},el:o}=t;if(!s)return i;for(const a in s){const l=vt(a);let h=Bt(o,l);R(h)||(h=s[a]===Boolean&&h===""?!0:bi(s[a],h),!(l==="target"&&q(h,"_"))&&(i[a]=h))}const r=di(Bt(o,e),n);for(const a in r){const l=Et(a);R(s[l])||(i[l]=bi(s[l],r[a]))}return i}function Rs(t,e,i){Object.defineProperty(t,e,{enumerable:!0,get(){const{_computed:n,$props:s,$el:o}=t;return mt(n,e)||(n[e]=(i.get||i).call(t,s,o)),n[e]},set(n){const{_computed:s}=t;s[e]=i.set?i.set.call(t,n):n,R(s[e])&&delete s[e]}})}function Ce(t,e,i){dt(e)||(e={name:i,handler:e});let{name:n,el:s,handler:o,capture:r,passive:a,delegate:l,filter:h,self:u}=e;if(s=it(s)?s.call(t):s||t.$el,F(s)){s.forEach(f=>Ce(t,{...e,el:f},i));return}!s||h&&!h.call(t)||t._events.push(x(s,n,l?y(l)?l:l.call(t):null,y(o)?t[o]:o.bind(t),{passive:a,capture:r,self:u}))}function Is(t,e){return t.every(i=>!i||!mt(i,e))}function bi(t,e){return t===Boolean?Re(e):t===Number?Vt(e):t==="list"?Ws(e):t?t(e):e}function Ws(t){return F(t)?t:y(t)?t.split(/,(?![^(]*\))/).map(e=>bt(e)?Vt(e):Re(e.trim())):[t]}function js(t,e){let{data:i={}}=t,{args:n=[],props:s={}}=e;F(i)&&(i=i.slice(0,n.length).reduce((o,r,a)=>(dt(r)?Ot(o,r):o[n[a]]=r,o),{}));for(const o in i)R(i[o])?delete i[o]:s[o]&&(i[o]=bi(s[o],i[o]));return i}function qs(t){const{el:e}=t.$options,i=new MutationObserver(()=>t.$emit());return i.observe(e,{childList:!0,subtree:!0}),i}function Ys(t){const{$name:e,$options:i,$props:n}=t,{attrs:s,props:o,el:r}=i;if(!o||s===!1)return;const a=F(s)?s:Object.keys(o),l=a.map(u=>vt(u)).concat(e),h=new MutationObserver(u=>{const f=fn(i,e);u.some(g=>{let{attributeName:O}=g;const M=O.replace("data-","");return(M===e?a:[Et(M),Et(O)]).some(L=>!R(f[L])&&f[L]!==n[L])})&&t.$reset()});return h.observe(r,{attributes:!0,attributeFilter:l.concat(l.map(u=>"data-"+u))}),h}function Xs(t){const e=t.data;t.prototype.$create=function(n,s,o){return t[n](s,o)},t.prototype.$mount=function(n){const{name:s}=this.$options;n[e]||(n[e]={}),!n[e][s]&&(n[e][s]=this,this.$el=this.$options.el=this.$options.el||n,C(n,document)&&this._callConnected())},t.prototype.$reset=function(){this._callDisconnected(),this._callConnected()},t.prototype.$destroy=function(n){n===void 0&&(n=!1);const{el:s,name:o}=this.$options;s&&this._callDisconnected(),this._callHook("destroy"),s!=null&&s[e]&&(delete s[e][o],Fe(s[e])||delete s[e],n&&Nt(this.$el))},t.prototype.$emit=function(n){this._callUpdate(n)},t.prototype.$update=function(n,s){n===void 0&&(n=this.$el),t.update(n,s)},t.prototype.$getComponent=t.getComponent;const i=Y(n=>t.prefix+vt(n));Object.defineProperties(t.prototype,{$container:Object.getOwnPropertyDescriptor(t,"container"),$name:{get(){return i(this.$options.name)}}})}function Vs(t){const e=t.data,i={};t.component=function(n,s){const o=vt(n);if(n=Et(o),!s)return dt(i[n])&&(i[n]=t.extend(i[n])),i[n];t[n]=function(a,l){const h=t.component(n);return h.options.functional?new h({data:dt(a)?a:[...arguments]}):a?_(a).map(u)[0]:u();function u(f){const g=t.getComponent(f,n);if(g)if(l)g.$destroy();else return g;return new h({el:f,data:l})}};const r=dt(s)?{...s}:s.options;return r.name=n,r.install==null||r.install(t,r,n),t._initialized&&!r.functional&&H.read(()=>t[n]("[uk-"+o+"],[data-uk-"+o+"]")),i[n]=dt(s)?r:s},t.getComponents=n=>(n==null?void 0:n[e])||{},t.getComponent=(n,s)=>t.getComponents(n)[s],t.connect=n=>{if(n[e])for(const s in n[e])n[e][s]._callConnected();for(const s of n.attributes){const o=dn(s.name);o&&o in i&&t[o](n)}},t.disconnect=n=>{for(const s in n[e])n[e][s]._callDisconnected()}}const dn=Y(t=>q(t,"uk-")||q(t,"data-uk-")?Et(t.replace("data-uk-","").replace("uk-","")):!1),J=function(t){this._init(t)};J.util=zs,J.data="__uikit__",J.prefix="uk-",J.options={},J.version="3.15.1-dev.f849bb0c8",Hs(J),Ls(J),Fs(J),Vs(J),Xs(J);function Gs(t){const{connect:e,disconnect:i}=t;if(!Tt||!window.MutationObserver)return;H.read(function(){document.body&&ut(document.body,e),new MutationObserver(o=>o.forEach(n)).observe(document,{childList:!0,subtree:!0}),new MutationObserver(o=>o.forEach(s)).observe(document,{attributes:!0,subtree:!0}),t._initialized=!0});function n(o){let{addedNodes:r,removedNodes:a}=o;for(const l of r)ut(l,e);for(const l of a)ut(l,i)}function s(o){var r;let{target:a,attributeName:l}=o;const h=dn(l);if(!(!h||!(h in t))){if(At(a,l)){t[h](a);return}(r=t.getComponent(a,h))==null||r.$destroy()}}}var rt={connected(){!$(this.$el,this.$name)&&b(this.$el,this.$name)}},Ee={methods:{lazyload(t,e){t===void 0&&(t=this.$el),e===void 0&&(e=this.$el),this.registerObserver(Rt(t,(i,n)=>{for(const s of p(it(e)?e():e))_('[loading="lazy"]',s).forEach(o=>Jt(o,"loading"));for(const s of i.filter(o=>{let{isIntersecting:r}=o;return r}).map(o=>{let{target:r}=o;return r}))n.unobserve(s)}))}}},Wt={props:{cls:Boolean,animation:"list",duration:Number,velocity:Number,origin:String,transition:String},data:{cls:!1,animation:[!1],duration:200,velocity:.2,origin:!1,transition:"ease",clsEnter:"uk-togglabe-enter",clsLeave:"uk-togglabe-leave"},computed:{hasAnimation(t){let{animation:e}=t;return!!e[0]},hasTransition(t){let{animation:e}=t;return["slide","reveal"].some(i=>q(e[0],i))}},methods:{toggleElement(t,e,i){return new Promise(n=>Promise.all(p(t).map(s=>{const o=ce(e)?e:!this.isToggled(s);if(!k(s,"before"+(o?"show":"hide"),[this]))return Promise.reject();const r=(it(i)?i:i===!1||!this.hasAnimation?Js(this):this.hasTransition?pn(this):Ks(this))(s,o),a=o?this.clsEnter:this.clsLeave;b(s,a),k(s,o?"show":"hide",[this]);const l=()=>{z(s,a),k(s,o?"shown":"hidden",[this]),this.$update(s)};return r?r.then(l,()=>(z(s,a),Promise.reject())):l()})).then(n,lt))},isToggled(t){return t===void 0&&(t=this.$el),[t]=p(t),$(t,this.clsEnter)?!0:$(t,this.clsLeave)?!1:this.cls?$(t,this.cls.split(" ")[0]):D(t)},_toggle(t,e){if(!t)return;e=Boolean(e);let i;this.cls?(i=d(this.cls," ")||e!==$(t,this.cls),i&&X(t,this.cls,d(this.cls," ")?void 0:e)):(i=e===t.hidden,i&&(t.hidden=!e)),_("[autofocus]",t).some(n=>D(n)?n.focus()||!0:n.blur()),i&&(k(t,"toggled",[e,this]),this.$update(t))}}};function Js(t){let{_toggle:e}=t;return(i,n)=>(tt.cancel(i),nt.cancel(i),e(i,n))}function pn(t){var e;const[i="reveal",n="top"]=((e=t.animation[0])==null?void 0:e.split("-"))||[],s=[["left","right"],["top","bottom"]],o=s[d(s[0],n)?0:1],r=o[1]===n,l=["width","height"][s.indexOf(o)],h="margin-"+o[0],u="margin-"+n;return async(f,g)=>{let{duration:O,velocity:M,transition:L,_toggle:gt}=t,j=V(f)[l];const Cr=nt.inProgress(f);await nt.cancel(f),g&>(f,!0);const Er=Object.fromEntries(["padding","border","width","height","overflowY","overflowX",h,u].map(Xn=>[Xn,f.style[Xn]])),re=V(f),Si=w(c(f,h)),jn=w(c(f,u)),Ct=re[l]+jn;!Cr&&!g&&(j+=jn);const[De]=li(f,"<div>");c(De,{boxSizing:"border-box",height:re.height,width:re.width,...c(f,["overflow","padding","borderTop","borderRight","borderBottom","borderLeft","borderImage",u])}),c(f,{padding:0,border:0,minWidth:0,minHeight:0,[u]:0,width:re.width,height:re.height,overflow:"hidden",[l]:j});const qn=j/Ct;O=(M*Ct+O)*(g?1-qn:qn);const Yn={[l]:g?Ct:0};r&&(c(f,h,Ct-j+Si),Yn[h]=g?Si:Ct+Si),!r^i==="reveal"&&(c(De,h,-Ct+j),nt.start(De,{[h]:g?0:-Ct},O,L));try{await nt.start(f,Yn,O,L)}finally{c(f,Er),we(De.firstChild),g||gt(f,!1)}}}function Ks(t){return(e,i)=>{tt.cancel(e);const{animation:n,duration:s,_toggle:o}=t;return i?(o(e,!0),tt.in(e,n[0],s,t.origin)):tt.out(e,n[1]||n[0],s,t.origin).then(()=>o(e,!1))}}var gn={mixins:[rt,Ee,Wt],props:{animation:Boolean,targets:String,active:null,collapsible:Boolean,multiple:Boolean,toggle:String,content:String,offset:Number},data:{targets:"> *",active:!1,animation:!0,collapsible:!0,multiple:!1,clsOpen:"uk-open",toggle:"> .uk-accordion-title",content:"> .uk-accordion-content",offset:0},computed:{items:{get(t,e){let{targets:i}=t;return _(i,e)},watch(t,e){if(e||$(t,this.clsOpen))return;const i=this.active!==!1&&t[Number(this.active)]||!this.collapsible&&t[0];i&&this.toggle(i,!1)},immediate:!0},toggles(t){let{toggle:e}=t;return this.items.map(i=>m(e,i))},contents:{get(t){let{content:e}=t;return this.items.map(i=>m(e,i))},watch(t){for(const e of t)mn(e,!$(this.items.find(i=>C(e,i)),this.clsOpen))},immediate:!0}},connected(){this.lazyload()},events:[{name:"click",delegate(){return this.targets+" "+this.$props.toggle},handler(t){t.preventDefault(),this.toggle(Ke(this.toggles,t.current))}}],methods:{toggle(t,e){let i=[this.items[he(t,this.items)]];const n=Kt(this.items,"."+this.clsOpen);if(!this.multiple&&!d(n,i[0])&&(i=i.concat(n)),!(!this.collapsible&&n.length<2&&!Kt(i,":not(."+this.clsOpen+")").length))for(const s of i)this.toggleElement(s,!$(s,this.clsOpen),async(o,r)=>{X(o,this.clsOpen,r),v(m(this.$props.toggle,o),"aria-expanded",r);const a=m(this.content,o);if(e===!1||!this.animation){a.hidden=!r,mn(a,!r);return}if(await pn(this)(a,r),r){const l=m(this.$props.toggle,o);H.read(()=>{mi(l)||vi(l,{offset:this.offset})})}})}}};function mn(t,e){t&&(t.hidden=e)}var Zs={mixins:[rt,Wt],args:"animation",props:{animation:Boolean,close:String},data:{animation:!0,selClose:".uk-alert-close",duration:150},events:{name:"click",delegate(){return this.selClose},handler(t){t.preventDefault(),this.close()}},methods:{async close(){await this.toggleElement(this.$el,!1,Qs(this)),this.$destroy(!0)}}};function Qs(t){let{duration:e,transition:i,velocity:n}=t;return s=>{const o=w(c(s,"height"));return c(s,"height",o),nt.start(s,{height:0,marginTop:0,marginBottom:0,paddingTop:0,paddingBottom:0,borderTop:0,borderBottom:0,opacity:0},n*o+e,i)}}var vn={args:"autoplay",props:{automute:Boolean,autoplay:Boolean},data:{automute:!1,autoplay:!0},connected(){this.inView=this.autoplay==="inview",this.inView&&!At(this.$el,"preload")&&(this.$el.preload="none"),this.automute&&Zi(this.$el),this.registerObserver(Rt(this.$el,()=>this.$emit(),{},!1))},update:{read(){return Qi(this.$el)?{visible:D(this.$el)&&c(this.$el,"visibility")!=="hidden",inView:this.inView&&mi(this.$el)}:!1},write(t){let{visible:e,inView:i}=t;!e||this.inView&&!i?Ki(this.$el):(this.autoplay===!0||this.inView&&i)&&Ji(this.$el)}}},pt={connected(){var t;this.registerObserver(xe(((t=this.$options.resizeTargets)==null?void 0:t.call(this))||this.$el,()=>this.$emit("resize")))}},Us={mixins:[pt,vn],props:{width:Number,height:Number},data:{automute:!0},events:{"load loadedmetadata"(){this.$emit("resize")}},resizeTargets(){return[this.$el,E(this.$el)]},update:{read(){const{ratio:t,cover:e}=Ve,{$el:i,width:n,height:s}=this;let o={width:n,height:s};if(!o.width||!o.height){const h={width:i.naturalWidth||i.videoWidth||i.clientWidth,height:i.naturalHeight||i.videoHeight||i.clientHeight};o.width?o=t(h,"width",o.width):s?o=t(h,"height",o.height):o=h}const{offsetHeight:r,offsetWidth:a}=to(i)||E(i),l=e(o,{width:a+(a%2?1:0),height:r+(r%2?1:0)});return!l.width||!l.height?!1:l},write(t){let{height:e,width:i}=t;c(this.$el,{height:e,width:i})},events:["resize"]}};function to(t){for(;t=E(t);)if(c(t,"position")!=="static")return t}var $i={props:{container:Boolean},data:{container:!0},computed:{container(t){let{container:e}=t;return e===!0&&this.$container||e&&m(e)}}},eo={props:{pos:String,offset:null,flip:Boolean,shift:Boolean,inset:Boolean},data:{pos:"bottom-"+(ie?"right":"left"),offset:!1,flip:!0,shift:!0,inset:!1},connected(){this.pos=this.$props.pos.split("-").concat("center").slice(0,2),[this.dir,this.align]=this.pos,this.axis=d(["top","bottom"],this.dir)?"y":"x"},methods:{positionAt(t,e,i){let n=[this.getPositionOffset(t),this.getShiftOffset(t)];const s=[this.flip&&"flip",this.shift&&"shift"],o={element:[this.inset?this.dir:Fi(this.dir),this.align],target:[this.dir,this.align]};if(this.axis==="y"){for(const u in o)o[u].reverse();n.reverse(),s.reverse()}const[r]=I(t,/auto|scroll/),{scrollTop:a,scrollLeft:l}=r,h=V(t);c(t,{top:-h.height,left:-h.width}),on(t,e,{attach:o,offset:n,boundary:i,placement:s,viewportOffset:this.getViewportOffset(t)}),r.scrollTop=a,r.scrollLeft=l},getPositionOffset(t){return Z(this.offset===!1?c(t,"--uk-position-offset"):this.offset,this.axis==="x"?"width":"height",t)*(d(["left","top"],this.dir)?-1:1)*(this.inset?-1:1)},getShiftOffset(t){return this.align==="center"?0:Z(c(t,"--uk-position-shift-offset"),this.axis==="y"?"width":"height",t)*(d(["left","top"],this.align)?1:-1)},getViewportOffset(t){return Z(c(t,"--uk-position-viewport-offset"))}}},io={beforeConnect(){this._style=v(this.$el,"style")},disconnected(){v(this.$el,"style",this._style)}};const W=[];var wn={mixins:[rt,$i,Wt],props:{selPanel:String,selClose:String,escClose:Boolean,bgClose:Boolean,stack:Boolean},data:{cls:"uk-open",escClose:!0,bgClose:!0,overlay:!0,stack:!1},computed:{panel(t,e){let{selPanel:i}=t;return m(i,e)},transitionElement(){return this.panel},bgClose(t){let{bgClose:e}=t;return e&&this.panel}},beforeDisconnect(){d(W,this)&&this.toggleElement(this.$el,!1,!1)},events:[{name:"click",delegate(){return this.selClose},handler(t){t.preventDefault(),this.hide()}},{name:"toggle",self:!0,handler(t){t.defaultPrevented||(t.preventDefault(),this.isToggled()===d(W,this)&&this.toggle())}},{name:"beforeshow",self:!0,handler(t){if(d(W,this))return!1;!this.stack&&W.length?(Promise.all(W.map(e=>e.hide())).then(this.show),t.preventDefault()):W.push(this)}},{name:"show",self:!0,handler(){S(this.$el,"hide",x(document,"focusin",t=>{Gt(W)===this&&!C(t.target,this.$el)&&this.$el.focus()})),this.overlay&&(S(this.$el,"hidden",$n(this.$el),{self:!0}),S(this.$el,"hidden",yn(),{self:!0})),this.stack&&c(this.$el,"zIndex",w(c(this.$el,"zIndex"))+W.length),b(document.documentElement,this.clsPage),this.bgClose&&S(this.$el,"hide",x(document,Lt,t=>{let{target:e}=t;Gt(W)!==this||this.overlay&&!C(e,this.$el)||C(e,this.panel)||S(document,Ft+" "+ye+" scroll",i=>{let{defaultPrevented:n,type:s,target:o}=i;!n&&s===Ft&&e===o&&this.hide()},!0)}),{self:!0}),this.escClose&&S(this.$el,"hide",x(document,"keydown",t=>{t.keyCode===27&&Gt(W)===this&&this.hide()}),{self:!0})}},{name:"shown",self:!0,handler(){Je(this.$el)||v(this.$el,"tabindex","-1"),m(":focus",this.$el)||this.$el.focus()}},{name:"hidden",self:!0,handler(){d(W,this)&&W.splice(W.indexOf(this),1),c(this.$el,"zIndex",""),W.some(t=>t.clsPage===this.clsPage)||z(document.documentElement,this.clsPage)}}],methods:{toggle(){return this.isToggled()?this.hide():this.show()},show(){return this.container&&E(this.$el)!==this.container?(ot(this.container,this.$el),new Promise(t=>requestAnimationFrame(()=>this.show().then(t)))):this.toggleElement(this.$el,!0,bn(this))},hide(){return this.toggleElement(this.$el,!1,bn(this))}}};function bn(t){let{transitionElement:e,_toggle:i}=t;return(n,s)=>new Promise((o,r)=>S(n,"show hide",()=>{n._reject==null||n._reject(),n._reject=r,i(n,s);const a=S(e,"transitionstart",()=>{S(e,"transitionend transitioncancel",o,{self:!0}),clearTimeout(l)},{self:!0}),l=setTimeout(()=>{a(),o()},no(c(e,"transitionDuration")))})).then(()=>delete n._reject)}function no(t){return t?Yt(t,"ms")?w(t):w(t)*1e3:0}function $n(t){if(CSS.supports("overscroll-behavior","contain")){const n=so(t,s=>/auto|scroll/.test(c(s,"overflow")));return c(n,"overscrollBehavior","contain"),()=>c(n,"overscrollBehavior","")}let e;const i=[x(t,"touchstart",n=>{let{targetTouches:s}=n;s.length===1&&(e=s[0].clientY)},{passive:!0}),x(t,"touchmove",n=>{if(n.targetTouches.length!==1)return;let[s]=I(n.target,/auto|scroll/);C(s,t)||(s=t);const o=n.targetTouches[0].clientY-e,{scrollTop:r,scrollHeight:a,clientHeight:l}=s;(l>=a||r===0&&o>0||a-r<=l&&o<0)&&n.cancelable&&n.preventDefault()},{passive:!1})];return()=>i.forEach(n=>n())}let yi;function yn(){if(yi)return lt;yi=!0;const{scrollingElement:t}=document;return c(t,{overflowY:"hidden",touchAction:"none",paddingRight:te(window)-t.clientWidth}),()=>{yi=!1,c(t,{overflowY:"",touchAction:"",paddingRight:""})}}function so(t,e){const i=[];return ut(t,n=>{e(n)&&i.push(n)}),i}let A;var xn={mixins:[$i,Ee,eo,io,Wt],args:"pos",props:{mode:"list",toggle:Boolean,boundary:Boolean,target:Boolean,targetX:Boolean,targetY:Boolean,stretch:Boolean,delayShow:Number,delayHide:Number,autoUpdate:Boolean,clsDrop:String,animateOut:Boolean,bgScroll:Boolean},data:{mode:["click","hover"],toggle:"- *",boundary:!1,target:!1,targetX:!1,targetY:!1,stretch:!1,delayShow:0,delayHide:800,autoUpdate:!0,clsDrop:!1,animateOut:!1,bgScroll:!0,animation:["uk-animation-fade"],cls:"uk-open",container:!1},computed:{target(t,e){let{target:i,targetX:n,targetY:s}=t;return n=n||i||this.targetEl,s=s||i||this.targetEl,[n===!0?window:ht(n,e),s===!0?window:ht(s,e)]}},created(){this.tracker=new ui},beforeConnect(){this.clsDrop=this.$props.clsDrop||"uk-"+this.$options.name},connected(){b(this.$el,this.clsDrop),this.toggle&&!this.targetEl&&(this.targetEl=this.$create("toggle",ht(this.toggle,this.$el),{target:this.$el,mode:this.mode}).$el,v(this.targetEl,"aria-haspopup",!0),this.lazyload(this.targetEl))},disconnected(){this.isActive()&&(this.hide(!1),A=null)},events:[{name:"click",delegate(){return"."+this.clsDrop+"-close"},handler(t){t.preventDefault(),this.hide(!1)}},{name:"click",delegate(){return'a[href^="#"]'},handler(t){let{defaultPrevented:e,current:{hash:i}}=t;!e&&i&&!C(i,this.$el)&&this.hide(!1)}},{name:"beforescroll",handler(){this.hide(!1)}},{name:"toggle",self:!0,handler(t,e){t.preventDefault(),this.isToggled()?this.hide(!1):this.show(e==null?void 0:e.$el,!1)}},{name:"toggleshow",self:!0,handler(t,e){t.preventDefault(),this.show(e==null?void 0:e.$el)}},{name:"togglehide",self:!0,handler(t){t.preventDefault(),B(this.$el,":focus,:hover")||this.hide()}},{name:be+" focusin",filter(){return d(this.mode,"hover")},handler(t){Mt(t)||this.clearTimers()}},{name:$e+" focusout",filter(){return d(this.mode,"hover")},handler(t){!Mt(t)&&t.relatedTarget&&this.hide()}},{name:"toggled",self:!0,handler(t,e){!e||(this.clearTimers(),this.position())}},{name:"show",self:!0,handler(){A=this,this.tracker.init();const t=()=>this.$emit(),e=[x(document,Lt,i=>{let{target:n}=i;return!C(n,this.$el)&&S(document,Ft+" "+ye+" scroll",s=>{let{defaultPrevented:o,type:r,target:a}=s;!o&&r===Ft&&n===a&&!(this.targetEl&&C(n,this.targetEl))&&this.hide(!1)},!0)}),x(document,"keydown",i=>{i.keyCode===27&&this.hide(!1)}),x(window,"resize",t),(()=>{const i=xe(I(this.$el).concat(this.targetEl),t);return()=>i.disconnect()})(),...this.autoUpdate?[x([document,I(this.$el)],"scroll",t)]:[],...this.bgScroll?[]:[$n(this.$el),yn()]];S(this.$el,"hide",()=>e.forEach(i=>i()),{self:!0})}},{name:"beforehide",self:!0,handler(){this.clearTimers()}},{name:"hide",handler(t){let{target:e}=t;if(this.$el!==e){A=A===null&&C(e,this.$el)&&this.isToggled()?this:A;return}A=this.isActive()?null:A,this.tracker.cancel()}}],update:{write(){this.isToggled()&&!$(this.$el,this.clsEnter)&&this.position()}},methods:{show(t,e){if(t===void 0&&(t=this.targetEl),e===void 0&&(e=!0),this.isToggled()&&t&&this.targetEl&&t!==this.targetEl&&this.hide(!1,!1),this.targetEl=t,this.clearTimers(),!this.isActive()){if(A){if(e&&A.isDelaying){this.showTimer=setTimeout(()=>B(t,":hover")&&this.show(),10);return}let i;for(;A&&i!==A&&!C(this.$el,A.$el);)i=A,A.hide(!1,!1)}this.container&&E(this.$el)!==this.container&&ot(this.container,this.$el),this.showTimer=setTimeout(()=>this.toggleElement(this.$el,!0),e&&this.delayShow||0)}},hide(t,e){t===void 0&&(t=!0),e===void 0&&(e=!0);const i=()=>this.toggleElement(this.$el,!1,this.animateOut&&e);this.clearTimers(),this.isDelaying=oo(this.$el).some(n=>this.tracker.movesTo(n)),t&&this.isDelaying?this.hideTimer=setTimeout(this.hide,50):t&&this.delayHide?this.hideTimer=setTimeout(i,this.delayHide):i()},clearTimers(){clearTimeout(this.showTimer),clearTimeout(this.hideTimer),this.showTimer=null,this.hideTimer=null,this.isDelaying=!1},isActive(){return A===this},position(){z(this.$el,this.clsDrop+"-stack"),v(this.$el,"style",this._style),this.$el.hidden=!0;const t=ht(this.boundary,this.$el),e=T(t||window),i=this.target.map(r=>Q(I(r)[0])),n=this.getViewportOffset(this.$el),s=[[0,["x","width","left","right"]],[1,["y","height","top","bottom"]]];for(const[r,[a,l]]of s)this.axis!==a&&d([a,!0],this.stretch)&&c(this.$el,{[l]:Math.min(e[l],i[r][l]-2*n),["overflow-"+a]:"auto"});const o=i[0].width-2*n;this.$el.offsetWidth>o&&b(this.$el,this.clsDrop+"-stack"),c(this.$el,"maxWidth",o),this.$el.hidden=!1,this.positionAt(this.$el,this.target,t);for(const[r,[a,l,h,u]]of s)if(this.axis===a&&d([a,!0],this.stretch)){const f=Math.abs(this.getPositionOffset(this.$el)),g=T(this.target[r]),O=T(this.$el);c(this.$el,{[l]:(g[h]>O[h]?g[h]-Math.max(e[h],i[r][h]+n):Math.min(e[u],i[r][u]-n)-g[u])-f,["overflow-"+a]:"auto"}),this.positionAt(this.$el,this.target,t)}}}};function oo(t){const e=[];return ut(t,i=>c(i,"position")!=="static"&&e.push(i)),e}var ro={mixins:[rt],args:"target",props:{target:Boolean},data:{target:!1},computed:{input(t,e){return m(ue,e)},state(){return this.input.nextElementSibling},target(t,e){let{target:i}=t;return i&&(i===!0&&E(this.input)===e&&this.input.nextElementSibling||m(i,e))}},update(){var t;const{target:e,input:i}=this;if(!e)return;let n;const s=Ai(e)?"value":"textContent",o=e[s],r=(t=i.files)!=null&&t[0]?i.files[0].name:B(i,"select")&&(n=_("option",i).filter(a=>a.selected)[0])?n.textContent:i.value;o!==r&&(e[s]=r)},events:[{name:"change",handler(){this.$emit()}},{name:"reset",el(){return K(this.$el,"form")},handler(){this.$emit()}}]},kn={mixins:[pt],props:{margin:String,firstColumn:Boolean},data:{margin:"uk-margin-small-top",firstColumn:"uk-first-column"},resizeTargets(){return[this.$el,...Ei(this.$el.children)]},connected(){this.registerObserver(Xi(this.$el,()=>this.$reset(),{childList:!0}))},update:{read(){const t=Tn(this.$el.children);return{rows:t,columns:ao(t)}},write(t){let{columns:e,rows:i}=t;for(const n of i)for(const s of n)X(s,this.margin,i[0]!==n),X(s,this.firstColumn,e[0].includes(s))},events:["resize"]}};function Tn(t){return Sn(t,"top","bottom")}function ao(t){const e=[];for(const i of t){const n=Sn(i,"left","right");for(let s=0;s<n.length;s++)e[s]=e[s]?e[s].concat(n[s]):n[s]}return ie?e.reverse():e}function Sn(t,e,i){const n=[[]];for(const s of t){if(!D(s))continue;let o=Oe(s);for(let r=n.length-1;r>=0;r--){const a=n[r];if(!a[0]){a.push(s);break}let l;if(a[0].offsetParent===s.offsetParent?l=Oe(a[0]):(o=Oe(s,!0),l=Oe(a[0],!0)),o[e]>=l[i]-1&&o[e]!==l[e]){n.push([s]);break}if(o[i]-1>l[e]||o[e]===l[e]){a.push(s);break}if(r===0){n.unshift([s]);break}}}return n}function Oe(t,e){e===void 0&&(e=!1);let{offsetTop:i,offsetLeft:n,offsetHeight:s,offsetWidth:o}=t;return e&&([i,n]=kt(t)),{top:i,left:n,bottom:i+s,right:n+o}}var Pe={connected(){lo(this._uid,()=>this.$emit("scroll"))},disconnected(){co(this._uid)}};const Ae=new Map;let se;function lo(t,e){se=se||x(window,"scroll",()=>Ae.forEach(i=>i()),{passive:!0,capture:!0}),Ae.set(t,e)}function co(t){Ae.delete(t),se&&!Ae.size&&(se(),se=null)}var ho={extends:kn,mixins:[rt,Pe],name:"grid",props:{masonry:Boolean,parallax:Number},data:{margin:"uk-grid-margin",clsStack:"uk-grid-stack",masonry:!1,parallax:0},connected(){this.masonry&&b(this.$el,"uk-flex-top uk-flex-wrap-top")},update:[{write(t){let{columns:e}=t;X(this.$el,this.clsStack,e.length<2)},events:["resize"]},{read(t){let{columns:e,rows:i}=t;if(!e.length||!this.masonry&&!this.parallax||Cn(this.$el))return t.translates=!1,!1;let n=!1;const s=ct(this.$el),o=po(e),r=fo(s,this.margin)*(i.length-1),a=Math.max(...o)+r;this.masonry&&(e=e.map(h=>je(h,"offsetTop")),n=uo(i,e));let l=Math.abs(this.parallax);return l&&(l=o.reduce((h,u,f)=>Math.max(h,u+r+(f%2?l:l/8)-a),0)),{padding:l,columns:e,translates:n,height:n?a:""}},write(t){let{height:e,padding:i}=t;c(this.$el,"paddingBottom",i||""),e!==!1&&c(this.$el,"height",e)},events:["resize"]},{read(){return this.parallax&&Cn(this.$el)?!1:{scrolled:this.parallax?nn(this.$el)*Math.abs(this.parallax):!1}},write(t){let{columns:e,scrolled:i,translates:n}=t;i===!1&&!n||e.forEach((s,o)=>s.forEach((r,a)=>c(r,"transform",!i&&!n?"":"translateY("+((n&&-n[o][a])+(i?o%2?i:i/8:0))+"px)")))},events:["scroll","resize"]}]};function Cn(t){return ct(t).some(e=>c(e,"position")==="absolute")}function uo(t,e){const i=t.map(n=>Math.max(...n.map(s=>s.offsetHeight)));return e.map(n=>{let s=0;return n.map((o,r)=>s+=r?i[r-1]-n[r-1].offsetHeight:0)})}function fo(t,e){const[i]=t.filter(n=>$(n,e));return w(i?c(i,"marginTop"):c(t[0],"paddingLeft"))}function po(t){return t.map(e=>e.reduce((i,n)=>i+n.offsetHeight,0))}var go={mixins:[pt],args:"target",props:{target:String,row:Boolean},data:{target:"> *",row:!0},computed:{elements:{get(t,e){let{target:i}=t;return _(i,e)},watch(){this.$reset()}}},resizeTargets(){return[this.$el,...this.elements]},update:{read(){return{rows:(this.row?Tn(this.elements):[this.elements]).map(mo)}},write(t){let{rows:e}=t;for(const{heights:i,elements:n}of e)n.forEach((s,o)=>c(s,"minHeight",i[o]))},events:["resize"]}};function mo(t){if(t.length<2)return{heights:[""],elements:t};c(t,"minHeight","");let e=t.map(vo);const i=Math.max(...e);return{heights:t.map((n,s)=>e[s].toFixed(2)===i.toFixed(2)?"":i),elements:t}}function vo(t){let e=!1;D(t)||(e=t.style.display,c(t,"display","block","important"));const i=V(t).height-ee(t,"height","content-box");return e!==!1&&c(t,"display",e),i}var wo={mixins:[pt],props:{expand:Boolean,offsetTop:Boolean,offsetBottom:Boolean,minHeight:Number},data:{expand:!1,offsetTop:!1,offsetBottom:!1,minHeight:0},resizeTargets(){return[this.$el,...I(this.$el,/auto|scroll/)]},update:{read(t){let{minHeight:e}=t;if(!D(this.$el))return!1;let i="";const n=ee(this.$el,"height","content-box"),{body:s,scrollingElement:o}=document,[r]=I(this.$el,/auto|scroll/),{height:a}=Q(r===s?o:r);if(this.expand)i=Math.max(a-(V(r).height-V(this.$el).height)-n,0);else{const l=o===r||s===r;if(i="calc("+(l?"100vh":a+"px"),this.offsetTop)if(l){const h=kt(this.$el)[0]-kt(r)[0];i+=h>0&&h<a/2?" - "+h+"px":""}else i+=" - "+c(r,"paddingTop");this.offsetBottom===!0?i+=" - "+V(this.$el.nextElementSibling).height+"px":bt(this.offsetBottom)?i+=" - "+this.offsetBottom+"vh":this.offsetBottom&&Yt(this.offsetBottom,"px")?i+=" - "+w(this.offsetBottom)+"px":y(this.offsetBottom)&&(i+=" - "+V(ht(this.offsetBottom,this.$el)).height+"px"),i+=(n?" - "+n+"px":"")+")"}return{minHeight:i,prev:e}},write(t){let{minHeight:e}=t;c(this.$el,{minHeight:e}),this.minHeight&&w(c(this.$el,"minHeight"))<this.minHeight&&c(this.$el,"minHeight",this.minHeight)},events:["resize"]}},En={args:"src",props:{id:Boolean,icon:String,src:String,style:String,width:Number,height:Number,ratio:Number,class:String,strokeAnimation:Boolean,focusable:Boolean,attributes:"list"},data:{ratio:1,include:["style","class","focusable"],class:"",strokeAnimation:!1},beforeConnect(){this.class+=" uk-svg"},connected(){!this.icon&&d(this.src,"#")&&([this.src,this.icon]=this.src.split("#")),this.svg=this.getSvg().then(t=>{if(this._connected){const e=ko(t,this.$el);return this.svgEl&&e!==this.svgEl&&Nt(this.svgEl),this.applyAttributes(e,t),this.svgEl=e}},lt),this.strokeAnimation&&this.svg.then(t=>{this._connected&&(Pn(t),this.registerObserver(Rt(t,(e,i)=>{Pn(t),i.disconnect()})))})},disconnected(){this.svg.then(t=>{this._connected||(Ge(this.$el)&&(this.$el.hidden=!1),Nt(t),this.svgEl=null)}),this.svg=null},methods:{async getSvg(){return st(this.$el,"img")&&!this.$el.complete&&this.$el.loading==="lazy"?new Promise(t=>S(this.$el,"load",()=>t(this.getSvg()))):$o(await bo(this.src),this.icon)||Promise.reject("SVG not found.")},applyAttributes(t,e){for(const o in this.$options.props)d(this.include,o)&&o in this&&v(t,o,this[o]);for(const o in this.attributes){const[r,a]=this.attributes[o].split(":",2);v(t,r,a)}this.id||Jt(t,"id");const i=["width","height"];let n=i.map(o=>this[o]);n.some(o=>o)||(n=i.map(o=>v(e,o)));const s=v(e,"viewBox");s&&!n.some(o=>o)&&(n=s.split(" ").slice(2)),n.forEach((o,r)=>v(t,i[r],w(o)*this.ratio||null))}}};const bo=Y(async t=>t?q(t,"data:")?decodeURIComponent(t.split(",")[1]):(await fetch(t)).text():Promise.reject());function $o(t,e){var i;return e&&d(t,"<symbol")&&(t=yo(t,e)||t),t=m(t.substr(t.indexOf("<svg"))),((i=t)==null?void 0:i.hasChildNodes())&&t}const On=/<symbol([^]*?id=(['"])(.+?)\2[^]*?<\/)symbol>/g,Be={};function yo(t,e){if(!Be[t]){Be[t]={},On.lastIndex=0;let i;for(;i=On.exec(t);)Be[t][i[3]]='<svg xmlns="http://www.w3.org/2000/svg"'+i[1]+"svg>"}return Be[t][e]}function Pn(t){const e=xo(t);e&&t.style.setProperty("--uk-animation-stroke",e)}function xo(t){return Math.ceil(Math.max(0,..._("[stroke]",t).map(e=>{try{return e.getTotalLength()}catch{return 0}})))}function ko(t,e){if(Ge(e)||st(e,"canvas")){e.hidden=!0;const n=e.nextElementSibling;return An(t,n)?n:me(e,t)}const i=e.lastElementChild;return An(t,i)?i:ot(e,t)}function An(t,e){return st(t,"svg")&&st(e,"svg")&&Bn(t)===Bn(e)}function Bn(t){return(t.innerHTML||new XMLSerializer().serializeToString(t).replace(/<svg.*?>(.*?)<\/svg>/g,"$1")).replace(/\s/g,"")}var To='<svg width="14" height="14" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"><line fill="none" stroke="#000" stroke-width="1.1" x1="1" y1="1" x2="13" y2="13"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13" y1="1" x2="1" y2="13"/></svg>',So='<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><line fill="none" stroke="#000" stroke-width="1.4" x1="1" y1="1" x2="19" y2="19"/><line fill="none" stroke="#000" stroke-width="1.4" x1="19" y1="1" x2="1" y2="19"/></svg>',Co='<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect x="9" y="4" width="1" height="11"/><rect x="4" y="9" width="11" height="1"/></svg>',Eo='<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><polyline fill="none" stroke="#000" stroke-width="1.1" points="1 3.5 6 8.5 11 3.5"/></svg>',Oo='<svg width="14" height="14" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.1" points="1 4 7 10 13 4"/></svg>',Po='<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><polyline fill="none" stroke="#000" stroke-width="1.1" points="1 3.5 6 8.5 11 3.5"/></svg>',Ao=`<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><style>.uk-navbar-toggle-animate svg > [class*='line-'] {
|
|
2
|
+
transition: 0.2s ease-in-out;
|
|
3
|
+
transition-property: transform, opacity,;
|
|
4
|
+
transform-origin: center;
|
|
5
|
+
opacity: 1;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.uk-navbar-toggle svg > .line-3 { opacity: 0; }
|
|
9
|
+
.uk-navbar-toggle-animate[aria-expanded="true"] svg > .line-3 { opacity: 1; }
|
|
10
|
+
|
|
11
|
+
.uk-navbar-toggle-animate[aria-expanded="true"] svg > .line-2 { transform: rotate(45deg); }
|
|
12
|
+
.uk-navbar-toggle-animate[aria-expanded="true"] svg > .line-3 { transform: rotate(-45deg); }
|
|
13
|
+
|
|
14
|
+
.uk-navbar-toggle-animate[aria-expanded="true"] svg > .line-1,
|
|
15
|
+
.uk-navbar-toggle-animate[aria-expanded="true"] svg > .line-4 { opacity: 0; }
|
|
16
|
+
.uk-navbar-toggle-animate[aria-expanded="true"] svg > .line-1 { transform: translateY(6px) scaleX(0); }
|
|
17
|
+
.uk-navbar-toggle-animate[aria-expanded="true"] svg > .line-4 { transform: translateY(-6px) scaleX(0); }</style><rect class="line-1" y="3" width="20" height="2"/><rect class="line-2" y="9" width="20" height="2"/><rect class="line-3" y="9" width="20" height="2"/><rect class="line-4" y="15" width="20" height="2"/></svg>`,Bo='<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><rect x="19" y="0" width="1" height="40"/><rect x="0" y="19" width="40" height="1"/></svg>',_o='<svg width="7" height="12" viewBox="0 0 7 12" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.2" points="1 1 6 6 1 11"/></svg>',Mo='<svg width="7" height="12" viewBox="0 0 7 12" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.2" points="6 1 1 6 6 11"/></svg>',No='<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',Do='<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><circle fill="none" stroke="#000" stroke-width="1.8" cx="17.5" cy="17.5" r="16.5"/><line fill="none" stroke="#000" stroke-width="1.8" x1="38" y1="39" x2="29" y2="30"/></svg>',zo='<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10.5" cy="10.5" r="9.5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="23" y1="23" x2="17" y2="17"/></svg>',Ho='<svg width="14" height="24" viewBox="0 0 14 24" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.4" points="1.225,23 12.775,12 1.225,1 "/></svg>',Lo='<svg width="25" height="40" viewBox="0 0 25 40" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="2" points="4.002,38.547 22.527,20.024 4,1.5 "/></svg>',Fo='<svg width="14" height="24" viewBox="0 0 14 24" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.4" points="12.775,1 1.225,12 12.775,23 "/></svg>',Ro='<svg width="25" height="40" viewBox="0 0 25 40" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="2" points="20.527,1.5 2,20.024 20.525,38.547 "/></svg>',Io='<svg width="30" height="30" viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"><circle fill="none" stroke="#000" cx="15" cy="15" r="14"/></svg>',Wo='<svg width="18" height="10" viewBox="0 0 18 10" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.2" points="1 9 9 1 17 9 "/></svg>';const _e={spinner:Io,totop:Wo,marker:Co,"close-icon":To,"close-large":So,"nav-parent-icon":Eo,"nav-parent-icon-large":Oo,"navbar-parent-icon":Po,"navbar-toggle-icon":Ao,"overlay-icon":Bo,"pagination-next":_o,"pagination-previous":Mo,"search-icon":No,"search-large":Do,"search-navbar":zo,"slidenav-next":Ho,"slidenav-next-large":Lo,"slidenav-previous":Fo,"slidenav-previous-large":Ro},xi={install:Vo,extends:En,args:"icon",props:["icon"],data:{include:["focusable"]},isIcon:!0,beforeConnect(){b(this.$el,"uk-icon")},methods:{async getSvg(){const t=Go(this.icon);if(!t)throw"Icon not found.";return t}}},U={args:!1,extends:xi,data:t=>({icon:vt(t.constructor.options.name)}),beforeConnect(){b(this.$el,this.$name)}},jo={extends:U,beforeConnect(){const t=this.$props.icon;this.icon=K(this.$el,".uk-nav-primary")?t+"-large":t}},_n={extends:U,beforeConnect(){b(this.$el,"uk-slidenav");const t=this.$props.icon;this.icon=$(this.$el,"uk-slidenav-large")?t+"-large":t}},qo={extends:U,beforeConnect(){this.icon=$(this.$el,"uk-search-icon")&&_t(this.$el,".uk-search-large").length?"search-large":_t(this.$el,".uk-search-navbar").length?"search-navbar":this.$props.icon}},Yo={extends:U,beforeConnect(){this.icon="close-"+($(this.$el,"uk-close-large")?"large":"icon")}},Xo={extends:U,methods:{async getSvg(){const t=await xi.methods.getSvg.call(this);return this.ratio!==1&&c(m("circle",t),"strokeWidth",1/this.ratio),t}}},Me={};function Vo(t){t.icon.add=(e,i)=>{const n=y(e)?{[e]:i}:e;yt(n,(s,o)=>{_e[o]=s,delete Me[o]}),t._initialized&&ut(document.body,s=>yt(t.getComponents(s),o=>{o.$options.isIcon&&o.icon in n&&o.$reset()}))}}function Go(t){return _e[t]?(Me[t]||(Me[t]=m((_e[Jo(t)]||_e[t]).trim())),Me[t].cloneNode(!0)):null}function Jo(t){return ie?We(We(t,"left","right"),"previous","next"):t}const Ko=Tt&&"loading"in HTMLImageElement.prototype;var Zo={args:"dataSrc",props:{dataSrc:String,sources:String,offsetTop:String,offsetLeft:String,target:String,loading:String},data:{dataSrc:"",sources:!1,offsetTop:"50vh",offsetLeft:"50vw",target:!1,loading:"lazy"},connected(){if(this.loading!=="lazy"){this.load();return}const t=[this.$el,...Zt(this.$props.target,this.$el)];Ko&&Ne(this.$el)&&(this.$el.loading="lazy",ki(this.$el),t.length===1)||(ir(this.$el),this.registerObserver(Rt(t,(e,i)=>{this.load(),i.disconnect()},{rootMargin:Z(this.offsetTop,"height")+"px "+Z(this.offsetLeft,"width")+"px"})))},disconnected(){this._data.image&&(this._data.image.onload="")},methods:{load(){if(this._data.image)return this._data.image;const t=Ne(this.$el)?this.$el:Uo(this.$el,this.dataSrc,this.sources);return Jt(t,"loading"),ki(this.$el,t.currentSrc),this._data.image=t}}};function ki(t,e){if(Ne(t)){const i=E(t);(nr(i)?ct(i):[t]).forEach(s=>Mn(s,s))}else e&&!d(t.style.backgroundImage,e)&&(c(t,"backgroundImage","url("+Qe(e)+")"),k(t,de("load",!1)))}const Qo=["data-src","data-srcset","sizes"];function Mn(t,e){Qo.forEach(i=>{const n=Bt(t,i);n&&v(e,i.replace(/^(data-)+/,""),n)})}function Uo(t,e,i){const n=new Image;return tr(n,i),Mn(t,n),n.onload=()=>{ki(t,n.currentSrc)},v(n,"src",e),n}function tr(t,e){if(e=er(e),e.length){const i=Dt("<picture>");for(const n of e){const s=Dt("<source>");v(s,n),ot(i,s)}ot(i,t)}}function er(t){if(!t)return[];if(q(t,"["))try{t=JSON.parse(t)}catch{t=[]}else t=di(t);return F(t)||(t=[t]),t.filter(e=>!Fe(e))}function ir(t){Ne(t)&&!At(t,"src")&&v(t,"src",'data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"></svg>')}function nr(t){return st(t,"picture")}function Ne(t){return st(t,"img")}var Ti={props:{media:Boolean},data:{media:!1},connected(){const t=sr(this.media,this.$el);if(this.matchMedia=!0,t){this.mediaObj=window.matchMedia(t);const e=()=>{this.matchMedia=this.mediaObj.matches,k(this.$el,de("mediachange",!1,!0,[this.mediaObj]))};this.offMediaObj=x(this.mediaObj,"change",()=>{e(),this.$emit("resize")}),e()}},disconnected(){var t;(t=this.offMediaObj)==null||t.call(this)}};function sr(t,e){if(y(t)){if(q(t,"@"))t=w(c(e,"--uk-breakpoint-"+t.substr(1)));else if(isNaN(t))return t}return t&&bt(t)?"(min-width: "+t+"px)":""}var or={mixins:[rt,Ti,pt],props:{fill:String},data:{fill:"",clsWrapper:"uk-leader-fill",clsHide:"uk-leader-hide",attrFill:"data-fill"},computed:{fill(t){let{fill:e}=t;return e||c(this.$el,"--uk-leader-fill-content")}},connected(){[this.wrapper]=li(this.$el,'<span class="'+this.clsWrapper+'">')},disconnected(){we(this.wrapper.childNodes)},update:{read(){return{width:Math.trunc(this.$el.offsetWidth/2),fill:this.fill,hide:!this.matchMedia}},write(t){let{width:e,fill:i,hide:n}=t;X(this.wrapper,this.clsHide,n),v(this.wrapper,this.attrFill,new Array(e).join(i))},events:["resize"]}},rr={install:ar,mixins:[wn],data:{clsPage:"uk-modal-page",selPanel:".uk-modal-dialog",selClose:".uk-modal-close, .uk-modal-close-default, .uk-modal-close-outside, .uk-modal-close-full"},events:[{name:"show",self:!0,handler(){$(this.panel,"uk-margin-auto-vertical")?b(this.$el,"uk-flex"):c(this.$el,"display","block"),et(this.$el)}},{name:"hidden",self:!0,handler(){c(this.$el,"display",""),z(this.$el,"uk-flex")}}]};function ar(t){let{modal:e}=t;e.dialog=function(n,s){const o=e('<div class="uk-modal"> <div class="uk-modal-dialog">'+n+"</div> </div>",s);return o.show(),x(o.$el,"hidden",async()=>{await Promise.resolve(),o.$destroy(!0)},{self:!0}),o},e.alert=function(n,s){return i(o=>{let{labels:r}=o;return'<div class="uk-modal-body">'+(y(n)?n:ge(n))+'</div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-primary uk-modal-close" autofocus>'+r.ok+"</button> </div>"},s,o=>o.resolve())},e.confirm=function(n,s){return i(o=>{let{labels:r}=o;return'<form> <div class="uk-modal-body">'+(y(n)?n:ge(n))+'</div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-default uk-modal-close" type="button">'+r.cancel+'</button> <button class="uk-button uk-button-primary" autofocus>'+r.ok+"</button> </div> </form>"},s,o=>o.reject())},e.prompt=function(n,s,o){return i(r=>{let{labels:a}=r;return'<form class="uk-form-stacked"> <div class="uk-modal-body"> <label>'+(y(n)?n:ge(n))+'</label> <input class="uk-input" value="'+(s||"")+'" autofocus> </div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-default uk-modal-close" type="button">'+a.cancel+'</button> <button class="uk-button uk-button-primary">'+a.ok+"</button> </div> </form>"},o,r=>r.resolve(null),r=>m("input",r.$el).value)},e.labels={ok:"Ok",cancel:"Cancel"};function i(n,s,o,r){s={bgClose:!1,escClose:!0,labels:e.labels,...s};const a=e.dialog(n(s),s),l=new Pi;let h=!1;return x(a.$el,"submit","form",u=>{u.preventDefault(),l.resolve(r==null?void 0:r(a)),h=!0,a.hide()}),x(a.$el,"hide",()=>!h&&o(l)),l.promise.dialog=a,l.promise}}var lr={extends:gn,data:{targets:"> .uk-parent",toggle:"> a",content:"> ul"}},cr={mixins:[rt,$i],props:{dropdown:String,mode:"list",align:String,offset:Number,boundary:Boolean,target:Boolean,targetX:Boolean,targetY:Boolean,clsDrop:String,delayShow:Number,delayHide:Number,dropbar:Boolean,dropbarAnchor:Boolean,duration:Number},data:{dropdown:".uk-navbar-nav > li > a, .uk-navbar-item, .uk-navbar-toggle",align:ie?"right":"left",clsDrop:"uk-navbar-dropdown",mode:void 0,offset:void 0,delayShow:void 0,delayHide:void 0,flip:!1,shift:!0,boundary:!0,target:!1,targetX:!1,targetY:!1,dropbar:!1,dropbarAnchor:!1,duration:200,container:!1},computed:{boundary(t,e){let{boundary:i}=t;return i===!0?e:i},dropbarAnchor(t,e){let{dropbarAnchor:i}=t;return ht(i,e)||e},pos(t){let{align:e}=t;return"bottom-"+e},dropbar:{get(t){let{dropbar:e}=t;return e?(e=this._dropbar||ht(e,this.$el)||m("+ .uk-navbar-dropbar",this.$el),e||(this._dropbar=m("<div></div>"))):null},watch(t){b(t,"uk-dropbar","uk-dropbar-top","uk-navbar-dropbar")},immediate:!0},dropContainer(t,e){return this.container||e},dropdowns:{get(t,e){let{clsDrop:i}=t;const n=_("."+i,e);if(this.dropContainer!==e)for(const o of _("."+i,this.dropContainer)){var s;const r=(s=this.getDropdown(o))==null?void 0:s.targetEl;!d(n,o)&&r&&C(r,this.$el)&&n.push(o)}return n},watch(t){this.$create("drop",t.filter(e=>!this.getDropdown(e)),{...this.$props,boundary:this.boundary,pos:this.pos})},immediate:!0},toggles:{get(t,e){let{dropdown:i}=t;return _(i,e)},watch(){const t=$(this.$el,"uk-navbar-justify");for(const e of _(".uk-navbar-nav, .uk-navbar-left, .uk-navbar-right",this.$el))c(e,"flexGrow",t?_(this.dropdown,e).length:"")},immediate:!0}},disconnected(){this.dropbar&&Nt(this.dropbar),delete this._dropbar},events:[{name:"mouseover focusin",delegate(){return this.dropdown},handler(t){let{current:e}=t;const i=this.getActive();i&&d(i.mode,"hover")&&i.targetEl&&!C(i.targetEl,e)&&!i.isDelaying&&i.hide(!1)}},{name:"keydown",delegate(){return this.dropdown},handler(t){const{current:e,keyCode:i}=t,n=this.getActive();i===St.DOWN&&At(e,"aria-expanded")&&(t.preventDefault(),!n||n.targetEl!==e?(e.click(),S(this.dropContainer,"show",s=>{let{target:o}=s;return Dn(o)})):Dn(n.$el)),Nn(t,this.toggles,n)}},{name:"keydown",el(){return this.dropContainer},delegate(){return"."+this.clsDrop},handler(t){const{current:e,keyCode:i}=t;if(!d(this.dropdowns,e))return;const n=this.getActive(),s=_(fe,e),o=ae(s,a=>B(a,":focus"));if(i===St.UP&&(t.preventDefault(),o>0&&s[o-1].focus()),i===St.DOWN&&(t.preventDefault(),o<s.length-1&&s[o+1].focus()),i===St.ESC){var r;n==null||(r=n.targetEl)==null||r.focus()}Nn(t,this.toggles,n)}},{name:"mouseleave",el(){return this.dropbar},filter(){return this.dropbar},handler(){const t=this.getActive();t&&d(t.mode,"hover")&&!this.dropdowns.some(e=>B(e,":hover"))&&t.hide()}},{name:"beforeshow",el(){return this.dropContainer},filter(){return this.dropbar},handler(t){let{target:e}=t;!this.isDropbarDrop(e)||(this.dropbar.previousElementSibling!==this.dropbarAnchor&&me(this.dropbarAnchor,this.dropbar),b(e,this.clsDrop+"-dropbar"))}},{name:"show",el(){return this.dropContainer},filter(){return this.dropbar},handler(t){let{target:e}=t;!this.isDropbarDrop(e)||(this._observer=xe(e,()=>{const i=_t(e,"."+this.clsDrop).concat(e).map(r=>T(r)),n=Math.min(...i.map(r=>{let{top:a}=r;return a})),s=Math.max(...i.map(r=>{let{bottom:a}=r;return a})),o=T(this.dropbar);c(this.dropbar,"top",this.dropbar.offsetTop-(o.top-n)),this.transitionTo(s-n+w(c(e,"marginBottom")),e)}))}},{name:"beforehide",el(){return this.dropContainer},filter(){return this.dropbar},handler(t){const e=this.getActive();B(this.dropbar,":hover")&&(e==null?void 0:e.$el)===t.target&&!this.toggles.some(i=>e.targetEl!==i&&B(i,":focus"))&&t.preventDefault()}},{name:"hide",el(){return this.dropContainer},filter(){return this.dropbar},handler(t){let{target:e}=t;if(!this.isDropbarDrop(e))return;this._observer.disconnect();const i=this.getActive();(!i||(i==null?void 0:i.$el)===e)&&this.transitionTo(0)}}],methods:{getActive(){return d(this.dropdowns,A==null?void 0:A.$el)&&A},transitionTo(t,e){const{dropbar:i}=this,n=et(i);e=n<t&&e,c(e,"clipPath","polygon(0 0,100% 0,100% "+n+"px,0 "+n+"px)"),et(i,n),nt.cancel([e,i]),Promise.all([nt.start(i,{height:t},this.duration),nt.start(e,{clipPath:"polygon(0 0,100% 0,100% "+t+"px,0 "+t+"px)"},this.duration)]).catch(lt).then(()=>c(e,{clipPath:""}))},getDropdown(t){return this.$getComponent(t,"drop")||this.$getComponent(t,"dropdown")},isDropbarDrop(t){return this.getDropdown(t)&&$(t,this.clsDrop)}}};function Nn(t,e,i){const{current:n,keyCode:s}=t,o=(i==null?void 0:i.targetEl)||n,r=e.indexOf(o);s===St.LEFT&&r>0&&(i==null||i.hide(!1),e[r-1].focus()),s===St.RIGHT&&r<e.length-1&&(i==null||i.hide(!1),e[r+1].focus()),s===St.TAB&&(o.focus(),i==null||i.hide(!1))}function Dn(t){if(!m(":focus",t)){var e;(e=m(fe,t))==null||e.focus()}}const St={TAB:9,ESC:27,LEFT:37,UP:38,RIGHT:39,DOWN:40};var zn={props:{swiping:Boolean},data:{swiping:!0},computed:{swipeTarget(t,e){return e}},connected(){!this.swiping||Ce(this,{el:this.swipeTarget,name:Lt,passive:!0,handler(t){if(!Mt(t))return;const e=pe(t),i="tagName"in t.target?t.target:E(t.target);S(document,Ft+" "+ye+" scroll",n=>{const{x:s,y:o}=pe(n);(n.type!=="scroll"&&i&&s&&Math.abs(e.x-s)>100||o&&Math.abs(e.y-o)>100)&&setTimeout(()=>{k(i,"swipe"),k(i,"swipe"+hr(e.x,e.y,s,o))})})}})}};function hr(t,e,i,n){return Math.abs(t-i)>=Math.abs(e-n)?t-i>0?"Left":"Right":e-n>0?"Up":"Down"}var ur={mixins:[wn,zn],args:"mode",props:{mode:String,flip:Boolean,overlay:Boolean},data:{mode:"slide",flip:!1,overlay:!1,clsPage:"uk-offcanvas-page",clsContainer:"uk-offcanvas-container",selPanel:".uk-offcanvas-bar",clsFlip:"uk-offcanvas-flip",clsContainerAnimation:"uk-offcanvas-container-animation",clsSidebarAnimation:"uk-offcanvas-bar-animation",clsMode:"uk-offcanvas",clsOverlay:"uk-offcanvas-overlay",selClose:".uk-offcanvas-close",container:!1},computed:{clsFlip(t){let{flip:e,clsFlip:i}=t;return e?i:""},clsOverlay(t){let{overlay:e,clsOverlay:i}=t;return e?i:""},clsMode(t){let{mode:e,clsMode:i}=t;return i+"-"+e},clsSidebarAnimation(t){let{mode:e,clsSidebarAnimation:i}=t;return e==="none"||e==="reveal"?"":i},clsContainerAnimation(t){let{mode:e,clsContainerAnimation:i}=t;return e!=="push"&&e!=="reveal"?"":i},transitionElement(t){let{mode:e}=t;return e==="reveal"?E(this.panel):this.panel}},update:{read(){this.isToggled()&&!D(this.$el)&&this.hide()},events:["resize"]},events:[{name:"click",delegate(){return'a[href^="#"]'},handler(t){let{current:{hash:e},defaultPrevented:i}=t;!i&&e&&m(e,document.body)&&this.hide()}},{name:"touchmove",self:!0,passive:!1,filter(){return this.overlay},handler(t){t.cancelable&&t.preventDefault()}},{name:"show",self:!0,handler(){this.mode==="reveal"&&!$(E(this.panel),this.clsMode)&&(ai(this.panel,"<div>"),b(E(this.panel),this.clsMode));const{body:t,scrollingElement:e}=document;b(t,this.clsContainer,this.clsFlip),c(t,"touch-action","pan-y pinch-zoom"),c(this.$el,"display","block"),c(this.panel,"maxWidth",e.clientWidth),b(this.$el,this.clsOverlay),b(this.panel,this.clsSidebarAnimation,this.mode==="reveal"?"":this.clsMode),et(t),b(t,this.clsContainerAnimation),this.clsContainerAnimation&&fr()}},{name:"hide",self:!0,handler(){z(document.body,this.clsContainerAnimation),c(document.body,"touch-action","")}},{name:"hidden",self:!0,handler(){this.clsContainerAnimation&&dr(),this.mode==="reveal"&&we(this.panel),z(this.panel,this.clsSidebarAnimation,this.clsMode),z(this.$el,this.clsOverlay),c(this.$el,"display",""),c(this.panel,"maxWidth",""),z(document.body,this.clsContainer,this.clsFlip)}},{name:"swipeLeft swipeRight",handler(t){this.isToggled()&&Yt(t.type,"Left")^this.flip&&this.hide()}}]};function fr(){Hn().content+=",user-scalable=0"}function dr(){const t=Hn();t.content=t.content.replace(/,user-scalable=0$/,"")}function Hn(){return m('meta[name="viewport"]',document.head)||ot(document.head,'<meta name="viewport">')}var pr={mixins:[rt,pt],props:{selContainer:String,selContent:String,minHeight:Number},data:{selContainer:".uk-modal",selContent:".uk-modal-dialog",minHeight:150},computed:{container(t,e){let{selContainer:i}=t;return K(e,i)},content(t,e){let{selContent:i}=t;return K(e,i)}},resizeTargets(){return[this.container,this.content]},update:{read(){return!this.content||!this.container||!D(this.$el)?!1:{max:Math.max(this.minHeight,et(this.container)-(V(this.content).height-et(this.$el)))}},write(t){let{max:e}=t;c(this.$el,{minHeight:this.minHeight,maxHeight:e})},events:["resize"]}},gr={mixins:[pt],props:["width","height"],resizeTargets(){return[this.$el,E(this.$el)]},connected(){b(this.$el,"uk-responsive-width")},update:{read(){return D(this.$el)&&this.width&&this.height?{width:te(E(this.$el)),height:this.height}:!1},write(t){et(this.$el,Ve.contain({height:this.height,width:this.width},t).height)},events:["resize"]}},mr={props:{offset:Number},data:{offset:0},connected(){vr(this)},disconnected(){wr(this)},methods:{async scrollTo(t){t=t&&m(t)||document.body,k(this.$el,"beforescroll",[this,t])&&(await vi(t,{offset:this.offset}),k(this.$el,"scrolled",[this,t]))}}};const oe=new Set;function vr(t){oe.size||x(document,"click",Ln),oe.add(t)}function wr(t){oe.delete(t),oe.length||Ue(document,"click",Ln)}function Ln(t){if(!t.defaultPrevented)for(const e of oe)C(t.target,e.$el)&&(t.preventDefault(),e.scrollTo(Fn(e.$el)))}function Fn(t){return document.getElementById(decodeURIComponent(t.hash).substring(1))}var br={mixins:[Pe],args:"cls",props:{cls:String,target:String,hidden:Boolean,offsetTop:Number,offsetLeft:Number,repeat:Boolean,delay:Number},data:()=>({cls:"",target:!1,hidden:!0,offsetTop:0,offsetLeft:0,repeat:!1,delay:0,inViewClass:"uk-scrollspy-inview"}),computed:{elements:{get(t,e){let{target:i}=t;return i?_(i,e):[e]},watch(t,e){this.hidden&&c(Kt(t,":not(."+this.inViewClass+")"),"visibility","hidden"),Ie(t,e)||this.$reset()},immediate:!0}},connected(){this._data.elements=new Map,this.registerObserver(Rt(this.elements,t=>{const e=this._data.elements;for(const{target:i,isIntersecting:n}of t){e.has(i)||e.set(i,{cls:Bt(i,"uk-scrollspy-class")||this.cls});const s=e.get(i);!this.repeat&&s.show||(s.show=n)}this.$emit()},{rootMargin:Z(this.offsetTop,"height")-1+"px "+(Z(this.offsetLeft,"width")-1)+"px"},!1))},disconnected(){for(const[t,e]of this._data.elements.entries())z(t,this.inViewClass,(e==null?void 0:e.cls)||"")},update:[{write(t){for(const[e,i]of t.elements.entries())i.show&&!i.inview&&!i.queued?(i.queued=!0,t.promise=(t.promise||Promise.resolve()).then(()=>new Promise(n=>setTimeout(n,this.delay))).then(()=>{this.toggle(e,!0),setTimeout(()=>{i.queued=!1,this.$emit()},300)})):!i.show&&i.inview&&!i.queued&&this.repeat&&this.toggle(e,!1)}}],methods:{toggle(t,e){const i=this._data.elements.get(t);if(!!i){if(i.off==null||i.off(),c(t,"visibility",!e&&this.hidden?"hidden":""),X(t,this.inViewClass,e),X(t,i.cls),/\buk-animation-/.test(i.cls)){const n=()=>ni(t,"uk-animation-[\\w-]+");e?i.off=S(t,"animationcancel animationend",n):n()}k(t,e?"inview":"outview"),i.inview=e,this.$update(t)}}}},$r={mixins:[Pe],props:{cls:String,closest:String,scroll:Boolean,overflow:Boolean,offset:Number},data:{cls:"uk-active",closest:!1,scroll:!1,overflow:!0,offset:0},computed:{links:{get(t,e){return _('a[href^="#"]',e).filter(i=>i.hash)},watch(t){this.scroll&&this.$create("scroll",t,{offset:this.offset||0})},immediate:!0},elements(t){let{closest:e}=t;return K(this.links,e||"*")}},update:[{read(){const t=this.links.map(Fn).filter(Boolean),{length:e}=t;if(!e||!D(this.$el))return!1;const[i]=I(t,/auto|scroll/,!0),{scrollTop:n,scrollHeight:s}=i,o=Q(i),r=s-o.height;let a=!1;if(n===r)a=e-1;else{for(let l=0;l<t.length&&!(T(t[l]).top-o.top-this.offset>0);l++)a=+l;a===!1&&this.overflow&&(a=0)}return{active:a}},write(t){let{active:e}=t;const i=e!==!1&&!$(this.elements[e],this.cls);this.links.forEach(n=>n.blur());for(let n=0;n<this.elements.length;n++)X(this.elements[n],this.cls,+n===e);i&&k(this.$el,"active",[e,this.elements[e]])},events:["scroll","resize"]}]},yr={mixins:[rt,Ti,pt,Pe],props:{position:String,top:null,bottom:null,start:null,end:null,offset:String,overflowFlip:Boolean,animation:String,clsActive:String,clsInactive:String,clsFixed:String,clsBelow:String,selTarget:String,showOnUp:Boolean,targetOffset:Number},data:{position:"top",top:!1,bottom:!1,start:!1,end:!1,offset:0,overflowFlip:!1,animation:"",clsActive:"uk-active",clsInactive:"",clsFixed:"uk-sticky-fixed",clsBelow:"uk-sticky-below",selTarget:"",showOnUp:!1,targetOffset:!1},computed:{selTarget(t,e){let{selTarget:i}=t;return i&&m(i,e)||e}},resizeTargets(){return document.documentElement},connected(){this.start=In(this.start||this.top),this.end=In(this.end||this.bottom),this.placeholder=m("+ .uk-sticky-placeholder",this.$el)||m('<div class="uk-sticky-placeholder"></div>'),this.isFixed=!1,this.setActive(!1)},disconnected(){this.isFixed&&(this.hide(),z(this.selTarget,this.clsInactive)),Nt(this.placeholder),this.placeholder=null},events:[{name:"resize",el(){return window},handler(){this.$emit("resize")}},{name:"load hashchange popstate",el(){return window},filter(){return this.targetOffset!==!1},handler(){const{scrollingElement:t}=document;!location.hash||t.scrollTop===0||setTimeout(()=>{const e=T(m(location.hash)),i=T(this.$el);this.isFixed&&qe(e,i)&&(t.scrollTop=e.top-i.height-Z(this.targetOffset,"height",this.placeholder)-Z(this.offset,"height",this.placeholder))})}}],update:[{read(t,e){let{height:i,margin:n}=t;if(this.inactive=!this.matchMedia||!D(this.$el),this.inactive)return!1;const s=this.active&&e.has("resize");s&&(c(this.selTarget,"transition","0s"),this.hide()),this.active||(i=T(this.$el).height,n=c(this.$el,"margin")),s&&(this.show(),requestAnimationFrame(()=>c(this.selTarget,"transition","")));const o=this.isFixed?this.placeholder:this.$el,r=et(window);let a=this.position;this.overflowFlip&&i>r&&(a=a==="top"?"bottom":"top");let l=Z(this.offset,"height",o);a==="bottom"&&(i<r||this.overflowFlip)&&(l+=r-i);const h=this.overflowFlip?0:Math.max(0,i+l-r),u=T(o).top,f=(this.start===!1?u:Rn(this.start,this.$el,u))-l,g=this.end===!1?document.scrollingElement.scrollHeight-r:Rn(this.end,this.$el,u+i,!0)-T(this.$el).height+h-l;return{start:f,end:g,offset:l,overflow:h,topOffset:u,height:i,margin:n,width:V(o).width,top:kt(o)[0]}},write(t){let{height:e,margin:i}=t;const{placeholder:n}=this;c(n,{height:e,margin:i}),C(n,document)||(me(this.$el,n),n.hidden=!0)},events:["resize"]},{read(t){let{scroll:e=0,dir:i="down",overflow:n,overflowScroll:s=0,start:o,end:r}=t;const a=document.scrollingElement.scrollTop;return{dir:e<=a?"down":"up",prevDir:i,scroll:a,prevScroll:e,offsetParentTop:T((this.isFixed?this.placeholder:this.$el).offsetParent).top,overflowScroll:at(s+at(a,o,r)-at(e,o,r),0,n)}},write(t,e){const i=e.has("scroll"),{initTimestamp:n=0,dir:s,prevDir:o,scroll:r,prevScroll:a=0,top:l,start:h,topOffset:u,height:f}=t;if(r<0||r===a&&i||this.showOnUp&&!i&&!this.isFixed)return;const g=Date.now();if((g-n>300||s!==o)&&(t.initScroll=r,t.initTimestamp=g),!(this.showOnUp&&!this.isFixed&&Math.abs(t.initScroll-r)<=30&&Math.abs(a-r)<=10))if(this.inactive||r<h||this.showOnUp&&(r<=h||s==="down"&&i||s==="up"&&!this.isFixed&&r<=u+f)){if(!this.isFixed){tt.inProgress(this.$el)&&l>r&&(tt.cancel(this.$el),this.hide());return}this.isFixed=!1,this.animation&&r>u?(tt.cancel(this.$el),tt.out(this.$el,this.animation).then(()=>this.hide(),lt)):this.hide()}else this.isFixed?this.update():this.animation&&r>u?(tt.cancel(this.$el),this.show(),tt.in(this.$el,this.animation).catch(lt)):this.show()},events:["resize","scroll"]}],methods:{show(){this.isFixed=!0,this.update(),this.placeholder.hidden=!1},hide(){this.setActive(!1),z(this.$el,this.clsFixed,this.clsBelow),c(this.$el,{position:"",top:"",width:""}),this.placeholder.hidden=!0},update(){let{width:t,scroll:e=0,overflow:i,overflowScroll:n=0,start:s,end:o,offset:r,topOffset:a,height:l,offsetParentTop:h}=this._data;const u=s!==0||e>s;let f="fixed";e>o&&(r+=o-h,f="absolute"),i&&(r-=n),c(this.$el,{position:f,top:r+"px",width:t}),this.setActive(u),X(this.$el,this.clsBelow,e>a+l),b(this.$el,this.clsFixed)},setActive(t){const e=this.active;this.active=t,t?(si(this.selTarget,this.clsInactive,this.clsActive),e!==t&&k(this.$el,"active")):(si(this.selTarget,this.clsActive,this.clsInactive),e!==t&&k(this.$el,"inactive"))}}};function Rn(t,e,i,n){if(!t)return 0;if(bt(t)||y(t)&&t.match(/^-?\d/))return i+Z(t,"height",e,!0);{const s=t===!0?E(e):ht(t,e);return T(s).bottom-(n&&s&&C(e,s)?w(c(s,"paddingBottom")):0)}}function In(t){return t==="true"?!0:t==="false"?!1:t}var Wn={mixins:[Ee,zn,Wt],args:"connect",props:{connect:String,toggle:String,itemNav:String,active:Number},data:{connect:"~.uk-switcher",toggle:"> * > :first-child",itemNav:!1,active:0,cls:"uk-active",attrItem:"uk-switcher-item"},computed:{connects:{get(t,e){let{connect:i}=t;return Zt(i,e)},watch(t){this.swiping&&c(t,"touchAction","pan-y pinch-zoom");const e=this.index();this.connects.forEach(i=>ct(i).forEach((n,s)=>X(n,this.cls,s===e)))},immediate:!0},toggles:{get(t,e){let{toggle:i}=t;return _(i,e).filter(n=>!B(n,".uk-disabled *, .uk-disabled, [disabled]"))},watch(t){const e=this.index();this.show(~e?e:t[this.active]||t[0])},immediate:!0},children(){return ct(this.$el).filter(t=>this.toggles.some(e=>C(e,t)))},swipeTarget(){return this.connects}},connected(){this.lazyload(this.$el,this.connects),ri(()=>this.$emit())},events:[{name:"click",delegate(){return this.toggle},handler(t){t.preventDefault(),this.show(t.current)}},{name:"click",el(){return this.connects.concat(this.itemNav?Zt(this.itemNav,this.$el):[])},delegate(){return"["+this.attrItem+"],[data-"+this.attrItem+"]"},handler(t){t.preventDefault(),this.show(Bt(t.current,this.attrItem))}},{name:"swipeRight swipeLeft",filter(){return this.swiping},el(){return this.connects},handler(t){let{type:e}=t;this.show(Yt(e,"Left")?"next":"previous")}}],methods:{index(){return ae(this.children,t=>$(t,this.cls))},show(t){const e=this.index(),i=he(t,this.toggles,e),n=he(this.children[i],ct(this.$el));ct(this.$el).forEach((o,r)=>{X(o,this.cls,n===r),v(this.toggles[r],"aria-expanded",n===r)});const s=e>=0&&e!==i;this.connects.forEach(async o=>{let{children:r}=o;await this.toggleElement(p(r).filter(a=>$(a,this.cls)),!1,s),await this.toggleElement(r[n],!0,s)})}}},xr={mixins:[rt],extends:Wn,props:{media:Boolean},data:{media:960,attrItem:"uk-tab-item"},connected(){const t=$(this.$el,"uk-tab-left")?"uk-tab-left":$(this.$el,"uk-tab-right")?"uk-tab-right":!1;t&&this.$create("toggle",this.$el,{cls:t,mode:"media",media:this.media})}};const kr=32;var Tr={mixins:[Ee,Ti,Wt],args:"target",props:{href:String,target:null,mode:"list",queued:Boolean},data:{href:!1,target:!1,mode:"click",queued:!0},computed:{target:{get(t,e){let{href:i,target:n}=t;return n=Zt(n||i,e),n.length&&n||[e]},watch(){this.updateAria()},immediate:!0}},connected(){!d(this.mode,"media")&&!Je(this.$el)&&v(this.$el,"tabindex","0"),this.lazyload(this.$el,this.target),ri(()=>this.$emit())},events:[{name:Lt,filter(){return d(this.mode,"hover")},handler(t){this._preventClick=null,!(!Mt(t)||this._showState)&&(k(this.$el,"focus"),S(document,Lt,()=>k(this.$el,"blur"),!0,e=>!C(e.target,this.$el)),d(this.mode,"click")&&(this._preventClick=!0))}},{name:be+" "+$e+" focus blur",filter(){return d(this.mode,"hover")},handler(t){if(Mt(t))return;const e=d([be,"focus"],t.type),i=v(this.$el,"aria-expanded");if(!(!e&&(t.type===$e&&B(this.$el,":focus")||t.type==="blur"&&B(this.$el,":hover")))){if(this._showState&&e&&i!==this._showState){e||(this._showState=null);return}this._showState=e?i:null,this.toggle("toggle"+(e?"show":"hide"))}}},{name:"keydown",filter(){return d(this.mode,"click")&&!st(this.$el,"input")},handler(t){t.keyCode===kr&&(t.preventDefault(),this.$el.click())}},{name:"click",filter(){return["click","hover"].some(t=>d(this.mode,t))},handler(t){let e;(this._preventClick||K(t.target,'a[href="#"], a[href=""]')||(e=K(t.target,"a[href]"))&&(v(this.$el,"aria-expanded")!=="true"||e.hash&&B(this.target,e.hash)))&&t.preventDefault(),!this._preventClick&&d(this.mode,"click")&&this.toggle()}},{name:"hide show",self:!0,el(){return this.target},handler(t){let{type:e}=t;this.updateAria(e==="show")}},{name:"mediachange",filter(){return d(this.mode,"media")},el(){return this.target},handler(t,e){e.matches^this.isToggled(this.target)&&this.toggle()}}],methods:{async toggle(t){if(!k(this.target,t||"toggle",[this]))return;if(!this.queued)return this.toggleElement(this.target);const e=this.target.filter(n=>$(n,this.clsLeave));if(e.length){for(const n of this.target){const s=d(e,n);this.toggleElement(n,s,s)}return}const i=this.target.filter(this.isToggled);await this.toggleElement(i,!1),await this.toggleElement(this.target.filter(n=>!d(i,n)),!0)},updateAria(t){d(this.mode,"media")||v(this.$el,"aria-expanded",ce(t)?t:this.isToggled(this.target))}}},Sr=Object.freeze({__proto__:null,Accordion:gn,Alert:Zs,Cover:Us,Drop:xn,Dropdown:xn,FormCustom:ro,Grid:ho,HeightMatch:go,HeightViewport:wo,Icon:xi,Img:Zo,Leader:or,Margin:kn,Modal:rr,Nav:lr,Navbar:cr,Offcanvas:ur,OverflowAuto:pr,Responsive:gr,Scroll:mr,Scrollspy:br,ScrollspyNav:$r,Sticky:yr,Svg:En,Switcher:Wn,Tab:xr,Toggle:Tr,Video:vn,Close:Yo,Spinner:Xo,NavParentIcon:jo,SlidenavNext:_n,SlidenavPrevious:_n,SearchIcon:qo,Marker:U,NavbarParentIcon:U,NavbarToggleIcon:U,OverlayIcon:U,PaginationNext:U,PaginationPrevious:U,Totop:U});return yt(Sr,(t,e)=>J.component(e,t)),Gs(J),J});
|
package/dist/js/uikit-icons.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! UIkit 3.
|
|
1
|
+
/*! UIkit 3.15.1-dev.f849bb0c8 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
|
|
2
2
|
|
|
3
3
|
(function (global, factory) {
|
|
4
4
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|