@coreui/coreui 4.0.5 → 4.1.0
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/README.md +4 -7
- package/dist/css/coreui-grid.css +254 -205
- package/dist/css/coreui-grid.css.map +1 -1
- package/dist/css/coreui-grid.min.css +2 -2
- package/dist/css/coreui-grid.min.css.map +1 -1
- package/dist/css/coreui-grid.rtl.css +255 -206
- package/dist/css/coreui-grid.rtl.css.map +1 -1
- package/dist/css/coreui-grid.rtl.min.css +3 -3
- package/dist/css/coreui-grid.rtl.min.css.map +1 -1
- package/dist/css/coreui-reboot.css +63 -8
- package/dist/css/coreui-reboot.css.map +1 -1
- package/dist/css/coreui-reboot.min.css +2 -2
- package/dist/css/coreui-reboot.min.css.map +1 -1
- package/dist/css/coreui-reboot.rtl.css +64 -9
- package/dist/css/coreui-reboot.rtl.css.map +1 -1
- package/dist/css/coreui-reboot.rtl.min.css +3 -3
- package/dist/css/coreui-reboot.rtl.min.css.map +1 -1
- package/dist/css/coreui-utilities.css +181 -81
- package/dist/css/coreui-utilities.css.map +1 -1
- package/dist/css/coreui-utilities.min.css +2 -2
- package/dist/css/coreui-utilities.min.css.map +1 -1
- package/dist/css/coreui-utilities.rtl.css +182 -82
- package/dist/css/coreui-utilities.rtl.css.map +1 -1
- package/dist/css/coreui-utilities.rtl.min.css +3 -3
- package/dist/css/coreui-utilities.rtl.min.css.map +1 -1
- package/dist/css/coreui.css +693 -327
- package/dist/css/coreui.css.map +1 -1
- package/dist/css/coreui.min.css +2 -2
- package/dist/css/coreui.min.css.map +1 -1
- package/dist/css/coreui.rtl.css +676 -325
- package/dist/css/coreui.rtl.css.map +1 -1
- package/dist/css/coreui.rtl.min.css +3 -3
- package/dist/css/coreui.rtl.min.css.map +1 -1
- package/dist/js/coreui.bundle.js +776 -702
- package/dist/js/coreui.bundle.js.map +1 -1
- package/dist/js/coreui.bundle.min.js +2 -2
- package/dist/js/coreui.bundle.min.js.map +1 -1
- package/dist/js/coreui.esm.js +659 -611
- package/dist/js/coreui.esm.js.map +1 -1
- package/dist/js/coreui.esm.min.js +2 -2
- package/dist/js/coreui.esm.min.js.map +1 -1
- package/dist/js/coreui.js +669 -623
- package/dist/js/coreui.js.map +1 -1
- package/dist/js/coreui.min.js +2 -2
- package/dist/js/coreui.min.js.map +1 -1
- package/js/dist/alert.js +81 -48
- package/js/dist/alert.js.map +1 -1
- package/js/dist/base-component.js +25 -17
- package/js/dist/base-component.js.map +1 -1
- package/js/dist/button.js +22 -12
- package/js/dist/button.js.map +1 -1
- package/js/dist/carousel.js +69 -44
- package/js/dist/carousel.js.map +1 -1
- package/js/dist/collapse.js +117 -131
- package/js/dist/collapse.js.map +1 -1
- package/js/dist/dom/data.js +5 -5
- package/js/dist/dom/data.js.map +1 -1
- package/js/dist/dom/event-handler.js +14 -5
- package/js/dist/dom/event-handler.js.map +1 -1
- package/js/dist/dom/manipulator.js +6 -6
- package/js/dist/dom/manipulator.js.map +1 -1
- package/js/dist/dom/selector-engine.js +53 -8
- package/js/dist/dom/selector-engine.js.map +1 -1
- package/js/dist/dropdown.js +99 -106
- package/js/dist/dropdown.js.map +1 -1
- package/js/dist/modal.js +244 -87
- package/js/dist/modal.js.map +1 -1
- package/js/dist/offcanvas.js +205 -56
- package/js/dist/offcanvas.js.map +1 -1
- package/js/dist/popover.js +28 -58
- package/js/dist/popover.js.map +1 -1
- package/js/dist/scrollspy.js +40 -30
- package/js/dist/scrollspy.js.map +1 -1
- package/js/dist/tab.js +44 -22
- package/js/dist/tab.js.map +1 -1
- package/js/dist/toast.js +127 -29
- package/js/dist/toast.js.map +1 -1
- package/js/dist/tooltip.js +122 -104
- package/js/dist/tooltip.js.map +1 -1
- package/js/src/alert.js +21 -47
- package/js/src/base-component.js +3 -3
- package/js/src/button.js +1 -1
- package/js/src/carousel.js +9 -4
- package/js/src/collapse.js +66 -119
- package/js/src/dom/data.js +1 -1
- package/js/src/dom/event-handler.js +1 -2
- package/js/src/dom/manipulator.js +3 -3
- package/js/src/dom/selector-engine.js +18 -1
- package/js/src/dropdown.js +53 -68
- package/js/src/modal.js +24 -35
- package/js/src/navigation.js +1 -1
- package/js/src/offcanvas.js +16 -18
- package/js/src/popover.js +7 -49
- package/js/src/scrollspy.js +1 -1
- package/js/src/sidebar.js +3 -3
- package/js/src/tab.js +1 -1
- package/js/src/toast.js +11 -11
- package/js/src/tooltip.js +66 -50
- package/js/src/util/backdrop.js +6 -5
- package/js/src/util/component-functions.js +34 -0
- package/js/src/util/focustrap.js +105 -0
- package/js/src/util/index.js +14 -5
- package/js/src/util/sanitizer.js +21 -22
- package/js/src/util/scrollbar.js +1 -1
- package/package.json +47 -44
- package/scss/_buttons.scss +1 -2
- package/scss/_card.scss +2 -1
- package/scss/_dropdown.scss +1 -1
- package/scss/_functions.scss +51 -12
- package/scss/_grid.scss +0 -23
- package/scss/_helpers.scss +2 -0
- package/scss/_mixins.scss +1 -0
- package/scss/_modal.scss +1 -11
- package/scss/_navbar.scss +30 -1
- package/scss/_offcanvas.scss +6 -2
- package/scss/_placeholders.scss +51 -0
- package/scss/_reboot.scss +12 -8
- package/scss/_root.scss +36 -7
- package/scss/_tables.scss +9 -5
- package/scss/_toasts.scss +2 -2
- package/scss/_transitions.scss +6 -0
- package/scss/_utilities.scss +31 -8
- package/scss/_variables.scss +184 -12
- package/scss/coreui-grid.rtl.scss +1 -1
- package/scss/coreui-grid.scss +3 -1
- package/scss/coreui-reboot.rtl.scss +1 -1
- package/scss/coreui-reboot.scss +2 -4
- package/scss/coreui-utilities.rtl.scss +1 -1
- package/scss/coreui-utilities.scss +1 -1
- package/scss/coreui.rtl.scss +1 -1
- package/scss/coreui.scss +2 -1
- package/scss/forms/_form-control.scss +1 -1
- package/scss/forms/_form-select.scss +2 -0
- package/scss/helpers/_stacks.scss +15 -0
- package/scss/helpers/_vr.scss +8 -0
- package/scss/mixins/_backdrop.scss +14 -0
- package/scss/mixins/_grid.scss +26 -7
- package/scss/mixins/_ltr-rtl.scss +21 -0
- package/scss/mixins/_utilities.scss +26 -26
- package/scss/mixins/_visually-hidden.scss +1 -1
package/dist/js/coreui.min.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* CoreUI v4.0
|
|
2
|
+
* CoreUI v4.1.0 (https://coreui.io)
|
|
3
3
|
* Copyright 2021 The CoreUI Team (https://github.com/orgs/coreui/people)
|
|
4
4
|
* Licensed under MIT (https://coreui.io)
|
|
5
5
|
*/
|
|
6
|
-
!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e(require("@popperjs/core")):"function"==typeof define&&define.amd?define(["@popperjs/core"],e):(t="undefined"!=typeof globalThis?globalThis:t||self).coreui=e(t.Popper)}(this,(function(t){"use strict";function e(t){if(t&&t.__esModule)return t;var e=Object.create(null);return t&&Object.keys(t).forEach((function(i){if("default"!==i){var s=Object.getOwnPropertyDescriptor(t,i);Object.defineProperty(e,i,s.get?s:{enumerable:!0,get:function(){return t[i]}})}})),e.default=t,Object.freeze(e)}var i=e(t);const s={find:(t,e=document.documentElement)=>[].concat(...Element.prototype.querySelectorAll.call(e,t)),findOne:(t,e=document.documentElement)=>Element.prototype.querySelector.call(e,t),children:(t,e)=>[].concat(...t.children).filter((t=>t.matches(e))),parents(t,e){const i=[];let s=t.parentNode;for(;s&&s.nodeType===Node.ELEMENT_NODE&&3!==s.nodeType;)s.matches(e)&&i.push(s),s=s.parentNode;return i},prev(t,e){let i=t.previousElementSibling;for(;i;){if(i.matches(e))return[i];i=i.previousElementSibling}return[]},next(t,e){let i=t.nextElementSibling;for(;i;){if(i.matches(e))return[i];i=i.nextElementSibling}return[]}},n="transitionend",o=t=>{let e=t.getAttribute("data-coreui-target");if(!e||"#"===e){let i=t.getAttribute("href");if(!i||!i.includes("#")&&!i.startsWith("."))return null;i.includes("#")&&!i.startsWith("#")&&(i=`#${i.split("#")[1]}`),e=i&&"#"!==i?i.trim():null}return e},r=t=>{const e=o(t);return e&&document.querySelector(e)?e:null},a=t=>{const e=o(t);return e?document.querySelector(e):null},l=t=>{t.dispatchEvent(new Event(n))},c=t=>!(!t||"object"!=typeof t)&&(void 0!==t.jquery&&(t=t[0]),void 0!==t.nodeType),h=t=>c(t)?t.jquery?t[0]:t:"string"==typeof t&&t.length>0?s.findOne(t):null,d=(t,e,i)=>{Object.keys(i).forEach((s=>{const n=i[s],o=e[s],r=o&&c(o)?"element":null==(a=o)?`${a}`:{}.toString.call(a).match(/\s([a-z]+)/i)[1].toLowerCase();var a;if(!new RegExp(n).test(r))throw new TypeError(`${t.toUpperCase()}: Option "${s}" provided type "${r}" but expected type "${n}".`)}))},u=t=>!(!c(t)||0===t.getClientRects().length)&&"visible"===getComputedStyle(t).getPropertyValue("visibility"),g=t=>!t||t.nodeType!==Node.ELEMENT_NODE||(!!t.classList.contains("disabled")||(void 0!==t.disabled?t.disabled:t.hasAttribute("disabled")&&"false"!==t.getAttribute("disabled"))),_=t=>{if(!document.documentElement.attachShadow)return null;if("function"==typeof t.getRootNode){const e=t.getRootNode();return e instanceof ShadowRoot?e:null}return t instanceof ShadowRoot?t:t.parentNode?_(t.parentNode):null},m=()=>{},f=t=>t.offsetHeight,p=()=>{const{jQuery:t}=window;return t&&!document.body.hasAttribute("data-coreui-no-jquery")?t:null},b=[],v=()=>"rtl"===document.documentElement.dir,y=t=>{var e;e=()=>{const e=p();if(e){const i=t.NAME,s=e.fn[i];e.fn[i]=t.jQueryInterface,e.fn[i].Constructor=t,e.fn[i].noConflict=()=>(e.fn[i]=s,t.jQueryInterface)}},"loading"===document.readyState?(b.length||document.addEventListener("DOMContentLoaded",(()=>{b.forEach((t=>t()))})),b.push(e)):e()},E=t=>{"function"==typeof t&&t()},w=(t,e,i=!0)=>{if(!i)return void E(t);const s=(t=>{if(!t)return 0;let{transitionDuration:e,transitionDelay:i}=window.getComputedStyle(t);const s=Number.parseFloat(e),n=Number.parseFloat(i);return s||n?(e=e.split(",")[0],i=i.split(",")[0],1e3*(Number.parseFloat(e)+Number.parseFloat(i))):0})(e)+5;let o=!1;const r=({target:i})=>{i===e&&(o=!0,e.removeEventListener(n,r),E(t))};e.addEventListener(n,r),setTimeout((()=>{o||l(e)}),s)},A=(t,e,i,s)=>{let n=t.indexOf(e);if(-1===n)return t[!i&&s?t.length-1:0];const o=t.length;return n+=i?1:-1,s&&(n=(n+o)%o),t[Math.max(0,Math.min(n,o-1))]},T=/[^.]*(?=\..*)\.|.*/,C=/\..*/,L=/::\d+$/,k={};let O=1;const N={mouseenter:"mouseover",mouseleave:"mouseout"},D=/^(mouseenter|mouseleave)/i,I=new Set(["click","dblclick","mouseup","mousedown","contextmenu","mousewheel","DOMMouseScroll","mouseover","mouseout","mousemove","selectstart","selectend","keydown","keypress","keyup","orientationchange","touchstart","touchmove","touchend","touchcancel","pointerdown","pointermove","pointerup","pointerleave","pointercancel","gesturestart","gesturechange","gestureend","focus","blur","change","reset","select","submit","focusin","focusout","load","unload","beforeunload","resize","move","DOMContentLoaded","readystatechange","error","abort","scroll"]);function $(t,e){return e&&`${e}::${O++}`||t.uidEvent||O++}function S(t){const e=$(t);return t.uidEvent=e,k[e]=k[e]||{},k[e]}function x(t,e,i=null){const s=Object.keys(t);for(let n=0,o=s.length;n<o;n++){const o=t[s[n]];if(o.originalHandler===e&&o.delegationSelector===i)return o}return null}function M(t,e,i){const s="string"==typeof e,n=s?i:e;let o=H(t);return I.has(o)||(o=t),[s,n,o]}function P(t,e,i,s,n){if("string"!=typeof e||!t)return;if(i||(i=s,s=null),D.test(e)){const t=t=>function(e){if(!e.relatedTarget||e.relatedTarget!==e.delegateTarget&&!e.delegateTarget.contains(e.relatedTarget))return t.call(this,e)};s?s=t(s):i=t(i)}const[o,r,a]=M(e,i,s),l=S(t),c=l[a]||(l[a]={}),h=x(c,r,o?i:null);if(h)return void(h.oneOff=h.oneOff&&n);const d=$(r,e.replace(T,"")),u=o?function(t,e,i){return function s(n){const o=t.querySelectorAll(e);for(let{target:r}=n;r&&r!==this;r=r.parentNode)for(let a=o.length;a--;)if(o[a]===r)return n.delegateTarget=r,s.oneOff&&B.off(t,n.type,e,i),i.apply(r,[n]);return null}}(t,i,s):function(t,e){return function i(s){return s.delegateTarget=t,i.oneOff&&B.off(t,s.type,e),e.apply(t,[s])}}(t,i);u.delegationSelector=o?i:null,u.originalHandler=r,u.oneOff=n,u.uidEvent=d,c[d]=u,t.addEventListener(a,u,o)}function j(t,e,i,s,n){const o=x(e[i],s,n);o&&(t.removeEventListener(i,o,Boolean(n)),delete e[i][o.uidEvent])}function H(t){return t=t.replace(C,""),N[t]||t}const B={on(t,e,i,s){P(t,e,i,s,!1)},one(t,e,i,s){P(t,e,i,s,!0)},off(t,e,i,s){if("string"!=typeof e||!t)return;const[n,o,r]=M(e,i,s),a=r!==e,l=S(t),c=e.startsWith(".");if(void 0!==o){if(!l||!l[r])return;return void j(t,l,r,o,n?i:null)}c&&Object.keys(l).forEach((i=>{!function(t,e,i,s){const n=e[i]||{};Object.keys(n).forEach((o=>{if(o.includes(s)){const s=n[o];j(t,e,i,s.originalHandler,s.delegationSelector)}}))}(t,l,i,e.slice(1))}));const h=l[r]||{};Object.keys(h).forEach((i=>{const s=i.replace(L,"");if(!a||e.includes(s)){const e=h[i];j(t,l,r,e.originalHandler,e.delegationSelector)}}))},trigger(t,e,i){if("string"!=typeof e||!t)return null;const s=p(),n=H(e),o=e!==n,r=I.has(n);let a,l=!0,c=!0,h=!1,d=null;return o&&s&&(a=s.Event(e,i),s(t).trigger(a),l=!a.isPropagationStopped(),c=!a.isImmediatePropagationStopped(),h=a.isDefaultPrevented()),r?(d=document.createEvent("HTMLEvents"),d.initEvent(n,l,!0)):d=new CustomEvent(e,{bubbles:l,cancelable:!0}),void 0!==i&&Object.keys(i).forEach((t=>{Object.defineProperty(d,t,{get:()=>i[t]})})),h&&d.preventDefault(),c&&t.dispatchEvent(d),d.defaultPrevented&&void 0!==a&&a.preventDefault(),d}},R=new Map;var q={set(t,e,i){R.has(t)||R.set(t,new Map);const s=R.get(t);s.has(e)||0===s.size?s.set(e,i):console.error(`Bootstrap doesn't allow more than one instance per element. Bound instance: ${Array.from(s.keys())[0]}.`)},get:(t,e)=>R.has(t)&&R.get(t).get(e)||null,remove(t,e){if(!R.has(t))return;const i=R.get(t);i.delete(e),0===i.size&&R.delete(t)}};class U{constructor(t){(t=h(t))&&(this._element=t,q.set(this._element,this.constructor.DATA_KEY,this))}dispose(){q.remove(this._element,this.constructor.DATA_KEY),B.off(this._element,this.constructor.EVENT_KEY),Object.getOwnPropertyNames(this).forEach((t=>{this[t]=null}))}_queueCallback(t,e,i=!0){w(t,e,i)}static getInstance(t){return q.get(t,this.DATA_KEY)}static getOrCreateInstance(t,e={}){return this.getInstance(t)||new this(t,"object"==typeof e?e:null)}static get VERSION(){return"4.0.5"}static get NAME(){throw new Error('You have to implement the static method "NAME", for each component!')}static get DATA_KEY(){return`coreui.${this.NAME}`}static get EVENT_KEY(){return`.${this.DATA_KEY}`}}class W extends U{static get NAME(){return"alert"}close(t){const e=t?this._getRootElement(t):this._element,i=this._triggerCloseEvent(e);null===i||i.defaultPrevented||this._removeElement(e)}_getRootElement(t){return a(t)||t.closest(".alert")}_triggerCloseEvent(t){return B.trigger(t,"close.coreui.alert")}_removeElement(t){t.classList.remove("show");const e=t.classList.contains("fade");this._queueCallback((()=>this._destroyElement(t)),t,e)}_destroyElement(t){t.remove(),B.trigger(t,"closed.coreui.alert")}static jQueryInterface(t){return this.each((function(){const e=W.getOrCreateInstance(this);"close"===t&&e[t](this)}))}static handleDismiss(t){return function(e){e&&e.preventDefault(),t.close(this)}}}B.on(document,"click.coreui.alert.data-api",'[data-coreui-dismiss="alert"]',W.handleDismiss(new W)),y(W);const z='[data-coreui-toggle="button"]';class F extends U{static get NAME(){return"button"}toggle(){this._element.setAttribute("aria-pressed",this._element.classList.toggle("active"))}static jQueryInterface(t){return this.each((function(){const e=F.getOrCreateInstance(this);"toggle"===t&&e[t]()}))}}function V(t){return"true"===t||"false"!==t&&(t===Number(t).toString()?Number(t):""===t||"null"===t?null:t)}function K(t){return t.replace(/[A-Z]/g,(t=>`-${t.toLowerCase()}`))}B.on(document,"click.coreui.button.data-api",z,(t=>{t.preventDefault();const e=t.target.closest(z);F.getOrCreateInstance(e).toggle()})),y(F);const Q={setDataAttribute(t,e,i){t.setAttribute(`data-coreui-${K(e)}`,i)},removeDataAttribute(t,e){t.removeAttribute(`data-coreui-${K(e)}`)},getDataAttributes(t){if(!t)return{};const e={};return Object.keys(t.dataset).filter((t=>t.startsWith("coreui"))).forEach((i=>{let s=i.replace(/^coreui/,"");s=s.charAt(0).toLowerCase()+s.slice(1,s.length),e[s]=V(t.dataset[i])})),e},getDataAttribute:(t,e)=>V(t.getAttribute(`data-coreui-${K(e)}`)),offset(t){const e=t.getBoundingClientRect();return{top:e.top+document.body.scrollTop,left:e.left+document.body.scrollLeft}},position:t=>({top:t.offsetTop,left:t.offsetLeft})},Y="carousel",X=".coreui.carousel",G={interval:5e3,keyboard:!0,slide:!1,pause:"hover",wrap:!0,touch:!0},Z={interval:"(number|boolean)",keyboard:"boolean",slide:"(boolean|string)",pause:"(string|boolean)",wrap:"boolean",touch:"boolean"},J="next",tt="prev",et="left",it="right",st={ArrowLeft:it,ArrowRight:et},nt=`slide${X}`,ot=`slid${X}`,rt=`keydown${X}`,at=`mouseenter${X}`,lt=`mouseleave${X}`,ct=`touchstart${X}`,ht=`touchmove${X}`,dt=`touchend${X}`,ut=`pointerdown${X}`,gt=`pointerup${X}`,_t=`dragstart${X}`,mt=`load${X}.data-api`,ft=`click${X}.data-api`,pt="active",bt=".active.carousel-item",vt="touch";class yt extends U{constructor(t,e){super(t),this._items=null,this._interval=null,this._activeElement=null,this._isPaused=!1,this._isSliding=!1,this.touchTimeout=null,this.touchStartX=0,this.touchDeltaX=0,this._config=this._getConfig(e),this._indicatorsElement=s.findOne(".carousel-indicators",this._element),this._touchSupported="ontouchstart"in document.documentElement||navigator.maxTouchPoints>0,this._pointerEvent=Boolean(window.PointerEvent),this._addEventListeners()}static get Default(){return G}static get NAME(){return Y}next(){this._slide(J)}nextWhenVisible(){!document.hidden&&u(this._element)&&this.next()}prev(){this._slide(tt)}pause(t){t||(this._isPaused=!0),s.findOne(".carousel-item-next, .carousel-item-prev",this._element)&&(l(this._element),this.cycle(!0)),clearInterval(this._interval),this._interval=null}cycle(t){t||(this._isPaused=!1),this._interval&&(clearInterval(this._interval),this._interval=null),this._config&&this._config.interval&&!this._isPaused&&(this._updateInterval(),this._interval=setInterval((document.visibilityState?this.nextWhenVisible:this.next).bind(this),this._config.interval))}to(t){this._activeElement=s.findOne(bt,this._element);const e=this._getItemIndex(this._activeElement);if(t>this._items.length-1||t<0)return;if(this._isSliding)return void B.one(this._element,ot,(()=>this.to(t)));if(e===t)return this.pause(),void this.cycle();const i=t>e?J:tt;this._slide(i,this._items[t])}_getConfig(t){return t={...G,...Q.getDataAttributes(this._element),..."object"==typeof t?t:{}},d(Y,t,Z),t}_handleSwipe(){const t=Math.abs(this.touchDeltaX);if(t<=40)return;const e=t/this.touchDeltaX;this.touchDeltaX=0,e&&this._slide(e>0?it:et)}_addEventListeners(){this._config.keyboard&&B.on(this._element,rt,(t=>this._keydown(t))),"hover"===this._config.pause&&(B.on(this._element,at,(t=>this.pause(t))),B.on(this._element,lt,(t=>this.cycle(t)))),this._config.touch&&this._touchSupported&&this._addTouchEventListeners()}_addTouchEventListeners(){const t=t=>{!this._pointerEvent||"pen"!==t.pointerType&&t.pointerType!==vt?this._pointerEvent||(this.touchStartX=t.touches[0].clientX):this.touchStartX=t.clientX},e=t=>{this.touchDeltaX=t.touches&&t.touches.length>1?0:t.touches[0].clientX-this.touchStartX},i=t=>{!this._pointerEvent||"pen"!==t.pointerType&&t.pointerType!==vt||(this.touchDeltaX=t.clientX-this.touchStartX),this._handleSwipe(),"hover"===this._config.pause&&(this.pause(),this.touchTimeout&&clearTimeout(this.touchTimeout),this.touchTimeout=setTimeout((t=>this.cycle(t)),500+this._config.interval))};s.find(".carousel-item img",this._element).forEach((t=>{B.on(t,_t,(t=>t.preventDefault()))})),this._pointerEvent?(B.on(this._element,ut,(e=>t(e))),B.on(this._element,gt,(t=>i(t))),this._element.classList.add("pointer-event")):(B.on(this._element,ct,(e=>t(e))),B.on(this._element,ht,(t=>e(t))),B.on(this._element,dt,(t=>i(t))))}_keydown(t){if(/input|textarea/i.test(t.target.tagName))return;const e=st[t.key];e&&(t.preventDefault(),this._slide(e))}_getItemIndex(t){return this._items=t&&t.parentNode?s.find(".carousel-item",t.parentNode):[],this._items.indexOf(t)}_getItemByOrder(t,e){const i=t===J;return A(this._items,e,i,this._config.wrap)}_triggerSlideEvent(t,e){const i=this._getItemIndex(t),n=this._getItemIndex(s.findOne(bt,this._element));return B.trigger(this._element,nt,{relatedTarget:t,direction:e,from:n,to:i})}_setActiveIndicatorElement(t){if(this._indicatorsElement){const e=s.findOne(".active",this._indicatorsElement);e.classList.remove(pt),e.removeAttribute("aria-current");const i=s.find("[data-coreui-target]",this._indicatorsElement);for(let e=0;e<i.length;e++)if(Number.parseInt(i[e].getAttribute("data-coreui-slide-to"),10)===this._getItemIndex(t)){i[e].classList.add(pt),i[e].setAttribute("aria-current","true");break}}}_updateInterval(){const t=this._activeElement||s.findOne(bt,this._element);if(!t)return;const e=Number.parseInt(t.getAttribute("data-coreui-interval"),10);e?(this._config.defaultInterval=this._config.defaultInterval||this._config.interval,this._config.interval=e):this._config.interval=this._config.defaultInterval||this._config.interval}_slide(t,e){const i=this._directionToOrder(t),n=s.findOne(bt,this._element),o=this._getItemIndex(n),r=e||this._getItemByOrder(i,n),a=this._getItemIndex(r),l=Boolean(this._interval),c=i===J,h=c?"carousel-item-start":"carousel-item-end",d=c?"carousel-item-next":"carousel-item-prev",u=this._orderToDirection(i);if(r&&r.classList.contains(pt))return void(this._isSliding=!1);if(this._isSliding)return;if(this._triggerSlideEvent(r,u).defaultPrevented)return;if(!n||!r)return;this._isSliding=!0,l&&this.pause(),this._setActiveIndicatorElement(r),this._activeElement=r;const g=()=>{B.trigger(this._element,ot,{relatedTarget:r,direction:u,from:o,to:a})};if(this._element.classList.contains("slide")){r.classList.add(d),f(r),n.classList.add(h),r.classList.add(h);const t=()=>{r.classList.remove(h,d),r.classList.add(pt),n.classList.remove(pt,d,h),this._isSliding=!1,setTimeout(g,0)};this._queueCallback(t,n,!0)}else n.classList.remove(pt),r.classList.add(pt),this._isSliding=!1,g();l&&this.cycle()}_directionToOrder(t){return[it,et].includes(t)?v()?t===et?tt:J:t===et?J:tt:t}_orderToDirection(t){return[J,tt].includes(t)?v()?t===tt?et:it:t===tt?it:et:t}static carouselInterface(t,e){const i=yt.getOrCreateInstance(t,e);let{_config:s}=i;"object"==typeof e&&(s={...s,...e});const n="string"==typeof e?e:s.slide;if("number"==typeof e)i.to(e);else if("string"==typeof n){if(void 0===i[n])throw new TypeError(`No method named "${n}"`);i[n]()}else s.interval&&s.ride&&(i.pause(),i.cycle())}static jQueryInterface(t){return this.each((function(){yt.carouselInterface(this,t)}))}static dataApiClickHandler(t){const e=a(this);if(!e||!e.classList.contains("carousel"))return;const i={...Q.getDataAttributes(e),...Q.getDataAttributes(this)},s=this.getAttribute("data-coreui-slide-to");s&&(i.interval=!1),yt.carouselInterface(e,i),s&&yt.getInstance(e).to(s),t.preventDefault()}}B.on(document,ft,"[data-coreui-slide], [data-coreui-slide-to]",yt.dataApiClickHandler),B.on(window,mt,(()=>{const t=s.find('[data-coreui-ride="carousel"]');for(let e=0,i=t.length;e<i;e++)yt.carouselInterface(t[e],yt.getInstance(t[e]))})),y(yt);const Et="collapse",wt="coreui.collapse",At=`.${wt}`,Tt={toggle:!0,parent:""},Ct={toggle:"boolean",parent:"(string|element)"},Lt=`show${At}`,kt=`shown${At}`,Ot=`hide${At}`,Nt=`hidden${At}`,Dt=`click${At}.data-api`,It="show",$t="collapse",St="collapsing",xt="collapsed",Mt="width",Pt='[data-coreui-toggle="collapse"]';class jt extends U{constructor(t,e){super(t),this._isTransitioning=!1,this._config=this._getConfig(e),this._triggerArray=s.find(`${Pt}[href="#${this._element.id}"],${Pt}[data-coreui-target="#${this._element.id}"]`);const i=s.find(Pt);for(let t=0,e=i.length;t<e;t++){const e=i[t],n=r(e),o=s.find(n).filter((t=>t===this._element));null!==n&&o.length&&(this._selector=n,this._triggerArray.push(e))}this._parent=this._config.parent?this._getParent():null,this._config.parent||this._addAriaAndCollapsedClass(this._element,this._triggerArray),this._config.toggle&&this.toggle()}static get Default(){return Tt}static get NAME(){return Et}toggle(){this._element.classList.contains(It)?this.hide():this.show()}show(){if(this._isTransitioning||this._element.classList.contains(It))return;let t,e;this._parent&&(t=s.find(".show, .collapsing",this._parent).filter((t=>"string"==typeof this._config.parent?t.getAttribute("data-coreui-parent")===this._config.parent:t.classList.contains($t))),0===t.length&&(t=null));const i=s.findOne(this._selector);if(t){const s=t.find((t=>i!==t));if(e=s?jt.getInstance(s):null,e&&e._isTransitioning)return}if(B.trigger(this._element,Lt).defaultPrevented)return;t&&t.forEach((t=>{i!==t&&jt.collapseInterface(t,"hide"),e||q.set(t,wt,null)}));const n=this._getDimension();this._element.classList.remove($t),this._element.classList.add(St),this._element.style[n]=0,this._triggerArray.length&&this._triggerArray.forEach((t=>{t.classList.remove(xt),t.setAttribute("aria-expanded",!0)})),this.setTransitioning(!0);const o=`scroll${n[0].toUpperCase()+n.slice(1)}`;this._queueCallback((()=>{this._element.classList.remove(St),this._element.classList.add($t,It),this._element.style[n]="",this.setTransitioning(!1),B.trigger(this._element,kt)}),this._element,!0),this._element.style[n]=`${this._element[o]}px`}hide(){if(this._isTransitioning||!this._element.classList.contains(It))return;if(B.trigger(this._element,Ot).defaultPrevented)return;const t=this._getDimension();this._element.style[t]=`${this._element.getBoundingClientRect()[t]}px`,f(this._element),this._element.classList.add(St),this._element.classList.remove($t,It);const e=this._triggerArray.length;if(e>0)for(let t=0;t<e;t++){const e=this._triggerArray[t],i=a(e);i&&!i.classList.contains(It)&&(e.classList.add(xt),e.setAttribute("aria-expanded",!1))}this.setTransitioning(!0);this._element.style[t]="",this._queueCallback((()=>{this.setTransitioning(!1),this._element.classList.remove(St),this._element.classList.add($t),B.trigger(this._element,Nt)}),this._element,!0)}setTransitioning(t){this._isTransitioning=t}_getConfig(t){return(t={...Tt,...t}).toggle=Boolean(t.toggle),d(Et,t,Ct),t}_getDimension(){return this._element.classList.contains(Mt)?Mt:"height"}_getParent(){let{parent:t}=this._config;t=h(t);const e=`${Pt}[data-coreui-parent="${t}"]`;return s.find(e,t).forEach((t=>{const e=a(t);this._addAriaAndCollapsedClass(e,[t])})),t}_addAriaAndCollapsedClass(t,e){if(!t||!e.length)return;const i=t.classList.contains(It);e.forEach((t=>{i?t.classList.remove(xt):t.classList.add(xt),t.setAttribute("aria-expanded",i)}))}static collapseInterface(t,e){let i=jt.getInstance(t);const s={...Tt,...Q.getDataAttributes(t),..."object"==typeof e&&e?e:{}};if(!i&&s.toggle&&"string"==typeof e&&/show|hide/.test(e)&&(s.toggle=!1),i||(i=new jt(t,s)),"string"==typeof e){if(void 0===i[e])throw new TypeError(`No method named "${e}"`);i[e]()}}static jQueryInterface(t){return this.each((function(){jt.collapseInterface(this,t)}))}}B.on(document,Dt,Pt,(function(t){("A"===t.target.tagName||t.delegateTarget&&"A"===t.delegateTarget.tagName)&&t.preventDefault();const e=Q.getDataAttributes(this),i=r(this);s.find(i).forEach((t=>{const i=jt.getInstance(t);let s;i?(null===i._parent&&"string"==typeof e.parent&&(i._config.parent=e.parent,i._parent=i._getParent()),s="toggle"):s=e,jt.collapseInterface(t,s)}))})),y(jt);const Ht="dropdown",Bt=".coreui.dropdown",Rt="Escape",qt="Space",Ut="ArrowUp",Wt="ArrowDown",zt=new RegExp("ArrowUp|ArrowDown|Escape"),Ft=`hide${Bt}`,Vt=`hidden${Bt}`,Kt=`show${Bt}`,Qt=`shown${Bt}`,Yt=`click${Bt}`,Xt=`click${Bt}.data-api`,Gt=`keydown${Bt}.data-api`,Zt=`keyup${Bt}.data-api`,Jt="show",te='[data-coreui-toggle="dropdown"]',ee=".dropdown-menu",ie=v()?"top-end":"top-start",se=v()?"top-start":"top-end",ne=v()?"bottom-end":"bottom-start",oe=v()?"bottom-start":"bottom-end",re=v()?"left-start":"right-start",ae=v()?"right-start":"left-start",le={offset:[0,2],boundary:"clippingParents",reference:"toggle",display:"dynamic",popperConfig:null,autoClose:!0},ce={offset:"(array|string|function)",boundary:"(string|element)",reference:"(string|element|object)",display:"string",popperConfig:"(null|object|function)",autoClose:"(boolean|string)"};class he extends U{constructor(t,e){super(t),this._popper=null,this._config=this._getConfig(e),this._menu=this._getMenuElement(),this._inNavbar=this._detectNavbar(),this._addEventListeners()}static get Default(){return le}static get DefaultType(){return ce}static get NAME(){return Ht}toggle(){if(g(this._element))return;this._element.classList.contains(Jt)?this.hide():this.show()}show(){if(g(this._element)||this._menu.classList.contains(Jt))return;const t=he.getParentFromElement(this._element),e={relatedTarget:this._element};if(!B.trigger(this._element,Kt,e).defaultPrevented){if(this._inNavbar)Q.setDataAttribute(this._menu,"popper","none");else{if(void 0===i)throw new TypeError("Bootstrap's dropdowns require Popper (https://popper.js.org)");let e=this._element;"parent"===this._config.reference?e=t:c(this._config.reference)?e=h(this._config.reference):"object"==typeof this._config.reference&&(e=this._config.reference);const s=this._getPopperConfig(),n=s.modifiers.find((t=>"applyStyles"===t.name&&!1===t.enabled));this._popper=i.createPopper(e,this._menu,s),n&&Q.setDataAttribute(this._menu,"popper","static")}"ontouchstart"in document.documentElement&&!t.closest(".navbar-nav")&&[].concat(...document.body.children).forEach((t=>B.on(t,"mouseover",m))),this._element.focus(),this._element.setAttribute("aria-expanded",!0),this._menu.classList.toggle(Jt),this._element.classList.toggle(Jt),B.trigger(this._element,Qt,e)}}hide(){if(g(this._element)||!this._menu.classList.contains(Jt))return;const t={relatedTarget:this._element};this._completeHide(t)}dispose(){this._popper&&this._popper.destroy(),super.dispose()}update(){this._inNavbar=this._detectNavbar(),this._popper&&this._popper.update()}_addEventListeners(){B.on(this._element,Yt,(t=>{t.preventDefault(),this.toggle()}))}_completeHide(t){B.trigger(this._element,Ft,t).defaultPrevented||("ontouchstart"in document.documentElement&&[].concat(...document.body.children).forEach((t=>B.off(t,"mouseover",m))),this._popper&&this._popper.destroy(),this._menu.classList.remove(Jt),this._element.classList.remove(Jt),this._element.setAttribute("aria-expanded","false"),Q.removeDataAttribute(this._menu,"popper"),B.trigger(this._element,Vt,t))}_getConfig(t){if(t={...this.constructor.Default,...Q.getDataAttributes(this._element),...t},d(Ht,t,this.constructor.DefaultType),"object"==typeof t.reference&&!c(t.reference)&&"function"!=typeof t.reference.getBoundingClientRect)throw new TypeError(`${Ht.toUpperCase()}: Option "reference" provided type "object" without a required "getBoundingClientRect" method.`);return t}_getMenuElement(){return s.next(this._element,ee)[0]}_getPlacement(){const t=this._element.parentNode;if(t.classList.contains("dropend"))return re;if(t.classList.contains("dropstart"))return ae;const e="end"===getComputedStyle(this._menu).getPropertyValue("--cui-position").trim();return t.classList.contains("dropup")?e?se:ie:e?oe:ne}_detectNavbar(){return null!==this._element.closest(".navbar")}_getOffset(){const{offset:t}=this._config;return"string"==typeof t?t.split(",").map((t=>Number.parseInt(t,10))):"function"==typeof t?e=>t(e,this._element):t}_getPopperConfig(){const t={placement:this._getPlacement(),modifiers:[{name:"preventOverflow",options:{boundary:this._config.boundary}},{name:"offset",options:{offset:this._getOffset()}}]};return"static"===this._config.display&&(t.modifiers=[{name:"applyStyles",enabled:!1}]),{...t,..."function"==typeof this._config.popperConfig?this._config.popperConfig(t):this._config.popperConfig}}_selectMenuItem({key:t,target:e}){const i=s.find(".dropdown-menu .dropdown-item:not(.disabled):not(:disabled)",this._menu).filter(u);i.length&&A(i,e,t===Wt,!i.includes(e)).focus()}static dropdownInterface(t,e){const i=he.getOrCreateInstance(t,e);if("string"==typeof e){if(void 0===i[e])throw new TypeError(`No method named "${e}"`);i[e]()}}static jQueryInterface(t){return this.each((function(){he.dropdownInterface(this,t)}))}static clearMenus(t){if(t&&(2===t.button||"keyup"===t.type&&"Tab"!==t.key))return;const e=s.find(te);for(let i=0,s=e.length;i<s;i++){const s=he.getInstance(e[i]);if(!s||!1===s._config.autoClose)continue;if(!s._element.classList.contains(Jt))continue;const n={relatedTarget:s._element};if(t){const e=t.composedPath(),i=e.includes(s._menu);if(e.includes(s._element)||"inside"===s._config.autoClose&&!i||"outside"===s._config.autoClose&&i)continue;if(s._menu.contains(t.target)&&("keyup"===t.type&&"Tab"===t.key||/input|select|option|textarea|form/i.test(t.target.tagName)))continue;"click"===t.type&&(n.clickEvent=t)}s._completeHide(n)}}static getParentFromElement(t){return a(t)||t.parentNode}static dataApiKeydownHandler(t){if(/input|textarea/i.test(t.target.tagName)?t.key===qt||t.key!==Rt&&(t.key!==Wt&&t.key!==Ut||t.target.closest(ee)):!zt.test(t.key))return;const e=this.classList.contains(Jt);if(!e&&t.key===Rt)return;if(t.preventDefault(),t.stopPropagation(),g(this))return;const i=()=>this.matches(te)?this:s.prev(this,te)[0];return t.key===Rt?(i().focus(),void he.clearMenus()):t.key===Ut||t.key===Wt?(e||i().click(),void he.getInstance(i())._selectMenuItem(t)):void(e&&t.key!==qt||he.clearMenus())}}B.on(document,Gt,te,he.dataApiKeydownHandler),B.on(document,Gt,ee,he.dataApiKeydownHandler),B.on(document,Xt,he.clearMenus),B.on(document,Zt,he.clearMenus),B.on(document,Xt,te,(function(t){t.preventDefault(),he.dropdownInterface(this)})),y(he);const de=".fixed-top, .fixed-bottom, .is-fixed, .sticky-top",ue=".sticky-top";class ge{constructor(){this._element=document.body}getWidth(){const t=document.documentElement.clientWidth;return Math.abs(window.innerWidth-t)}hide(){const t=this.getWidth();this._disableOverFlow(),this._setElementAttributes(this._element,"paddingRight",(e=>e+t)),this._setElementAttributes(de,"paddingRight",(e=>e+t)),this._setElementAttributes(ue,"marginRight",(e=>e-t))}_disableOverFlow(){this._saveInitialAttribute(this._element,"overflow"),this._element.style.overflow="hidden"}_setElementAttributes(t,e,i){const s=this.getWidth();this._applyManipulationCallback(t,(t=>{if(t!==this._element&&window.innerWidth>t.clientWidth+s)return;this._saveInitialAttribute(t,e);const n=window.getComputedStyle(t)[e];t.style[e]=`${i(Number.parseFloat(n))}px`}))}reset(){this._resetElementAttributes(this._element,"overflow"),this._resetElementAttributes(this._element,"paddingRight"),this._resetElementAttributes(de,"paddingRight"),this._resetElementAttributes(ue,"marginRight")}_saveInitialAttribute(t,e){const i=t.style[e];i&&Q.setDataAttribute(t,e,i)}_resetElementAttributes(t,e){this._applyManipulationCallback(t,(t=>{const i=Q.getDataAttribute(t,e);void 0===i?t.style.removeProperty(e):(Q.removeDataAttribute(t,e),t.style[e]=i)}))}_applyManipulationCallback(t,e){c(t)?e(t):s.find(t,this._element).forEach(e)}isOverflowing(){return this.getWidth()>0}}const _e={isVisible:!0,isAnimated:!1,rootElement:"body",clickCallback:null},me={isVisible:"boolean",isAnimated:"boolean",rootElement:"(element|string)",clickCallback:"(function|null)"},fe="backdrop",pe="show",be="mousedown.coreui.backdrop";class ve{constructor(t){this._config=this._getConfig(t),this._isAppended=!1,this._element=null}show(t){this._config.isVisible?(this._append(),this._config.isAnimated&&f(this._getElement()),this._getElement().classList.add(pe),this._emulateAnimation((()=>{E(t)}))):E(t)}hide(t){this._config.isVisible?(this._getElement().classList.remove(pe),this._emulateAnimation((()=>{this.dispose(),E(t)}))):E(t)}_getElement(){if(!this._element){const t=document.createElement("div");t.className="modal-backdrop",this._config.isAnimated&&t.classList.add("fade"),this._element=t}return this._element}_getConfig(t){return(t={..._e,..."object"==typeof t?t:{}}).rootElement=h(t.rootElement),d(fe,t,me),t}_append(){this._isAppended||(this._config.rootElement.appendChild(this._getElement()),B.on(this._getElement(),be,(()=>{E(this._config.clickCallback)})),this._isAppended=!0)}dispose(){this._isAppended&&(B.off(this._element,be),this._element.remove(),this._isAppended=!1)}_emulateAnimation(t){w(t,this._getElement(),this._config.isAnimated)}}const ye="modal",Ee=".coreui.modal",we="Escape",Ae={backdrop:!0,keyboard:!0,focus:!0},Te={backdrop:"(boolean|string)",keyboard:"boolean",focus:"boolean"},Ce="hidden.coreui.modal",Le="show.coreui.modal",ke="focusin.coreui.modal",Oe="resize.coreui.modal",Ne="click.dismiss.coreui.modal",De="keydown.dismiss.coreui.modal",Ie="mousedown.dismiss.coreui.modal",$e="modal-open",Se="show",xe="modal-static";class Me extends U{constructor(t,e){super(t),this._config=this._getConfig(e),this._dialog=s.findOne(".modal-dialog",this._element),this._backdrop=this._initializeBackDrop(),this._isShown=!1,this._ignoreBackdropClick=!1,this._isTransitioning=!1,this._scrollBar=new ge}static get Default(){return Ae}static get NAME(){return ye}toggle(t){return this._isShown?this.hide():this.show(t)}show(t){if(this._isShown||this._isTransitioning)return;B.trigger(this._element,Le,{relatedTarget:t}).defaultPrevented||(this._isShown=!0,this._isAnimated()&&(this._isTransitioning=!0),this._scrollBar.hide(),document.body.classList.add($e),this._adjustDialog(),this._setEscapeEvent(),this._setResizeEvent(),B.on(this._element,Ne,'[data-coreui-dismiss="modal"]',(t=>this.hide(t))),B.on(this._dialog,Ie,(()=>{B.one(this._element,"mouseup.dismiss.coreui.modal",(t=>{t.target===this._element&&(this._ignoreBackdropClick=!0)}))})),this._showBackdrop((()=>this._showElement(t))))}hide(t){if(t&&["A","AREA"].includes(t.target.tagName)&&t.preventDefault(),!this._isShown||this._isTransitioning)return;if(B.trigger(this._element,"hide.coreui.modal").defaultPrevented)return;this._isShown=!1;const e=this._isAnimated();e&&(this._isTransitioning=!0),this._setEscapeEvent(),this._setResizeEvent(),B.off(document,ke),this._element.classList.remove(Se),B.off(this._element,Ne),B.off(this._dialog,Ie),this._queueCallback((()=>this._hideModal()),this._element,e)}dispose(){[window,this._dialog].forEach((t=>B.off(t,Ee))),this._backdrop.dispose(),super.dispose(),B.off(document,ke)}handleUpdate(){this._adjustDialog()}_initializeBackDrop(){return new ve({isVisible:Boolean(this._config.backdrop),isAnimated:this._isAnimated()})}_getConfig(t){return t={...Ae,...Q.getDataAttributes(this._element),..."object"==typeof t?t:{}},d(ye,t,Te),t}_showElement(t){const e=this._isAnimated(),i=s.findOne(".modal-body",this._dialog);this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE||document.body.appendChild(this._element),this._element.style.display="block",this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),this._element.scrollTop=0,i&&(i.scrollTop=0),e&&f(this._element),this._element.classList.add(Se),this._config.focus&&this._enforceFocus();this._queueCallback((()=>{this._config.focus&&this._element.focus(),this._isTransitioning=!1,B.trigger(this._element,"shown.coreui.modal",{relatedTarget:t})}),this._dialog,e)}_enforceFocus(){B.off(document,ke),B.on(document,ke,(t=>{document===t.target||this._element===t.target||this._element.contains(t.target)||this._element.focus()}))}_setEscapeEvent(){this._isShown?B.on(this._element,De,(t=>{this._config.keyboard&&t.key===we?(t.preventDefault(),this.hide()):this._config.keyboard||t.key!==we||this._triggerBackdropTransition()})):B.off(this._element,De)}_setResizeEvent(){this._isShown?B.on(window,Oe,(()=>this._adjustDialog())):B.off(window,Oe)}_hideModal(){this._element.style.display="none",this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._isTransitioning=!1,this._backdrop.hide((()=>{document.body.classList.remove($e),this._resetAdjustments(),this._scrollBar.reset(),B.trigger(this._element,Ce)}))}_showBackdrop(t){B.on(this._element,Ne,(t=>{this._ignoreBackdropClick?this._ignoreBackdropClick=!1:t.target===t.currentTarget&&(!0===this._config.backdrop?this.hide():"static"===this._config.backdrop&&this._triggerBackdropTransition())})),this._backdrop.show(t)}_isAnimated(){return this._element.classList.contains("fade")}_triggerBackdropTransition(){if(B.trigger(this._element,"hidePrevented.coreui.modal").defaultPrevented)return;const{classList:t,scrollHeight:e,style:i}=this._element,s=e>document.documentElement.clientHeight;!s&&"hidden"===i.overflowY||t.contains(xe)||(s||(i.overflowY="hidden"),t.add(xe),this._queueCallback((()=>{t.remove(xe),s||this._queueCallback((()=>{i.overflowY=""}),this._dialog)}),this._dialog),this._element.focus())}_adjustDialog(){const t=this._element.scrollHeight>document.documentElement.clientHeight,e=this._scrollBar.getWidth(),i=e>0;(!i&&t&&!v()||i&&!t&&v())&&(this._element.style.paddingLeft=`${e}px`),(i&&!t&&!v()||!i&&t&&v())&&(this._element.style.paddingRight=`${e}px`)}_resetAdjustments(){this._element.style.paddingLeft="",this._element.style.paddingRight=""}static jQueryInterface(t,e){return this.each((function(){const i=Me.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===i[t])throw new TypeError(`No method named "${t}"`);i[t](e)}}))}}B.on(document,"click.coreui.modal.data-api",'[data-coreui-toggle="modal"]',(function(t){const e=a(this);["A","AREA"].includes(this.tagName)&&t.preventDefault(),B.one(e,Le,(t=>{t.defaultPrevented||B.one(e,Ce,(()=>{u(this)&&this.focus()}))}));Me.getOrCreateInstance(e).toggle(this)})),y(Me);const Pe="navigation",je="coreui.navigation",He=`.${je}`,Be={activeLinksExact:!0,groupsAutoCollapse:!0},Re={activeLinksExact:"boolean",groupsAutoCollapse:"(string|boolean)"},qe="active",Ue="show",We="nav-group-toggle",ze=`click${He}.data-api`,Fe=`load${He}.data-api`,Ve=".nav-group",Ke=".nav-group-items",Qe=".nav-group-toggle";class Ye extends U{constructor(t,e){super(t),this._config=this._getConfig(e),this._setActiveLink(),this._addEventListeners(),q.set(t,je,this)}static get Default(){return Be}static get DATA_KEY(){return je}static get DefaultType(){return Re}static get NAME(){return Pe}_getConfig(t){return t={...Be,...Q.getDataAttributes(this._element),..."object"==typeof t?t:{}},d(Pe,t,Re),t}_setActiveLink(){Array.from(this._element.querySelectorAll(".nav-link")).forEach((t=>{if(t.classList.contains(We))return;let e=String(window.location);(/\?.*=/.test(e)||/\?./.test(e))&&(e=e.split("?")[0]),/#./.test(e)&&(e=e.split("#")[0]),this._config.activeLinksExact&&t.href===e&&(t.classList.add(qe),Array.from(this._getParents(t,Ve)).forEach((t=>{t.classList.add(Ue),t.setAttribute("aria-expanded",!0)}))),!this._config.activeLinksExact&&t.href.startsWith(e)&&(t.classList.add(qe),Array.from(this._getParents(t,Ve)).forEach((t=>{t.classList.add(Ue),t.setAttribute("aria-expanded",!0)})))}))}_getParents(t,e){const i=[];for(;t&&t!==document;t=t.parentNode)e?t.matches(e)&&i.push(t):i.push(t);return i}_getAllSiblings(t,e){const i=[];t=t.parentNode.firstChild;do{3!==t.nodeType&&8!==t.nodeType&&(e&&!e(t)||i.push(t))}while(t=t.nextSibling);return i}_getChildren(t,e){const i=[];for(;t;t=t.nextSibling)1===t.nodeType&&t!==e&&i.push(t);return i}_getSiblings(t,e){return this._getChildren(t.parentNode.firstChild,t).filter(e)}_slideDown(t){t.style.height="auto";const e=t.clientHeight;t.style.height="0px",setTimeout((()=>{t.style.height=`${e}px`}),0),this._queueCallback((()=>{t.style.height="auto"}),t,!0)}_slideUp(t,e){const i=t.clientHeight;t.style.height=`${i}px`,setTimeout((()=>{t.style.height="0px"}),0),this._queueCallback((()=>{"function"==typeof e&&e()}),t,!0)}_toggleGroupItems(t){let e=t.target;e.classList.contains(We)||(e=e.closest(Qe));const i=t=>Boolean(t.classList.contains("nav-group")&&t.classList.contains(Ue));!0===this._config.groupsAutoCollapse&&this._getSiblings(e.parentNode,i).forEach((t=>{this._slideUp(s.findOne(Ke,t),(()=>{t.classList.remove(Ue),t.setAttribute("aria-expanded",!1)}))})),e.parentNode.classList.contains(Ue)?this._slideUp(s.findOne(Ke,e.parentNode),(()=>{e.parentNode.classList.remove(Ue),e.parentNode.setAttribute("aria-expanded",!1)})):(e.parentNode.classList.add(Ue),e.parentNode.setAttribute("aria-expanded",!0),this._slideDown(s.findOne(Ke,e.parentNode)))}_addEventListeners(){B.on(this._element,ze,Qe,(t=>{t.preventDefault(),this._toggleGroupItems(t,this)}))}static navigationInterface(t,e){const i=Ye.getOrCreateInstance(t,e);if("string"==typeof e){if(void 0===i[e])throw new TypeError(`No method named "${e}"`);i[e]()}}static jQueryInterface(t){return this.each((function(){Ye.navigationInterface(this,t)}))}}B.on(window,Fe,(()=>{Array.from(document.querySelectorAll('[data-coreui="navigation"]')).forEach((t=>{Ye.navigationInterface(t)}))})),y(Ye);const Xe="offcanvas",Ge=".coreui.offcanvas",Ze=`load${Ge}.data-api`,Je={backdrop:!0,keyboard:!0,scroll:!1},ti={backdrop:"boolean",keyboard:"boolean",scroll:"boolean"},ei="show",ii=".offcanvas.show",si=`show${Ge}`,ni=`shown${Ge}`,oi=`hide${Ge}`,ri=`hidden${Ge}`,ai=`focusin${Ge}`,li=`click${Ge}.data-api`,ci=`click.dismiss${Ge}`,hi=`keydown.dismiss${Ge}`;class di extends U{constructor(t,e){super(t),this._config=this._getConfig(e),this._isShown=!1,this._backdrop=this._initializeBackDrop(),this._addEventListeners()}static get NAME(){return Xe}static get Default(){return Je}toggle(t){return this._isShown?this.hide():this.show(t)}show(t){if(this._isShown)return;if(B.trigger(this._element,si,{relatedTarget:t}).defaultPrevented)return;this._isShown=!0,this._element.style.visibility="visible",this._backdrop.show(),this._config.scroll||((new ge).hide(),this._enforceFocusOnElement(this._element)),this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),this._element.classList.add(ei);this._queueCallback((()=>{B.trigger(this._element,ni,{relatedTarget:t})}),this._element,!0)}hide(){if(!this._isShown)return;if(B.trigger(this._element,oi).defaultPrevented)return;B.off(document,ai),this._element.blur(),this._isShown=!1,this._element.classList.remove(ei),this._backdrop.hide();this._queueCallback((()=>{this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._element.style.visibility="hidden",this._config.scroll||(new ge).reset(),B.trigger(this._element,ri)}),this._element,!0)}dispose(){this._backdrop.dispose(),super.dispose(),B.off(document,ai)}_getConfig(t){return t={...Je,...Q.getDataAttributes(this._element),..."object"==typeof t?t:{}},d(Xe,t,ti),t}_initializeBackDrop(){return new ve({isVisible:this._config.backdrop,isAnimated:!0,rootElement:this._element.parentNode,clickCallback:()=>this.hide()})}_enforceFocusOnElement(t){B.off(document,ai),B.on(document,ai,(e=>{document===e.target||t===e.target||t.contains(e.target)||t.focus()})),t.focus()}_addEventListeners(){B.on(this._element,ci,'[data-coreui-dismiss="offcanvas"]',(()=>this.hide())),B.on(this._element,hi,(t=>{this._config.keyboard&&"Escape"===t.key&&this.hide()}))}static jQueryInterface(t){return this.each((function(){const e=di.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}B.on(document,li,'[data-coreui-toggle="offcanvas"]',(function(t){const e=a(this);if(["A","AREA"].includes(this.tagName)&&t.preventDefault(),g(this))return;B.one(e,ri,(()=>{u(this)&&this.focus()}));const i=s.findOne(ii);i&&i!==e&&di.getInstance(i).hide();di.getOrCreateInstance(e).toggle(this)})),B.on(window,Ze,(()=>s.find(ii).forEach((t=>di.getOrCreateInstance(t).show())))),y(di);const ui=new Set(["background","cite","href","itemtype","longdesc","poster","src","xlink:href"]),gi=/^(?:(?:https?|mailto|ftp|tel|file):|[^#&/:?]*(?:[#/?]|$))/i,_i=/^data:(?:image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\/(?:mpeg|mp4|ogg|webm)|audio\/(?:mp3|oga|ogg|opus));base64,[\d+/a-z]+=*$/i,mi=(t,e)=>{const i=t.nodeName.toLowerCase();if(e.includes(i))return!ui.has(i)||Boolean(gi.test(t.nodeValue)||_i.test(t.nodeValue));const s=e.filter((t=>t instanceof RegExp));for(let t=0,e=s.length;t<e;t++)if(s[t].test(i))return!0;return!1},fi={"*":["class","dir","id","lang","role",/^aria-[\w-]*$/i],a:["target","href","title","rel"],area:[],b:[],br:[],col:[],code:[],div:[],em:[],hr:[],h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],i:[],img:["src","srcset","alt","title","width","height"],li:[],ol:[],p:[],pre:[],s:[],small:[],span:[],sub:[],sup:[],strong:[],u:[],ul:[]};function pi(t,e,i){if(!t.length)return t;if(i&&"function"==typeof i)return i(t);const s=(new window.DOMParser).parseFromString(t,"text/html"),n=Object.keys(e),o=[].concat(...s.body.querySelectorAll("*"));for(let t=0,i=o.length;t<i;t++){const i=o[t],s=i.nodeName.toLowerCase();if(!n.includes(s)){i.remove();continue}const r=[].concat(...i.attributes),a=[].concat(e["*"]||[],e[s]||[]);r.forEach((t=>{mi(t,a)||i.removeAttribute(t.nodeName)}))}return s.body.innerHTML}const bi="tooltip",vi=".coreui.tooltip",yi=new RegExp("(^|\\s)bs-tooltip\\S+","g"),Ei=new Set(["sanitize","allowList","sanitizeFn"]),wi={animation:"boolean",template:"string",title:"(string|element|function)",trigger:"string",delay:"(number|object)",html:"boolean",selector:"(string|boolean)",placement:"(string|function)",offset:"(array|string|function)",container:"(string|element|boolean)",fallbackPlacements:"array",boundary:"(string|element)",customClass:"(string|function)",sanitize:"boolean",sanitizeFn:"(null|function)",allowList:"object",popperConfig:"(null|object|function)"},Ai={AUTO:"auto",TOP:"top",RIGHT:v()?"left":"right",BOTTOM:"bottom",LEFT:v()?"right":"left"},Ti={animation:!0,template:'<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",title:"",delay:0,html:!1,selector:!1,placement:"top",offset:[0,0],container:!1,fallbackPlacements:["top","right","bottom","left"],boundary:"clippingParents",customClass:"",sanitize:!0,sanitizeFn:null,allowList:fi,popperConfig:null},Ci={HIDE:`hide${vi}`,HIDDEN:`hidden${vi}`,SHOW:`show${vi}`,SHOWN:`shown${vi}`,INSERTED:`inserted${vi}`,CLICK:`click${vi}`,FOCUSIN:`focusin${vi}`,FOCUSOUT:`focusout${vi}`,MOUSEENTER:`mouseenter${vi}`,MOUSELEAVE:`mouseleave${vi}`},Li="fade",ki="show",Oi="show",Ni="out",Di="hover",Ii="focus";class $i extends U{constructor(t,e){if(void 0===i)throw new TypeError("Bootstrap's tooltips require Popper (https://popper.js.org)");super(t),this._isEnabled=!0,this._timeout=0,this._hoverState="",this._activeTrigger={},this._popper=null,this._config=this._getConfig(e),this.tip=null,this._setListeners()}static get Default(){return Ti}static get NAME(){return bi}static get Event(){return Ci}static get DefaultType(){return wi}enable(){this._isEnabled=!0}disable(){this._isEnabled=!1}toggleEnabled(){this._isEnabled=!this._isEnabled}toggle(t){if(this._isEnabled)if(t){const e=this._initializeOnDelegatedTarget(t);e._activeTrigger.click=!e._activeTrigger.click,e._isWithActiveTrigger()?e._enter(null,e):e._leave(null,e)}else{if(this.getTipElement().classList.contains(ki))return void this._leave(null,this);this._enter(null,this)}}dispose(){clearTimeout(this._timeout),B.off(this._element.closest(".modal"),"hide.coreui.modal",this._hideModalHandler),this.tip&&this.tip.remove(),this._popper&&this._popper.destroy(),super.dispose()}show(){if("none"===this._element.style.display)throw new Error("Please use show on visible elements");if(!this.isWithContent()||!this._isEnabled)return;const t=B.trigger(this._element,this.constructor.Event.SHOW),e=_(this._element),s=null===e?this._element.ownerDocument.documentElement.contains(this._element):e.contains(this._element);if(t.defaultPrevented||!s)return;const n=this.getTipElement(),o=(t=>{do{t+=Math.floor(1e6*Math.random())}while(document.getElementById(t));return t})(this.constructor.NAME);n.setAttribute("id",o),this._element.setAttribute("aria-describedby",o),this.setContent(),this._config.animation&&n.classList.add(Li);const r="function"==typeof this._config.placement?this._config.placement.call(this,n,this._element):this._config.placement,a=this._getAttachment(r);this._addAttachmentClass(a);const{container:l}=this._config;q.set(n,this.constructor.DATA_KEY,this),this._element.ownerDocument.documentElement.contains(this.tip)||(l.appendChild(n),B.trigger(this._element,this.constructor.Event.INSERTED)),this._popper?this._popper.update():this._popper=i.createPopper(this._element,n,this._getPopperConfig(a)),n.classList.add(ki);const c="function"==typeof this._config.customClass?this._config.customClass():this._config.customClass;c&&n.classList.add(...c.split(" ")),"ontouchstart"in document.documentElement&&[].concat(...document.body.children).forEach((t=>{B.on(t,"mouseover",m)}));const h=this.tip.classList.contains(Li);this._queueCallback((()=>{const t=this._hoverState;this._hoverState=null,B.trigger(this._element,this.constructor.Event.SHOWN),t===Ni&&this._leave(null,this)}),this.tip,h)}hide(){if(!this._popper)return;const t=this.getTipElement();if(B.trigger(this._element,this.constructor.Event.HIDE).defaultPrevented)return;t.classList.remove(ki),"ontouchstart"in document.documentElement&&[].concat(...document.body.children).forEach((t=>B.off(t,"mouseover",m))),this._activeTrigger.click=!1,this._activeTrigger.focus=!1,this._activeTrigger.hover=!1;const e=this.tip.classList.contains(Li);this._queueCallback((()=>{this._isWithActiveTrigger()||(this._hoverState!==Oi&&t.remove(),this._cleanTipClass(),this._element.removeAttribute("aria-describedby"),B.trigger(this._element,this.constructor.Event.HIDDEN),this._popper&&(this._popper.destroy(),this._popper=null))}),this.tip,e),this._hoverState=""}update(){null!==this._popper&&this._popper.update()}isWithContent(){return Boolean(this.getTitle())}getTipElement(){if(this.tip)return this.tip;const t=document.createElement("div");return t.innerHTML=this._config.template,this.tip=t.children[0],this.tip}setContent(){const t=this.getTipElement();this.setElementContent(s.findOne(".tooltip-inner",t),this.getTitle()),t.classList.remove(Li,ki)}setElementContent(t,e){if(null!==t)return c(e)?(e=h(e),void(this._config.html?e.parentNode!==t&&(t.innerHTML="",t.appendChild(e)):t.textContent=e.textContent)):void(this._config.html?(this._config.sanitize&&(e=pi(e,this._config.allowList,this._config.sanitizeFn)),t.innerHTML=e):t.textContent=e)}getTitle(){let t=this._element.getAttribute("data-coreui-original-title");return t||(t="function"==typeof this._config.title?this._config.title.call(this._element):this._config.title),t}updateAttachment(t){return"right"===t?"end":"left"===t?"start":t}_initializeOnDelegatedTarget(t,e){const i=this.constructor.DATA_KEY;return(e=e||q.get(t.delegateTarget,i))||(e=new this.constructor(t.delegateTarget,this._getDelegateConfig()),q.set(t.delegateTarget,i,e)),e}_getOffset(){const{offset:t}=this._config;return"string"==typeof t?t.split(",").map((t=>Number.parseInt(t,10))):"function"==typeof t?e=>t(e,this._element):t}_getPopperConfig(t){const e={placement:t,modifiers:[{name:"flip",options:{fallbackPlacements:this._config.fallbackPlacements}},{name:"offset",options:{offset:this._getOffset()}},{name:"preventOverflow",options:{boundary:this._config.boundary}},{name:"arrow",options:{element:`.${this.constructor.NAME}-arrow`}},{name:"onChange",enabled:!0,phase:"afterWrite",fn:t=>this._handlePopperPlacementChange(t)}],onFirstUpdate:t=>{t.options.placement!==t.placement&&this._handlePopperPlacementChange(t)}};return{...e,..."function"==typeof this._config.popperConfig?this._config.popperConfig(e):this._config.popperConfig}}_addAttachmentClass(t){this.getTipElement().classList.add(`bs-tooltip-${this.updateAttachment(t)}`)}_getAttachment(t){return Ai[t.toUpperCase()]}_setListeners(){this._config.trigger.split(" ").forEach((t=>{if("click"===t)B.on(this._element,this.constructor.Event.CLICK,this._config.selector,(t=>this.toggle(t)));else if("manual"!==t){const e=t===Di?this.constructor.Event.MOUSEENTER:this.constructor.Event.FOCUSIN,i=t===Di?this.constructor.Event.MOUSELEAVE:this.constructor.Event.FOCUSOUT;B.on(this._element,e,this._config.selector,(t=>this._enter(t))),B.on(this._element,i,this._config.selector,(t=>this._leave(t)))}})),this._hideModalHandler=()=>{this._element&&this.hide()},B.on(this._element.closest(".modal"),"hide.coreui.modal",this._hideModalHandler),this._config.selector?this._config={...this._config,trigger:"manual",selector:""}:this._fixTitle()}_fixTitle(){const t=this._element.getAttribute("title"),e=typeof this._element.getAttribute("data-coreui-original-title");(t||"string"!==e)&&(this._element.setAttribute("data-coreui-original-title",t||""),!t||this._element.getAttribute("aria-label")||this._element.textContent||this._element.setAttribute("aria-label",t),this._element.setAttribute("title",""))}_enter(t,e){e=this._initializeOnDelegatedTarget(t,e),t&&(e._activeTrigger["focusin"===t.type?Ii:Di]=!0),e.getTipElement().classList.contains(ki)||e._hoverState===Oi?e._hoverState=Oi:(clearTimeout(e._timeout),e._hoverState=Oi,e._config.delay&&e._config.delay.show?e._timeout=setTimeout((()=>{e._hoverState===Oi&&e.show()}),e._config.delay.show):e.show())}_leave(t,e){e=this._initializeOnDelegatedTarget(t,e),t&&(e._activeTrigger["focusout"===t.type?Ii:Di]=e._element.contains(t.relatedTarget)),e._isWithActiveTrigger()||(clearTimeout(e._timeout),e._hoverState=Ni,e._config.delay&&e._config.delay.hide?e._timeout=setTimeout((()=>{e._hoverState===Ni&&e.hide()}),e._config.delay.hide):e.hide())}_isWithActiveTrigger(){for(const t in this._activeTrigger)if(this._activeTrigger[t])return!0;return!1}_getConfig(t){const e=Q.getDataAttributes(this._element);return Object.keys(e).forEach((t=>{Ei.has(t)&&delete e[t]})),(t={...this.constructor.Default,...e,..."object"==typeof t&&t?t:{}}).container=!1===t.container?document.body:h(t.container),"number"==typeof t.delay&&(t.delay={show:t.delay,hide:t.delay}),"number"==typeof t.title&&(t.title=t.title.toString()),"number"==typeof t.content&&(t.content=t.content.toString()),d(bi,t,this.constructor.DefaultType),t.sanitize&&(t.template=pi(t.template,t.allowList,t.sanitizeFn)),t}_getDelegateConfig(){const t={};if(this._config)for(const e in this._config)this.constructor.Default[e]!==this._config[e]&&(t[e]=this._config[e]);return t}_cleanTipClass(){const t=this.getTipElement(),e=t.getAttribute("class").match(yi);null!==e&&e.length>0&&e.map((t=>t.trim())).forEach((e=>t.classList.remove(e)))}_handlePopperPlacementChange(t){const{state:e}=t;e&&(this.tip=e.elements.popper,this._cleanTipClass(),this._addAttachmentClass(this._getAttachment(e.placement)))}static jQueryInterface(t){return this.each((function(){const e=$i.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}y($i);const Si=".coreui.popover",xi=new RegExp("(^|\\s)bs-popover\\S+","g"),Mi={...$i.Default,placement:"right",offset:[0,8],trigger:"click",content:"",template:'<div class="popover" role="tooltip"><div class="popover-arrow"></div><h3 class="popover-header"></h3><div class="popover-body"></div></div>'},Pi={...$i.DefaultType,content:"(string|element|function)"},ji={HIDE:`hide${Si}`,HIDDEN:`hidden${Si}`,SHOW:`show${Si}`,SHOWN:`shown${Si}`,INSERTED:`inserted${Si}`,CLICK:`click${Si}`,FOCUSIN:`focusin${Si}`,FOCUSOUT:`focusout${Si}`,MOUSEENTER:`mouseenter${Si}`,MOUSELEAVE:`mouseleave${Si}`},Hi=".popover-header",Bi=".popover-body";class Ri extends $i{static get Default(){return Mi}static get NAME(){return"popover"}static get Event(){return ji}static get DefaultType(){return Pi}isWithContent(){return this.getTitle()||this._getContent()}getTipElement(){return this.tip||(this.tip=super.getTipElement(),this.getTitle()||s.findOne(Hi,this.tip).remove(),this._getContent()||s.findOne(Bi,this.tip).remove()),this.tip}setContent(){const t=this.getTipElement();this.setElementContent(s.findOne(Hi,t),this.getTitle());let e=this._getContent();"function"==typeof e&&(e=e.call(this._element)),this.setElementContent(s.findOne(Bi,t),e),t.classList.remove("fade","show")}_addAttachmentClass(t){this.getTipElement().classList.add(`bs-popover-${this.updateAttachment(t)}`)}_getContent(){return this._element.getAttribute("data-coreui-content")||this._config.content}_cleanTipClass(){const t=this.getTipElement(),e=t.getAttribute("class").match(xi);null!==e&&e.length>0&&e.map((t=>t.trim())).forEach((e=>t.classList.remove(e)))}static jQueryInterface(t){return this.each((function(){const e=Ri.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}y(Ri);const qi="scrollspy",Ui=".coreui.scrollspy",Wi={offset:10,method:"auto",target:""},zi={offset:"number",method:"string",target:"(string|element)"},Fi=`activate${Ui}`,Vi=`scroll${Ui}`,Ki=`load${Ui}.data-api`,Qi="dropdown-item",Yi="active",Xi=".nav-link",Gi=".nav-link, .list-group-item, .dropdown-item",Zi="position";class Ji extends U{constructor(t,e){super(t),this._scrollElement="BODY"===this._element.tagName?window:this._element,this._config=this._getConfig(e),this._offsets=[],this._targets=[],this._activeTarget=null,this._scrollHeight=0,B.on(this._scrollElement,Vi,(()=>this._process())),this.refresh(),this._process()}static get Default(){return Wi}static get NAME(){return qi}refresh(){const t=this._scrollElement===this._scrollElement.window?"offset":Zi,e="auto"===this._config.method?t:this._config.method,i=e===Zi?this._getScrollTop():0;this._offsets=[],this._targets=[],this._scrollHeight=this._getScrollHeight();s.find(Gi,this._config.target).map((t=>{const n=r(t),o=n?s.findOne(n):null;if(o){const t=o.getBoundingClientRect();if(t.width||t.height)return[Q[e](o).top+i,n]}return null})).filter((t=>t)).sort(((t,e)=>t[0]-e[0])).forEach((t=>{this._offsets.push(t[0]),this._targets.push(t[1])}))}dispose(){B.off(this._scrollElement,Ui),super.dispose()}_getConfig(t){return(t={...Wi,...Q.getDataAttributes(this._element),..."object"==typeof t&&t?t:{}}).target=h(t.target)||document.documentElement,d(qi,t,zi),t}_getScrollTop(){return this._scrollElement===window?this._scrollElement.pageYOffset:this._scrollElement.scrollTop}_getScrollHeight(){return this._scrollElement.scrollHeight||Math.max(document.body.scrollHeight,document.documentElement.scrollHeight)}_getOffsetHeight(){return this._scrollElement===window?window.innerHeight:this._scrollElement.getBoundingClientRect().height}_process(){const t=this._getScrollTop()+this._config.offset,e=this._getScrollHeight(),i=this._config.offset+e-this._getOffsetHeight();if(this._scrollHeight!==e&&this.refresh(),t>=i){const t=this._targets[this._targets.length-1];this._activeTarget!==t&&this._activate(t)}else{if(this._activeTarget&&t<this._offsets[0]&&this._offsets[0]>0)return this._activeTarget=null,void this._clear();for(let e=this._offsets.length;e--;){this._activeTarget!==this._targets[e]&&t>=this._offsets[e]&&(void 0===this._offsets[e+1]||t<this._offsets[e+1])&&this._activate(this._targets[e])}}}_activate(t){this._activeTarget=t,this._clear();const e=Gi.split(",").map((e=>`${e}[data-coreui-target="${t}"],${e}[href="${t}"]`)),i=s.findOne(e.join(","),this._config.target);i.classList.add(Yi),i.classList.contains(Qi)?s.findOne(".dropdown-toggle",i.closest(".dropdown")).classList.add(Yi):s.parents(i,".nav, .list-group").forEach((t=>{s.prev(t,".nav-link, .list-group-item").forEach((t=>t.classList.add(Yi))),s.prev(t,".nav-item").forEach((t=>{s.children(t,Xi).forEach((t=>t.classList.add(Yi)))}))})),B.trigger(this._scrollElement,Fi,{relatedTarget:t})}_clear(){s.find(Gi,this._config.target).filter((t=>t.classList.contains(Yi))).forEach((t=>t.classList.remove(Yi)))}static jQueryInterface(t){return this.each((function(){const e=Ji.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}B.on(window,Ki,(()=>{s.find('[data-coreui-spy="scroll"]').forEach((t=>new Ji(t)))})),y(Ji);const ts="sidebar",es=".coreui.sidebar",is={},ss={},ns="hide",os="show",rs="sidebar-narrow",as="sidebar-narrow-unfoldable",ls=`hide${es}`,cs=`hidden${es}`,hs=`show${es}`,ds=`shown${es}`,us=`click${es}.data-api`,gs=`load${es}.data-api`,_s=".sidebar";class ms extends U{constructor(t,e){super(t),this._config=this._getConfig(e),this._show=this._isVisible(),this._mobile=this._isMobile(),this._overlaid=this._isOverlaid(),this._narrow=this._isNarrow(),this._unfoldable=this._isUnfoldable(),this._backdrop=null,this._addEventListeners()}static get Default(){return is}static get DefaultType(){return ss}static get NAME(){return ts}show(){B.trigger(this._element,hs),this._element.classList.contains(ns)&&this._element.classList.remove(ns),this._isMobile()&&(this._element.classList.add(os),this._showBackdrop());this._queueCallback((()=>{!0===this._isVisible()&&(this._show=!0,(this._isMobile()||this._isOverlaid())&&this._addClickOutListener(),B.trigger(this._element,ds))}),this._element,!0)}hide(){B.trigger(this._element,ls),this._element.classList.contains(os)&&this._element.classList.remove(os),this._isMobile()?this._removeBackdrop():this._element.classList.add(ns);this._queueCallback((()=>{!1===this._isVisible()&&(this._show=!1,(this._isMobile()||this._isOverlaid())&&this._removeClickOutListener(),B.trigger(this._element,cs))}),this._element,!0)}toggle(){this._isVisible()?this.hide():this.show()}narrow(){this._isMobile()||(this._addClassName(rs),this._narrow=!0)}unfoldable(){this._isMobile()||(this._addClassName(as),this._unfoldable=!0)}reset(){this._isMobile()||(this._narrow&&(this._element.classList.remove(rs),this._narrow=!1),this._unfoldable&&(this._element.classList.remove(as),this._unfoldable=!1))}toggleNarrow(){this._narrow?this.reset():this.narrow()}toggleUnfoldable(){this._unfoldable?this.reset():this.unfoldable()}_getConfig(t){return t={...is,...Q.getDataAttributes(this._element),..."object"==typeof t?t:{}},d(ts,t,ss),t}_isMobile(){return Boolean(window.getComputedStyle(this._element,null).getPropertyValue("--cui-is-mobile"))}_isNarrow(){return this._element.classList.contains(rs)}_isOverlaid(){return this._element.classList.contains("sidebar-overlaid")}_isUnfoldable(){return this._element.classList.contains(as)}_isVisible(){const t=this._element.getBoundingClientRect();return t.top>=0&&t.left>=0&&t.bottom<=(window.innerHeight||document.documentElement.clientHeight)&&t.right<=(window.innerWidth||document.documentElement.clientWidth)}_addClassName(t){this._element.classList.add(t)}_removeBackdrop(){this._backdrop&&(this._backdrop.parentNode.removeChild(this._backdrop),this._backdrop=null)}_showBackdrop(){this._backdrop||(this._backdrop=document.createElement("div"),this._backdrop.className="sidebar-backdrop",this._backdrop.classList.add("fade"),document.body.appendChild(this._backdrop),f(this._backdrop),this._backdrop.classList.add(os))}_clickOutListener(t,e){null===t.target.closest(_s)&&(t.preventDefault(),t.stopPropagation(),e.hide())}_addClickOutListener(){B.on(document,us,(t=>{this._clickOutListener(t,this)}))}_removeClickOutListener(){B.off(document,us)}_addEventListeners(){this._mobile&&this._show&&this._addClickOutListener(),this._overlaid&&this._show&&this._addClickOutListener(),B.on(this._element,us,"[data-coreui-toggle]",(t=>{t.preventDefault();const e=Q.getDataAttribute(t.target,"toggle");"narrow"===e&&this.toggleNarrow(),"unfoldable"===e&&this.toggleUnfoldable()})),B.on(this._element,us,'[data-coreui-close="sidebar"]',(t=>{t.preventDefault(),this.hide()})),B.on(window,"resize",(()=>{this._isMobile()&&this._isVisible()&&this.hide()}))}static sidebarInterface(t,e){const i=ms.getOrCreateInstance(t,e);if("string"==typeof e){if(void 0===i[e])throw new TypeError(`No method named "${e}"`);i[e]()}}static jQueryInterface(t){return this.each((function(){ms.sidebarInterface(this,t)}))}}B.on(window,gs,(()=>{Array.from(document.querySelectorAll(_s)).forEach((t=>{ms.sidebarInterface(t)}))})),y(ms);const fs="active",ps="fade",bs="show",vs=".active",ys=":scope > li > .active";class Es extends U{static get NAME(){return"tab"}show(){if(this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE&&this._element.classList.contains(fs))return;let t;const e=a(this._element),i=this._element.closest(".nav, .list-group");if(i){const e="UL"===i.nodeName||"OL"===i.nodeName?ys:vs;t=s.find(e,i),t=t[t.length-1]}const n=t?B.trigger(t,"hide.coreui.tab",{relatedTarget:this._element}):null;if(B.trigger(this._element,"show.coreui.tab",{relatedTarget:t}).defaultPrevented||null!==n&&n.defaultPrevented)return;this._activate(this._element,i);const o=()=>{B.trigger(t,"hidden.coreui.tab",{relatedTarget:this._element}),B.trigger(this._element,"shown.coreui.tab",{relatedTarget:t})};e?this._activate(e,e.parentNode,o):o()}_activate(t,e,i){const n=(!e||"UL"!==e.nodeName&&"OL"!==e.nodeName?s.children(e,vs):s.find(ys,e))[0],o=i&&n&&n.classList.contains(ps),r=()=>this._transitionComplete(t,n,i);n&&o?(n.classList.remove(bs),this._queueCallback(r,t,!0)):r()}_transitionComplete(t,e,i){if(e){e.classList.remove(fs);const t=s.findOne(":scope > .dropdown-menu .active",e.parentNode);t&&t.classList.remove(fs),"tab"===e.getAttribute("role")&&e.setAttribute("aria-selected",!1)}t.classList.add(fs),"tab"===t.getAttribute("role")&&t.setAttribute("aria-selected",!0),f(t),t.classList.contains(ps)&&t.classList.add(bs);let n=t.parentNode;if(n&&"LI"===n.nodeName&&(n=n.parentNode),n&&n.classList.contains("dropdown-menu")){const e=t.closest(".dropdown");e&&s.find(".dropdown-toggle",e).forEach((t=>t.classList.add(fs))),t.setAttribute("aria-expanded",!0)}i&&i()}static jQueryInterface(t){return this.each((function(){const e=Es.getOrCreateInstance(this);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}B.on(document,"click.coreui.tab.data-api",'[data-coreui-toggle="tab"], [data-coreui-toggle="pill"], [data-coreui-toggle="list"]',(function(t){if(["A","AREA"].includes(this.tagName)&&t.preventDefault(),g(this))return;Es.getOrCreateInstance(this).show()})),y(Es);const ws="toast",As=".coreui.toast",Ts=`click.dismiss${As}`,Cs=`mouseover${As}`,Ls=`mouseout${As}`,ks=`focusin${As}`,Os=`focusout${As}`,Ns=`hide${As}`,Ds=`hidden${As}`,Is=`show${As}`,$s=`shown${As}`,Ss="hide",xs="show",Ms="showing",Ps={animation:"boolean",autohide:"boolean",delay:"number"},js={animation:!0,autohide:!0,delay:5e3};class Hs extends U{constructor(t,e){super(t),this._config=this._getConfig(e),this._timeout=null,this._hasMouseInteraction=!1,this._hasKeyboardInteraction=!1,this._setListeners()}static get DefaultType(){return Ps}static get Default(){return js}static get NAME(){return ws}show(){if(B.trigger(this._element,Is).defaultPrevented)return;this._clearTimeout(),this._config.animation&&this._element.classList.add("fade");this._element.classList.remove(Ss),f(this._element),this._element.classList.add(Ms),this._queueCallback((()=>{this._element.classList.remove(Ms),this._element.classList.add(xs),B.trigger(this._element,$s),this._maybeScheduleHide()}),this._element,this._config.animation)}hide(){if(!this._element.classList.contains(xs))return;if(B.trigger(this._element,Ns).defaultPrevented)return;this._element.classList.remove(xs),this._queueCallback((()=>{this._element.classList.add(Ss),B.trigger(this._element,Ds)}),this._element,this._config.animation)}dispose(){this._clearTimeout(),this._element.classList.contains(xs)&&this._element.classList.remove(xs),super.dispose()}_getConfig(t){return t={...js,...Q.getDataAttributes(this._element),..."object"==typeof t&&t?t:{}},d(ws,t,this.constructor.DefaultType),t}_maybeScheduleHide(){this._config.autohide&&(this._hasMouseInteraction||this._hasKeyboardInteraction||(this._timeout=setTimeout((()=>{this.hide()}),this._config.delay)))}_onInteraction(t,e){switch(t.type){case"mouseover":case"mouseout":this._hasMouseInteraction=e;break;case"focusin":case"focusout":this._hasKeyboardInteraction=e}if(e)return void this._clearTimeout();const i=t.relatedTarget;this._element===i||this._element.contains(i)||this._maybeScheduleHide()}_setListeners(){B.on(this._element,Ts,'[data-coreui-dismiss="toast"]',(()=>this.hide())),B.on(this._element,Cs,(t=>this._onInteraction(t,!0))),B.on(this._element,Ls,(t=>this._onInteraction(t,!1))),B.on(this._element,ks,(t=>this._onInteraction(t,!0))),B.on(this._element,Os,(t=>this._onInteraction(t,!1)))}_clearTimeout(){clearTimeout(this._timeout),this._timeout=null}static jQueryInterface(t){return this.each((function(){const e=Hs.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}return y(Hs),{Alert:W,Button:F,Carousel:yt,Collapse:jt,Dropdown:he,Modal:Me,Navigation:Ye,OffCanvas:di,Popover:Ri,ScrollSpy:Ji,Sidebar:ms,Tab:Es,Toast:Hs,Tooltip:$i}}));
|
|
6
|
+
!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e(require("@popperjs/core")):"function"==typeof define&&define.amd?define(["@popperjs/core"],e):(t="undefined"!=typeof globalThis?globalThis:t||self).coreui=e(t.Popper)}(this,(function(t){"use strict";function e(t){if(t&&t.__esModule)return t;const e=Object.create(null);if(t)for(const i in t)if("default"!==i){const s=Object.getOwnPropertyDescriptor(t,i);Object.defineProperty(e,i,s.get?s:{enumerable:!0,get:()=>t[i]})}return e.default=t,Object.freeze(e)}const i=e(t),s="transitionend",n=t=>{let e=t.getAttribute("data-coreui-target");if(!e||"#"===e){let i=t.getAttribute("href");if(!i||!i.includes("#")&&!i.startsWith("."))return null;i.includes("#")&&!i.startsWith("#")&&(i=`#${i.split("#")[1]}`),e=i&&"#"!==i?i.trim():null}return e},o=t=>{const e=n(t);return e&&document.querySelector(e)?e:null},r=t=>{const e=n(t);return e?document.querySelector(e):null},a=t=>{t.dispatchEvent(new Event(s))},l=t=>!(!t||"object"!=typeof t)&&(void 0!==t.jquery&&(t=t[0]),void 0!==t.nodeType),c=t=>l(t)?t.jquery?t[0]:t:"string"==typeof t&&t.length>0?document.querySelector(t):null,h=(t,e,i)=>{Object.keys(i).forEach((s=>{const n=i[s],o=e[s],r=o&&l(o)?"element":null==(a=o)?`${a}`:{}.toString.call(a).match(/\s([a-z]+)/i)[1].toLowerCase();var a;if(!new RegExp(n).test(r))throw new TypeError(`${t.toUpperCase()}: Option "${s}" provided type "${r}" but expected type "${n}".`)}))},d=t=>!(!l(t)||0===t.getClientRects().length)&&"visible"===getComputedStyle(t).getPropertyValue("visibility"),u=t=>!t||t.nodeType!==Node.ELEMENT_NODE||!!t.classList.contains("disabled")||(void 0!==t.disabled?t.disabled:t.hasAttribute("disabled")&&"false"!==t.getAttribute("disabled")),_=t=>{if(!document.documentElement.attachShadow)return null;if("function"==typeof t.getRootNode){const e=t.getRootNode();return e instanceof ShadowRoot?e:null}return t instanceof ShadowRoot?t:t.parentNode?_(t.parentNode):null},g=()=>{},f=t=>{t.offsetHeight},m=()=>{const{jQuery:t}=window;return t&&!document.body.hasAttribute("data-coreui-no-jquery")?t:null},p=[],b=()=>"rtl"===document.documentElement.dir,v=t=>{var e;e=()=>{const e=m();if(e){const i=t.NAME,s=e.fn[i];e.fn[i]=t.jQueryInterface,e.fn[i].Constructor=t,e.fn[i].noConflict=()=>(e.fn[i]=s,t.jQueryInterface)}},"loading"===document.readyState?(p.length||document.addEventListener("DOMContentLoaded",(()=>{p.forEach((t=>t()))})),p.push(e)):e()},y=t=>{"function"==typeof t&&t()},E=(t,e,i=!0)=>{if(!i)return void y(t);const n=(t=>{if(!t)return 0;let{transitionDuration:e,transitionDelay:i}=window.getComputedStyle(t);const s=Number.parseFloat(e),n=Number.parseFloat(i);return s||n?(e=e.split(",")[0],i=i.split(",")[0],1e3*(Number.parseFloat(e)+Number.parseFloat(i))):0})(e)+5;let o=!1;const r=({target:i})=>{i===e&&(o=!0,e.removeEventListener(s,r),y(t))};e.addEventListener(s,r),setTimeout((()=>{o||a(e)}),n)},w=(t,e,i,s)=>{let n=t.indexOf(e);if(-1===n)return t[!i&&s?t.length-1:0];const o=t.length;return n+=i?1:-1,s&&(n=(n+o)%o),t[Math.max(0,Math.min(n,o-1))]},A=/[^.]*(?=\..*)\.|.*/,C=/\..*/,T=/::\d+$/,k={};let L=1;const N={mouseenter:"mouseover",mouseleave:"mouseout"},O=/^(mouseenter|mouseleave)/i,S=new Set(["click","dblclick","mouseup","mousedown","contextmenu","mousewheel","DOMMouseScroll","mouseover","mouseout","mousemove","selectstart","selectend","keydown","keypress","keyup","orientationchange","touchstart","touchmove","touchend","touchcancel","pointerdown","pointermove","pointerup","pointerleave","pointercancel","gesturestart","gesturechange","gestureend","focus","blur","change","reset","select","submit","focusin","focusout","load","unload","beforeunload","resize","move","DOMContentLoaded","readystatechange","error","abort","scroll"]);function D(t,e){return e&&`${e}::${L++}`||t.uidEvent||L++}function I(t){const e=D(t);return t.uidEvent=e,k[e]=k[e]||{},k[e]}function $(t,e,i=null){const s=Object.keys(t);for(let n=0,o=s.length;n<o;n++){const o=t[s[n]];if(o.originalHandler===e&&o.delegationSelector===i)return o}return null}function x(t,e,i){const s="string"==typeof e,n=s?i:e;let o=j(t);return S.has(o)||(o=t),[s,n,o]}function P(t,e,i,s,n){if("string"!=typeof e||!t)return;if(i||(i=s,s=null),O.test(e)){const t=t=>function(e){if(!e.relatedTarget||e.relatedTarget!==e.delegateTarget&&!e.delegateTarget.contains(e.relatedTarget))return t.call(this,e)};s?s=t(s):i=t(i)}const[o,r,a]=x(e,i,s),l=I(t),c=l[a]||(l[a]={}),h=$(c,r,o?i:null);if(h)return void(h.oneOff=h.oneOff&&n);const d=D(r,e.replace(A,"")),u=o?function(t,e,i){return function s(n){const o=t.querySelectorAll(e);for(let{target:r}=n;r&&r!==this;r=r.parentNode)for(let a=o.length;a--;)if(o[a]===r)return n.delegateTarget=r,s.oneOff&&H.off(t,n.type,e,i),i.apply(r,[n]);return null}}(t,i,s):function(t,e){return function i(s){return s.delegateTarget=t,i.oneOff&&H.off(t,s.type,e),e.apply(t,[s])}}(t,i);u.delegationSelector=o?i:null,u.originalHandler=r,u.oneOff=n,u.uidEvent=d,c[d]=u,t.addEventListener(a,u,o)}function M(t,e,i,s,n){const o=$(e[i],s,n);o&&(t.removeEventListener(i,o,Boolean(n)),delete e[i][o.uidEvent])}function j(t){return t=t.replace(C,""),N[t]||t}const H={on(t,e,i,s){P(t,e,i,s,!1)},one(t,e,i,s){P(t,e,i,s,!0)},off(t,e,i,s){if("string"!=typeof e||!t)return;const[n,o,r]=x(e,i,s),a=r!==e,l=I(t),c=e.startsWith(".");if(void 0!==o){if(!l||!l[r])return;return void M(t,l,r,o,n?i:null)}c&&Object.keys(l).forEach((i=>{!function(t,e,i,s){const n=e[i]||{};Object.keys(n).forEach((o=>{if(o.includes(s)){const s=n[o];M(t,e,i,s.originalHandler,s.delegationSelector)}}))}(t,l,i,e.slice(1))}));const h=l[r]||{};Object.keys(h).forEach((i=>{const s=i.replace(T,"");if(!a||e.includes(s)){const e=h[i];M(t,l,r,e.originalHandler,e.delegationSelector)}}))},trigger(t,e,i){if("string"!=typeof e||!t)return null;const s=m(),n=j(e),o=e!==n,r=S.has(n);let a,l=!0,c=!0,h=!1,d=null;return o&&s&&(a=s.Event(e,i),s(t).trigger(a),l=!a.isPropagationStopped(),c=!a.isImmediatePropagationStopped(),h=a.isDefaultPrevented()),r?(d=document.createEvent("HTMLEvents"),d.initEvent(n,l,!0)):d=new CustomEvent(e,{bubbles:l,cancelable:!0}),void 0!==i&&Object.keys(i).forEach((t=>{Object.defineProperty(d,t,{get:()=>i[t]})})),h&&d.preventDefault(),c&&t.dispatchEvent(d),d.defaultPrevented&&void 0!==a&&a.preventDefault(),d}},B=new Map,z={set(t,e,i){B.has(t)||B.set(t,new Map);const s=B.get(t);s.has(e)||0===s.size?s.set(e,i):console.error(`Bootstrap doesn't allow more than one instance per element. Bound instance: ${Array.from(s.keys())[0]}.`)},get:(t,e)=>B.has(t)&&B.get(t).get(e)||null,remove(t,e){if(!B.has(t))return;const i=B.get(t);i.delete(e),0===i.size&&B.delete(t)}};class R{constructor(t){(t=c(t))&&(this._element=t,z.set(this._element,this.constructor.DATA_KEY,this))}dispose(){z.remove(this._element,this.constructor.DATA_KEY),H.off(this._element,this.constructor.EVENT_KEY),Object.getOwnPropertyNames(this).forEach((t=>{this[t]=null}))}_queueCallback(t,e,i=!0){E(t,e,i)}static getInstance(t){return z.get(c(t),this.DATA_KEY)}static getOrCreateInstance(t,e={}){return this.getInstance(t)||new this(t,"object"==typeof e?e:null)}static get VERSION(){return"4.1.0"}static get NAME(){throw new Error('You have to implement the static method "NAME", for each component!')}static get DATA_KEY(){return`coreui.${this.NAME}`}static get EVENT_KEY(){return`.${this.DATA_KEY}`}}const q=(t,e="hide")=>{const i=`click.dismiss${t.EVENT_KEY}`,s=t.NAME;H.on(document,i,`[data-coreui-dismiss="${s}"]`,(function(i){if(["A","AREA"].includes(this.tagName)&&i.preventDefault(),u(this))return;const n=r(this)||this.closest(`.${s}`);t.getOrCreateInstance(n)[e]()}))};class W extends R{static get NAME(){return"alert"}close(){if(H.trigger(this._element,"close.coreui.alert").defaultPrevented)return;this._element.classList.remove("show");const t=this._element.classList.contains("fade");this._queueCallback((()=>this._destroyElement()),this._element,t)}_destroyElement(){this._element.remove(),H.trigger(this._element,"closed.coreui.alert"),this.dispose()}static jQueryInterface(t){return this.each((function(){const e=W.getOrCreateInstance(this);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}q(W,"close"),v(W);const F='[data-coreui-toggle="button"]';class U extends R{static get NAME(){return"button"}toggle(){this._element.setAttribute("aria-pressed",this._element.classList.toggle("active"))}static jQueryInterface(t){return this.each((function(){const e=U.getOrCreateInstance(this);"toggle"===t&&e[t]()}))}}function V(t){return"true"===t||"false"!==t&&(t===Number(t).toString()?Number(t):""===t||"null"===t?null:t)}function K(t){return t.replace(/[A-Z]/g,(t=>`-${t.toLowerCase()}`))}H.on(document,"click.coreui.button.data-api",F,(t=>{t.preventDefault();const e=t.target.closest(F);U.getOrCreateInstance(e).toggle()})),v(U);const Q={setDataAttribute(t,e,i){t.setAttribute(`data-coreui-${K(e)}`,i)},removeDataAttribute(t,e){t.removeAttribute(`data-coreui-${K(e)}`)},getDataAttributes(t){if(!t)return{};const e={};return Object.keys(t.dataset).filter((t=>t.startsWith("coreui"))).forEach((i=>{let s=i.replace(/^coreui/,"");s=s.charAt(0).toLowerCase()+s.slice(1,s.length),e[s]=V(t.dataset[i])})),e},getDataAttribute:(t,e)=>V(t.getAttribute(`data-coreui-${K(e)}`)),offset(t){const e=t.getBoundingClientRect();return{top:e.top+window.pageYOffset,left:e.left+window.pageXOffset}},position:t=>({top:t.offsetTop,left:t.offsetLeft})},Y={find:(t,e=document.documentElement)=>[].concat(...Element.prototype.querySelectorAll.call(e,t)),findOne:(t,e=document.documentElement)=>Element.prototype.querySelector.call(e,t),children:(t,e)=>[].concat(...t.children).filter((t=>t.matches(e))),parents(t,e){const i=[];let s=t.parentNode;for(;s&&s.nodeType===Node.ELEMENT_NODE&&3!==s.nodeType;)s.matches(e)&&i.push(s),s=s.parentNode;return i},prev(t,e){let i=t.previousElementSibling;for(;i;){if(i.matches(e))return[i];i=i.previousElementSibling}return[]},next(t,e){let i=t.nextElementSibling;for(;i;){if(i.matches(e))return[i];i=i.nextElementSibling}return[]},focusableChildren(t){const e=["a","button","input","textarea","select","details","[tabindex]",'[contenteditable="true"]'].map((t=>`${t}:not([tabindex^="-"])`)).join(", ");return this.find(e,t).filter((t=>!u(t)&&d(t)))}},X="carousel",G=".coreui.carousel",Z={interval:5e3,keyboard:!0,slide:!1,pause:"hover",wrap:!0,touch:!0},J={interval:"(number|boolean)",keyboard:"boolean",slide:"(boolean|string)",pause:"(string|boolean)",wrap:"boolean",touch:"boolean"},tt="next",et="prev",it="left",st="right",nt={ArrowLeft:st,ArrowRight:it},ot=`slide${G}`,rt=`slid${G}`,at=`keydown${G}`,lt=`mouseenter${G}`,ct=`mouseleave${G}`,ht=`touchstart${G}`,dt=`touchmove${G}`,ut=`touchend${G}`,_t=`pointerdown${G}`,gt=`pointerup${G}`,ft=`dragstart${G}`,mt=`load${G}.data-api`,pt=`click${G}.data-api`,bt="active",vt=".active.carousel-item";class yt extends R{constructor(t,e){super(t),this._items=null,this._interval=null,this._activeElement=null,this._isPaused=!1,this._isSliding=!1,this.touchTimeout=null,this.touchStartX=0,this.touchDeltaX=0,this._config=this._getConfig(e),this._indicatorsElement=Y.findOne(".carousel-indicators",this._element),this._touchSupported="ontouchstart"in document.documentElement||navigator.maxTouchPoints>0,this._pointerEvent=Boolean(window.PointerEvent),this._addEventListeners()}static get Default(){return Z}static get NAME(){return X}next(){this._slide(tt)}nextWhenVisible(){!document.hidden&&d(this._element)&&this.next()}prev(){this._slide(et)}pause(t){t||(this._isPaused=!0),Y.findOne(".carousel-item-next, .carousel-item-prev",this._element)&&(a(this._element),this.cycle(!0)),clearInterval(this._interval),this._interval=null}cycle(t){t||(this._isPaused=!1),this._interval&&(clearInterval(this._interval),this._interval=null),this._config&&this._config.interval&&!this._isPaused&&(this._updateInterval(),this._interval=setInterval((document.visibilityState?this.nextWhenVisible:this.next).bind(this),this._config.interval))}to(t){this._activeElement=Y.findOne(vt,this._element);const e=this._getItemIndex(this._activeElement);if(t>this._items.length-1||t<0)return;if(this._isSliding)return void H.one(this._element,rt,(()=>this.to(t)));if(e===t)return this.pause(),void this.cycle();const i=t>e?tt:et;this._slide(i,this._items[t])}_getConfig(t){return t={...Z,...Q.getDataAttributes(this._element),..."object"==typeof t?t:{}},h(X,t,J),t}_handleSwipe(){const t=Math.abs(this.touchDeltaX);if(t<=40)return;const e=t/this.touchDeltaX;this.touchDeltaX=0,e&&this._slide(e>0?st:it)}_addEventListeners(){this._config.keyboard&&H.on(this._element,at,(t=>this._keydown(t))),"hover"===this._config.pause&&(H.on(this._element,lt,(t=>this.pause(t))),H.on(this._element,ct,(t=>this.cycle(t)))),this._config.touch&&this._touchSupported&&this._addTouchEventListeners()}_addTouchEventListeners(){const t=t=>this._pointerEvent&&("pen"===t.pointerType||"touch"===t.pointerType),e=e=>{t(e)?this.touchStartX=e.clientX:this._pointerEvent||(this.touchStartX=e.touches[0].clientX)},i=t=>{this.touchDeltaX=t.touches&&t.touches.length>1?0:t.touches[0].clientX-this.touchStartX},s=e=>{t(e)&&(this.touchDeltaX=e.clientX-this.touchStartX),this._handleSwipe(),"hover"===this._config.pause&&(this.pause(),this.touchTimeout&&clearTimeout(this.touchTimeout),this.touchTimeout=setTimeout((t=>this.cycle(t)),500+this._config.interval))};Y.find(".carousel-item img",this._element).forEach((t=>{H.on(t,ft,(t=>t.preventDefault()))})),this._pointerEvent?(H.on(this._element,_t,(t=>e(t))),H.on(this._element,gt,(t=>s(t))),this._element.classList.add("pointer-event")):(H.on(this._element,ht,(t=>e(t))),H.on(this._element,dt,(t=>i(t))),H.on(this._element,ut,(t=>s(t))))}_keydown(t){if(/input|textarea/i.test(t.target.tagName))return;const e=nt[t.key];e&&(t.preventDefault(),this._slide(e))}_getItemIndex(t){return this._items=t&&t.parentNode?Y.find(".carousel-item",t.parentNode):[],this._items.indexOf(t)}_getItemByOrder(t,e){const i=t===tt;return w(this._items,e,i,this._config.wrap)}_triggerSlideEvent(t,e){const i=this._getItemIndex(t),s=this._getItemIndex(Y.findOne(vt,this._element));return H.trigger(this._element,ot,{relatedTarget:t,direction:e,from:s,to:i})}_setActiveIndicatorElement(t){if(this._indicatorsElement){const e=Y.findOne(".active",this._indicatorsElement);e.classList.remove(bt),e.removeAttribute("aria-current");const i=Y.find("[data-coreui-target]",this._indicatorsElement);for(let e=0;e<i.length;e++)if(Number.parseInt(i[e].getAttribute("data-coreui-slide-to"),10)===this._getItemIndex(t)){i[e].classList.add(bt),i[e].setAttribute("aria-current","true");break}}}_updateInterval(){const t=this._activeElement||Y.findOne(vt,this._element);if(!t)return;const e=Number.parseInt(t.getAttribute("data-coreui-interval"),10);e?(this._config.defaultInterval=this._config.defaultInterval||this._config.interval,this._config.interval=e):this._config.interval=this._config.defaultInterval||this._config.interval}_slide(t,e){const i=this._directionToOrder(t),s=Y.findOne(vt,this._element),n=this._getItemIndex(s),o=e||this._getItemByOrder(i,s),r=this._getItemIndex(o),a=Boolean(this._interval),l=i===tt,c=l?"carousel-item-start":"carousel-item-end",h=l?"carousel-item-next":"carousel-item-prev",d=this._orderToDirection(i);if(o&&o.classList.contains(bt))return void(this._isSliding=!1);if(this._isSliding)return;if(this._triggerSlideEvent(o,d).defaultPrevented)return;if(!s||!o)return;this._isSliding=!0,a&&this.pause(),this._setActiveIndicatorElement(o),this._activeElement=o;const u=()=>{H.trigger(this._element,rt,{relatedTarget:o,direction:d,from:n,to:r})};if(this._element.classList.contains("slide")){o.classList.add(h),f(o),s.classList.add(c),o.classList.add(c);const t=()=>{o.classList.remove(c,h),o.classList.add(bt),s.classList.remove(bt,h,c),this._isSliding=!1,setTimeout(u,0)};this._queueCallback(t,s,!0)}else s.classList.remove(bt),o.classList.add(bt),this._isSliding=!1,u();a&&this.cycle()}_directionToOrder(t){return[st,it].includes(t)?b()?t===it?et:tt:t===it?tt:et:t}_orderToDirection(t){return[tt,et].includes(t)?b()?t===et?it:st:t===et?st:it:t}static carouselInterface(t,e){const i=yt.getOrCreateInstance(t,e);let{_config:s}=i;"object"==typeof e&&(s={...s,...e});const n="string"==typeof e?e:s.slide;if("number"==typeof e)i.to(e);else if("string"==typeof n){if(void 0===i[n])throw new TypeError(`No method named "${n}"`);i[n]()}else s.interval&&s.ride&&(i.pause(),i.cycle())}static jQueryInterface(t){return this.each((function(){yt.carouselInterface(this,t)}))}static dataApiClickHandler(t){const e=r(this);if(!e||!e.classList.contains("carousel"))return;const i={...Q.getDataAttributes(e),...Q.getDataAttributes(this)},s=this.getAttribute("data-coreui-slide-to");s&&(i.interval=!1),yt.carouselInterface(e,i),s&&yt.getInstance(e).to(s),t.preventDefault()}}H.on(document,pt,"[data-coreui-slide], [data-coreui-slide-to]",yt.dataApiClickHandler),H.on(window,mt,(()=>{const t=Y.find('[data-coreui-ride="carousel"]');for(let e=0,i=t.length;e<i;e++)yt.carouselInterface(t[e],yt.getInstance(t[e]))})),v(yt);const Et="collapse",wt="coreui.collapse",At=`.${wt}`,Ct={toggle:!0,parent:null},Tt={toggle:"boolean",parent:"(null|element)"},kt=`show${At}`,Lt=`shown${At}`,Nt=`hide${At}`,Ot=`hidden${At}`,St=`click${At}.data-api`,Dt="show",It="collapse",$t="collapsing",xt="collapsed",Pt=":scope .collapse .collapse",Mt='[data-coreui-toggle="collapse"]';class jt extends R{constructor(t,e){super(t),this._isTransitioning=!1,this._config=this._getConfig(e),this._triggerArray=[];const i=Y.find(Mt);for(let t=0,e=i.length;t<e;t++){const e=i[t],s=o(e),n=Y.find(s).filter((t=>t===this._element));null!==s&&n.length&&(this._selector=s,this._triggerArray.push(e))}this._initializeChildren(),this._config.parent||this._addAriaAndCollapsedClass(this._triggerArray,this._isShown()),this._config.toggle&&this.toggle()}static get Default(){return Ct}static get NAME(){return Et}toggle(){this._isShown()?this.hide():this.show()}show(){if(this._isTransitioning||this._isShown())return;let t,e=[];if(this._config.parent){const t=Y.find(Pt,this._config.parent);e=Y.find(".collapse.show, .collapse.collapsing",this._config.parent).filter((e=>!t.includes(e)))}const i=Y.findOne(this._selector);if(e.length){const s=e.find((t=>i!==t));if(t=s?jt.getInstance(s):null,t&&t._isTransitioning)return}if(H.trigger(this._element,kt).defaultPrevented)return;e.forEach((e=>{i!==e&&jt.getOrCreateInstance(e,{toggle:!1}).hide(),t||z.set(e,wt,null)}));const s=this._getDimension();this._element.classList.remove(It),this._element.classList.add($t),this._element.style[s]=0,this._addAriaAndCollapsedClass(this._triggerArray,!0),this._isTransitioning=!0;const n=`scroll${s[0].toUpperCase()+s.slice(1)}`;this._queueCallback((()=>{this._isTransitioning=!1,this._element.classList.remove($t),this._element.classList.add(It,Dt),this._element.style[s]="",H.trigger(this._element,Lt)}),this._element,!0),this._element.style[s]=`${this._element[n]}px`}hide(){if(this._isTransitioning||!this._isShown())return;if(H.trigger(this._element,Nt).defaultPrevented)return;const t=this._getDimension();this._element.style[t]=`${this._element.getBoundingClientRect()[t]}px`,f(this._element),this._element.classList.add($t),this._element.classList.remove(It,Dt);const e=this._triggerArray.length;for(let t=0;t<e;t++){const e=this._triggerArray[t],i=r(e);i&&!this._isShown(i)&&this._addAriaAndCollapsedClass([e],!1)}this._isTransitioning=!0,this._element.style[t]="",this._queueCallback((()=>{this._isTransitioning=!1,this._element.classList.remove($t),this._element.classList.add(It),H.trigger(this._element,Ot)}),this._element,!0)}_isShown(t=this._element){return t.classList.contains(Dt)}_getConfig(t){return(t={...Ct,...Q.getDataAttributes(this._element),...t}).toggle=Boolean(t.toggle),t.parent=c(t.parent),h(Et,t,Tt),t}_getDimension(){return this._element.classList.contains("collapse-horizontal")?"width":"height"}_initializeChildren(){if(!this._config.parent)return;const t=Y.find(Pt,this._config.parent);Y.find(Mt,this._config.parent).filter((e=>!t.includes(e))).forEach((t=>{const e=r(t);e&&this._addAriaAndCollapsedClass([t],this._isShown(e))}))}_addAriaAndCollapsedClass(t,e){t.length&&t.forEach((t=>{e?t.classList.remove(xt):t.classList.add(xt),t.setAttribute("aria-expanded",e)}))}static jQueryInterface(t){return this.each((function(){const e={};"string"==typeof t&&/show|hide/.test(t)&&(e.toggle=!1);const i=jt.getOrCreateInstance(this,e);if("string"==typeof t){if(void 0===i[t])throw new TypeError(`No method named "${t}"`);i[t]()}}))}}H.on(document,St,Mt,(function(t){("A"===t.target.tagName||t.delegateTarget&&"A"===t.delegateTarget.tagName)&&t.preventDefault();const e=o(this);Y.find(e).forEach((t=>{jt.getOrCreateInstance(t,{toggle:!1}).toggle()}))})),v(jt);const Ht="dropdown",Bt=".coreui.dropdown",zt="Escape",Rt="Space",qt="ArrowUp",Wt="ArrowDown",Ft=new RegExp("ArrowUp|ArrowDown|Escape"),Ut=`hide${Bt}`,Vt=`hidden${Bt}`,Kt=`show${Bt}`,Qt=`shown${Bt}`,Yt=`click${Bt}.data-api`,Xt=`keydown${Bt}.data-api`,Gt=`keyup${Bt}.data-api`,Zt="show",Jt='[data-coreui-toggle="dropdown"]',te=".dropdown-menu",ee=b()?"top-end":"top-start",ie=b()?"top-start":"top-end",se=b()?"bottom-end":"bottom-start",ne=b()?"bottom-start":"bottom-end",oe=b()?"left-start":"right-start",re=b()?"right-start":"left-start",ae={offset:[0,2],boundary:"clippingParents",reference:"toggle",display:"dynamic",popperConfig:null,autoClose:!0},le={offset:"(array|string|function)",boundary:"(string|element)",reference:"(string|element|object)",display:"string",popperConfig:"(null|object|function)",autoClose:"(boolean|string)"};class ce extends R{constructor(t,e){super(t),this._popper=null,this._config=this._getConfig(e),this._menu=this._getMenuElement(),this._inNavbar=this._detectNavbar()}static get Default(){return ae}static get DefaultType(){return le}static get NAME(){return Ht}toggle(){return this._isShown()?this.hide():this.show()}show(){if(u(this._element)||this._isShown(this._menu))return;const t={relatedTarget:this._element};if(H.trigger(this._element,Kt,t).defaultPrevented)return;const e=ce.getParentFromElement(this._element);this._inNavbar?Q.setDataAttribute(this._menu,"popper","none"):this._createPopper(e),"ontouchstart"in document.documentElement&&!e.closest(".navbar-nav")&&[].concat(...document.body.children).forEach((t=>H.on(t,"mouseover",g))),this._element.focus(),this._element.setAttribute("aria-expanded",!0),this._menu.classList.add(Zt),this._element.classList.add(Zt),H.trigger(this._element,Qt,t)}hide(){if(u(this._element)||!this._isShown(this._menu))return;const t={relatedTarget:this._element};this._completeHide(t)}dispose(){this._popper&&this._popper.destroy(),super.dispose()}update(){this._inNavbar=this._detectNavbar(),this._popper&&this._popper.update()}_completeHide(t){H.trigger(this._element,Ut,t).defaultPrevented||("ontouchstart"in document.documentElement&&[].concat(...document.body.children).forEach((t=>H.off(t,"mouseover",g))),this._popper&&this._popper.destroy(),this._menu.classList.remove(Zt),this._element.classList.remove(Zt),this._element.setAttribute("aria-expanded","false"),Q.removeDataAttribute(this._menu,"popper"),H.trigger(this._element,Vt,t))}_getConfig(t){if(t={...this.constructor.Default,...Q.getDataAttributes(this._element),...t},h(Ht,t,this.constructor.DefaultType),"object"==typeof t.reference&&!l(t.reference)&&"function"!=typeof t.reference.getBoundingClientRect)throw new TypeError(`${Ht.toUpperCase()}: Option "reference" provided type "object" without a required "getBoundingClientRect" method.`);return t}_createPopper(t){if(void 0===i)throw new TypeError("Bootstrap's dropdowns require Popper (https://popper.js.org)");let e=this._element;"parent"===this._config.reference?e=t:l(this._config.reference)?e=c(this._config.reference):"object"==typeof this._config.reference&&(e=this._config.reference);const s=this._getPopperConfig(),n=s.modifiers.find((t=>"applyStyles"===t.name&&!1===t.enabled));this._popper=i.createPopper(e,this._menu,s),n&&Q.setDataAttribute(this._menu,"popper","static")}_isShown(t=this._element){return t.classList.contains(Zt)}_getMenuElement(){return Y.next(this._element,te)[0]}_getPlacement(){const t=this._element.parentNode;if(t.classList.contains("dropend"))return oe;if(t.classList.contains("dropstart"))return re;const e="end"===getComputedStyle(this._menu).getPropertyValue("--cui-position").trim();return t.classList.contains("dropup")?e?ie:ee:e?ne:se}_detectNavbar(){return null!==this._element.closest(".navbar")}_getOffset(){const{offset:t}=this._config;return"string"==typeof t?t.split(",").map((t=>Number.parseInt(t,10))):"function"==typeof t?e=>t(e,this._element):t}_getPopperConfig(){const t={placement:this._getPlacement(),modifiers:[{name:"preventOverflow",options:{boundary:this._config.boundary}},{name:"offset",options:{offset:this._getOffset()}}]};return"static"===this._config.display&&(t.modifiers=[{name:"applyStyles",enabled:!1}]),{...t,..."function"==typeof this._config.popperConfig?this._config.popperConfig(t):this._config.popperConfig}}_selectMenuItem({key:t,target:e}){const i=Y.find(".dropdown-menu .dropdown-item:not(.disabled):not(:disabled)",this._menu).filter(d);i.length&&w(i,e,t===Wt,!i.includes(e)).focus()}static jQueryInterface(t){return this.each((function(){const e=ce.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}static clearMenus(t){if(t&&(2===t.button||"keyup"===t.type&&"Tab"!==t.key))return;const e=Y.find(Jt);for(let i=0,s=e.length;i<s;i++){const s=ce.getInstance(e[i]);if(!s||!1===s._config.autoClose)continue;if(!s._isShown())continue;const n={relatedTarget:s._element};if(t){const e=t.composedPath(),i=e.includes(s._menu);if(e.includes(s._element)||"inside"===s._config.autoClose&&!i||"outside"===s._config.autoClose&&i)continue;if(s._menu.contains(t.target)&&("keyup"===t.type&&"Tab"===t.key||/input|select|option|textarea|form/i.test(t.target.tagName)))continue;"click"===t.type&&(n.clickEvent=t)}s._completeHide(n)}}static getParentFromElement(t){return r(t)||t.parentNode}static dataApiKeydownHandler(t){if(/input|textarea/i.test(t.target.tagName)?t.key===Rt||t.key!==zt&&(t.key!==Wt&&t.key!==qt||t.target.closest(te)):!Ft.test(t.key))return;const e=this.classList.contains(Zt);if(!e&&t.key===zt)return;if(t.preventDefault(),t.stopPropagation(),u(this))return;const i=this.matches(Jt)?this:Y.prev(this,Jt)[0],s=ce.getOrCreateInstance(i);if(t.key!==zt)return t.key===qt||t.key===Wt?(e||s.show(),void s._selectMenuItem(t)):void(e&&t.key!==Rt||ce.clearMenus());s.hide()}}H.on(document,Xt,Jt,ce.dataApiKeydownHandler),H.on(document,Xt,te,ce.dataApiKeydownHandler),H.on(document,Yt,ce.clearMenus),H.on(document,Gt,ce.clearMenus),H.on(document,Yt,Jt,(function(t){t.preventDefault(),ce.getOrCreateInstance(this).toggle()})),v(ce);const he=".fixed-top, .fixed-bottom, .is-fixed, .sticky-top",de=".sticky-top";class ue{constructor(){this._element=document.body}getWidth(){const t=document.documentElement.clientWidth;return Math.abs(window.innerWidth-t)}hide(){const t=this.getWidth();this._disableOverFlow(),this._setElementAttributes(this._element,"paddingRight",(e=>e+t)),this._setElementAttributes(he,"paddingRight",(e=>e+t)),this._setElementAttributes(de,"marginRight",(e=>e-t))}_disableOverFlow(){this._saveInitialAttribute(this._element,"overflow"),this._element.style.overflow="hidden"}_setElementAttributes(t,e,i){const s=this.getWidth();this._applyManipulationCallback(t,(t=>{if(t!==this._element&&window.innerWidth>t.clientWidth+s)return;this._saveInitialAttribute(t,e);const n=window.getComputedStyle(t)[e];t.style[e]=`${i(Number.parseFloat(n))}px`}))}reset(){this._resetElementAttributes(this._element,"overflow"),this._resetElementAttributes(this._element,"paddingRight"),this._resetElementAttributes(he,"paddingRight"),this._resetElementAttributes(de,"marginRight")}_saveInitialAttribute(t,e){const i=t.style[e];i&&Q.setDataAttribute(t,e,i)}_resetElementAttributes(t,e){this._applyManipulationCallback(t,(t=>{const i=Q.getDataAttribute(t,e);void 0===i?t.style.removeProperty(e):(Q.removeDataAttribute(t,e),t.style[e]=i)}))}_applyManipulationCallback(t,e){l(t)?e(t):Y.find(t,this._element).forEach(e)}isOverflowing(){return this.getWidth()>0}}const _e={className:"modal-backdrop",isVisible:!0,isAnimated:!1,rootElement:"body",clickCallback:null},ge={className:"string",isVisible:"boolean",isAnimated:"boolean",rootElement:"(element|string)",clickCallback:"(function|null)"},fe="show",me="mousedown.coreui.backdrop";class pe{constructor(t){this._config=this._getConfig(t),this._isAppended=!1,this._element=null}show(t){this._config.isVisible?(this._append(),this._config.isAnimated&&f(this._getElement()),this._getElement().classList.add(fe),this._emulateAnimation((()=>{y(t)}))):y(t)}hide(t){this._config.isVisible?(this._getElement().classList.remove(fe),this._emulateAnimation((()=>{this.dispose(),y(t)}))):y(t)}_getElement(){if(!this._element){const t=document.createElement("div");t.className=this._config.className,this._config.isAnimated&&t.classList.add("fade"),this._element=t}return this._element}_getConfig(t){return(t={..._e,..."object"==typeof t?t:{}}).rootElement=c(t.rootElement),h("backdrop",t,ge),t}_append(){this._isAppended||(this._config.rootElement.append(this._getElement()),H.on(this._getElement(),me,(()=>{y(this._config.clickCallback)})),this._isAppended=!0)}dispose(){this._isAppended&&(H.off(this._element,me),this._element.remove(),this._isAppended=!1)}_emulateAnimation(t){E(t,this._getElement(),this._config.isAnimated)}}const be={trapElement:null,autofocus:!0},ve={trapElement:"element",autofocus:"boolean"},ye=".coreui.focustrap",Ee=`focusin${ye}`,we=`keydown.tab${ye}`,Ae="backward";class Ce{constructor(t){this._config=this._getConfig(t),this._isActive=!1,this._lastTabNavDirection=null}activate(){const{trapElement:t,autofocus:e}=this._config;this._isActive||(e&&t.focus(),H.off(document,ye),H.on(document,Ee,(t=>this._handleFocusin(t))),H.on(document,we,(t=>this._handleKeydown(t))),this._isActive=!0)}deactivate(){this._isActive&&(this._isActive=!1,H.off(document,ye))}_handleFocusin(t){const{target:e}=t,{trapElement:i}=this._config;if(e===document||e===i||i.contains(e))return;const s=Y.focusableChildren(i);0===s.length?i.focus():this._lastTabNavDirection===Ae?s[s.length-1].focus():s[0].focus()}_handleKeydown(t){"Tab"===t.key&&(this._lastTabNavDirection=t.shiftKey?Ae:"forward")}_getConfig(t){return t={...be,..."object"==typeof t?t:{}},h("focustrap",t,ve),t}}const Te="modal",ke="Escape",Le={backdrop:!0,keyboard:!0,focus:!0},Ne={backdrop:"(boolean|string)",keyboard:"boolean",focus:"boolean"},Oe="hidden.coreui.modal",Se="show.coreui.modal",De="resize.coreui.modal",Ie="click.dismiss.coreui.modal",$e="keydown.dismiss.coreui.modal",xe="mousedown.dismiss.coreui.modal",Pe="modal-open",Me="show",je="modal-static";class He extends R{constructor(t,e){super(t),this._config=this._getConfig(e),this._dialog=Y.findOne(".modal-dialog",this._element),this._backdrop=this._initializeBackDrop(),this._focustrap=this._initializeFocusTrap(),this._isShown=!1,this._ignoreBackdropClick=!1,this._isTransitioning=!1,this._scrollBar=new ue}static get Default(){return Le}static get NAME(){return Te}toggle(t){return this._isShown?this.hide():this.show(t)}show(t){this._isShown||this._isTransitioning||H.trigger(this._element,Se,{relatedTarget:t}).defaultPrevented||(this._isShown=!0,this._isAnimated()&&(this._isTransitioning=!0),this._scrollBar.hide(),document.body.classList.add(Pe),this._adjustDialog(),this._setEscapeEvent(),this._setResizeEvent(),H.on(this._dialog,xe,(()=>{H.one(this._element,"mouseup.dismiss.coreui.modal",(t=>{t.target===this._element&&(this._ignoreBackdropClick=!0)}))})),this._showBackdrop((()=>this._showElement(t))))}hide(){if(!this._isShown||this._isTransitioning)return;if(H.trigger(this._element,"hide.coreui.modal").defaultPrevented)return;this._isShown=!1;const t=this._isAnimated();t&&(this._isTransitioning=!0),this._setEscapeEvent(),this._setResizeEvent(),this._focustrap.deactivate(),this._element.classList.remove(Me),H.off(this._element,Ie),H.off(this._dialog,xe),this._queueCallback((()=>this._hideModal()),this._element,t)}dispose(){[window,this._dialog].forEach((t=>H.off(t,".coreui.modal"))),this._backdrop.dispose(),this._focustrap.deactivate(),super.dispose()}handleUpdate(){this._adjustDialog()}_initializeBackDrop(){return new pe({isVisible:Boolean(this._config.backdrop),isAnimated:this._isAnimated()})}_initializeFocusTrap(){return new Ce({trapElement:this._element})}_getConfig(t){return t={...Le,...Q.getDataAttributes(this._element),..."object"==typeof t?t:{}},h(Te,t,Ne),t}_showElement(t){const e=this._isAnimated(),i=Y.findOne(".modal-body",this._dialog);this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE||document.body.append(this._element),this._element.style.display="block",this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),this._element.scrollTop=0,i&&(i.scrollTop=0),e&&f(this._element),this._element.classList.add(Me),this._queueCallback((()=>{this._config.focus&&this._focustrap.activate(),this._isTransitioning=!1,H.trigger(this._element,"shown.coreui.modal",{relatedTarget:t})}),this._dialog,e)}_setEscapeEvent(){this._isShown?H.on(this._element,$e,(t=>{this._config.keyboard&&t.key===ke?(t.preventDefault(),this.hide()):this._config.keyboard||t.key!==ke||this._triggerBackdropTransition()})):H.off(this._element,$e)}_setResizeEvent(){this._isShown?H.on(window,De,(()=>this._adjustDialog())):H.off(window,De)}_hideModal(){this._element.style.display="none",this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._isTransitioning=!1,this._backdrop.hide((()=>{document.body.classList.remove(Pe),this._resetAdjustments(),this._scrollBar.reset(),H.trigger(this._element,Oe)}))}_showBackdrop(t){H.on(this._element,Ie,(t=>{this._ignoreBackdropClick?this._ignoreBackdropClick=!1:t.target===t.currentTarget&&(!0===this._config.backdrop?this.hide():"static"===this._config.backdrop&&this._triggerBackdropTransition())})),this._backdrop.show(t)}_isAnimated(){return this._element.classList.contains("fade")}_triggerBackdropTransition(){if(H.trigger(this._element,"hidePrevented.coreui.modal").defaultPrevented)return;const{classList:t,scrollHeight:e,style:i}=this._element,s=e>document.documentElement.clientHeight;!s&&"hidden"===i.overflowY||t.contains(je)||(s||(i.overflowY="hidden"),t.add(je),this._queueCallback((()=>{t.remove(je),s||this._queueCallback((()=>{i.overflowY=""}),this._dialog)}),this._dialog),this._element.focus())}_adjustDialog(){const t=this._element.scrollHeight>document.documentElement.clientHeight,e=this._scrollBar.getWidth(),i=e>0;(!i&&t&&!b()||i&&!t&&b())&&(this._element.style.paddingLeft=`${e}px`),(i&&!t&&!b()||!i&&t&&b())&&(this._element.style.paddingRight=`${e}px`)}_resetAdjustments(){this._element.style.paddingLeft="",this._element.style.paddingRight=""}static jQueryInterface(t,e){return this.each((function(){const i=He.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===i[t])throw new TypeError(`No method named "${t}"`);i[t](e)}}))}}H.on(document,"click.coreui.modal.data-api",'[data-coreui-toggle="modal"]',(function(t){const e=r(this);["A","AREA"].includes(this.tagName)&&t.preventDefault(),H.one(e,Se,(t=>{t.defaultPrevented||H.one(e,Oe,(()=>{d(this)&&this.focus()}))}));const i=Y.findOne(".modal.show");i&&He.getInstance(i).hide(),He.getOrCreateInstance(e).toggle(this)})),q(He),v(He);const Be="navigation",ze="coreui.navigation",Re=`.${ze}`,qe={activeLinksExact:!0,groupsAutoCollapse:!0},We={activeLinksExact:"boolean",groupsAutoCollapse:"(string|boolean)"},Fe="active",Ue="show",Ve="nav-group-toggle",Ke=`click${Re}.data-api`,Qe=`load${Re}.data-api`,Ye=".nav-group",Xe=".nav-group-items",Ge=".nav-group-toggle";class Ze extends R{constructor(t,e){super(t),this._config=this._getConfig(e),this._setActiveLink(),this._addEventListeners(),z.set(t,ze,this)}static get Default(){return qe}static get DATA_KEY(){return ze}static get DefaultType(){return We}static get NAME(){return Be}_getConfig(t){return t={...qe,...Q.getDataAttributes(this._element),..."object"==typeof t?t:{}},h(Be,t,We),t}_setActiveLink(){Array.from(this._element.querySelectorAll(".nav-link")).forEach((t=>{if(t.classList.contains(Ve))return;let e=String(window.location);(/\?.*=/.test(e)||/\?./.test(e))&&(e=e.split("?")[0]),/#./.test(e)&&(e=e.split("#")[0]),this._config.activeLinksExact&&t.href===e&&(t.classList.add(Fe),Array.from(this._getParents(t,Ye)).forEach((t=>{t.classList.add(Ue),t.setAttribute("aria-expanded",!0)}))),!this._config.activeLinksExact&&t.href.startsWith(e)&&(t.classList.add(Fe),Array.from(this._getParents(t,Ye)).forEach((t=>{t.classList.add(Ue),t.setAttribute("aria-expanded",!0)})))}))}_getParents(t,e){const i=[];for(;t&&t!==document;t=t.parentNode)e?t.matches(e)&&i.push(t):i.push(t);return i}_getAllSiblings(t,e){const i=[];t=t.parentNode.firstChild;do{3!==t.nodeType&&8!==t.nodeType&&(e&&!e(t)||i.push(t))}while(t=t.nextSibling);return i}_getChildren(t,e){const i=[];for(;t;t=t.nextSibling)1===t.nodeType&&t!==e&&i.push(t);return i}_getSiblings(t,e){return this._getChildren(t.parentNode.firstChild,t).filter(e)}_slideDown(t){t.style.height="auto";const e=t.clientHeight;t.style.height="0px",setTimeout((()=>{t.style.height=`${e}px`}),0),this._queueCallback((()=>{t.style.height="auto"}),t,!0)}_slideUp(t,e){const i=t.clientHeight;t.style.height=`${i}px`,setTimeout((()=>{t.style.height="0px"}),0),this._queueCallback((()=>{"function"==typeof e&&e()}),t,!0)}_toggleGroupItems(t){let e=t.target;e.classList.contains(Ve)||(e=e.closest(Ge));!0===this._config.groupsAutoCollapse&&this._getSiblings(e.parentNode,(t=>Boolean(t.classList.contains("nav-group")&&t.classList.contains(Ue)))).forEach((t=>{this._slideUp(Y.findOne(Xe,t),(()=>{t.classList.remove(Ue),t.setAttribute("aria-expanded",!1)}))})),e.parentNode.classList.contains(Ue)?this._slideUp(Y.findOne(Xe,e.parentNode),(()=>{e.parentNode.classList.remove(Ue),e.parentNode.setAttribute("aria-expanded",!1)})):(e.parentNode.classList.add(Ue),e.parentNode.setAttribute("aria-expanded",!0),this._slideDown(Y.findOne(Xe,e.parentNode)))}_addEventListeners(){H.on(this._element,Ke,Ge,(t=>{t.preventDefault(),this._toggleGroupItems(t,this)}))}static navigationInterface(t,e){const i=Ze.getOrCreateInstance(t,e);if("string"==typeof e){if(void 0===i[e])throw new TypeError(`No method named "${e}"`);i[e]()}}static jQueryInterface(t){return this.each((function(){Ze.navigationInterface(this,t)}))}}H.on(window,Qe,(()=>{Array.from(document.querySelectorAll('[data-coreui="navigation"]')).forEach((t=>{Ze.navigationInterface(t)}))})),v(Ze);const Je="offcanvas",ti=".coreui.offcanvas",ei=`load${ti}.data-api`,ii={backdrop:!0,keyboard:!0,scroll:!1},si={backdrop:"boolean",keyboard:"boolean",scroll:"boolean"},ni="show",oi=".offcanvas.show",ri=`show${ti}`,ai=`shown${ti}`,li=`hide${ti}`,ci=`hidden${ti}`,hi=`click${ti}.data-api`,di=`keydown.dismiss${ti}`;class ui extends R{constructor(t,e){super(t),this._config=this._getConfig(e),this._isShown=!1,this._backdrop=this._initializeBackDrop(),this._focustrap=this._initializeFocusTrap(),this._addEventListeners()}static get NAME(){return Je}static get Default(){return ii}toggle(t){return this._isShown?this.hide():this.show(t)}show(t){this._isShown||H.trigger(this._element,ri,{relatedTarget:t}).defaultPrevented||(this._isShown=!0,this._element.style.visibility="visible",this._backdrop.show(),this._config.scroll||(new ue).hide(),this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),this._element.classList.add(ni),this._queueCallback((()=>{this._config.scroll||this._focustrap.activate(),H.trigger(this._element,ai,{relatedTarget:t})}),this._element,!0))}hide(){this._isShown&&(H.trigger(this._element,li).defaultPrevented||(this._focustrap.deactivate(),this._element.blur(),this._isShown=!1,this._element.classList.remove(ni),this._backdrop.hide(),this._queueCallback((()=>{this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._element.style.visibility="hidden",this._config.scroll||(new ue).reset(),H.trigger(this._element,ci)}),this._element,!0)))}dispose(){this._backdrop.dispose(),this._focustrap.deactivate(),super.dispose()}_getConfig(t){return t={...ii,...Q.getDataAttributes(this._element),..."object"==typeof t?t:{}},h(Je,t,si),t}_initializeBackDrop(){return new pe({className:"offcanvas-backdrop",isVisible:this._config.backdrop,isAnimated:!0,rootElement:this._element.parentNode,clickCallback:()=>this.hide()})}_initializeFocusTrap(){return new Ce({trapElement:this._element})}_addEventListeners(){H.on(this._element,di,(t=>{this._config.keyboard&&"Escape"===t.key&&this.hide()}))}static jQueryInterface(t){return this.each((function(){const e=ui.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}H.on(document,hi,'[data-coreui-toggle="offcanvas"]',(function(t){const e=r(this);if(["A","AREA"].includes(this.tagName)&&t.preventDefault(),u(this))return;H.one(e,ci,(()=>{d(this)&&this.focus()}));const i=Y.findOne(oi);i&&i!==e&&ui.getInstance(i).hide(),ui.getOrCreateInstance(e).toggle(this)})),H.on(window,ei,(()=>Y.find(oi).forEach((t=>ui.getOrCreateInstance(t).show())))),q(ui),v(ui);const _i=new Set(["background","cite","href","itemtype","longdesc","poster","src","xlink:href"]),gi=/^(?:(?:https?|mailto|ftp|tel|file|sms):|[^#&/:?]*(?:[#/?]|$))/i,fi=/^data:(?:image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\/(?:mpeg|mp4|ogg|webm)|audio\/(?:mp3|oga|ogg|opus));base64,[\d+/a-z]+=*$/i,mi=(t,e)=>{const i=t.nodeName.toLowerCase();if(e.includes(i))return!_i.has(i)||Boolean(gi.test(t.nodeValue)||fi.test(t.nodeValue));const s=e.filter((t=>t instanceof RegExp));for(let t=0,e=s.length;t<e;t++)if(s[t].test(i))return!0;return!1};function pi(t,e,i){if(!t.length)return t;if(i&&"function"==typeof i)return i(t);const s=(new window.DOMParser).parseFromString(t,"text/html"),n=[].concat(...s.body.querySelectorAll("*"));for(let t=0,i=n.length;t<i;t++){const i=n[t],s=i.nodeName.toLowerCase();if(!Object.keys(e).includes(s)){i.remove();continue}const o=[].concat(...i.attributes),r=[].concat(e["*"]||[],e[s]||[]);o.forEach((t=>{mi(t,r)||i.removeAttribute(t.nodeName)}))}return s.body.innerHTML}const bi="tooltip",vi=".coreui.tooltip",yi=new Set(["sanitize","allowList","sanitizeFn"]),Ei={animation:"boolean",template:"string",title:"(string|element|function)",trigger:"string",delay:"(number|object)",html:"boolean",selector:"(string|boolean)",placement:"(string|function)",offset:"(array|string|function)",container:"(string|element|boolean)",fallbackPlacements:"array",boundary:"(string|element)",customClass:"(string|function)",sanitize:"boolean",sanitizeFn:"(null|function)",allowList:"object",popperConfig:"(null|object|function)"},wi={AUTO:"auto",TOP:"top",RIGHT:b()?"left":"right",BOTTOM:"bottom",LEFT:b()?"right":"left"},Ai={animation:!0,template:'<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",title:"",delay:0,html:!1,selector:!1,placement:"top",offset:[0,0],container:!1,fallbackPlacements:["top","right","bottom","left"],boundary:"clippingParents",customClass:"",sanitize:!0,sanitizeFn:null,allowList:{"*":["class","dir","id","lang","role",/^aria-[\w-]*$/i],a:["target","href","title","rel"],area:[],b:[],br:[],col:[],code:[],div:[],em:[],hr:[],h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],i:[],img:["src","srcset","alt","title","width","height"],li:[],ol:[],p:[],pre:[],s:[],small:[],span:[],sub:[],sup:[],strong:[],u:[],ul:[]},popperConfig:null},Ci={HIDE:`hide${vi}`,HIDDEN:`hidden${vi}`,SHOW:`show${vi}`,SHOWN:`shown${vi}`,INSERTED:`inserted${vi}`,CLICK:`click${vi}`,FOCUSIN:`focusin${vi}`,FOCUSOUT:`focusout${vi}`,MOUSEENTER:`mouseenter${vi}`,MOUSELEAVE:`mouseleave${vi}`},Ti="fade",ki="show",Li="show",Ni="out",Oi=".tooltip-inner",Si=".modal",Di="hide.coreui.modal",Ii="hover",$i="focus";class xi extends R{constructor(t,e){if(void 0===i)throw new TypeError("Bootstrap's tooltips require Popper (https://popper.js.org)");super(t),this._isEnabled=!0,this._timeout=0,this._hoverState="",this._activeTrigger={},this._popper=null,this._config=this._getConfig(e),this.tip=null,this._setListeners()}static get Default(){return Ai}static get NAME(){return bi}static get Event(){return Ci}static get DefaultType(){return Ei}enable(){this._isEnabled=!0}disable(){this._isEnabled=!1}toggleEnabled(){this._isEnabled=!this._isEnabled}toggle(t){if(this._isEnabled)if(t){const e=this._initializeOnDelegatedTarget(t);e._activeTrigger.click=!e._activeTrigger.click,e._isWithActiveTrigger()?e._enter(null,e):e._leave(null,e)}else{if(this.getTipElement().classList.contains(ki))return void this._leave(null,this);this._enter(null,this)}}dispose(){clearTimeout(this._timeout),H.off(this._element.closest(Si),Di,this._hideModalHandler),this.tip&&this.tip.remove(),this._disposePopper(),super.dispose()}show(){if("none"===this._element.style.display)throw new Error("Please use show on visible elements");if(!this.isWithContent()||!this._isEnabled)return;const t=H.trigger(this._element,this.constructor.Event.SHOW),e=_(this._element),s=null===e?this._element.ownerDocument.documentElement.contains(this._element):e.contains(this._element);if(t.defaultPrevented||!s)return;"tooltip"===this.constructor.NAME&&this.tip&&this.getTitle()!==this.tip.querySelector(Oi).innerHTML&&(this._disposePopper(),this.tip.remove(),this.tip=null);const n=this.getTipElement(),o=(t=>{do{t+=Math.floor(1e6*Math.random())}while(document.getElementById(t));return t})(this.constructor.NAME);n.setAttribute("id",o),this._element.setAttribute("aria-describedby",o),this._config.animation&&n.classList.add(Ti);const r="function"==typeof this._config.placement?this._config.placement.call(this,n,this._element):this._config.placement,a=this._getAttachment(r);this._addAttachmentClass(a);const{container:l}=this._config;z.set(n,this.constructor.DATA_KEY,this),this._element.ownerDocument.documentElement.contains(this.tip)||(l.append(n),H.trigger(this._element,this.constructor.Event.INSERTED)),this._popper?this._popper.update():this._popper=i.createPopper(this._element,n,this._getPopperConfig(a)),n.classList.add(ki);const c=this._resolvePossibleFunction(this._config.customClass);c&&n.classList.add(...c.split(" ")),"ontouchstart"in document.documentElement&&[].concat(...document.body.children).forEach((t=>{H.on(t,"mouseover",g)}));const h=this.tip.classList.contains(Ti);this._queueCallback((()=>{const t=this._hoverState;this._hoverState=null,H.trigger(this._element,this.constructor.Event.SHOWN),t===Ni&&this._leave(null,this)}),this.tip,h)}hide(){if(!this._popper)return;const t=this.getTipElement();if(H.trigger(this._element,this.constructor.Event.HIDE).defaultPrevented)return;t.classList.remove(ki),"ontouchstart"in document.documentElement&&[].concat(...document.body.children).forEach((t=>H.off(t,"mouseover",g))),this._activeTrigger.click=!1,this._activeTrigger.focus=!1,this._activeTrigger.hover=!1;const e=this.tip.classList.contains(Ti);this._queueCallback((()=>{this._isWithActiveTrigger()||(this._hoverState!==Li&&t.remove(),this._cleanTipClass(),this._element.removeAttribute("aria-describedby"),H.trigger(this._element,this.constructor.Event.HIDDEN),this._disposePopper())}),this.tip,e),this._hoverState=""}update(){null!==this._popper&&this._popper.update()}isWithContent(){return Boolean(this.getTitle())}getTipElement(){if(this.tip)return this.tip;const t=document.createElement("div");t.innerHTML=this._config.template;const e=t.children[0];return this.setContent(e),e.classList.remove(Ti,ki),this.tip=e,this.tip}setContent(t){this._sanitizeAndSetContent(t,this.getTitle(),Oi)}_sanitizeAndSetContent(t,e,i){const s=Y.findOne(i,t);e||!s?this.setElementContent(s,e):s.remove()}setElementContent(t,e){if(null!==t)return l(e)?(e=c(e),void(this._config.html?e.parentNode!==t&&(t.innerHTML="",t.append(e)):t.textContent=e.textContent)):void(this._config.html?(this._config.sanitize&&(e=pi(e,this._config.allowList,this._config.sanitizeFn)),t.innerHTML=e):t.textContent=e)}getTitle(){const t=this._element.getAttribute("data-coreui-original-title")||this._config.title;return this._resolvePossibleFunction(t)}updateAttachment(t){return"right"===t?"end":"left"===t?"start":t}_initializeOnDelegatedTarget(t,e){return e||this.constructor.getOrCreateInstance(t.delegateTarget,this._getDelegateConfig())}_getOffset(){const{offset:t}=this._config;return"string"==typeof t?t.split(",").map((t=>Number.parseInt(t,10))):"function"==typeof t?e=>t(e,this._element):t}_resolvePossibleFunction(t){return"function"==typeof t?t.call(this._element):t}_getPopperConfig(t){const e={placement:t,modifiers:[{name:"flip",options:{fallbackPlacements:this._config.fallbackPlacements}},{name:"offset",options:{offset:this._getOffset()}},{name:"preventOverflow",options:{boundary:this._config.boundary}},{name:"arrow",options:{element:`.${this.constructor.NAME}-arrow`}},{name:"onChange",enabled:!0,phase:"afterWrite",fn:t=>this._handlePopperPlacementChange(t)}],onFirstUpdate:t=>{t.options.placement!==t.placement&&this._handlePopperPlacementChange(t)}};return{...e,..."function"==typeof this._config.popperConfig?this._config.popperConfig(e):this._config.popperConfig}}_addAttachmentClass(t){this.getTipElement().classList.add(`${this._getBasicClassPrefix()}-${this.updateAttachment(t)}`)}_getAttachment(t){return wi[t.toUpperCase()]}_setListeners(){this._config.trigger.split(" ").forEach((t=>{if("click"===t)H.on(this._element,this.constructor.Event.CLICK,this._config.selector,(t=>this.toggle(t)));else if("manual"!==t){const e=t===Ii?this.constructor.Event.MOUSEENTER:this.constructor.Event.FOCUSIN,i=t===Ii?this.constructor.Event.MOUSELEAVE:this.constructor.Event.FOCUSOUT;H.on(this._element,e,this._config.selector,(t=>this._enter(t))),H.on(this._element,i,this._config.selector,(t=>this._leave(t)))}})),this._hideModalHandler=()=>{this._element&&this.hide()},H.on(this._element.closest(Si),Di,this._hideModalHandler),this._config.selector?this._config={...this._config,trigger:"manual",selector:""}:this._fixTitle()}_fixTitle(){const t=this._element.getAttribute("title"),e=typeof this._element.getAttribute("data-coreui-original-title");(t||"string"!==e)&&(this._element.setAttribute("data-coreui-original-title",t||""),!t||this._element.getAttribute("aria-label")||this._element.textContent||this._element.setAttribute("aria-label",t),this._element.setAttribute("title",""))}_enter(t,e){e=this._initializeOnDelegatedTarget(t,e),t&&(e._activeTrigger["focusin"===t.type?$i:Ii]=!0),e.getTipElement().classList.contains(ki)||e._hoverState===Li?e._hoverState=Li:(clearTimeout(e._timeout),e._hoverState=Li,e._config.delay&&e._config.delay.show?e._timeout=setTimeout((()=>{e._hoverState===Li&&e.show()}),e._config.delay.show):e.show())}_leave(t,e){e=this._initializeOnDelegatedTarget(t,e),t&&(e._activeTrigger["focusout"===t.type?$i:Ii]=e._element.contains(t.relatedTarget)),e._isWithActiveTrigger()||(clearTimeout(e._timeout),e._hoverState=Ni,e._config.delay&&e._config.delay.hide?e._timeout=setTimeout((()=>{e._hoverState===Ni&&e.hide()}),e._config.delay.hide):e.hide())}_isWithActiveTrigger(){for(const t in this._activeTrigger)if(this._activeTrigger[t])return!0;return!1}_getConfig(t){const e=Q.getDataAttributes(this._element);return Object.keys(e).forEach((t=>{yi.has(t)&&delete e[t]})),(t={...this.constructor.Default,...e,..."object"==typeof t&&t?t:{}}).container=!1===t.container?document.body:c(t.container),"number"==typeof t.delay&&(t.delay={show:t.delay,hide:t.delay}),"number"==typeof t.title&&(t.title=t.title.toString()),"number"==typeof t.content&&(t.content=t.content.toString()),h(bi,t,this.constructor.DefaultType),t.sanitize&&(t.template=pi(t.template,t.allowList,t.sanitizeFn)),t}_getDelegateConfig(){const t={};for(const e in this._config)this.constructor.Default[e]!==this._config[e]&&(t[e]=this._config[e]);return t}_cleanTipClass(){const t=this.getTipElement(),e=new RegExp(`(^|\\s)${this._getBasicClassPrefix()}\\S+`,"g"),i=t.getAttribute("class").match(e);null!==i&&i.length>0&&i.map((t=>t.trim())).forEach((e=>t.classList.remove(e)))}_getBasicClassPrefix(){return"bs-tooltip"}_handlePopperPlacementChange(t){const{state:e}=t;e&&(this.tip=e.elements.popper,this._cleanTipClass(),this._addAttachmentClass(this._getAttachment(e.placement)))}_disposePopper(){this._popper&&(this._popper.destroy(),this._popper=null)}static jQueryInterface(t){return this.each((function(){const e=xi.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}v(xi);const Pi=".coreui.popover",Mi={...xi.Default,placement:"right",offset:[0,8],trigger:"click",content:"",template:'<div class="popover" role="tooltip"><div class="popover-arrow"></div><h3 class="popover-header"></h3><div class="popover-body"></div></div>'},ji={...xi.DefaultType,content:"(string|element|function)"},Hi={HIDE:`hide${Pi}`,HIDDEN:`hidden${Pi}`,SHOW:`show${Pi}`,SHOWN:`shown${Pi}`,INSERTED:`inserted${Pi}`,CLICK:`click${Pi}`,FOCUSIN:`focusin${Pi}`,FOCUSOUT:`focusout${Pi}`,MOUSEENTER:`mouseenter${Pi}`,MOUSELEAVE:`mouseleave${Pi}`};class Bi extends xi{static get Default(){return Mi}static get NAME(){return"popover"}static get Event(){return Hi}static get DefaultType(){return ji}isWithContent(){return this.getTitle()||this._getContent()}setContent(t){this._sanitizeAndSetContent(t,this.getTitle(),".popover-header"),this._sanitizeAndSetContent(t,this._getContent(),".popover-body")}_getContent(){return this._resolvePossibleFunction(this._config.content)}_getBasicClassPrefix(){return"bs-popover"}static jQueryInterface(t){return this.each((function(){const e=Bi.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}v(Bi);const zi="scrollspy",Ri=".coreui.scrollspy",qi={offset:10,method:"auto",target:""},Wi={offset:"number",method:"string",target:"(string|element)"},Fi=`activate${Ri}`,Ui=`scroll${Ri}`,Vi=`load${Ri}.data-api`,Ki="active",Qi=".nav-link, .list-group-item, .dropdown-item",Yi="position";class Xi extends R{constructor(t,e){super(t),this._scrollElement="BODY"===this._element.tagName?window:this._element,this._config=this._getConfig(e),this._offsets=[],this._targets=[],this._activeTarget=null,this._scrollHeight=0,H.on(this._scrollElement,Ui,(()=>this._process())),this.refresh(),this._process()}static get Default(){return qi}static get NAME(){return zi}refresh(){const t=this._scrollElement===this._scrollElement.window?"offset":Yi,e="auto"===this._config.method?t:this._config.method,i=e===Yi?this._getScrollTop():0;this._offsets=[],this._targets=[],this._scrollHeight=this._getScrollHeight(),Y.find(Qi,this._config.target).map((t=>{const s=o(t),n=s?Y.findOne(s):null;if(n){const t=n.getBoundingClientRect();if(t.width||t.height)return[Q[e](n).top+i,s]}return null})).filter((t=>t)).sort(((t,e)=>t[0]-e[0])).forEach((t=>{this._offsets.push(t[0]),this._targets.push(t[1])}))}dispose(){H.off(this._scrollElement,Ri),super.dispose()}_getConfig(t){return(t={...qi,...Q.getDataAttributes(this._element),..."object"==typeof t&&t?t:{}}).target=c(t.target)||document.documentElement,h(zi,t,Wi),t}_getScrollTop(){return this._scrollElement===window?this._scrollElement.pageYOffset:this._scrollElement.scrollTop}_getScrollHeight(){return this._scrollElement.scrollHeight||Math.max(document.body.scrollHeight,document.documentElement.scrollHeight)}_getOffsetHeight(){return this._scrollElement===window?window.innerHeight:this._scrollElement.getBoundingClientRect().height}_process(){const t=this._getScrollTop()+this._config.offset,e=this._getScrollHeight(),i=this._config.offset+e-this._getOffsetHeight();if(this._scrollHeight!==e&&this.refresh(),t>=i){const t=this._targets[this._targets.length-1];this._activeTarget!==t&&this._activate(t)}else{if(this._activeTarget&&t<this._offsets[0]&&this._offsets[0]>0)return this._activeTarget=null,void this._clear();for(let e=this._offsets.length;e--;)this._activeTarget!==this._targets[e]&&t>=this._offsets[e]&&(void 0===this._offsets[e+1]||t<this._offsets[e+1])&&this._activate(this._targets[e])}}_activate(t){this._activeTarget=t,this._clear();const e=Qi.split(",").map((e=>`${e}[data-coreui-target="${t}"],${e}[href="${t}"]`)),i=Y.findOne(e.join(","),this._config.target);i.classList.add(Ki),i.classList.contains("dropdown-item")?Y.findOne(".dropdown-toggle",i.closest(".dropdown")).classList.add(Ki):Y.parents(i,".nav, .list-group").forEach((t=>{Y.prev(t,".nav-link, .list-group-item").forEach((t=>t.classList.add(Ki))),Y.prev(t,".nav-item").forEach((t=>{Y.children(t,".nav-link").forEach((t=>t.classList.add(Ki)))}))})),H.trigger(this._scrollElement,Fi,{relatedTarget:t})}_clear(){Y.find(Qi,this._config.target).filter((t=>t.classList.contains(Ki))).forEach((t=>t.classList.remove(Ki)))}static jQueryInterface(t){return this.each((function(){const e=Xi.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}H.on(window,Vi,(()=>{Y.find('[data-coreui-spy="scroll"]').forEach((t=>new Xi(t)))})),v(Xi);const Gi="sidebar",Zi=".coreui.sidebar",Ji={},ts={},es="hide",is="show",ss="sidebar-narrow",ns="sidebar-narrow-unfoldable",os=`hide${Zi}`,rs=`hidden${Zi}`,as=`show${Zi}`,ls=`shown${Zi}`,cs=`click${Zi}.data-api`,hs=`load${Zi}.data-api`,ds=".sidebar";class us extends R{constructor(t,e){super(t),this._config=this._getConfig(e),this._show=this._isVisible(),this._mobile=this._isMobile(),this._overlaid=this._isOverlaid(),this._narrow=this._isNarrow(),this._unfoldable=this._isUnfoldable(),this._backdrop=null,this._addEventListeners()}static get Default(){return Ji}static get DefaultType(){return ts}static get NAME(){return Gi}show(){H.trigger(this._element,as),this._element.classList.contains(es)&&this._element.classList.remove(es),this._isMobile()&&(this._element.classList.add(is),this._showBackdrop()),this._queueCallback((()=>{!0===this._isVisible()&&(this._show=!0,(this._isMobile()||this._isOverlaid())&&this._addClickOutListener(),H.trigger(this._element,ls))}),this._element,!0)}hide(){H.trigger(this._element,os),this._element.classList.contains(is)&&this._element.classList.remove(is),this._isMobile()?this._removeBackdrop():this._element.classList.add(es),this._queueCallback((()=>{!1===this._isVisible()&&(this._show=!1,(this._isMobile()||this._isOverlaid())&&this._removeClickOutListener(),H.trigger(this._element,rs))}),this._element,!0)}toggle(){this._isVisible()?this.hide():this.show()}narrow(){this._isMobile()||(this._addClassName(ss),this._narrow=!0)}unfoldable(){this._isMobile()||(this._addClassName(ns),this._unfoldable=!0)}reset(){this._isMobile()||(this._narrow&&(this._element.classList.remove(ss),this._narrow=!1),this._unfoldable&&(this._element.classList.remove(ns),this._unfoldable=!1))}toggleNarrow(){this._narrow?this.reset():this.narrow()}toggleUnfoldable(){this._unfoldable?this.reset():this.unfoldable()}_getConfig(t){return t={...Ji,...Q.getDataAttributes(this._element),..."object"==typeof t?t:{}},h(Gi,t,ts),t}_isMobile(){return Boolean(window.getComputedStyle(this._element,null).getPropertyValue("--cui-is-mobile"))}_isNarrow(){return this._element.classList.contains(ss)}_isOverlaid(){return this._element.classList.contains("sidebar-overlaid")}_isUnfoldable(){return this._element.classList.contains(ns)}_isVisible(){const t=this._element.getBoundingClientRect();return t.top>=0&&t.left>=0&&t.bottom<=(window.innerHeight||document.documentElement.clientHeight)&&t.right<=(window.innerWidth||document.documentElement.clientWidth)}_addClassName(t){this._element.classList.add(t)}_removeBackdrop(){this._backdrop&&(this._backdrop.remove(),this._backdrop=null)}_showBackdrop(){this._backdrop||(this._backdrop=document.createElement("div"),this._backdrop.className="sidebar-backdrop",this._backdrop.classList.add("fade"),document.body.append(this._backdrop),f(this._backdrop),this._backdrop.classList.add(is))}_clickOutListener(t,e){null===t.target.closest(ds)&&(t.preventDefault(),t.stopPropagation(),e.hide())}_addClickOutListener(){H.on(document,cs,(t=>{this._clickOutListener(t,this)}))}_removeClickOutListener(){H.off(document,cs)}_addEventListeners(){this._mobile&&this._show&&this._addClickOutListener(),this._overlaid&&this._show&&this._addClickOutListener(),H.on(this._element,cs,"[data-coreui-toggle]",(t=>{t.preventDefault();const e=Q.getDataAttribute(t.target,"toggle");"narrow"===e&&this.toggleNarrow(),"unfoldable"===e&&this.toggleUnfoldable()})),H.on(this._element,cs,'[data-coreui-close="sidebar"]',(t=>{t.preventDefault(),this.hide()})),H.on(window,"resize",(()=>{this._isMobile()&&this._isVisible()&&this.hide()}))}static sidebarInterface(t,e){const i=us.getOrCreateInstance(t,e);if("string"==typeof e){if(void 0===i[e])throw new TypeError(`No method named "${e}"`);i[e]()}}static jQueryInterface(t){return this.each((function(){us.sidebarInterface(this,t)}))}}H.on(window,hs,(()=>{Array.from(document.querySelectorAll(ds)).forEach((t=>{us.sidebarInterface(t)}))})),v(us);const _s="active",gs="fade",fs="show",ms=".active",ps=":scope > li > .active";class bs extends R{static get NAME(){return"tab"}show(){if(this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE&&this._element.classList.contains(_s))return;let t;const e=r(this._element),i=this._element.closest(".nav, .list-group");if(i){const e="UL"===i.nodeName||"OL"===i.nodeName?ps:ms;t=Y.find(e,i),t=t[t.length-1]}const s=t?H.trigger(t,"hide.coreui.tab",{relatedTarget:this._element}):null;if(H.trigger(this._element,"show.coreui.tab",{relatedTarget:t}).defaultPrevented||null!==s&&s.defaultPrevented)return;this._activate(this._element,i);const n=()=>{H.trigger(t,"hidden.coreui.tab",{relatedTarget:this._element}),H.trigger(this._element,"shown.coreui.tab",{relatedTarget:t})};e?this._activate(e,e.parentNode,n):n()}_activate(t,e,i){const s=(!e||"UL"!==e.nodeName&&"OL"!==e.nodeName?Y.children(e,ms):Y.find(ps,e))[0],n=i&&s&&s.classList.contains(gs),o=()=>this._transitionComplete(t,s,i);s&&n?(s.classList.remove(fs),this._queueCallback(o,t,!0)):o()}_transitionComplete(t,e,i){if(e){e.classList.remove(_s);const t=Y.findOne(":scope > .dropdown-menu .active",e.parentNode);t&&t.classList.remove(_s),"tab"===e.getAttribute("role")&&e.setAttribute("aria-selected",!1)}t.classList.add(_s),"tab"===t.getAttribute("role")&&t.setAttribute("aria-selected",!0),f(t),t.classList.contains(gs)&&t.classList.add(fs);let s=t.parentNode;if(s&&"LI"===s.nodeName&&(s=s.parentNode),s&&s.classList.contains("dropdown-menu")){const e=t.closest(".dropdown");e&&Y.find(".dropdown-toggle",e).forEach((t=>t.classList.add(_s))),t.setAttribute("aria-expanded",!0)}i&&i()}static jQueryInterface(t){return this.each((function(){const e=bs.getOrCreateInstance(this);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}H.on(document,"click.coreui.tab.data-api",'[data-coreui-toggle="tab"], [data-coreui-toggle="pill"], [data-coreui-toggle="list"]',(function(t){["A","AREA"].includes(this.tagName)&&t.preventDefault(),u(this)||bs.getOrCreateInstance(this).show()})),v(bs);const vs="toast",ys=".coreui.toast",Es=`mouseover${ys}`,ws=`mouseout${ys}`,As=`focusin${ys}`,Cs=`focusout${ys}`,Ts=`hide${ys}`,ks=`hidden${ys}`,Ls=`show${ys}`,Ns=`shown${ys}`,Os="hide",Ss="show",Ds="showing",Is={animation:"boolean",autohide:"boolean",delay:"number"},$s={animation:!0,autohide:!0,delay:5e3};class xs extends R{constructor(t,e){super(t),this._config=this._getConfig(e),this._timeout=null,this._hasMouseInteraction=!1,this._hasKeyboardInteraction=!1,this._setListeners()}static get DefaultType(){return Is}static get Default(){return $s}static get NAME(){return vs}show(){H.trigger(this._element,Ls).defaultPrevented||(this._clearTimeout(),this._config.animation&&this._element.classList.add("fade"),this._element.classList.remove(Os),f(this._element),this._element.classList.add(Ss),this._element.classList.add(Ds),this._queueCallback((()=>{this._element.classList.remove(Ds),H.trigger(this._element,Ns),this._maybeScheduleHide()}),this._element,this._config.animation))}hide(){this._element.classList.contains(Ss)&&(H.trigger(this._element,Ts).defaultPrevented||(this._element.classList.add(Ds),this._queueCallback((()=>{this._element.classList.add(Os),this._element.classList.remove(Ds),this._element.classList.remove(Ss),H.trigger(this._element,ks)}),this._element,this._config.animation)))}dispose(){this._clearTimeout(),this._element.classList.contains(Ss)&&this._element.classList.remove(Ss),super.dispose()}_getConfig(t){return t={...$s,...Q.getDataAttributes(this._element),..."object"==typeof t&&t?t:{}},h(vs,t,this.constructor.DefaultType),t}_maybeScheduleHide(){this._config.autohide&&(this._hasMouseInteraction||this._hasKeyboardInteraction||(this._timeout=setTimeout((()=>{this.hide()}),this._config.delay)))}_onInteraction(t,e){switch(t.type){case"mouseover":case"mouseout":this._hasMouseInteraction=e;break;case"focusin":case"focusout":this._hasKeyboardInteraction=e}if(e)return void this._clearTimeout();const i=t.relatedTarget;this._element===i||this._element.contains(i)||this._maybeScheduleHide()}_setListeners(){H.on(this._element,Es,(t=>this._onInteraction(t,!0))),H.on(this._element,ws,(t=>this._onInteraction(t,!1))),H.on(this._element,As,(t=>this._onInteraction(t,!0))),H.on(this._element,Cs,(t=>this._onInteraction(t,!1)))}_clearTimeout(){clearTimeout(this._timeout),this._timeout=null}static jQueryInterface(t){return this.each((function(){const e=xs.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}return q(xs),v(xs),{Alert:W,Button:U,Carousel:yt,Collapse:jt,Dropdown:ce,Modal:He,Navigation:Ze,OffCanvas:ui,Popover:Bi,ScrollSpy:Xi,Sidebar:us,Tab:bs,Toast:xs,Tooltip:xi}}));
|
|
7
7
|
//# sourceMappingURL=coreui.min.js.map
|